运行时间: --
--
总计账号
--
可用
--
使用中
--
已耗尽
--
已失效
账号管理
邮箱 数量 并发
暂无日志
可用模型
加载中...
账号详情
#邮箱状态剩余额度最后使用
加载中...
使用方法

OpenAI 格式 (非流式)

兼容 OpenAI SDK / ChatBox / Cherry Studio 等客户端

curl http://localhost:9090/v1/chat/completions \ -H "Content-Type: application/json" \ -d '{ "model": "gpt-4o", "messages": [ {"role": "user", "content": "Hello"} ] }'

OpenAI 格式 (流式)

添加 stream: true 开启 SSE 流式输出

curl http://localhost:9090/v1/chat/completions \ -H "Content-Type: application/json" \ -d '{ "model": "gpt-4o", "messages": [ {"role": "user", "content": "Hello"} ], "stream": true }'

Anthropic 格式

兼容 Anthropic SDK 的 Messages API

curl http://localhost:9090/v1/messages \ -H "Content-Type: application/json" \ -d '{ "model": "claude-4.6-sonnet", "max_tokens": 1024, "messages": [ {"role": "user", "content": "Hello"} ] }'

客户端配置

在 Cherry Studio / ChatBox 等客户端中配置:

API 地址: http://localhost:9090 API Key: 留空 (无需认证) 模型: 点击“获取模型列表”自动拉取 支持的接口: OpenAI: POST /v1/chat/completions Anthropic: POST /v1/messages 模型列表: GET /v1/models