From 6529c764c9ee838a90241a43575f4a9f90249bbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E8=85=BE?= <101850389+hangters@users.noreply.github.com> Date: Fri, 9 Aug 2024 15:24:41 +0800 Subject: [PATCH] fix: model type only support single value (#1884) ### What problem does this PR solve? model type only support single value ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) Co-authored-by: Zhedong Cen --- conf/llm_factories.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/llm_factories.json b/conf/llm_factories.json index 87641f950..5d0e6ba45 100644 --- a/conf/llm_factories.json +++ b/conf/llm_factories.json @@ -10,13 +10,13 @@ "llm_name": "gpt-4o-mini", "tags": "LLM,CHAT,128K", "max_tokens": 128000, - "model_type": "image2text" + "model_type": "chat" }, { "llm_name": "gpt-4o", "tags": "LLM,CHAT,128K", "max_tokens": 128000, - "model_type": "chat,image2text" + "model_type": "chat" }, { "llm_name": "gpt-3.5-turbo",