File size: 308 Bytes
ffd4434
367dde4
ffd4434
367dde4
 
 
 
 
 
 
834791f
 
 
 
367dde4
834791f
ffd4434
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import gradio as gr
import random

answers = ["the outlook is good", "no, sorry", "maybe", "ask me again"]

def magicEight(message, history):

    message = random.choice(answers)
        
    
	return message

print("Hello, world!")

chatbot = gr.ChatInterface(magicEight, type="messages")

chatbot.launch()