MCPcopy Create free account
hub / github.com/github/gh-aw / appendConversationLine

Function appendConversationLine

actions/setup/js/log_parser_format.cjs:399–407  ·  view source on GitHub ↗
(lines, line, state)

Source from the content-addressed store, hash-verified

397 }
398
399 function appendConversationLine(lines, line, state) {
400 if (state.conversationLineCount >= state.maxConversationLines) {
401 state.conversationTruncated = true;
402 return false;
403 }
404 lines.push(line);
405 state.conversationLineCount++;
406 return true;
407 }
408
409 function appendAgentText(lines, text, state) {
410 let displayText = text;

Callers 3

appendAgentTextFunction · 0.85
appendReasoningTextFunction · 0.85
appendToolExecutionLineFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected