radames commited on
Commit
d0d6a68
·
1 Parent(s): c21e477

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -4
app.py CHANGED
@@ -1,8 +1,5 @@
1
  import gradio as gr
2
 
3
- block = gr.Blocks()
4
-
5
-
6
  def predict(text, url_params):
7
  print(url_params)
8
  return ["Hello " + text + "!!", url_params]
@@ -24,7 +21,7 @@ set_window_url_params = """
24
  return [text_input, state];
25
  }
26
  """
27
- with block:
28
  url_params = gr.JSON({}, visible=True, label="URL Params")
29
  text_input = gr.Text(label="Input")
30
  text_output = gr.Text(label="Output")
 
1
  import gradio as gr
2
 
 
 
 
3
  def predict(text, url_params):
4
  print(url_params)
5
  return ["Hello " + text + "!!", url_params]
 
21
  return [text_input, state];
22
  }
23
  """
24
+ with gr.Blocks() as block:
25
  url_params = gr.JSON({}, visible=True, label="URL Params")
26
  text_input = gr.Text(label="Input")
27
  text_output = gr.Text(label="Output")