Update app.py
Browse files
app.py
CHANGED
@@ -63,7 +63,7 @@ with gr.Blocks(theme='mkill33/blue_HALO') as demo:
|
|
63 |
check = gr.Checkbox(label="Go")
|
64 |
with gr.Column(variant="panel", scale=2):
|
65 |
img = gr.Image(
|
66 |
-
"https://
|
67 |
label="Image",
|
68 |
height=320,
|
69 |
)
|
@@ -73,7 +73,7 @@ with gr.Blocks(theme='mkill33/blue_HALO') as demo:
|
|
73 |
|
74 |
def go(*_args):
|
75 |
time.sleep(3)
|
76 |
-
return "https://
|
77 |
|
78 |
go_btn.click(go, [radio, drop, drop_2, check, name], img, api_name="go")
|
79 |
|
|
|
63 |
check = gr.Checkbox(label="Go")
|
64 |
with gr.Column(variant="panel", scale=2):
|
65 |
img = gr.Image(
|
66 |
+
"https://i.ibb.co/WvcLftqx/ring.png",
|
67 |
label="Image",
|
68 |
height=320,
|
69 |
)
|
|
|
73 |
|
74 |
def go(*_args):
|
75 |
time.sleep(3)
|
76 |
+
return "https://i.ibb.co/WvcLftqx/ring.png"
|
77 |
|
78 |
go_btn.click(go, [radio, drop, drop_2, check, name], img, api_name="go")
|
79 |
|