firstspace / chatbot_test.py
krishnasonawane's picture
Create chatbot_test.py
0eb0da9 verified
raw
history blame contribute delete
241 Bytes
import random
imoport gradio as gr
def random_response(message, history):
return random.choice(["Yes", "No"])
demo = gr.ChatInterface(fn=random_response, type="messages", autofocus= 'False', title= 'Random answer chatbot')
demo.launch()