All modelsOpen in Console
Get started free
Vecbase 1.0 Lite
vecbasevecbase-1.0-lite
vecbase 入门级模型(Lite)。速度优先、成本最低,适合高并发简单任务与快速响应场景。
Context
200K
Max output
66K
Tools
MINIMAL
Reasoning
Supported
Pricing
| Lane | Per 1M tokens |
|---|---|
| Input | $0.20 |
| Output | $0.50 |
| Cache read | $0.10 |
| Cache write (5m) | $0.20 |
| Cache write (1h) | $0.40 |
Billed per token. No minimums, no per-request fees. Caching applies on supported providers; misses fall back to standard input/output rates.
Reasoning effort
offlowmedium · defaulthigh
Routed providers
- anthropic
Requests are automatically routed to the highest-priority healthy upstream. Failures fall back to the next route transparently.
Quickstart
from openai import OpenAI
client = OpenAI(
base_url="https://api.vecbase.com/v1",
api_key="sk-vbc-...",
)
response = client.chat.completions.create(
model="vecbase-1.0-lite",
messages=[{"role": "user", "content": "Hello"}],
)
print(response.choices[0].message.content)Ready to ship?
Create a project, mint an API key, and call this model from any OpenAI-compatible client.