Created
October 7, 2023 21:34
-
-
Save fsndzomga/f3ef620070edecf5fa25f9525a3f39e0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from langchain.agents import load_tools | |
from langchain.agents import initialize_agent | |
from langchain.agents import AgentType | |
from langchain.llms import OpenAI | |
from config import OPENAI_API_KEY, SERPAPI_API_KEY | |
import os | |
os.environ['OPENAI_API_KEY'] = OPENAI_API_KEY | |
os.environ['SERPAPI_API_KEY'] = SERPAPI_API_KEY | |
llm = OpenAI(temperature=0) | |
tools = load_tools(["serpapi", "llm-math"], llm=llm) | |
agent_executor = initialize_agent(tools, llm, agent=AgentType.ZERO_SHOT_REACT_DESCRIPTION, verbose=True) | |
agent_executor.invoke({"input": "Who is Leo DiCaprio's girlfriend? What is her current age raised to the 0.43 power?"}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment