MCPcopy Create free account
hub / github.com/IfcOpenShell/IfcOpenShell / truncateToolResult

Function truncateToolResult

src/ifcchat/app.js:511–514  ·  view source on GitHub ↗
(text)

Source from the content-addressed store, hash-verified

509const minuteTokenMap = new Map();
510
511function truncateToolResult(text) {
512 if (MAX_TOOL_RESULT_CHARS == 0 || text.length <= MAX_TOOL_RESULT_CHARS) return text;
513 return text.slice(0, MAX_TOOL_RESULT_CHARS) + "\n... (truncated)";
514}
515
516function trimHistory() {
517 if (messages.length <= MAX_HISTORY_MESSAGES) return;

Callers 1

runAgentTurnFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected