通过标准 OpenAI API 格式,轻松调用 Claude 4.5、GPT-5.2、DeepSeek-V3.2、Kimi K2 等多款强大模型。
所有模型均通过 OpenAI 兼容格式调用
Anthropic 旗舰模型,卓越的推理与代码能力
OpenAI 最新一代模型,全面升级的综合能力
深度求索新一代开源大模型,性能卓越
月之暗面长上下文模型,20万字窗口
快手自研代码大模型,编程利器
快手 KAT 系列通用大模型
兼容所有 OpenAI SDK,复制即用
from openai import OpenAI client = OpenAI( base_url="https://dns.openclaw888.cn/v1", api_key="sk-cf-你的key", ) response = client.chat.completions.create( model="CLAUDE_4_5", messages=[{"role": "user", "content": "你好"}], stream=True, ) for chunk in response: print(chunk.choices[0].delta.content, end="")
curl https://dns.openclaw888.cn/v1/chat/completions \ -H "Authorization: Bearer sk-cf-你的key" \ -H "Content-Type: application/json" \ -d '{ "model": "CLAUDE_4_5", "messages": [{"role":"user","content":"你好"}], "stream": true }'