(registry: &ProviderRegistry)
| 1636 | } |
| 1637 | |
| 1638 | fn list_providers_interactive(registry: &ProviderRegistry) { |
| 1639 | println!("\nConfigured Providers:\n"); |
| 1640 | for provider in registry.list() { |
| 1641 | let models_count = provider.models().len(); |
| 1642 | println!(" {} - {} model(s)", provider.id(), models_count); |
| 1643 | } |
| 1644 | println!(); |
| 1645 | } |
| 1646 | |
| 1647 | fn select_model( |
| 1648 | _executor: &mut AgentExecutor, |
no test coverage detected