mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-29 07:52:50 +00:00
refactor: 模型设置支持配置参数
This commit is contained in:
parent
5cf1c20022
commit
47873f83f8
|
|
@ -397,10 +397,10 @@
|
|||
<span class="mr-4">语音播放</span>
|
||||
<div>
|
||||
<el-button
|
||||
type="primary"
|
||||
link
|
||||
@click="openTTSParamSettingDialog"
|
||||
:disabled="!applicationForm.tts_model_id && applicationForm.tts_type === 'BROWSER'"
|
||||
type="primary"
|
||||
link
|
||||
@click="openTTSParamSettingDialog"
|
||||
:disabled="!applicationForm.tts_model_id || applicationForm.tts_type === 'BROWSER'"
|
||||
>
|
||||
<el-icon class="mr-4"><Setting /></el-icon>
|
||||
设置
|
||||
|
|
|
|||
|
|
@ -181,7 +181,7 @@
|
|||
type="primary"
|
||||
link
|
||||
@click="openTTSParamSettingDialog"
|
||||
:disabled="!form_data.tts_model_id && form_data.tts_type === 'BROWSER'"
|
||||
:disabled="!form_data.tts_model_id || form_data.tts_type === 'BROWSER'"
|
||||
>
|
||||
<el-icon class="mr-4"><Setting /></el-icon>
|
||||
设置
|
||||
|
|
|
|||
Loading…
Reference in New Issue