a6f0359
8d2594d
a6f0359
8d2594d
a6f0359
8d2594d
a6f0359
| | import gradio as gr
import random
def respond_randomly(message, history):
message_options = ["yes", "no"]
return random.choice(message_options)
chatbot = gr.ChatInterface(respond_randomly)
chatbot.launch()
|