| 177 | |
| 178 | |
| 179 | class ErrorResponse(_msgspec.Struct, tag="error"): |
| 180 | message: str |
| 181 | # Full formatted traceback from the daemon, when the error originates from an |
| 182 | # unhandled exception. Surfaced by the CLI so daemon-side failures are debuggable. |
| 183 | traceback: str | None = None |
| 184 | |
| 185 | |
| 186 | Response = ( |
no outgoing calls