-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSakeAI.json
More file actions
41 lines (37 loc) · 1.12 KB
/
SakeAI.json
File metadata and controls
41 lines (37 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"spec_version": "1.0",
"source_type": "github",
"source_url": "https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI",
"name": "RVC-WebUI",
"description": "A web UI for Retrieval-based Voice Conversion, a popular open-source voice cloning tool.",
"tags": ["audio", "voice-cloning", "tts", "rvc"],
"system_requirements": {
"os": ["windows", "linux"],
"gpu": {
"vendor": "nvidia",
"vram_gb": 6,
"cuda_version": "11.8"
},
"ram_gb": 16,
"system_dependencies": ["ffmpeg"]
},
"install_steps": [
{ "type": "conda_create", "python_version": "3.10" },
{ "type": "pip_install", "file": "requirements.txt" },
{
"type": "download",
"url": "https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/hubert_base.pt",
"dest": "./"
},
{ "type": "run_script", "file": "download_models.py" }
],
"configuration": {
"config_file": ".env",
"format": "key_value",
"keys": [{ "name": "OPENAI_API_KEY", "source": "vault_openai_api_key" }]
},
"launch": {
"command": "python infer-web.py",
"working_directory": "./"
}
}