File size: 212 Bytes
54a2e75
7ab7b3f
54a2e75
5e7450f
 
 
54a2e75
 
 
 
1
2
3
4
5
6
7
8
9
10
import gradio as gr 
import random

def random_response (message, history) :
    response_options = ["yes","no"]
    return random.chioce(response_options) 
    
chatbot = gr.ChatInterface(echo)

chatbot.launch()