2021-07-30 14:10:35 +02:00
|
|
|
import json
|
|
|
|
|
2021-07-27 23:10:01 +02:00
|
|
|
from adapt.engine import DomainIntentDeterminationEngine
|
2021-07-29 20:16:22 +02:00
|
|
|
from padatious import IntentContainer
|
2021-07-27 23:10:01 +02:00
|
|
|
|
2021-07-30 12:31:59 +02:00
|
|
|
from jarvis.utils import utils
|
|
|
|
|
2021-07-29 20:16:22 +02:00
|
|
|
adapt_engine = DomainIntentDeterminationEngine()
|
|
|
|
padatious_intents_container = IntentContainer('intent_cache')
|
2021-07-27 23:10:01 +02:00
|
|
|
|
2021-07-29 14:57:55 +02:00
|
|
|
intents_handlers_adapt = dict()
|
|
|
|
intents_handlers_padatious = dict()
|
2021-07-28 19:31:47 +02:00
|
|
|
|
2021-07-27 23:10:01 +02:00
|
|
|
|
2021-07-29 20:16:22 +02:00
|
|
|
def register_entity_adapt(entity_value, entity_type, domain):
|
|
|
|
adapt_engine.register_entity(entity_value=entity_value, entity_type=entity_type, domain=domain)
|
2021-07-28 19:31:47 +02:00
|
|
|
# print("[Adapt]: Added entity with type " + entity_type + " for " + domain)
|
2021-07-27 23:10:01 +02:00
|
|
|
|
|
|
|
|
2021-07-29 20:16:22 +02:00
|
|
|
def register_regex_adapt(regex, domain):
|
|
|
|
adapt_engine.register_regex_entity(regex, domain)
|
2021-07-28 19:31:47 +02:00
|
|
|
# print("[Adapt]: Added new regex for " + domain)
|
2021-07-27 23:10:01 +02:00
|
|
|
|
|
|
|
|
2021-07-29 20:16:22 +02:00
|
|
|
def register_intent_adapt(intent, domain):
|
|
|
|
adapt_engine.register_intent_parser(intent, domain=domain)
|
|
|
|
print("[Adapt]: Registered new intent " + intent.name + " for skill " + domain + ".")
|
|
|
|
|
|
|
|
|
|
|
|
def register_intent_padatious(intent_name, list_of_intent_examples):
|
|
|
|
padatious_intents_container.add_intent(intent_name, list_of_intent_examples)
|
|
|
|
print("[Padatious]: Registered new intent " + intent_name + " with " + str(
|
|
|
|
len(list_of_intent_examples)) + " examples.")
|
|
|
|
|
|
|
|
|
|
|
|
def train_padatious():
|
|
|
|
padatious_intents_container.train()
|
2021-07-27 23:10:01 +02:00
|
|
|
|
|
|
|
|
2021-07-30 14:10:35 +02:00
|
|
|
def load_all_skills():
|
2021-07-29 14:57:55 +02:00
|
|
|
for handler in intents_handlers_adapt:
|
|
|
|
function_handler = intents_handlers_adapt.get(handler)
|
2021-07-29 20:16:22 +02:00
|
|
|
intent_builder = getattr(function_handler[0], "_data", [])[0]
|
2021-07-28 19:31:47 +02:00
|
|
|
skill_name = function_handler[1]
|
2021-07-29 20:16:22 +02:00
|
|
|
register_intent_adapt(intent_builder.build(), domain=skill_name)
|
2021-07-28 19:31:47 +02:00
|
|
|
|
2021-07-29 14:57:55 +02:00
|
|
|
for handler in intents_handlers_padatious:
|
2021-07-29 20:16:22 +02:00
|
|
|
function_handler = intents_handlers_padatious.get(handler)
|
|
|
|
intent_data_examples = function_handler[1]
|
|
|
|
register_intent_padatious(handler, intent_data_examples)
|
2021-07-29 14:57:55 +02:00
|
|
|
|
2021-07-28 19:31:47 +02:00
|
|
|
|
2021-07-29 20:16:22 +02:00
|
|
|
def handle(intent_name, data):
|
2021-07-30 12:31:59 +02:00
|
|
|
module_path_str = None
|
|
|
|
handler_method_name = None
|
|
|
|
|
2021-07-29 14:57:55 +02:00
|
|
|
if intent_name in intents_handlers_adapt:
|
2021-07-30 12:31:59 +02:00
|
|
|
# something like handler_play_song_spotify (used to call the handler method from the skill imported below)
|
|
|
|
handler_method_name = intents_handlers_adapt.get(intent_name)[2]
|
2021-07-29 20:16:22 +02:00
|
|
|
|
2021-07-30 12:31:59 +02:00
|
|
|
# something like jarvis.skill.entertainment.spotify (used to import the create_skill method to create a new object)
|
|
|
|
module_path_str = intents_handlers_adapt.get(intent_name)[3]
|
2021-07-29 20:16:22 +02:00
|
|
|
if intent_name in intents_handlers_padatious:
|
2021-07-30 12:31:59 +02:00
|
|
|
# something like handler_play_song_spotify (used to call the handler method from the skill imported below)
|
|
|
|
handler_method_name = intents_handlers_padatious.get(intent_name)[0]
|
|
|
|
|
|
|
|
# something like jarvis.skill.entertainment.spotify (used to import the create_skill method to create a new object)
|
|
|
|
module_path_str = intents_handlers_padatious.get(intent_name)[2]
|
|
|
|
|
|
|
|
if module_path_str is not None and handler_method_name is not None:
|
|
|
|
# import the create_skill method from the skill using the skill module path
|
|
|
|
create_skill_method = utils.import_method_from_string(module_path_str, "create_skill")
|
|
|
|
|
|
|
|
# create a new object of the right skill for the utterance
|
|
|
|
skill = create_skill_method()
|
|
|
|
|
|
|
|
# import and call the handler method from the skill
|
|
|
|
getattr(skill, handler_method_name)(data=data)
|
2021-07-28 19:31:47 +02:00
|
|
|
|
|
|
|
|
2021-07-27 23:10:01 +02:00
|
|
|
def recognise(sentence):
|
2021-07-29 12:35:07 +02:00
|
|
|
sentence = sentence.lower()
|
|
|
|
print(sentence)
|
2021-07-28 19:31:47 +02:00
|
|
|
|
2021-07-29 20:16:22 +02:00
|
|
|
if len(intents_handlers_adapt) > 0:
|
|
|
|
try:
|
|
|
|
best_intents = adapt_engine.determine_intent(sentence, 100)
|
|
|
|
best_intent = next(best_intents)
|
|
|
|
|
2021-07-30 12:31:59 +02:00
|
|
|
# print(best_intent) # DEBUG
|
2021-07-29 20:16:22 +02:00
|
|
|
|
2021-07-30 12:31:59 +02:00
|
|
|
handle(best_intent['intent_type'], data={'utterance': sentence})
|
2021-07-30 14:10:35 +02:00
|
|
|
|
|
|
|
return best_intent
|
|
|
|
|
2021-07-29 20:16:22 +02:00
|
|
|
except StopIteration as e:
|
2021-07-30 12:31:59 +02:00
|
|
|
pass
|
|
|
|
# print("No match... (Adapt)")
|
2021-07-29 12:35:07 +02:00
|
|
|
|
2021-07-29 20:16:22 +02:00
|
|
|
if len(intents_handlers_padatious) > 0:
|
|
|
|
result = padatious_intents_container.calc_intent(sentence)
|
|
|
|
# print(result) # DEBUG
|
2021-07-29 23:29:02 +02:00
|
|
|
# print(padatious_intents_container.calc_intents(sentence)) # DEBUG
|
2021-07-29 14:08:36 +02:00
|
|
|
|
2021-07-29 20:16:22 +02:00
|
|
|
if result.conf >= 0.2:
|
2021-07-29 23:02:43 +02:00
|
|
|
data = dict()
|
|
|
|
if isinstance(result.sent, list):
|
|
|
|
data['utterance'] = " ".join(
|
|
|
|
result.sent) # add the sentence (utterance) to the data given to the intent handler
|
|
|
|
else:
|
|
|
|
data['utterance'] = result.sent
|
|
|
|
data.update(result.matches) # adding the matches from padatious to the data
|
|
|
|
handle(result.name, data)
|
2021-07-30 14:10:35 +02:00
|
|
|
|
|
|
|
return json.dumps(str(result))
|
|
|
|
|
2021-07-29 20:16:22 +02:00
|
|
|
else:
|
2021-07-30 12:31:59 +02:00
|
|
|
pass
|
|
|
|
# print("No match... (Padatious)")
|
|
|
|
print()
|