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
gpt-oss-120b120B128KMediumGeneral intelligence, writing

Recommendation

Use gpt-oss-120b for writing tasks — strong writing and general intelligence capabilities.
from openai import OpenAI

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

response = client.chat.completions.create(
    model="gpt-oss-120b",
    messages=[{"role": "user", "content": "Write a blog post about AI safety"}]
)

Model aliases

AliasResolves to
GPT-OSS 120B does not currently map to a default alias. Use the full model ID:
model="gpt-oss-120b"