cCogshere / app.py
CognitiveScience's picture
Create app.py
639a183
raw
history blame
347 Bytes
import gradio as gr
with gr.Blocks() as demo:
with gr.Box():
chat = gr.Chatbot(label="Chat")
with gr.Row():
msg_box = gr.Textbox(show_label=False, placeholder="Type a message.", scale=5, container=False)
submit_btn = gr.Button("Send", scale=1, variant='primary')
if __name__ == "__main__":
demo.launch()