Spaces:
Running
Running
Update main/app/app.py
Browse files- main/app/app.py +4 -1
main/app/app.py
CHANGED
|
@@ -26,6 +26,7 @@ from time import sleep
|
|
| 26 |
from multiprocessing import cpu_count
|
| 27 |
from main.app.tabs.inference.inference import inference_tabs
|
| 28 |
from main.app.tabs.models.model import model_tabs
|
|
|
|
| 29 |
|
| 30 |
sys.path.append(os.getcwd())
|
| 31 |
|
|
@@ -147,7 +148,9 @@ with gr.Blocks(title=" Ultimate RVC Maker ⚡", theme=theme) as app:
|
|
| 147 |
|
| 148 |
with gr.TabItem("Model Options"):
|
| 149 |
model_tabs()
|
| 150 |
-
|
|
|
|
|
|
|
| 151 |
|
| 152 |
with gr.TabItem(translations["settings"], visible=configs.get("settings_tab", True)):
|
| 153 |
gr.Markdown(translations["settings_markdown"])
|
|
|
|
| 26 |
from multiprocessing import cpu_count
|
| 27 |
from main.app.tabs.inference.inference import inference_tabs
|
| 28 |
from main.app.tabs.models.model import model_tabs
|
| 29 |
+
from main.app/tabs.utils.utils import utils_tabs
|
| 30 |
|
| 31 |
sys.path.append(os.getcwd())
|
| 32 |
|
|
|
|
| 148 |
|
| 149 |
with gr.TabItem("Model Options"):
|
| 150 |
model_tabs()
|
| 151 |
+
|
| 152 |
+
with gr.TabItem("Utils"):
|
| 153 |
+
utils_tabs()
|
| 154 |
|
| 155 |
with gr.TabItem(translations["settings"], visible=configs.get("settings_tab", True)):
|
| 156 |
gr.Markdown(translations["settings_markdown"])
|