Skip to content

Commit 950f4a7

Browse files
fix: optimize
1 parent 4f9cc96 commit 950f4a7

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

ui/src/components/model-select/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ onMounted(() => {
146146
}
147147
}
148148
.model-icon {
149-
width: 20px;
149+
width: 18px;
150150
}
151151
.check-icon {
152152
position: absolute;

ui/src/locales/lang/en-US/dynamics-form.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
export default {
22
input_type_list: {
3-
TextInput: 'Text Input',
3+
TextInput: 'Input',
44
Slider: 'Slider',
55
SwitchInput: 'Switch',
66
SingleSelect: 'Single Select',
77
MultiSelect: 'Multi Select',
88
DatePicker: 'Date Picker',
9-
JsonInput: 'JSON Text Input',
9+
JsonInput: 'JSON',
1010
RadioCard: 'Radio Card',
1111
RadioRow: 'Radio Row'
1212
},

ui/src/locales/lang/en-US/views/application-workflow.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export default {
22
node: 'Node',
3-
baseComponent: 'Base',
3+
baseComponent: 'Basic',
44
nodeSetting: 'Node Settings',
55
workflow: 'Workflow',
66
searchBar: {
@@ -116,9 +116,9 @@ export default {
116116
result: 'Search Result',
117117
directly_return: 'Content of segments that meet direct response criteria',
118118
selectDatasetText: 'Associated knowledge displayed here',
119-
searchParam: 'Search Parameters',
119+
searchParam: 'Retrieval Parameters',
120120
searchQuestion: {
121-
label: 'Search Question',
121+
label: 'Question',
122122
placeholder: 'Please select a search question',
123123
requiredMessage: 'Please select a search question'
124124
}
@@ -165,7 +165,7 @@ export default {
165165
},
166166
higher: 'Higher',
167167
ScoreTooltip: 'The higher the Score, the stronger the relevance.',
168-
max_paragraph_char_number: 'Maximum number of words to quote',
168+
max_paragraph_char_number: 'Maximum Character',
169169
reranker_model: {
170170
label: 'Rerank',
171171
placeholder: 'Please select a rerank'

ui/src/locales/lang/en-US/views/application.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,9 @@ export default {
128128
hybridSearch: 'Hybrid Search',
129129
hybridSearchTooltip:
130130
'Hybrid search is a retrieval method based on both vector and text similarity, suitable for medium data volumes in the knowledge.',
131-
similarityThreshold: 'Similarity Threshold',
131+
similarityThreshold: 'Lowest Similarity',
132132
similarityTooltip: 'The higher the similarity, the stronger the correlation.',
133-
topReferences: 'Top N References',
133+
topReferences: 'Top N Segments',
134134
maxCharacters: 'Maximum Characters per Reference',
135135
noReferencesAction: 'When there are no knowledge references',
136136
continueQuestioning: 'Continue to ask questions to the Al model',

ui/src/locales/lang/en-US/views/template.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export default {
4141
editParam: 'Edit Parameter',
4242
addParam: 'Add Parameter',
4343
paramSetting: 'Model Parameter Settings',
44-
apiParamPassing: 'Parameter'
44+
apiParamPassing: 'Interface Parameters'
4545
},
4646
form: {
4747
templateName: {

ui/src/workflow/nodes/base-node/component/UserInputFieldTable.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
>
3434
</template>
3535
</el-table-column>
36-
<el-table-column :label="$t('dynamicsForm.paramForm.input_type.label')">
36+
<el-table-column :label="$t('dynamicsForm.paramForm.input_type.label')" width="95">
3737
<template #default="{ row }">
3838
<el-tag type="info" class="info-tag" v-if="row.input_type === 'TextInput'">{{
3939
$t('dynamicsForm.input_type_list.TextInput')

0 commit comments

Comments
 (0)