(apiId: string)
| 641 | } |
| 642 | |
| 643 | function googleThinkingBudgetMax(apiId: string) { |
| 644 | const id = apiId.toLowerCase() |
| 645 | if (id.includes("2.5") && id.includes("pro") && !id.includes("flash")) return 32_768 |
| 646 | return 24_576 |
| 647 | } |
| 648 | |
| 649 | // SAP's Zod schema drops unknown top-level keys; reasoning controls survive |
| 650 | // only via `modelParams` (catchall), forwarded verbatim by the SAP SDKs. |
no outgoing calls
no test coverage detected