freddyaboulton's picture
Duplicate from hysts-debug/client-bool-api-name-error
3f3de3d
raw
history blame
301 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=False)
btn.click(fn=lambda x: x, inputs=text, outputs=out, api_name='run')
demo.queue().launch()