(self, ctx: RenderCtx, *, limit_chars: int, status: str | None)
| 96 | self._segments.append(ErrorSegment(str(event.get("message", "")))) |
| 97 | |
| 98 | def render(self, ctx: RenderCtx, *, limit_chars: int, status: str | None) -> str: |
| 99 | return render_segments( |
| 100 | self._segments, |
| 101 | ctx, |
| 102 | limit_chars=limit_chars, |
| 103 | status=status, |
| 104 | ) |
| 105 | |
| 106 | def _start_thinking(self, index: int) -> None: |
| 107 | if index >= 0: |