LLMTR / llmtr/qwen3-5-4b

Qwen 3.5 4B - access through LLMTR

LLMTR Qwen 3.5 4B is a first-party language model served from Turkey. It is invoked through the OpenAI-compatible Chat Completions API and requests are never forwarded to a third-party provider. It offers a 128K context window (prompt and completion together, per request). This is a small, fast model: a good fit for Turkish chat, summarization, classification, RAG chatbots, and agent flows that need tool calling. It accepts text input only; image, audio and video parts are refused with a 400. Repeating a prompt prefix hits the prompt cache, and cached tokens are billed at a discounted rate, which meaningfully lowers cost for flows with long system prompts. Thinking is on by default: the model produces a reasoning pass before answering, returns it to you in the `reasoning_content` field, and those tokens are spent from your `max_tokens` budget. Set `max_tokens` to at least 2048 on a default call — with a smaller budget the reasoning consumes it and the content comes back empty. To turn thinking off use `llmtr/qwen3-5-4b:fast` or send `reasoning: false` in the request body.

Technical specifications

Canonical IDllmtr/qwen3-5-4b
ProviderLLMTR
Context window131,072 tokens
OperationsCHAT_COMPLETIONS
Modalitiestext

Pricing

An 8% platform margin applies to credit top-ups; model usage prices are not separately marked up.

OperationMetricUnitPrice
CHAT_COMPLETIONSINPUT_TEXTPER_1M_TOKENS$1.00
CHAT_COMPLETIONSCACHE_READPER_1M_TOKENS$0.250000
CHAT_COMPLETIONSOUTPUT_TEXTPER_1M_TOKENS$3.00

Example usage

With existing OpenAI SDK flows, change only the base URL and model identifier.

curl https://llmtr.com/v1/chat/completions   -H "Authorization: Bearer llmtr-your_key"   -H "Content-Type: application/json"   -d '{"model":"llmtr/qwen3-5-4b","messages":[{"role":"user","content":"Hello"}]}'

Guides about this model

Related models