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.

Universal Config

Every AI agent that supports OpenAI-compatible APIs works with Kyma. Here’s everything you need:
base_url: https://kymaapi.com/v1
api_key: YOUR_KYMA_KEY  # starts with ky-
That’s it. Two values. Everything else is auto-discovered via /v1/models.

Auto-Detection

Kyma API keys start with ky-. Configure:
SettingValue
Base URLhttps://kymaapi.com/v1
API KeyThe ky- key
FormatOpenAI-compatible
StreamingSupported
Default modelqwen-3.6-plus

Quick Verify

curl https://kymaapi.com/v1/models \
  -H "Authorization: Bearer YOUR_KEY"
Returns all available models. Pick any one.

Agent-Specific Configs

{
  "apiProvider": "openai-compatible",
  "baseUrl": "https://kymaapi.com/v1",
  "apiKey": "ky-your-api-key",
  "model": "qwen-3.6-plus"
}
Settings → OpenAI API:
  • API Key: ky-your-api-key
  • Base URL: https://kymaapi.com/v1
  • Model: qwen-3-32b (best for code)
~/.continue/config.json:
{
  "models": [{
    "provider": "openai",
    "title": "Kyma - Qwen 3.6 Plus",
    "model": "qwen-3.6-plus",
    "apiBase": "https://kymaapi.com/v1",
    "apiKey": "ky-your-api-key"
  }]
}
from openai import OpenAI

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

response = client.chat.completions.create(
    model="qwen-3.6-plus",
    messages=[{"role": "user", "content": "Hello!"}]
)
import OpenAI from 'openai';

const client = new OpenAI({
  baseURL: 'https://kymaapi.com/v1',
  apiKey: 'ky-your-api-key',
});

const response = await client.chat.completions.create({
  model: 'qwen-3.6-plus',
  messages: [{ role: 'user', content: 'Hello!' }],
});
from langchain_openai import ChatOpenAI

llm = ChatOpenAI(
    base_url="https://kymaapi.com/v1",
    api_key="ky-your-api-key",
    model="qwen-3.6-plus"
)
base_url: https://kymaapi.com/v1
api_key: ky-your-api-key
model: qwen-3.6-plus
Works with: Hermes, OpenClaw, Aider, Cline, Windsurf, LibreChat, anything OpenAI-compatible.
Use CaseModelSpeed
General / reasoningqwen-3.6-plusMedium
Codingqwen-3-coderMedium
Long contextgemini-2.5-flash⚡ Fast
Deep reasoningdeepseek-r1Slow
Agentic taskskimi-k2.6Medium
Fastest responseqwen-3-32b⚡ Fast

MCP Integration

Connect your AI agent to Kyma docs for auto-discovery:
{
  "mcpServers": {
    "kyma-docs": {
      "url": "https://docs.kymaapi.com/mcp"
    }
  }
}
Your agent can then search Kyma documentation and auto-configure itself.