add a requirements.txt per platform

This commit is contained in:
Aleix Conchillo Flaqué
2024-04-03 18:10:47 -07:00
parent 1fc800754b
commit 8bc3c03a69
9 changed files with 292 additions and 7 deletions

View File

@@ -76,7 +76,7 @@ There are two directories of examples:
Before running the examples you need to install the dependencies (which will install all the dependencies to run all of the examples):
```
pip install -r requirements.txt
pip install -r {env}-requirements.txt
```
To run the example below you need to sign up for a [free Daily account](https://dashboard.daily.co/u/signup) and create a Daily room (so you can hear the LLM talking). After that, join the room's URL directly from a browser tab and run:
@@ -97,7 +97,7 @@ source venv/bin/activate
From the root of this repo, run the following:
```
pip install -r requirements.txt -r requirements-dev.txt
pip install -r {env}-requirements.txt -r dev-requirements.txt
python -m build
```