added repo and help response
This commit is contained in:
parent
64e7b66325
commit
3f02c41b1f
@ -5,7 +5,6 @@ result = nlu(request)
|
|||||||
|
|
||||||
for slot in result['slots']:
|
for slot in result['slots']:
|
||||||
|
|
||||||
|
|
||||||
if slot[0] == "time_when" and slot[1] == None:
|
if slot[0] == "time_when" and slot[1] == None:
|
||||||
print("Z jakiego okresu czasu chcesz zobaczyć powiadomienia?")
|
print("Z jakiego okresu czasu chcesz zobaczyć powiadomienia?")
|
||||||
while True:
|
while True:
|
||||||
@ -19,3 +18,12 @@ for slot in result['slots']:
|
|||||||
else:
|
else:
|
||||||
print("Nieprawidłowy czas, spróbuj jeszcze raz")
|
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.")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user