Feat/attachments (#9526)
Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: JzoNg <jzongcode@gmail.com>
This commit is contained in:
@@ -19,6 +19,10 @@ const translation = {
|
||||
goBackToEdit: 'Go back to editor',
|
||||
conversationLog: 'Conversation Log',
|
||||
features: 'Features',
|
||||
featuresDescription: 'Enhance web app user experience',
|
||||
ImageUploadLegacyTip: 'You can now create file type variables in the start form. We will no longer support the image upload feature in the future. ',
|
||||
fileUploadTip: 'Image upload features have been upgraded to file upload. ',
|
||||
featuresDocLink: 'Learn more',
|
||||
debugAndPreview: 'Preview',
|
||||
restart: 'Restart',
|
||||
currentDraft: 'Current Draft',
|
||||
@@ -181,6 +185,7 @@ const translation = {
|
||||
code: 'Code',
|
||||
model: 'Model',
|
||||
rerankModel: 'Rerank Model',
|
||||
visionVariable: 'Vision Variable',
|
||||
},
|
||||
invalidVariable: 'Invalid variable',
|
||||
},
|
||||
@@ -224,6 +229,8 @@ const translation = {
|
||||
'iteration-start': 'Iteration Start',
|
||||
'iteration': 'Iteration',
|
||||
'parameter-extractor': 'Parameter Extractor',
|
||||
'document-extractor': 'Doc Extractor',
|
||||
'list-operator': 'List Operator',
|
||||
},
|
||||
blocksAbout: {
|
||||
'start': 'Define the initial parameters for launching a workflow',
|
||||
@@ -241,6 +248,8 @@ const translation = {
|
||||
'variable-aggregator': 'Aggregate multi-branch variables into a single variable for unified configuration of downstream nodes.',
|
||||
'iteration': 'Perform multiple steps on a list object until all results are outputted.',
|
||||
'parameter-extractor': 'Use LLM to extract structured parameters from natural language for tool invocations or HTTP requests.',
|
||||
'document-extractor': 'Used to parse uploaded documents into text content that is easily understandable by LLM.',
|
||||
'list-operator': 'Used to filter or sort array content.',
|
||||
},
|
||||
operator: {
|
||||
zoomIn: 'Zoom In',
|
||||
@@ -362,12 +371,14 @@ const translation = {
|
||||
apiPlaceholder: 'Enter URL, type ‘/’ insert variable',
|
||||
notStartWithHttp: 'API should start with http:// or https://',
|
||||
key: 'Key',
|
||||
type: 'Type',
|
||||
value: 'Value',
|
||||
bulkEdit: 'Bulk Edit',
|
||||
keyValueEdit: 'Key-Value Edit',
|
||||
headers: 'Headers',
|
||||
params: 'Params',
|
||||
body: 'Body',
|
||||
binaryFileVariable: 'Binary File Variable',
|
||||
outputVars: {
|
||||
body: 'Response Content',
|
||||
statusCode: 'Response Status Code',
|
||||
@@ -431,11 +442,26 @@ const translation = {
|
||||
'not empty': 'is not empty',
|
||||
'null': 'is null',
|
||||
'not null': 'is not null',
|
||||
'in': 'in',
|
||||
'not in': 'not in',
|
||||
'all of': 'all of',
|
||||
'exists': 'exists',
|
||||
'not exists': 'not exists',
|
||||
},
|
||||
optionName: {
|
||||
image: 'Image',
|
||||
doc: 'Doc',
|
||||
audio: 'Audio',
|
||||
video: 'Video',
|
||||
localUpload: 'Local Upload',
|
||||
url: 'URL',
|
||||
},
|
||||
enterValue: 'Enter value',
|
||||
addCondition: 'Add Condition',
|
||||
conditionNotSetup: 'Condition NOT setup',
|
||||
selectVariable: 'Select variable...',
|
||||
addSubVariable: 'Sub Variable',
|
||||
select: 'Select',
|
||||
},
|
||||
variableAssigner: {
|
||||
title: 'Assign variables',
|
||||
@@ -550,6 +576,31 @@ const translation = {
|
||||
showAuthor: 'Show Author',
|
||||
},
|
||||
},
|
||||
docExtractor: {
|
||||
inputVar: 'Input Variable',
|
||||
outputVars: {
|
||||
text: 'Extracted text',
|
||||
},
|
||||
supportFileTypes: 'Support file types: {{types}}.',
|
||||
learnMore: 'Learn more',
|
||||
},
|
||||
listFilter: {
|
||||
inputVar: 'Input Variable',
|
||||
filterCondition: 'Filter Condition',
|
||||
filterConditionKey: 'Filter Condition Key',
|
||||
filterConditionComparisonOperator: 'Filter Condition Comparison Operator',
|
||||
filterConditionComparisonValue: 'Filter Condition value',
|
||||
selectVariableKeyPlaceholder: 'Select sub variable key',
|
||||
limit: 'Top N',
|
||||
orderBy: 'Order by',
|
||||
asc: 'ASC',
|
||||
desc: 'DESC',
|
||||
outputVars: {
|
||||
result: 'Filter result',
|
||||
first_record: 'First record',
|
||||
last_record: 'Last record',
|
||||
},
|
||||
},
|
||||
},
|
||||
tracing: {
|
||||
stopBy: 'Stop by {{user}}',
|
||||
|
Reference in New Issue
Block a user