Get a specific custom provider configuration.
(self, name: str)
| 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.""" |
| 658 | return self.preferences.provider.custom_providers.get(name) |
| 659 | |
| 660 | def is_custom_provider(self, name: str) -> bool: |
| 661 | """Check if a provider is a custom provider.""" |