15 lines
494 B
Python
15 lines
494 B
Python
|
|
|
|
from collections import namedtuple
|
|
|
|
|
|
# Intent match response tuple containing
|
|
# intent_service: Name of the service that matched the intent
|
|
# intent_type: intent name (used to call intent handler over the message bus)
|
|
# intent_data: data provided by the intent match
|
|
# skill_id: the skill this handler belongs to
|
|
IntentMatch = namedtuple('IntentMatch',
|
|
['intent_service', 'intent_type',
|
|
'intent_data', 'skill_id']
|
|
)
|