Textwizai / app.py
Erfan11's picture
Update app.py
14566e4 verified
raw
history blame
No virus
252 Bytes
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()