Move api calls to oasst_api_client

This commit is contained in:
AbdBarho
2023-01-27 22:33:04 +01:00
parent 9429590a81
commit 3c791efb79
11 changed files with 52 additions and 94 deletions
+3 -2
View File
@@ -11,11 +11,12 @@ export interface MessageEmojis {
}
export interface Message extends MessageEmojis {
id: string;
text: string;
is_assistant: boolean;
id: string;
created_date: string; // iso date string
lang: string;
created_date: string; // iso date string
parent_id: string;
frontend_message_id?: string;
}