DeepSeek
optimizedDeepSeek 的 OpenAI 兼容聊天模型,适合成本敏感的代码、推理和通用文本任务。
Gateway metadata
DeepSeek V3 适合需要较低单价并保留工具调用能力的评估和生产候选路径。
64,000 context tokens with endpoints: /v1/chat/completions.
Use the model id in any OpenAI-compatible request routed through the gateway.
curl
curl https://uouo.cloud/v1/chat/completions \
-H "Authorization: Bearer $UOUODUO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-chat",
"messages": [
{ "role": "user", "content": "Write a concise project status update." }
]
}'SDK
import OpenAI from "openai";
const client = new OpenAI({
apiKey: process.env.UOUODUO_API_KEY,
baseURL: "https://uouo.cloud/v1"
});
const completion = await client.chat.completions.create({
model: "deepseek-chat",
messages: [{ role: "user", content: "Write a concise project status update." }]
});