ldhldh commited on
Commit
8ce5413
·
1 Parent(s): c10b0f7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -6
app.py CHANGED
@@ -63,14 +63,11 @@ def yn(x):
63
 
64
  with gr.Blocks() as blk:
65
  gr.Markdown("# Gradio Blocks (3.0) with REST API")
66
- t = gr.Textbox()
67
  c = gr.Button("mbti")
68
  b = gr.Button("chat")
69
  a = gr.Button("yn")
70
- o = gr.Textbox()
71
- c.click(mbti, inputs=[t], outputs=[o])
72
- b.click(chat, inputs=[t], outputs=[o])
73
- a.click(yn, inputs=[t], outputs=[o])
74
  gr.Markdown("""
75
  ## API
76
  Can select which function to use by passing in `fn_index`:
@@ -89,7 +86,9 @@ $ curl -X POST https://hf.space/embed/versae/gradio-blocks-rest-api/+/api/predic
89
  $ curl -X POST https://hf.space/embed/versae/gradio-blocks-rest-api/+/api/predict/ -H 'Content-Type: application/json' -d '{"data": ["Jessie"], "fn_index": 1}'
90
  ```""")
91
 
92
- ifa = gr.Interface(lambda: None, inputs=[t], outputs=[o])
 
 
93
 
94
  blk.input_components = ifa.input_components
95
  blk.output_components = ifa.output_components
 
63
 
64
  with gr.Blocks() as blk:
65
  gr.Markdown("# Gradio Blocks (3.0) with REST API")
66
+ t = gr.Textbox(label="User input")
67
  c = gr.Button("mbti")
68
  b = gr.Button("chat")
69
  a = gr.Button("yn")
70
+ o = gr.Textbox(label="Model output")
 
 
 
71
  gr.Markdown("""
72
  ## API
73
  Can select which function to use by passing in `fn_index`:
 
86
  $ curl -X POST https://hf.space/embed/versae/gradio-blocks-rest-api/+/api/predict/ -H 'Content-Type: application/json' -d '{"data": ["Jessie"], "fn_index": 1}'
87
  ```""")
88
 
89
+ c.click(mbti, inputs=[t], outputs=[o])
90
+ b.click(chat, inputs=[t], outputs=[o])
91
+ a.click(yn, inputs=[t], outputs=[o])
92
 
93
  blk.input_components = ifa.input_components
94
  blk.output_components = ifa.output_components