Skip to main content

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 kyma-
That’s it. Two values. Everything else is auto-discovered via /v1/models.

Auto-Detection

Kyma API keys start with kyma-. Configure:
SettingValue
Base URLhttps://kymaapi.com/v1
API KeyThe kyma- key
FormatOpenAI-compatible
StreamingSupported
Default modelllama-3.3-70b

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": "kyma-your-key",
  "model": "llama-3.3-70b"
}
Settings → OpenAI API:
  • API Key: kyma-your-key
  • Base URL: https://kymaapi.com/v1
  • Model: qwen-3-32b (best for code)
~/.continue/config.json:
{
  "models": [{
    "provider": "openai",
    "title": "Kyma - Llama 3.3 70B",
    "model": "llama-3.3-70b",
    "apiBase": "https://kymaapi.com/v1",
    "apiKey": "kyma-your-key"
  }]
}
from openai import OpenAI

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

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

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

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

llm = ChatOpenAI(
    base_url="https://kymaapi.com/v1",
    api_key="kyma-your-key",
    model="llama-3.3-70b"
)
base_url: https://kymaapi.com/v1
api_key: kyma-your-key
model: llama-3.3-70b
Works with: Hermes, OpenClaw, Aider, Cline, Windsurf, LibreChat, anything OpenAI-compatible.
Use CaseModelSpeed
General / reasoningllama-3.3-70b⚡ Fast
Codingqwen-3-32b⚡ Fast
Long context (512K)llama-4-scout⚡ Fast
Deep reasoningdeepseek-r1-70b⚡ Fast
Agentic taskskimi-k2Fast
Fastest responsellama-3.1-8b⚡⚡ Ultra 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.