ChatbotLab / app.py
Pengi5659's picture
Update app.py
0c3caba verified
raw
history blame
207 Bytes
import gradio as gr
import random as rd
def echo(message, history):
choices = ["yes","no"]
rd.choices()
return message
chatbot = gr.ChatInterface(echo, type = "messages")
chatbot.launch()