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
This commit is contained in:
zhang-qiang
2026-03-21 16:33:44 +08:00
parent 7ac1d4621b
commit e96b023d04

View File

@@ -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)