From 0947fdac73f3014d2203eaa624507924856b77c0 Mon Sep 17 00:00:00 2001 From: rohanmarwaha Date: Thu, 4 Apr 2024 17:49:07 -0500 Subject: [PATCH] Add Playwright installation step and update step numbering --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aa93d17..261fea1 100644 --- a/README.md +++ b/README.md @@ -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 ```