keepme / src /interfaces /conversation.ts
narinder1231's picture
add IMessage interface
40d9188
raw
history blame contribute delete
241 Bytes
export interface ICreateConversationResponse {
conversation_id: string;
ephemeral_key: string;
}
export interface ICreateConnectionRequest {
modality: string;
}
export interface IMessage {
text: string;
sender: "user" | "bot";
}