Models
The Tase model family: what each model is built for, how to choose one, and how to list available models through the API.
Tase serves purpose-built models rather than one generic model for everything. Each model in the family is trained by Tase Industries for a specific role in the product, so you pick the model that matches the job instead of paying for capability you do not use.
Available models
tase-8b— the default model. Trained by Tase Industries and specialized for tool calling inside the Tase app: picking the right tool, producing correct arguments, and responding with low latency in both Turkish and English. Supports chat completions, function calling, and streaming.
Schemas live in the weights
tase-8b's weights, so requests do not need to include tool definitions. Smaller requests, faster responses. See the tase-8b model card for details.Choosing a model
- Tool-driven actions: creating a task, logging an expense, checking a schedule — use
tase-8b. This is what it was trained for. - Everyday conversation: quick questions and short answers in Turkish or English —
tase-8bhandles these with the lowest latency in the family. - Complex, long-form reasoning: send the request to
tase-8banyway — routing takes care of escalation automatically. You do not need to select a different model yourself.
Routing
Some requests need deeper reasoning than a compact model should attempt. When Tase detects a complex, long-horizon request, it can route that request to a larger model transparently. The API surface stays the same: you address tase-8b, and routing decides whether escalation is needed. Responses arrive on the same connection in the same format, so your integration does not change.
Listing models
Call GET /v1/models to see the models available to your account. Availability can differ by plan.
curl https://api.tase.app/v1/models \
-H "Authorization: Bearer $TASE_API_KEY"{
"object": "list",
"data": [
{
"id": "tase-8b",
"object": "model",
"owned_by": "tase-industries",
"capabilities": ["chat.completions", "function_calling", "streaming"]
}
]
}Pricing
Read the tase-8b model card
Design goals, strengths, limits, and a full request example.
View model card