From 10308d02e7cbc989171ad6fc383ddc18ea1a4c9f Mon Sep 17 00:00:00 2001 From: Zvonimir Sabljic Date: Sun, 5 Jan 2025 21:15:24 +0100 Subject: [PATCH] Changed the filter files agent back to gpt-4o --- core/config/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/config/__init__.py b/core/config/__init__.py index 0c37a219..0191610c 100644 --- a/core/config/__init__.py +++ b/core/config/__init__.py @@ -351,9 +351,9 @@ class Config(_StrictModel): temperature=0.0, ), GET_RELEVANT_FILES_AGENT_NAME: AgentLLMConfig( - provider=LLMProvider.ANTHROPIC, - model="claude-3-5-sonnet-20241022", - temperature=0.0, + provider=LLMProvider.OPENAI, + model="gpt-4o-2024-05-13", + temperature=0.5, ), PARSE_TASK_AGENT_NAME: AgentLLMConfig( provider=LLMProvider.ANTHROPIC,