File size: 218 Bytes
879cbc6
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import gradio as gr
import random

def respond_yes_no_randomly(message, history):
    responses = ["Yes", "No"]
    return random.choice(responses)

chatbot = gr.ChatInterface(respond_yes_no_randomly)

chatbot.launch()