File size: 241 Bytes
4ac396e
 
 
 
 
 
 
 
40d9188
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export interface ICreateConversationResponse {
  conversation_id: string;
  ephemeral_key: string;
}

export interface ICreateConnectionRequest {
  modality: string;
}

export interface IMessage {
  text: string;
  sender: "user" | "bot";
}