D3vShoaib commited on
Commit
70c75bd
·
1 Parent(s): a845abc
Files changed (4) hide show
  1. Dockerfile +0 -10
  2. README.md +3 -2
  3. app.py +2 -2
  4. requirements.txt +66 -0
Dockerfile DELETED
@@ -1,10 +0,0 @@
1
- #
2
- # SPDX-FileCopyrightText: Hadad <hadad@linuxmail.org>
3
- # SPDX-License-Identifier: Apache-2.0
4
- #
5
-
6
- FROM hadadrjt/pocket-tts:hf
7
-
8
- WORKDIR /app
9
-
10
- COPY app.py .
 
 
 
 
 
 
 
 
 
 
 
README.md CHANGED
@@ -5,8 +5,9 @@ short_description: A 100M parameters text-to-speech (TTS) model by Kyutai-Labs
5
  license: apache-2.0
6
  colorFrom: green
7
  colorTo: green
8
- sdk: docker
9
- app_port: 7860
 
10
  pinned: true
11
  ---
12
 
 
5
  license: apache-2.0
6
  colorFrom: green
7
  colorTo: green
8
+ sdk: gradio
9
+ sdk_version: 6.3.0
10
+ app_file: app.py
11
  pinned: true
12
  ---
13
 
app.py CHANGED
@@ -391,7 +391,7 @@ footer {visibility: hidden}
391
  }
392
  """
393
 
394
- with gr.Blocks(theme=theme, css=css) as demo:
395
  with gr.Column(elem_classes="header-section"):
396
  with gr.Row():
397
  with gr.Column(scale=4):
@@ -656,4 +656,4 @@ with gr.Blocks(theme=theme, css=css) as demo:
656
  )
657
 
658
  if __name__ == "__main__":
659
- demo.queue().launch()
 
391
  }
392
  """
393
 
394
+ with gr.Blocks() as demo:
395
  with gr.Column(elem_classes="header-section"):
396
  with gr.Row():
397
  with gr.Column(scale=4):
 
656
  )
657
 
658
  if __name__ == "__main__":
659
+ demo.queue().launch(theme=theme, css=css)
requirements.txt ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ aiofiles==24.1.0
2
+ annotated-doc==0.0.4
3
+ annotated-types==0.7.0
4
+ anyio==4.12.1
5
+ beartype==0.22.9
6
+ brotli==1.2.0
7
+ certifi==2026.1.4
8
+ charset-normalizer==3.4.4
9
+ click==8.3.1
10
+ colorama==0.4.6
11
+ einops==0.8.1
12
+ exceptiongroup==1.3.1
13
+ fastapi==0.128.0
14
+ ffmpy==1.0.0
15
+ filelock==3.20.3
16
+ fsspec==2026.1.0
17
+ gradio==6.3.0
18
+ gradio_client==2.0.3
19
+ groovy==0.1.2
20
+ h11==0.16.0
21
+ hf-xet==1.2.0
22
+ httpcore==1.0.9
23
+ httpx==0.28.1
24
+ huggingface_hub==1.3.1
25
+ idna==3.11
26
+ Jinja2==3.1.6
27
+ markdown-it-py==4.0.0
28
+ MarkupSafe==3.0.3
29
+ mdurl==0.1.2
30
+ mpmath==1.3.0
31
+ networkx==3.4.2
32
+ numpy==2.2.6
33
+ orjson==3.11.5
34
+ packaging==25.0
35
+ pandas==2.3.3
36
+ pillow==12.1.0
37
+ pocket-tts==1.0.1
38
+ pydantic==2.12.5
39
+ pydantic_core==2.41.5
40
+ pydub==0.25.1
41
+ Pygments==2.19.2
42
+ python-dateutil==2.9.0.post0
43
+ python-multipart==0.0.21
44
+ pytz==2025.2
45
+ PyYAML==6.0.3
46
+ requests==2.32.5
47
+ rich==14.2.0
48
+ safehttpx==0.1.7
49
+ safetensors==0.7.0
50
+ scipy==1.15.3
51
+ semantic-version==2.10.0
52
+ sentencepiece==0.2.1
53
+ shellingham==1.5.4
54
+ six==1.17.0
55
+ starlette==0.50.0
56
+ sympy==1.14.0
57
+ tomlkit==0.13.3
58
+ torch==2.9.1
59
+ tqdm==4.67.1
60
+ typer==0.21.1
61
+ typer-slim==0.21.1
62
+ typing-inspection==0.4.2
63
+ typing_extensions==4.15.0
64
+ tzdata==2025.3
65
+ urllib3==2.6.3
66
+ uvicorn==0.40.0