|
|
@@ -1397,7 +1397,11 @@ export namespace SessionPrompt {
|
|
|
...small.info.options,
|
|
|
}
|
|
|
if (small.providerID === "openai" || small.modelID.includes("gpt-5")) {
|
|
|
- options["reasoningEffort"] = "minimal"
|
|
|
+ if (small.modelID.includes("5.1")) {
|
|
|
+ options["reasoningEffort"] = "low"
|
|
|
+ } else {
|
|
|
+ options["reasoningEffort"] = "minimal"
|
|
|
+ }
|
|
|
}
|
|
|
if (small.providerID === "google") {
|
|
|
options["thinkingConfig"] = {
|