Update ADA 0.7 (#848)

This commit is contained in:
Pascal Vizeli
2019-11-21 13:50:32 +01:00
committed by GitHub
parent 193203cca0
commit 0e78528b6f
4 changed files with 9 additions and 3 deletions

View File

@@ -5,6 +5,6 @@
"armhf": "homeassistant/armhf-base-debian:buster"
},
"args": {
"ADA_VERSION": "0.6"
"ADA_VERSION": "0.7"
}
}

View File

@@ -1,6 +1,6 @@
{
"name": "Hey Ada!",
"version": "0.5",
"version": "0.6",
"slug": "ada",
"description": "Home Assistant featured voice assist",
"url": "https://home-assistant.io/addons/ada/",

View File

@@ -1,4 +1,6 @@
#!/usr/bin/env bashio
STT=$(bashio::config 'stt')
TTS=$(bashio::config 'tts')
exec python3 -m ada
exec python3 -m ada --url "http://hassio/homeassistant" --key "$HASSIO_TOKEN" --stt "$STT" --tts "$TTS"

View File

@@ -13,8 +13,12 @@
"homeassistant": "0.102.0.dev",
"homeassistant_api": true,
"options": {
"stt": "cloud",
"tts": "cloud"
},
"schema": {
"stt": "str",
"tts": "str"
},
"image": "homeassistant/{arch}-addon-almond"
}