P
P
Python Newbie2021-08-10 07:46:26
Google
Python Newbie, 2021-08-10 07:46:26

How to connect dialogflow to python?

I found a lesson on YouTube

. It connects dialogflow to a python script.
Video from a year ago.

Video code
import apiai, json

def textMessage(s):
    # Токен API к Dialogflow
    request = apiai.ApiAI('Ваш Dialogflow токен').text_request()
    # На каком языке будет послан запрос
    request.lang = 'ru'
    # ID Сессии диалога (нужно, чтобы потом учить бота)
    request.session_id = '3301megabot'
    # Посылаем запрос к ИИ с сообщением от юзера
    request.query = s 
    responseJson = json.loads(request.getresponse().read().decode('utf-8'))
    # Разбираем JSON и вытаскиваем ответ
    response=''
    response = responseJson['result']['fulfillment']['speech'] 
    # Если есть ответ от бота - выдаём его,
    # если нет - бот его не понял
    if response:
        return response
    else:
        return 'Я Вас не совсем понял!'

s=''
while(s!='Выход'):
    s=input('Введите ваше сообщение: ')
    print(textMessage(s))


But there is no field with tokens on my settings page .

How to connect it?

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question