mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
fix: add tooltips for Text-to-Video and Image-to-Video model types in CreateModelDialog
This commit is contained in:
parent
e9156f7138
commit
ec77948165
|
|
@ -67,6 +67,10 @@ export default {
|
|||
'Vision Model: A visual model used for image understanding in advanced orchestration APP.',
|
||||
tooltip7:
|
||||
'Image Generation: A visual model used for image generation in advanced orchestration APP.',
|
||||
tooltip8:
|
||||
'Text-to-Video: A visual model used for text-to-video in the APP.',
|
||||
tooltip9:
|
||||
'Image-to-Video: A visual model used for image-to-video in the APP.',
|
||||
requiredMessage: 'Model type cannot be empty',
|
||||
},
|
||||
base_model: {
|
||||
|
|
|
|||
|
|
@ -62,6 +62,8 @@ export default {
|
|||
tooltip5: '重排模型:在高级编排应用中使用多路召回时,对候选分段进行重新排序的模型。',
|
||||
tooltip6: '视觉模型:在高级编排应用中用于图片理解的视觉模型。',
|
||||
tooltip7: '图片生成:在高级编排应用中用于图片生成的视觉模型。',
|
||||
tooltip8: '文生视频:在高级编排应用中用于文生视频的模型。',
|
||||
tooltip9: '图生视频:在高级编排应用中用于图生视频的模型。',
|
||||
requiredMessage: '模型类型不能为空',
|
||||
},
|
||||
base_model: {
|
||||
|
|
|
|||
|
|
@ -62,6 +62,8 @@ export default {
|
|||
tooltip5: '重排模型:在高階編排應用中使用多路召回時,對候選分段進行重新排序的模型。',
|
||||
tooltip6: '圖片理解:在高階編排應用中用於圖片理解的視覺模型。',
|
||||
tooltip7: '圖片生成:在高階編排應用中用於圖片生成的視覺模型。',
|
||||
tooltip8: '文生視頻:在高階編排應用中用於文生視頻的模型。',
|
||||
tooltip9: '圖生視頻:在高階編排應用中用於圖生視頻的模型。',
|
||||
requiredMessage: '模型類型不能為空',
|
||||
},
|
||||
base_model: {
|
||||
|
|
|
|||
|
|
@ -69,6 +69,8 @@
|
|||
<p>{{ $t('views.model.modelForm.model_type.tooltip5') }}</p>
|
||||
<p>{{ $t('views.model.modelForm.model_type.tooltip6') }}</p>
|
||||
<p>{{ $t('views.model.modelForm.model_type.tooltip7') }}</p>
|
||||
<p>{{ $t('views.model.modelForm.model_type.tooltip8') }}</p>
|
||||
<p>{{ $t('views.model.modelForm.model_type.tooltip9') }}</p>
|
||||
</template>
|
||||
<AppIcon iconName="app-warning" class="app-warning-icon"></AppIcon>
|
||||
</el-tooltip>
|
||||
|
|
@ -139,7 +141,7 @@
|
|||
<el-empty
|
||||
v-else-if="
|
||||
base_form_data.model_type === 'RERANKER' ||
|
||||
base_form_data.model_type === 'EMBEDDING'
|
||||
base_form_data.model_type === 'EMBEDDING'
|
||||
"
|
||||
:description="$t('views.model.tip.emptyMessage2')"
|
||||
/>
|
||||
|
|
|
|||
Loading…
Reference in New Issue