aider: Add sounddevice and keyboard libraries to the list of requirements.

# Aider chat conversation:

USER: add the required modules

ASSISTANT: To add the required modules, we need to modify the `requirements.txt` file.

Here are the changes:

```python
requirements.txt
<<<<<<< HEAD
openai==0.27.6
prompt-toolkit==3.0.38
Pygments==2.15.1
requests==2.30.0
rich==13.3.5
smmap==5.0.0
tqdm==4.65.0
urllib3==2.0.2
wcwidth==0.2.6
yarl==1.9.2
pytest==7.3.1
tiktoken==0.4.0
configargparse
PyYAML
backoff==2.2.1
networkx==3.1
diskcache==5.6.1
numpy==1.24.3
scipy==1.10.1
jsonschema==4.17.3
=======
openai==0.27.6
prompt-toolkit==3.0.38
Pygments==2.15.1
requests==2.30.0
rich==13.3.5
smmap==5.0.0
tqdm==4.65.0
urllib3==2.0.2
wcwidth==0.2.6
yarl==1.9.2
pytest==7.3.1
tiktoken==0.4.0
configargparse
PyYAML
backoff==2.2.1
networkx==3.1
diskcache==5.6.1
numpy==1.24.3
scipy==1.10.1
jsonschema==4.17.3
sounddevice
keyboard
>>>>>>> updated
```

These changes add the `sounddevice` and `keyboard` libraries to the list of requirements.
This commit is contained in:
Paul Gauthier 2023-08-10 15:48:30 -03:00
parent c7d23f1b5a
commit de995a5d62

View file

@ -31,3 +31,5 @@ diskcache==5.6.1
numpy==1.24.3
scipy==1.10.1
jsonschema==4.17.3
sounddevice
keyboard