From de995a5d6246764e767acba383c1cd57f0796e4b Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 10 Aug 2023 15:48:30 -0300 Subject: [PATCH] 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. --- requirements.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/requirements.txt b/requirements.txt index 8ef45c37d..ebd0a6cdb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -31,3 +31,5 @@ diskcache==5.6.1 numpy==1.24.3 scipy==1.10.1 jsonschema==4.17.3 +sounddevice +keyboard