mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
fix: optimize
This commit is contained in:
parent
4f9cc96eb6
commit
950f4a7ec6
|
|
@ -146,7 +146,7 @@ onMounted(() => {
|
|||
}
|
||||
}
|
||||
.model-icon {
|
||||
width: 20px;
|
||||
width: 18px;
|
||||
}
|
||||
.check-icon {
|
||||
position: absolute;
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
export default {
|
||||
input_type_list: {
|
||||
TextInput: 'Text Input',
|
||||
TextInput: 'Input',
|
||||
Slider: 'Slider',
|
||||
SwitchInput: 'Switch',
|
||||
SingleSelect: 'Single Select',
|
||||
MultiSelect: 'Multi Select',
|
||||
DatePicker: 'Date Picker',
|
||||
JsonInput: 'JSON Text Input',
|
||||
JsonInput: 'JSON',
|
||||
RadioCard: 'Radio Card',
|
||||
RadioRow: 'Radio Row'
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
export default {
|
||||
node: 'Node',
|
||||
baseComponent: 'Base',
|
||||
baseComponent: 'Basic',
|
||||
nodeSetting: 'Node Settings',
|
||||
workflow: 'Workflow',
|
||||
searchBar: {
|
||||
|
|
@ -116,9 +116,9 @@ export default {
|
|||
result: 'Search Result',
|
||||
directly_return: 'Content of segments that meet direct response criteria',
|
||||
selectDatasetText: 'Associated knowledge displayed here',
|
||||
searchParam: 'Search Parameters',
|
||||
searchParam: 'Retrieval Parameters',
|
||||
searchQuestion: {
|
||||
label: 'Search Question',
|
||||
label: 'Question',
|
||||
placeholder: 'Please select a search question',
|
||||
requiredMessage: 'Please select a search question'
|
||||
}
|
||||
|
|
@ -165,7 +165,7 @@ export default {
|
|||
},
|
||||
higher: 'Higher',
|
||||
ScoreTooltip: 'The higher the Score, the stronger the relevance.',
|
||||
max_paragraph_char_number: 'Maximum number of words to quote',
|
||||
max_paragraph_char_number: 'Maximum Character',
|
||||
reranker_model: {
|
||||
label: 'Rerank',
|
||||
placeholder: 'Please select a rerank'
|
||||
|
|
|
|||
|
|
@ -128,9 +128,9 @@ export default {
|
|||
hybridSearch: 'Hybrid Search',
|
||||
hybridSearchTooltip:
|
||||
'Hybrid search is a retrieval method based on both vector and text similarity, suitable for medium data volumes in the knowledge.',
|
||||
similarityThreshold: 'Similarity Threshold',
|
||||
similarityThreshold: 'Lowest Similarity',
|
||||
similarityTooltip: 'The higher the similarity, the stronger the correlation.',
|
||||
topReferences: 'Top N References',
|
||||
topReferences: 'Top N Segments',
|
||||
maxCharacters: 'Maximum Characters per Reference',
|
||||
noReferencesAction: 'When there are no knowledge references',
|
||||
continueQuestioning: 'Continue to ask questions to the Al model',
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ export default {
|
|||
editParam: 'Edit Parameter',
|
||||
addParam: 'Add Parameter',
|
||||
paramSetting: 'Model Parameter Settings',
|
||||
apiParamPassing: 'Parameter'
|
||||
apiParamPassing: 'Interface Parameters'
|
||||
},
|
||||
form: {
|
||||
templateName: {
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column :label="$t('dynamicsForm.paramForm.input_type.label')">
|
||||
<el-table-column :label="$t('dynamicsForm.paramForm.input_type.label')" width="95">
|
||||
<template #default="{ row }">
|
||||
<el-tag type="info" class="info-tag" v-if="row.input_type === 'TextInput'">{{
|
||||
$t('dynamicsForm.input_type_list.TextInput')
|
||||
|
|
|
|||
Loading…
Reference in New Issue