LLMTR / llmtr/muse-glimmer-30b-tr

Muse Glimmer 30B (Turkey) - access through LLMTR

LLMTR Muse Glimmer 30B is our Turkey-hosted deployment of Meta's Apache 2.0 open-weight model. It is invoked through the OpenAI-compatible Chat Completions API and requests are never forwarded to a third-party provider. It offers a 131,072-token context window (prompt and completion together, per request). It makes tool/function calls and reads images: image input is sent as a base64 data URL, and remote image addresses are not accepted. The model reasons step by step before every answer; that reasoning is returned to you in `reasoning_content`, is spent from your `max_tokens` budget, and cannot be turned off. Long answers can take minutes, so keep your client read timeout generous. Repeated prompt prefixes are served from cache and billed at a discounted rate. Sending an identical request again within a short window may return the previous answer verbatim. Audio and video input are not supported.

Technical specifications

Canonical IDllmtr/muse-glimmer-30b-tr
ProviderLLMTR
Context window131,072 tokens
OperationsCHAT_COMPLETIONS
Modalitiestext, image

Pricing

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

OperationMetricUnitPrice
CHAT_COMPLETIONSINPUT_TEXTPER_1M_TOKENS$2.00
CHAT_COMPLETIONSCACHE_READPER_1M_TOKENS$0.500000
CHAT_COMPLETIONSOUTPUT_TEXTPER_1M_TOKENS$5.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/muse-glimmer-30b-tr","messages":[{"role":"user","content":"Hello"}]}'

Related models