Hao (@haowang) 在 Cline Pass API 的非流式响应格式有问题 中发帖
Cline Pass API 的非流式响应居然把 choices 内容放到 data 字段里面,完全不符合 OpenAI Completions API 规范,导致下游一切按标准 choices 解析的网关全部拿到空内容,包括 new-api、CLIProxyAPI、cc-switch 等。
curl -s -X POST "https://api.cline.bot/api/v1/chat/completions" \
-H "Authorization: Bearer $CLINE_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"cline-pass/glm-5.2","max_tokens":8,"stream":false,
"messages":[{"role":"user","co...