Spaces:
Running
Running
Upload folder using huggingface_hub
Browse files- README.md +6 -5
- requirements.txt +2 -1
- src/vocalizr/__main__.py +0 -1
README.md
CHANGED
@@ -3,17 +3,18 @@ title: Vocalizr
|
|
3 |
emoji: π
|
4 |
colorFrom: purple
|
5 |
colorTo: yellow
|
6 |
-
|
7 |
-
|
8 |
-
python_version: 3.12
|
9 |
-
app_file: src/vocalizr/__main__.py
|
10 |
-
# app_port: 8080
|
11 |
---
|
12 |
|
13 |
# Vocalizr: Voice Generator part of the Chatacter Backend
|
14 |
|
15 |
[](https://github.com/AlphaSphereDotAI/chatacter_backend_voice_generator/actions/workflows/code_analysis.yml)
|
|
|
16 |
[](https://github.com/AlphaSphereDotAI/chatacter_backend_voice_generator/actions/workflows/hf.yml)
|
|
|
17 |
[](https://github.com/AlphaSphereDotAI/chatacter_backend_voice_generator/actions/workflows/docker.yml)
|
|
|
18 |
[](https://github.com/AlphaSphereDotAI/vocalizr/actions/workflows/release.yaml)
|
|
|
19 |
[](https://github.com/AlphaSphereDotAI/vocalizr/actions/workflows/dependabot/dependabot-updates)
|
|
|
3 |
emoji: π
|
4 |
colorFrom: purple
|
5 |
colorTo: yellow
|
6 |
+
sdk: docker
|
7 |
+
app_port: 8080
|
|
|
|
|
|
|
8 |
---
|
9 |
|
10 |
# Vocalizr: Voice Generator part of the Chatacter Backend
|
11 |
|
12 |
[](https://github.com/AlphaSphereDotAI/chatacter_backend_voice_generator/actions/workflows/code_analysis.yml)
|
13 |
+
|
14 |
[](https://github.com/AlphaSphereDotAI/chatacter_backend_voice_generator/actions/workflows/hf.yml)
|
15 |
+
|
16 |
[](https://github.com/AlphaSphereDotAI/chatacter_backend_voice_generator/actions/workflows/docker.yml)
|
17 |
+
|
18 |
[](https://github.com/AlphaSphereDotAI/vocalizr/actions/workflows/release.yaml)
|
19 |
+
|
20 |
[](https://github.com/AlphaSphereDotAI/vocalizr/actions/workflows/dependabot/dependabot-updates)
|
requirements.txt
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
# This file was autogenerated by uv via the following command:
|
2 |
# uv export --no-hashes --no-editable --no-dev -o requirements.txt
|
|
|
3 |
addict==2.4.0
|
4 |
# via misaki
|
5 |
aiofiles==24.1.0
|
@@ -186,7 +187,7 @@ nvidia-cublas-cu12==12.6.4.1 ; platform_machine == 'x86_64' and sys_platform ==
|
|
186 |
# torch
|
187 |
nvidia-cuda-cupti-cu12==12.6.80 ; platform_machine == 'x86_64' and sys_platform == 'linux'
|
188 |
# via torch
|
189 |
-
nvidia-cuda-nvrtc-cu12==12.
|
190 |
# via torch
|
191 |
nvidia-cuda-runtime-cu12==12.6.77 ; platform_machine == 'x86_64' and sys_platform == 'linux'
|
192 |
# via torch
|
|
|
1 |
# This file was autogenerated by uv via the following command:
|
2 |
# uv export --no-hashes --no-editable --no-dev -o requirements.txt
|
3 |
+
.
|
4 |
addict==2.4.0
|
5 |
# via misaki
|
6 |
aiofiles==24.1.0
|
|
|
187 |
# torch
|
188 |
nvidia-cuda-cupti-cu12==12.6.80 ; platform_machine == 'x86_64' and sys_platform == 'linux'
|
189 |
# via torch
|
190 |
+
nvidia-cuda-nvrtc-cu12==12.6.77 ; platform_machine == 'x86_64' and sys_platform == 'linux'
|
191 |
# via torch
|
192 |
nvidia-cuda-runtime-cu12==12.6.77 ; platform_machine == 'x86_64' and sys_platform == 'linux'
|
193 |
# via torch
|
src/vocalizr/__main__.py
CHANGED
@@ -1,5 +1,4 @@
|
|
1 |
from gradio import Blocks
|
2 |
-
|
3 |
from vocalizr import DEBUG, SERVER_NAME, SERVER_PORT
|
4 |
from vocalizr.gui import app_block
|
5 |
|
|
|
1 |
from gradio import Blocks
|
|
|
2 |
from vocalizr import DEBUG, SERVER_NAME, SERVER_PORT
|
3 |
from vocalizr.gui import app_block
|
4 |
|