Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -15,7 +15,7 @@ import model_handler
|
|
15 |
import logging
|
16 |
import aiohttp
|
17 |
import asyncio
|
18 |
-
|
19 |
# Configure logging
|
20 |
logging.basicConfig(level=logging.INFO, format="%(asctime)s - %(levelname)s - %(message)s")
|
21 |
logger = logging.getLogger(__name__)
|
@@ -191,7 +191,10 @@ def model_info(name):
|
|
191 |
return json_to_markdown_table(info2)
|
192 |
return "Model not found"
|
193 |
|
194 |
-
|
|
|
|
|
|
|
195 |
gr.Label("Ilaria RVC 💖")
|
196 |
gr.Markdown("Support the project by donating on [Ko-Fi](https://ko-fi.com/ilariaowo)")
|
197 |
gr.Markdown("Maintained by NeoDev aka BF667")
|
|
|
15 |
import logging
|
16 |
import aiohttp
|
17 |
import asyncio
|
18 |
+
from assets.theme import Ilaria
|
19 |
# Configure logging
|
20 |
logging.basicConfig(level=logging.INFO, format="%(asctime)s - %(levelname)s - %(message)s")
|
21 |
logger = logging.getLogger(__name__)
|
|
|
191 |
return json_to_markdown_table(info2)
|
192 |
return "Model not found"
|
193 |
|
194 |
+
Ilaria = Ilaria()
|
195 |
+
|
196 |
+
|
197 |
+
with gr.Blocks(theme=Ilaria, title="Ilaria RVC 💖") as app:
|
198 |
gr.Label("Ilaria RVC 💖")
|
199 |
gr.Markdown("Support the project by donating on [Ko-Fi](https://ko-fi.com/ilariaowo)")
|
200 |
gr.Markdown("Maintained by NeoDev aka BF667")
|