From e96b023d04574c09166ce4167a4181edfd80bd41 Mon Sep 17 00:00:00 2001 From: zhang-qiang Date: Sat, 21 Mar 2026 16:33:44 +0800 Subject: [PATCH] fix(ci): reword comment in default.ts to avoid t11 any-budget false positive The word 'any' in a JSDoc comment was matched by the regex-based t11 checker. Reworded to 'prefixes' to eliminate the false positive. Made-with: Cursor --- open-sse/executors/default.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/open-sse/executors/default.ts b/open-sse/executors/default.ts index bacea0ccdf..99c3b646de 100644 --- a/open-sse/executors/default.ts +++ b/open-sse/executors/default.ts @@ -82,7 +82,7 @@ export class DefaultExecutor extends BaseExecutor { /** * For compatible providers, the model name is already clean by the time * it reaches the executor (chatCore sets body.model = modelInfo.model, - * which is the parsed model ID without any internal routing prefix). + * which is the parsed model ID without internal routing prefixes). * * Models may legitimately contain "/" as part of their ID (e.g. "zai-org/GLM-5-FP8", * "org/model-name") — we must NOT strip path segments. (Fix #493)