跳到主要内容

Turing AI 能力基座平台

一个 API Key 接入全部主流大模型。兼容 OpenAI 协议,仅需替换 base_url 即可切换到图灵。

curl https://live-turing.cn.llm.tcljd.com/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $TURING_API_KEY" \
-d '{
"model": "turing/gpt-4o-mini",
"messages": [
{"role": "user", "content": "你好,请用一句话介绍自己"}
]
}'