chat.ts 109 B

12345
  1. export type Message = {
  2. type: 'apiMessage' | 'userMessage';
  3. message: string;
  4. isStreaming?: boolean;
  5. };