fix: stabilize transport-ready test timing

This commit is contained in:
Peter Steinberger
2026-01-16 23:03:12 +00:00
parent b4045e6adb
commit 28a5d124c3
3 changed files with 5 additions and 13 deletions

View File

@@ -61,10 +61,7 @@ export function listThinkingLevels(provider?: string | null, model?: string | nu
return levels;
}
export function listThinkingLevelLabels(
provider?: string | null,
model?: string | null,
): string[] {
export function listThinkingLevelLabels(provider?: string | null, model?: string | null): string[] {
if (isBinaryThinkingProvider(provider)) return ["off", "on"];
return listThinkingLevels(provider, model);
}