| type Message = { | |
| sender: "user" | "assistant"; | |
| content: string; | |
| timestamp: string; | |
| imageUrls?: string[]; | |
| type?: "thought" | "error" | "action"; | |
| success?: boolean; | |
| pending?: boolean; | |
| translationID?: string; | |
| eventID?: number; | |
| }; | |
| type Message = { | |
| sender: "user" | "assistant"; | |
| content: string; | |
| timestamp: string; | |
| imageUrls?: string[]; | |
| type?: "thought" | "error" | "action"; | |
| success?: boolean; | |
| pending?: boolean; | |
| translationID?: string; | |
| eventID?: number; | |
| }; | |