mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 01:35:00 +00:00

# Aider chat conversation: USER: I added these *read-write* files: requirements.in ASSISTANT: It seems there might be a misunderstanding. You've indicated that you've added the `requirements.in` file, but you haven't specified any changes that need to be made to it or any other files. If you need any modifications or have any specific requests regarding the `requirements.in` or any other file, please let me know, and I'll be happy to assist you with the necessary changes. USER: add chromedriver-autoinstller to .in not .txt ASSISTANT: Here is the diff to add `chromedriver-autoinstaller` to the `requirements.in` file: ```diff --- requirements.in +++ requirements.in @@ ... @@ webdriver_manager selenium +chromedriver-autoinstaller ``` This change adds `chromedriver-autoinstaller` to the `requirements.in` file, which is used to generate the `requirements.txt` file with `pip-compile`. After adding this line, you would run `pip-compile requirements.in` to update the `requirements.txt` file accordingly.
27 lines
287 B
Text
27 lines
287 B
Text
#
|
|
# pip-compile requirements.in
|
|
#
|
|
configargparse
|
|
GitPython
|
|
openai
|
|
tiktoken
|
|
jsonschema
|
|
rich
|
|
prompt_toolkit
|
|
numpy
|
|
scipy
|
|
backoff
|
|
pathspec
|
|
networkx
|
|
diskcache
|
|
grep_ast
|
|
packaging
|
|
sounddevice
|
|
soundfile
|
|
bs4
|
|
PyYAML
|
|
Pillow
|
|
diff-match-patch
|
|
webdriver_manager
|
|
selenium
|
|
chromedriver-autoinstaller
|