Skip to content

Commit

Permalink
Add Playwright installation step and update step numbering
Browse files Browse the repository at this point in the history
  • Loading branch information
rohan-uiuc committed Apr 4, 2024
1 parent 8cc5886 commit 0947fda
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,22 @@ An AI-powered coding assistant designed to streamline and solve complex scientif
```
git clone https://github.com/UIUC-Chatbot/workflow-agent
```

2. Install dependencies:
```
pip install -r requirements.txt
```

3. Set up your environment variables in a `.env` file based on the provided `.env.example`.

4. Prepare the `issue.json` file required for running the agent. This file should contain the issue data in JSON format that the agent will process. For the structure of `issue.json`, refer to the [Issue class definition](type/issue.py).
4. Install Playwright dependencies for browser automation:
```
playwright install
```

5. Prepare the `issue.json` file required for running the agent. This file should contain the issue data in JSON format that the agent will process. For the structure of `issue.json`, refer to the [Issue class definition](type/issue.py).

5. Run the agent:
6. Run the agent:
```
python main.py
```
Expand Down

0 comments on commit 0947fda

Please sign in to comment.