Commit fd07ff4d authored by 张会鑫's avatar 张会鑫

首页文案修改

parent b72b0a2b
...@@ -29,8 +29,8 @@ class Scene: ...@@ -29,8 +29,8 @@ class Scene:
class ChatScene(Enum): class ChatScene(Enum):
ChatWithDbExecute = Scene( ChatWithDbExecute = Scene(
code="chat_with_db_execute", code="chat_with_db_execute",
name="Chat Data", name="数据聊天",
describe="Dialogue with your private data through natural language.", describe="通过自然语言与您的私人数据进行对话",
param_types=["DB Select"], param_types=["DB Select"],
) )
ExcelLearning = Scene( ExcelLearning = Scene(
...@@ -41,16 +41,16 @@ class ChatScene(Enum): ...@@ -41,16 +41,16 @@ class ChatScene(Enum):
) )
ChatExcel = Scene( ChatExcel = Scene(
code="chat_excel", code="chat_excel",
name="Chat Excel", name="数据表对话",
describe="Dialogue with your excel, use natural language.", describe="使用自然语言,与你的Excel进行对话",
param_types=["File Select"], param_types=["File Select"],
prepare_scene_code="excel_learning", prepare_scene_code="excel_learning",
) )
ChatWithDbQA = Scene( ChatWithDbQA = Scene(
code="chat_with_db_qa", code="chat_with_db_qa",
name="Chat DB", name="数据库对话",
describe="Have a Professional Conversation with Metadata.", describe="以专业的方式探讨或处理元数据",
param_types=["DB Select"], param_types=["DB Select"],
) )
ChatExecution = Scene( ChatExecution = Scene(
...@@ -62,8 +62,8 @@ class ChatScene(Enum): ...@@ -62,8 +62,8 @@ class ChatScene(Enum):
ChatAgent = Scene( ChatAgent = Scene(
code="chat_agent", code="chat_agent",
name="Agent Chat", name="智能体对话",
describe="Use tools through dialogue to accomplish your goals.", describe="通过对话使用工具,以实现您的目标",
param_types=["Plugin Select"], param_types=["Plugin Select"],
) )
...@@ -83,14 +83,14 @@ class ChatScene(Enum): ...@@ -83,14 +83,14 @@ class ChatScene(Enum):
) )
ChatDashboard = Scene( ChatDashboard = Scene(
"chat_dashboard", "chat_dashboard",
"Dashboard", "数据可视化",
"Provide you with professional analysis reports through natural language.", "通过自然语言,为您提供专业的分析报告",
["DB Select"], ["DB Select"],
) )
ChatKnowledge = Scene( ChatKnowledge = Scene(
"chat_knowledge", "chat_knowledge",
"Chat Knowledge", "知识库对话",
"Dialogue through natural language and private documents and knowledge bases.", "通过自然语言以及私人文档和知识库进行对话",
["Knowledge Space Select"], ["Knowledge Space Select"],
) )
ExtractSummary = Scene( ExtractSummary = Scene(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment