Skip to content

Commit

Permalink
feat: removing deprecated llms
Browse files Browse the repository at this point in the history
  • Loading branch information
svange committed Sep 9, 2024
1 parent 1a5bcce commit 2617993
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions openbrain/orm/model_agent_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@
"gpt-4-0613",
"gpt-3.5-turbo",
"gpt-3.5-turbo-0125",
"gpt-3.5-turbo-1106",
"gpt-3.5-turbo-0613"
"gpt-3.5-turbo-1106"
]

class DefaultSettings(Enum):
Expand All @@ -61,7 +60,7 @@ class DefaultSettings(Enum):
MAX_EXECUTION_TIME = 45
MAX_ITERATIONS = 10

LLM = "gpt-3.5-turbo-0613"
LLM = "gpt-3.5-turbo"
TOOLS = []

RECORD_TOOL_ACTIONS: bool = False
Expand Down

0 comments on commit 2617993

Please sign in to comment.