(self, config: Config)
| 40 | """API-key based backend using pydantic-ai + openai/litellm clients.""" |
| 41 | |
| 42 | def __init__(self, config: Config) -> None: |
| 43 | self._config = config |
| 44 | self._fallback_models = create_fallback_models(config) |
| 45 | self._custom_instructions = config.get_prompt_addition() |
| 46 | |
| 47 | def complete( |
| 48 | self, |
nothing calls this directly
no test coverage detected