From 50ff16e7a4a402e6ced99c865633a7f7d7052471 Mon Sep 17 00:00:00 2001 From: Yongteng Lei Date: Fri, 23 May 2025 13:35:59 +0800 Subject: [PATCH] Feat: add claude4 models (#7809) ### What problem does this PR solve? Add claude4 models. ### Type of change - [x] New Feature (non-breaking change which adds functionality) --- conf/llm_factories.json | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/conf/llm_factories.json b/conf/llm_factories.json index 916ccbad0..d28e6589f 100644 --- a/conf/llm_factories.json +++ b/conf/llm_factories.json @@ -3133,6 +3133,20 @@ "tags": "LLM", "status": "1", "llm": [ + { + "llm_name": "claude-opus-4-20250514", + "tags": "LLM,IMAGE2TEXT,200k", + "max_tokens": 204800, + "model_type": "image2text", + "is_tools": true + }, + { + "llm_name": "claude-sonnet-4-20250514", + "tags": "LLM,IMAGE2TEXT,200k", + "max_tokens": 204800, + "model_type": "image2text", + "is_tools": true + }, { "llm_name": "claude-3-7-sonnet-20250219", "tags": "LLM,IMAGE2TEXT,200k", @@ -3283,4 +3297,4 @@ "llm": [] } ] -} \ No newline at end of file +}