Exception raised for LLM client errors.
| 139 | |
| 140 | |
| 141 | class LLMClientError(Exception): |
| 142 | """Exception raised for LLM client errors.""" |
| 143 | |
| 144 | def __init__(self, error: LLMError): |
| 145 | self.error = error |
| 146 | super().__init__(str(error)) |
| 147 | |
| 148 | |
| 149 | def get_llm_client( |
no outgoing calls
no test coverage detected