(modelId: string)
| 7 | ] as const; |
| 8 | |
| 9 | export const isComparisonModel = (modelId: string) => |
| 10 | ComparisonModel[modelId as keyof typeof ComparisonModel] !== undefined; |
| 11 | |
| 12 | export const isComparisonModelName = (modelName: string) => |
| 13 | Object.values(COMPARISON_MODEL_NAMES).some((model) => model.name === modelName); |
no outgoing calls
no test coverage detected