google-assistant-library now requires device_model_id

This commit is contained in:
Fabio Manganiello 2018-01-09 14:16:06 +01:00
parent b074e03d45
commit c1ab3f5a14
1 changed files with 6 additions and 2 deletions

View File

@ -20,14 +20,18 @@ class AssistantGoogleBackend(Backend):
def __init__(self, credentials_file=os.path.join(
os.path.expanduser('~/.config'),
'google-oauthlib-tool', 'credentials.json'), **kwargs):
'google-oauthlib-tool', 'credentials.json'),
device_model_id='Platypush', **kwargs):
""" Params:
credentials_file -- Path to the Google OAuth credentials file
(default: ~/.config/google-oauthlib-tool/credentials.json)
device_model_id -- Device model ID to use for the assistant
(default: Platypush)
"""
super().__init__(**kwargs)
self.credentials_file = credentials_file
self.device_model_id = device_model_id
self.assistant = None
with open(self.credentials_file, 'r') as f:
@ -66,7 +70,7 @@ class AssistantGoogleBackend(Backend):
def run(self):
super().run()
with Assistant(self.credentials) as assistant:
with Assistant(self.credentials, self.device_model_id) as assistant:
self.assistant = assistant
for event in assistant.start():
self._process_event(event)