Exception raised for errors in the JSON parsing process.
| 116 | |
| 117 | |
| 118 | class LLMJSONParsingError(LettaError): |
| 119 | """Exception raised for errors in the JSON parsing process.""" |
| 120 | |
| 121 | def __init__(self, message="Error parsing JSON generated by LLM"): |
| 122 | super().__init__(message=message) |
| 123 | |
| 124 | |
| 125 | class LocalLLMError(LettaError): |
no outgoing calls
no test coverage detected