> ## Documentation Index
> Fetch the complete documentation index at: https://docs.acedata.cloud/llms.txt
> Use this file to discover all available pages before exploring further.

# Continue for VS Code 自定义模型配置

> AceDataCloud Coding Plan 集成指南 - Ace Data Cloud

Continue 支持 OpenAI-compatible API。为了固定走 Chat Completions，需要显式设置 `useResponsesApi: false`。

## 配置

在 Continue 的本地 YAML 配置中加入：

```yaml theme={null}
models:
  - name: MODEL_ID
    provider: openai
    model: MODEL_ID
    apiBase: https://api.acedata.cloud/v1
    apiKey: ${{ secrets.ACEDATACLOUD_API_KEY }}
    useResponsesApi: false
```

在 Continue 的 secrets 管理中保存 `ACEDATACLOUD_API_KEY`，不要把真实 Token 提交到项目配置。Continue 的 JSON 配置已经弃用，新配置使用 YAML。

## 验证

重新加载 VS Code，打开 Continue 侧栏，选择 Local Config 中的模型并发送 `Reply only OK`；再执行一次只读文件任务。若请求错误地发往 `/responses`，检查 `useResponsesApi: false` 是否位于该模型条目内。

## 官方参考

* [Continue OpenAI Provider](https://docs.continue.dev/customize/model-providers/top-level/openai)
* [Continue Config Reference](https://docs.continue.dev/reference)

返回 [Coding Plan 配置中心](https://platform.acedata.cloud/documents/coding-plan-integration)。
