https://github.com/emergenceai/ewa-crewai-example-a
https://github.com/emergenceai/ewa-crewai-example-a
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/emergenceai/ewa-crewai-example-a
- Owner: EmergenceAI
- Created: 2024-12-11T16:24:06.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-17T05:27:43.000Z (over 1 year ago)
- Last Synced: 2024-12-17T06:25:26.589Z (over 1 year ago)
- Language: Python
- Size: 5.86 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# waa-starter-kit-code
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
1. Create a new virtual environment
```bash
python -m venv .venv
```
2. Activate the environment
```bash
source .venv/bin/activate
```
3. Install the dependencies
```bash
python -m pip install -r requirements.txt
```
## Step 2: Get API key
Get an API key from , and populate it and an OpenAI key in a `.env` file:
```bash
OPENAI_API_KEY=""
EMERGENCE_API_KEY=""
```
## Step 3: Run the starter code
Run the starter codes for Crewai or Langgraph
1. Run the starter code
```bash
python crewai_code.py
```