Get all custom providers.
(self)
| 650 | return False |
| 651 | |
| 652 | def get_custom_providers(self) -> dict[str, dict[str, Any]]: |
| 653 | """Get all custom providers.""" |
| 654 | return self.preferences.provider.custom_providers.copy() |
| 655 | |
| 656 | def get_custom_provider(self, name: str) -> dict[str, Any] | None: |
| 657 | """Get a specific custom provider configuration.""" |
no outgoing calls