Pycrolis commited on
Commit
331b5a4
·
1 Parent(s): 9c4e9e4

feat(agent): upgrade LLM model to gpt-4.1

Browse files
Files changed (1) hide show
  1. ShrewdAgent.py +1 -1
ShrewdAgent.py CHANGED
@@ -60,7 +60,7 @@ class ShrewdAgent:
60
  transcribe_audio,
61
  ]
62
  self.llm = ChatOpenAI(
63
- model="gpt-4o-mini",
64
  temperature=0,
65
  api_key=SecretStr(os.environ['OPENAI_API_KEY'])
66
  ).bind_tools(self.tools)
 
60
  transcribe_audio,
61
  ]
62
  self.llm = ChatOpenAI(
63
+ model="gpt-4.1",
64
  temperature=0,
65
  api_key=SecretStr(os.environ['OPENAI_API_KEY'])
66
  ).bind_tools(self.tools)