| 86 | // -- Provider/Model option builders -- |
| 87 | |
| 88 | export interface ProviderOption { |
| 89 | value: string; |
| 90 | label: string; |
| 91 | hint?: string; |
| 92 | } |
| 93 | |
| 94 | export function providerOptions(includeCustom = false): ProviderOption[] { |
| 95 | const opts: ProviderOption[] = [ |
nothing calls this directly
no outgoing calls
no test coverage detected