chatcode / app.py
Arafath10's picture
Update app.py
b4f050c
raw
history blame
298 Bytes
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()