Remove old references to pip (#871)

* Update README.md

* Update README.md
This commit is contained in:
Robert Brennan 2024-04-07 13:21:07 -05:00 committed by GitHub
parent 2f9bf606c7
commit e878b0c7ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 16 deletions

View File

@ -2,9 +2,9 @@
This is a simple mock server to facilitate development in the frontend.
## Start the Server
Follow the instructions in the README to install dependencies. Then run:
```
python -m pip install -r requirements.txt
python listen.py
```
Then open the frontend to connect to the mock server. It will simply reply to every received message.
Then open the frontend to connect to the mock server. It will simply reply to every received message.

View File

@ -3,20 +3,7 @@
This is a WebSocket server that executes tasks using an agent.
## Install
Create a `.env` file with the contents
```sh
LLM_API_KEY=<YOUR OPENAI API KEY>
```
Install requirements:
```sh
python3.12 -m venv venv
source venv/bin/activate
python -m pip install -r requirements.txt
```
Follow the instructions in the base README.md to install dependencies and set up.
## Start the Server