fix spaces
Browse files
app.py
CHANGED
@@ -343,6 +343,7 @@ if __name__ == '__main__':
|
|
343 |
gr.Markdown(
|
344 |
"# <center> Hololive RVC Models\n"
|
345 |
"### <center> will update every hololive ai model that i can find or make.\n"
|
|
|
346 |
"[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/megaaziib)\n\n"
|
347 |
)
|
348 |
for (folder_title, folder, models) in categories:
|
@@ -496,4 +497,7 @@ if __name__ == '__main__':
|
|
496 |
tts_voice
|
497 |
]
|
498 |
)
|
499 |
-
|
|
|
|
|
|
|
|
343 |
gr.Markdown(
|
344 |
"# <center> Hololive RVC Models\n"
|
345 |
"### <center> will update every hololive ai model that i can find or make.\n"
|
346 |
+
"[![image](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/aziib/hololive-rvc-models-v2/blob/main/hololive_rvc_models_v2.ipynb)\n\n"
|
347 |
"[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/megaaziib)\n\n"
|
348 |
)
|
349 |
for (folder_title, folder, models) in categories:
|
|
|
497 |
tts_voice
|
498 |
]
|
499 |
)
|
500 |
+
if limitation is True:
|
501 |
+
app.queue(concurrency_count=1, max_size=20, api_open=config.api).launch(share=config.colab)
|
502 |
+
else:
|
503 |
+
app.queue(concurrency_count=1, max_size=20, api_open=config.api).launch(share=True)
|