Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +10 -17
requirements.txt
CHANGED
|
@@ -1,40 +1,33 @@
|
|
| 1 |
-
# Core
|
|
|
|
| 2 |
torch
|
| 3 |
torchvision
|
| 4 |
torchaudio
|
| 5 |
transformers==4.48.0
|
| 6 |
-
tokenizers==0.21.0
|
| 7 |
numpy
|
| 8 |
pandas
|
| 9 |
pillow
|
| 10 |
|
| 11 |
-
#
|
| 12 |
-
gradio
|
| 13 |
-
|
| 14 |
-
# Vector Database and Embeddings
|
| 15 |
lancedb==0.18.0
|
| 16 |
huggingface-hub==0.27.1
|
| 17 |
|
| 18 |
-
# LangChain
|
| 19 |
-
langchain
|
| 20 |
-
langchain-community
|
| 21 |
langchain-core
|
|
|
|
|
|
|
| 22 |
|
| 23 |
-
#
|
| 24 |
mistralai==1.3.1
|
| 25 |
|
| 26 |
-
# Video Processing
|
| 27 |
opencv-python-headless
|
| 28 |
-
moviepy
|
| 29 |
yt-dlp
|
| 30 |
-
pytubefix
|
| 31 |
youtube-transcript-api==0.6.3
|
| 32 |
webvtt-py==0.5.1
|
| 33 |
-
|
| 34 |
|
| 35 |
# Utilities
|
| 36 |
python-dotenv==1.0.1
|
| 37 |
tiktoken==0.8.0
|
| 38 |
-
|
| 39 |
-
matplotlib==3.9.4
|
| 40 |
-
umap-learn
|
|
|
|
| 1 |
+
# Core Dependencies
|
| 2 |
+
gradio==4.44.1
|
| 3 |
torch
|
| 4 |
torchvision
|
| 5 |
torchaudio
|
| 6 |
transformers==4.48.0
|
|
|
|
| 7 |
numpy
|
| 8 |
pandas
|
| 9 |
pillow
|
| 10 |
|
| 11 |
+
# Vector Database
|
|
|
|
|
|
|
|
|
|
| 12 |
lancedb==0.18.0
|
| 13 |
huggingface-hub==0.27.1
|
| 14 |
|
| 15 |
+
# LangChain
|
|
|
|
|
|
|
| 16 |
langchain-core
|
| 17 |
+
langchain-community
|
| 18 |
+
langchain
|
| 19 |
|
| 20 |
+
# API
|
| 21 |
mistralai==1.3.1
|
| 22 |
|
| 23 |
+
# Video Processing
|
| 24 |
opencv-python-headless
|
|
|
|
| 25 |
yt-dlp
|
|
|
|
| 26 |
youtube-transcript-api==0.6.3
|
| 27 |
webvtt-py==0.5.1
|
| 28 |
+
moviepy
|
| 29 |
|
| 30 |
# Utilities
|
| 31 |
python-dotenv==1.0.1
|
| 32 |
tiktoken==0.8.0
|
| 33 |
+
matplotlib==3.9.4
|
|
|
|
|
|