narinder1231 commited on
Commit
4ac396e
·
1 Parent(s): 9b0016a

Add conversation interfaces for conversation creation and connection requests

Browse files
Files changed (1) hide show
  1. src/interfaces/conversation.ts +8 -0
src/interfaces/conversation.ts ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ export interface ICreateConversationResponse {
2
+ conversation_id: string;
3
+ ephemeral_key: string;
4
+ }
5
+
6
+ export interface ICreateConnectionRequest {
7
+ modality: string;
8
+ }