Image

(Dernier changement: 04.05.2024)

Pour tester les performances d'un chatbot Python, nous avons utilisé des questions et réponses toutes faites serveur de bot télégramme préconfiguré. Ce bot peut répondre à des questions pré-préparées - des réponses pré-préparées qui sont contenues dans le fichier answers.txt, ainsi que tenir un journal.

Procédons à l'installation:

source my-tel-bot/bin/activate
pip install fuzzywuzzy
pip install python-Levenshtein

mkdir /root/my-tel-bot/data
chmod 775 /root/my-tel-bot/data

Préparons un dossier avec questions et réponses:

nano /root/my-tel-bot/data/answers.txt

u: hello
Welcome to the chatbot
u: what is your name
Bro Bot!
u: how old are you
relatively few
u: what can you do
You can add to my database in the answers.txt file

Remplaçons notre bot de démonstration par celui existant:

/root/my-tel-bot/bot.py

import telebot
import os
from fuzzywuzzy import fuzz

# Create a bot, write your own token
bot = telebot.TeleBot('Key received from @BotFather')

# Loading a list of phrases and answers into an array
mas=[]
if os.path.exists('data/answers.txt'):
f=open('data/answers.txt', 'r', encoding='UTF-8')
for x in f:
if(len(x.strip()) > 2):
mas.append(x.strip().lower())
f.close()

# Using fuzzywuzzy, we calculate the most similar phrase and give the next element of the list as an answer
def answer(text):
try:
text=text.lower().strip()
if os.path.exists('data/answers.txt'):
a = 0
n = 0
nn = 0
for q in mas:
if('u: ' in q):

# Using fuzzywuzzy we get how similar two strings are
aa=(fuzz.token_sort_ratio(q.replace('u: ',''), text))
if(aa > a and aa!= a):
a = aa
nn = n
n = n + 1
s = mas[nn + 1]
return s
else:
return 'Error'
except:
return 'Error'

# /Start Command
@bot.message_handler(commands=["start"])
def start(m, res=False):
bot.send_message(m.chat.id, 'I am in touch. Write me hello )')

# Receiving messages from a user
@bot.message_handler(content_types=["text"])
def handle_text(message):

# Logging
f=open('data/' + str(message.chat.id) + '_log.txt', 'a', encoding='UTF-8')
s=answer(message.text)
f.write('u: ' + message.text + '\n' + s +'\n')
f.close()

# Sending a response
bot.send_message(message.chat.id, s)

# Launching the bot
bot.polling(none_stop=True, interval=0)

Terminé, n'oubliez pas de spécifier votre jeton de clé dans le script et de redémarrer le service:

service my-tel-bot restart



Aucun commentaire pour l'instant