(value: unknown)
| 389 | } |
| 390 | |
| 391 | function withoutObjectProviderOptions(value: unknown): unknown { |
| 392 | if (!isObjectLike(value)) return value; |
| 393 | const { providerOptions: _providerOptions, ...shared } = value; |
| 394 | return shared; |
| 395 | } |
| 396 | |
| 397 | function anthropicThinkingBudget(providerOptions: unknown): number | undefined { |
| 398 | if (!isObjectLike(providerOptions)) return undefined; |
no test coverage detected