feat: add ITV and TTV model types to data and update model type checks
parent
f06bdf3ee5
commit
8d9c466ced
|
|
@ -92,7 +92,9 @@
|
||||||
(currentModel.model_type === 'TTS' ||
|
(currentModel.model_type === 'TTS' ||
|
||||||
currentModel.model_type === 'LLM' ||
|
currentModel.model_type === 'LLM' ||
|
||||||
currentModel.model_type === 'IMAGE' ||
|
currentModel.model_type === 'IMAGE' ||
|
||||||
currentModel.model_type === 'TTI') &&
|
currentModel.model_type === 'TTI' ||
|
||||||
|
currentModel.model_type === 'ITV' ||
|
||||||
|
currentModel.model_type === 'TTV') &&
|
||||||
permissionPrecise.paramSetting(model.id)
|
permissionPrecise.paramSetting(model.id)
|
||||||
"
|
"
|
||||||
@click.stop="openParamSetting"
|
@click.stop="openParamSetting"
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,9 @@ export const modelTypeList = [
|
||||||
{ text: t(modelType['STT']), value: 'STT' },
|
{ text: t(modelType['STT']), value: 'STT' },
|
||||||
{ text: t(modelType['TTS']), value: 'TTS' },
|
{ text: t(modelType['TTS']), value: 'TTS' },
|
||||||
{ text: t(modelType['IMAGE']), value: 'IMAGE' },
|
{ 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