Update app_dep.py
Browse files- app_dep.py +6 -1
app_dep.py
CHANGED
@@ -8,7 +8,12 @@ items = ['Seraph', 'Opus', 'Draconic', 'Null Ele Foe', 'Off Ele Foe']
|
|
8 |
|
9 |
demo = gr.Interface(
|
10 |
fn=woah,
|
11 |
-
inputs=[gr.Slider(minimum=0, maximum=2, label="PnS")
|
|
|
|
|
|
|
|
|
|
|
12 |
)
|
13 |
|
14 |
demo.launch()
|
|
|
8 |
|
9 |
demo = gr.Interface(
|
10 |
fn=woah,
|
11 |
+
inputs=[gr.Slider(minimum="0", maximum="2", label="PnS"),
|
12 |
+
gr.Checkbox(label='Seraph', info="True or False"),
|
13 |
+
gr.Checkbox(label='Opus', info="True or False"),
|
14 |
+
gr.Checkbox(label='Draconic', info="True or False"),
|
15 |
+
gr.Checkbox(label='Null Ele Foe', info="True or False"),
|
16 |
+
gr.Checkbox(label='Off Ele Foe', info="True or False")]
|
17 |
)
|
18 |
|
19 |
demo.launch()
|