(value: unknown)
| 83 | export const COMPACTED_TOOL_OUTPUT_PLACEHOLDER = "[Old tool result content cleared]" |
| 84 | |
| 85 | function stringifyToolContent(value: unknown): string { |
| 86 | return typeof value === "string" ? value : JSON.stringify(value) |
| 87 | } |
| 88 | |
| 89 | export function extractCompletedToolOutput(part: any): string | undefined { |
| 90 | if ( |
no outgoing calls
no test coverage detected