Skip to main content

Turing AI Platform

One API key, every major LLM. OpenAI-compatible — just swap base_url and you're talking to Turing.

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-5.4-mini",
"messages": [
{"role": "user", "content": "你好,请用一句话介绍自己"}
]
}'