(models: string[])
| 59 | } |
| 60 | |
| 61 | export function modelOptions(models: string[]): SelectOption[] { |
| 62 | return sortModelsForPicker(models).map((model) => ({ label: model, value: model })); |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * Show the role explanation, then let the user pick a model from their full |
no test coverage detected