Skip to content

Commit

Permalink
Fix: change the gpt model
Browse files Browse the repository at this point in the history
  • Loading branch information
lausuarez02 committed Dec 28, 2024
1 parent 79ef435 commit 4705c7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion farcaster-langchain/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ from langchain_openai import ChatOpenAI
from langchain_core.messages import HumanMessage
from langgraph.prebuilt import create_react_agent

llm = ChatOpenAI(model="gpt-4-turbo-preview")
llm = ChatOpenAI(model="gpt-4o-mini")

# Create agent
agent_executor = create_react_agent(llm, tools)
Expand Down
2 changes: 1 addition & 1 deletion farcaster-langchain/examples/chatbot/chatbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def initialize_agent():

# Initialize LLM
print("Initializing LLM...")
llm = ChatOpenAI(model="gpt-4-turbo-preview")
llm = ChatOpenAI(model="gpt-4o-mini")

# Configure CDP Agentkit Farcaster Langchain Extension
values = {
Expand Down

0 comments on commit 4705c7e

Please sign in to comment.