全球加速 · 边缘函数 · 零配置伪装 · 企业级安全
基于 EdgeOne Makers 构建,毫秒级响应,开箱即用的 Kilo.ai 反代方案
基于 EdgeOne Makers 构建,零运维的智能 API 网关
3200+ 边缘节点,智能路由直达 Kilo.ai 源站,降低延迟高达 60%,告别跨域烦恼。
完美的首页落地页搭配反向代理,API 路径完全隐藏,抵御恶意扫描与探测。
SSE 流式零开销透传,AI 对话逐字输出,毫秒级首 token 延迟,体验与原站一致。
自动处理预检请求,轻松对接 OpenAI SDK、浏览器前端,告别繁琐跨域配置。
完全兼容 OpenAI Chat Completions 格式,切换 base_url 即可接入,零代码改造。
支持绑定自有域名,自动 HTTPS 证书,企业级安全通信,品牌形象统一。
一行代码部署,将所有 /api/* 请求转发至 Kilo.ai Gateway
/api/gateway/chat/completions 即可无缝接入 AI 能力
客户端 → EdgeOne 全球边缘节点 → Edge Function → Kilo.ai Gateway
兼容 OpenAI SDK,仅需修改 base_url
from openai import OpenAI
client = OpenAI(
base_url="https://你的域名/api/gateway",
api_key="你的KiloAPIKey"
)
response = client.chat.completions.create(
model="anthropic/claude-sonnet-4.5",
messages=[{"role":"user","content":"Hello!"}]
)
print(response.choices[0].message.content)
import OpenAI from 'openai';
const client = new OpenAI({
baseURL: 'https://你的域名/api/gateway',
apiKey: '你的KiloAPIKey',
});
const stream = await client.chat.completions.create({
model: 'anthropic/claude-sonnet-4.5',
messages: [{ role: 'user', content: 'Hello!' }],
stream: true,
});
for await (const chunk of stream) {
process.stdout.write(chunk.choices[0]?.delta?.content || '');
}
curl -X POST https://你的域名/api/gateway/chat/completions \
-H "Authorization: Bearer 你的KiloAPIKey" \
-H "Content-Type: application/json" \
-d '{
"model":"anthropic/claude-sonnet-4.5",
"messages":[{"role":"user","content":"Hello!"}],
"stream": true
}'
无需复杂配置,三分钟部署属于您的私有 AI API 网关