rm-ui / app.py
chansung's picture
Create app.py
d47f5a9
raw
history blame
184 Bytes
import gradio as gr
with gr.Blocks() as demo:
chatbot = gr.Chatbot()
user_message = gr.Textbox()
clear = gr.Button("Clear")
if __name__ == "__main__":
demo.launch()