Spaces:
Sleeping
Sleeping
import gradio as gr | |
def respond_to_input(user_input): | |
return f"You said: {user_input}" | |
with gr.Blocks() as demo: | |
gr.Textbox(label="Input", placeholder="Type something...").submit(respond_to_input) | |
gr.Textbox(label="Output") | |
demo.launch() |