多场景对架构一期

This commit is contained in:
yhjun1026
2023-05-24 17:33:40 +08:00
parent b5139ea643
commit 2fc62c16ef
37 changed files with 2052 additions and 131 deletions

8
pilot/scene/base.py Normal file
View File

@@ -0,0 +1,8 @@
from enum import Enum
class ChatScene(Enum):
ChatWithDb = "chat_with_db"
ChatExecution = "chat_execution"
ChatKnowledge = "chat_default_knowledge"
ChatNewKnowledge = "chat_new_knowledge"
ChatNormal = "chat_normal"