refactor: update model type in getSelectModel function from 'LLM' to 'STT'

This commit is contained in:
wxg0103 2025-07-04 16:28:35 +08:00
parent 1c4fae42be
commit e939b47604

View File

@ -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')
})
}