(model: string | undefined)
| 49 | } |
| 50 | |
| 51 | export function supportsReasoningSummary(model: string | undefined): boolean { |
| 52 | const normalized = model?.trim().toLowerCase(); |
| 53 | if (!normalized) return true; |
| 54 | const modelName = normalized.split('/').pop() ?? normalized; |
| 55 | return !MODELS_WITHOUT_REASONING_SUMMARY.has(modelName); |
| 56 | } |
| 57 | |
| 58 | function buildMcpServerConfig(mcpServers: McpServersConfig): Record<string, unknown> { |
| 59 | const config: Record<string, unknown> = {}; |
no outgoing calls
no test coverage detected