feat: 初步实现 webchat 页面

This commit is contained in:
Soulter
2025-01-10 21:48:15 +08:00
parent 966df00124
commit 480dffb51b
18 changed files with 704 additions and 10 deletions
+8
View File
@@ -35,4 +35,12 @@ CREATE TABLE IF NOT EXISTS atri_vision(
session_id VARCHAR(32),
sender_nickname VARCHAR(32),
timestamp INTEGER
);
CREATE TABLE IF NOT EXISTS webchat_conversation(
user_id TEXT,
cid TEXT,
history TEXT,
created_at INTEGER,
updated_at INTEGER
);