Spaces:
Running
Running
Javier A Canteros
commited on
Commit
·
ed1cad9
1
Parent(s):
798866a
Commit inicial para el despliegue en Hugging Face
Browse files- .gitignore +17 -0
- requirements.txt +63 -0
.gitignore
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
__pycache__/
|
2 |
+
*.wav
|
3 |
+
*.mp3
|
4 |
+
*.flac
|
5 |
+
*.ogg
|
6 |
+
model/
|
7 |
+
venv/
|
8 |
+
__pycache__/
|
9 |
+
*.wav
|
10 |
+
*.mp3
|
11 |
+
*.flac
|
12 |
+
*.ogg
|
13 |
+
model/
|
14 |
+
*.mp4
|
15 |
+
*.zip
|
16 |
+
*.srt
|
17 |
+
__pycache__/
|
requirements.txt
ADDED
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
aiofiles==23.2.1
|
2 |
+
annotated-types==0.7.0
|
3 |
+
anyio==4.8.0
|
4 |
+
audioop-lts==0.2.1
|
5 |
+
certifi==2025.1.31
|
6 |
+
charset-normalizer==3.4.1
|
7 |
+
click==8.1.8
|
8 |
+
fastapi==0.115.8
|
9 |
+
ffmpy==0.5.0
|
10 |
+
filelock==3.17.0
|
11 |
+
fsspec==2025.2.0
|
12 |
+
gradio==5.14.0
|
13 |
+
gradio_client==1.7.0
|
14 |
+
h11==0.14.0
|
15 |
+
httpcore==1.0.7
|
16 |
+
httpx==0.28.1
|
17 |
+
huggingface-hub==0.28.1
|
18 |
+
idna==3.10
|
19 |
+
Jinja2==3.1.5
|
20 |
+
llvmlite==0.44.0
|
21 |
+
markdown-it-py==3.0.0
|
22 |
+
MarkupSafe==2.1.5
|
23 |
+
mdurl==0.1.2
|
24 |
+
more-itertools==10.6.0
|
25 |
+
mpmath==1.3.0
|
26 |
+
networkx==3.4.2
|
27 |
+
numba==0.61.0
|
28 |
+
numpy==2.1.3
|
29 |
+
openai-whisper @ git+https://github.com/openai/whisper.git@517a43ecd132a2089d85f4ebc044728a71d49f6e
|
30 |
+
orjson==3.10.15
|
31 |
+
packaging==24.2
|
32 |
+
pandas==2.2.3
|
33 |
+
pillow==11.1.0
|
34 |
+
pydantic==2.10.6
|
35 |
+
pydantic_core==2.27.2
|
36 |
+
pydub==0.25.1
|
37 |
+
Pygments==2.19.1
|
38 |
+
python-dateutil==2.9.0.post0
|
39 |
+
python-multipart==0.0.20
|
40 |
+
pytz==2025.1
|
41 |
+
PyYAML==6.0.2
|
42 |
+
regex==2024.11.6
|
43 |
+
requests==2.32.3
|
44 |
+
rich==13.9.4
|
45 |
+
ruff==0.9.4
|
46 |
+
safehttpx==0.1.6
|
47 |
+
semantic-version==2.10.0
|
48 |
+
setuptools==75.8.0
|
49 |
+
shellingham==1.5.4
|
50 |
+
six==1.17.0
|
51 |
+
sniffio==1.3.1
|
52 |
+
starlette==0.45.3
|
53 |
+
sympy==1.13.1
|
54 |
+
tiktoken==0.8.0
|
55 |
+
tomlkit==0.13.2
|
56 |
+
torch==2.6.0
|
57 |
+
tqdm==4.67.1
|
58 |
+
typer==0.15.1
|
59 |
+
typing_extensions==4.12.2
|
60 |
+
tzdata==2025.1
|
61 |
+
urllib3==2.3.0
|
62 |
+
uvicorn==0.34.0
|
63 |
+
websockets==14.2
|