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
def _convert_deny_to_inquire(
self, user_utterance: UserUtterance
) -> List[DialogueAct]:
"""Converts deny intent to inquire intent.
Args:
user_utterance: User utterance.
Returns:
A list of dialogue acts.
"""
# TODO: It is unclear the purpose of this function. It should be
# removed or refactored.
deny_dact = self.intents_checker.check_basic_intent(
user_utterance, UserIntents.DENY
)
if deny_dact:
deny_dact[0].intent = UserIntents.INQUIRE
return deny_dact
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: