[fix][chat]Memory enabled by the review task should be stored in embedding store.

This commit is contained in:
jerryjzhang
2024-12-26 00:11:12 +08:00
parent c483bb891a
commit d40400d2a4
6 changed files with 45 additions and 18 deletions

View File

@@ -90,10 +90,10 @@ CREATE TABLE IF NOT EXISTS `s2_chat_memory` (
`db_schema` TEXT ,
`s2_sql` TEXT ,
`side_info` TEXT ,
`status` char(10) ,
`llm_review` char(10) ,
`status` varchar(10) ,
`llm_review` varchar(10) ,
`llm_comment` TEXT,
`human_review` char(10) ,
`human_review` varchar(10) ,
`human_comment` TEXT ,
`created_at` TIMESTAMP DEFAULT CURRENT_TIMESTAMP ,
`updated_at` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ,