File size: 170 Bytes
c59d808
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
// TODO: DELETE and replace with actual types
export interface ChatMessageResponse {
  message: string; 
}

export interface ChatPart {
  text?: string;
  type: string;
}