-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.json
33 lines (33 loc) · 944 Bytes
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "Google Assistant SDK",
"version": "2.1.8",
"slug": "google_assistant",
"description": "A virtual personal assistant developed by Google. Supports custom hotwords, bluetooth speakers, and a webserver.",
"url": "https://github.com/samlehman617/google-assistant-hassio-addon",
"startup": "application",
"boot": "auto",
"arch": ["armhf", "amd64"],
"map": ["config:rw", "share:rw"],
"audio": true,
"devices": ["/dev/snd:/dev/snd:rwm"],
"auto_uart": true,
"full_access": true,
"ports": {
"9324/tcp": 9324,
"5000/tcp": 5000
},
"webui": "http://[HOST]:[PORT:9324]",
"options": {
"client_secrets": "google_assistant.json",
"project_id": null,
"model_id": null,
"bluetooth_mac": "00:00:00:00:00:00"
},
"schema": {
"client_secrets": "str",
"project_id": "str",
"model_id": "str",
"bluetooth_mac": "str"
},
"image": "samlehman617/{arch}-addon-google-assistant"
}