message.d.ts 245 B

1234567891011
  1. type Message = {
  2. sender: "user" | "assistant";
  3. content: string;
  4. timestamp: string;
  5. imageUrls?: string[];
  6. type?: "thought" | "error" | "action";
  7. success?: boolean;
  8. pending?: boolean;
  9. translationID?: string;
  10. eventID?: number;
  11. };