Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Function spec example for say_tts #176

Merged
merged 1 commit into from
Mar 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions examples/function/say_tts/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
## Objective

- say_tts will say a message on any text to speech device

## Function

### say_tts
```yaml
- spec:
name: say_tts
description: Say message on a text to speech device
parameters:
type: object
properties:
message:
type: string
description: message you want to say
device:
type: string
description: entity_id of media_player tts device
required:
- message
- device
function:
type: script
sequence:
- service: tts.cloud_say
data:
entity_id: "{{device}}"
message: "{{message}}"
```