Skip to content

Commit e3155df

Browse files
committed
style: apply prettier formatting
1 parent 6e91e38 commit e3155df

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

core/llm/toolSupport.ts

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ export const PROVIDER_TOOL_SUPPORT: Record<string, (model: string) => boolean> =
329329
},
330330
novita: (model) => {
331331
const lower = model.toLowerCase();
332-
332+
333333
// Exact match models
334334
const exactMatches = [
335335
"deepseek/deepseek-r1-0528",
@@ -341,23 +341,20 @@ export const PROVIDER_TOOL_SUPPORT: Record<string, (model: string) => boolean> =
341341
"zai-org/glm-4.5",
342342
"moonshotai/kimi-k2-instruct",
343343
];
344-
344+
345345
if (exactMatches.includes(lower)) {
346346
return true;
347347
}
348-
348+
349349
// Prefix match models
350-
const prefixMatches = [
351-
"qwen/qwen3",
352-
"openai/gpt-oss",
353-
];
354-
350+
const prefixMatches = ["qwen/qwen3", "openai/gpt-oss"];
351+
355352
for (const prefix of prefixMatches) {
356353
if (lower.startsWith(prefix)) {
357354
return true;
358355
}
359356
}
360-
357+
361358
return false;
362359
},
363360
};

0 commit comments

Comments
 (0)