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


def magicEight(message, history):

    answers = ["the outlook is good", "no, sorry", "maybe", "ask me again"]
    message = random.choice(answers)
    return message

print("Hello, world!")

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

chatbot.launch()