mirror of
https://github.com/aljazceru/addons.git
synced 2026-01-22 06:16:13 +01:00
* added customtts and default assistants * Added ES assistant and customtts updates * Added ES assistant and customtts updates * Added customtts and new assistants * Added customtts and new assistants * Update config.json * Added customtts and new assistants * Added some quotes * Added some quotes * Added some quotes * Remove binaries and install from pkg * Remove binaries and install from pkg * Update Dockerfile * Update config.json * test * updated version * Update config.json * Update config.json * Update Dockerfile * Update config.json * Update customtts.sh * Update CHANGELOG.md * Update run.sh * Update run.sh * Update config.json * Update build.json * Update CHANGELOG.md * Update build.json
49 lines
1014 B
JSON
49 lines
1014 B
JSON
{
|
|
"name": "Snips.AI",
|
|
"version": "3.0",
|
|
"slug": "snips",
|
|
"description": "Local voice control platform",
|
|
"url": "https://home-assistant.io/addons/snips/",
|
|
"startup": "application",
|
|
"boot": "auto",
|
|
"arch": ["armhf", "amd64"],
|
|
"ports": {
|
|
"1883/tcp": 9898
|
|
},
|
|
"map": ["share"],
|
|
"tmpfs": "size=10m",
|
|
"audio": true,
|
|
"homeassistant_api": true,
|
|
"options": {
|
|
"mqtt_bridge": {
|
|
"active": true,
|
|
"host": "core-mosquitto",
|
|
"port": 1883,
|
|
"user": "",
|
|
"password": ""
|
|
},
|
|
"assistant": "assistant.zip",
|
|
"language": "en",
|
|
"custom_tts": {
|
|
"active": false,
|
|
"platform": "amazon_polly"
|
|
}
|
|
},
|
|
"schema": {
|
|
"mqtt_bridge": {
|
|
"active": "bool",
|
|
"host": "str",
|
|
"port": "port",
|
|
"user": "str",
|
|
"password": "str"
|
|
},
|
|
"assistant": "str",
|
|
"language": "match((?:en|de|fr))",
|
|
"custom_tts": {
|
|
"active": "bool",
|
|
"platform": "string"
|
|
}
|
|
},
|
|
"image": "homeassistant/{arch}-addon-snips"
|
|
}
|