mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-22 20:37:48 +00:00
User select node (#2397)
* feat: add user select node (#2300) * feat: add user select node * fix * type * fix * fix * fix * perf: user select code * perf: user select histories * perf: i18n --------- Co-authored-by: heheer <heheer@sealos.io>
This commit is contained in:
@@ -141,14 +141,20 @@
|
||||
"workflow": {
|
||||
"Input guide": "Input guide",
|
||||
"file_url": "Url",
|
||||
"option1": "Option 1",
|
||||
"option2": "Option 2",
|
||||
"read_files": "Documents parse",
|
||||
"read_files_result": "Document parsing results",
|
||||
"read_files_result_desc": "The original text of the document consists of the file name and the document content. Multiple files are separated by horizontal lines.",
|
||||
"read_files_tip": "Parse all uploaded documents in the conversation and return the corresponding document content",
|
||||
"select_description": "Select description",
|
||||
"select_result": "Select result",
|
||||
"template": {
|
||||
"communication": "Communication"
|
||||
},
|
||||
"user_file_input": "Files url",
|
||||
"user_file_input_desc": "Links to documents and images uploaded by users"
|
||||
"user_file_input_desc": "Links to documents and images uploaded by users",
|
||||
"user_select": "User select",
|
||||
"user_select_tip": "The module can have multiple options that lead to different workflow branches"
|
||||
}
|
||||
}
|
||||
|
@@ -1,6 +1,5 @@
|
||||
{
|
||||
"Delete_all": "Delete all",
|
||||
"delete_all_input_guide_confirm": "Confirm to delete all input guide lexicons",
|
||||
"chat_history": "chat record",
|
||||
"chat_input_guide_lexicon_is_empty": "No vocabulary has been configured yet",
|
||||
"citations": "{{num}} citations",
|
||||
@@ -13,25 +12,27 @@
|
||||
"contextual_preview": "Contextual preview",
|
||||
"csv_input_lexicon_tip": "Only supports CSV batch import, click to download the template",
|
||||
"custom_input_guide_url": "Custom thesaurus address",
|
||||
"delete_all_input_guide_confirm": "Confirm to delete all input guide lexicons",
|
||||
"empty_directory": "There is nothing left to choose from in this directory~",
|
||||
"file_amount_over": "Exceed maximum number of files {{max}}",
|
||||
"in_progress": "in progress",
|
||||
"input_guide": "Input guide",
|
||||
"input_guide_lexicon": "Lexicon",
|
||||
"input_guide_tip": "You can configure some preset questions. When the user enters a question, the relevant question is retrieved from these preset questions for prompt.",
|
||||
"insert_input_guide,_some_data_already_exists": "Duplicate data, automatically filtered, insert: {{len}} data",
|
||||
"is_chatting": "Chatting...please wait for the end",
|
||||
"items": "strip",
|
||||
"module_runtime_and": "module run time and",
|
||||
"multiple_AI_conversations": "Multiple AI conversations",
|
||||
"new_chat": "new conversation",
|
||||
"new_input_guide_lexicon": "New lexicon",
|
||||
"no_workflow_response": "No running data",
|
||||
"plugins_output": "Plugin output",
|
||||
"question_tip": "From left to right, the response order of each module",
|
||||
"rearrangement": "Search results rearranged",
|
||||
"select_file": "Select file",
|
||||
"select_img": "Select images",
|
||||
"stream_output": "stream output",
|
||||
"view_citations": "View citations",
|
||||
"web_site_sync": "Web site synchronization",
|
||||
"file_amount_over": "Exceed maximum number of files {{max}}",
|
||||
"input_guide": "Input guide",
|
||||
"input_guide_lexicon": "Lexicon",
|
||||
"input_guide_tip": "You can configure some preset questions. When the user enters a question, the relevant question is retrieved from these preset questions for prompt.",
|
||||
"insert_input_guide,_some_data_already_exists": "Duplicate data, automatically filtered, insert: {{len}} data",
|
||||
"new_input_guide_lexicon": "New lexicon",
|
||||
"select_file": "Select file",
|
||||
"select_img": "Select images"
|
||||
"web_site_sync": "Web site synchronization"
|
||||
}
|
||||
|
@@ -527,7 +527,8 @@
|
||||
"module tokens": "total tokens",
|
||||
"plugin output": "Plugin output value",
|
||||
"search using reRank": "Result rearrangement",
|
||||
"text output": "text output"
|
||||
"text output": "text output",
|
||||
"user_select_result": "User select result"
|
||||
},
|
||||
"retry": "Regenerate",
|
||||
"tts": {
|
||||
@@ -761,6 +762,7 @@
|
||||
},
|
||||
"module": {
|
||||
"Add question type": "Add question type",
|
||||
"Add_option": "Add option",
|
||||
"Can not connect self": "Cannot connect to self",
|
||||
"Confirm Delete Node": "Confirm delete node?",
|
||||
"Data Type": "Data type",
|
||||
@@ -771,6 +773,7 @@
|
||||
"Default Value": "Default value",
|
||||
"Default value": "Default value",
|
||||
"Default value placeholder": "If not filled, the default return is an empty string",
|
||||
"Diagram": "Diagram",
|
||||
"Edit intro": "Edit description",
|
||||
"Field Description": "Field description",
|
||||
"Field Name": "Field name",
|
||||
@@ -948,7 +951,9 @@
|
||||
"OnRevert version confirm": "Confirm to revert to this version? It will save the configuration of the version being edited and create a new published version for the reverted version.",
|
||||
"histories": "Publishing records"
|
||||
},
|
||||
"run_test": "Test",
|
||||
"template": {
|
||||
"Interactive": "Interactive",
|
||||
"Multimodal": "Multimodal",
|
||||
"Search": "Search"
|
||||
},
|
||||
@@ -1060,6 +1065,7 @@
|
||||
"no_data": "No data",
|
||||
"no_laf_env": "The system is not configured with Laf environment",
|
||||
"not_yet_introduced": "No introduction yet",
|
||||
"option": "Option",
|
||||
"pay": {
|
||||
"amount": "Amount",
|
||||
"balance": "Account balance",
|
||||
|
@@ -29,6 +29,8 @@
|
||||
"Custom outputs": "Custom outputs",
|
||||
"Error": "Error",
|
||||
"Read file result": "Document parsing result preview",
|
||||
"User_select_description": "User select description",
|
||||
"User_select_result": "User select result",
|
||||
"read files": "parsed document"
|
||||
},
|
||||
"template": {
|
||||
|
@@ -143,14 +143,20 @@
|
||||
"workflow": {
|
||||
"Input guide": "填写说明",
|
||||
"file_url": "文档链接",
|
||||
"option1": "选项 1",
|
||||
"option2": "选项 2",
|
||||
"read_files": "文档解析",
|
||||
"read_files_result": "文档解析结果",
|
||||
"read_files_result_desc": "文档原文,由文件名和文档内容组成,多个文件之间通过横线隔开。",
|
||||
"read_files_tip": "解析对话中所有上传的文档,并返回对应文档内容",
|
||||
"select_description": "说明文字",
|
||||
"select_result": "选择的结果",
|
||||
"template": {
|
||||
"communication": "通信"
|
||||
},
|
||||
"user_file_input": "文件链接",
|
||||
"user_file_input_desc": "用户上传的文档和图片链接"
|
||||
"user_file_input_desc": "用户上传的文档和图片链接",
|
||||
"user_select": "用户选择",
|
||||
"user_select_tip": "该模块可配置多个选项,以供对话时选择。不同选项可导向不同工作流支线"
|
||||
}
|
||||
}
|
||||
|
@@ -1,37 +1,38 @@
|
||||
{
|
||||
"Delete_all": "清空词库",
|
||||
"chat_history": "聊天记录",
|
||||
"chat_input_guide_lexicon_is_empty": "还没有配置词库",
|
||||
"citations": "{{num}}条引用",
|
||||
"click_contextual_preview": "点击查看上下文预览",
|
||||
"config_input_guide": "配置输入引导",
|
||||
"config_input_guide_lexicon": "配置词库",
|
||||
"config_input_guide_lexicon_title": "配置词库",
|
||||
"content_empty": "内容为空",
|
||||
"contextual": "{{num}}条上下文",
|
||||
"contextual_preview": "上下文预览 {{num}} 条",
|
||||
"csv_input_lexicon_tip": "仅支持 CSV 批量导入,点击下载模板",
|
||||
"custom_input_guide_url": "自定义词库地址",
|
||||
"delete_all_input_guide_confirm": "确定要清空输入引导词库吗?",
|
||||
"empty_directory": "这个目录已经没东西可选了~",
|
||||
"file_amount_over": "超出最大文件数量 {{max}}",
|
||||
"in_progress": "进行中",
|
||||
"input_guide": "输入引导",
|
||||
"input_guide_lexicon": "词库",
|
||||
"input_guide_tip": "可以配置一些预设的问题。在用户输入问题时,会从这些预设问题中获取相关问题进行提示。",
|
||||
"insert_input_guide,_some_data_already_exists": "有重复数据,已自动过滤,共插入 {{len}} 条数据",
|
||||
"new_input_guide_lexicon": "新词库",
|
||||
"is_chatting": "正在聊天中...请等待结束",
|
||||
"content_empty": "内容为空",
|
||||
"contextual": "{{num}}条上下文",
|
||||
"contextual_preview": "上下文预览 {{num}} 条",
|
||||
"items": "条",
|
||||
"view_citations": "查看引用",
|
||||
"citations": "{{num}}条引用",
|
||||
"click_contextual_preview": "点击查看上下文预览",
|
||||
"multiple_AI_conversations": "多组 AI 对话",
|
||||
"module_runtime_and": "模块运行时间和",
|
||||
"empty_directory": "这个目录已经没东西可选了~",
|
||||
"chat_history": "聊天记录",
|
||||
"stream_output": "流输出",
|
||||
"multiple_AI_conversations": "多组 AI 对话",
|
||||
"new_chat": "新对话",
|
||||
"new_input_guide_lexicon": "新词库",
|
||||
"no_workflow_response": "没有运行数据",
|
||||
"plugins_output": "插件输出",
|
||||
"in_progress": "进行中",
|
||||
"question_tip": "从上到下,为各个模块的响应顺序",
|
||||
"rearrangement": "检索结果重排",
|
||||
"web_site_sync": "Web站点同步",
|
||||
"new_chat": "新对话",
|
||||
"select_file": "选择文件",
|
||||
"select_img": "选择图片"
|
||||
"select_img": "选择图片",
|
||||
"stream_output": "流输出",
|
||||
"view_citations": "查看引用",
|
||||
"web_site_sync": "Web站点同步"
|
||||
}
|
||||
|
@@ -537,7 +537,8 @@
|
||||
"module tokens": "总 tokens",
|
||||
"plugin output": "插件输出值",
|
||||
"search using reRank": "结果重排",
|
||||
"text output": "文本输出"
|
||||
"text output": "文本输出",
|
||||
"user_select_result": "用户选择结果"
|
||||
},
|
||||
"retry": "重新生成",
|
||||
"tts": {
|
||||
@@ -771,6 +772,7 @@
|
||||
},
|
||||
"module": {
|
||||
"Add question type": "添加问题类型",
|
||||
"Add_option": "添加选项",
|
||||
"Can not connect self": "不能连接自身",
|
||||
"Confirm Delete Node": "确认删除该节点?",
|
||||
"Data Type": "数据类型",
|
||||
@@ -781,6 +783,7 @@
|
||||
"Default Value": "默认值",
|
||||
"Default value": "默认值",
|
||||
"Default value placeholder": "不填则默认返回空字符",
|
||||
"Diagram": "示意图",
|
||||
"Edit intro": "编辑描述",
|
||||
"Field Description": "字段描述",
|
||||
"Field Name": "字段名",
|
||||
@@ -958,7 +961,9 @@
|
||||
"OnRevert version confirm": "确认回退至该版本?会为您保存编辑中版本的配置,并为回退版本创建一个新的发布版本。",
|
||||
"histories": "发布记录"
|
||||
},
|
||||
"run_test": "运行",
|
||||
"template": {
|
||||
"Interactive": "交互",
|
||||
"Multimodal": "多模态",
|
||||
"Search": "搜索"
|
||||
},
|
||||
@@ -1070,6 +1075,7 @@
|
||||
"no_data": "暂无数据",
|
||||
"no_laf_env": "系统未配置Laf环境",
|
||||
"not_yet_introduced": "暂无介绍",
|
||||
"option": "选项",
|
||||
"pay": {
|
||||
"amount": "金额",
|
||||
"balance": "账号余额",
|
||||
|
@@ -6,7 +6,9 @@
|
||||
"Reset template confirm": "确认还原代码模板?将会重置所有输入和输出至模板值,请注意保存当前代码。"
|
||||
},
|
||||
"confirm_delete_field_tip": "确认删除该字段?",
|
||||
"create_link_error": "创建链接异常",
|
||||
"custom_input": "自定义输入",
|
||||
"delete_api": "确认删除该API密钥?删除后该密钥立即失效,对应的对话日志不会删除,请确认!",
|
||||
"edit_input": "编辑输入",
|
||||
"field_description": "字段描述",
|
||||
"field_description_placeholder": "描述该输入字段的功能,如果为工具调用参数,则该描述会影响模型生成的质量",
|
||||
@@ -27,6 +29,8 @@
|
||||
"Custom outputs": "自定义输出",
|
||||
"Error": "错误信息",
|
||||
"Read file result": "文档解析结果预览",
|
||||
"User_select_description": "说明文字",
|
||||
"User_select_result": "选择的结果",
|
||||
"read files": "解析的文档"
|
||||
},
|
||||
"template": {
|
||||
@@ -40,8 +44,6 @@
|
||||
"workflow_start": "流程开始"
|
||||
},
|
||||
"tool_input": "工具参数",
|
||||
"variable_picker_tips": "可输入节点名或变量名搜索",
|
||||
"delete_api": "确认删除该API密钥?删除后该密钥立即失效,对应的对话日志不会删除,请确认!",
|
||||
"create_link_error": "创建链接异常",
|
||||
"update_link_error": "更新链接异常"
|
||||
"update_link_error": "更新链接异常",
|
||||
"variable_picker_tips": "可输入节点名或变量名搜索"
|
||||
}
|
||||
|
Reference in New Issue
Block a user