2022-05-23 12:32:16 +02:00
|
|
|
import jsgf
|
2022-05-23 12:50:42 +02:00
|
|
|
from os import listdir
|
|
|
|
from os.path import isfile, join
|
2022-05-23 12:32:16 +02:00
|
|
|
|
2022-05-23 12:50:42 +02:00
|
|
|
mypath = "./gramatics/"
|
|
|
|
onlyfiles = [f for f in listdir(mypath) if isfile(join(mypath, f))]
|
|
|
|
|
|
|
|
grammars = []
|
|
|
|
|
|
|
|
for grammarFile in onlyfiles:
|
|
|
|
grammar = jsgf.parse_grammar_file(mypath + grammarFile)
|
|
|
|
grammars.append(grammar)
|
2022-05-23 12:32:16 +02:00
|
|
|
|
|
|
|
def get_dialog_act(rule):
|
|
|
|
slots = []
|
|
|
|
get_slots(rule.expansion, slots)
|
|
|
|
return {'act': rule.grammar.name, 'slots': slots}
|
|
|
|
|
|
|
|
def get_slots(expansion, slots):
|
|
|
|
if expansion.tag != '':
|
|
|
|
slots.append((expansion.tag, expansion.current_match))
|
|
|
|
return
|
|
|
|
|
|
|
|
for child in expansion.children:
|
|
|
|
get_slots(child, slots)
|
|
|
|
|
|
|
|
if not expansion.children and isinstance(expansion, jsgf.NamedRuleRef):
|
|
|
|
get_slots(expansion.referenced_rule.expansion, slots)
|
|
|
|
|
|
|
|
def nlu(utterance):
|
2022-05-23 12:50:42 +02:00
|
|
|
matched = None
|
|
|
|
for grammar in grammars:
|
|
|
|
matched = grammar.find_matching_rules(utterance)
|
|
|
|
if matched:
|
|
|
|
break
|
2022-05-23 12:32:16 +02:00
|
|
|
|
|
|
|
if matched:
|
|
|
|
return get_dialog_act(matched[0])
|
|
|
|
else:
|
|
|
|
return {'act': 'null', 'slots': []}
|
|
|
|
|
|
|
|
|
|
|
|
#result = nlu('jakie są dostępne funkcje')
|
|
|
|
#result = nlu('w czym możesz mi pomóc')
|
|
|
|
|
2022-05-23 12:50:42 +02:00
|
|
|
#result = nlu('jakie są nowe pull requesty')
|
2022-05-23 12:32:16 +02:00
|
|
|
#result = nlu('ile jest nowych pull requestów')
|
2022-05-23 12:50:42 +02:00
|
|
|
|
2022-05-24 00:15:15 +02:00
|
|
|
#result = nlu('pokaż mi nowe pow z lipca')
|
|
|
|
|
|
|
|
#result = nlu('pokaż mi nowe issues z dwóch dni w Zajęcia AI')
|
|
|
|
|
|
|
|
#esult = nlu('cześć')
|
|
|
|
|
|
|
|
#result = nlu('pokaż mi testy od lutego w Zajęcia AI')
|
|
|
|
result = nlu('wyświetl mi test w sierpniu w Projekt - sklep')
|
2022-05-23 19:11:24 +02:00
|
|
|
|
2022-05-23 12:32:16 +02:00
|
|
|
print(result)
|