(content: CustomMessage["content"] | UserMessage["content"])
| 1296 | } |
| 1297 | |
| 1298 | function getMessageText(content: CustomMessage["content"] | UserMessage["content"]): string { |
| 1299 | if (typeof content === "string") return content; |
| 1300 | return content |
| 1301 | .filter((b): b is TextContent => b.type === "text") |
| 1302 | .map((b) => b.text) |
| 1303 | .join("\n"); |
| 1304 | } |
| 1305 | |
| 1306 | function getMessageImages(content: CustomMessage["content"] | UserMessage["content"]): ImageContent[] { |
| 1307 | if (typeof content === "string") return []; |
no outgoing calls
no test coverage detected