phillarmonic/dsh-llm-kimi ↗★ 0
@phillarmonic/dsh-llm-kimi
适用于 DeepSeek Harness 大模型能力接口的 Kimi K3 连接器插件。
AI 分析
核心用途是为 DSH 接入 Kimi K3 系列大语言模型。适合需要使用 Kimi 编码和推理能力的用户,支持自定义 API 密钥、基础 URL 及思考细致度配置。
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:phillarmonic/dsh-llm-kimi说明文档
阅读完整 README ↗Configuration
| Field | Default | Description |
|---|---|---|
apiKeyEnv | KIMI_CODE_API_KEY | Credential reference (environment-variable name) resolved per request. |
baseURL | https://api.kimi.com/coding/v1 | Endpoint base; /chat/completions is appended. Falls back to $KIMI_BASE_URL from a trusted environment layer. |
reasoningEffort | low | Default thinking effort for the K3 family (low, high, max). |
sendTemperature | false | Whether to forward an explicit sampling temperature. Kimi enforces fixed sampling, so this stays off by default. |
maxTokens | 131072 | Default per-request output cap; a model's own cap and explicit request values win. |
defaultContextWindow | 1048576 | Context capacity used when the selected model has no exact value. |
imagePixelBudget | 8294400 | Reject a request image whose intrinsic pixel count exceeds this budget. Default is Kimi's 4K ceiling (3840x2160). |
imageMaxBytes | 1048576 | Reject a request image whose encoded byte length exceeds this budget. Keeps inline base64 within Kimi's per-message size limit. |
models | four Kimi Code models | Advisory catalog shown by discovery consumers. |
streamIdleTimeoutMs | 300000 | Maximum provider idle time while one stream read is outstanding. |
retryPolicy | normal, five retries | Provider-owned model-request retry policy. |