File size: 315 Bytes
8844b2b
f4b02ef
 
8844b2b
 
 
 
 
f4b02ef
 
 
 
 
 
8844b2b
5c7712e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import random
import gradio as gr


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


demo = gr.ChatInterface(
    respond_yes_no_randomly,
    title="Yes No Bot",
    description="This chatbot responds yes or no to your questions!",
)

demo.launch()