Omnibus commited on
Commit
6f50145
·
1 Parent(s): d6bdbe0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
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