feat: share chat page

This commit is contained in:
archer
2023-05-14 21:37:26 +08:00
parent 5f66f4523c
commit c16d59671f
23 changed files with 2047 additions and 65 deletions

View File

@@ -137,3 +137,14 @@ export interface PromotionRecordSchema {
createTime: Date; // 记录时间
amount: number;
}
export interface ShareChatSchema {
_id: string;
userId: string;
modelId: string;
password: string;
name: string;
tokens: number;
maxContext: number;
lastTime: Date;
}