|
|
|
@ -1091,46 +1091,45 @@ class GptsAppDao(BaseDao): |
|
|
|
|
"chat_dba", "chat_dashboard", "chat_excel" |
|
|
|
|
""" |
|
|
|
|
chat_normal_ctx = NativeTeamContext( |
|
|
|
|
chat_scene="chat_normal", |
|
|
|
|
chat_scene="大模型问答", |
|
|
|
|
scene_name="Chat Normal", |
|
|
|
|
scene_describe="Native LLM dialogue", |
|
|
|
|
scene_describe="本地LLM对话", |
|
|
|
|
param_title="", |
|
|
|
|
show_disable=False, |
|
|
|
|
) |
|
|
|
|
chat_knowledge_ctx = NativeTeamContext( |
|
|
|
|
chat_scene="chat_knowledge", |
|
|
|
|
chat_scene="知识库问答", |
|
|
|
|
scene_name="Chat Knowledge", |
|
|
|
|
scene_describe="Private knowledge base Q&A", |
|
|
|
|
scene_describe="私人知识库问答", |
|
|
|
|
param_title="", |
|
|
|
|
show_disable=False, |
|
|
|
|
) |
|
|
|
|
chat_with_db_qa_ctx = NativeTeamContext( |
|
|
|
|
chat_scene="chat_with_db_qa", |
|
|
|
|
chat_scene="数据库问答", |
|
|
|
|
scene_name="Chat DB", |
|
|
|
|
scene_describe="Database Metadata Q&A", |
|
|
|
|
scene_describe="数据库元数据问答", |
|
|
|
|
param_title="", |
|
|
|
|
show_disable=False, |
|
|
|
|
) |
|
|
|
|
chat_with_db_execute_ctx = NativeTeamContext( |
|
|
|
|
chat_scene="chat_with_db_execute", |
|
|
|
|
scene_name="Chat Data", |
|
|
|
|
scene_describe="Have a conversation with your private data through natural" |
|
|
|
|
chat_scene="数据问答", |
|
|
|
|
scene_name="chat_with_db_execute", |
|
|
|
|
scene_describe="通过自然方式与您的私人数据进行对话" |
|
|
|
|
" language", |
|
|
|
|
param_title="", |
|
|
|
|
show_disable=False, |
|
|
|
|
) |
|
|
|
|
chat_dashboard_ctx = NativeTeamContext( |
|
|
|
|
chat_scene="chat_dashboard", |
|
|
|
|
chat_scene="数据仪表盘问答", |
|
|
|
|
scene_name="Chat Dashboard", |
|
|
|
|
scene_describe="Provide you with professional data analysis reports through" |
|
|
|
|
" natural language", |
|
|
|
|
scene_describe="为您提供专业的数据分析报告", |
|
|
|
|
param_title="", |
|
|
|
|
show_disable=False, |
|
|
|
|
) |
|
|
|
|
chat_excel_ctx = NativeTeamContext( |
|
|
|
|
chat_scene="chat_excel", |
|
|
|
|
chat_scene="excel问答", |
|
|
|
|
scene_name="Chat Excel", |
|
|
|
|
scene_describe="Excel analysis through natural language", |
|
|
|
|
scene_describe="Excel自然语言分析", |
|
|
|
|
param_title="", |
|
|
|
|
show_disable=False, |
|
|
|
|
) |
|
|
|
|