hysts's picture
hysts HF Staff
Duplicate from hysts-debug/api-page-with-empty-api-name
981cb61
raw
history blame
298 Bytes
#!/usr/bin/env python
import gradio as gr
with gr.Blocks() as demo:
text = gr.Text()
out = gr.Text()
btn = gr.Button()
text.submit(fn=lambda x: x, inputs=text, outputs=out, api_name='')
btn.click(fn=lambda x: x, inputs=text, outputs=out, api_name='run')
demo.queue().launch()