MCPcopy Create free account
hub / github.com/Alishahryar1/free-claude-code / render

Method render

messaging/transcript/buffer.py:98–104  ·  view source on GitHub ↗
(self, ctx: RenderCtx, *, limit_chars: int, status: str | None)

Source from the content-addressed store, hash-verified

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:

Calls 1

render_segmentsFunction · 0.85