Raised when an LLM response hit the length cap and the caller asked to treat truncation as a failure (so a partial page is skipped, not written).
| 393 | |
| 394 | |
| 395 | class TruncatedResponseError(Exception): |
| 396 | """Raised when an LLM response hit the length cap and the caller asked to |
| 397 | treat truncation as a failure (so a partial page is skipped, not written).""" |
| 398 | |
| 399 | |
| 400 | def _llm_call( |
no outgoing calls
no test coverage detected