| export interface ICreateConversationResponse { | |
| conversation_id: string; | |
| ephemeral_key: string; | |
| } | |
| export interface ICreateConnectionRequest { | |
| modality: string; | |
| } | |
| export interface IMessage { | |
| text: string; | |
| sender: "user" | "bot"; | |
| } | |
| export interface ICreateConversationResponse { | |
| conversation_id: string; | |
| ephemeral_key: string; | |
| } | |
| export interface ICreateConnectionRequest { | |
| modality: string; | |
| } | |
| export interface IMessage { | |
| text: string; | |
| sender: "user" | "bot"; | |
| } | |