Cline (api.cline.bot) wraps non-stream chat completions in
{"success":true,"data":{...choices...}}, which both the dashboard model-test
ping and the proxy non-stream path read at top level, producing "Provider
returned no completion choices for this model" (#3644). Unwrap the envelope
before usage extraction and response translation; the error envelope
({"success":false,...}) never matches and passes through untouched.
Scoped through `transport.quirks.clineEnvelope` so only cline/clinepass opt
in — no other provider's response body is ever rewritten.
Also adds a live Cline catalog: `fetchClineRawModels()` is shared between
`resolveClineModels()` (full catalog, including free-tier ids such as
z-ai/glm-5.3-flash) and `resolveClinepassModels()` (cline-pass/* only), wired
into /v1/models, the per-provider models route, and the combo selector's
model picker with the static catalog kept as fallback.
Refreshes the dead api-airforce free models (anthropic/claude-3.7-sonnet,
moonshot/kimi-k2.6, google/gemini-2.5-flash) with the live gpt-oss-120b,
gpt-oss-20b and kimi-k2.7-code, plus passthroughModels, forceStream and a
suggested-models filter.
20 lines
814 B
JavaScript
20 lines
814 B
JavaScript
import { PROVIDERS } from "../providers/index.js";
|
|
|
|
/**
|
|
* Unwrap Cline's non-stream envelope: {"success":true,"data":{...choices...}}.
|
|
*
|
|
* Scoped to providers opting in via `transport.quirks.clineEnvelope` so no other
|
|
* provider's body is ever rewritten. The error envelope ({"success":false,...})
|
|
* never matches and passes through untouched.
|
|
*
|
|
* @param {object} body - Parsed upstream response body
|
|
* @param {string} provider - Provider id or alias
|
|
* @returns {object} The inner `data` object, or `body` unchanged
|
|
*/
|
|
export function unwrapClineEnvelope(body, provider) {
|
|
if (!provider || !PROVIDERS[provider]?.quirks?.clineEnvelope) return body;
|
|
const { success, data } = body || {};
|
|
if (success !== true || !data || typeof data !== "object" || Array.isArray(data)) return body;
|
|
return data;
|
|
}
|