From 392f5f4ce98428ba84219b046ec8c58b98f40784 Mon Sep 17 00:00:00 2001 From: so95 Date: Fri, 8 Aug 2025 12:43:53 +0700 Subject: [PATCH] fix model type (#9250) ### What problem does this PR solve? ERROR type model - [x] Bug Fix (non-breaking change which fixes an issue) --- api/db/services/llm_service.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/db/services/llm_service.py b/api/db/services/llm_service.py index f18db1b01..607392944 100644 --- a/api/db/services/llm_service.py +++ b/api/db/services/llm_service.py @@ -230,6 +230,8 @@ class TenantLLMService(CommonService): for llm in LLMService.query(llm_name=llm_id): return llm.model_type + for llm in TenantLLMService.query(llm_name=llm_id): + return llm.model_type class LLMBundle: