mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-26 08:56:47 +08:00
### What problem does this PR solve? Feat: Translate the begin operator #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -455,7 +455,8 @@ This auto-tagging feature enhances retrieval by adding another layer of domain-s
|
||||
modelTip: 'Large language chat model',
|
||||
modelMessage: 'Please select!',
|
||||
modelEnabledTools: 'Enabled tools',
|
||||
modelEnabledToolsTip: 'Please select one or more tools for the chat model to use. It takes no effect for models not supporting tool call.',
|
||||
modelEnabledToolsTip:
|
||||
'Please select one or more tools for the chat model to use. It takes no effect for models not supporting tool call.',
|
||||
freedom: 'Freedom',
|
||||
improvise: 'Improvise',
|
||||
precise: 'Precise',
|
||||
@ -1268,14 +1269,22 @@ This delimiter is used to split the input text into several text pieces echo of
|
||||
codeDescription: 'It allows developers to write custom Python logic.',
|
||||
inputVariables: 'Input variables',
|
||||
runningHintText: 'is running...🕞',
|
||||
openingSwitch: 'Opening switch',
|
||||
openingCopy: 'Opening copy',
|
||||
openingSwitchTip:
|
||||
'Your users will see this welcome message at the beginning.',
|
||||
modeTip: 'The mode defines how the workflow is initiated.',
|
||||
beginInputTip:
|
||||
'By defining input parameters, this content can be accessed by other components in subsequent processes.',
|
||||
},
|
||||
llmTools: {
|
||||
bad_calculator: {
|
||||
name: "Calculator",
|
||||
description: "A tool to calculate the sum of two numbers (will give wrong answer)",
|
||||
name: 'Calculator',
|
||||
description:
|
||||
'A tool to calculate the sum of two numbers (will give wrong answer)',
|
||||
params: {
|
||||
a: "The first number",
|
||||
b: "The second number",
|
||||
a: 'The first number',
|
||||
b: 'The second number',
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
@ -1162,6 +1162,9 @@ export default {
|
||||
codeDescription: '它允許開發人員編寫自訂 Python 邏輯。',
|
||||
inputVariables: '輸入變數',
|
||||
runningHintText: '正在運行...🕞',
|
||||
openingSwitchTip: '您的用戶將在開始時看到此歡迎訊息。',
|
||||
modeTip: '模式定義工作流程如何啟動。 ',
|
||||
beginInputTip: `透過定義輸入參數,這些內容可以在後續流程中被其他元件存取。`,
|
||||
},
|
||||
footer: {
|
||||
profile: '“保留所有權利 @ react”',
|
||||
|
||||
@ -462,7 +462,8 @@ General:实体和关系提取提示来自 GitHub - microsoft/graphrag:基于
|
||||
modelTip: '大语言聊天模型',
|
||||
modelMessage: '请选择',
|
||||
modelEnabledTools: '可用的工具',
|
||||
modelEnabledToolsTip: '请选择一个或多个可供该模型所使用的工具。仅对支持工具调用的模型生效。',
|
||||
modelEnabledToolsTip:
|
||||
'请选择一个或多个可供该模型所使用的工具。仅对支持工具调用的模型生效。',
|
||||
freedom: '自由度',
|
||||
improvise: '即兴创作',
|
||||
precise: '精确',
|
||||
@ -1224,6 +1225,11 @@ General:实体和关系提取提示来自 GitHub - microsoft/graphrag:基于
|
||||
inputVariables: '输入变量',
|
||||
addVariable: '新增变量',
|
||||
runningHintText: '正在运行中...🕞',
|
||||
openingSwitch: '开场白开关',
|
||||
openingCopy: '开场白文案',
|
||||
openingSwitchTip: '您的用户将在开始时看到此欢迎消息。',
|
||||
modeTip: '模式定义了工作流的启动方式。',
|
||||
beginInputTip: '通过定义输入参数,此内容可以被后续流程中的其他组件访问。',
|
||||
},
|
||||
footer: {
|
||||
profile: 'All rights reserved @ React',
|
||||
@ -1235,11 +1241,11 @@ General:实体和关系提取提示来自 GitHub - microsoft/graphrag:基于
|
||||
},
|
||||
llmTools: {
|
||||
bad_calculator: {
|
||||
name: "计算器",
|
||||
description: "用于计算两个数的和的工具(会给出错误答案)",
|
||||
name: '计算器',
|
||||
description: '用于计算两个数的和的工具(会给出错误答案)',
|
||||
params: {
|
||||
a: "第一个数",
|
||||
b: "第二个数",
|
||||
a: '第一个数',
|
||||
b: '第二个数',
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user