File size: 298 Bytes
e641e34 f48d575 e641e34 cd7f54a e641e34 cd7f54a b4f050c e641e34 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import gradio as gr
from chatterbot import ChatBot
from chatterbot.trainers import ListTrainer
chatbot = ChatBot("Chatpot")
def greet(name):
text = chatbot.get_response(name)
return "Hello " + str(text) + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch() |