Update requirements.txt
Browse files- requirements.txt +4 -4
requirements.txt
CHANGED
|
@@ -4,6 +4,9 @@ datasets
|
|
| 4 |
accelerate
|
| 5 |
gradio # For the Gradio app itself
|
| 6 |
langchain # For PDF processing
|
|
|
|
|
|
|
|
|
|
| 7 |
gTTS # For Text-to-Speech
|
| 8 |
pydub # For audio manipulation
|
| 9 |
soundfile # For audio manipulation
|
|
@@ -12,7 +15,4 @@ numpy # Often a dependency, good to include
|
|
| 12 |
tqdm # For progress bars (though not strictly needed for app deployment if you remove them)
|
| 13 |
evaluate # For metrics (if used in eval loop)
|
| 14 |
scipy # Often a dependency of other libraries
|
| 15 |
-
# Add any other libraries you might have installed explicitly
|
| 16 |
-
langchain-community
|
| 17 |
-
opencv-python (for cv2 module, used in handle_video)
|
| 18 |
-
soundfile
|
|
|
|
| 4 |
accelerate
|
| 5 |
gradio # For the Gradio app itself
|
| 6 |
langchain # For PDF processing
|
| 7 |
+
langchain-community
|
| 8 |
+
opencv-python (for cv2 module, used in handle_video)
|
| 9 |
+
soundfile
|
| 10 |
gTTS # For Text-to-Speech
|
| 11 |
pydub # For audio manipulation
|
| 12 |
soundfile # For audio manipulation
|
|
|
|
| 15 |
tqdm # For progress bars (though not strictly needed for app deployment if you remove them)
|
| 16 |
evaluate # For metrics (if used in eval loop)
|
| 17 |
scipy # Often a dependency of other libraries
|
| 18 |
+
# Add any other libraries you might have installed explicitly
|
|
|
|
|
|
|
|
|