(modelId: string, plan: CopilotPlanType)
| 446 | } |
| 447 | |
| 448 | export function isCopilotModelAvailable(modelId: string, plan: CopilotPlanType): boolean { |
| 449 | const multiplier = getCopilotMultiplier(modelId, plan) |
| 450 | return multiplier !== null |
| 451 | } |
| 452 | |
| 453 | export function listCopilotMultipliers(plan: CopilotPlanType): Record<string, number> { |
| 454 | const result: Record<string, number> = {} |
nothing calls this directly
no test coverage detected