Spaces:
Running
Running
Commit
·
29c6541
1
Parent(s):
ec355f6
Update requirements.txt to include additional dependencies and remove unused ones; add .gitignore for environment and cache files
Browse files- .gitignore +10 -0
- requirements.txt +85 -7
.gitignore
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# python cache files
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[cod]
|
| 4 |
+
|
| 5 |
+
# virtual environment folders
|
| 6 |
+
.venv/
|
| 7 |
+
|
| 8 |
+
# environment variable files
|
| 9 |
+
.env
|
| 10 |
+
|
requirements.txt
CHANGED
|
@@ -1,12 +1,90 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
datasets==4.3.0
|
| 6 |
-
|
| 7 |
-
|
| 8 |
faiss-cpu==1.12.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
pyarabic==0.6.15
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
rank-bm25==0.2.2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
tqdm==4.67.1
|
| 12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
aiofiles==24.1.0
|
| 2 |
+
aiohappyeyeballs==2.6.1
|
| 3 |
+
aiohttp==3.13.2
|
| 4 |
+
aiosignal==1.4.0
|
| 5 |
+
annotated-doc==0.0.3
|
| 6 |
+
annotated-types==0.7.0
|
| 7 |
+
anyio==4.11.0
|
| 8 |
+
async-timeout==5.0.1
|
| 9 |
+
attrs==25.4.0
|
| 10 |
+
brotli==1.1.0
|
| 11 |
+
cachetools==6.2.1
|
| 12 |
+
certifi==2025.10.5
|
| 13 |
+
charset-normalizer==3.4.4
|
| 14 |
+
click==8.3.0
|
| 15 |
+
colorama==0.4.6
|
| 16 |
datasets==4.3.0
|
| 17 |
+
dill==0.4.0
|
| 18 |
+
exceptiongroup==1.3.0
|
| 19 |
faiss-cpu==1.12.0
|
| 20 |
+
fastapi==0.120.4
|
| 21 |
+
ffmpy==0.6.4
|
| 22 |
+
filelock==3.20.0
|
| 23 |
+
frozenlist==1.8.0
|
| 24 |
+
fsspec==2025.9.0
|
| 25 |
+
google-auth==2.42.1
|
| 26 |
+
google-genai==1.47.0
|
| 27 |
+
gradio==5.49.1
|
| 28 |
+
gradio-client==1.13.3
|
| 29 |
+
groovy==0.1.2
|
| 30 |
+
h11==0.16.0
|
| 31 |
+
httpcore==1.0.9
|
| 32 |
+
httpx==0.28.1
|
| 33 |
+
huggingface-hub==0.36.0
|
| 34 |
+
idna==3.11
|
| 35 |
+
jinja2==3.1.6
|
| 36 |
+
markdown-it-py==4.0.0
|
| 37 |
+
markupsafe==3.0.3
|
| 38 |
+
mdurl==0.1.2
|
| 39 |
+
mpmath==1.3.0
|
| 40 |
+
multidict==6.7.0
|
| 41 |
+
multiprocess==0.70.16
|
| 42 |
+
networkx==3.4.2
|
| 43 |
+
numpy==2.2.6
|
| 44 |
+
orjson==3.11.4
|
| 45 |
+
packaging==25.0
|
| 46 |
+
pandas==2.3.3
|
| 47 |
+
pillow==11.3.0
|
| 48 |
+
propcache==0.4.1
|
| 49 |
pyarabic==0.6.15
|
| 50 |
+
pyarrow==22.0.0
|
| 51 |
+
pyasn1==0.6.1
|
| 52 |
+
pyasn1-modules==0.4.2
|
| 53 |
+
pydantic==2.11.10
|
| 54 |
+
pydantic-core==2.33.2
|
| 55 |
+
pydub==0.25.1
|
| 56 |
+
pygments==2.19.2
|
| 57 |
+
python-dateutil==2.9.0.post0
|
| 58 |
+
python-dotenv==1.2.1
|
| 59 |
+
python-multipart==0.0.20
|
| 60 |
+
pytz==2025.2
|
| 61 |
+
pyyaml==6.0.3
|
| 62 |
rank-bm25==0.2.2
|
| 63 |
+
regex==2025.10.23
|
| 64 |
+
requests==2.32.5
|
| 65 |
+
rich==14.2.0
|
| 66 |
+
rsa==4.9.1
|
| 67 |
+
ruff==0.14.3
|
| 68 |
+
safehttpx==0.1.7
|
| 69 |
+
safetensors==0.6.2
|
| 70 |
+
semantic-version==2.10.0
|
| 71 |
+
shellingham==1.5.4
|
| 72 |
+
six==1.17.0
|
| 73 |
+
sniffio==1.3.1
|
| 74 |
+
starlette==0.49.1
|
| 75 |
+
sympy==1.14.0
|
| 76 |
+
tenacity==9.1.2
|
| 77 |
+
tokenizers==0.22.1
|
| 78 |
+
tomlkit==0.13.3
|
| 79 |
+
torch==2.9.0
|
| 80 |
tqdm==4.67.1
|
| 81 |
+
transformers==4.57.1
|
| 82 |
+
typer==0.20.0
|
| 83 |
+
typing-extensions==4.15.0
|
| 84 |
+
typing-inspection==0.4.2
|
| 85 |
+
tzdata==2025.2
|
| 86 |
+
urllib3==2.5.0
|
| 87 |
+
uvicorn==0.38.0
|
| 88 |
+
websockets==15.0.1
|
| 89 |
+
xxhash==3.6.0
|
| 90 |
+
yarl==1.22.0
|