| 12 | } |
| 13 | |
| 14 | interface Props { |
| 15 | provider: string; |
| 16 | model: string; |
| 17 | onChange: (provider: string, model: string) => void; |
| 18 | } |
| 19 | |
| 20 | export function ProviderPicker({ provider, model, onChange }: Props) { |
| 21 | const t = useT(); |
nothing calls this directly
no outgoing calls
no test coverage detected