Move docs/coding-cli-setup.md to docs/coding-cli-setup/ with one file per CLI (claude-code, kimi-cli, opencode, qwen-code) plus a shared index.md for the gateway intro, tool-calling risk note, and summary table. Also fixes the qwen-code doc: context sizes are per-slot (LLAMA_CTX_SIZE / LLAMA_PARALLEL), not raw LLAMA_CTX_SIZE (same fix applied to OpenCode's limit.context); documents the fastModel classifier provider and its own context math; adds the omniroute-search MCP server (SearXNG web search) and Auto Mode permissions tuning that were missing from the original qwen-code section. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
15 lines
489 B
Markdown
15 lines
489 B
Markdown
# Kimi CLI
|
|
|
|
[← back to overview](index.md)
|
|
|
|
Kimi CLI speaks plain **OpenAI Chat Completions**. Configure a provider block in its config file (`config.toml`):
|
|
|
|
```toml
|
|
[providers.openai]
|
|
type = "openai"
|
|
base_url = "http://<ai-box>:${OMNIROUTE_PORT:-4000}/v1"
|
|
api_key = "<kimi-cli virtual key>"
|
|
```
|
|
|
|
If Kimi CLI's response parsing gets confused by Qwen's `<think>...</think>` reasoning tags, check its `reasoning_key` setting — it's configurable for non-standard local server responses.
|