mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
feat: add ITV and TTV model types to data and update model type checks
This commit is contained in:
parent
f06bdf3ee5
commit
8d9c466ced
|
|
@ -92,7 +92,9 @@
|
|||
(currentModel.model_type === 'TTS' ||
|
||||
currentModel.model_type === 'LLM' ||
|
||||
currentModel.model_type === 'IMAGE' ||
|
||||
currentModel.model_type === 'TTI') &&
|
||||
currentModel.model_type === 'TTI' ||
|
||||
currentModel.model_type === 'ITV' ||
|
||||
currentModel.model_type === 'TTV') &&
|
||||
permissionPrecise.paramSetting(model.id)
|
||||
"
|
||||
@click.stop="openParamSetting"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,9 @@ export const modelTypeList = [
|
|||
{ text: t(modelType['STT']), value: 'STT' },
|
||||
{ text: t(modelType['TTS']), value: 'TTS' },
|
||||
{ text: t(modelType['IMAGE']), value: 'IMAGE' },
|
||||
{ text: t(modelType['TTI']), value: 'TTI' }
|
||||
{ text: t(modelType['TTI']), value: 'TTI' },
|
||||
{ text: t(modelType['ITV']), value: 'ITV' },
|
||||
{ text: t(modelType['TTV']), value: 'TTV' },
|
||||
]
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue