Spaces:
Sleeping
Sleeping
rholinshead
commited on
Commit
•
c0dc4b1
1
Parent(s):
07f7639
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
from gradio_notebook import GradioNotebook
|
3 |
+
|
4 |
+
AICONFIG_FILE_PATH = "./music_gen.aiconfig.json"
|
5 |
+
with gr.Blocks() as demo:
|
6 |
+
GradioNotebook(config_path=AICONFIG_FILE_PATH)
|
7 |
+
|
8 |
+
demo.queue().launch()
|