gradio-blocks / app.py
kaitwithkwk's picture
Update app.py
3092940 verified
raw
history blame contribute delete
404 Bytes
import gradio as gr
def echo(message, history):
return message
about_text = """
## About this bot
This demo **simply echoes** everything you type.
Use the chat box on the right to try it out!
"""
with gr.Blocks() as demo:
with gr.Row():
with gr.Column(scale=1):
gr.Markdown(about_text)
with gr.Column(scale=2):
gr.ChatInterface(echo)
demo.launch()