Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
-
|
|
|
|
|
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
|