Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.kymaapi.com/llms.txt

Use this file to discover all available pages before exploring further.

Available models

Model IDParametersContextSpeedBest For
qwen-3.6-plus— (closed)131KMediumGeneral, #1 most popular
qwen-3-32b32B32KFastCode, math, multilingual
qwen-3-coder131KMediumCode generation

Recommendation

qwen-3.6-plus is the #1 model on Kyma — highest traffic, best overall quality. Use it as your default for any task. Use qwen-3-32b for coding — top benchmarks in code generation, debugging, and math. Low-latency on Kyma. Use qwen-3-coder for dedicated coding — specialized code model from the Qwen family.
from openai import OpenAI

client = OpenAI(base_url="https://kymaapi.com/v1", api_key="ky-...")

# Best overall quality
response = client.chat.completions.create(
    model="qwen-3.6-plus",
    messages=[{"role": "user", "content": "Explain distributed systems"}]
)

# Best for coding
response = client.chat.completions.create(
    model="qwen-3-32b",
    messages=[{"role": "user", "content": "Write a Python web scraper"}]
)

Model aliases

AliasResolves to
bestqwen-3.6-plus
model="best"  # → qwen-3.6-plus