Spaces:
Sleeping
Sleeping
File size: 252 Bytes
14566e4 732d546 14566e4 ff60146 14566e4 c906021 14566e4 |
1 2 3 4 5 6 7 8 9 10 |
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() |