I'm developing a Chatbot in python, using the ChatterBot library. I would like to know how I can "embed" this chatbot into an HTML page.
- I'm a beginner.
- I use USB Web Server
Follow the code:
# -*- coding: utf-8 -*-
from chatterbot.trainers import ListTrainer
from chatterbot import ChatBot
bot = ChatBot('Bot')
nome = input('Digite seu nome: ')
conv = [
'Oi',
'Olá',
'Tudo bem?',
'Estou bem obrigado'
]
bot.set_trainer(ListTrainer)
bot.train(conv)
print('-='*40)
print('Bem Vindo ao Chat!')
print('-='*40)
while True:
quest = input('Você: ')
response = bot.get_response(quest)
if float(response.confidence) > 0.5:
print('Bot:', response)
else:
print('Bot: Não entendi, isso não está na minha base de dados')