fix:Agent reactgpt4 or gpt 4o as input model #28747 (#28764)

Co-authored-by: ccurme <chester.curme@gmail.com>
This commit is contained in:
Swastik-Swarup-Dash 2024-12-17 20:05:09 +05:30 committed by GitHub
parent 0c11aee486
commit 0afc284920
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -41,7 +41,7 @@ tool = DataheraldTextToSQL(api_wrapper=api_wrapper)
llm = ChatOpenAI(model="gpt-3.5-turbo", temperature=0)
prompt = hub.pull("hwchase17/react")
agent = create_react_agent(llm, tools, prompt)
agent_executor = AgentExecutor(agent=agent, tools=tools, verbose=True)
agent_executor = AgentExecutor(agent=agent, tools=tools, verbose=True, handle_parsing_errors=True)
agent_executor.invoke({"input":"Return the sql for this question: How many employees are in the company?"})
```