OpenAI 兼容 API 手册
Cherry Studio 集成
在 Cherry Studio 里添加 OpenAI 兼容服务,Base URL 填 api09 统一端点,Key 使用控制台生成的 sk-api09_xxx。
Base URL + API Key
Integrationsimport OpenAI from "openai";
const client = new OpenAI({
apiKey: "sk-api09_xxx",
baseURL: "https://api09.com/v1",
});
const response = await client.chat.completions.create({
model: "gpt-5",
messages: [{ role: "user", content: "Build a launch plan" }],
});