mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-28 00:56:26 +00:00
feat: add tool params node & tool params add array type (#2824)
* add tool params node * add tool params enum * node response * tool add array type params * fix tool params * fix * fix * fix
This commit is contained in:
@@ -27,6 +27,7 @@
|
||||
"create_link_error": "创建链接异常",
|
||||
"custom_feedback": "自定义反馈",
|
||||
"custom_input": "自定义输入",
|
||||
"custom_tool_input": "自定义工具参数",
|
||||
"dataset_quote_role": "角色",
|
||||
"dataset_quote_role_system_option_desc": "历史记录连贯优先(推荐)",
|
||||
"dataset_quote_role_tip": "设置为 System 时,将会把知识库引用内容放置到 system 消息中,可以确保历史记录的连贯性,但约束效果可能不佳,需要多调试。\n设置为 User 时,将会把知识库引用内容放置到 user 消息中,并且需要指定 {{question}} 变量位置。会对历史记录连贯性有一定影响,但通常约束效果更优。",
|
||||
@@ -78,6 +79,7 @@
|
||||
"intro_text_concatenation": "可对固定或传入的文本进行加工后输出,非字符串类型数据最终会转成字符串类型。",
|
||||
"intro_text_content_extraction": "可从文本中提取指定的数据,例如:sql语句、搜索关键词、代码等",
|
||||
"intro_tool_call_termination": "该模块需配置工具调用使用。当该模块被执行时,本次工具调用将会强制结束,并且不再调用AI针对工具调用结果回答问题。",
|
||||
"intro_tool_params_config": "该模块需要配合工具调用使用。可以创建所需的工具参数,工具调用将自动生成参数内容并传给对应的功能块。",
|
||||
"is_empty": "为空",
|
||||
"is_equal_to": "等于",
|
||||
"is_not_empty": "不为空",
|
||||
@@ -156,7 +158,17 @@
|
||||
"text_to_extract": "需要提取的文本",
|
||||
"these_variables_will_be_input_parameters_for_code_execution": "这些变量会作为代码的运行的输入参数",
|
||||
"tool_call_termination": "工具调用终止",
|
||||
"tool_field": "工具参数配置",
|
||||
"tool_input": "工具参数",
|
||||
"tool_params.enum_placeholder": "apple \npeach \nwatermelon",
|
||||
"tool_params.enum_values": "枚举值(可选)",
|
||||
"tool_params.enum_values_tip": "列举出该字段可能的值,每行一个",
|
||||
"tool_params.params_description": "参数描述",
|
||||
"tool_params.params_description_placeholder": "姓名/年龄/SQL 语句...",
|
||||
"tool_params.params_name": "参数名",
|
||||
"tool_params.params_name_placeholder": "name/age/sql",
|
||||
"tool_params.tool_params_result": "参数配置结果",
|
||||
"tool_params_config": "工具参数配置",
|
||||
"trigger_after_application_completion": "将在应用完全结束后触发",
|
||||
"update_link_error": "更新链接异常",
|
||||
"update_specified_node_output_or_global_variable": "可以更新指定节点的输出值或更新全局变量",
|
||||
|
Reference in New Issue
Block a user