tweak: add support for medium reasoning w/ gemini 3.1 (#14316)
This commit is contained in:
parent
91f8dd5f57
commit
5364ab74a2
1 changed files with 6 additions and 1 deletions
|
|
@ -599,8 +599,13 @@ export namespace ProviderTransform {
|
|||
},
|
||||
}
|
||||
}
|
||||
let levels = ["low", "high"]
|
||||
if (id.includes("3.1")) {
|
||||
levels = ["low", "medium", "high"]
|
||||
}
|
||||
|
||||
return Object.fromEntries(
|
||||
["low", "high"].map((effort) => [
|
||||
levels.map((effort) => [
|
||||
effort,
|
||||
{
|
||||
includeThoughts: true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue