1. 获取 API Key
打开 Ace Data Cloud 应用列表,进入可用的应用并复制 API Key。
2. 配置
Kilo CLI 读取kilo.jsonc,并从启动 CLI 的 shell 读取 API Key。
在 ~/.config/kilo/kilo.jsonc 写入:
3. 验证
export,而不只是写进未加载的 .env 文件。
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
AceDataCloud Coding Plan 集成指南 - Ace Data Cloud
kilo.jsonc,并从启动 CLI 的 shell 读取 API Key。
在 ~/.config/kilo/kilo.jsonc 写入:
{
"provider": {
"acedatacloud": {
"npm": "@ai-sdk/openai-compatible",
"options": {
"baseURL": "https://api.acedata.cloud/v1",
"apiKey": "{env:ACEDATACLOUD_API_KEY}"
},
"models": { "MODEL_ID": { "name": "MODEL_ID" } }
}
},
"model": "acedatacloud/MODEL_ID"
}
export ACEDATACLOUD_API_KEY="PASTE_YOUR_ACEDATACLOUD_API_TOKEN_HERE"
kilo run -m acedatacloud/MODEL_ID "Reply only OK"
export,而不只是写进未加载的 .env 文件。
