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
{{ message }}
This repository has been archived by the owner on Jan 28, 2023. It is now read-only.
One of my listen_fors runs a script, which accesses and processes data from an API. Because of the size of the data, it takes approximately 1-1.5 seconds to return. Despite the fact that I say something before running the script and then say the results after (both of which appear in the siriproxy logs as being sent to my phone), Siri doesn't say anything and continues spinning until request_completed when it says the default "would you like me to search the web for ...".
listen_for /execute long task/i do
say "Executing the long running task" # this is never said
response = %x(./long-task.sh) # takes ~1 sec to return
say "Response is" + response # this isn't said either
request_completed
end
Is there any way to force Siri to say the first statement and make her wait patiently until my second say and subsequent request_completed?
The text was updated successfully, but these errors were encountered:
listen_for(/redeye initialize/i) do say "One moment while I initialize RedEye plugin..." Thread.new { init_redeyes update_resel say "SiriProxy RedEye plugin initialized." request_completed } end
One of my
listen_for
s runs a script, which accesses and processes data from an API. Because of the size of the data, it takes approximately 1-1.5 seconds to return. Despite the fact that Isay
something before running the script and thensay
the results after (both of which appear in the siriproxy logs as being sent to my phone), Siri doesn't say anything and continues spinning untilrequest_completed
when it says the default "would you like me to search the web for ...".Is there any way to force Siri to say the first statement and make her wait patiently until my second
say
and subsequentrequest_completed
?The text was updated successfully, but these errors were encountered: