Skip to content

Instantly share code, notes, and snippets.

@maxbrenner-ai
Created November 22, 2018 04:16
Show Gist options
  • Save maxbrenner-ai/86ad24584fb58c361954e5b57759eafb to your computer and use it in GitHub Desktop.
Save maxbrenner-ai/86ad24584fb58c361954e5b57759eafb to your computer and use it in GitHub Desktop.
action examples for agent and user simulator
# Agent action examples:
{'intent': 'request', 'inform_slots': {}, 'request_slots': {'theater': 'UNK'}}
{'intent': 'inform', 'inform_slots': {'moviename': 'the witch'}, 'request_slots': {}}
{'intent': 'done', 'inform_slots': {}, 'request_slots': {}}
# User action examples:
{'intent': 'request', 'inform_slots': {'city': 'seattle'}, 'request_slots': {'theater': 'UNK', 'starttime': 'UNK'}}
{'intent': 'inform', 'inform_slots': {'moviename': 'the witch'}, 'request_slots': {}}
{'intent': 'done', 'inform_slots': {}, 'request_slots': {}}
{'intent': 'request', 'inform_slots': {}, 'request_slots': {'moviename': 'UNK'}}
{'intent': 'thanks', 'inform_slots': {}, 'request_slots': {'theater': 'UNK'}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment