(variant: string)
| 157 | } |
| 158 | |
| 159 | export function formatVariantName(variant: string) { |
| 160 | return variant |
| 161 | .split(/[_-]/) |
| 162 | .map((part) => (part ? part.charAt(0).toUpperCase() + part.slice(1) : part)) |
| 163 | .join(" ") |
| 164 | } |
| 165 | |
| 166 | function buildModelSelectOptions( |
| 167 | providers: readonly ConfigOptionProvider[], |
no outgoing calls
no test coverage detected