Commit
·
4ac396e
1
Parent(s):
9b0016a
Add conversation interfaces for conversation creation and connection requests
Browse files
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 |
+
}
|