Switch to a specific provider and model.
(self, provider: str, model: str)
| 358 | logger.debug(f"Switched to {provider}/{self._active_model}") |
| 359 | |
| 360 | def switch_model(self, provider: str, model: str): |
| 361 | """Switch to a specific provider and model.""" |
| 362 | self._active_provider = provider |
| 363 | self._active_model = model |
| 364 | logger.debug(f"Switched to {provider}/{model}") |
| 365 | |
| 366 | # ── Client Management ───────────────────────────────────────────────────── |
| 367 |
no outgoing calls