| 15 | import { ImageResults } from './image-results' |
| 16 | |
| 17 | interface MessageData { |
| 18 | sources: SearchResult[] |
| 19 | newsResults?: NewsResult[] |
| 20 | imageResults?: ImageResult[] |
| 21 | followUpQuestions: string[] |
| 22 | ticker?: string |
| 23 | } |
| 24 | |
| 25 | // Helper function to extract text content from UIMessage |
| 26 | function getMessageContent(message: UIMessage): string { |
nothing calls this directly
no outgoing calls
no test coverage detected