A repo of starter code kit for web-automation agent
Step 1: Creat a new python virtual environment (python3.11 recommended) and install all the dependencies
-
Create a new virtual environment
python -m venv .venv
-
Activate the environment
source .venv/bin/activate
-
Install the dependencies
python -m pip install -r requirements.txt
Get an API key from https://dashboard.emergence.ai, and populate it and an OpenAI key in a .env
file:
OPENAI_API_KEY="<your API key here>"
EMERGENCE_API_KEY="<your API key here>"
-
Run the starter code
python langgraph_code.py