Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -99,11 +99,10 @@ def test(inp):
|
|
99 |
return out
|
100 |
with gr.Blocks() as app:
|
101 |
with gr.Row():
|
102 |
-
search_box=gr.Textbox("Search")
|
103 |
search_btn=gr.Button()
|
104 |
-
out_text = gr.Textbox()
|
105 |
with gr.Row():
|
106 |
-
input = gr.Textbox()
|
107 |
btn = gr.Button()
|
108 |
output = gr.HTML("""""")
|
109 |
|
|
|
99 |
return out
|
100 |
with gr.Blocks() as app:
|
101 |
with gr.Row():
|
102 |
+
search_box=gr.Textbox(label = "Search")
|
103 |
search_btn=gr.Button()
|
|
|
104 |
with gr.Row():
|
105 |
+
input = gr.Textbox(label = "URL")
|
106 |
btn = gr.Button()
|
107 |
output = gr.HTML("""""")
|
108 |
|