| 37 | |
| 38 | // Type for message parts (tool calls and their states) |
| 39 | interface MessagePart { |
| 40 | type: string |
| 41 | state?: string |
| 42 | toolName?: string |
| 43 | [key: string]: unknown |
| 44 | } |
| 45 | |
| 46 | interface ChatMessage { |
| 47 | role: string |
nothing calls this directly
no outgoing calls
no test coverage detected