From e939b476041c0088015334706508bbac7db666b1 Mon Sep 17 00:00:00 2001 From: wxg0103 <727495428@qq.com> Date: Fri, 4 Jul 2025 16:28:35 +0800 Subject: [PATCH] refactor: update model type in getSelectModel function from 'LLM' to 'STT' --- ui/src/workflow/nodes/speech-to-text-node/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/workflow/nodes/speech-to-text-node/index.vue b/ui/src/workflow/nodes/speech-to-text-node/index.vue index 054b15686..5a4b653f6 100644 --- a/ui/src/workflow/nodes/speech-to-text-node/index.vue +++ b/ui/src/workflow/nodes/speech-to-text-node/index.vue @@ -154,7 +154,7 @@ const form_data = computed({ }) function getSelectModel() { - model.asyncGetSelectModel({ model_type: 'LLM' }).then((res: any) => { + model.asyncGetSelectModel({ model_type: 'STT' }).then((res: any) => { modelOptions.value = groupBy(res?.data, 'provider') }) }