Spaces:
Runtime error
Runtime error
Boboiazumi
commited on
Commit
•
96f7f03
1
Parent(s):
28b82e5
Update app.py
Browse files
app.py
CHANGED
@@ -351,7 +351,17 @@ with gr.Blocks(css="style.css", theme="NoCrypt/miku@1.2.1") as demo:
|
|
351 |
value="Standard v3.1",
|
352 |
)
|
353 |
with gr.Tab("ControlNet"):
|
354 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
355 |
with gr.Tab("Advanced Settings"):
|
356 |
with gr.Group():
|
357 |
style_selector = gr.Radio(
|
|
|
351 |
value="Standard v3.1",
|
352 |
)
|
353 |
with gr.Tab("ControlNet"):
|
354 |
+
with gr.Group():
|
355 |
+
gr.Label(label="ControlNet is not available now")
|
356 |
+
use_controlnet = gr.Checkbox(
|
357 |
+
label="Use ControlNet",
|
358 |
+
value=False
|
359 |
+
)
|
360 |
+
controlnet_type = gr.Radio(
|
361 |
+
label="ControlNet",
|
362 |
+
choices=["Canny", "Depth", "OpenPose"]
|
363 |
+
)
|
364 |
+
|
365 |
with gr.Tab("Advanced Settings"):
|
366 |
with gr.Group():
|
367 |
style_selector = gr.Radio(
|