Skip to content

Commit

Permalink
Extend default timeout params for Mark2 compat.
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Oct 10, 2023
1 parent 038a961 commit 4057cda
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions neon_minerva/integration/user_utterance.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ def __init__(self, prompts: List[str], lang: str = "en-us",
self._tts = tts
# TODO: Handle prompt metadata for longer timeouts
self._prompts = prompts
self._stt_timeout = 60
self._intent_timeout = 30
self._speak_timeout = 60
self._stt_timeout = 60 # Time to transcribe + audio parsers
self._intent_timeout = 60 # Time to match AND handle intent
self._speak_timeout = 60 # Time after intent handling for TTS playback

self._results = list()
self._audio_output_done = Event()
Expand Down

0 comments on commit 4057cda

Please sign in to comment.