NeoPy commited on
Commit
e1aebff
·
verified ·
1 Parent(s): 1926171

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
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
- with gr.Blocks(theme=gr.themes.Soft(primary_hue="pink", secondary_hue="rose"), title="Ilaria RVC 💖") as app:
 
 
 
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")