diff --git a/src/pages/playground/speech/params-config.ts b/src/pages/playground/speech/params-config.ts index 5619a7e0..8b4ca97f 100644 --- a/src/pages/playground/speech/params-config.ts +++ b/src/pages/playground/speech/params-config.ts @@ -9,6 +9,11 @@ export const TTSAdvancedParamsConfig: ParamsSchema[] = [ attrs: { allowClear: true }, + initAttrs: (meta: any) => ({ + // Single-task TTS checkpoints (e.g. Qwen3-TTS) expose a fixed task_type; + // lock the field so a mismatched value can't crash the vllm engine. + disabled: !!meta?.task_type + }), label: { text: 'playground.params.taskType', isLocalized: true