2024-10-07 15:15:29 -04:00
|
|
|
{
|
|
|
|
language = "en";
|
|
|
|
|
|
|
|
intents = {
|
2024-10-09 00:34:58 -04:00
|
|
|
PlayAlbum.data = [
|
2024-10-07 15:15:29 -04:00
|
|
|
{
|
|
|
|
sentences = [
|
2024-10-09 00:34:58 -04:00
|
|
|
"play[ing] [the] album {album} from [the] [artist] {artist}"
|
2024-10-07 15:15:29 -04:00
|
|
|
];
|
|
|
|
}
|
2024-10-09 00:34:58 -04:00
|
|
|
{
|
|
|
|
sentences = [
|
|
|
|
"play[ing] [the] album {album}"
|
|
|
|
];
|
|
|
|
slots.artist = "";
|
|
|
|
}
|
2024-10-07 15:15:29 -04:00
|
|
|
];
|
2024-10-08 02:07:05 -04:00
|
|
|
|
2024-10-09 00:34:58 -04:00
|
|
|
PlayArtist.data = [
|
2024-10-08 02:07:05 -04:00
|
|
|
{
|
|
|
|
sentences = [
|
2024-10-09 00:34:58 -04:00
|
|
|
"play[ing] [some] music from [the] [artist] {artist}"
|
|
|
|
"play[ing] [the] artist {artist}"
|
2024-10-08 02:07:05 -04:00
|
|
|
];
|
|
|
|
}
|
2024-10-09 00:34:58 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
PlayPlaylist.data = [
|
2024-10-08 02:07:05 -04:00
|
|
|
{
|
|
|
|
sentences = [
|
2024-10-09 00:34:58 -04:00
|
|
|
"play[ing] [the] playlist {playlist}"
|
2024-10-08 02:07:05 -04:00
|
|
|
];
|
|
|
|
}
|
|
|
|
];
|
2024-10-07 15:15:29 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
lists = {
|
2024-10-08 02:07:05 -04:00
|
|
|
album.wildcard = true;
|
2024-10-09 00:34:58 -04:00
|
|
|
artist.wildcard = true;
|
|
|
|
playlist.wildcard = true;
|
2024-10-07 15:15:29 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
responses.intents = {
|
2024-10-08 02:07:05 -04:00
|
|
|
PlayAlbum.default = ''
|
|
|
|
Searching for the album {{ slots.album }}
|
|
|
|
{% if slots.artist != "" %}
|
|
|
|
by {{ slots.artist }}
|
|
|
|
{% endif %}
|
|
|
|
on Spotify and playing it.
|
|
|
|
'';
|
2024-10-09 00:34:58 -04:00
|
|
|
|
|
|
|
PlayArtist.default = ''
|
|
|
|
Searching for the artist {{ slots.artist }} on Spotify and playing their top songs.
|
|
|
|
'';
|
|
|
|
|
|
|
|
PlayPlaylist.default = ''
|
|
|
|
Searching for {{ slots.playlist }} in your favorites, or elsewhere if not found, and playing it.
|
|
|
|
'';
|
2024-10-07 15:15:29 -04:00
|
|
|
};
|
|
|
|
}
|