Spaces:
Runtime error
Runtime error
Commit
·
7aa68b4
1
Parent(s):
7f604b2
Update app.py
Browse files
app.py
CHANGED
|
@@ -65,7 +65,7 @@ with gr.Blocks(theme='ParityError/Interstellar') as demo:
|
|
| 65 |
check = gr.Checkbox(label="Go")
|
| 66 |
with gr.Column(variant="panel", scale=2):
|
| 67 |
img = gr.Image(
|
| 68 |
-
"https://gradio.
|
| 69 |
).style(height=320)
|
| 70 |
with gr.Row():
|
| 71 |
go_btn = gr.Button("Go", label="Primary Button", variant="primary")
|
|
@@ -75,7 +75,7 @@ with gr.Blocks(theme='ParityError/Interstellar') as demo:
|
|
| 75 |
|
| 76 |
def go(*args):
|
| 77 |
time.sleep(3)
|
| 78 |
-
return "https://gradio.
|
| 79 |
|
| 80 |
go_btn.click(go, [radio, drop, drop_2, check, name], img, api_name="go")
|
| 81 |
|
|
@@ -144,4 +144,4 @@ with gr.Blocks(theme='ParityError/Interstellar') as demo:
|
|
| 144 |
|
| 145 |
|
| 146 |
if __name__ == "__main__":
|
| 147 |
-
demo.queue().launch()
|
|
|
|
| 65 |
check = gr.Checkbox(label="Go")
|
| 66 |
with gr.Column(variant="panel", scale=2):
|
| 67 |
img = gr.Image(
|
| 68 |
+
"https://gradio-static-files.s3.us-west-2.amazonaws.com/header-image.jpg", label="Image"
|
| 69 |
).style(height=320)
|
| 70 |
with gr.Row():
|
| 71 |
go_btn = gr.Button("Go", label="Primary Button", variant="primary")
|
|
|
|
| 75 |
|
| 76 |
def go(*args):
|
| 77 |
time.sleep(3)
|
| 78 |
+
return "https://gradio-static-files.s3.us-west-2.amazonaws.com/header-image.jpg"
|
| 79 |
|
| 80 |
go_btn.click(go, [radio, drop, drop_2, check, name], img, api_name="go")
|
| 81 |
|
|
|
|
| 144 |
|
| 145 |
|
| 146 |
if __name__ == "__main__":
|
| 147 |
+
demo.queue().launch()
|