Skip to main content
This notebook goes over how to use the Google Jobs Tool to fetch current Job postings. First, you need to sign up for an SerpApi key key at: serpapi.com/users/sign_up and get your api key here: serpapi.com/manage-api-key. Then you must install google-search-results with the command: pip install google-search-results Then you will need to set the environment variable SERPAPI_API_KEY to your SerpApi key If you are using conda environment, you can set up using the following commands in kernal: conda activate [your env name] conda env confiv vars SERPAPI_API_KEY=‘[your serp api key]‘

Use the Tool

Use the tool within a ReAct agent

In order to create an agent that uses the Google Jobs tool install LangGraph
and use the create_agent functionality to initialize a ReAct agent. You will also need to set up your OPEN_API_KEY (visit platform.openai.com) in order to access OpenAI’s chat models.