You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
%: BuiltIn Module
#[VAPL.Modules.Web] > redirect, tts
%: WHEN USING Speech To text it will ignore the name and $ignore
%: But name will be displayed as title
$name = 'bob'$ignore = ['']
out: f'Hello, I am {$name} Vapl.'
out: 'I am the voice assistant made in custom language.'
out: 'You can make me too!'
out: 'Search for VAPL in testpypi or pypi!'
out: ''
define spotify(){
call: tts('opening spotify')
call: redirect('https://open.spotify.com/collection/tracks')
}
/*'hi';> call: tts(f'hi')
'goodbye';> call: tts('goodbye')
f'initialize {$name}';> call: tts(f'initializing {$name}')
'open spotify';> call: spotify()
*/