1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00
Files
core/homeassistant/components/snips/services.yaml
Paulus Schoutsen b8cc547fa3 Move components to folders (#20774)
* Move all components into folders

* Move component tests into folders

* Fix init moving

* Move tests

* Lint

* Update coverage

* Fix service descriptions

* Update CODEOWNERS
2019-02-05 19:31:15 -08:00

32 lines
1.4 KiB
YAML

feedback_off:
description: Turns feedback sounds off.
fields:
site_id: {description: 'Site to turn sounds on, defaults to all sites (optional)',
example: bedroom}
feedback_on:
description: Turns feedback sounds on.
fields:
site_id: {description: 'Site to turn sounds on, defaults to all sites (optional)',
example: bedroom}
say:
description: Send a TTS message to Snips.
fields:
custom_data: {description: custom data that will be included with all messages
in this session, example: user=UserName}
site_id: {description: 'Site to use to start session, defaults to default (optional)',
example: bedroom}
text: {description: Text to say., example: My name is snips}
say_action:
description: Send a TTS message to Snips to listen for a response.
fields:
can_be_enqueued: {description: 'If True, session waits for an open session to
end, if False session is dropped if one is running', example: true}
custom_data: {description: custom data that will be included with all messages
in this session, example: user=UserName}
intent_filter: {description: Optional Array of Strings - A list of intents names
to restrict the NLU resolution to on the first query., example: 'turnOnLights,
turnOffLights'}
site_id: {description: 'Site to use to start session, defaults to default (optional)',
example: bedroom}
text: {description: Text to say, example: My name is snips}