Files
addons/google_assistant/config.json
Eric Matte c41189e93d Add feedback_sound option [add-on: google_assistant] (#1356)
* Add feedback_sound option

* Revert exec command

* Use pulseaudio-utils and add volume option

* Update config.json

* Update feedback doc to a grouped

* Update changelog and version

Co-authored-by: Pascal Vizeli <pascal.vizeli@syshack.ch>
2020-06-01 12:01:11 +02:00

39 lines
922 B
JSON

{
"name": "Google Assistant SDK",
"version": "2.5.0",
"slug": "google_assistant",
"description": "A virtual personal assistant developed by Google",
"url": "https://github.com/home-assistant/hassio-addons/tree/master/google_assistant",
"startup": "application",
"boot": "auto",
"arch": ["armhf", "armv7", "amd64"],
"init": false,
"advanced": true,
"stage": "experimental",
"map": ["share"],
"audio": true,
"ports": {
"9324/tcp": 9324
},
"webui": "http://[HOST]:[PORT:9324]",
"options": {
"client_secrets": "google_assistant.json",
"project_id": null,
"model_id": null,
"feedback": {
"enable": false,
"volume": 80
}
},
"schema": {
"client_secrets": "str",
"project_id": "str",
"model_id": "str",
"feedback": {
"enable": "bool",
"volume": "int(0,100)"
}
},
"image": "homeassistant/{arch}-addon-google_assistant"
}