Raised when the LLM call exceeds the configured timeout.
| 782 | # ============================================================================= |
| 783 | |
| 784 | class LLMTimeoutError(Exception): |
| 785 | """Raised when the LLM call exceeds the configured timeout.""" |
| 786 | |
| 787 | |
| 788 | class LLMCaller: |