skip to Main Content

I am building a telegram-bot and using Dialogflow in it, I am getting the following error :

2021-11-19 23:26:46,936 - __main__ - ERROR - Update '{'message': {'entities': [], 
'delete_chat_photo': False, 'text': 'hi', 'date': 1637344606, 'new_chat_members': [], 
'channel_chat_created': False, 'message_id': 93, 'photo': [], 'group_chat_created': 
False, 'supergroup_chat_created': False, 'new_chat_photo': [], 'caption_entities': [], 
'chat': {'id': 902424541, 'type': 'private', 'first_name': 'Akriti'}, 
'from': {'first_name': 'Akriti', 'id': 902424541, 'is_bot': False, 'language_code': 'en'}
}, 'update_id': 624230278}' caused error 'module 'google.cloud.dialogflow' has no 
attribute 'types''

It appears there is some issue with the Dialogflow attribute "types", but I don’t know what I am doing wrong.

Here is the code where I am using it:

import os
os.environ["GOOGLE_APPLICATION_CREDENTIALS"] = "client.json"

from google.cloud import dialogflow
dialogflow_session_client = dialogflow.SessionsClient()
PROJECT_ID = "get-informed-ufnl"

from gnewsclient import gnewsclient

client = gnewsclient.NewsClient()


def detect_intent_from_text(text, session_id, language_code='en'):
    session = dialogflow_session_client.session_path(PROJECT_ID, session_id)
    text_input = dialogflow.types.TextInput(text=text, language_code=language_code)
    query_input = dialogflow.types.QueryInput(text=text_input)
    response = dialogflow_session_client.detect_intent(session=session, query_input=query_input)
    return response.query_result



def get_reply(query, chat_id):
    response = detect_intent_from_text(query, chat_id)

    if response.intent.display_name == 'get_news':
        return "get_news", dict(response.parameters)
    else:
        return "small_talk", response.fulfillment_text


def fetch_news(parameters):
    client.language = parameters.get('language')
    client.location = parameters.get('geo-country')
    client.topic = parameters.get('topic')

    return client.get_news()[:5]


topics_keyboard = [
    ['Top Stories', 'World', 'Nation'],
    ['Business', 'Technology', 'Entertainment'],
    ['Sports', 'Science', 'Health']
]

2

Answers


  1. Chosen as BEST ANSWER

    I figured it out, the problem lies in the import statement. The correct module name should be:

    import google.cloud.dialogflow_v2 as dialogflow
    

  2. I recommend to deactivate your current error handler or use one similar to this example such that you can see the full traceback of the exception 🙂


    Disclaimer: I’m currently the maintainer of python-telegram-bot

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search