mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-17 13:14:21 +01:00
snips: Collection of small improvements (#914)
* snips: Prettier YAML files * snips: Move data files to data folder * snips: Update add-on URL * snips: Tweak documentation
This commit is contained in:
committed by
Pascal Vizeli
parent
e679c28720
commit
c7899342a6
@@ -2,10 +2,10 @@ ARG BUILD_FROM
|
|||||||
FROM $BUILD_FROM
|
FROM $BUILD_FROM
|
||||||
|
|
||||||
# Copy data
|
# Copy data
|
||||||
COPY run.sh /
|
COPY data/run.sh /
|
||||||
COPY mosquitto.conf /etc/
|
COPY data/mosquitto.conf /etc/
|
||||||
COPY customtts.sh /usr/bin
|
COPY data/customtts.sh /usr/bin
|
||||||
COPY snips-entrypoint.sh /
|
COPY data/snips-entrypoint.sh /
|
||||||
|
|
||||||
ARG BUILD_ARCH
|
ARG BUILD_ARCH
|
||||||
|
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
Support for Snips.ai voice assistant.
|
Support for Snips.ai voice assistant.
|
||||||
|
|
||||||
![Supports aarch64 Architecture][aarch64-shield] ![Supports amd64 Architecture][amd64-shield] ![Supports armhf Architecture][armhf-shield] ![Supports armv7 Architecture][armv7-shield] ![Supports i386 Architecture][i386-shield]
|
![Supports aarch64 Architecture][aarch64-shield] ![Supports amd64 Architecture][amd64-shield] ![Supports armhf Architecture][armhf-shield] ![Supports armv7 Architecture][armv7-shield] ![Supports i386 Architecture][i386-shield]
|
||||||
|
|
||||||
## About
|
## About
|
||||||
|
|
||||||
Snips.ai is an AI-powered voice assistant that runs on the Raspberry Pi 3 and x86 platforms.
|
Snips.ai is an AI-powered voice assistant that runs on the Raspberry Pi 3 and x86 platforms.
|
||||||
@@ -10,7 +11,7 @@ In contrast to Google Assistant or Amazon Alexa, it runs on-device and is privat
|
|||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
The installation of this add-on is straightforward and easy to do.
|
Follow these steps to get the add-on installed on your system:
|
||||||
|
|
||||||
1. Navigate in your Home Assistant frontend to **Hass.io** -> **Add-on Store**.
|
1. Navigate in your Home Assistant frontend to **Hass.io** -> **Add-on Store**.
|
||||||
2. Find the "Snips.AI" add-on and click it.
|
2. Find the "Snips.AI" add-on and click it.
|
||||||
|
|||||||
@@ -3,20 +3,19 @@
|
|||||||
trigger:
|
trigger:
|
||||||
branches:
|
branches:
|
||||||
include:
|
include:
|
||||||
- master
|
- master
|
||||||
paths:
|
paths:
|
||||||
include:
|
include:
|
||||||
- snips/*
|
- snips/*
|
||||||
pr: none
|
pr: none
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
- name: versionBuilder
|
- name: versionBuilder
|
||||||
value: '2.0'
|
value: "2.0"
|
||||||
- group: docker
|
- group: docker
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
- template: /.azure/azp-template-addon.yml
|
- template: /.azure/azp-template-addon.yml
|
||||||
parameters:
|
parameters:
|
||||||
addon: 'snips'
|
addon: "snips"
|
||||||
arch: '--armhf --amd64'
|
arch: "--armhf --amd64"
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
"version": "6.1",
|
"version": "6.1",
|
||||||
"slug": "snips",
|
"slug": "snips",
|
||||||
"description": "Local voice control platform",
|
"description": "Local voice control platform",
|
||||||
"url": "https://home-assistant.io/addons/snips/",
|
"url": "https://github.com/home-assistant/hassio-addons/tree/master/snips",
|
||||||
"arch": ["armhf", "amd64"],
|
"arch": ["armhf", "amd64"],
|
||||||
"startup": "application",
|
"startup": "application",
|
||||||
"boot": "auto",
|
"boot": "auto",
|
||||||
|
|||||||
Reference in New Issue
Block a user