diff --git a/semantic_parser/questions.py b/semantic_parser/questions.py index 357bc8c..e1f4739 100644 --- a/semantic_parser/questions.py +++ b/semantic_parser/questions.py @@ -5,7 +5,6 @@ result = nlu(request) for slot in result['slots']: - if slot[0] == "time_when" and slot[1] == None: print("Z jakiego okresu czasu chcesz zobaczyć powiadomienia?") while True: @@ -19,3 +18,12 @@ for slot in result['slots']: else: print("Nieprawidłowy czas, spróbuj jeszcze raz") + if slot[0] == "repo" and (slot[1] == None or slot[1] == ""): + print("Z jakiego repozytorium?") + response = input() + print("Wybrane repozytorium: {}".format(response)) + + +if result['act'] == "pomoc": + print("Mogę opisać aktywność w Twoich repozytoriach, opowiedzieć o Twoich Pull Requestach.") +