nixos-configs/devices/homie/modules/home-assistant/spotify-sentences.nix
matt1432 eb5f04096e
All checks were successful
Discord / discord commits (push) Has been skipped
feat(hass): use ha-fallback with custom sentences
2024-10-07 15:15:29 -04:00

23 lines
367 B
Nix

{
language = "en";
intents = {
PlayArtist.data = [
{
sentences = [
"play [some] music from [artist] {artist}"
];
}
];
};
lists = {
artist.wildcard = true;
};
responses.intents = {
PlayArtist.default = ''
Searching for {{ slots.artist }} on Spotify and playing their top songs.
'';
};
}