File size: 206 Bytes
fc5793f
0a698fb
8c58c03
0a698fb
 
 
8c58c03
0a698fb
8c58c03
 
1
2
3
4
5
6
7
8
9
10
import gradio as gr
import random

def yesNoRandom(message,history):
    repsonse=["yes","no"]
    return random.choice(repsonse)

chatbot = gr.ChatInterface(yesNoRandom, type = "message")

chatbot.launch()