Skip to content

Commit

Permalink
adjust timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl committed Dec 18, 2024
1 parent 0d61ec6 commit c9aae82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ovos_workshop/skills/game_skill.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def calc_intent(self, utterance: str, lang: str) -> Optional[Dict[str, str]]:
response = self.bus.wait_for_response(Message("intent.service.intent.get",
{"utterance": utterance, "lang": lang}),
"intent.service.intent.reply",
timeout=0.5)
timeout=1.0)
if not response:
return None
return response.data["intent"]
Expand Down

0 comments on commit c9aae82

Please sign in to comment.