fix(param-support): handle strip rules without match/drop

Cloudflare AI rule only sets flattenContent. Treat missing match as
provider-wide and missing drop as empty list to avoid crash. Fixes #1960.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Joseph Yaksich
2026-06-26 17:18:39 +07:00
committed by decolua
parent 639f1204d0
commit 4a54824f7f
2 changed files with 33 additions and 1 deletions

View File

@@ -16,6 +16,7 @@ const STRIP_RULES = [
// Test a rule's match (regex or predicate) against the model id.
function matches(rule, model) {
if (!rule.match) return true;
return typeof rule.match === "function" ? rule.match(model) : rule.match.test(model);
}
@@ -25,7 +26,7 @@ export function stripUnsupportedParams(provider, model, body) {
for (const rule of STRIP_RULES) {
if (rule.provider && rule.provider !== provider) continue;
if (!matches(rule, model)) continue;
for (const key of rule.drop) {
for (const key of rule.drop || []) {
if (body[key] !== undefined) delete body[key];
}
// CF Workers AI oneOf root schema only accepts content as plain string (#1926)

View File

@@ -0,0 +1,31 @@
import { describe, it, expect } from "vitest";
import { stripUnsupportedParams } from "../../open-sse/translator/concerns/paramSupport.js";
describe("stripUnsupportedParams", () => {
it("flattens Cloudflare AI OpenAI content-part arrays", () => {
const body = {
messages: [
{
role: "user",
content: [
{ type: "text", text: "hello " },
{ type: "image_url", image_url: { url: "data:image/png;base64,xx" } },
{ type: "text", text: "world" },
],
},
],
};
expect(() => stripUnsupportedParams("cloudflare-ai", "@cf/meta/llama-3.1-8b-instruct", body)).not.toThrow();
expect(body.messages[0].content).toBe("hello world");
});
it("still drops unsupported GitHub model params", () => {
const body = { temperature: 0.7, top_p: 1 };
stripUnsupportedParams("github", "gpt-5.4", body);
expect(body).toEqual({ top_p: 1 });
});
});