({
model,
reasoningBudget,
settings,
}: GetModelReasoningOptions)
| 106 | } |
| 107 | |
| 108 | export const getAnthropicReasoning = ({ |
| 109 | model, |
| 110 | reasoningBudget, |
| 111 | settings, |
| 112 | }: GetModelReasoningOptions): AnthropicReasoningParams | undefined => |
| 113 | shouldUseReasoningBudget({ model, settings }) ? { type: "enabled", budget_tokens: reasoningBudget! } : undefined |
| 114 | |
| 115 | export const getAnthropicProviderReasoning = ({ |
| 116 | model, |
no test coverage detected