mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-17 21:24:20 +01:00
Update Google Assistant SDK 0.5.0 (#298)
* Update Dockerfile * Update config.json * Update CHANGELOG.md * Update Dockerfile * Update Dockerfile * Update Dockerfile * Update Dockerfile * Update Dockerfile * Update Dockerfile * Update run.sh * Update hassio_gassistant.py * Update config.json * Update hassio_gassistant.py * Update hassio_gassistant.py * Update build.json * Update CHANGELOG.md
This commit is contained in:
@@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2.0
|
||||||
|
- Update Google Assistant SDK 0.5.0
|
||||||
|
- Update Google Assistant Library 1.0.0
|
||||||
|
- Revert base images
|
||||||
|
|
||||||
## 1.5
|
## 1.5
|
||||||
- Change event handling
|
- Change event handling
|
||||||
|
|
||||||
|
|||||||
@@ -3,9 +3,14 @@ FROM $BUILD_FROM
|
|||||||
|
|
||||||
# Install packages
|
# Install packages
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y \
|
&& apt-get install -y --no-install-recommends \
|
||||||
jq tzdata python3 python3-dev python3-pip libportaudio2 alsa-utils \
|
jq tzdata python3 python3-dev python3-pip libportaudio2 alsa-utils \
|
||||||
&& pip3 install google-assistant-library google-auth requests_oauthlib cherrypy \
|
&& pip3 install --no-cache-dir --upgrade setuptools \
|
||||||
|
&& pip3 install --no-cache-dir \
|
||||||
|
google-assistant-library==1.0.0 \
|
||||||
|
google-assistant-sdk==0.5.0 \
|
||||||
|
google-assistant-grpc==0.2.0 \
|
||||||
|
google-auth requests_oauthlib cherrypy \
|
||||||
&& apt-get remove -y --purge python3-pip python3-dev \
|
&& apt-get remove -y --purge python3-pip python3-dev \
|
||||||
&& apt-get clean -y \
|
&& apt-get clean -y \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"build_from": {
|
"build_from": {
|
||||||
"armhf": "multiarch/ubuntu-core:armhf-xenial",
|
"armhf": "multiarch/debian-debootstrap:armhf-stretch",
|
||||||
"amd64": "multiarch/ubuntu-core:amd64-xenial"
|
"amd64": "multiarch/debian-debootstrap:amd64-stretch"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Google Assistant",
|
"name": "Google Assistant SDK",
|
||||||
"version": "1.5",
|
"version": "2.0",
|
||||||
"slug": "google_assistant",
|
"slug": "google_assistant",
|
||||||
"description": "A virtual personal assistant developed by Google",
|
"description": "A virtual personal assistant developed by Google",
|
||||||
"url": "https://home-assistant.io/addons/google_assistant/",
|
"url": "https://home-assistant.io/addons/google_assistant/",
|
||||||
|
|||||||
@@ -27,21 +27,24 @@ if __name__ == '__main__':
|
|||||||
device_json = Path(DEVICE_CONFIG)
|
device_json = Path(DEVICE_CONFIG)
|
||||||
|
|
||||||
# open credentials
|
# open credentials
|
||||||
|
print("OAth with Google")
|
||||||
with cred_json.open('r') as data:
|
with cred_json.open('r') as data:
|
||||||
credentials = google.oauth2.credentials.Credentials(token=None, **json.load(data))
|
credentials = google.oauth2.credentials.Credentials(token=None, **json.load(data))
|
||||||
|
|
||||||
# Read device info
|
# Read device info
|
||||||
|
print("Initialize device infos")
|
||||||
if device_json.exists():
|
if device_json.exists():
|
||||||
with device_json.open('r') as data:
|
with device_json.open('r') as data:
|
||||||
device_info = json.load(data)
|
device_info = json.load(data)
|
||||||
|
|
||||||
device_model_id = device_config['model_id']
|
device_model_id = device_info['model_id']
|
||||||
last_device_id = device_config.get('last_device_id', None)
|
last_device_id = device_info.get('last_device_id', None)
|
||||||
else:
|
else:
|
||||||
device_model_id = sys.argv[3]
|
device_model_id = sys.argv[3]
|
||||||
last_device_id = None
|
last_device_id = None
|
||||||
|
|
||||||
# run assistant
|
# run assistant
|
||||||
|
print("Run Google Assistant SDK")
|
||||||
with Assistant(credentials, device_model_id) as assistant:
|
with Assistant(credentials, device_model_id) as assistant:
|
||||||
events = assistant.start()
|
events = assistant.start()
|
||||||
device_id = assistant.device_id
|
device_id = assistant.device_id
|
||||||
@@ -58,5 +61,7 @@ if __name__ == '__main__':
|
|||||||
'model_id': device_model_id,
|
'model_id': device_model_id,
|
||||||
}, dev_file)
|
}, dev_file)
|
||||||
|
|
||||||
for event in event:
|
for event in events:
|
||||||
process_event(event)
|
process_event(event)
|
||||||
|
|
||||||
|
print("Close Google Assistant SDK")
|
||||||
|
|||||||
@@ -23,4 +23,5 @@ elif [ ! -f "$CRED_JSON" ]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
echo "[Info] Run Hass.io GAssisant SDK"
|
||||||
exec python3 /hassio_gassistant.py "$CRED_JSON" "$PROJECT_ID" "$MODEL_ID" < /dev/null
|
exec python3 /hassio_gassistant.py "$CRED_JSON" "$PROJECT_ID" "$MODEL_ID" < /dev/null
|
||||||
|
|||||||
Reference in New Issue
Block a user