We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e79008e commit 60130faCopy full SHA for 60130fa
1 file changed
agent/agent_executor.py
@@ -13,7 +13,7 @@
13
14
15
def create_suggestions_executor() -> CompiledGraph:
16
- openai_model = ChatOpenAI(model="gpt-4o-mini", temperature=0)
+ openai_model = ChatOpenAI(model="gpt-4o-mini")
17
18
# Create agent
19
agent_executor = create_react_agent(model=openai_model, tools=[])
@@ -22,7 +22,7 @@ def create_suggestions_executor() -> CompiledGraph:
22
23
24
def create_agent_executor() -> CompiledGraph:
25
- openai_model = ChatOpenAI(model="o3-mini", temperature=0)
+ openai_model = ChatOpenAI(model="o3-mini")
26
27
28
agent_executor = create_react_agent(
0 commit comments