This is a couple of simple bots working in VK and Telegram. It is made for answer on ordinary questions from users of some company. Bots are using DialogFlow Google AI service. That means bots can understand different phorms of one phrase. Look at this magic:
And of course you can try this conversation yourself, here is links to working bots:
- python3.6+
python-telegram-bot
environs
google-cloud-dialogflow
google-cloud-api-keys
vk_api
requests
Bot interacts with VK, Telegram and DialogFlow Google service. So, you need to get access from all this services:
- Receive
credentials.json
file and DialogFlow project id. Go here and follow instructions; - create telegram bot and receive token;
- create VK group, receive token and allow community to receive messages from users.
- (OPTIONAL) create second telegram bot to receive bots logs and write @userinfobot to get your chat_id to fill
ADMIN_TG_CHAT_ID
Use above information for fill settings in .env
file. You can use .env_example
as a template. Here is short description of each param:
TG_TOKEN - telegram help bot token
VK_TOKEN - vk help bot token
GOOGLE_APPLICATION_CREDENTIALS - path to file credentials.json
GOOGLE_CLOUD_PROJECT - dialogflow project id
TG_LOGBOT_TOKEN - optional, telegram log bot token (for logs)
ADMIN_TG_CHAT_ID - optional, telegram admin chat id (for logs)
First you need to get access to DialogFlow API as wrote above. Next, you should create JSON file with structure like this:
{
"Устройство на работу": {
"questions": [
"Как устроиться к вам на работу?",
"Как устроиться к вам?",
"Как работать у вас?",
"Хочу работать у вас",
"Возможно-ли устроиться к вам?",
"Можно-ли мне поработать у вас?",
"Хочу работать редактором у вас"
],
"answer": "Если вы хотите устроиться к нам, напишите на почту game-of-verbs@gmail.com мини-эссе о себе и прикрепите ваше портфолио."
}
}
And then run create_intent.py
script passing this file as a parameter:
python3 create_intent.py file.json
Get the source code of this repo:
git clone git@github.com:leksuss/help_bot.git
Go inside folder:
cd help_bot
Python3 should be already installed. Then use pip (or pip3, if there is a conflict with Python2) to install dependencies:
# If you would like to install dependencies inside virtual environment, you should create it first.
pip3 install -r requirements.txt
And then run both bots, each in separate console:
python3 tg_bot.py
and
python3 vk_bot.py
This project is made for study purpose.