From 51648356813ea6a45abb1c3629ebb686427d8934 Mon Sep 17 00:00:00 2001 From: Ding Jiatong Date: Thu, 8 Aug 2024 12:30:40 +0800 Subject: [PATCH] add support for gpt-4o-mini (#1827) ### What problem does this PR solve? add support for gpt-4o-mini ### Type of change - [x] New Feature (non-breaking change which adds functionality) --------- Co-authored-by: Kevin Hu --- conf/llm_factories.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/conf/llm_factories.json b/conf/llm_factories.json index a4b99eb86..87641f950 100644 --- a/conf/llm_factories.json +++ b/conf/llm_factories.json @@ -6,6 +6,12 @@ "tags": "LLM,TEXT EMBEDDING,SPEECH2TEXT,MODERATION", "status": "1", "llm": [ + { + "llm_name": "gpt-4o-mini", + "tags": "LLM,CHAT,128K", + "max_tokens": 128000, + "model_type": "image2text" + }, { "llm_name": "gpt-4o", "tags": "LLM,CHAT,128K", @@ -540,6 +546,12 @@ "tags": "LLM,TEXT EMBEDDING,SPEECH2TEXT,MODERATION", "status": "1", "llm": [ + { + "llm_name": "azure-gpt-4o-mini", + "tags": "LLM,CHAT,128K", + "max_tokens": 128000, + "model_type": "image2text" + }, { "llm_name": "azure-gpt-4o", "tags": "LLM,CHAT,128K", @@ -2426,4 +2438,4 @@ ] } ] -} \ No newline at end of file +}