gpt-5 lower verbosity

This commit is contained in:
Dax Raad
2025-08-08 20:42:22 -04:00
parent 85eaa5b58b
commit 53630ebdce
6 changed files with 68 additions and 315 deletions

View File

@@ -81,4 +81,13 @@ export namespace ProviderTransform {
if (modelID.toLowerCase().includes("qwen")) return 1
return undefined
}
export function options(_providerID: string, modelID: string) {
if (modelID.includes("gpt-5")) {
return {
reasoningEffort: "low",
textVerbosity: "low",
}
}
}
}