Implemented a new multi-scenario dialogue architecture

This commit is contained in:
yhjun1026
2023-05-31 15:59:50 +08:00
parent 973bcce03c
commit 06bc4452d4
35 changed files with 905 additions and 743 deletions

View File

@@ -2,8 +2,10 @@ from enum import Enum
class ChatScene(Enum):
ChatWithDb = "chat_with_db"
ChatWithDbExecute = "chat_with_db_execute"
ChatWithDbQA = "chat_with_db_qa"
ChatExecution = "chat_execution"
ChatKnowledge = "chat_default_knowledge"
ChatNewKnowledge = "chat_new_knowledge"
ChatUrlKnowledge = "chat_url_knowledge"
ChatNormal = "chat_normal"