MCPcopy Create free account
hub / github.com/MoonshotAI/kimi-code / collapseSingleText

Function collapseSingleText

packages/agent-core/src/mcp/output.ts:326–331  ·  view source on GitHub ↗
(parts: readonly ContentPart[])

Source from the content-addressed store, hash-verified

324}
325
326function collapseSingleText(parts: readonly ContentPart[]): string | ContentPart[] {
327 if (parts.length === 1 && parts[0]?.type === 'text') {
328 return parts[0].text;
329 }
330 return [...parts];
331}

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected