CentaurSock / app.py
tonyassi's picture
Update app.py
22c2e7a
raw
history blame
No virus
806 Bytes
import gradio as gr
with gr.Blocks() as demo:
overview = gr.Markdown("""
<center> # CentaurSock </center>
Watson Hartsoe and Tony Assi
Overview: .....
""")
with gr.Row():
img1 = gr.Markdown("""![](./COP_MIKE.png)""")
img2 = gr.Markdown("""![](./SAM_COP_FINAL.png)""")
with gr.Row():
chatbot1 = gr.Chatbot()
chatbot2 = gr.Chatbot()
with gr.Row():
textbox1 = gr.Textbox()
textbox2 = gr.Textbox()
def echo(message, chat_history):
bot_message = 'echo ' + message
chat_history.append((message, bot_message))
return '', chat_history
textbox1.submit(echo, [textbox1, chatbot1], [textbox1, chatbot1])
textbox2.submit(echo, [textbox2, chatbot2], [textbox2, chatbot2])
demo.launch()