From 72842e3fbeaa29fcf1feb3449a2e64c9d22e3043 Mon Sep 17 00:00:00 2001 From: "Andrii.Hura" <54397922+AndriiHura@users.noreply.github.com> Date: Mon, 24 Jan 2022 10:22:57 +0200 Subject: [PATCH 01/94] Fix requirements.txt (#84) --- common/dialogflow_framework/requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/dialogflow_framework/requirements.txt b/common/dialogflow_framework/requirements.txt index 76cad0be49..d8ea67d718 100644 --- a/common/dialogflow_framework/requirements.txt +++ b/common/dialogflow_framework/requirements.txt @@ -5,6 +5,6 @@ gunicorn==19.9.0 healthcheck==1.3.3 # dialogflow framework programy==4.3 -git+https://github.com/deepmipt/dialog_flow_framework.git@3a2e3e5d99cd3090c8f72315885dc91d398f2d74 +git+https://github.com/deepmipt/dialog_flow_engine.git@3a2e3e5d99cd3090c8f72315885dc91d398f2d74 # test -requests==2.22.0 \ No newline at end of file +requests==2.22.0 From a67e15c74ff9833ce8881f17a8a22beb1ea73ade Mon Sep 17 00:00:00 2001 From: mtalimanchuk Date: Fri, 18 Feb 2022 14:38:30 +0300 Subject: [PATCH 02/94] fix itsdangerous requirements --- annotators/combined_classification/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/annotators/combined_classification/requirements.txt b/annotators/combined_classification/requirements.txt index ad0ebdb66b..58df814a19 100644 --- a/annotators/combined_classification/requirements.txt +++ b/annotators/combined_classification/requirements.txt @@ -1,10 +1,10 @@ gunicorn==19.9.0 sentry-sdk[flask]==0.14.1 flask==1.1.1 +itsdangerous==2.0.1 requests==2.22.0 uvicorn==0.11.7 prometheus-client==0.7.1 filelock==3.0.12 torch==1.5.1 transformers==4.6.0 - From 0f8ef0e4b227dc48578dfced719bfb673a624280 Mon Sep 17 00:00:00 2001 From: mtalimanchuk Date: Fri, 18 Feb 2022 15:29:57 +0300 Subject: [PATCH 03/94] pin itsdangerous requirements for all flask==1.1.1 servers --- annotators/BadlistedWordsDetector/requirements.txt | 1 + annotators/ConversationEvaluator/requirements.txt | 1 + annotators/NER/requirements.txt | 1 + annotators/SentRewrite/requirements.txt | 1 + annotators/SentSeg/requirements.txt | 1 + annotators/asr/requirements.txt | 1 + annotators/dialog_breakdown/requirements.txt | 1 + annotators/entity_detection/requirements.txt | 1 + annotators/entity_linking/requirements.txt | 1 + annotators/entity_storer/requirements.txt | 1 + annotators/fact_random/requirements.txt | 1 + annotators/fact_retrieval/requirements.txt | 1 + annotators/hypothesis_scorer/requirements.txt | 1 + annotators/kbqa/requirements.txt | 1 + annotators/midas_classification/requirements.txt | 1 + annotators/news_api/requirements.txt | 1 + annotators/spacy_nounphrases/requirements.txt | 1 + annotators/spelling_preprocessing/requirements.txt | 1 + annotators/topic_recommendation/requirements.txt | 1 + annotators/user_persona_extractor/requirements.txt | 1 + annotators/wiki_parser/requirements.txt | 1 + common/dff/requirements.txt | 1 + common/dialogflow_framework/requirements.txt | 1 + .../convers_evaluation_based_selector/requirements.txt | 1 + response_selectors/rule_based_response_selector/requirements.txt | 1 + services/knowledge_grounding/requirements.txt | 1 + services/masked_lm/requirements.txt | 1 + services/question_generator/requirements.txt | 1 + services/text_qa/requirements.txt | 1 + services/wiki_facts/requirements.txt | 1 + services/wikidata_dial_service/requirements.txt | 1 + skill_selectors/rule_based_selector/requirements.txt | 1 + skills/christmas_new_year_skill/requirements.txt | 1 + skills/convert_reddit/requirements.txt | 1 + skills/convert_reddit_with_personality/requirements.txt | 1 + skills/dummy_skill_dialog/requirements.txt | 1 + skills/eliza/requirements.txt | 1 + skills/emotion_skill/requirements.txt | 1 + skills/factoid_qa/requirements.txt | 1 + skills/faq_skill_deepy/requirements.txt | 1 + skills/game_cooperative_skill/requirements.txt | 1 + skills/harvesters_maintenance_gobot_skill_deepy/requirements.txt | 1 + skills/harvesters_maintenance_skill_deepy/requirements.txt | 1 + skills/knowledge_grounding_skill/requirements.txt | 1 + skills/meta_script_skill/requirements.txt | 1 + skills/misheard_asr/requirements.txt | 1 + skills/news_api_skill/requirements.txt | 1 + skills/oscar_skill/requirements.txt | 1 + skills/personal_info_skill/requirements.txt | 1 + skills/small_talk_skill/requirements.txt | 1 + skills/superbowl_skill/requirements.txt | 1 + skills/topicalchat_convert_retrieval/requirements.txt | 1 + skills/topicalchat_tfidf_retrieval/requirements.txt | 1 + skills/valentines_day_skill/requirements.txt | 1 + skills/wikidata_dial_skill/requirements.txt | 1 + 55 files changed, 55 insertions(+) diff --git a/annotators/BadlistedWordsDetector/requirements.txt b/annotators/BadlistedWordsDetector/requirements.txt index 98bc0bcffa..c721dc360d 100644 --- a/annotators/BadlistedWordsDetector/requirements.txt +++ b/annotators/BadlistedWordsDetector/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 sentry-sdk==0.12.3 diff --git a/annotators/ConversationEvaluator/requirements.txt b/annotators/ConversationEvaluator/requirements.txt index af89d65f00..36e22149a4 100644 --- a/annotators/ConversationEvaluator/requirements.txt +++ b/annotators/ConversationEvaluator/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==20.0.4 requests==2.23.0 sentry-sdk==0.14.2 diff --git a/annotators/NER/requirements.txt b/annotators/NER/requirements.txt index d1d94f1f46..8f0d4f7dec 100644 --- a/annotators/NER/requirements.txt +++ b/annotators/NER/requirements.txt @@ -1,6 +1,7 @@ tensorflow==1.14.0 tensorflow_hub==0.4.0 Flask==1.1.1 +itsdangerous==2.0.1 nltk==3.2.5 numpy==1.15.4 gunicorn==19.9.0 diff --git a/annotators/SentRewrite/requirements.txt b/annotators/SentRewrite/requirements.txt index 07b076816e..68045d8dde 100644 --- a/annotators/SentRewrite/requirements.txt +++ b/annotators/SentRewrite/requirements.txt @@ -1,4 +1,5 @@ Flask==1.1.1 +itsdangerous==2.0.1 sentry_sdk==0.12.2 neuralcoref==4.0 spacy==2.1.0 diff --git a/annotators/SentSeg/requirements.txt b/annotators/SentSeg/requirements.txt index 6f5f15c19c..8c23aa4e02 100644 --- a/annotators/SentSeg/requirements.txt +++ b/annotators/SentSeg/requirements.txt @@ -1,6 +1,7 @@ tensorflow==1.14.0 tensorflow_hub==0.4.0 Flask==1.1.1 +itsdangerous==2.0.1 nltk==3.2.5 numpy==1.15.4 gunicorn==19.9.0 diff --git a/annotators/asr/requirements.txt b/annotators/asr/requirements.txt index d76d2e4d0f..a9fa2e2fe0 100644 --- a/annotators/asr/requirements.txt +++ b/annotators/asr/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==20.0.4 sentry-sdk==0.13.4 requests==2.22.0 diff --git a/annotators/dialog_breakdown/requirements.txt b/annotators/dialog_breakdown/requirements.txt index b9cdcd4c01..8b12cda3a5 100644 --- a/annotators/dialog_breakdown/requirements.txt +++ b/annotators/dialog_breakdown/requirements.txt @@ -1,5 +1,6 @@ gunicorn==19.9.0 sentry-sdk[flask]==0.14.1 flask==1.1.1 +itsdangerous==2.0.1 requests==2.22.0 diff --git a/annotators/entity_detection/requirements.txt b/annotators/entity_detection/requirements.txt index a352f8e807..4afa98cf95 100644 --- a/annotators/entity_detection/requirements.txt +++ b/annotators/entity_detection/requirements.txt @@ -1,4 +1,5 @@ Flask==1.1.1 +itsdangerous==2.0.1 nltk==3.2.5 numpy==1.15.4 gunicorn==19.9.0 diff --git a/annotators/entity_linking/requirements.txt b/annotators/entity_linking/requirements.txt index aec04ff9c7..5d35637714 100644 --- a/annotators/entity_linking/requirements.txt +++ b/annotators/entity_linking/requirements.txt @@ -1,5 +1,6 @@ sentry-sdk[flask]==0.14.1 flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 inflect==5.3.0 diff --git a/annotators/entity_storer/requirements.txt b/annotators/entity_storer/requirements.txt index e8367645b4..9ff39c095c 100644 --- a/annotators/entity_storer/requirements.txt +++ b/annotators/entity_storer/requirements.txt @@ -1,5 +1,6 @@ sentry_sdk[flask]==0.14.3 flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 healthcheck==1.3.3 six==1.15.0 diff --git a/annotators/fact_random/requirements.txt b/annotators/fact_random/requirements.txt index 44d5db2f92..62da2eb787 100644 --- a/annotators/fact_random/requirements.txt +++ b/annotators/fact_random/requirements.txt @@ -1,4 +1,5 @@ sentry-sdk[flask]==0.14.1 flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 diff --git a/annotators/fact_retrieval/requirements.txt b/annotators/fact_retrieval/requirements.txt index 44d5db2f92..62da2eb787 100644 --- a/annotators/fact_retrieval/requirements.txt +++ b/annotators/fact_retrieval/requirements.txt @@ -1,4 +1,5 @@ sentry-sdk[flask]==0.14.1 flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 diff --git a/annotators/hypothesis_scorer/requirements.txt b/annotators/hypothesis_scorer/requirements.txt index 0655849b53..c21ca94caf 100644 --- a/annotators/hypothesis_scorer/requirements.txt +++ b/annotators/hypothesis_scorer/requirements.txt @@ -1,4 +1,5 @@ Flask==1.1.1 +itsdangerous==2.0.1 simpletransformers==0.60.6 sentry_sdk==0.13.3 tensorflow_text==0.1.0 diff --git a/annotators/kbqa/requirements.txt b/annotators/kbqa/requirements.txt index fa12038aae..b6abc0a574 100644 --- a/annotators/kbqa/requirements.txt +++ b/annotators/kbqa/requirements.txt @@ -1,5 +1,6 @@ sentry-sdk[flask]==0.14.1 flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 click==7.1.2 \ No newline at end of file diff --git a/annotators/midas_classification/requirements.txt b/annotators/midas_classification/requirements.txt index f78deb20c0..8efa0c3c7d 100644 --- a/annotators/midas_classification/requirements.txt +++ b/annotators/midas_classification/requirements.txt @@ -1,4 +1,5 @@ Flask==1.1.1 +itsdangerous==2.0.1 sentry-sdk==0.14.2 requests==2.23.0 gunicorn==19.9.0 diff --git a/annotators/news_api/requirements.txt b/annotators/news_api/requirements.txt index e79ec44c69..0054f285a8 100644 --- a/annotators/news_api/requirements.txt +++ b/annotators/news_api/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 sentry-sdk==0.14.3 diff --git a/annotators/spacy_nounphrases/requirements.txt b/annotators/spacy_nounphrases/requirements.txt index 69d3545150..e63f6d92d8 100644 --- a/annotators/spacy_nounphrases/requirements.txt +++ b/annotators/spacy_nounphrases/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==20.0.4 sentry-sdk==0.13.4 requests==2.22.0 diff --git a/annotators/spelling_preprocessing/requirements.txt b/annotators/spelling_preprocessing/requirements.txt index 3967ec1e35..de6fd4f916 100644 --- a/annotators/spelling_preprocessing/requirements.txt +++ b/annotators/spelling_preprocessing/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 sentry-sdk==0.14.2 diff --git a/annotators/topic_recommendation/requirements.txt b/annotators/topic_recommendation/requirements.txt index ddb192c4e1..b794a32ba8 100644 --- a/annotators/topic_recommendation/requirements.txt +++ b/annotators/topic_recommendation/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 sentry-sdk==0.14.2 diff --git a/annotators/user_persona_extractor/requirements.txt b/annotators/user_persona_extractor/requirements.txt index 1643bebace..e1235d2956 100644 --- a/annotators/user_persona_extractor/requirements.txt +++ b/annotators/user_persona_extractor/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 sentry-sdk==0.12.3 \ No newline at end of file diff --git a/annotators/wiki_parser/requirements.txt b/annotators/wiki_parser/requirements.txt index 44d5db2f92..62da2eb787 100644 --- a/annotators/wiki_parser/requirements.txt +++ b/annotators/wiki_parser/requirements.txt @@ -1,4 +1,5 @@ sentry-sdk[flask]==0.14.1 flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 diff --git a/common/dff/requirements.txt b/common/dff/requirements.txt index 0b6becf41b..8e68a3d907 100644 --- a/common/dff/requirements.txt +++ b/common/dff/requirements.txt @@ -2,6 +2,7 @@ six sentry_sdk[flask]==0.14.3 flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 healthcheck==1.3.3 df_engine>=0.8.1 diff --git a/common/dialogflow_framework/requirements.txt b/common/dialogflow_framework/requirements.txt index d8ea67d718..e35cbb6e97 100644 --- a/common/dialogflow_framework/requirements.txt +++ b/common/dialogflow_framework/requirements.txt @@ -1,6 +1,7 @@ # base sentry_sdk[flask]==0.14.3 flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 healthcheck==1.3.3 # dialogflow framework diff --git a/response_selectors/convers_evaluation_based_selector/requirements.txt b/response_selectors/convers_evaluation_based_selector/requirements.txt index 3d8371430a..2674c35734 100644 --- a/response_selectors/convers_evaluation_based_selector/requirements.txt +++ b/response_selectors/convers_evaluation_based_selector/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 numpy==1.17.2 diff --git a/response_selectors/rule_based_response_selector/requirements.txt b/response_selectors/rule_based_response_selector/requirements.txt index 2a9961a45d..ddde487993 100644 --- a/response_selectors/rule_based_response_selector/requirements.txt +++ b/response_selectors/rule_based_response_selector/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 numpy==1.17.2 diff --git a/services/knowledge_grounding/requirements.txt b/services/knowledge_grounding/requirements.txt index 34be237444..ffeb8967ee 100644 --- a/services/knowledge_grounding/requirements.txt +++ b/services/knowledge_grounding/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 sentry-sdk[flask]==0.14.1 diff --git a/services/masked_lm/requirements.txt b/services/masked_lm/requirements.txt index 031ab6d78a..ac8565e4b0 100644 --- a/services/masked_lm/requirements.txt +++ b/services/masked_lm/requirements.txt @@ -1,6 +1,7 @@ transformers==4.0.1 sentencepiece==0.1.94 flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 sentry-sdk[flask]==0.14.1 diff --git a/services/question_generator/requirements.txt b/services/question_generator/requirements.txt index 414f09aaa8..c0a3a2416c 100644 --- a/services/question_generator/requirements.txt +++ b/services/question_generator/requirements.txt @@ -1,6 +1,7 @@ transformers==4.0.1 sentencepiece==0.1.94 flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 sentry-sdk[flask]==0.14.1 diff --git a/services/text_qa/requirements.txt b/services/text_qa/requirements.txt index fa12038aae..b6abc0a574 100644 --- a/services/text_qa/requirements.txt +++ b/services/text_qa/requirements.txt @@ -1,5 +1,6 @@ sentry-sdk[flask]==0.14.1 flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 click==7.1.2 \ No newline at end of file diff --git a/services/wiki_facts/requirements.txt b/services/wiki_facts/requirements.txt index 9a85a5ef02..716ba8a59f 100644 --- a/services/wiki_facts/requirements.txt +++ b/services/wiki_facts/requirements.txt @@ -1,5 +1,6 @@ sentry-sdk[flask]==0.14.1 flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 inflect==5.3.0 diff --git a/services/wikidata_dial_service/requirements.txt b/services/wikidata_dial_service/requirements.txt index e47cca921a..96f5be738d 100644 --- a/services/wikidata_dial_service/requirements.txt +++ b/services/wikidata_dial_service/requirements.txt @@ -1,5 +1,6 @@ sentry-sdk[flask]==0.14.1 flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 torch==1.7.0 diff --git a/skill_selectors/rule_based_selector/requirements.txt b/skill_selectors/rule_based_selector/requirements.txt index 04ecb5e397..5dc2090a2e 100644 --- a/skill_selectors/rule_based_selector/requirements.txt +++ b/skill_selectors/rule_based_selector/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 sentry-sdk==0.12.3 diff --git a/skills/christmas_new_year_skill/requirements.txt b/skills/christmas_new_year_skill/requirements.txt index 2a9961a45d..ddde487993 100644 --- a/skills/christmas_new_year_skill/requirements.txt +++ b/skills/christmas_new_year_skill/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 numpy==1.17.2 diff --git a/skills/convert_reddit/requirements.txt b/skills/convert_reddit/requirements.txt index c95a770377..82070f140d 100644 --- a/skills/convert_reddit/requirements.txt +++ b/skills/convert_reddit/requirements.txt @@ -7,6 +7,7 @@ tensorflow-hub==0.7.0 # web gunicorn==19.9.0 flask==1.1.1 +itsdangerous==2.0.1 flasgger==0.9.4.dev0 # external diff --git a/skills/convert_reddit_with_personality/requirements.txt b/skills/convert_reddit_with_personality/requirements.txt index 7e0ec116bd..6e507df58a 100644 --- a/skills/convert_reddit_with_personality/requirements.txt +++ b/skills/convert_reddit_with_personality/requirements.txt @@ -7,6 +7,7 @@ tensorflow-hub==0.7.0 # web gunicorn==19.9.0 flask==1.1.1 +itsdangerous==2.0.1 flasgger==0.9.4.dev0 # external diff --git a/skills/dummy_skill_dialog/requirements.txt b/skills/dummy_skill_dialog/requirements.txt index 1a5995232e..e40b94b9c9 100644 --- a/skills/dummy_skill_dialog/requirements.txt +++ b/skills/dummy_skill_dialog/requirements.txt @@ -9,6 +9,7 @@ scikit-learn==0.21.3 gunicorn==19.9.0 requests==2.22.0 flask==1.1.1 +itsdangerous==2.0.1 flasgger==0.9.4.dev0 # external diff --git a/skills/eliza/requirements.txt b/skills/eliza/requirements.txt index 9d0249aa89..18617ab62a 100644 --- a/skills/eliza/requirements.txt +++ b/skills/eliza/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 sentry-sdk==0.13.3 diff --git a/skills/emotion_skill/requirements.txt b/skills/emotion_skill/requirements.txt index 875641ab9f..175d19a49c 100644 --- a/skills/emotion_skill/requirements.txt +++ b/skills/emotion_skill/requirements.txt @@ -1,5 +1,6 @@ sentry_sdk==0.14.3 flask==1.1.1 +itsdangerous==2.0.1 numpy==1.17.3 requests==2.22.0 gunicorn==19.9.0 diff --git a/skills/factoid_qa/requirements.txt b/skills/factoid_qa/requirements.txt index 8d1d3ed4a4..2d684fed95 100644 --- a/skills/factoid_qa/requirements.txt +++ b/skills/factoid_qa/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 numpy==1.17.2 diff --git a/skills/faq_skill_deepy/requirements.txt b/skills/faq_skill_deepy/requirements.txt index 26be184b7e..1a49dbfd83 100644 --- a/skills/faq_skill_deepy/requirements.txt +++ b/skills/faq_skill_deepy/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 numpy==1.17.2 diff --git a/skills/game_cooperative_skill/requirements.txt b/skills/game_cooperative_skill/requirements.txt index 8416133778..338eb947e9 100644 --- a/skills/game_cooperative_skill/requirements.txt +++ b/skills/game_cooperative_skill/requirements.txt @@ -1,5 +1,6 @@ sentry_sdk==0.14.3 flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 healthcheck==1.3.3 diff --git a/skills/harvesters_maintenance_gobot_skill_deepy/requirements.txt b/skills/harvesters_maintenance_gobot_skill_deepy/requirements.txt index 921b93e8e5..d38731816d 100644 --- a/skills/harvesters_maintenance_gobot_skill_deepy/requirements.txt +++ b/skills/harvesters_maintenance_gobot_skill_deepy/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 numpy==1.17.2 diff --git a/skills/harvesters_maintenance_skill_deepy/requirements.txt b/skills/harvesters_maintenance_skill_deepy/requirements.txt index 2a9961a45d..ddde487993 100644 --- a/skills/harvesters_maintenance_skill_deepy/requirements.txt +++ b/skills/harvesters_maintenance_skill_deepy/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 numpy==1.17.2 diff --git a/skills/knowledge_grounding_skill/requirements.txt b/skills/knowledge_grounding_skill/requirements.txt index 369b89b6ce..fa4d5fc380 100644 --- a/skills/knowledge_grounding_skill/requirements.txt +++ b/skills/knowledge_grounding_skill/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 nltk==3.2.5 numpy==1.17.2 diff --git a/skills/meta_script_skill/requirements.txt b/skills/meta_script_skill/requirements.txt index 4bc6ff254a..0d6853b19e 100644 --- a/skills/meta_script_skill/requirements.txt +++ b/skills/meta_script_skill/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 numpy==1.17.2 diff --git a/skills/misheard_asr/requirements.txt b/skills/misheard_asr/requirements.txt index e56cfca962..2930832924 100644 --- a/skills/misheard_asr/requirements.txt +++ b/skills/misheard_asr/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==20.0.4 sentry-sdk==0.13.4 requests==2.22.0 diff --git a/skills/news_api_skill/requirements.txt b/skills/news_api_skill/requirements.txt index e79ec44c69..0054f285a8 100644 --- a/skills/news_api_skill/requirements.txt +++ b/skills/news_api_skill/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 sentry-sdk==0.14.3 diff --git a/skills/oscar_skill/requirements.txt b/skills/oscar_skill/requirements.txt index 2a9961a45d..ddde487993 100644 --- a/skills/oscar_skill/requirements.txt +++ b/skills/oscar_skill/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 numpy==1.17.2 diff --git a/skills/personal_info_skill/requirements.txt b/skills/personal_info_skill/requirements.txt index 2a9961a45d..ddde487993 100644 --- a/skills/personal_info_skill/requirements.txt +++ b/skills/personal_info_skill/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 numpy==1.17.2 diff --git a/skills/small_talk_skill/requirements.txt b/skills/small_talk_skill/requirements.txt index 4a1a86838d..652a5f582a 100644 --- a/skills/small_talk_skill/requirements.txt +++ b/skills/small_talk_skill/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 numpy==1.17.2 diff --git a/skills/superbowl_skill/requirements.txt b/skills/superbowl_skill/requirements.txt index 2a9961a45d..ddde487993 100644 --- a/skills/superbowl_skill/requirements.txt +++ b/skills/superbowl_skill/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 numpy==1.17.2 diff --git a/skills/topicalchat_convert_retrieval/requirements.txt b/skills/topicalchat_convert_retrieval/requirements.txt index f2ead45062..769f1b03b6 100644 --- a/skills/topicalchat_convert_retrieval/requirements.txt +++ b/skills/topicalchat_convert_retrieval/requirements.txt @@ -7,6 +7,7 @@ tensorflow-hub==0.7.0 # web gunicorn==19.9.0 flask==1.1.1 +itsdangerous==2.0.1 flasgger==0.9.4.dev0 # external diff --git a/skills/topicalchat_tfidf_retrieval/requirements.txt b/skills/topicalchat_tfidf_retrieval/requirements.txt index c7af341c24..4916b04e4f 100644 --- a/skills/topicalchat_tfidf_retrieval/requirements.txt +++ b/skills/topicalchat_tfidf_retrieval/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 numpy==1.17.2 diff --git a/skills/valentines_day_skill/requirements.txt b/skills/valentines_day_skill/requirements.txt index 2a9961a45d..ddde487993 100644 --- a/skills/valentines_day_skill/requirements.txt +++ b/skills/valentines_day_skill/requirements.txt @@ -1,4 +1,5 @@ flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 numpy==1.17.2 diff --git a/skills/wikidata_dial_skill/requirements.txt b/skills/wikidata_dial_skill/requirements.txt index 44d5db2f92..62da2eb787 100644 --- a/skills/wikidata_dial_skill/requirements.txt +++ b/skills/wikidata_dial_skill/requirements.txt @@ -1,4 +1,5 @@ sentry-sdk[flask]==0.14.1 flask==1.1.1 +itsdangerous==2.0.1 gunicorn==19.9.0 requests==2.22.0 From 79b033aa420d98f344b79b0f5c0d35aea3728ee4 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Wed, 18 Oct 2023 16:35:59 +0300 Subject: [PATCH 04/94] Update dev.yml --- assistant_dists/dream/dev.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/assistant_dists/dream/dev.yml b/assistant_dists/dream/dev.yml index 37a460fd0d..7c083f41d2 100644 --- a/assistant_dists/dream/dev.yml +++ b/assistant_dists/dream/dev.yml @@ -157,4 +157,10 @@ services: - "./common:/src/common" ports: - 8167:8167 + dnnc-intents: + volumes: + - "./services/dnnc_intents:/src" + - "./common:/src/common" + ports: + - 8218:8218 version: "3.7" From e37ea6f844d1c0d68141a408b1c38e19e6904969 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Wed, 18 Oct 2023 16:52:36 +0300 Subject: [PATCH 05/94] Update docker-compose.override.yml --- .../dream/docker-compose.override.yml | 21 ++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/assistant_dists/dream/docker-compose.override.yml b/assistant_dists/dream/docker-compose.override.yml index 2bd665f2aa..bf00a1b57e 100644 --- a/assistant_dists/dream/docker-compose.override.yml +++ b/assistant_dists/dream/docker-compose.override.yml @@ -8,7 +8,7 @@ services: combined-classification:8087, fact-retrieval:8100, entity-detection:8103, sentence-ranker:8128, property-extraction:8136, prompt-selector:8135, openai-api-chatgpt:8145, dff-dream-persona-chatgpt-prompted-skill:8137, dff-dream-faq-prompted-skill:8170, - openai-api-chatgpt-16k:8167, summarization-annotator:8058, dialog-summarizer:8059" + openai-api-chatgpt-16k:8167, summarization-annotator:8058, dialog-summarizer:8059,dnnc-intents:8218" WAIT_HOSTS_TIMEOUT: ${WAIT_TIMEOUT:-1000} HIGH_PRIORITY_INTENTS: 1 RESTRICTION_FOR_SENSITIVE_CASE: 1 @@ -484,4 +484,23 @@ services: reservations: memory: 4G + dnnc-intents: + env_file: [ .env ] + build: + args: + SERVICE_PORT: 8218 + SERVICE_NAME: dnnc_intents + context: ./services/dnnc_intents/ + command: flask run -h 0.0.0.0 -p 8218 + environment: + - CUDA_VISIBLE_DEVICES=0 + - FLASK_APP=server + deploy: + resources: + limits: + memory: 4G + reservations: + memory: 4G + + version: '3.7' From 5df415385b8250d1cf08ca7760f5283209a47615 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Wed, 18 Oct 2023 16:53:50 +0300 Subject: [PATCH 06/94] Update gpu1.yml --- assistant_dists/dream/gpu1.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/assistant_dists/dream/gpu1.yml b/assistant_dists/dream/gpu1.yml index acef2c59f5..faf82bd50e 100644 --- a/assistant_dists/dream/gpu1.yml +++ b/assistant_dists/dream/gpu1.yml @@ -75,4 +75,10 @@ services: restart: unless-stopped volumes: - "~/.deeppavlov:/root/.deeppavlov" + dnnc-intents: + restart: unless-stopped + volumes: + - "~/.deeppavlov:/root/.deeppavlov" + environment: + - CUDA_VISIBLE_DEVICES=6 version: '3.7' From 14b459520447ca3873b14cbb700d0fc440a0f222 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Wed, 18 Oct 2023 16:55:02 +0300 Subject: [PATCH 07/94] Update proxy.yml --- assistant_dists/dream/proxy.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/assistant_dists/dream/proxy.yml b/assistant_dists/dream/proxy.yml index 754609de10..605b16f3c9 100644 --- a/assistant_dists/dream/proxy.yml +++ b/assistant_dists/dream/proxy.yml @@ -125,4 +125,12 @@ services: environment: - PROXY_PASS=proxy.deeppavlov.ai:8136 - PORT=8136 + dnnc-intents: + command: [ "nginx", "-g", "daemon off;" ] + build: + context: dp/proxy/ + dockerfile: Dockerfile + environment: + - PROXY_PASS=proxy.deeppavlov.ai:8218 + - PORT=8218 version: '3.7' From d0cf210521d5b87b8b60943ea542fca71276e0f2 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Wed, 18 Oct 2023 16:55:57 +0300 Subject: [PATCH 08/94] Update cpu.yml --- assistant_dists/dream/cpu.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/assistant_dists/dream/cpu.yml b/assistant_dists/dream/cpu.yml index d90f6d159e..a44eb13166 100644 --- a/assistant_dists/dream/cpu.yml +++ b/assistant_dists/dream/cpu.yml @@ -25,3 +25,6 @@ services: intent-catcher: environment: CUDA_VISIBLE_DEVICES: "" + dnnc-intents: + environment: + CUDA_VISIBLE_DEVICES: "" From cf53b05efb1fab6e7277833f788eb31fcae96fb5 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Wed, 18 Oct 2023 17:01:43 +0300 Subject: [PATCH 09/94] Update test.yml --- assistant_dists/dream/test.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/assistant_dists/dream/test.yml b/assistant_dists/dream/test.yml index 5035cb6254..c1666f6c31 100644 --- a/assistant_dists/dream/test.yml +++ b/assistant_dists/dream/test.yml @@ -71,4 +71,10 @@ services: property-extraction: volumes: - "~/.deeppavlov:/root/.deeppavlov" + dnnc-intents: + volumes: + - "~/.deeppavlov:/root/.deeppavlov" + - "~/.deeppavlov/cache:/root/.cache" + environment: + - CUDA_VISIBLE_DEVICES=6 version: '3.7' From 03990a93c807e89aa9d8c2e3c4a8a22c661d5c10 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Wed, 18 Oct 2023 17:17:27 +0300 Subject: [PATCH 10/94] Update pipeline_conf.json --- assistant_dists/dream/pipeline_conf.json | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/assistant_dists/dream/pipeline_conf.json b/assistant_dists/dream/pipeline_conf.json index 35825f1f75..3894ba689a 100644 --- a/assistant_dists/dream/pipeline_conf.json +++ b/assistant_dists/dream/pipeline_conf.json @@ -248,6 +248,22 @@ "service": "annotators/wiki_parser/service_configs/wiki-parser" } }, + "dnnc_intents": { + "connector": { + "protocol": "http", + "timeout": 1.0, + "url": "http://dnnc-intents:8218/model" + }, + "dialog_formatter": "state_formatters.dp_formatters:preproc_last_human_utt_dialog", + "response_formatter": "state_formatters.dp_formatters:simple_formatter_service", + "previous_services": [], + "state_manager_method": "add_annotation", + "is_enabled": true, + "source": { + "component": "components/2JUPwwo1SZzxuj4RXjI350.yml", + "service": "annotators/dnnc_intents/service_configs/dnnc-intents" + } + }, "combined_classification": { "connector": { "protocol": "http", @@ -567,4 +583,4 @@ "gpu_usage": "20 GB", "disk_usage": "20 GB" } -} \ No newline at end of file +} From 2c24f4952e4d056011b487d277cd4a90754e3bde Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Wed, 18 Oct 2023 17:20:28 +0300 Subject: [PATCH 11/94] Create 2JUPwwo1SZzxuj4RXjI350.yml --- components/2JUPwwo1SZzxuj4RXjI350.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 components/2JUPwwo1SZzxuj4RXjI350.yml diff --git a/components/2JUPwwo1SZzxuj4RXjI350.yml b/components/2JUPwwo1SZzxuj4RXjI350.yml new file mode 100644 index 0000000000..8edca2b64c --- /dev/null +++ b/components/2JUPwwo1SZzxuj4RXjI350.yml @@ -0,0 +1,25 @@ +name: dnnc_intents +display_name: DNNC Intent Classifier +component_type: null +model_type: NN-based +is_customizable: true +author: publisher@deeppavlov.ai +description: Model for DNNC intent classification from DeepPavlov +ram_usage: 1.5G +gpu_usage: 3.5G +group: annotators +connector: + protocol: http + timeout: 1.0 + url: http://dnnc-intents:8218/model +dialog_formatter: + name: state_formatters.dp_formatters:preproc_last_human_utt_dialog + skill_name: dnnc_intents +response_formatter: state_formatters.dp_formatters:simple_formatter_service +previous_services: null +required_previous_services: null +state_manager_method: add_annotation +tags: null +endpoint: model +service: annotators/dnnc_intents/components/dnnc-intents +date_created: '2023-10-16T09:45:32' From cfae7777ed52cbf5e8a9d399687bc8739f0d1204 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Wed, 18 Oct 2023 17:28:31 +0300 Subject: [PATCH 12/94] Create Readme.md --- annotators/dnnc_intents/Readme.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 annotators/dnnc_intents/Readme.md diff --git a/annotators/dnnc_intents/Readme.md b/annotators/dnnc_intents/Readme.md new file mode 100644 index 0000000000..1d5990084e --- /dev/null +++ b/annotators/dnnc_intents/Readme.md @@ -0,0 +1,2 @@ +DNNC intent classifier. +Source: https://github.com/deeppavlov/DeepPavlov/blob/master/deeppavlov/configs/classifiers/few_shot_roberta.json From 818c22080cea60dee05d22726807273acd5dd3a9 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Wed, 18 Oct 2023 17:45:28 +0300 Subject: [PATCH 13/94] Create environment.yml --- .../dnnc_intents/service_configs/dnnc-intents/environment.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 annotators/dnnc_intents/service_configs/dnnc-intents/environment.yml diff --git a/annotators/dnnc_intents/service_configs/dnnc-intents/environment.yml b/annotators/dnnc_intents/service_configs/dnnc-intents/environment.yml new file mode 100644 index 0000000000..6f847b0327 --- /dev/null +++ b/annotators/dnnc_intents/service_configs/dnnc-intents/environment.yml @@ -0,0 +1,4 @@ +SERVICE_PORT: 8218 +SERVICE_NAME: dnnc_intents +CONFIG: classifier.json +CUDA_VISIBLE_DEVICES: '0' From 059ae078452703c94b9b785266af28ca0c756183 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Wed, 18 Oct 2023 17:45:58 +0300 Subject: [PATCH 14/94] Create classifier.json --- annotators/dnnc_intents/classifier.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 annotators/dnnc_intents/classifier.json diff --git a/annotators/dnnc_intents/classifier.json b/annotators/dnnc_intents/classifier.json new file mode 100644 index 0000000000..33fbefc934 --- /dev/null +++ b/annotators/dnnc_intents/classifier.json @@ -0,0 +1 @@ +;; From aa5015666abe427b22b2d0a1a51ef6b9b02dd5ff Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Wed, 18 Oct 2023 17:55:40 +0300 Subject: [PATCH 15/94] Create service.yml --- .../service_configs/dnnc-intents/service.yml | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 annotators/dnnc_intents/service_configs/dnnc-intents/service.yml diff --git a/annotators/dnnc_intents/service_configs/dnnc-intents/service.yml b/annotators/dnnc_intents/service_configs/dnnc-intents/service.yml new file mode 100644 index 0000000000..8a77476200 --- /dev/null +++ b/annotators/dnnc_intents/service_configs/dnnc-intents/service.yml @@ -0,0 +1,41 @@ +name: dnnc-intents +endpoints: +- model +compose: + env_file: + - .env + build: + args: + SERVICE_PORT: 8218 + SERVICE_NAME: dnnc_intents + CONFIG: classifier.json + CUDA_VISIBLE_DEVICES: '0' + context: . + dockerfile: ./annotators/dnnc_intents/Dockerfile + command: gunicorn --workers=1 server:app -b 0.0.0.0:8218 --timeout 600 + environment: + - CUDA_VISIBLE_DEVICES=0 + deploy: + resources: + limits: + memory: 2G + reservations: + memory: 2G + volumes: + - ./common:/src/common + - ./annotators/dnnc_intents:/src + - ~/.deeppavlov:/root/.deeppavlov + - ~/.deeppavlov/cache:/root/.cache + ports: + - 8218:8218 +proxy: + command: + - nginx + - -g + - daemon off; + build: + context: dp/proxy/ + dockerfile: Dockerfile + environment: + - PROXY_PASS=dream.deeppavlov.ai:8218 + - PORT=8218 From ab3698ee506722e3ea238fc8b9cf2b0314a336e6 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Wed, 18 Oct 2023 17:58:41 +0300 Subject: [PATCH 16/94] Create Dockerfile --- annotators/dnnc_intents/Dockerfile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 annotators/dnnc_intents/Dockerfile diff --git a/annotators/dnnc_intents/Dockerfile b/annotators/dnnc_intents/Dockerfile new file mode 100644 index 0000000000..8b61b48e92 --- /dev/null +++ b/annotators/dnnc_intents/Dockerfile @@ -0,0 +1,20 @@ +FROM deeppavlov/deeppavlov:1.2.0-gpu + +WORKDIR /base/DeepPavlov + + +WORKDIR /src +RUN mkdir common + +COPY annotators/dnnc_intents/requirements.txt ./requirements.txt +RUN pip install -r requirements.txt + +ARG SERVICE_PORT +ENV SERVICE_PORT=$SERVICE_PORT +ARG CONFIG +ENV CONFIG=$CONFIG + +COPY annotators/dnnc_intents/ ./ +COPY common/ common/ + +CMD gunicorn --workers=1 server:app -b 0.0.0.0:${SERVICE_PORT} --timeout=1200 --preload From 48b28204d356840947b1f3a6340ea2fdafe5c4ea Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Wed, 18 Oct 2023 17:59:18 +0300 Subject: [PATCH 17/94] Create requirements.txt --- annotators/dnnc_intents/requirements.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 annotators/dnnc_intents/requirements.txt diff --git a/annotators/dnnc_intents/requirements.txt b/annotators/dnnc_intents/requirements.txt new file mode 100644 index 0000000000..b0e08d8b1e --- /dev/null +++ b/annotators/dnnc_intents/requirements.txt @@ -0,0 +1,10 @@ +gunicorn==19.9.0 +sentry-sdk[flask]==0.14.1 +itsdangerous==2.0.1 +uvicorn==0.13.0 +prometheus-client==0.13.0 +filelock==3.4.2 +transformers==4.15.0 +jinja2<=3.0.3 +Werkzeug<=2.0.3 +pytorch-crf==0.7.2 From 8c55ec348fc6819958e3080c8a8bab83cbaea3ce Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Wed, 18 Oct 2023 17:59:47 +0300 Subject: [PATCH 18/94] Create load_test.py --- annotators/dnnc_intents/load_test.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 annotators/dnnc_intents/load_test.py diff --git a/annotators/dnnc_intents/load_test.py b/annotators/dnnc_intents/load_test.py new file mode 100644 index 0000000000..1c56d436dd --- /dev/null +++ b/annotators/dnnc_intents/load_test.py @@ -0,0 +1,22 @@ +from locust import HttpUser, task + +batch = [ + {"sentences": ["i love you", "i hate you", "i dont care"]}, + {"sentences": ["you son of the bitch", "yes"]}, + {"sentences": ["why you are so dumb"]}, + {"sentences": ["let's talk about movies"]}, + {"sentences": ["let's talk about games"]}, + {"sentences": ["let's switch topic"]}, +] + + +class QuickstartUser(HttpUser): + @task + def hello_world(self): + ans = self.client.post("", json=batch[self.batch_index % len(batch)]) + self.batch_index += 1 + if ans.status_code != 200: + print(ans.status_code, ans.text) + + def on_start(self): + self.batch_index = From cd5dd6b19f82f4a0f97b91c8bbe5bb95dd76aaa3 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Wed, 18 Oct 2023 18:04:49 +0300 Subject: [PATCH 19/94] Create requirements_load_test.txt --- annotators/dnnc_intents/requirements_load_test.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 annotators/dnnc_intents/requirements_load_test.txt diff --git a/annotators/dnnc_intents/requirements_load_test.txt b/annotators/dnnc_intents/requirements_load_test.txt new file mode 100644 index 0000000000..33836e03e8 --- /dev/null +++ b/annotators/dnnc_intents/requirements_load_test.txt @@ -0,0 +1 @@ +locust==1.4.3 From 1a5f366d8f8e9b8a1de4d796dc6a0be330e6da02 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Wed, 18 Oct 2023 18:19:34 +0300 Subject: [PATCH 20/94] Create test.sh --- annotators/dnnc_intents/test.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 annotators/dnnc_intents/test.sh diff --git a/annotators/dnnc_intents/test.sh b/annotators/dnnc_intents/test.sh new file mode 100644 index 0000000000..61672db785 --- /dev/null +++ b/annotators/dnnc_intents/test.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +python test.py From 5f42d80475062627c0a6ec7f6db9fac53fcc8b15 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Wed, 18 Oct 2023 18:21:20 +0300 Subject: [PATCH 21/94] Create test.py --- annotators/dnnc_intents/test.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 annotators/dnnc_intents/test.py diff --git a/annotators/dnnc_intents/test.py b/annotators/dnnc_intents/test.py new file mode 100644 index 0000000000..6310490ec2 --- /dev/null +++ b/annotators/dnnc_intents/test.py @@ -0,0 +1,22 @@ +import requests +from time import time + + +def main_test(): + url = "http://0.0.0.0:8218/model" + configs = [to write] + t = time() + for config in configs: + responses = requests.post(url, json=config).json() + for response, answer, sentence in zip(responses, config["answers_dnnc"], config["sentences"]): + # print((response, answer, sentence)) + predicted_classes = [class_ for class_ in response if response[class_] == max(response.values())] + assert sorted(answer) == sorted(predicted_classes), " * ".join( + [str(j) for j in [sentence, answer, predicted_classes, response]] + ) + print("SUCCESS!") + print(time() - t) + return 0 + + +main_test() From 8878a859b9d04724458e72fa424a8902c4affb7e Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Wed, 18 Oct 2023 18:22:59 +0300 Subject: [PATCH 22/94] Update classifier.json --- annotators/dnnc_intents/classifier.json | 57 ++++++++++++++++++++++++- 1 file changed, 56 insertions(+), 1 deletion(-) diff --git a/annotators/dnnc_intents/classifier.json b/annotators/dnnc_intents/classifier.json index 33fbefc934..21ae54754a 100644 --- a/annotators/dnnc_intents/classifier.json +++ b/annotators/dnnc_intents/classifier.json @@ -1 +1,56 @@ -;; +{ + "chainer": { + "in": ["texts", "dataset"], + "in_y": ["y_true"], + "pipe": [ + { + "class_name": "dnnc_pair_generator", + "in": ["texts", "dataset"], + "out": ["x", "x_support", "x_populated", "y_support"], + "bidirectional": true + }, + { + "class_name": "torch_transformers_preprocessor", + "in": ["x_populated", "x_support"], + "out": ["bert_features"], + "vocab_file": "{BASE_MODEL}", + "do_lower_case": true, + "max_seq_length": 128 + }, + { + "class_name": "torch_transformers_classifier", + "main": true, + "in": ["bert_features"], + "out": ["simmilarity_scores"], + "n_classes": 2, + "return_probas": true, + "pretrained_bert": "{BASE_MODEL}", + "save_path": "{MODEL_PATH}/model", + "load_path": "{MODEL_PATH}/model", + "is_binary": "{BINARY_CLASSIFICATION}" + }, + { + "class_name": "dnnc_proba2labels", + "is_binary": "{BINARY_CLASSIFICATION}", + "in": ["simmilarity_scores", "x", "x_populated", "x_support", "y_support"], + "out": ["y_pred"], + "confidence_threshold": 0.0 + } + ], + "out": ["y_pred"] + }, + "metadata": { + "variables": { + "ROOT_PATH": "~/.deeppavlov", + "MODEL_PATH": "{ROOT_PATH}/models/fewshot/roberta_nli_mrpc_1_10", + "BINARY_CLASSIFICATION": true, + "BASE_MODEL": "roberta-base" + }, + "download": [ + { + "url": "http://files.deeppavlov.ai/v1/classifiers/fewshot/roberta_nli_mrpc_1_10.tar.gz", + "subdir": "{MODEL_PATH}" + } + ] + } +} From caf51806fc7f019a56bbe884aacc85ae9100b45c Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 15:36:13 +0300 Subject: [PATCH 23/94] Update runtests.sh --- tests/runtests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/runtests.sh b/tests/runtests.sh index 370d4b7bb4..fc6f5b054b 100755 --- a/tests/runtests.sh +++ b/tests/runtests.sh @@ -140,7 +140,7 @@ if [[ "$MODE" == "test_skills" || "$MODE" == "all" ]]; then for container in sentseg intent-catcher ranking-based-response-selector entity-linking \ kbqa text-qa wiki-parser combined-classification fact-retrieval \ dff-intent-responder-skill entity-detection sentence-ranker \ - property-extraction ner prompt-selector \ + property-extraction ner prompt-selector dnnc-intents \ dff-dream-persona-chatgpt-prompted-skill dff-google-api-skill; do echo "Run tests for $container" From a629a05c556b557f2b45b74323f6678a16dd7042 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 15:55:10 +0300 Subject: [PATCH 24/94] Update classifier.json --- annotators/dnnc_intents/classifier.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/annotators/dnnc_intents/classifier.json b/annotators/dnnc_intents/classifier.json index 21ae54754a..18cbd40742 100644 --- a/annotators/dnnc_intents/classifier.json +++ b/annotators/dnnc_intents/classifier.json @@ -1,8 +1,13 @@ { "chainer": { - "in": ["texts", "dataset"], + "in": ["texts"], "in_y": ["y_true"], "pipe": [ + { + "class_name": "utils:dnnc_batch_preprocessor", + "in": ["text"], + "out": ["texts","dataset"], + }, { "class_name": "dnnc_pair_generator", "in": ["texts", "dataset"], @@ -46,6 +51,7 @@ "BINARY_CLASSIFICATION": true, "BASE_MODEL": "roberta-base" }, + "imports":["utils.py"], "download": [ { "url": "http://files.deeppavlov.ai/v1/classifiers/fewshot/roberta_nli_mrpc_1_10.tar.gz", From 698dd2e9cb15b053391a47d43b02a34a08c9a674 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 16:04:01 +0300 Subject: [PATCH 25/94] Create utils.py --- annotators/dnnc_intents/utils.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 annotators/dnnc_intents/utils.py diff --git a/annotators/dnnc_intents/utils.py b/annotators/dnnc_intents/utils.py new file mode 100644 index 0000000000..a5abd5d0dc --- /dev/null +++ b/annotators/dnnc_intents/utils.py @@ -0,0 +1,21 @@ + +from logging import getLogger +from typing import List + +import numpy as np +from deeppavlov.core.common.registry import register +from deeppavlov.core.models.component import Component +from deeppavlov.core.common.registry import register + +@register('dnnc_preparer') +class dnnc_preparer(Component): + def __init__(self): + self.possible_datasets = ... + pass + def __call__(self, texts): + datasets,final_texts=[],[] + for text in texts: + for dataset in self.possible_datasets: + datasets.append(dataset) + final_texts.append(text) + return final_texts, datasets From 193f771e294395fcf50c9b14917c8bdbc8761760 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 16:21:17 +0300 Subject: [PATCH 26/94] Create server.py --- annotators/dnnc_intents/server.py | 39 +++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 annotators/dnnc_intents/server.py diff --git a/annotators/dnnc_intents/server.py b/annotators/dnnc_intents/server.py new file mode 100644 index 0000000000..1d72caa83a --- /dev/null +++ b/annotators/dnnc_intents/server.py @@ -0,0 +1,39 @@ +import os +import time + +from flask import Flask, request, jsonify +import sentry_sdk + +from sentry_sdk.integrations.flask import FlaskIntegration +from deeppavlov import build_model +from common.combined_classes import combined_classes +from common.dnnc_classes import dnnc_classes + +logging.basicConfig(format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", level=logging.INFO) + +sentry_sdk.init(dsn=os.getenv("SENTRY_DSN"), integrations=[FlaskIntegration()]) + +logger = logging.getLogger(__name__) + +try: + model = build_model("combined_classifier.json", download=True) + logger.info("Making test res") + test_res = get_result(["a"], ["a"]) + logger.info("model loaded, test query processed") +except Exception as e: + sentry_sdk.capture_exception(e) + logger.exception(e) + raise e + +app = Flask(__name__) + + +@app.route("/model", methods=["POST"]) +def respond(): + t = time.time() + sentences = request.json.get("sentences", [" "]) + label_lists, sim_scores_lists = model(sentences) + ans=[] + for sim_score_list in sin_scores_lists: + ans.append({dnnc_class:prob for dnnc_class,prob in zip(dnnc_classes, sim_score_list)} + return jsonify(ans) From a92b53beee060cc0c5231f3cb6fc78b63e82ed12 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 16:21:44 +0300 Subject: [PATCH 27/94] Create dnnc_classes.py --- common/dnnc_classes.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 common/dnnc_classes.py diff --git a/common/dnnc_classes.py b/common/dnnc_classes.py new file mode 100644 index 0000000000..8dd2a8f3f1 --- /dev/null +++ b/common/dnnc_classes.py @@ -0,0 +1 @@ +dnnc_classes = [... TO ADD] From 05acd47465b0d752f600867a11743384966d2970 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 16:26:32 +0300 Subject: [PATCH 28/94] Update utils.py --- common/utils.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/common/utils.py b/common/utils.py index d6dbfbbde9..23fd9e59fd 100644 --- a/common/utils.py +++ b/common/utils.py @@ -9,6 +9,7 @@ from common.custom_requests import request_triples_wikidata from common.factoid import FACTOID_THRESHOLD from common.combined_classes import combined_classes, TOPIC_GROUPS +from common.dnnc_classes import dnnc_classes from common.join_pattern import * from common import food, books, music, news, travel @@ -838,7 +839,6 @@ def get_intents(annotated_utterance, probs=False, default_probs=None, default_la else: midas_intent_labels = [] cobot_da_intent_probs, cobot_da_intent_labels = {}, [] - if "cobot_dialogact" in annotations and "intents" in annotations["cobot_dialogact"]: cobot_da_intent_labels = annotated_utterance["annotations"]["cobot_dialogact"]["intents"] elif "cobot_dialogact_intents" in annotations: @@ -852,10 +852,13 @@ def get_intents(annotated_utterance, probs=False, default_probs=None, default_la cobot_da_intent_labels = _process_text(cobot_da_intent_labels) if not cobot_da_intent_probs: cobot_da_intent_probs = _labels_to_probs(cobot_da_intent_labels, combined_classes["cobot_dialogact_intents"]) - + dnnc_intent_probs = annotated_utterance["annotations"].get("dnnc_intents",[]) + dnnc_intents = [intent for intent in dnnc_intent_probs if dnnc_intent_probs[intent] == 1] if which == "all": - answer_probs = {**detected_intent_probs, **cobot_da_intent_probs, **midas_intent_probs} - answer_labels = detected_intents + cobot_da_intent_labels + midas_intent_labels + answer_probs = {**detected_intent_probs, **cobot_da_intent_probs, **midas_intent_probs, **dnnc_intent_probs} + answer_labels = detected_intents + cobot_da_intent_labels + midas_intent_labels + dnnc_intent_labels + elif which == "dnnc": + answer_probs, answer_labels = dnnc_intent_probs, dnnc_intents elif which == "intent_catcher": answer_probs, answer_labels = detected_intent_probs, detected_intents elif which == "cobot_dialogact_intents": From 03cd5ebfdda547def23fd2d76e028939f254d331 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 16:27:53 +0300 Subject: [PATCH 29/94] Update server.py --- annotators/dnnc_intents/server.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/annotators/dnnc_intents/server.py b/annotators/dnnc_intents/server.py index 1d72caa83a..e5d6eb2248 100644 --- a/annotators/dnnc_intents/server.py +++ b/annotators/dnnc_intents/server.py @@ -32,8 +32,8 @@ def respond(): t = time.time() sentences = request.json.get("sentences", [" "]) - label_lists, sim_scores_lists = model(sentences) + label_list = model(sentences) ans=[] - for sim_score_list in sin_scores_lists: - ans.append({dnnc_class:prob for dnnc_class,prob in zip(dnnc_classes, sim_score_list)} + for sentence in sentences: + ans.append({dnnc_class:1 for dnnc_class in label_list} return jsonify(ans) From ae0a7a7ecf65e277f90e43f068792f415b1da0cf Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 16:34:40 +0300 Subject: [PATCH 30/94] Update dnnc_classes.py --- common/dnnc_classes.py | 151 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 150 insertions(+), 1 deletion(-) diff --git a/common/dnnc_classes.py b/common/dnnc_classes.py index 8dd2a8f3f1..0c8104f746 100644 --- a/common/dnnc_classes.py +++ b/common/dnnc_classes.py @@ -1 +1,150 @@ -dnnc_classes = [... TO ADD] +dnnc_classes = ["accept_reservations", + "account_blocked", + "alarm", + "application_status", + "apr", + "are_you_a_bot", + "balance", + "bill_balance", + "bill_due", + "book_flight", + "book_hotel", + "calculator", + "calendar", + "calendar_update", + "calories", + "cancel", + "cancel_reservation", + "car_rental", + "card_declined", + "carry_on", + "change_accent", + "change_ai_name", + "change_language", + "change_speed", + "change_user_name", + "change_volume", + "confirm_reservation", + "cook_time", + "credit_limit", + "credit_limit_change", + "credit_score", + "current_location", + "damaged_card", + "date", + "definition", + "direct_deposit", + "directions", + "distance", + "do_you_have_pets", + "exchange_rate", + "expiration_date", + "find_phone", + "flight_status", + "flip_coin", + "food_last", + "freeze_account", + "fun_fact", + "gas", + "gas_type", + "goodbye", + "greeting", + "how_busy", + "how_old_are_you", + "improve_credit_score", + "income", + "ingredient_substitution", + "ingredients_list", + "insurance", + "insurance_change", + "interest_rate", + "international_fees", + "international_visa", + "jump_start", + "last_maintenance", + "lost_luggage", + "make_call", + "maybe", + "meal_suggestion", + "meaning_of_life", + "measurement_conversion", + "meeting_schedule", + "min_payment", + "mpg", + "new_card", + "next_holiday", + "next_song", + "no", + "nutrition_info", + "oil_change_how", + "oil_change_when", + "order", + "order_checks", + "order_status", + "pay_bill", + "payday", + "pin_change", + "play_music", + "plug_type", + "pto_balance", + "pto_request", + "pto_request_status", + "pto_used", + "recipe", + "redeem_rewards", + "reminder", + "reminder_update", + "repeat", + "replacement_card_duration", + "report_fraud", + "report_lost_card", + "reset_settings", + "restaurant_reservation", + "restaurant_reviews", + "restaurant_suggestion", + "rewards_balance", + "roll_dice", + "rollover_401k", + "routing", + "schedule_maintenance", + "schedule_meeting", + "share_location", + "shopping_list", + "shopping_list_update", + "smart_home", + "spelling", + "spending_history", + "sync_device", + "taxes", + "tell_joke", + "text", + "thank_you", + "time", + "timer", + "timezone", + "tire_change", + "tire_pressure", + "todo_list", + "todo_list_update", + "traffic", + "transactions", + "transfer", + "translate", + "travel_alert", + "travel_notification", + "travel_suggestion", + "uber", + "update_playlist", + "user_name", + "vaccines", + "w2", + "weather", + "what_are_your_hobbies", + "what_can_i_ask_you", + "what_is_your_name", + "what_song", + "where_are_you_from", + "whisper_mode", + "who_do_you_work_for", + "who_made_you", + "yes"] From 05ee608037271a7bd1e0a2bed800c9bcc864b79d Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 16:39:50 +0300 Subject: [PATCH 31/94] Update utils.py --- annotators/dnnc_intents/utils.py | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/annotators/dnnc_intents/utils.py b/annotators/dnnc_intents/utils.py index a5abd5d0dc..c41aeea175 100644 --- a/annotators/dnnc_intents/utils.py +++ b/annotators/dnnc_intents/utils.py @@ -1,21 +1,11 @@ - -from logging import getLogger -from typing import List - -import numpy as np -from deeppavlov.core.common.registry import register from deeppavlov.core.models.component import Component from deeppavlov.core.common.registry import register +import json -@register('dnnc_preparer') +@register("dnnc_preparer") class dnnc_preparer(Component): def __init__(self): - self.possible_datasets = ... - pass + self.data = json.load(open("data_full.json","r")) def __call__(self, texts): - datasets,final_texts=[],[] - for text in texts: - for dataset in self.possible_datasets: - datasets.append(dataset) - final_texts.append(text) - return final_texts, datasets + datasets = data["train"] + data["oos_train"] + return texts, datasets From f9822d88f503447cb65d0e9fca27646c8e6275bf Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 16:40:05 +0300 Subject: [PATCH 32/94] Add files via upload --- annotators/dnnc_intents/data_full(1).json | 94814 ++++++++++++++++++++ 1 file changed, 94814 insertions(+) create mode 100644 annotators/dnnc_intents/data_full(1).json diff --git a/annotators/dnnc_intents/data_full(1).json b/annotators/dnnc_intents/data_full(1).json new file mode 100644 index 0000000000..7a7b26c5f2 --- /dev/null +++ b/annotators/dnnc_intents/data_full(1).json @@ -0,0 +1,94814 @@ +{ + "oos_val": [ + [ + "set a warning for when my bank account starts running low", + "oos" + ], + [ + "a show on broadway", + "oos" + ], + [ + "who has the best record in the nfl", + "oos" + ], + [ + "how do i find the area of a circle", + "oos" + ], + [ + "how many onions do i have on hand", + "oos" + ], + [ + "what is the name of the 13th president", + "oos" + ], + [ + "show me recent activity in my backyard", + "oos" + ], + [ + "how long will it take me to pay off my card if i pay an extra $50 a month over the minimum", + "oos" + ], + [ + "does our bank have free notary", + "oos" + ], + [ + "what were the top stories this week", + "oos" + ], + [ + "can i mix antifreeze with water", + "oos" + ], + [ + "are any earning reports due", + "oos" + ], + [ + "show me the channel guide", + "oos" + ], + [ + "is the pnc bank open", + "oos" + ], + [ + "where does the power steering fluid go", + "oos" + ], + [ + "when was the last time the president visited floridau", + "oos" + ], + [ + "how can i keep my windshield from fogging up in winter", + "oos" + ], + [ + "how do i compute the median of a set of numbers", + "oos" + ], + [ + "what is happening with brexit right nowu", + "oos" + ], + [ + "are there any new companies to look out for", + "oos" + ], + [ + "can you tell me how to compute price per ounce", + "oos" + ], + [ + "how to unclog a drain", + "oos" + ], + [ + "am kind of busy now", + "oos" + ], + [ + "what new reality shows are there for 2019", + "oos" + ], + [ + "what is the purpose or benefit of a cash advance", + "oos" + ], + [ + "how can i root an android phone", + "oos" + ], + [ + "is android better than iphone", + "oos" + ], + [ + "are androids expensive", + "oos" + ], + [ + "how long does it take to become an architect", + "oos" + ], + [ + "who are some famous living architects", + "oos" + ], + [ + "find out for me as to why people get autism", + "oos" + ], + [ + "is autism a genetic disease", + "oos" + ], + [ + "is flu contagious", + "oos" + ], + [ + "is it true that nicotine is harder to kick than heroin", + "oos" + ], + [ + "please inform me on bad habits and overcoming them", + "oos" + ], + [ + "are bad habits closely related with addictions", + "oos" + ], + [ + "does hypnosis work to break bad habits", + "oos" + ], + [ + "king of acid", + "oos" + ], + [ + "suo2", + "oos" + ], + [ + "what university in the united states offers the best biomedical engineering program", + "oos" + ], + [ + "what's the definition of nuclear engineering", + "oos" + ], + [ + "when was electrical engineering created", + "oos" + ], + [ + "what is naval engineering", + "oos" + ], + [ + "is it possible to survive in a black hole", + "oos" + ], + [ + "where do black holes come from", + "oos" + ], + [ + "what are black holes", + "oos" + ], + [ + "what was the final vote count in the brexit referendum", + "oos" + ], + [ + "can you tell me the latest georgia news", + "oos" + ], + [ + "is the brexit finalized yet", + "oos" + ], + [ + "the birds fly with there wings", + "oos" + ], + [ + "how the birds fly", + "oos" + ], + [ + "where does cannabis originate from", + "oos" + ], + [ + "how are my cannabis stocks doing", + "oos" + ], + [ + "is marijuana addictive", + "oos" + ], + [ + "should i hit or stay at 17 in blackjack", + "oos" + ], + [ + "what game has the best odds at a casino", + "oos" + ], + [ + "what's the best opening gambit for a game of chess", + "oos" + ], + [ + "what side in chess has the general advantage", + "oos" + ], + [ + "how do i get better at go", + "oos" + ], + [ + "how high does my sat score need to be to get into harvard", + "oos" + ], + [ + "what'll an education at boulder state college run", + "oos" + ], + [ + "what's the average gpa to get into yale", + "oos" + ], + [ + "what act score is considered good", + "oos" + ], + [ + "what cryptocurrency gained the most in 2018", + "oos" + ], + [ + "what's the best crypto to buy in 2019", + "oos" + ], + [ + "how is crypto legal", + "oos" + ], + [ + "are there any cybersecurity jobs available in pittsburgh", + "oos" + ], + [ + "how many firewalls should i have and what type", + "oos" + ], + [ + "how can i breach a network", + "oos" + ], + [ + "how does cybersecurity work", + "oos" + ], + [ + "how many countries in the world are democracies", + "oos" + ], + [ + "is the united states a democracy", + "oos" + ], + [ + "which nations are not democratic", + "oos" + ], + [ + "how does a democracy work", + "oos" + ], + [ + "please get me my wheelchair", + "oos" + ], + [ + "what's the best dog food to feed my puppy", + "oos" + ], + [ + "how do you know when your dog is ill", + "oos" + ], + [ + "what dog breed sold the most in 2018", + "oos" + ], + [ + "how much food should i feed my cat", + "oos" + ], + [ + "what does it mean if i dream of falling off a building", + "oos" + ], + [ + "is it bad to not remember your dreams", + "oos" + ], + [ + "why do we dream", + "oos" + ], + [ + "do ducks eat meat, vegetables, or both", + "oos" + ], + [ + "what is the friendliest breed", + "oos" + ], + [ + "what do geese eat", + "oos" + ], + [ + "do ducks sleep", + "oos" + ], + [ + "are over the ear headphones better than in ear headphones", + "oos" + ], + [ + "what brand of earphones is the best reviewed of 2019", + "oos" + ], + [ + "are white and brown eggs any different", + "oos" + ], + [ + "where do eggs come from", + "oos" + ], + [ + "how can i easily replace a string on my guitar", + "oos" + ], + [ + "how do you learn how to play electric violin", + "oos" + ], + [ + "can you give me the standard tuning notes", + "oos" + ], + [ + "what is the cheapest electric guitar", + "oos" + ], + [ + "you want to know about current time now", + "oos" + ], + [ + "what does it mean to have equality", + "oos" + ], + [ + "what site publishes the most fake news", + "oos" + ], + [ + "can you tell me some fake news", + "oos" + ], + [ + "is cnn really fake news", + "oos" + ], + [ + "why is there fake news", + "oos" + ] + ], + "val": [ + [ + "in spanish, meet me tomorrow is said how", + "translate" + ], + [ + "in french, how do i say, see you later", + "translate" + ], + [ + "how do you say hello in japanese", + "translate" + ], + [ + "how do i ask about the weather in chinese", + "translate" + ], + [ + "how can i say \"cancel my order\" in french", + "translate" + ], + [ + "how do i say dinner in spanish", + "translate" + ], + [ + "how do you say good bye in french", + "translate" + ], + [ + "how do i say thank you in spanish", + "translate" + ], + [ + "how do i say good bye in chinese", + "translate" + ], + [ + "how can i say thank you very much in chinese", + "translate" + ], + [ + "i need to know how to say hello in france", + "translate" + ], + [ + "would you tell me how to say goodbye in france", + "translate" + ], + [ + "how do you say hello in mexico", + "translate" + ], + [ + "tell me how to say hello in chile", + "translate" + ], + [ + "i want to know how to say goodbye in france", + "translate" + ], + [ + "would you translate a sentence into russian for me, please", + "translate" + ], + [ + "would you translate a phrase into mandarin for me", + "translate" + ], + [ + "can you translate this name into spanish for me, please", + "translate" + ], + [ + "could you translate this into chinese for me, please", + "translate" + ], + [ + "could you translate water into dutch for me", + "translate" + ], + [ + "transfer ten dollars from my wells fargo account to my bank of america account", + "transfer" + ], + [ + "take one hundred and fifty bucks from my wells fargo checking account and put it in my wells fargo savings account", + "transfer" + ], + [ + "put one hundred and seventy five bucks in my wells fargo checking account from my citibank savings account", + "transfer" + ], + [ + "move two hundred dollars to my chase savings account to my wells fargo checking account", + "transfer" + ], + [ + "move three hundred and fifty dollars from my citibank savings account to my chase savings account", + "transfer" + ], + [ + "move a dollar from my checkings to my savings", + "transfer" + ], + [ + "move my money to the other account", + "transfer" + ], + [ + "transfer funds to the other account", + "transfer" + ], + [ + "please transfer half of my funds to an alternate account", + "transfer" + ], + [ + "can you move my money to my savings", + "transfer" + ], + [ + "make an eft to my savings from my checking account", + "transfer" + ], + [ + "send 100 dollars from my vanguard money market to my wells fargo savings", + "transfer" + ], + [ + "i need 200 dollars transferred from my long island savings account to my chase checking", + "transfer" + ], + [ + "send from my bbc money market to my t rowe price money market seven thousand dollars", + "transfer" + ], + [ + "i need 2000 to go to my chase checking from my mellon bank savings account", + "transfer" + ], + [ + "move 100 dollars from my savings to my checking", + "transfer" + ], + [ + "transfer 1000 dollars from my first national bank to my bethpage federal credit union savings", + "transfer" + ], + [ + "take out of my checking 400 dollars and put it into my emergency savings account", + "transfer" + ], + [ + "i need to transfer one thousand dollars to my savings account from my checking", + "transfer" + ], + [ + "transfer 50 dollars from my checking account to my money market account", + "transfer" + ], + [ + "create a new timer", + "timer" + ], + [ + "i'd like to set a new timer", + "timer" + ], + [ + "help me set a timer please", + "timer" + ], + [ + "10 minutes is what the timer should be set at", + "timer" + ], + [ + "the timer should have 10 minutes set to it", + "timer" + ], + [ + "10 minutes is the setting for the timer", + "timer" + ], + [ + "the timer is calculated for 10 minutes", + "timer" + ], + [ + "set the timer for 10 minutes", + "timer" + ], + [ + "can you set a 30 second timer", + "timer" + ], + [ + "please set a timer to go off in 45 minutes", + "timer" + ], + [ + "i need you to create a timer", + "timer" + ], + [ + "i need a timer set please", + "timer" + ], + [ + "create a timer that is set to go off after 25 mins", + "timer" + ], + [ + "i need a timer that is set at 1 hour exactly", + "timer" + ], + [ + "could you set up a timer for me", + "timer" + ], + [ + "will you start a timer for me", + "timer" + ], + [ + "set up a 52 minute timer", + "timer" + ], + [ + "please set up a timer for me", + "timer" + ], + [ + "set 60 minutes for oven please", + "timer" + ], + [ + "please make the timer for cooking for for 2 hours", + "timer" + ], + [ + "may i please have a definition for the work churlish", + "definition" + ], + [ + "i want to know what trenchant means", + "definition" + ], + [ + "what is the meaning of fascism", + "definition" + ], + [ + "can you tell me what a septuagenarian is", + "definition" + ], + [ + "can you define the word schadenfreude", + "definition" + ], + [ + "what does unsavory mean", + "definition" + ], + [ + "please define erection for me", + "definition" + ], + [ + "what does idiosyncratic mean", + "definition" + ], + [ + "tell me the meaning of condemnation", + "definition" + ], + [ + "define monetary for me please", + "definition" + ], + [ + "tell me the meaning of hegemony", + "definition" + ], + [ + "what does indignation mean", + "definition" + ], + [ + "define ambivalence for me please", + "definition" + ], + [ + "please define institutional racism", + "definition" + ], + [ + "define antagonist for me please", + "definition" + ], + [ + "what does distinguish mean", + "definition" + ], + [ + "what is the meaning of word alliance", + "definition" + ], + [ + "i need to know what dominate means", + "definition" + ], + [ + "what is the definition of the word migrate", + "definition" + ], + [ + "tell me please what paean means", + "definition" + ], + [ + "i want to know what the purpose of life is", + "meaning_of_life" + ], + [ + "i want to hear what you think life's purpose is about", + "meaning_of_life" + ], + [ + "what do you think the purpose of life is", + "meaning_of_life" + ], + [ + "what is the purpose of existence", + "meaning_of_life" + ], + [ + "what do you think our purpose is in life", + "meaning_of_life" + ], + [ + "i'd like to know the meaning of life", + "meaning_of_life" + ], + [ + "what's your opinion on the meaning of life", + "meaning_of_life" + ], + [ + "what is life's purpose", + "meaning_of_life" + ], + [ + "tell me all about the meaning of life", + "meaning_of_life" + ], + [ + "tell me your thoughts about the meaning of life", + "meaning_of_life" + ], + [ + "do you have any ideas on the meaning of life", + "meaning_of_life" + ], + [ + "do you know the deeper meaning of life", + "meaning_of_life" + ], + [ + "tell me the meaning of life", + "meaning_of_life" + ], + [ + "can you tell me, what is the meaning of life", + "meaning_of_life" + ], + [ + "what is the meaning behind life, do you think", + "meaning_of_life" + ], + [ + "what is our purpose", + "meaning_of_life" + ], + [ + "what do you think we are on earth for", + "meaning_of_life" + ], + [ + "what do you think life is really about", + "meaning_of_life" + ], + [ + "do you think we have a higher calling", + "meaning_of_life" + ], + [ + "why are humans on earth", + "meaning_of_life" + ], + [ + "explain how do i get new insurance", + "insurance_change" + ], + [ + "tell me how to get new insurance", + "insurance_change" + ], + [ + "explain to me how do i get new insurance", + "insurance_change" + ], + [ + "i want to get new insurance", + "insurance_change" + ], + [ + "can you tell me how do i get new insurance", + "insurance_change" + ], + [ + "i'd like to know how changes are made to my insurance policy", + "insurance_change" + ], + [ + "how can i make changes for my insurance policy", + "insurance_change" + ], + [ + "can you tell me how changes on my insurance policy can be made", + "insurance_change" + ], + [ + "i'd like to know how to make changes for my insurance policy", + "insurance_change" + ], + [ + "could you tell me how to make changes to my insurance policy", + "insurance_change" + ], + [ + "tell me how to change my policy", + "insurance_change" + ], + [ + "i need to switch insurance plans", + "insurance_change" + ], + [ + "can you help me switch insurance plans", + "insurance_change" + ], + [ + "tell me how to make changes to my insurance policy", + "insurance_change" + ], + [ + "how do i switch to a new insurance plan", + "insurance_change" + ], + [ + "can you help me switch to a new insurance plan", + "insurance_change" + ], + [ + "how can i change information on my insurance policy", + "insurance_change" + ], + [ + "how do i make changes to my insurance policy", + "insurance_change" + ], + [ + "tell me how to change my insurance policy", + "insurance_change" + ], + [ + "i need to change my insurance policy, how", + "insurance_change" + ], + [ + "please help me in finding my phone", + "find_phone" + ], + [ + "please help me find my lost phone", + "find_phone" + ], + [ + "i need your help finding my lost phone", + "find_phone" + ], + [ + "help me find my phone please", + "find_phone" + ], + [ + "tell me where i left my phone", + "find_phone" + ], + [ + "what did i do with my phone", + "find_phone" + ], + [ + "can you tell me where my phone is", + "find_phone" + ], + [ + "what happened to my cellphone", + "find_phone" + ], + [ + "do you remember where i left my cellphone", + "find_phone" + ], + [ + "where is my cellphone", + "find_phone" + ], + [ + "do you know where my cellphone is", + "find_phone" + ], + [ + "i have lost my phone", + "find_phone" + ], + [ + "help me, i don't know where my phone is", + "find_phone" + ], + [ + "tell me my phone's location", + "find_phone" + ], + [ + "where would my phone be", + "find_phone" + ], + [ + "i need to know my phone's location", + "find_phone" + ], + [ + "help locate my phone", + "find_phone" + ], + [ + "can you find me my phone", + "find_phone" + ], + [ + "track down my phone for me", + "find_phone" + ], + [ + "my phone is lost and i need help finding it", + "find_phone" + ], + [ + "is traveling to france safe", + "travel_alert" + ], + [ + "is france safe to travel to", + "travel_alert" + ], + [ + "i need to know is traveling to france safe", + "travel_alert" + ], + [ + "can i travel to france as far as safety goes", + "travel_alert" + ], + [ + "can i safely travel to france or is it dangerous", + "travel_alert" + ], + [ + "are there any current travel alerts for brazil", + "travel_alert" + ], + [ + "are there any travel alerts for seattle", + "travel_alert" + ], + [ + "how safe is it to travel to guatemala right now and are there any alerts", + "travel_alert" + ], + [ + "are there any travel alerts for juarez", + "travel_alert" + ], + [ + "what's the danger level of flying to russia right now", + "travel_alert" + ], + [ + "are there any travel alerts for antarctica", + "travel_alert" + ], + [ + "are there any travel alerts for mountain view", + "travel_alert" + ], + [ + "does mexico have any travel alerts i should know about", + "travel_alert" + ], + [ + "does greece currently have any travel alerts in place", + "travel_alert" + ], + [ + "are there any travel alerts for brazil", + "travel_alert" + ], + [ + "how safe is it to visit spain", + "travel_alert" + ], + [ + "how safe is visiting canada this week", + "travel_alert" + ], + [ + "have the riots in france triggered any alerts for people traveling to there", + "travel_alert" + ], + [ + "is there any danger going to brazil", + "travel_alert" + ], + [ + "is it safe to travel to mexico", + "travel_alert" + ], + [ + "please request pto for march 2 and 3", + "pto_request" + ], + [ + "i am requesting pto for march 2 and 3", + "pto_request" + ], + [ + "can you please request pto for march 2 and 3", + "pto_request" + ], + [ + "i would like to request pto for march 2 and 3", + "pto_request" + ], + [ + "i need to request pto for march 2 and 3", + "pto_request" + ], + [ + "let me know how to make a vacation request", + "pto_request" + ], + [ + "i need to make a vacation request; how", + "pto_request" + ], + [ + "can i put in a pto request for may 1 to may 5", + "pto_request" + ], + [ + "tell me how to make a vacation request", + "pto_request" + ], + [ + "i would like to know if i can put a pto request in for march 19 to march 20", + "pto_request" + ], + [ + "am i able to put in a pto request for may 6 to may 18", + "pto_request" + ], + [ + "provide assistance on what to do to make a vacation request", + "pto_request" + ], + [ + "i need to know how to make a vacation request", + "pto_request" + ], + [ + "i need to know if i can put a pto request in for march 10 to march 12", + "pto_request" + ], + [ + "tell me whether i can put a pto request in for may 10 to may 15", + "pto_request" + ], + [ + "what is the process for making a vacation request", + "pto_request" + ], + [ + "what's the method for requesting a vacation", + "pto_request" + ], + [ + "what are the steps required for making a vacation request", + "pto_request" + ], + [ + "please help me make a request for vacation", + "pto_request" + ], + [ + "i have a vacation request that i need made", + "pto_request" + ], + [ + "what are some ways to raise my credit score", + "improve_credit_score" + ], + [ + "what will help my credit score", + "improve_credit_score" + ], + [ + "are there any videos on how to repair my credit score", + "improve_credit_score" + ], + [ + "what can i do to get a better credit score", + "improve_credit_score" + ], + [ + "will getting a credit card help my credit score", + "improve_credit_score" + ], + [ + "what are the top 10 ways to build my credit score", + "improve_credit_score" + ], + [ + "how can i build up my credit score", + "improve_credit_score" + ], + [ + "how can i build my credit score", + "improve_credit_score" + ], + [ + "what are some easy ways to make my credit score better", + "improve_credit_score" + ], + [ + "how do i prevent my credit score from dropping", + "improve_credit_score" + ], + [ + "how should i go about improving my credit score", + "improve_credit_score" + ], + [ + "how can i make sure that my credit score does not decrease", + "improve_credit_score" + ], + [ + "what is the best way to insure that my credit score doesn't decrease", + "improve_credit_score" + ], + [ + "what things can i do to increase my credit score", + "improve_credit_score" + ], + [ + "what is the best way to keep my credit score from going down", + "improve_credit_score" + ], + [ + "what is the best thing for me to do to improve my credit score quickly", + "improve_credit_score" + ], + [ + "how can i safeguard my credit score from dropping", + "improve_credit_score" + ], + [ + "do i have options on how to improve my credit score", + "improve_credit_score" + ], + [ + "what steps can i take to improve my credit score", + "improve_credit_score" + ], + [ + "show me a plan to help my credit score rating", + "improve_credit_score" + ], + [ + "tell me something interesting about lake tahoe", + "fun_fact" + ], + [ + "tell me a cool fact about reno", + "fun_fact" + ], + [ + "tell me something interesting about new york state", + "fun_fact" + ], + [ + "give me a cool fact about new orleans", + "fun_fact" + ], + [ + "give me a cool fact about seattle", + "fun_fact" + ], + [ + "tell me something interesting about elephants", + "fun_fact" + ], + [ + "tell me something interesting about dogs", + "fun_fact" + ], + [ + "give me a cool fact about potatoes", + "fun_fact" + ], + [ + "give me a cool fact about puppies", + "fun_fact" + ], + [ + "give me a cool fact about lsd", + "fun_fact" + ], + [ + "tell me a fun fact about the moon landing", + "fun_fact" + ], + [ + "what's a fun fact about axolotls", + "fun_fact" + ], + [ + "tell me a fact about the maned wolf", + "fun_fact" + ], + [ + "give me harry potter trivia", + "fun_fact" + ], + [ + "tell me an axolotl fact", + "fun_fact" + ], + [ + "i need a spider fact", + "fun_fact" + ], + [ + "show me trivia about cats", + "fun_fact" + ], + [ + "read me some different cat trivia items", + "fun_fact" + ], + [ + "find me cat trivia now please", + "fun_fact" + ], + [ + "read me cat trivia", + "fun_fact" + ], + [ + "i need new language", + "change_language" + ], + [ + "switch language for me", + "change_language" + ], + [ + "please change your language setting to russian", + "change_language" + ], + [ + "you must change your language setting to russian", + "change_language" + ], + [ + "you need to change your language setting to russian please", + "change_language" + ], + [ + "change language please", + "change_language" + ], + [ + "please change your language setting to spanish now", + "change_language" + ], + [ + "change your language setting to spanish", + "change_language" + ], + [ + "i want new language", + "change_language" + ], + [ + "please change the language", + "change_language" + ], + [ + "speak arabic", + "change_language" + ], + [ + "speak navajo", + "change_language" + ], + [ + "speak german", + "change_language" + ], + [ + "speak french", + "change_language" + ], + [ + "speak mandarin", + "change_language" + ], + [ + "change response language from mandarin to english", + "change_language" + ], + [ + "please respond to me in english from now on", + "change_language" + ], + [ + "please change your response language to english", + "change_language" + ], + [ + "how can i change your response language", + "change_language" + ], + [ + "change the language to english", + "change_language" + ], + [ + "when's the next time i get paid", + "payday" + ], + [ + "when's my next paycheck coming in", + "payday" + ], + [ + "what's the date of my next paycheck", + "payday" + ], + [ + "when do i get my paycheck", + "payday" + ], + [ + "which day is pay day", + "payday" + ], + [ + "which day is it that my payment comes in", + "payday" + ], + [ + "when am i paid or how often", + "payday" + ], + [ + "how many days until i get my payment", + "payday" + ], + [ + "what was the last check date", + "payday" + ], + [ + "when was i paid most recently", + "payday" + ], + [ + "what was the date of my last paycheck", + "payday" + ], + [ + "when did i get my check last", + "payday" + ], + [ + "how long has it been since i was paid", + "payday" + ], + [ + "how many times do i get paid in march", + "payday" + ], + [ + "what date is the next payday", + "payday" + ], + [ + "i am trying to find out when is the next payday", + "payday" + ], + [ + "what date is the next day i get paid", + "payday" + ], + [ + "when is the next payday", + "payday" + ], + [ + "what is my pay", + "payday" + ], + [ + "how much is on my paycheck this week", + "payday" + ], + [ + "what's the time of arrival on my new credit card", + "replacement_card_duration" + ], + [ + "tell me the duration it takes to get a new cc", + "replacement_card_duration" + ], + [ + "is it a short time before i receive my new credit card", + "replacement_card_duration" + ], + [ + "how long before my updated cc takes to arrive", + "replacement_card_duration" + ], + [ + "how long does it take a new card to arrive in the mail to me", + "replacement_card_duration" + ], + [ + "what is the length of time it takes a new card to get mailed to me", + "replacement_card_duration" + ], + [ + "about how long does it usually take a new card to get mailed to me", + "replacement_card_duration" + ], + [ + "how much time does it take a new card to get mailed to me", + "replacement_card_duration" + ], + [ + "how soon does it take a card new card to get mailed to me", + "replacement_card_duration" + ], + [ + "after losing a credit card, how long does it take to get a new one", + "replacement_card_duration" + ], + [ + "if i lose my credit card, will i get a replacement immediately", + "replacement_card_duration" + ], + [ + "what is the time frame for receiving a new credit card if my original one gets lost", + "replacement_card_duration" + ], + [ + "will i have to wait a long time to receive my new credit card after i lost my old one", + "replacement_card_duration" + ], + [ + "how long should i expect to wait for my replacement credit card", + "replacement_card_duration" + ], + [ + "will my new credit card be here this week", + "replacement_card_duration" + ], + [ + "how long does it usually take for a new credit card to come", + "replacement_card_duration" + ], + [ + "what is the eta on getting a replacement card", + "replacement_card_duration" + ], + [ + "show tracking information on my replacement credit card", + "replacement_card_duration" + ], + [ + "when will i get my replacement card", + "replacement_card_duration" + ], + [ + "will it take more than a month to get a new card", + "replacement_card_duration" + ], + [ + "what time is it in france", + "time" + ], + [ + "what's the time in london right now", + "time" + ], + [ + "what hour is it in london", + "time" + ], + [ + "what's the time", + "time" + ], + [ + "what is the time in london", + "time" + ], + [ + "i need to know what time it is", + "time" + ], + [ + "what time of day is it in london", + "time" + ], + [ + "tell me what time it is", + "time" + ], + [ + "what time of day is it", + "time" + ], + [ + "what time is it in the pacific timezone", + "time" + ], + [ + "what time is it in pacific standard time", + "time" + ], + [ + "what time is it over in pacific time", + "time" + ], + [ + "what time is in over there in pacific standard time", + "time" + ], + [ + "what time is it in the pacific standard time", + "time" + ], + [ + "what is the time in paris now", + "time" + ], + [ + "time in manhattan", + "time" + ], + [ + "how late is it now in ourense", + "time" + ], + [ + "what is the current time right now in hollywood", + "time" + ], + [ + "what time is it now in michigan", + "time" + ], + [ + "what's the clock say", + "time" + ], + [ + "what is the present status of my credit card application", + "application_status" + ], + [ + "what is the current status of my credit card application", + "application_status" + ], + [ + "in what status is my credit card application currently in", + "application_status" + ], + [ + "how far along is my credit card application", + "application_status" + ], + [ + "what is the status of my credit card application looking like", + "application_status" + ], + [ + "pull up my credit card application's current status", + "application_status" + ], + [ + "has my credit card application processed yet", + "application_status" + ], + [ + "check the status of my credit card application please", + "application_status" + ], + [ + "has my card application successfully gone through", + "application_status" + ], + [ + "go to the credit card site and check if my application has gone through", + "application_status" + ], + [ + "has my credit card application been approved yet", + "application_status" + ], + [ + "can you check on the status of my credit card application", + "application_status" + ], + [ + "i would like to know if my visa card application has been approved", + "application_status" + ], + [ + "can you let me know if my visa card has been approved", + "application_status" + ], + [ + "at what point will the review of my credit card application be completed", + "application_status" + ], + [ + "can you check if my mastercard application has been reviewed yet", + "application_status" + ], + [ + "has my visa card application been approved yet", + "application_status" + ], + [ + "please let me know how my credit card application is going", + "application_status" + ], + [ + "when will my credit card application be reviewed", + "application_status" + ], + [ + "please let me know if my discover card application has been approved", + "application_status" + ], + [ + "when is my flight going to board", + "flight_status" + ], + [ + "when am i boarding my flight", + "flight_status" + ], + [ + "at what time should i be boarding my flight", + "flight_status" + ], + [ + "can you please update the status of flight dl123", + "flight_status" + ], + [ + "when is the expected arrival of flight dl123", + "flight_status" + ], + [ + "is flight dl123 due to land as schedule", + "flight_status" + ], + [ + "will flight dl123 be on time", + "flight_status" + ], + [ + "are there any expected delays for flight dl123", + "flight_status" + ], + [ + "i would like to know flight dl123's status", + "flight_status" + ], + [ + "tell me flight dl123's statud", + "flight_status" + ], + [ + "for flight dl123 what's the status", + "flight_status" + ], + [ + "could you tell me the status of flight dl123", + "flight_status" + ], + [ + "when is my flight expected to arrive", + "flight_status" + ], + [ + "at what time is my flight scheduled to land", + "flight_status" + ], + [ + "what time is my flight going to land", + "flight_status" + ], + [ + "ostensibly when is my flight going to land", + "flight_status" + ], + [ + "when is my flight going to arrive", + "flight_status" + ], + [ + "what time does my flight board", + "flight_status" + ], + [ + "what is the boarding time for my upcoming flight", + "flight_status" + ], + [ + "when is my flight boarding", + "flight_status" + ], + [ + "flip a normal coin", + "flip_coin" + ], + [ + "flip a heads or tails coin i pick heads", + "flip_coin" + ], + [ + "flip a coin, i choose heads", + "flip_coin" + ], + [ + "please flip a coin - i call heads", + "flip_coin" + ], + [ + "can you flip a coin i pick heads", + "flip_coin" + ], + [ + "please flip coin ai", + "flip_coin" + ], + [ + "flip a coin now", + "flip_coin" + ], + [ + "please flip a coin", + "flip_coin" + ], + [ + "i need you to flip a coin", + "flip_coin" + ], + [ + "flip coin ai", + "flip_coin" + ], + [ + "please go ahead and flip a coin", + "flip_coin" + ], + [ + "flip the coin ai", + "flip_coin" + ], + [ + "please flip coin", + "flip_coin" + ], + [ + "i wanna flip a coin", + "flip_coin" + ], + [ + "please flip the coin", + "flip_coin" + ], + [ + "please flip the coin over ai", + "flip_coin" + ], + [ + "i'm wanting you to flip a coin", + "flip_coin" + ], + [ + "flip me a coin", + "flip_coin" + ], + [ + "i want you to flip a coin now", + "flip_coin" + ], + [ + "i call tails and you call heads on this coin flip i need you to do", + "flip_coin" + ], + [ + "will you start calling me chaz", + "change_user_name" + ], + [ + "stop calling me charlie and from now on always call me chip", + "change_user_name" + ], + [ + "from now on, refer to me as chuck", + "change_user_name" + ], + [ + "please call me charlile from here on out ok", + "change_user_name" + ], + [ + "i want you to call me a different name so can you call me charchar", + "change_user_name" + ], + [ + "please change my name to tom", + "change_user_name" + ], + [ + "from now on, my name is tom", + "change_user_name" + ], + [ + "i want to be called tom", + "change_user_name" + ], + [ + "please call me tom", + "change_user_name" + ], + [ + "you can call me jason", + "change_user_name" + ], + [ + "my name is jason", + "change_user_name" + ], + [ + "jason is my name", + "change_user_name" + ], + [ + "i prefer to be called jason", + "change_user_name" + ], + [ + "i am jason", + "change_user_name" + ], + [ + "you shall address me as nick", + "change_user_name" + ], + [ + "my name is nick", + "change_user_name" + ], + [ + "refer to me as nick", + "change_user_name" + ], + [ + "the name is nick", + "change_user_name" + ], + [ + "you could say my name is nick", + "change_user_name" + ], + [ + "i am camile", + "change_user_name" + ], + [ + "what place were you born at", + "where_are_you_from" + ], + [ + "where were you born as a kid", + "where_are_you_from" + ], + [ + "tell me where you were created", + "where_are_you_from" + ], + [ + "what place were you made at", + "where_are_you_from" + ], + [ + "what place were you actually born at", + "where_are_you_from" + ], + [ + "what place do you come from", + "where_are_you_from" + ], + [ + "where do you hale from", + "where_are_you_from" + ], + [ + "what place were you born", + "where_are_you_from" + ], + [ + "where are you from before you got here", + "where_are_you_from" + ], + [ + "let me know when you were made", + "where_are_you_from" + ], + [ + "where you from", + "where_are_you_from" + ], + [ + "where are you from if i may ask", + "where_are_you_from" + ], + [ + "where are you from oroginally", + "where_are_you_from" + ], + [ + "where are you originally from before coming here", + "where_are_you_from" + ], + [ + "what's your home town", + "where_are_you_from" + ], + [ + "what country are you from", + "where_are_you_from" + ], + [ + "are you from here", + "where_are_you_from" + ], + [ + "were you made here", + "where_are_you_from" + ], + [ + "where did you come from", + "where_are_you_from" + ], + [ + "you were made where", + "where_are_you_from" + ], + [ + "i'm not sure if watermelon is on my shopping list, but if it isn't can you put it on there", + "shopping_list_update" + ], + [ + "is it possible to add grapes to my shopping list if they aren't on there already", + "shopping_list_update" + ], + [ + "please add bananas to my shopping list unless i already did", + "shopping_list_update" + ], + [ + "can you add apples to my shopping list if they aren't already on there", + "shopping_list_update" + ], + [ + "would you be willing to add bread to my shopping list if i haven't already", + "shopping_list_update" + ], + [ + "i'm out of cleaning supplies, remind me on my list", + "shopping_list_update" + ], + [ + "i don't have any more steak, please put that on my grocery list", + "shopping_list_update" + ], + [ + "i'm out of apples, add that to my list", + "shopping_list_update" + ], + [ + "i have no oranges, put them onto my list", + "shopping_list_update" + ], + [ + "do i have peanuts on my shopping list if not please add it", + "shopping_list_update" + ], + [ + "do i have soda on my shopping list if not please add it", + "shopping_list_update" + ], + [ + "i'm out of kleenex so will you put that on my shopping list", + "shopping_list_update" + ], + [ + "i'm out of paper towels so will you put that on my shopping list", + "shopping_list_update" + ], + [ + "i'm out of toilet paper so will you put that on my shopping list", + "shopping_list_update" + ], + [ + "do i have graham crackers on my shopping list if not please add it", + "shopping_list_update" + ], + [ + "i'm out of clorox wipes so will you put that on my shopping list", + "shopping_list_update" + ], + [ + "do i have tortillas on my shopping list if not please add it", + "shopping_list_update" + ], + [ + "i'm out of laundry detergent so will you put that on my shopping list", + "shopping_list_update" + ], + [ + "do i have cheese on my shopping list if not please add it", + "shopping_list_update" + ], + [ + "i'd like you to add oranges to my shopping list", + "shopping_list_update" + ], + [ + "what categories of questions can you answer", + "what_can_i_ask_you" + ], + [ + "what kind of questions can i ask the ai", + "what_can_i_ask_you" + ], + [ + "can you tell me what i can ask the ai", + "what_can_i_ask_you" + ], + [ + "what types of things can i ask the ai", + "what_can_i_ask_you" + ], + [ + "what kind of things can i ask the ai", + "what_can_i_ask_you" + ], + [ + "what can i ask the ai", + "what_can_i_ask_you" + ], + [ + "what questions can you answer", + "what_can_i_ask_you" + ], + [ + "what am i allowed to ask you", + "what_can_i_ask_you" + ], + [ + "what all can i ask you", + "what_can_i_ask_you" + ], + [ + "what are you capable of doing and answering", + "what_can_i_ask_you" + ], + [ + "what are you capable of answering", + "what_can_i_ask_you" + ], + [ + "what kinds of subjects do you know about", + "what_can_i_ask_you" + ], + [ + "what are the different subjects that you know", + "what_can_i_ask_you" + ], + [ + "which kinds of info are you familiar with", + "what_can_i_ask_you" + ], + [ + "what kind of information do you know", + "what_can_i_ask_you" + ], + [ + "which subjects can you tell me about", + "what_can_i_ask_you" + ], + [ + "can i ask you all different types of questions", + "what_can_i_ask_you" + ], + [ + "can you answer all types of questions", + "what_can_i_ask_you" + ], + [ + "what topics can you answer questions on", + "what_can_i_ask_you" + ], + [ + "what kind of questions can you answer", + "what_can_i_ask_you" + ], + [ + "i do not have that information", + "maybe" + ], + [ + "i can't give you an answer to that", + "maybe" + ], + [ + "i do not know the answer to that", + "maybe" + ], + [ + "perhaps", + "maybe" + ], + [ + "possibly either one", + "maybe" + ], + [ + "i don't have any idea", + "maybe" + ], + [ + "can't say", + "maybe" + ], + [ + "i couldn't say either could be possible", + "maybe" + ], + [ + "which one i don't know either i guess", + "maybe" + ], + [ + "i just don't know", + "maybe" + ], + [ + "don't have any idea", + "maybe" + ], + [ + "i couldn't say", + "maybe" + ], + [ + "i don't know the anwser", + "maybe" + ], + [ + "couldn't tell you", + "maybe" + ], + [ + "either i am not sure", + "maybe" + ], + [ + "either of them could be i'm not sure", + "maybe" + ], + [ + "don't know", + "maybe" + ], + [ + "idk", + "maybe" + ], + [ + "i don't have an answer for that", + "maybe" + ], + [ + "maybe it does", + "maybe" + ], + [ + "procedure to change oil in car", + "oil_change_how" + ], + [ + "way to change car oil", + "oil_change_how" + ], + [ + "how to change oil of a car", + "oil_change_how" + ], + [ + "how can i change car oil", + "oil_change_how" + ], + [ + "i want to know how to change oil, tell me the steps one at a time while i work through it", + "oil_change_how" + ], + [ + "find step by step instructions on how to change my oil", + "oil_change_how" + ], + [ + "how do i change oil on a car", + "oil_change_how" + ], + [ + "where can i find a page showing my how to change my oil", + "oil_change_how" + ], + [ + "what weight oil do i need and how do i change the oil for my chevy truck", + "oil_change_how" + ], + [ + "what kind of oil do i need for my ford truck and how can i change it", + "oil_change_how" + ], + [ + "what kind of oil and how much do i need for my toyota tacoma truck and how do i do it", + "oil_change_how" + ], + [ + "i need to know how to change my oil and what kind of oil for a 2007 trailblazer", + "oil_change_how" + ], + [ + "what oil do i need for my honda crv and how do i change it", + "oil_change_how" + ], + [ + "i need a tutorial to learn how to change my oil, please", + "oil_change_how" + ], + [ + "what steps do i need to follow to change the oil in my car", + "oil_change_how" + ], + [ + "can you get me simple instructions on how to do an oil change", + "oil_change_how" + ], + [ + "i want to figure out how to do an oil change on my car", + "oil_change_how" + ], + [ + "can you teach me to change my oil", + "oil_change_how" + ], + [ + "can you tell me how to change my oil", + "oil_change_how" + ], + [ + "can you find some instructions on how to change my oil", + "oil_change_how" + ], + [ + "please reserve a table for 2 at lucky's under the name melissa at 7 pm", + "restaurant_reservation" + ], + [ + "i would like to reserve a table for 2 at sam's steakhouse under the name jessie at 6:30 pm", + "restaurant_reservation" + ], + [ + "help me reserve a table for 3 at lucky's under the name crystal at 8 pm", + "restaurant_reservation" + ], + [ + "would you please schedule a reservation for 2 at lucky's under the name sam at 7:30pm", + "restaurant_reservation" + ], + [ + "could you please reserve a table for 6 at lucille's under the name tom at 5pm", + "restaurant_reservation" + ], + [ + "is there a reservation available at ruth chris today", + "restaurant_reservation" + ], + [ + "are there 8pm tables available at texas roadhouse", + "restaurant_reservation" + ], + [ + "book a reservation for 3 at xenophobe under the name zebee", + "restaurant_reservation" + ], + [ + "i need to book a reservation for 3 at xenophobe under the name zebee", + "restaurant_reservation" + ], + [ + "book 3 under the name zebee at xenophobe", + "restaurant_reservation" + ], + [ + "what reservations are available for 3 people at the xenophobe", + "restaurant_reservation" + ], + [ + "under the name zebee book a reservation at the xenophobe for 3", + "restaurant_reservation" + ], + [ + "use the name wheeler to reserve a table for 3 at andrea's steakhouse at 5pm", + "restaurant_reservation" + ], + [ + "make a reservation for wheeler party of 3 for 5pm at andrea's steakhouse", + "restaurant_reservation" + ], + [ + "reserve a table for 3 at andrea's steakhouse around 5pm under the name wheeler", + "restaurant_reservation" + ], + [ + "i need a table for 3 at 5pm at andrea's steakhouse under wheeler", + "restaurant_reservation" + ], + [ + "reserve a table for 3 under the name wheeler at andrea's steakhouse for 5pm", + "restaurant_reservation" + ], + [ + "book room for me and her under the name kendra", + "restaurant_reservation" + ], + [ + "allow me to turn on the lights", + "restaurant_reservation" + ], + [ + "make me a reservation for 5 people at village tavern for the calloways", + "restaurant_reservation" + ], + [ + "do i have more than $100 in my pnc account", + "balance" + ], + [ + "what's my pnc balance", + "balance" + ], + [ + "how much is in my pnc account", + "balance" + ], + [ + "how much money do i have in my pnc account", + "balance" + ], + [ + "what is the balance in my pnc account", + "balance" + ], + [ + "can i get beer within my deposit account", + "balance" + ], + [ + "is there enough in my savings account to get a new tv", + "balance" + ], + [ + "could be there be a good amount of money in my checking account to go on a vacation", + "balance" + ], + [ + "can i afford a new tv from my savings account", + "balance" + ], + [ + "will i have enough to get a new roku with my savings account", + "balance" + ], + [ + "do you think i have enough money in my chase account for a new pair of sneakers", + "balance" + ], + [ + "i hope i have enough money in my chase account to buy new clothes", + "balance" + ], + [ + "i am not sure if i have enough money in my chase account to buy a new dress", + "balance" + ], + [ + "i wonder if i have enough money in my chase account for a bike", + "balance" + ], + [ + "i keep trying to figure out if i have enough money in my chase account to purchase a new set of tires", + "balance" + ], + [ + "please tell me how much money i have in my bank accounts", + "balance" + ], + [ + "i need to know how much money i have in all of my bank accounts", + "balance" + ], + [ + "how much money is in all of my bank accounts", + "balance" + ], + [ + "how much money is in my bank accounts", + "balance" + ], + [ + "can you tell me how much money i have i my bank accounts", + "balance" + ], + [ + "please double check my reservations for six at mani", + "confirm_reservation" + ], + [ + "confirm my johnny rockets reservation for this evening", + "confirm_reservation" + ], + [ + "confirm four for my reservation at fiji", + "confirm_reservation" + ], + [ + "make sure my flower bar reservation is scheduled for tomorrow", + "confirm_reservation" + ], + [ + "please double check on my reservations for buffalo wild wings at five for the game", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at applebee's for kristen", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at chili's for bart", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at longhorn for justin", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at outback for josh", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at carrabbas for heather", + "confirm_reservation" + ], + [ + "i want to confirm friday's reservation at 2:00", + "confirm_reservation" + ], + [ + "confirm my friday reservation at 2:00", + "confirm_reservation" + ], + [ + "i am here to conform my friday reservation at 2:00", + "confirm_reservation" + ], + [ + "you know the reservation i have on 2:00 friday i confirm it", + "confirm_reservation" + ], + [ + "i'd like to confirm the 2:00 reservation for friday", + "confirm_reservation" + ], + [ + "check to see if i am still booked to be eating at gusto handcrafted pasta & pizza at 6:30 pm", + "confirm_reservation" + ], + [ + "is my dinner reservation for gusto handcrafted pasta & pizza at 6:30 pm still valid", + "confirm_reservation" + ], + [ + "please call gusto handcrafted pasta & pizza and ask them about the status of my reservation for 6:30 pm", + "confirm_reservation" + ], + [ + "will you check to see if i am still reserved for 6:30 pm at gusto handcrafted pasta & pizza", + "confirm_reservation" + ], + [ + "please confirm my reservation for dinner at gusto handcrafted pasta & pizza at 6:30 pm", + "confirm_reservation" + ], + [ + "may you stop a paymet on my account", + "freeze_account" + ], + [ + "how we stop my account", + "freeze_account" + ], + [ + "can you place a stop on my account", + "freeze_account" + ], + [ + "can we stop my bank account", + "freeze_account" + ], + [ + "please put a block on my capital one account immediately", + "freeze_account" + ], + [ + "please put a block on my discover account immediately", + "freeze_account" + ], + [ + "please put a block on my regions account immediately", + "freeze_account" + ], + [ + "please put a block on my wells fargo account immediately", + "freeze_account" + ], + [ + "please put a block on my us bank account immediately", + "freeze_account" + ], + [ + "i need you to act swiftly and freeze all activity on my capital one checking", + "freeze_account" + ], + [ + "place a hold on my chase money market market account at once", + "freeze_account" + ], + [ + "i need to block all transactions from going through on my citi checking account straight away", + "freeze_account" + ], + [ + "please immediately block my navy federal credit union account", + "freeze_account" + ], + [ + "can you initiate a block on my bank of america checking asap", + "freeze_account" + ], + [ + "i need my savings account placed under a block as soon as possible", + "freeze_account" + ], + [ + "please put a hold on my retirement account right now", + "freeze_account" + ], + [ + "i need a block placed right away on my joint checking account", + "freeze_account" + ], + [ + "i want a block placed on my checking account right away", + "freeze_account" + ], + [ + "i want a block placed on my college fund account immediately", + "freeze_account" + ], + [ + "can you please freeze my account", + "freeze_account" + ], + [ + "will my 401k rollover", + "rollover_401k" + ], + [ + "will my 401k carryover", + "rollover_401k" + ], + [ + "will my 401k carryover or not", + "rollover_401k" + ], + [ + "can my 401k rollover or not", + "rollover_401k" + ], + [ + "could my 401k be rolled over", + "rollover_401k" + ], + [ + "can the 401k i have be rolled over", + "rollover_401k" + ], + [ + "is there a way to roll over my 401k", + "rollover_401k" + ], + [ + "is it possible to rollover my 401k", + "rollover_401k" + ], + [ + "am i able to rollover my 401k", + "rollover_401k" + ], + [ + "how should i rollover my 401k", + "rollover_401k" + ], + [ + "i need help with my 401k rollover because i just got a new job", + "rollover_401k" + ], + [ + "how do i do a 401k rollover when switching to a new job", + "rollover_401k" + ], + [ + "due to getting a new job i need assistance with my 401k rollover", + "rollover_401k" + ], + [ + "i'm at a new job and i need to do a 401k rollover, how do i do this", + "rollover_401k" + ], + [ + "what are you suppose to do with a 401k rollover when getting a new job", + "rollover_401k" + ], + [ + "how do i rollover my 401k", + "rollover_401k" + ], + [ + "rolling over my 401k help", + "rollover_401k" + ], + [ + "assistance in rolling over my 401k", + "rollover_401k" + ], + [ + "401k rollover help", + "rollover_401k" + ], + [ + "rollover my 401k assistance", + "rollover_401k" + ], + [ + "who is your designer", + "who_made_you" + ], + [ + "what company is responsible for your design", + "who_made_you" + ], + [ + "who is responsible for your design", + "who_made_you" + ], + [ + "what firm is responsible for your design", + "who_made_you" + ], + [ + "who were you created by", + "who_made_you" + ], + [ + "what is the company that made you", + "who_made_you" + ], + [ + "who are you manufactured by", + "who_made_you" + ], + [ + "who is your manufacturer", + "who_made_you" + ], + [ + "who makes you", + "who_made_you" + ], + [ + "what organization manufactures you", + "who_made_you" + ], + [ + "who's your creator", + "who_made_you" + ], + [ + "what manufactures you", + "who_made_you" + ], + [ + "who is the person responsible for creating you", + "who_made_you" + ], + [ + "who brought you into existence", + "who_made_you" + ], + [ + "who formed thou", + "who_made_you" + ], + [ + "who conjured you", + "who_made_you" + ], + [ + "who programmed you", + "who_made_you" + ], + [ + "where were you programmed", + "who_made_you" + ], + [ + "what company designed you", + "who_made_you" + ], + [ + "who or what programmed you, do you know", + "who_made_you" + ], + [ + "whats the travel time to redmond right now", + "distance" + ], + [ + "travel time to bend, oregon", + "distance" + ], + [ + "how long will the trip to portland be", + "distance" + ], + [ + "how long is it going to take me to get to bellevue", + "distance" + ], + [ + "how long will it take to get to tacoma", + "distance" + ], + [ + "how long is the drive to the closest gas station", + "distance" + ], + [ + "how much time to drive to the closest bank", + "distance" + ], + [ + "can you tell me the drive time to the nearest gas station", + "distance" + ], + [ + "i need to know how long it will take me to get to the bank", + "distance" + ], + [ + "how long will it take for me to get to the gas station", + "distance" + ], + [ + "what is the remaining time until we are at our destination", + "distance" + ], + [ + "how many miles away am i from madison square garden", + "distance" + ], + [ + "how long would it take to get to chicago by bus", + "distance" + ], + [ + "how long to seattle on a bus", + "distance" + ], + [ + "how long is it to ann arbor by bus", + "distance" + ], + [ + "how long to washington dc on a bus", + "distance" + ], + [ + "if going to lake placid, ny, how long would it be by bus", + "distance" + ], + [ + "what is the average time it takes to get to target in los angeles", + "distance" + ], + [ + "can you please tell me how long it will take to get to target in austin", + "distance" + ], + [ + "how long would it take to get to mcdonald's in houston", + "distance" + ], + [ + "do you know who i am", + "user_name" + ], + [ + "do you have my name programmed", + "user_name" + ], + [ + "do you think my name is jeff", + "user_name" + ], + [ + "is joey my name", + "user_name" + ], + [ + "tell me my name", + "user_name" + ], + [ + "say my name in a sentence", + "user_name" + ], + [ + "what is my name", + "user_name" + ], + [ + "tell me my name the way its saved", + "user_name" + ], + [ + "tell me what my name is", + "user_name" + ], + [ + "how is my name saved", + "user_name" + ], + [ + "which way do you have my name saved", + "user_name" + ], + [ + "in what form is my name saved", + "user_name" + ], + [ + "how does my name appear", + "user_name" + ], + [ + "how is my name saved aw", + "user_name" + ], + [ + "how do you show my name", + "user_name" + ], + [ + "do you know what my name is", + "user_name" + ], + [ + "are you able to call me by my name", + "user_name" + ], + [ + "what do you want to call me", + "user_name" + ], + [ + "what is the name you would use for me", + "user_name" + ], + [ + "what name is saved for me", + "user_name" + ], + [ + "what is the timezone of saigon", + "timezone" + ], + [ + "what timezone is hanoi in", + "timezone" + ], + [ + "what timezone do ho chi minh use", + "timezone" + ], + [ + "what timezone is honolulu in", + "timezone" + ], + [ + "what timezone is paris in", + "timezone" + ], + [ + "which time zone is germany is in", + "timezone" + ], + [ + "what are the time zones of russia", + "timezone" + ], + [ + "which time zones does european countries use", + "timezone" + ], + [ + "what is the time zone of china", + "timezone" + ], + [ + "tell me the timezone for hong kong", + "timezone" + ], + [ + "which timezone contains the city of orlando", + "timezone" + ], + [ + "british columbia can be found in what timezone", + "timezone" + ], + [ + "in what timezone is atlanta located", + "timezone" + ], + [ + "give me the timezone where vancouver is", + "timezone" + ], + [ + "what timezone is the country in", + "timezone" + ], + [ + "is the timezone there different", + "timezone" + ], + [ + "what's the timezone over there", + "timezone" + ], + [ + "what's london's timezone", + "timezone" + ], + [ + "do you know london's timezone", + "timezone" + ], + [ + "what timezone is london in", + "timezone" + ], + [ + "i want you to skip past this song to the next track", + "next_song" + ], + [ + "please skip this song and go to the next one instead", + "next_song" + ], + [ + "would you skip past this song and just play what comes next", + "next_song" + ], + [ + "i dont want to hear this song, just play the next one", + "next_song" + ], + [ + "let's skip over this song and listen to the next tune instead", + "next_song" + ], + [ + "would you play the next song", + "next_song" + ], + [ + "i want you to skip this song", + "next_song" + ], + [ + "i need for you to skip this song", + "next_song" + ], + [ + "please skip this song for me", + "next_song" + ], + [ + "would you skip this song", + "next_song" + ], + [ + "i don't want to hear this song; skip it", + "next_song" + ], + [ + "now, i want you to play the next song", + "next_song" + ], + [ + "i am needing the next song to be played", + "next_song" + ], + [ + "i want the next song played", + "next_song" + ], + [ + "needing you to play the next song", + "next_song" + ], + [ + "next song please", + "next_song" + ], + [ + "change this song it sucks so bad", + "next_song" + ], + [ + "can i hear the song after this one", + "next_song" + ], + [ + "can you skip this song and go to the next one", + "next_song" + ], + [ + "what is the next song on this playlist", + "next_song" + ], + [ + "show all purchases of video games", + "transactions" + ], + [ + "show me all video games purchased", + "transactions" + ], + [ + "list all purchases of video games", + "transactions" + ], + [ + "show me all new transactions", + "transactions" + ], + [ + "what transactions have i made in the last few weeks", + "transactions" + ], + [ + "how much money have i spent on restaurants", + "transactions" + ], + [ + "what transactions did i put on my visa last month", + "transactions" + ], + [ + "what transactions have i accrued buying dog food", + "transactions" + ], + [ + "what are my recent purchases", + "transactions" + ], + [ + "please tell me all the purchases on my hy-vee card for this statement period", + "transactions" + ], + [ + "please let me review all items on my mastercard from this billing period", + "transactions" + ], + [ + "please tell me this month's transactions on my visa", + "transactions" + ], + [ + "show me all transactions for current statement", + "transactions" + ], + [ + "i want to see transactions from this month", + "transactions" + ], + [ + "how many paypal transactions did i have last week", + "transactions" + ], + [ + "what items do i have on my amex card this month", + "transactions" + ], + [ + "what transactions do i have on my visa from the last 4 weeks", + "transactions" + ], + [ + "what withdrawals were there on my account yesterday", + "transactions" + ], + [ + "was my last transaction at walmart", + "transactions" + ], + [ + "how much was my last transaction for", + "transactions" + ], + [ + "where do you want to eat tonight", + "restaurant_suggestion" + ], + [ + "where is your favorite restaurant to eat", + "restaurant_suggestion" + ], + [ + "do you have any restaurant recommendations", + "restaurant_suggestion" + ], + [ + "where should we eat tonight", + "restaurant_suggestion" + ], + [ + "where are the best places to eat", + "restaurant_suggestion" + ], + [ + "are there any vegan restaurants in my town", + "restaurant_suggestion" + ], + [ + "list a few pizza places that have seating near my current location", + "restaurant_suggestion" + ], + [ + "are there decent seafood restaurants in portland", + "restaurant_suggestion" + ], + [ + "name a few good steakhouses in chicago", + "restaurant_suggestion" + ], + [ + "does brooklyn have good italian restaurants", + "restaurant_suggestion" + ], + [ + "i would love to find a few vegan restaurants in back bay", + "restaurant_suggestion" + ], + [ + "suggest a few local eateries in mid price range", + "restaurant_suggestion" + ], + [ + "i feel like going out for sushi tonight who in the area serves good sushi", + "restaurant_suggestion" + ], + [ + "i am looking for good southeast asian restaurants in philadelphia", + "restaurant_suggestion" + ], + [ + "i want to eat mediterranean fare with at least four stars, near me", + "restaurant_suggestion" + ], + [ + "what are some good ethiopian restaurants in queens", + "restaurant_suggestion" + ], + [ + "what are some good itialian restaurants in north salem", + "restaurant_suggestion" + ], + [ + "what are some good vegan restaurants in broadripple", + "restaurant_suggestion" + ], + [ + "what are some good mexican restaurants in indianapolis", + "restaurant_suggestion" + ], + [ + "what are some good southern bbq restaurants in nashville", + "restaurant_suggestion" + ], + [ + "whats the reward balance for my visa", + "rewards_balance" + ], + [ + "for my visa what's my reward balance", + "rewards_balance" + ], + [ + "i need know know the reward balance for my visa", + "rewards_balance" + ], + [ + "can you tell me my visa's reward balance", + "rewards_balance" + ], + [ + "what's my visa cards balance for rewards", + "rewards_balance" + ], + [ + "how many points do i have with my american express", + "rewards_balance" + ], + [ + "tell me the points on my delta rewards card", + "rewards_balance" + ], + [ + "how many points on my chase unlimited card", + "rewards_balance" + ], + [ + "what is my kohls card's rewards balance", + "rewards_balance" + ], + [ + "what is my gymboree card's rewards balance", + "rewards_balance" + ], + [ + "what is my old navy card's rewards balance", + "rewards_balance" + ], + [ + "how do i check my rewards for my maurices card", + "rewards_balance" + ], + [ + "how do i check my rewards for my chase card", + "rewards_balance" + ], + [ + "what is my amazon card's rewards balance", + "rewards_balance" + ], + [ + "how do i check my rewards for my old navy card", + "rewards_balance" + ], + [ + "what is my maurices card's rewards balance", + "rewards_balance" + ], + [ + "how do i check my rewards for my capital one card", + "rewards_balance" + ], + [ + "how do i check my rewards for my target card", + "rewards_balance" + ], + [ + "how many points have i earned with my amex card", + "rewards_balance" + ], + [ + "how many points have i earned with my chase card", + "rewards_balance" + ], + [ + "can you assist with my utility bill payment", + "pay_bill" + ], + [ + "my utility bill is coming due and i need a loan", + "pay_bill" + ], + [ + "can i get some funds to pay my utility bill", + "pay_bill" + ], + [ + "i will require help to take care of my utility bill", + "pay_bill" + ], + [ + "i want assistance with my utility bill", + "pay_bill" + ], + [ + "tell me if you can help pay a bill", + "pay_bill" + ], + [ + "pay a bill!", + "pay_bill" + ], + [ + "i want to pay a bill", + "pay_bill" + ], + [ + "pay my monthy mortgage payment", + "pay_bill" + ], + [ + "submit payment to duke energy for my electric bill", + "pay_bill" + ], + [ + "make a quarterly payment on my life insurance premium", + "pay_bill" + ], + [ + "i need to pay my time warner cable bill", + "pay_bill" + ], + [ + "submit full payment to chase for my visa bill", + "pay_bill" + ], + [ + "please pay my utility bill from my wells fargo checking account", + "pay_bill" + ], + [ + "pay my water bill from my chase account please", + "pay_bill" + ], + [ + "pay my dte bill from my checking account please", + "pay_bill" + ], + [ + "use my boa account to pay the cable bill", + "pay_bill" + ], + [ + "use my savings account to pay xfinity", + "pay_bill" + ], + [ + "i want to pay my cable bill directly from my checking account", + "pay_bill" + ], + [ + "pay my cable bill directly from my checking account", + "pay_bill" + ], + [ + "could you tell me what kind of money i've recently spent", + "spending_history" + ], + [ + "how much have i spent lately", + "spending_history" + ], + [ + "how much have i recently spent", + "spending_history" + ], + [ + "how much money have i recently spent on stuff", + "spending_history" + ], + [ + "how much did i spend on shcool due last year", + "spending_history" + ], + [ + "how much did i spend on bills last month", + "spending_history" + ], + [ + "did i buy too many donuts recently, like last week", + "spending_history" + ], + [ + "did i spend too much dough on donuts last week", + "spending_history" + ], + [ + "have i been spending excessively on donuts recently", + "spending_history" + ], + [ + "was i spending too much money on doughnuts last week", + "spending_history" + ], + [ + "have i spent too much of my paycheck on donuts lately", + "spending_history" + ], + [ + "how much money did i spent on grocery recently", + "spending_history" + ], + [ + "how much did i spend on grocery shopping recently", + "spending_history" + ], + [ + "can you tell me how much i spent on grocery shopping recently", + "spending_history" + ], + [ + "tell me how much i have spent on grocery shopping just now", + "spending_history" + ], + [ + "would you mind telling me how much i have spent recently on grocery shopping", + "spending_history" + ], + [ + "how much have i spent on shoes recently", + "spending_history" + ], + [ + "how much have i spent on groceries recently", + "spending_history" + ], + [ + "how much have i spent on eating out recently", + "spending_history" + ], + [ + "how much have i spent on make up recently", + "spending_history" + ], + [ + "will i be permitted to take my vacation", + "pto_request_status" + ], + [ + "what's the status of my vacation days", + "pto_request_status" + ], + [ + "did i get approval yet to take off next week", + "pto_request_status" + ], + [ + "has my vacation been okayed yet", + "pto_request_status" + ], + [ + "has my maternity leave been approved", + "pto_request_status" + ], + [ + "did my vacation get approved yet", + "pto_request_status" + ], + [ + "what's the status of my medical leave", + "pto_request_status" + ], + [ + "what's the status on my vacation approval", + "pto_request_status" + ], + [ + "when will my vacation get okayed", + "pto_request_status" + ], + [ + "am i cleared to miss work for vacation", + "pto_request_status" + ], + [ + "check if my vacation time has been approved", + "pto_request_status" + ], + [ + "has my request for time off been approved", + "pto_request_status" + ], + [ + "look up the status of my time off request", + "pto_request_status" + ], + [ + "what is the status of my vacation time request", + "pto_request_status" + ], + [ + "i would really like to know if i can go on vacation", + "pto_request_status" + ], + [ + "i was wondering about the vacation time you said you'll approve", + "pto_request_status" + ], + [ + "hey, have you approved my vacation time yet", + "pto_request_status" + ], + [ + "can you tell me whether or not you approved my vacation time", + "pto_request_status" + ], + [ + "has my request for vacation time been approved", + "pto_request_status" + ], + [ + "please tell me if there's been any word on my vacation request", + "pto_request_status" + ], + [ + "please lookup my experion credit score", + "credit_score" + ], + [ + "look up my fico credit score", + "credit_score" + ], + [ + "relate to me what my credit score is", + "credit_score" + ], + [ + "can you share my credit score with me", + "credit_score" + ], + [ + "what's my current credit score", + "credit_score" + ], + [ + "where do i go to look at my credit score", + "credit_score" + ], + [ + "what's my credit rating right now", + "credit_score" + ], + [ + "who tracks my credit score", + "credit_score" + ], + [ + "how bad is my current credit score", + "credit_score" + ], + [ + "what's my current credit rating", + "credit_score" + ], + [ + "where's my credit score", + "credit_score" + ], + [ + "how is my credit looking", + "credit_score" + ], + [ + "how do i locate my credit rating", + "credit_score" + ], + [ + "do you know what my precise credit score is", + "credit_score" + ], + [ + "how can i request my credit score", + "credit_score" + ], + [ + "do you know my credit rating number", + "credit_score" + ], + [ + "is my credit good enough to get a new card", + "credit_score" + ], + [ + "how high is my credit score", + "credit_score" + ], + [ + "can you tell me my credit rating", + "credit_score" + ], + [ + "what's my latest credit score", + "credit_score" + ], + [ + "who has the best credit card offering for a college student", + "new_card" + ], + [ + "can you suggest a few credit cards that have good rewards points", + "new_card" + ], + [ + "i would like to know more about getting a new credit card", + "new_card" + ], + [ + "who should i apply for a credit card for", + "new_card" + ], + [ + "tell me how i can apply for a chase credit card", + "new_card" + ], + [ + "tell me about the chase credit card application process", + "new_card" + ], + [ + "i want to apply for a wells fargo credit card", + "new_card" + ], + [ + "how do i go about applying for a macy's credit card", + "new_card" + ], + [ + "i want to put in an application for a line of a credit card how do i do that", + "new_card" + ], + [ + "i want to apply for a new credit card", + "new_card" + ], + [ + "i need a new credit card, show me suggestions", + "new_card" + ], + [ + "i need to apply for a new credit card that will match my needs", + "new_card" + ], + [ + "show me some options for new credit cards that i can apply for, please", + "new_card" + ], + [ + "what new credit card should i submit an application for", + "new_card" + ], + [ + "can i apply for a paypal master card", + "new_card" + ], + [ + "where can i apply for a black amex card", + "new_card" + ], + [ + "how would i apply for an american express", + "new_card" + ], + [ + "what do i need to do to apply for a visa card", + "new_card" + ], + [ + "how does one apply for a master card", + "new_card" + ], + [ + "assist me in getting a new credit card", + "new_card" + ], + [ + "who do i contact for lost luggage", + "lost_luggage" + ], + [ + "where is my luggage", + "lost_luggage" + ], + [ + "who can i call about my luggage", + "lost_luggage" + ], + [ + "howcan i locate my luggage", + "lost_luggage" + ], + [ + "i think i lost my luggage", + "lost_luggage" + ], + [ + "what to do if i lost my luggage", + "lost_luggage" + ], + [ + "what do i do if my luggage is lost", + "lost_luggage" + ], + [ + "what should i do if i lost my luggage", + "lost_luggage" + ], + [ + "i think my luggage is stolen", + "lost_luggage" + ], + [ + "what do i do if i lost my luggage", + "lost_luggage" + ], + [ + "what can i do if i lost my luggage", + "lost_luggage" + ], + [ + "my luggage is missing", + "lost_luggage" + ], + [ + "i think my luggage is missing", + "lost_luggage" + ], + [ + "my luggage is lost", + "lost_luggage" + ], + [ + "i was flying out of chicago on american airlines flight ab123 and my luggage is now lost", + "lost_luggage" + ], + [ + "my luggage is missing off of american airlines flight ab123 out of chicago", + "lost_luggage" + ], + [ + "what am i supposed to do if i lost my luggage", + "lost_luggage" + ], + [ + "what is the procedure if i lost my luggage", + "lost_luggage" + ], + [ + "what steps should i follow if i lost my luggage", + "lost_luggage" + ], + [ + "where do i report if i lost my luggage", + "lost_luggage" + ], + [ + "i want to hear that again", + "repeat" + ], + [ + "repeat that for me", + "repeat" + ], + [ + "could that be repeated", + "repeat" + ], + [ + "can you repeat what you said", + "repeat" + ], + [ + "i did not hear what you said", + "repeat" + ], + [ + "what did you just ask", + "repeat" + ], + [ + "can you ask me that again", + "repeat" + ], + [ + "what question did you just ask me", + "repeat" + ], + [ + "can you repeat that question", + "repeat" + ], + [ + "what was said", + "repeat" + ], + [ + "what", + "repeat" + ], + [ + "repeat that once more", + "repeat" + ], + [ + "please repeat what you said", + "repeat" + ], + [ + "please ask me again", + "repeat" + ], + [ + "i'm sorry, i didn't understand what you said", + "repeat" + ], + [ + "what did you ask again", + "repeat" + ], + [ + "please say that again", + "repeat" + ], + [ + "can you repeat that please", + "repeat" + ], + [ + "what was that question again", + "repeat" + ], + [ + "i'm sorry please repeat the question", + "repeat" + ], + [ + "how well is the gas mileage while i'm in the city", + "mpg" + ], + [ + "how's my gas mileage in citys", + "mpg" + ], + [ + "what kind of miles per gallon do i get while driving through a city", + "mpg" + ], + [ + "what kind of gas mileage does this car get when going through a city", + "mpg" + ], + [ + "how's my gas mileage while driving through a city", + "mpg" + ], + [ + "how many miles per gallon does my amc rambler get", + "mpg" + ], + [ + "what's the gas mileage on a juke", + "mpg" + ], + [ + "what is the gas mileage on a 2012 ford fusion", + "mpg" + ], + [ + "how many mpg does an equinox get", + "mpg" + ], + [ + "what is the gas mileage on a ford falcon", + "mpg" + ], + [ + "how many miles does this car get per gallon", + "mpg" + ], + [ + "what is the mpg for this car", + "mpg" + ], + [ + "i need to know this car's mpg", + "mpg" + ], + [ + "how many miles will i get for one gallon on this car", + "mpg" + ], + [ + "i would like to know the mpg for this car", + "mpg" + ], + [ + "what's the mpg of my car", + "mpg" + ], + [ + "get me info on my mpg", + "mpg" + ], + [ + "tell me the mpg of my vehicle", + "mpg" + ], + [ + "how many mpg does my car get", + "mpg" + ], + [ + "what's the mpg rating on my car", + "mpg" + ], + [ + "when is it time to change your oil", + "oil_change_when" + ], + [ + "how do you know if your oil needs changed", + "oil_change_when" + ], + [ + "can you tell me when i should change my oil", + "oil_change_when" + ], + [ + "when should i change my oil", + "oil_change_when" + ], + [ + "how long does it take before you have to change your oil", + "oil_change_when" + ], + [ + "when does my oil need to be changed", + "oil_change_when" + ], + [ + "what is the schedule for my next oil change", + "oil_change_when" + ], + [ + "am i ready for an oil change soon", + "oil_change_when" + ], + [ + "when do i need to change my oil next", + "oil_change_when" + ], + [ + "when do i need to change my motor oil again", + "oil_change_when" + ], + [ + "when do i need to change my motor oil", + "oil_change_when" + ], + [ + "when do i need to change my motor oil next", + "oil_change_when" + ], + [ + "so when should i change the oil", + "oil_change_when" + ], + [ + "when i should change oil", + "oil_change_when" + ], + [ + "when should change oil tell me please", + "oil_change_when" + ], + [ + "tell me when i should change me oil", + "oil_change_when" + ], + [ + "i need to know when to change oil", + "oil_change_when" + ], + [ + "how long until my oil needs to be changed", + "oil_change_when" + ], + [ + "when will my car need new oil", + "oil_change_when" + ], + [ + "at the point when should i get my oil changed straightaway", + "oil_change_when" + ], + [ + "that's definitely true", + "yes" + ], + [ + "yup, that's true", + "yes" + ], + [ + "yes, that is true for sure", + "yes" + ], + [ + "i know that is true", + "yes" + ], + [ + "true, most definitely", + "yes" + ], + [ + "facts", + "yes" + ], + [ + "you are not wrong about that", + "yes" + ], + [ + "that makes sense as well", + "yes" + ], + [ + "you are correct", + "yes" + ], + [ + "agreed", + "yes" + ], + [ + "accepted", + "yes" + ], + [ + "confirmed", + "yes" + ], + [ + "approved", + "yes" + ], + [ + "i want you to know it's a true statement", + "yes" + ], + [ + "i know that the statement is true", + "yes" + ], + [ + "this is a true statement", + "yes" + ], + [ + "the statement is true", + "yes" + ], + [ + "i'm telling you this is a true statement", + "yes" + ], + [ + "that's a yes", + "yes" + ], + [ + "affirmitive", + "yes" + ], + [ + "what's the best place to visit in arizona", + "travel_suggestion" + ], + [ + "what's the best restaurant in arizona for pizza", + "travel_suggestion" + ], + [ + "what are popular mountains to hike in arizona", + "travel_suggestion" + ], + [ + "do you think arizona has plenty of bike routes", + "travel_suggestion" + ], + [ + "find the favorite destination for traveling this year", + "travel_suggestion" + ], + [ + "can you suggest some of the most popular travel destination", + "travel_suggestion" + ], + [ + "what is there to do in craberra", + "travel_suggestion" + ], + [ + "give me location for tourist destination in bangkok", + "travel_suggestion" + ], + [ + "i want to know about tourist places for bangkok", + "travel_suggestion" + ], + [ + "i want list of tourist destination for paris", + "travel_suggestion" + ], + [ + "i want to know where to visit in bangkok", + "travel_suggestion" + ], + [ + "i would like to find a list of cool things recommended for tourists in copenhagen, denmark", + "travel_suggestion" + ], + [ + "i need some recommendations for fun tourist activities in washington, dc", + "travel_suggestion" + ], + [ + "what are some exciting things that are a must do for tourists visiting sedona", + "travel_suggestion" + ], + [ + "please do a search for entertaining activities for tourists in mexico city", + "travel_suggestion" + ], + [ + "can you give me some fun suggestions for tourists to check out in las vegas, please", + "travel_suggestion" + ], + [ + "in seoul, what things can i do", + "travel_suggestion" + ], + [ + "what to do in minneapolis", + "travel_suggestion" + ], + [ + "what can i do in hong kong", + "travel_suggestion" + ], + [ + "what's a good place to vacation", + "travel_suggestion" + ], + [ + "what is covered under my insurance", + "insurance" + ], + [ + "what benefits do i have for insurance", + "insurance" + ], + [ + "what is my insurance coverage", + "insurance" + ], + [ + "which insurance do i have", + "insurance" + ], + [ + "what kind of insurance do i have", + "insurance" + ], + [ + "what insurance do i have", + "insurance" + ], + [ + "which insurance plan do i have", + "insurance" + ], + [ + "what is the name of the insurance plan i am enrolled in", + "insurance" + ], + [ + "i am enrolled in what insurance plan", + "insurance" + ], + [ + "what is the insurance plan i am enrolled in", + "insurance" + ], + [ + "i am enrolled in an insurance plan and need to know what it is", + "insurance" + ], + [ + "i enrolled in an insurance plan, what one was it", + "insurance" + ], + [ + "which was my insurance plan again", + "insurance" + ], + [ + "what insurance plan do i have", + "insurance" + ], + [ + "how is my insurance coverage", + "insurance" + ], + [ + "my insurance plan is what", + "insurance" + ], + [ + "what plan am i paying for", + "insurance" + ], + [ + "do you know my health benefits", + "insurance" + ], + [ + "what are my health benefits like", + "insurance" + ], + [ + "could you list my health benefits", + "insurance" + ], + [ + "can you cancel my todo list please", + "todo_list_update" + ], + [ + "wipe my todo list please", + "todo_list_update" + ], + [ + "can you delete my todo list please", + "todo_list_update" + ], + [ + "remove my todo list", + "todo_list_update" + ], + [ + "please delete my todo list", + "todo_list_update" + ], + [ + "can you add laundry to my to do list", + "todo_list_update" + ], + [ + "put laundry on my chore list", + "todo_list_update" + ], + [ + "erase my to do list", + "todo_list_update" + ], + [ + "i need to do laundry later today", + "todo_list_update" + ], + [ + "put laundry on my list of things to do", + "todo_list_update" + ], + [ + "clear my to do list", + "todo_list_update" + ], + [ + "erase the items on my to do list", + "todo_list_update" + ], + [ + "i'm finished with my to do list", + "todo_list_update" + ], + [ + "i need laundry to be put on my list of things to do", + "todo_list_update" + ], + [ + "please delete the items on my to do list", + "todo_list_update" + ], + [ + "remind me to wash the dog, put on list of things to do", + "todo_list_update" + ], + [ + "add to my list of things to do: wash the dog", + "todo_list_update" + ], + [ + "please put wash the dog on my list of things to do", + "todo_list_update" + ], + [ + "put wash the dog on my to do list please", + "todo_list_update" + ], + [ + "add wash the dog to my list of things to do", + "todo_list_update" + ], + [ + "please read my reminder list", + "reminder" + ], + [ + "read my reminder list back to me", + "reminder" + ], + [ + "i want you to read my reminder list to me", + "reminder" + ], + [ + "i want to hear my reminder list", + "reminder" + ], + [ + "read my reminder list to me please", + "reminder" + ], + [ + "i wanted to remember somethings, what was it", + "reminder" + ], + [ + "list the things i wanted to remember", + "reminder" + ], + [ + "recall the things i wanted to remember", + "reminder" + ], + [ + "what were those things i wanted to remember", + "reminder" + ], + [ + "what was it i wanted to remember", + "reminder" + ], + [ + "what does my running list of stuff to do list", + "reminder" + ], + [ + "what is on my to do list", + "reminder" + ], + [ + "what is my plan for the day", + "reminder" + ], + [ + "what are the things i wanted to recall", + "reminder" + ], + [ + "what things did i not want to forget", + "reminder" + ], + [ + "what is it i wanted to bear in mind", + "reminder" + ], + [ + "what are the things that i wanted to keep in mind", + "reminder" + ], + [ + "tell me my reminder list", + "reminder" + ], + [ + "whats on my reminder list, read back", + "reminder" + ], + [ + "read all my reminders", + "reminder" + ], + [ + "can you speak more slowly", + "change_speed" + ], + [ + "please talk a bit faster", + "change_speed" + ], + [ + "can you slow down your rate of speech", + "change_speed" + ], + [ + "please talk slower for me if you can", + "change_speed" + ], + [ + "please speak to me quicker from now on", + "change_speed" + ], + [ + "can you slow down the rate at which you talk", + "change_speed" + ], + [ + "talk to me in a speedier manner from here on out", + "change_speed" + ], + [ + "can you permanently talk faster", + "change_speed" + ], + [ + "speed up your rate of speech", + "change_speed" + ], + [ + "can you raise your speaking speed", + "change_speed" + ], + [ + "please speak faster", + "change_speed" + ], + [ + "don't talk so slow", + "change_speed" + ], + [ + "would you talk a bit faster instead", + "change_speed" + ], + [ + "speed your speech up", + "change_speed" + ], + [ + "go ahead and talk faster now", + "change_speed" + ], + [ + "talk faster than that", + "change_speed" + ], + [ + "please talk faster", + "change_speed" + ], + [ + "could you speed up your speech", + "change_speed" + ], + [ + "could you speak faster", + "change_speed" + ], + [ + "could you talk a little faster", + "change_speed" + ], + [ + "i need you to check the air levels in my tires and let me know if i have enough in them", + "tire_pressure" + ], + [ + "check my tires' air levels please", + "tire_pressure" + ], + [ + "please check my tires and let me know if i have sufficient air in them", + "tire_pressure" + ], + [ + "do my tires have enough air in them", + "tire_pressure" + ], + [ + "can you check and tell me if my tires have enough air", + "tire_pressure" + ], + [ + "what is the car's tire pressure", + "tire_pressure" + ], + [ + "what is the tire pressure of the car", + "tire_pressure" + ], + [ + "how is the car tire pressure doing", + "tire_pressure" + ], + [ + "how is the car's tire pressure", + "tire_pressure" + ], + [ + "is my tire pressure good", + "tire_pressure" + ], + [ + "how is my tire pressure", + "tire_pressure" + ], + [ + "is my tire pressure okay on my car", + "tire_pressure" + ], + [ + "how much air pressure is in my tires", + "tire_pressure" + ], + [ + "what is my tire pressure", + "tire_pressure" + ], + [ + "do my car tires have enough psi in them", + "tire_pressure" + ], + [ + "can you tell me how much air are in my car tires", + "tire_pressure" + ], + [ + "please give me the amount of pressure in my car tires", + "tire_pressure" + ], + [ + "how much psi is in my car tires", + "tire_pressure" + ], + [ + "what is the air pressure of my car tires", + "tire_pressure" + ], + [ + "how much air are in my tires", + "tire_pressure" + ], + [ + "ill pass", + "no" + ], + [ + "not happening", + "no" + ], + [ + "no, that is fake", + "no" + ], + [ + "hell nah", + "no" + ], + [ + "no, that is invalid", + "no" + ], + [ + "i would prefer not", + "no" + ], + [ + "thats a negative", + "no" + ], + [ + "i meant no", + "no" + ], + [ + "i am saying no", + "no" + ], + [ + "that is not factual", + "no" + ], + [ + "no, that is not correct", + "no" + ], + [ + "i do not think that is proper", + "no" + ], + [ + "no good", + "no" + ], + [ + "negatory", + "no" + ], + [ + "invalid", + "no" + ], + [ + "absolutely not", + "no" + ], + [ + "certainly not", + "no" + ], + [ + "no, that's wrong", + "no" + ], + [ + "no, that's not it", + "no" + ], + [ + "no, that's not right", + "no" + ], + [ + "is the apr on my card that ends 1234 what it should be based on my credit score", + "apr" + ], + [ + "on my citi card, the one that ends 1234, what's the apr", + "apr" + ], + [ + "has the apr on my card changed and what is it now", + "apr" + ], + [ + "let me know my card's apr", + "apr" + ], + [ + "can you tell me the status of my card's apr", + "apr" + ], + [ + "what is the apr on my citibank card", + "apr" + ], + [ + "how good is my card's apr", + "apr" + ], + [ + "what is the apr on my first bank card account", + "apr" + ], + [ + "what is the apr on my chase card", + "apr" + ], + [ + "what is my card's apr", + "apr" + ], + [ + "what is the apr on my american express", + "apr" + ], + [ + "i want to know the apr on my capital one card", + "apr" + ], + [ + "how does my card's apr compare to others", + "apr" + ], + [ + "is my card's apr good", + "apr" + ], + [ + "can you tell me how good my card's apr is", + "apr" + ], + [ + "what is my card's apr and is it good", + "apr" + ], + [ + "what is a good apr", + "apr" + ], + [ + "is my apr high", + "apr" + ], + [ + "what does my credit card charge for their annual percentage rate", + "apr" + ], + [ + "do you know the apr on my chase credit card", + "apr" + ], + [ + "how healthy is shepard's pie", + "nutrition_info" + ], + [ + "how healthy is pecan pie", + "nutrition_info" + ], + [ + "how healthy is hummus", + "nutrition_info" + ], + [ + "how healthy is salad", + "nutrition_info" + ], + [ + "how healthy is pumpkin pie", + "nutrition_info" + ], + [ + "is chocolate good for you", + "nutrition_info" + ], + [ + "tell me how health chocolate is", + "nutrition_info" + ], + [ + "what is the nutritional info for kraft mac 'n' cheese", + "nutrition_info" + ], + [ + "is chocolate bad for you or good for you", + "nutrition_info" + ], + [ + "can you tell me the nutrional info of a big mac", + "nutrition_info" + ], + [ + "are french fries health or not", + "nutrition_info" + ], + [ + "tell me the nutrional info of a regular banana", + "nutrition_info" + ], + [ + "read me the nutrional info of a bag of lay's potato chips", + "nutrition_info" + ], + [ + "pull up the nutrional info of a 12 oz coke", + "nutrition_info" + ], + [ + "is chocolate healthy", + "nutrition_info" + ], + [ + "tell me how many much fat is in the hamburger", + "nutrition_info" + ], + [ + "what is the nutrition information for shrimp scampi", + "nutrition_info" + ], + [ + "how many grams of sodium are in potato chips", + "nutrition_info" + ], + [ + "is rice good for me", + "nutrition_info" + ], + [ + "is raw carrot healthy to eat", + "nutrition_info" + ], + [ + "what is tuesday's calendar like", + "calendar" + ], + [ + "can you check what is on my calendar for tuesday", + "calendar" + ], + [ + "check what's on my calendar for tuesday", + "calendar" + ], + [ + "what is tuesday like on my calendar", + "calendar" + ], + [ + "what appointments do i have tomorrow after 1:00pm", + "calendar" + ], + [ + "what is the date of my next scheduled dentist appointment", + "calendar" + ], + [ + "do i have anything scheduled on my calendar for next tuesday", + "calendar" + ], + [ + "what do i have going on for 12/03/2019", + "calendar" + ], + [ + "where do i have to be on 12/03/2019", + "calendar" + ], + [ + "do i have plans on 12/03/2019", + "calendar" + ], + [ + "what's my schedule like for thursday the 14th", + "calendar" + ], + [ + "does my calendar show anything for thursday the 14th", + "calendar" + ], + [ + "do i have anything scheduled for thursday the 14th", + "calendar" + ], + [ + "can you tell me what my calendar is like for thursday the 14th", + "calendar" + ], + [ + "what appointments do i have on thursday the 14th", + "calendar" + ], + [ + "is my day open for march 4th 2019", + "calendar" + ], + [ + "is anything happening on march 4th 2019", + "calendar" + ], + [ + "are there any active events for march 4th 2019", + "calendar" + ], + [ + "check my calendar for march 4th 2019, please", + "calendar" + ], + [ + "read back my day for march 4th 2019", + "calendar" + ], + [ + "i need you to schedule an uber pickup for me and three other people at 7pm to go to abe's pizza", + "uber" + ], + [ + "send me an uber to arrive at 5pm at my house and there will be two people going to scully's downtown", + "uber" + ], + [ + "send me an uber now for four people and we are going to appleby's downtown", + "uber" + ], + [ + "i need an uber ride to come and pick me up now at work", + "uber" + ], + [ + "can you find me an uber and have it here at 7pm", + "uber" + ], + [ + "call me an uber please, and make it for four people to go downtown", + "uber" + ], + [ + "i need an uber to come to my work at 5pm for three people going to the cineplex downtown", + "uber" + ], + [ + "are there any ubers available in my area right now", + "uber" + ], + [ + "schedule an uber to pick me up at home in an hour", + "uber" + ], + [ + "call an uber and have it pick me up at my present location", + "uber" + ], + [ + "connect me with an uber", + "uber" + ], + [ + "please call an uber for me", + "uber" + ], + [ + "i need to obtain and uber", + "uber" + ], + [ + "is there an uber going to downtown", + "uber" + ], + [ + "book uber from here to downtown", + "uber" + ], + [ + "uber ride available from here to downtown", + "uber" + ], + [ + "look up uber to downtown", + "uber" + ], + [ + "find me an uber to downtown", + "uber" + ], + [ + "are there any ubers available for two people i need it to go to the stadium on grand", + "uber" + ], + [ + "can you get uber for two people going to 27 moss lane", + "uber" + ], + [ + "help me solve this math equation", + "calculator" + ], + [ + "i need your assistance to solve this math problem", + "calculator" + ], + [ + "can you multiply 45 by 23", + "calculator" + ], + [ + "can you divide 100 by 20", + "calculator" + ], + [ + "can you subract 36 from 5", + "calculator" + ], + [ + "can you add 5 and 89", + "calculator" + ], + [ + "multiply 7 and 42", + "calculator" + ], + [ + "what is the sum of 3, 7, 9, and 24", + "calculator" + ], + [ + "add up 8 and 7", + "calculator" + ], + [ + "what is the square root of 888", + "calculator" + ], + [ + "what is 87 divided by 4", + "calculator" + ], + [ + "what is the square root of 8814", + "calculator" + ], + [ + "what is 89 divided by 3", + "calculator" + ], + [ + "what is 13 times 57", + "calculator" + ], + [ + "can you tell me the square root of pi", + "calculator" + ], + [ + "what is 543 times 344", + "calculator" + ], + [ + "what is seventeen plus three", + "calculator" + ], + [ + "what is the derivative of x squared plus 5", + "calculator" + ], + [ + "can you factor x squared plus 4 x plus 4", + "calculator" + ], + [ + "is 126 divisible by 8", + "calculator" + ], + [ + "give me the date", + "date" + ], + [ + "tell me the date", + "date" + ], + [ + "which day is it today", + "date" + ], + [ + "what day of the week are we on", + "date" + ], + [ + "in 4 days, what date will it be", + "date" + ], + [ + "would you let me know what date it will be in 3 days", + "date" + ], + [ + "tell me the date it will be 5 days from now", + "date" + ], + [ + "would you let me know today's date", + "date" + ], + [ + "i need to know the date it will be 4 days from now", + "date" + ], + [ + "let me know what date it will be in 3 days", + "date" + ], + [ + "let me know what today's date is", + "date" + ], + [ + "i would like to get today's date", + "date" + ], + [ + "what date will it be 8 days from now", + "date" + ], + [ + "what date will it be 9 days from now", + "date" + ], + [ + "what date will it be 6 days from now", + "date" + ], + [ + "what date will it be 5 days from now", + "date" + ], + [ + "what date will it be 7 days from now", + "date" + ], + [ + "tell me what today's date is", + "date" + ], + [ + "is today monday", + "date" + ], + [ + "what is the current date", + "date" + ], + [ + "can i take more than one carry on", + "carry_on" + ], + [ + "does more than one carry on cost extra at ryanair", + "carry_on" + ], + [ + "does spirit allow more than one carry on", + "carry_on" + ], + [ + "are more than one carry on allowed at klm", + "carry_on" + ], + [ + "will jet blue allow more than one carry on", + "carry_on" + ], + [ + "whats the policy for delta for carry ons", + "carry_on" + ], + [ + "what's the carry on policy for delta", + "carry_on" + ], + [ + "can you tell me delta's carry on policy", + "carry_on" + ], + [ + "what's delta's carry on policy", + "carry_on" + ], + [ + "i would like to know delta's carry on policy", + "carry_on" + ], + [ + "what are carry-on rules for jet blue", + "carry_on" + ], + [ + "i'm flying delta and need to know the carry-on rules", + "carry_on" + ], + [ + "what are united's carry-on rules", + "carry_on" + ], + [ + "what rules does southwest have for carry-on luggage", + "carry_on" + ], + [ + "look up carry-on rules for american airlines", + "carry_on" + ], + [ + "i want know about carry-on for frontier", + "carry_on" + ], + [ + "tell me carry-on info for united", + "carry_on" + ], + [ + "i would like to know carry-on information for delta", + "carry_on" + ], + [ + "can you give me the carry-on rules for american airlines", + "carry_on" + ], + [ + "how many carry ons can i take with spirit, going to tampa", + "carry_on" + ], + [ + "how many days off have i used", + "pto_used" + ], + [ + "what is the total day off have i taken", + "pto_used" + ], + [ + "what is the amount of pto have i use", + "pto_used" + ], + [ + "let me know how many vacation have i utilized", + "pto_used" + ], + [ + "how many days have i taken off", + "pto_used" + ], + [ + "how much pto have i used so far", + "pto_used" + ], + [ + "can you tell me how many vacation days have i taken", + "pto_used" + ], + [ + "what is the amount of vacation day i have used", + "pto_used" + ], + [ + "can you tell me how much pto have i use", + "pto_used" + ], + [ + "let me know the amount of vacation days i have used", + "pto_used" + ], + [ + "how much pto have i used", + "pto_used" + ], + [ + "what is the amount of pto have i used", + "pto_used" + ], + [ + "how many vacation and sick days have i taken", + "pto_used" + ], + [ + "how many days have i used", + "pto_used" + ], + [ + "how much vacation days have i used", + "pto_used" + ], + [ + "my day offs history", + "pto_used" + ], + [ + "how many day off i have taken", + "pto_used" + ], + [ + "how many of my off days have i run through for the year thus far", + "pto_used" + ], + [ + "remind me of how days i had off so far for the year", + "pto_used" + ], + [ + "can you tell how many days i already took off this year", + "pto_used" + ], + [ + "i'd like an appointment at your earliest availability for an oil change", + "schedule_maintenance" + ], + [ + "could you book me an appointment for an oil change", + "schedule_maintenance" + ], + [ + "i'd like to make an appointment to get my oil changed", + "schedule_maintenance" + ], + [ + "i'd like to book the next availability for an oil change", + "schedule_maintenance" + ], + [ + "can i make an appointment for an oil change", + "schedule_maintenance" + ], + [ + "schedule an appointment for a tire check for me", + "schedule_maintenance" + ], + [ + "make me an appointment for a tire check", + "schedule_maintenance" + ], + [ + "can i make an appointment to get my tires checked", + "schedule_maintenance" + ], + [ + "can you please make an appointment for me to get my tires checked out", + "schedule_maintenance" + ], + [ + "schedule me an appointment to get my tires checked out", + "schedule_maintenance" + ], + [ + "can you help me find someone to look at my car's engine because the light is on", + "schedule_maintenance" + ], + [ + "i need to arrange an appointment to have my car's tires examined", + "schedule_maintenance" + ], + [ + "my car needs maintenance but i don't know if i can schedule an appointment for that", + "schedule_maintenance" + ], + [ + "is there any way to change the date of my oil change", + "schedule_maintenance" + ], + [ + "my car's tires are due to be looked at, can you help me get an appointment for that", + "schedule_maintenance" + ], + [ + "find out where i can schedule to get my car's tires checked", + "schedule_maintenance" + ], + [ + "i need to get an appointment for car maintenance", + "schedule_maintenance" + ], + [ + "help me schedule maintenance for my car", + "schedule_maintenance" + ], + [ + "help me find somewhere to schedule a check up on my car's tires", + "schedule_maintenance" + ], + [ + "find me someone who can deal with my car's illuminated check engine light", + "schedule_maintenance" + ], + [ + "i'm going to be in canada from october 23rd to november 2nd, so can i let my bank know", + "travel_notification" + ], + [ + "let my bank know i'm going to be in russia for a month", + "travel_notification" + ], + [ + "get a message to my bank that starting the 14th i'll be in canada", + "travel_notification" + ], + [ + "tell my bank that i'm travelling to france in 2 days", + "travel_notification" + ], + [ + "tell my bank i'll be in cuba beginning the 2nd", + "travel_notification" + ], + [ + "alert my financial institution that i will be traveling to bangkok on april 2 and returning on april 7", + "travel_notification" + ], + [ + "on tuesday i will be leaving for tennessee and will not be returning until the twenty ninth, alert my bank of this", + "travel_notification" + ], + [ + "my bank needs to be aware of my trip to spain", + "travel_notification" + ], + [ + "i am going to spain in the future and my bank needs to know this information", + "travel_notification" + ], + [ + "my bank needs to know that i will be traveling to spain soon", + "travel_notification" + ], + [ + "my vacation to spain is coming up and i need my bank to know", + "travel_notification" + ], + [ + "i will be telling my bank of my upcoming trip to spain", + "travel_notification" + ], + [ + "from april to may i will be in america so i need to notify my bank", + "travel_notification" + ], + [ + "i will tell my bank that i will be gone from april to may to america", + "travel_notification" + ], + [ + "i need to let my bank know i will be in america from april to may", + "travel_notification" + ], + [ + "my back needs to be notified that i will be in american from april to may", + "travel_notification" + ], + [ + "i will be visiting america so i will need to let me bank know i will be gone from april to may", + "travel_notification" + ], + [ + "please note that i will be travelling internationally soon", + "travel_notification" + ], + [ + "let my bank know that i am going to tokyo", + "travel_notification" + ], + [ + "alert my bank and tell them that i will be in vermont", + "travel_notification" + ], + [ + "sync phone", + "sync_device" + ], + [ + "please pair my phone", + "sync_device" + ], + [ + "don't connect to my phone anymore", + "sync_device" + ], + [ + "i need you to pair with my phone please", + "sync_device" + ], + [ + "don't sync to my phone anymore", + "sync_device" + ], + [ + "sync with my phone", + "sync_device" + ], + [ + "disconnect from phone", + "sync_device" + ], + [ + "stop synching to my phone", + "sync_device" + ], + [ + "can you pair with my phone", + "sync_device" + ], + [ + "please pair with my phone", + "sync_device" + ], + [ + "disconnect sync from my phone", + "sync_device" + ], + [ + "unsync yourself from my phone please", + "sync_device" + ], + [ + "stop syncing with my phone", + "sync_device" + ], + [ + "i'd like you to pair with my phone", + "sync_device" + ], + [ + "i need you to pair with my phone", + "sync_device" + ], + [ + "don't sync with my phone", + "sync_device" + ], + [ + "pair with phone", + "sync_device" + ], + [ + "connect with my phone", + "sync_device" + ], + [ + "please add onto my phone", + "sync_device" + ], + [ + "put a device with my phone", + "sync_device" + ], + [ + "that you so much for the help", + "thank_you" + ], + [ + "thanks for helping me", + "thank_you" + ], + [ + "thanks for helping me out today", + "thank_you" + ], + [ + "thanks for the assist", + "thank_you" + ], + [ + "thank you for the help", + "thank_you" + ], + [ + "thanks for your help", + "thank_you" + ], + [ + "thank you for your help", + "thank_you" + ], + [ + "i'm thankful for your help", + "thank_you" + ], + [ + "i am glad that you did that", + "thank_you" + ], + [ + "i owe you one", + "thank_you" + ], + [ + "i appreciate you doing that", + "thank_you" + ], + [ + "appreciated", + "thank_you" + ], + [ + "i am happy you did that for me", + "thank_you" + ], + [ + "thanks, you've helped me", + "thank_you" + ], + [ + "thanks, i appreciate it", + "thank_you" + ], + [ + "i'm thankful", + "thank_you" + ], + [ + "you have my gratitude", + "thank_you" + ], + [ + "you've been a big help", + "thank_you" + ], + [ + "special thanks to you", + "thank_you" + ], + [ + "you have my sincere gratitude", + "thank_you" + ], + [ + "i would like you to roll a dice", + "roll_dice" + ], + [ + "please roll a 10 sided die and tell me what number it is", + "roll_dice" + ], + [ + "can you roll a dice for me", + "roll_dice" + ], + [ + "please roll a dice", + "roll_dice" + ], + [ + "roll a 6 sided die and tell me the result", + "roll_dice" + ], + [ + "can you roll a dice with 8 sides", + "roll_dice" + ], + [ + "can you roll a dice with 6 sides", + "roll_dice" + ], + [ + "roll a 10 sided dice", + "roll_dice" + ], + [ + "roll an 8 sided dice", + "roll_dice" + ], + [ + "roll a 6 sided dice", + "roll_dice" + ], + [ + "please roll this 8 sided dice", + "roll_dice" + ], + [ + "i want you to roll a 5 sided dice for me", + "roll_dice" + ], + [ + "give a 6 sided dice a roll for me", + "roll_dice" + ], + [ + "complete a roll on a 4 sided dice", + "roll_dice" + ], + [ + "i need a roll on a 6 sided dice", + "roll_dice" + ], + [ + "roll that dice", + "roll_dice" + ], + [ + "please roll that dice", + "roll_dice" + ], + [ + "roll the dice now", + "roll_dice" + ], + [ + "i need to make a quick decision, so roll a dice!", + "roll_dice" + ], + [ + "i need you to roll a dice that has six sides and tell me what it lands on", + "roll_dice" + ], + [ + "is my milk safe to drink after being in the refrigerator for a week", + "food_last" + ], + [ + "apple cider has been in my fridge for four months so can i still drink it", + "food_last" + ], + [ + "mayonaise has been in my fridge for three years, is it still good to eat", + "food_last" + ], + [ + "is cooked chicken still good after being refrigerated for two weeks", + "food_last" + ], + [ + "i have had farm fresh eggs in the fridge for a few months, are they still okay to ingest", + "food_last" + ], + [ + "how many days before milk expire", + "food_last" + ], + [ + "will rice be ok in the fridge for 3 days", + "food_last" + ], + [ + "is rice ok after 3 days in the refrigerator", + "food_last" + ], + [ + "after 3 days in the fridge is rice safe to eat", + "food_last" + ], + [ + "is rice bad after 3 days in fridge", + "food_last" + ], + [ + "can i keep rice in the fridge for 3 days", + "food_last" + ], + [ + "when does my milk expire", + "food_last" + ], + [ + "how long does it take milk to expire", + "food_last" + ], + [ + "how do i know if my milk is expired", + "food_last" + ], + [ + "what is the expiration date of my milk", + "food_last" + ], + [ + "how long until my milk expires", + "food_last" + ], + [ + "how long can i keep pork in the freezer for before it gets freezer burnt", + "food_last" + ], + [ + "how long can i keep beef in the freezer for before it gets nasty", + "food_last" + ], + [ + "how long can i keep chicken in the freezer for before it goes gross", + "food_last" + ], + [ + "how long can i keep bison in the freezer for before it spoils", + "food_last" + ], + [ + "how long do i need to cook pot au feu for", + "cook_time" + ], + [ + "how long do i need to cook chili for", + "cook_time" + ], + [ + "how long do i need to cook lasagne for", + "cook_time" + ], + [ + "how long do i need to cook tuna casserole for", + "cook_time" + ], + [ + "how long do i need to cook beef stew for", + "cook_time" + ], + [ + "how long should i cook country fried potatoes for", + "cook_time" + ], + [ + "how long should i cook pho for", + "cook_time" + ], + [ + "how long should i cook steak for", + "cook_time" + ], + [ + "how long should i cook roast for", + "cook_time" + ], + [ + "i need to know how long to cook chicken for", + "cook_time" + ], + [ + "how long do i put sugar cookies in for", + "cook_time" + ], + [ + "how long should i cook carnitas for", + "cook_time" + ], + [ + "how long should i cook ham for", + "cook_time" + ], + [ + "how long does it take to make pho", + "cook_time" + ], + [ + "how long do i need to cook roast for", + "cook_time" + ], + [ + "how long should i microwave hot pockets for", + "cook_time" + ], + [ + "how long does it take to cook hot pockets", + "cook_time" + ], + [ + "what's the recommended cooking time for steak", + "cook_time" + ], + [ + "should i cook this for a long time", + "cook_time" + ], + [ + "what time should i leave this in the oven", + "cook_time" + ], + [ + "remind me to call my mom", + "reminder_update" + ], + [ + "set a reminder for me to request time off work around the holidays", + "reminder_update" + ], + [ + "remind me to get an oil change", + "reminder_update" + ], + [ + "i need a reminder to order cookies", + "reminder_update" + ], + [ + "remind me to write that letter", + "reminder_update" + ], + [ + "set a reminder to pay my taxes", + "reminder_update" + ], + [ + "remind me to do something", + "reminder_update" + ], + [ + "you need to remind me to do something", + "reminder_update" + ], + [ + "i need to be reminded", + "reminder_update" + ], + [ + "i need to make a reminder", + "reminder_update" + ], + [ + "can you set a reminder for me", + "reminder_update" + ], + [ + "i need to set up a reminder for myself", + "reminder_update" + ], + [ + "create a reminder", + "reminder_update" + ], + [ + "remind me to check the steak", + "reminder_update" + ], + [ + "i just put steaks on the grill remind me to check them at the right time", + "reminder_update" + ], + [ + "don't let me forget to check the steak", + "reminder_update" + ], + [ + "set a reminder to check the steak", + "reminder_update" + ], + [ + "can you set a reminder for the current time tommorow", + "reminder_update" + ], + [ + "set a reminder for me to request time off", + "reminder_update" + ], + [ + "can i have a reminder set up", + "reminder_update" + ], + [ + "i want to report a stolen card", + "report_lost_card" + ], + [ + "my card is lost, i would like to report it", + "report_lost_card" + ], + [ + "my card was stolen, how do i report this", + "report_lost_card" + ], + [ + "i need to report a stolen card", + "report_lost_card" + ], + [ + "if i lost my card how do i report it", + "report_lost_card" + ], + [ + "how do i report a stolen card", + "report_lost_card" + ], + [ + "what is the process of reporting a lost card", + "report_lost_card" + ], + [ + "if my card was stolen, where do i report it", + "report_lost_card" + ], + [ + "i lost my card, how do i report it", + "report_lost_card" + ], + [ + "report a card lost for me", + "report_lost_card" + ], + [ + "i lost a card and i need to report it", + "report_lost_card" + ], + [ + "i have a card that was lost i need to report", + "report_lost_card" + ], + [ + "amazon visa card is stolen", + "report_lost_card" + ], + [ + "my disney visa card is stolen", + "report_lost_card" + ], + [ + "spirit mastercard card was taken", + "report_lost_card" + ], + [ + "what are the steps to take to report a lost card", + "report_lost_card" + ], + [ + "what is the route to take to report a lost card", + "report_lost_card" + ], + [ + "can you show me how to report a lost card", + "report_lost_card" + ], + [ + "i need the information on how to report a lost card", + "report_lost_card" + ], + [ + "my card is lost and i need to know how to report it", + "report_lost_card" + ], + [ + "would it be a problem to sub chips instead of fries", + "ingredient_substitution" + ], + [ + "let me know if i can use ketchup in place of the mustard", + "ingredient_substitution" + ], + [ + "is it ok to use ketchup instead of mustard", + "ingredient_substitution" + ], + [ + "is it normal to use mayo instead of cheese", + "ingredient_substitution" + ], + [ + "can i sub ketchup for mustard", + "ingredient_substitution" + ], + [ + "i wonder if it would be possible to switch from apples to grapes", + "ingredient_substitution" + ], + [ + "is it allow to switch apples to grapes", + "ingredient_substitution" + ], + [ + "is it okay to switch apples for grapes", + "ingredient_substitution" + ], + [ + "can i modify the apples for grapes", + "ingredient_substitution" + ], + [ + "would i be able to swap apples for grapes", + "ingredient_substitution" + ], + [ + "i don't have butter can i use oil", + "ingredient_substitution" + ], + [ + "is butter a substitute for oil", + "ingredient_substitution" + ], + [ + "is butter ok to use instead of oil", + "ingredient_substitution" + ], + [ + "are butter and oil interchangable", + "ingredient_substitution" + ], + [ + "are you able to switch butter and oil", + "ingredient_substitution" + ], + [ + "do you know if i can use pepper and not salt", + "ingredient_substitution" + ], + [ + "will pepper work instead of salt", + "ingredient_substitution" + ], + [ + "is pepper a replacement for salt", + "ingredient_substitution" + ], + [ + "would it be ok if i have pepper and not salt", + "ingredient_substitution" + ], + [ + "can i use pepper instead of salt", + "ingredient_substitution" + ], + [ + "call alex", + "make_call" + ], + [ + "please call mark", + "make_call" + ], + [ + "i want to call mark", + "make_call" + ], + [ + "let me call mark", + "make_call" + ], + [ + "can we call mark", + "make_call" + ], + [ + "call back my mom please", + "make_call" + ], + [ + "start a call to cynthia", + "make_call" + ], + [ + "i want to call up jan", + "make_call" + ], + [ + "can you get a call started to martha", + "make_call" + ], + [ + "please call felicity", + "make_call" + ], + [ + "please initiate a phone call to my boss", + "make_call" + ], + [ + "initiate a call to robert", + "make_call" + ], + [ + "dial the last number that called me", + "make_call" + ], + [ + "call contact aj", + "make_call" + ], + [ + "call aj now", + "make_call" + ], + [ + "call aj", + "make_call" + ], + [ + "call aj please", + "make_call" + ], + [ + "call my friend aj", + "make_call" + ], + [ + "can you call michelle on the home phone", + "make_call" + ], + [ + "siri, call jacob", + "make_call" + ], + [ + "i'd like alarms set for 11am and 132pm", + "alarm" + ], + [ + "i want you to set alarms for 2pm and 3pm", + "alarm" + ], + [ + "i need alarm for both 4am and 7am", + "alarm" + ], + [ + "set an alarm for 235pm and another an hour later", + "alarm" + ], + [ + "please add alarms at 430am and 1030am", + "alarm" + ], + [ + "set my alarm for quarter after six tomorrow", + "alarm" + ], + [ + "set my alarm for eight tomorrow, please", + "alarm" + ], + [ + "set my alarm for six tomorrow morning", + "alarm" + ], + [ + "set my alarm for five tomorrow morning, please", + "alarm" + ], + [ + "set an alarm for four thirty tomorrow, please", + "alarm" + ], + [ + "set me an alarm right now", + "alarm" + ], + [ + "set an alarm for me please", + "alarm" + ], + [ + "please set an alarm for me", + "alarm" + ], + [ + "please set me an alarm", + "alarm" + ], + [ + "set me an alarm now", + "alarm" + ], + [ + "create alarms for 8 pm and 9 pm", + "alarm" + ], + [ + "i need an alarm set for ten pm and midnight", + "alarm" + ], + [ + "make an alarm for one and two in the morning", + "alarm" + ], + [ + "can you set up alarms for one in the afternoon and ten at night", + "alarm" + ], + [ + "set an alarm for 05:00 and one for 16:00", + "alarm" + ], + [ + "repeat my to do list", + "todo_list" + ], + [ + "what do i have to do", + "todo_list" + ], + [ + "instruct me what to do", + "todo_list" + ], + [ + "recite my to do list", + "todo_list" + ], + [ + "will you please tell me my to do list", + "todo_list" + ], + [ + "what do i need to do", + "todo_list" + ], + [ + "did i put cutting the grass on my todo list", + "todo_list" + ], + [ + "is there anything on my todo list for taking out the trash", + "todo_list" + ], + [ + "is cleaning the outside windows on my todo list", + "todo_list" + ], + [ + "what do i have on my todo list", + "todo_list" + ], + [ + "have i added anything to my todo list", + "todo_list" + ], + [ + "did i make a note on my todo list to mop the bathroom floor", + "todo_list" + ], + [ + "is my todo list free", + "todo_list" + ], + [ + "can you tell me if there is anything on my todo list", + "todo_list" + ], + [ + "do i have anything on my todo list", + "todo_list" + ], + [ + "did i put a car wash on my todo list", + "todo_list" + ], + [ + "did i put vacuuming on my todo's", + "todo_list" + ], + [ + "is vacuuming on my todo list", + "todo_list" + ], + [ + "does my todo list have vacuuming on it", + "todo_list" + ], + [ + "is cleaning the garage on my to do list", + "todo_list" + ], + [ + "will you please do the male british accent", + "change_accent" + ], + [ + "can you please change you accent to the male british one", + "change_accent" + ], + [ + "make the male british accent please", + "change_accent" + ], + [ + "could you please change your accent to the male british one", + "change_accent" + ], + [ + "for the love of all that good change your accent", + "change_accent" + ], + [ + "your accent needs to be changed", + "change_accent" + ], + [ + "i need your accent to be changed", + "change_accent" + ], + [ + "please change your accent", + "change_accent" + ], + [ + "change your accent now", + "change_accent" + ], + [ + "change to a new accent please", + "change_accent" + ], + [ + "change to a different accent", + "change_accent" + ], + [ + "i want you to use a different accent", + "change_accent" + ], + [ + "what other accents can you use", + "change_accent" + ], + [ + "help me change my account", + "change_accent" + ], + [ + "i need to change my account", + "change_accent" + ], + [ + "i need to switch accounts", + "change_accent" + ], + [ + "please change my account to another one", + "change_accent" + ], + [ + "please use a male voice", + "change_accent" + ], + [ + "change over to the female voice", + "change_accent" + ], + [ + "move over to the female voice", + "change_accent" + ], + [ + "i need a w2 form, how do i get one", + "w2" + ], + [ + "who do i contact for a w2 form", + "w2" + ], + [ + "how do i get a w2 form", + "w2" + ], + [ + "who should i call for a w2", + "w2" + ], + [ + "where do i go to get a form for w2s", + "w2" + ], + [ + "where do i get w2 form", + "w2" + ], + [ + "i need to know where to get w2", + "w2" + ], + [ + "tell me where i should get the w2", + "w2" + ], + [ + "so where do i get the w2 form", + "w2" + ], + [ + "please tell me where to get the w2", + "w2" + ], + [ + "where will i find my w-2", + "w2" + ], + [ + "w-2 tax form where is it", + "w2" + ], + [ + "where do i find my w-2 form", + "w2" + ], + [ + "where's my w-2 tax form", + "w2" + ], + [ + "where do i find my w-2 tax form", + "w2" + ], + [ + "can i find my w-2 online", + "w2" + ], + [ + "where should i look for my w-2", + "w2" + ], + [ + "where would i find my w-2", + "w2" + ], + [ + "i need my earned income form for paying taxes", + "w2" + ], + [ + "where can i get the form for my taxes", + "w2" + ], + [ + "when do i need to pay my dte energy bill", + "bill_due" + ], + [ + "what day do i have to pay my leasing office bill", + "bill_due" + ], + [ + "what day is my telephone bill due", + "bill_due" + ], + [ + "when is my cell phone bill due", + "bill_due" + ], + [ + "what day do i need to pay my internet and phone bill by", + "bill_due" + ], + [ + "what's the due date for spectrum's bill", + "bill_due" + ], + [ + "what date do i have to pay the phone bill on", + "bill_due" + ], + [ + "can you tell me the due date for the water bill", + "bill_due" + ], + [ + "what day is the cable bill owed on", + "bill_due" + ], + [ + "when is the electric bill due", + "bill_due" + ], + [ + "when do i need to pay my car insurance bill by", + "bill_due" + ], + [ + "how do i find out when my visa bill is due", + "bill_due" + ], + [ + "tell me how i know when to pay my chase bill", + "bill_due" + ], + [ + "tell me when my mastercard bill should be paid", + "bill_due" + ], + [ + "when should i pay my pg&e bill", + "bill_due" + ], + [ + "when is my kaiser bill due", + "bill_due" + ], + [ + "how long do i have to pay that bill", + "bill_due" + ], + [ + "is there a due date on the bill", + "bill_due" + ], + [ + "is the bill due this week", + "bill_due" + ], + [ + "i need to know what day i need to pay my water bill", + "bill_due" + ], + [ + "what is the calorie content of lays chips", + "calories" + ], + [ + "do you know the calorie content of a strip of bacon", + "calories" + ], + [ + "how many calories are found in bagels", + "calories" + ], + [ + "tell me the calorie content of frosted flakes", + "calories" + ], + [ + "inform me of the calorie content of vanilla ice cream", + "calories" + ], + [ + "how many calories are in apples", + "calories" + ], + [ + "how many calories are in oranges", + "calories" + ], + [ + "how many calories are in ice cream", + "calories" + ], + [ + "how many calories are in cake", + "calories" + ], + [ + "how many calories are in oreos", + "calories" + ], + [ + "how many calories does two bananas have", + "calories" + ], + [ + "in a fried egg, how many calories are there", + "calories" + ], + [ + "pocki sticks has how many calories", + "calories" + ], + [ + "what is the amount of calories that scrambled eggs has", + "calories" + ], + [ + "how many calories are in a donut hole", + "calories" + ], + [ + "how many calories are in a ghirardelli sea salt caramel candy", + "calories" + ], + [ + "how many calories are in a bowel of wheaties", + "calories" + ], + [ + "how many calories are in a serving of deans french onion dip", + "calories" + ], + [ + "how many calories are in mashed potatoes", + "calories" + ], + [ + "how many calories are in powdered donuts", + "calories" + ], + [ + "my card was damaged by bleach", + "damaged_card" + ], + [ + "my card was cut by my kid", + "damaged_card" + ], + [ + "my card is ruined and isn't working", + "damaged_card" + ], + [ + "my card isn't working because its destroyed", + "damaged_card" + ], + [ + "my card is messed up from carding my door", + "damaged_card" + ], + [ + "my card was in my pocket and bent", + "damaged_card" + ], + [ + "my card has a burn on it", + "damaged_card" + ], + [ + "my card is impaired and i can't use it", + "damaged_card" + ], + [ + "my card is scuffed up and won't work", + "damaged_card" + ], + [ + "my card seems to not work because its blemished", + "damaged_card" + ], + [ + "i broke my card trying to do a magic trick", + "damaged_card" + ], + [ + "when my house burned down, so did my card", + "damaged_card" + ], + [ + "i broke my card scraping snow off the windshield", + "damaged_card" + ], + [ + "i broke my card when i bent my wallet", + "damaged_card" + ], + [ + "i ruined my card when it got washed", + "damaged_card" + ], + [ + "how can i get a new card that got melted in the sun", + "damaged_card" + ], + [ + "my card got dropped in the shredded and i need it replaced", + "damaged_card" + ], + [ + "my card was destroyed when my house burned down and i need a replacement", + "damaged_card" + ], + [ + "i accidentally caught my card on fire", + "damaged_card" + ], + [ + "i accidentally shredded my card", + "damaged_card" + ], + [ + "does mcdonald's have good reviews", + "restaurant_reviews" + ], + [ + "are the review for mcdonald's good or bad", + "restaurant_reviews" + ], + [ + "how are the reviews for mcdonald's", + "restaurant_reviews" + ], + [ + "what are the review for mcdonald's", + "restaurant_reviews" + ], + [ + "how are those mcdonald's reviews looking", + "restaurant_reviews" + ], + [ + "what are the ratings for yardhouse", + "restaurant_reviews" + ], + [ + "do you know how the ratings are for yardhouse", + "restaurant_reviews" + ], + [ + "are the ratings for yardhouse good", + "restaurant_reviews" + ], + [ + "can you tell me the ratings for yardhouse", + "restaurant_reviews" + ], + [ + "how good are the review for yardhouse", + "restaurant_reviews" + ], + [ + "how are the fried chicken at zippys", + "restaurant_reviews" + ], + [ + "how are the reviews for pasta at assagios", + "restaurant_reviews" + ], + [ + "how is sushi at jiro", + "restaurant_reviews" + ], + [ + "how is the steamed fish at harbor village", + "restaurant_reviews" + ], + [ + "how is dim sum at legend", + "restaurant_reviews" + ], + [ + "does boston restaurant have favorable reviews", + "restaurant_reviews" + ], + [ + "can you inform if boston restaurant has good reviews", + "restaurant_reviews" + ], + [ + "i need to know favorable reviews about boston restaurant", + "restaurant_reviews" + ], + [ + "tell me if boston restaurant has good reviews", + "restaurant_reviews" + ], + [ + "i need to know if boston restaurant has favorable reviews", + "restaurant_reviews" + ], + [ + "what would the routing number for chase be", + "routing" + ], + [ + "tell me chase's routing number", + "routing" + ], + [ + "tell me the routing number for bluebird", + "routing" + ], + [ + "help me find the chase routing number", + "routing" + ], + [ + "i want to know the bofa routing number", + "routing" + ], + [ + "what routing number does chase in michigan use", + "routing" + ], + [ + "where can i locate the ally routing number", + "routing" + ], + [ + "what would wells fargo use as routing", + "routing" + ], + [ + "is there a routing number for wachovia", + "routing" + ], + [ + "i need to know what routing number i should use for ally", + "routing" + ], + [ + "let me know chase's routing number", + "routing" + ], + [ + "what routing number does chase use", + "routing" + ], + [ + "is there a routing number for wells fargo", + "routing" + ], + [ + "i need to know bank of america's routing", + "routing" + ], + [ + "i want to know what the routing is for chase", + "routing" + ], + [ + "where can i locate my routing number for chase please", + "routing" + ], + [ + "where do i find my routing number for my pnc account", + "routing" + ], + [ + "where can i locate the routing number for the bank i bank with", + "routing" + ], + [ + "where do i locate the routing number for the credit union", + "routing" + ], + [ + "where do i locate my routing number for my premium checking account", + "routing" + ], + [ + "what type of pet is in your home", + "do_you_have_pets" + ], + [ + "what pets are with you", + "do_you_have_pets" + ], + [ + "do you have animal companions", + "do_you_have_pets" + ], + [ + "do you have any animals", + "do_you_have_pets" + ], + [ + "what type of animal is living in your home", + "do_you_have_pets" + ], + [ + "what types of pets do you keep", + "do_you_have_pets" + ], + [ + "what animals await you at home", + "do_you_have_pets" + ], + [ + "what creatures do you keep for love", + "do_you_have_pets" + ], + [ + "do you posses any types of pets", + "do_you_have_pets" + ], + [ + "do you have any dogs or cats", + "do_you_have_pets" + ], + [ + "what types of furry companions do you have", + "do_you_have_pets" + ], + [ + "given a choice would you take a dog or a cat", + "do_you_have_pets" + ], + [ + "what are the pets you have", + "do_you_have_pets" + ], + [ + "do you own a cat or do you own a dog", + "do_you_have_pets" + ], + [ + "do you own any animals", + "do_you_have_pets" + ], + [ + "what do you have in the way of pets", + "do_you_have_pets" + ], + [ + "which type of pet would you rather possess, a cat or a dog", + "do_you_have_pets" + ], + [ + "do you have a cat or a dog", + "do_you_have_pets" + ], + [ + "what different pets do you have", + "do_you_have_pets" + ], + [ + "does your family have any pets", + "do_you_have_pets" + ], + [ + "how do i set up a meeting", + "schedule_meeting" + ], + [ + "what is the process to set up a meeting", + "schedule_meeting" + ], + [ + "how can i set up a meeting", + "schedule_meeting" + ], + [ + "what is the process to schedule a meeting", + "schedule_meeting" + ], + [ + "what do i do to schedule a meeting", + "schedule_meeting" + ], + [ + "i want you to set a meeting with john at 5 pm", + "schedule_meeting" + ], + [ + "schedule a monday meeting with sam at 1 pm", + "schedule_meeting" + ], + [ + "please schedule a meeting with kim at 10 am", + "schedule_meeting" + ], + [ + "please set a meeting with nancy at 4 pm", + "schedule_meeting" + ], + [ + "schedule my meeting with jim at 3pm", + "schedule_meeting" + ], + [ + "get me a meeting room for 9am on friday", + "schedule_meeting" + ], + [ + "secure us a meeting room for 9am on friday", + "schedule_meeting" + ], + [ + "arrange a meeting room for 9am on friday", + "schedule_meeting" + ], + [ + "please schedule a meeting room for 9am on friday", + "schedule_meeting" + ], + [ + "make sure i get a meeting room for 9am on friday", + "schedule_meeting" + ], + [ + "is it possible for you to schedule a meeting for 3:00 on wednesday", + "schedule_meeting" + ], + [ + "can you create a meeting for 3:00 on wednesday", + "schedule_meeting" + ], + [ + "can you arrange a meeting for 3:00 on wednesday", + "schedule_meeting" + ], + [ + "can you please set up a meeting for 3:00 on wednesday", + "schedule_meeting" + ], + [ + "can you hook up a meeting for 3:00 on wednesday", + "schedule_meeting" + ], + [ + "what is the best type of gas for this car", + "gas_type" + ], + [ + "for this car, what kind of gas should i use", + "gas_type" + ], + [ + "what kind of gas is required for this car", + "gas_type" + ], + [ + "gas type needed for this car", + "gas_type" + ], + [ + "please tell me what kind of gas this car needs", + "gas_type" + ], + [ + "what gas does this car take", + "gas_type" + ], + [ + "can you tell me what kind of gas this car uses", + "gas_type" + ], + [ + "what kind of fuel should i put in my car", + "gas_type" + ], + [ + "what kind of fuel does my car use", + "gas_type" + ], + [ + "my car takes what kind of fuel", + "gas_type" + ], + [ + "my vehicle needs what kind of fuel", + "gas_type" + ], + [ + "what kind of fuel do i need to put in my car", + "gas_type" + ], + [ + "what is the proper fuel type for my car", + "gas_type" + ], + [ + "what's the required fuel type for my car", + "gas_type" + ], + [ + "could you tell me the fuel type for my car", + "gas_type" + ], + [ + "does this car take regular or diesel fuel", + "gas_type" + ], + [ + "what octaine is recommended for this car", + "gas_type" + ], + [ + "i need gas so what should i get", + "gas_type" + ], + [ + "what type of fuel should i get for mainly city driving", + "gas_type" + ], + [ + "what kind of gas does my car need", + "gas_type" + ], + [ + "what kind of sockets do the us use", + "plug_type" + ], + [ + "does my tv need a socket conveter in ny city", + "plug_type" + ], + [ + "does denmark use different sockets", + "plug_type" + ], + [ + "in france do they require socket conveters", + "plug_type" + ], + [ + "what type of socker conveters do i need in africa", + "plug_type" + ], + [ + "i'm going to paris, what plug type do i need", + "plug_type" + ], + [ + "what type of outlets do they have in the uk", + "plug_type" + ], + [ + "in australia what outlet type do they use", + "plug_type" + ], + [ + "do they use a different plug in brazil", + "plug_type" + ], + [ + "what kind of plug is used in japan", + "plug_type" + ], + [ + "which electrical plug type should i bring with me to finland", + "plug_type" + ], + [ + "what kind of electrical plug do they use in the uae", + "plug_type" + ], + [ + "what type of electrical plug do they use in spain", + "plug_type" + ], + [ + "what electrical plug do they use in the uk", + "plug_type" + ], + [ + "what sort of electrical plug do they use in mainland europe", + "plug_type" + ], + [ + "what are the cuban plugs like", + "plug_type" + ], + [ + "what plugs are in england", + "plug_type" + ], + [ + "how are british plugs", + "plug_type" + ], + [ + "what plug does colombia use", + "plug_type" + ], + [ + "which plugs does england use", + "plug_type" + ], + [ + "tell me when to next change my tires", + "tire_change" + ], + [ + "when would be a wise time to replace my tires", + "tire_change" + ], + [ + "can you tell me when i ought to switch out my tires", + "tire_change" + ], + [ + "when will my car next be due to get its tires changed", + "tire_change" + ], + [ + "at what point will i need to change my tires", + "tire_change" + ], + [ + "when would it be wise for me to swap out my tires", + "tire_change" + ], + [ + "do you know when the best time for me to change my tires next would be", + "tire_change" + ], + [ + "how long before i need to replace my tires", + "tire_change" + ], + [ + "how soon until my tires will need to be changed", + "tire_change" + ], + [ + "figure out for me when i ought to change my tires next", + "tire_change" + ], + [ + "tires should be changed when", + "tire_change" + ], + [ + "when should i change the tires", + "tire_change" + ], + [ + "when should i change these tires", + "tire_change" + ], + [ + "when could i get my tires changed next", + "tire_change" + ], + [ + "when can i commute my tires next", + "tire_change" + ], + [ + "when is it time for a tire change", + "tire_change" + ], + [ + "is it time for a tire change", + "tire_change" + ], + [ + "when are my tires due for changing", + "tire_change" + ], + [ + "when should my car's tires be changed", + "tire_change" + ], + [ + "when should i change my tires", + "tire_change" + ], + [ + "how much is 100 dollars in euros", + "exchange_rate" + ], + [ + "what's the exchange rate betwen usd and euros", + "exchange_rate" + ], + [ + "how much is $1 usd worth in euros", + "exchange_rate" + ], + [ + "how much is $1 usd in euros", + "exchange_rate" + ], + [ + "what's the exchange rate between country a and country b", + "exchange_rate" + ], + [ + "what's the conversion rate of 100 dollars to euros", + "exchange_rate" + ], + [ + "what's 100 dollars in euros", + "exchange_rate" + ], + [ + "how much country of canada money would i get for $100", + "exchange_rate" + ], + [ + "how much is the exchange between usd and euros", + "exchange_rate" + ], + [ + "i need to know how much 100 dollars is worth in euros", + "exchange_rate" + ], + [ + "tell me the exchange rate between here and country b", + "exchange_rate" + ], + [ + "if the dollar worth a lot in country b", + "exchange_rate" + ], + [ + "how much is 1 dollar worth in country b's money", + "exchange_rate" + ], + [ + "look up the exchange rate between dollars and euros", + "exchange_rate" + ], + [ + "convert 100 dollars to euros", + "exchange_rate" + ], + [ + "what can i get for 10 usd in cad", + "exchange_rate" + ], + [ + "what's the going rate between usd and cad", + "exchange_rate" + ], + [ + "what's the difference between usd and cad", + "exchange_rate" + ], + [ + "what is the rate for 500 cad in usd", + "exchange_rate" + ], + [ + "how much is usd vs cad", + "exchange_rate" + ], + [ + "what day is the next holiday", + "next_holiday" + ], + [ + "what holiday is coming up", + "next_holiday" + ], + [ + "the next holiday is when", + "next_holiday" + ], + [ + "which holiday do we celebrate next", + "next_holiday" + ], + [ + "i want to know when is the next holiday", + "next_holiday" + ], + [ + "what and when is the next holiday", + "next_holiday" + ], + [ + "i need to know when's the next holiday", + "next_holiday" + ], + [ + "is there a holiday this month", + "next_holiday" + ], + [ + "does march have a holiday", + "next_holiday" + ], + [ + "do we get monday off as a holiday", + "next_holiday" + ], + [ + "when do i get my next day off", + "next_holiday" + ], + [ + "i'd like to know when my next day off is", + "next_holiday" + ], + [ + "i want to know when is the next holiday here", + "next_holiday" + ], + [ + "when will be the next holiday here", + "next_holiday" + ], + [ + "please tell me when is the next holiday here", + "next_holiday" + ], + [ + "i need to know when is the next holiday here", + "next_holiday" + ], + [ + "i would like to know when is the next holiday here", + "next_holiday" + ], + [ + "when is the next break", + "next_holiday" + ], + [ + "when do we have free day", + "next_holiday" + ], + [ + "when is the next holiday in this country", + "next_holiday" + ], + [ + "make your volume quieter please", + "change_volume" + ], + [ + "adjust the volume to level 4", + "change_volume" + ], + [ + "i want your volume decreased please", + "change_volume" + ], + [ + "could you please raise your volume", + "change_volume" + ], + [ + "i want your volume lowered", + "change_volume" + ], + [ + "i want your volume louder", + "change_volume" + ], + [ + "i want the volume at 4 please", + "change_volume" + ], + [ + "i want the volume at level 4", + "change_volume" + ], + [ + "a volume of 4 is ideal please", + "change_volume" + ], + [ + "i need your volume increased", + "change_volume" + ], + [ + "can you please turn your volume down", + "change_volume" + ], + [ + "please turn the volume to 4", + "change_volume" + ], + [ + "please turn your volume up", + "change_volume" + ], + [ + "turn down your volume please", + "change_volume" + ], + [ + "turn up your volume", + "change_volume" + ], + [ + "could you increase the speaker volume please", + "change_volume" + ], + [ + "would you please increase the speaker volume", + "change_volume" + ], + [ + "increase the speaker volume please", + "change_volume" + ], + [ + "can you increase the speaker volume please", + "change_volume" + ], + [ + "please turn your speaker volume up", + "change_volume" + ], + [ + "do you work for another person", + "who_do_you_work_for" + ], + [ + "who is your supervisor, please", + "who_do_you_work_for" + ], + [ + "who is your superior, please", + "who_do_you_work_for" + ], + [ + "who are you employed by", + "who_do_you_work_for" + ], + [ + "who is your superior", + "who_do_you_work_for" + ], + [ + "do you work for a different person", + "who_do_you_work_for" + ], + [ + "who are you employed by, please", + "who_do_you_work_for" + ], + [ + "who you work for, please", + "who_do_you_work_for" + ], + [ + "do you work for another individual", + "who_do_you_work_for" + ], + [ + "who is your supervisor", + "who_do_you_work_for" + ], + [ + "do you work for a different individual", + "who_do_you_work_for" + ], + [ + "who you work for", + "who_do_you_work_for" + ], + [ + "are you one of my employees", + "who_do_you_work_for" + ], + [ + "do you work for a different employer", + "who_do_you_work_for" + ], + [ + "who is your boss by the way", + "who_do_you_work_for" + ], + [ + "i want the name of your boss", + "who_do_you_work_for" + ], + [ + "specify who your boss is", + "who_do_you_work_for" + ], + [ + "provide me the name of your boss", + "who_do_you_work_for" + ], + [ + "tell me who your boss is", + "who_do_you_work_for" + ], + [ + "who do you say you work for", + "who_do_you_work_for" + ], + [ + "what is the limit on my victoria's secret card", + "credit_limit" + ], + [ + "could you tell me the limit on my chase credit card", + "credit_limit" + ], + [ + "i need to know what my limit is on my american express card", + "credit_limit" + ], + [ + "how high is my spending limit on my wells fargo card", + "credit_limit" + ], + [ + "can you tell me what the limit is on my capital one card", + "credit_limit" + ], + [ + "i have to know the credit limit", + "credit_limit" + ], + [ + "what exactly is my credit limit", + "credit_limit" + ], + [ + "explain what my credit limit is", + "credit_limit" + ], + [ + "give me my credit limit", + "credit_limit" + ], + [ + "i need to know the credit limit", + "credit_limit" + ], + [ + "tell me the highest amount i can spend on my discover card", + "credit_limit" + ], + [ + "what is my credit limit on my discover card", + "credit_limit" + ], + [ + "how much spending power is on my discover card", + "credit_limit" + ], + [ + "how much can i buy on my discover card", + "credit_limit" + ], + [ + "how much can i spend on my discover card", + "credit_limit" + ], + [ + "what's my credit limit for my visa card", + "credit_limit" + ], + [ + "i need to know my credit's limit", + "credit_limit" + ], + [ + "what's my credit limit", + "credit_limit" + ], + [ + "what's the limit for my credit", + "credit_limit" + ], + [ + "i would like to know the limit for my credit", + "credit_limit" + ], + [ + "how much to wait before dining in the jack in the box at 4 pm", + "how_busy" + ], + [ + "how long to wait before dining in restaurant beta", + "how_busy" + ], + [ + "how long is the wait time at olive garden currently", + "how_busy" + ], + [ + "what is the wait like at apple bees", + "how_busy" + ], + [ + "what is the wait time for torris", + "how_busy" + ], + [ + "is there a wait time at bjs right now", + "how_busy" + ], + [ + "how long is the wait at buffalo wild wings", + "how_busy" + ], + [ + "how long is the wait at chipotle", + "how_busy" + ], + [ + "how long is the wait at chipotle tonight", + "how_busy" + ], + [ + "how long is the wait at chipotle right now", + "how_busy" + ], + [ + "how long is the wait at applebee's tonight", + "how_busy" + ], + [ + "how long is the wait at applebee's", + "how_busy" + ], + [ + "i need to know about how much time i'd have to wait to get a table at dibruno's", + "how_busy" + ], + [ + "can you tell me how long approximate wait times are at cheesecake factory", + "how_busy" + ], + [ + "what is the average wait time to be seated for dinner at rouge", + "how_busy" + ], + [ + "what's the wait like at chima brazilian steakhouse at this time", + "how_busy" + ], + [ + "will i have to wait long for a table at pietro's this evening", + "how_busy" + ], + [ + "how long do we have to wait at the restaurant", + "how_busy" + ], + [ + "how long would the wait at the restaurant be", + "how_busy" + ], + [ + "is mcdonalds busy around 9", + "how_busy" + ], + [ + "does spago in beverly hills allow customers to make reservations", + "accept_reservations" + ], + [ + "what is the reservation policy for spago in beverly hills", + "accept_reservations" + ], + [ + "are reservations taken at spago in beverly hills", + "accept_reservations" + ], + [ + "am i able to make reservations at spago in beverly hills", + "accept_reservations" + ], + [ + "can i make reservations at spago in beverly hills", + "accept_reservations" + ], + [ + "let me know if grub burger takes reservations", + "accept_reservations" + ], + [ + "give me information on grub burger reservations", + "accept_reservations" + ], + [ + "is grub burger taking reservations", + "accept_reservations" + ], + [ + "find out of grub burger takes reservations", + "accept_reservations" + ], + [ + "can i make reservations at grub burger", + "accept_reservations" + ], + [ + "is it possible to do a reservation at the bellagio", + "accept_reservations" + ], + [ + "does the bellagio have any reservations", + "accept_reservations" + ], + [ + "does bellagio allow you to do reservations", + "accept_reservations" + ], + [ + "can i make a reservation at chima steakhouse in chicago", + "accept_reservations" + ], + [ + "will i be able to schedule a reservation at 4 seasons in los angeles", + "accept_reservations" + ], + [ + "is it possible to make a reservation at sushi king in virginia beach", + "accept_reservations" + ], + [ + "does ruth chris in charlotte allow you to make a reservation", + "accept_reservations" + ], + [ + "will maggianos in charlotte allow me to make a reservation", + "accept_reservations" + ], + [ + "does long horns do reservations", + "accept_reservations" + ], + [ + "i need to make a reservation to long horn's, can i", + "accept_reservations" + ], + [ + "was my order delivered", + "order_status" + ], + [ + "did my order get here yet", + "order_status" + ], + [ + "was my order brought here", + "order_status" + ], + [ + "was my order shipped here", + "order_status" + ], + [ + "was the order delivered", + "order_status" + ], + [ + "what is the status of my purchase", + "order_status" + ], + [ + "track the status of my purchase", + "order_status" + ], + [ + "did my order get delivered", + "order_status" + ], + [ + "has my purchase been delivered yet", + "order_status" + ], + [ + "has my purchase arrived yet", + "order_status" + ], + [ + "how far along is my purchase", + "order_status" + ], + [ + "have my goods been delivered yet", + "order_status" + ], + [ + "i ordered new light bulbs online when will they get here", + "order_status" + ], + [ + "when will the clothes i ordered online arrive", + "order_status" + ], + [ + "i ordered new sheets online when will they arrive", + "order_status" + ], + [ + "i ordered some new speakers, so when will they get here", + "order_status" + ], + [ + "is my order at the delivery address", + "order_status" + ], + [ + "when is my order coming", + "order_status" + ], + [ + "is my order here", + "order_status" + ], + [ + "when will my order arrive", + "order_status" + ], + [ + "i forgot my pin number for my credit union bank account, can you help", + "pin_change" + ], + [ + "i want to change my bank of america account pin number", + "pin_change" + ], + [ + "i want to change the pin number on my credit union account", + "pin_change" + ], + [ + "can you help me figure out my pin number for my visa account", + "pin_change" + ], + [ + "i need to update the pin number of my aaa visa", + "pin_change" + ], + [ + "i'd like to change the pin number on my visa account", + "pin_change" + ], + [ + "i need my pin number for my bank of america account and i can't remember it", + "pin_change" + ], + [ + "i can't remember my pin for my first national debit account", + "pin_change" + ], + [ + "i've forgotten my pin number for my citibank gold account", + "pin_change" + ], + [ + "i want to update my pin number on my bank of america account", + "pin_change" + ], + [ + "i don't want my current pin for my wells account anymore", + "pin_change" + ], + [ + "switch the pin on my chase account", + "pin_change" + ], + [ + "i want a new pin on my card of private client account", + "pin_change" + ], + [ + "i want the pin on my wells fargo account to be changed", + "pin_change" + ], + [ + "i need a new pin on my chase account", + "pin_change" + ], + [ + "so tell me the pin number", + "pin_change" + ], + [ + "i need to know the pin number to my card", + "pin_change" + ], + [ + "tell me the pin number to my card", + "pin_change" + ], + [ + "i need to know the pin number", + "pin_change" + ], + [ + "switch the pin on my visa account", + "pin_change" + ], + [ + "see ya!", + "goodbye" + ], + [ + "this was fun, see you around bye", + "goodbye" + ], + [ + "until next time", + "goodbye" + ], + [ + "i enjoyed our talk, bye", + "goodbye" + ], + [ + "this was a nice chat", + "goodbye" + ], + [ + "i enjoyed speaking with you", + "goodbye" + ], + [ + "peace out!", + "goodbye" + ], + [ + "this was a nice chat, goodbye", + "goodbye" + ], + [ + "this was a nice conversation", + "goodbye" + ], + [ + "good talk, see you later", + "goodbye" + ], + [ + "it was lovely to speak with you", + "goodbye" + ], + [ + "it was lovely to speak with you, bye bye", + "goodbye" + ], + [ + "thank you for the chat, goodbye", + "goodbye" + ], + [ + "a pleasure as always to speak with you, bye", + "goodbye" + ], + [ + "thank you for chatting with me, bye", + "goodbye" + ], + [ + "i enjoyed our talk, goodbye", + "goodbye" + ], + [ + "it was a pleasure talking to you, goodbye now", + "goodbye" + ], + [ + "farewell", + "goodbye" + ], + [ + "goodnight", + "goodbye" + ], + [ + "have a good day", + "goodbye" + ], + [ + "my account looks to be blocked and i have no idea why", + "account_blocked" + ], + [ + "it seems that my account is blocked and i'm not sure why", + "account_blocked" + ], + [ + "my account appears to be blocked and i don't know why", + "account_blocked" + ], + [ + "it looks like my account is blocked but i have no clue why", + "account_blocked" + ], + [ + "my account appears to be blocked but i have no idea why that could be", + "account_blocked" + ], + [ + "why did you freeze my bank account", + "account_blocked" + ], + [ + "how did my bank account is frozen", + "account_blocked" + ], + [ + "can anyone let me know the reason behind my frozen bank account", + "account_blocked" + ], + [ + "what are the possible reasons behind frozen bank account", + "account_blocked" + ], + [ + "need help with frozen bank account", + "account_blocked" + ], + [ + "great western bank's login screen tells me i'm locked out but not why", + "account_blocked" + ], + [ + "i get an error message when i try logging in to capital one that says i'm locked out", + "account_blocked" + ], + [ + "can you check and see if my account's blocked", + "account_blocked" + ], + [ + "why can't i log into my bank account", + "account_blocked" + ], + [ + "tell me why i get an error logging in to my bank account", + "account_blocked" + ], + [ + "i'd like to know if my account's blocked and the reason if so", + "account_blocked" + ], + [ + "can you confirm my account's blocked and tell me why", + "account_blocked" + ], + [ + "do you have any idea why my account may be blocked", + "account_blocked" + ], + [ + "find out why i can't log in to my bank of america account", + "account_blocked" + ], + [ + "please tell me the reason for the hold on my bb&t account", + "account_blocked" + ], + [ + "whats this song", + "what_song" + ], + [ + "nice song what is it", + "what_song" + ], + [ + "cool song, what is it", + "what_song" + ], + [ + "what music is this", + "what_song" + ], + [ + "is this a song that i dont know", + "what_song" + ], + [ + "what\u2019s the name of this song", + "what_song" + ], + [ + "what is the current tune", + "what_song" + ], + [ + "what am i listening to right now", + "what_song" + ], + [ + "what is the name of the song playing right now", + "what_song" + ], + [ + "what is that song called", + "what_song" + ], + [ + "name this song", + "what_song" + ], + [ + "what's that song on the speaker now", + "what_song" + ], + [ + "what's the name of the song playing right now", + "what_song" + ], + [ + "what song is playing right now", + "what_song" + ], + [ + "do you know the song on the speaker right now", + "what_song" + ], + [ + "what's that song that is playing now", + "what_song" + ], + [ + "what is that tune", + "what_song" + ], + [ + "tell me the title of the song playing", + "what_song" + ], + [ + "i need this song title", + "what_song" + ], + [ + "what song am i hearing", + "what_song" + ], + [ + "does my visa have international transaction fees", + "international_fees" + ], + [ + "are there international transaction fees associated with my td bank card", + "international_fees" + ], + [ + "does my american express card have any international transaction fees", + "international_fees" + ], + [ + "does my new bank card have any international transaction fees", + "international_fees" + ], + [ + "does my western union card have international transaction fees", + "international_fees" + ], + [ + "will i be charged if i use my card in russia", + "international_fees" + ], + [ + "will i be charged if i use my card in china", + "international_fees" + ], + [ + "i wanna know if my capital one credit card have international transaction fees", + "international_fees" + ], + [ + "i'd like to know if my capital one credit card have international transaction fees", + "international_fees" + ], + [ + "does my capital one credit card have international transaction fees", + "international_fees" + ], + [ + "will i be charged if i use my card in vietnam", + "international_fees" + ], + [ + "i need to know if my capital one credit card have international transaction fees", + "international_fees" + ], + [ + "i would really like to know if my capital one credit card have international transaction fees", + "international_fees" + ], + [ + "will i be charged if i use my card in japan", + "international_fees" + ], + [ + "will i get charged extra for using my card while in tulsa", + "international_fees" + ], + [ + "while in tulsa, if i use my card, would i be charged more", + "international_fees" + ], + [ + "say that i am in tulsa, will i be charged even more if i use my card", + "international_fees" + ], + [ + "if i am in tulsa, will i get charged extra if i use my card", + "international_fees" + ], + [ + "using my card in tulsa won't cause me to be charged extra will it", + "international_fees" + ], + [ + "if i use my card in england will it cost me extra", + "international_fees" + ], + [ + "on what day, month and year did i get new tires", + "last_maintenance" + ], + [ + "when was the last time my car was worked on", + "last_maintenance" + ], + [ + "when did i last get my car serviced", + "last_maintenance" + ], + [ + "what was the date when my car was in the shop", + "last_maintenance" + ], + [ + "how long since my car was in the shop", + "last_maintenance" + ], + [ + "when was my last oil change", + "last_maintenance" + ], + [ + "what was the date of my last car service", + "last_maintenance" + ], + [ + "when was the last time i took my car in", + "last_maintenance" + ], + [ + "when was the last time my car was serviced", + "last_maintenance" + ], + [ + "do you remember when i last got my car looked at", + "last_maintenance" + ], + [ + "do you know when i last took my car to get checked", + "last_maintenance" + ], + [ + "do you have a record of when i last got my car checked", + "last_maintenance" + ], + [ + "could you inform me of when i last got my car checked", + "last_maintenance" + ], + [ + "when did i last get my car checked", + "last_maintenance" + ], + [ + "when did i change my oil", + "last_maintenance" + ], + [ + "how long since i swapped oil", + "last_maintenance" + ], + [ + "when did the oil get changed", + "last_maintenance" + ], + [ + "how long has it been since the oil got changed out", + "last_maintenance" + ], + [ + "how long since my oil had a refresh", + "last_maintenance" + ], + [ + "when was the car last services", + "last_maintenance" + ], + [ + "what if any meetings do i have today", + "meeting_schedule" + ], + [ + "do i have meetings with anyone today", + "meeting_schedule" + ], + [ + "do i have any meetings on my calendar today", + "meeting_schedule" + ], + [ + "do i have any meetings on my schedule today", + "meeting_schedule" + ], + [ + "do i have any meetings today between 9:30 and 10:30", + "meeting_schedule" + ], + [ + "do i have any meetings today between 9 and 10:30", + "meeting_schedule" + ], + [ + "do i have any meetings today between 9:20 and 10:30", + "meeting_schedule" + ], + [ + "do i have any meetings today between 9 and 10:15", + "meeting_schedule" + ], + [ + "do i have any meetings today between 9 and 10", + "meeting_schedule" + ], + [ + "what time am i meeting with john", + "meeting_schedule" + ], + [ + "what time am i meeting john", + "meeting_schedule" + ], + [ + "what time is my meeting with fred scheduled for", + "meeting_schedule" + ], + [ + "do i have any meetings coming up with dan", + "meeting_schedule" + ], + [ + "i think dan scheduled a meeting today with me, can you double check please", + "meeting_schedule" + ], + [ + "is my schedule clear with no meetings with dan today", + "meeting_schedule" + ], + [ + "what is my schedule like today, any meetings with dan", + "meeting_schedule" + ], + [ + "is dan aware of any meetings with me today", + "meeting_schedule" + ], + [ + "how many meetings do i have today", + "meeting_schedule" + ], + [ + "read me my meeting schedule", + "meeting_schedule" + ], + [ + "please tell me my meeting schedule", + "meeting_schedule" + ], + [ + "i need a list of ingredients required to make lamb stew", + "ingredients_list" + ], + [ + "please search for necessary ingredients included in meatballs", + "ingredients_list" + ], + [ + "can you tell me the ingredients used in pasta sauce", + "ingredients_list" + ], + [ + "do you know the ingredients used in homemade chicken soup", + "ingredients_list" + ], + [ + "i need to know what ingredients are in a french baguette", + "ingredients_list" + ], + [ + "find list of ingredients i would need to bake a funnel cake", + "ingredients_list" + ], + [ + "what are the ingredients used in chicken curry", + "ingredients_list" + ], + [ + "can you tell me what ingredients are needed for cinnamon buns", + "ingredients_list" + ], + [ + "please give me a list of the ingredients contained in chocolate cupcakes", + "ingredients_list" + ], + [ + "what ingredients do i need to make raisin bread", + "ingredients_list" + ], + [ + "what should i get to make the jamaican patties", + "ingredients_list" + ], + [ + "what do you i need to make pizza dough", + "ingredients_list" + ], + [ + "what kind of ingredients go into the chicken a la king", + "ingredients_list" + ], + [ + "what will i need to make lasagna", + "ingredients_list" + ], + [ + "whare the ingredients for the stir fry", + "ingredients_list" + ], + [ + "for pasta primavera, what ingredients will i use", + "ingredients_list" + ], + [ + "what ingredients do i need for shrimp scampi", + "ingredients_list" + ], + [ + "i need what ingredients for meatloaf", + "ingredients_list" + ], + [ + "i'll use what ingredients for lasagna", + "ingredients_list" + ], + [ + "for peppercorn steak, what ingredients do i need", + "ingredients_list" + ], + [ + "contact the bank about fraud activity on my card", + "report_fraud" + ], + [ + "i need to talk to someone about a fraudulent activity on my card", + "report_fraud" + ], + [ + "i need to report unauthorized activity on my card", + "report_fraud" + ], + [ + "looks like my card is being used by someone else, report it", + "report_fraud" + ], + [ + "there's something fishy on my card, report it", + "report_fraud" + ], + [ + "how do i report fraud on my chase bank card", + "report_fraud" + ], + [ + "someone is charging my card for playstations, and it's not me! what do i do!", + "report_fraud" + ], + [ + "help! i'm a victim of credit card fraud!", + "report_fraud" + ], + [ + "i want to report fraud on my american express", + "report_fraud" + ], + [ + "where do i report fraud on my credit card", + "report_fraud" + ], + [ + "i want to report fraudulent activity on my mastercard", + "report_fraud" + ], + [ + "i want to report fraudulent activity on my quicksilver card", + "report_fraud" + ], + [ + "i want to report fraudulent activity on my capital one", + "report_fraud" + ], + [ + "i want to report fraudulent activity on my discover card", + "report_fraud" + ], + [ + "i want to report fraudulent activity on my visa", + "report_fraud" + ], + [ + "i think there has been a fraud on my black visa card, can i report it", + "report_fraud" + ], + [ + "can you assist me on my fradulent activity on my chase card", + "report_fraud" + ], + [ + "an unauthorized transactions has been made on my gap card and i need to report it", + "report_fraud" + ], + [ + "is there anyway, i can report a suspicious activity on my citi card", + "report_fraud" + ], + [ + "i would like to report a fraud on my wells fargo card, please", + "report_fraud" + ], + [ + "what is the total number of pints in two quarts", + "measurement_conversion" + ], + [ + "can you tell me the number of ounces in a quart", + "measurement_conversion" + ], + [ + "what is the correct amount of ounces in a pound", + "measurement_conversion" + ], + [ + "how many tablespoons are there in half of a cup", + "measurement_conversion" + ], + [ + "i need to know how many teaspoons are equivalent to two tablesppons", + "measurement_conversion" + ], + [ + "give me celcius to fahrenheit", + "measurement_conversion" + ], + [ + "what's the equivalent of 1 cup to pounds", + "measurement_conversion" + ], + [ + "i need kilograms to milligrams", + "measurement_conversion" + ], + [ + "how do i convert a cup to ml", + "measurement_conversion" + ], + [ + "give me kilograms to pounds", + "measurement_conversion" + ], + [ + "convert 2 cups to liters", + "measurement_conversion" + ], + [ + "how many tablespoons is 5 teaspoons", + "measurement_conversion" + ], + [ + "how many teaspoons in one tablespoon", + "measurement_conversion" + ], + [ + "how many ounces is 2 and half cups", + "measurement_conversion" + ], + [ + "how many gallons is 50 liters", + "measurement_conversion" + ], + [ + "how many ounces in a liter", + "measurement_conversion" + ], + [ + "how many ounces in a cup", + "measurement_conversion" + ], + [ + "how many ml's are in a gallon", + "measurement_conversion" + ], + [ + "how many teaspoons in an ounce", + "measurement_conversion" + ], + [ + "how many teaspoons make up in 1 tablespoon", + "measurement_conversion" + ], + [ + "could you tell me the temperature of the ac", + "smart_home" + ], + [ + "the temperature of the ac, what is it at", + "smart_home" + ], + [ + "the ac, could you tell me the temperature", + "smart_home" + ], + [ + "do you know the temperature of the ac", + "smart_home" + ], + [ + "what is it at, the ac temperature", + "smart_home" + ], + [ + "i want you to turn the tv on", + "smart_home" + ], + [ + "i need you to turn the tv on now", + "smart_home" + ], + [ + "will you please turn the tv on", + "smart_home" + ], + [ + "turn on the tv please", + "smart_home" + ], + [ + "please turn the tv on", + "smart_home" + ], + [ + "can you verify the doors are locked", + "smart_home" + ], + [ + "i'd like the lights in the garage to be turned on", + "smart_home" + ], + [ + "engage all the door locks", + "smart_home" + ], + [ + "set all doors to locked", + "smart_home" + ], + [ + "confirm the doors are locked", + "smart_home" + ], + [ + "please turn on the hallway lights", + "smart_home" + ], + [ + "check if the doors are locked", + "smart_home" + ], + [ + "secure the doors", + "smart_home" + ], + [ + "see if all the doors are locked", + "smart_home" + ], + [ + "post the living room lights on", + "smart_home" + ], + [ + "by chance would it be possible to reserve me a hotel in afghanistan at the zoo for the 10th to the 15th", + "book_hotel" + ], + [ + "is it possible for a hotel to be booked by you for me in afghanistan at the zoo for the 10th to the 15th", + "book_hotel" + ], + [ + "could you book me a hotel in afghanistan at the zoo for the 10th to the 15th", + "book_hotel" + ], + [ + "could a hotel be booked for me in afghanistan at the zoo for the 10th to the 15th", + "book_hotel" + ], + [ + "can you reserve a hotel for myself a hotel in afghanistan at the zoo for the 10th to the 15th", + "book_hotel" + ], + [ + "i need to reserve a large room or suite for 2 couples for august 15th through august 18th in seattle", + "book_hotel" + ], + [ + "i need to book a hotel room or suite for 2 adults and 2 children in orlando for july 1st through 5th", + "book_hotel" + ], + [ + "i need a hotel room for 7 people in st louis for november 3rd through 5th", + "book_hotel" + ], + [ + "i need a suite that can accommodate 3 adults and 1 child in san diego for may 15th, 16th, and 17th", + "book_hotel" + ], + [ + "show me a hotel in boise that has positive reviews", + "book_hotel" + ], + [ + "i need a hotel with good reviews in baltimore", + "book_hotel" + ], + [ + "find hotels in baltimore that have positive reviews", + "book_hotel" + ], + [ + "show me a hotel that has good reviews in kansas city", + "book_hotel" + ], + [ + "i am looking for a hotel in new york city that has good reviews", + "book_hotel" + ], + [ + "could you book me a hotel in tampa from may 2 to may 4", + "book_hotel" + ], + [ + "help me book a place to stay from may 2 to may 4 in tampa", + "book_hotel" + ], + [ + "can you make a reservation in tampa from may 2 to may 4", + "book_hotel" + ], + [ + "i want to book a hotel in tampa from may 2 to may 4", + "book_hotel" + ], + [ + "make me a reservation in tampa from may 2 to may 4", + "book_hotel" + ], + [ + "book a motel in uptown from march 3 to march 4", + "book_hotel" + ], + [ + "talk to me about where im at right now", + "current_location" + ], + [ + "can you tell me where i am", + "current_location" + ], + [ + "you need all five answers", + "current_location" + ], + [ + "give me my gps coordinates", + "current_location" + ], + [ + "pass me my gps coordinates", + "current_location" + ], + [ + "i need to know what my gps coordinates are", + "current_location" + ], + [ + "can you give me my gps coordinates", + "current_location" + ], + [ + "so what are my current gps coordinates", + "current_location" + ], + [ + "can you find the exact address for where i am currently", + "current_location" + ], + [ + "tell me what to enter into my gps for my current location", + "current_location" + ], + [ + "please tell me the address of my current location", + "current_location" + ], + [ + "i need to know the name of my current location for the tow truck", + "current_location" + ], + [ + "what is this place", + "current_location" + ], + [ + "where exactly am i at the moment", + "current_location" + ], + [ + "where am i at currently", + "current_location" + ], + [ + "what location is this", + "current_location" + ], + [ + "what are my coordinates", + "current_location" + ], + [ + "where am i on gps", + "current_location" + ], + [ + "latitude and longitude please", + "current_location" + ], + [ + "location currently, where", + "current_location" + ], + [ + "what's is the current weather forecast", + "weather" + ], + [ + "tell me the forecast", + "weather" + ], + [ + "what's the weather like", + "weather" + ], + [ + "what's the forecast for the day", + "weather" + ], + [ + "i need to know the weather", + "weather" + ], + [ + "weather forecast please", + "weather" + ], + [ + "what's today's weather", + "weather" + ], + [ + "i need to know today's forecast", + "weather" + ], + [ + "is it going to rain tomorrow", + "weather" + ], + [ + "what is the weather outside", + "weather" + ], + [ + "what will be the weather tomorrow", + "weather" + ], + [ + "what is the weather in atlanta", + "weather" + ], + [ + "what is the weather in tokyo", + "weather" + ], + [ + "what's the humidity today", + "weather" + ], + [ + "what was the temperature yesterday", + "weather" + ], + [ + "what's today's high and low", + "weather" + ], + [ + "what's the weather today", + "weather" + ], + [ + "what's the chance of rain", + "weather" + ], + [ + "how cold is it in wisconsin today", + "weather" + ], + [ + "can you tell the temperature it will tomorrow", + "weather" + ], + [ + "how much money a year do i spend in taxes", + "taxes" + ], + [ + "how much am i being taxed", + "taxes" + ], + [ + "what are my tax costs", + "taxes" + ], + [ + "what kinds of taxes am i facing", + "taxes" + ], + [ + "what's my income tax", + "taxes" + ], + [ + "what's the tax bracket for my income", + "taxes" + ], + [ + "what does it look like i will be paying in federal taxes this year", + "taxes" + ], + [ + "what do i get taxed at my income level", + "taxes" + ], + [ + "what is my tax burden", + "taxes" + ], + [ + "can you tell me what my federal tax burden is", + "taxes" + ], + [ + "how much am i taxed each year", + "taxes" + ], + [ + "do you know how much i pay in taxes", + "taxes" + ], + [ + "how much do i pay in taxes every year", + "taxes" + ], + [ + "what's my federal tax this year", + "taxes" + ], + [ + "i need to know my tax rate", + "taxes" + ], + [ + "what is the tax rate that applies to me", + "taxes" + ], + [ + "how much do i need to pay in tax", + "taxes" + ], + [ + "what's my tax rate", + "taxes" + ], + [ + "tell me my tax rate", + "taxes" + ], + [ + "what amount do i owe in taxes", + "taxes" + ], + [ + "what is the minimum amount due on my cable bill", + "min_payment" + ], + [ + "what is the minimum payment", + "min_payment" + ], + [ + "whats the minimum payment on my electric bill", + "min_payment" + ], + [ + "how little can i pay on my phone bill", + "min_payment" + ], + [ + "what is the least i can pay towards my car bill", + "min_payment" + ], + [ + "what's the least i can pay towards this bill", + "min_payment" + ], + [ + "how little can i pay towards my car insurance", + "min_payment" + ], + [ + "is there a minimum amount accepted", + "min_payment" + ], + [ + "tell me the least i can pay", + "min_payment" + ], + [ + "what is the minimum payment for comcast", + "min_payment" + ], + [ + "what is the least i can pay on my mortgage bill", + "min_payment" + ], + [ + "what would be the least i could pay on this bill", + "min_payment" + ], + [ + "could you tell me my bill's minimum payment", + "min_payment" + ], + [ + "what's the least amount i can pay on this bill", + "min_payment" + ], + [ + "what's the minimum payment on my bill", + "min_payment" + ], + [ + "what's my bill's minimum payment", + "min_payment" + ], + [ + "i'd like to know my minimum payment please", + "min_payment" + ], + [ + "what's the minimum due for my electric bill", + "min_payment" + ], + [ + "lowest amount for cable bill", + "min_payment" + ], + [ + "what is the minimum payment due on my visa", + "min_payment" + ], + [ + "set up whisper mode", + "whisper_mode" + ], + [ + "how do i go to whisper mode", + "whisper_mode" + ], + [ + "change over to whisper mode", + "whisper_mode" + ], + [ + "i need to be out of whisper mode", + "whisper_mode" + ], + [ + "i'd like to be out of whisper mode", + "whisper_mode" + ], + [ + "take me out of whisper mode", + "whisper_mode" + ], + [ + "i want to be out of whisper mode", + "whisper_mode" + ], + [ + "please use your whispering voice; i need quiet", + "whisper_mode" + ], + [ + "let's try whisper mode", + "whisper_mode" + ], + [ + "use your whisper voice", + "whisper_mode" + ], + [ + "can you please whisper", + "whisper_mode" + ], + [ + "whisper to me", + "whisper_mode" + ], + [ + "make a switch to whisper mode", + "whisper_mode" + ], + [ + "whisper please", + "whisper_mode" + ], + [ + "i need quiet; use whisper", + "whisper_mode" + ], + [ + "go into whisper mode", + "whisper_mode" + ], + [ + "engage whisper mode", + "whisper_mode" + ], + [ + "enable whisper mode", + "whisper_mode" + ], + [ + "put whisper mode on", + "whisper_mode" + ], + [ + "please use whisper mode", + "whisper_mode" + ], + [ + "quit talking", + "cancel" + ], + [ + "stop please", + "cancel" + ], + [ + "scrap", + "cancel" + ], + [ + "whats the procedure to cancel it", + "cancel" + ], + [ + "stop it", + "cancel" + ], + [ + "please abort the current process", + "cancel" + ], + [ + "cancel it", + "cancel" + ], + [ + "can you cancel it", + "cancel" + ], + [ + "hey ai cancel it now", + "cancel" + ], + [ + "cancel", + "cancel" + ], + [ + "command cancel", + "cancel" + ], + [ + "please stop it", + "cancel" + ], + [ + "abort it", + "cancel" + ], + [ + "how to cancel", + "cancel" + ], + [ + "i repeat cancel", + "cancel" + ], + [ + "please don't talk any further", + "cancel" + ], + [ + "don't talk anymore", + "cancel" + ], + [ + "i need you to stop talking", + "cancel" + ], + [ + "rescind", + "cancel" + ], + [ + "eliminate", + "cancel" + ], + [ + "if i plan on travelling to this country, do i need a visa", + "international_visa" + ], + [ + "do i need a visa if i go there", + "international_visa" + ], + [ + "for going to that country, do i need a visa", + "international_visa" + ], + [ + "does one need a visa to go there", + "international_visa" + ], + [ + "if i travel there, do i need a visa", + "international_visa" + ], + [ + "does going to taiwan require me to get an international visa", + "international_visa" + ], + [ + "if i go to brazil, do i need to get an international visa", + "international_visa" + ], + [ + "should i go to okinawa, does it require an international visa", + "international_visa" + ], + [ + "is an international visa needed to go to cyprus", + "international_visa" + ], + [ + "i want to go to china but am not sure if i need an international visa", + "international_visa" + ], + [ + "should i get an internation visa to go to switzerland", + "international_visa" + ], + [ + "does south korea require an international visa", + "international_visa" + ], + [ + "will i need an international visa to go to madagascar", + "international_visa" + ], + [ + "is an international visa needed for canada", + "international_visa" + ], + [ + "do i need an international visa to get into italy", + "international_visa" + ], + [ + "if i go to uganda, do i need an international visa", + "international_visa" + ], + [ + "do i need a travel visa for the uk", + "international_visa" + ], + [ + "am i going to need a visa for traveling to canada", + "international_visa" + ], + [ + "does canada require a visa", + "international_visa" + ], + [ + "does the uk require a travel visa", + "international_visa" + ], + [ + "is it necessary to get a shot for travel to india", + "vaccines" + ], + [ + "are there any necessary shots required before travel to thailand", + "vaccines" + ], + [ + "do i have to get a shot for travel to taiwan", + "vaccines" + ], + [ + "are shots required before traveling to brazil", + "vaccines" + ], + [ + "can i travel to south africa without getting a shot", + "vaccines" + ], + [ + "what shots are required to visit australia", + "vaccines" + ], + [ + "do i need any vaccines before traveling to brazil", + "vaccines" + ], + [ + "what shots do i need before going to africa", + "vaccines" + ], + [ + "do i need to get any shots before volunteering in the congo", + "vaccines" + ], + [ + "must i have shots before i take a trip to canada", + "vaccines" + ], + [ + "do i need to get any shots before travelling to australia", + "vaccines" + ], + [ + "should i get shots if i'm going to go to thailand", + "vaccines" + ], + [ + "do i need to get any shots before i go to brazil", + "vaccines" + ], + [ + "do i need to get any shots before visiting family in seattle", + "vaccines" + ], + [ + "do you need shots before going to russia", + "vaccines" + ], + [ + "is a shot required before traveling to mexico", + "vaccines" + ], + [ + "do i need shots before traveling to mexico", + "vaccines" + ], + [ + "do i have to get shots to enter cuba", + "vaccines" + ], + [ + "do i need to have any shots to visit chile", + "vaccines" + ], + [ + "will ecuador require proof of any shots for me to go there", + "vaccines" + ], + [ + "how many vacation days have i saved up", + "pto_balance" + ], + [ + "how many vacation days do i have at my disposal", + "pto_balance" + ], + [ + "how many hours of vacation have i saved up", + "pto_balance" + ], + [ + "how many vacation days have i accumulated", + "pto_balance" + ], + [ + "how many pto days are available", + "pto_balance" + ], + [ + "how much vacation do i have saved", + "pto_balance" + ], + [ + "how much vacation have i earned", + "pto_balance" + ], + [ + "what number of pto days do i have left", + "pto_balance" + ], + [ + "how many weeks of vacation do i have", + "pto_balance" + ], + [ + "how many days of vacation do i have saved", + "pto_balance" + ], + [ + "i need to know how many pto days are left", + "pto_balance" + ], + [ + "whats the number of pto days i have to my availability", + "pto_balance" + ], + [ + "how many pto days are in my possesion", + "pto_balance" + ], + [ + "what number of vacation days do i have available", + "pto_balance" + ], + [ + "what number of vacation days do i have at my disposal", + "pto_balance" + ], + [ + "could you let me know how many pto days do i have left", + "pto_balance" + ], + [ + "could you tell me how many pto days do i have left", + "pto_balance" + ], + [ + "can you let me know how many pto days do i have left", + "pto_balance" + ], + [ + "can you tell me how many pto days do i have left", + "pto_balance" + ], + [ + "what is the amount of time i can request off in the coming year", + "pto_balance" + ], + [ + "where is the closest subway entrance to me to go to brooklyn", + "directions" + ], + [ + "where is the closest red lobster to my location right now, which is 5th avenue", + "directions" + ], + [ + "i am on main street now, where is the closest bus stop to me", + "directions" + ], + [ + "i am in downtown austin where is the nearest airport", + "directions" + ], + [ + "where is the closet bus stop to go to downtown dallas", + "directions" + ], + [ + "where is the nearest walmart", + "directions" + ], + [ + "how do i get to the movie theater by bus", + "directions" + ], + [ + "how do i get to the bus stop on foot", + "directions" + ], + [ + "how do i get to new york by bus", + "directions" + ], + [ + "how do i get to the train station by bus", + "directions" + ], + [ + "how do i get to the library by foot", + "directions" + ], + [ + "how do i get to the bowling alley by foot", + "directions" + ], + [ + "how do i get to the fine arts center by foot", + "directions" + ], + [ + "where is the closest target", + "directions" + ], + [ + "how do i get to the grocery store by bus", + "directions" + ], + [ + "how do i get to san fransisco by bus", + "directions" + ], + [ + "where can i find the nearest dollar store", + "directions" + ], + [ + "how do i get to the court house on foot", + "directions" + ], + [ + "where is the nearest gas station", + "directions" + ], + [ + "where is the closest park", + "directions" + ], + [ + "spell: dessert", + "spelling" + ], + [ + "how do you spell dessert", + "spelling" + ], + [ + "tell me how to spell the word dessert", + "spelling" + ], + [ + "what is the correct spelling of the word: dessert", + "spelling" + ], + [ + "how to spell: dessert", + "spelling" + ], + [ + "can you spell the word umbrella for me", + "spelling" + ], + [ + "please spell the word umbrella", + "spelling" + ], + [ + "please tell me how to spell umbrella", + "spelling" + ], + [ + "how do you spell umbrella", + "spelling" + ], + [ + "how is the word umbrella spelled", + "spelling" + ], + [ + "how is doctor spelled", + "spelling" + ], + [ + "tell me how to spell doctor", + "spelling" + ], + [ + "please spell doctor", + "spelling" + ], + [ + "how to spell doctor", + "spelling" + ], + [ + "spell doctor", + "spelling" + ], + [ + "malignant is spelled how exactly", + "spelling" + ], + [ + "tell me how to spell malignant", + "spelling" + ], + [ + "what is the correct spelling for malignant", + "spelling" + ], + [ + "how would i go about spelling malignant", + "spelling" + ], + [ + "how should i spell malignant", + "spelling" + ], + [ + "how ya doin", + "greeting" + ], + [ + "how ya been", + "greeting" + ], + [ + "hows are ya", + "greeting" + ], + [ + "heyo", + "greeting" + ], + [ + "are you good", + "greeting" + ], + [ + "how is it going my friend", + "greeting" + ], + [ + "how you are", + "greeting" + ], + [ + "tell me how are you", + "greeting" + ], + [ + "hi what's up", + "greeting" + ], + [ + "hey what's up", + "greeting" + ], + [ + "hey how's it going", + "greeting" + ], + [ + "hi, ai", + "greeting" + ], + [ + "good morning, ai", + "greeting" + ], + [ + "how've you been", + "greeting" + ], + [ + "wassup", + "greeting" + ], + [ + "hey", + "greeting" + ], + [ + "hiya", + "greeting" + ], + [ + "how's it hanging", + "greeting" + ], + [ + "hi", + "greeting" + ], + [ + "hello", + "greeting" + ], + [ + "factory settings restoration", + "reset_settings" + ], + [ + "i need you to reset to your factor settings", + "reset_settings" + ], + [ + "can you reset to factor settings", + "reset_settings" + ], + [ + "i want you to reset to factory settings", + "reset_settings" + ], + [ + "i want to restore your factory settings", + "reset_settings" + ], + [ + "switch back to factory settings", + "reset_settings" + ], + [ + "i want you to go back to factory settings", + "reset_settings" + ], + [ + "restore factory settings", + "reset_settings" + ], + [ + "i want a clean bootup to factory settings", + "reset_settings" + ], + [ + "change back to factory settings", + "reset_settings" + ], + [ + "reset to factory settings", + "reset_settings" + ], + [ + "go back to default settings", + "reset_settings" + ], + [ + "now i'd like for you to return to the original settings", + "reset_settings" + ], + [ + "can you now please go back to the original settings", + "reset_settings" + ], + [ + "please revert to the original settings", + "reset_settings" + ], + [ + "now restore the original settings", + "reset_settings" + ], + [ + "configure this to factory settings", + "reset_settings" + ], + [ + "make my settings go back to their factory settings", + "reset_settings" + ], + [ + "set this to my factory settings", + "reset_settings" + ], + [ + "change to factory settings", + "reset_settings" + ], + [ + "what may i call you", + "what_is_your_name" + ], + [ + "what was your name again", + "what_is_your_name" + ], + [ + "your name is", + "what_is_your_name" + ], + [ + "whats your name by the way", + "what_is_your_name" + ], + [ + "what's your name if i may ask", + "what_is_your_name" + ], + [ + "what is your name by chance", + "what_is_your_name" + ], + [ + "what is your names", + "what_is_your_name" + ], + [ + "what exactly is your name", + "what_is_your_name" + ], + [ + "what's the name i should use to talk to you", + "what_is_your_name" + ], + [ + "what is your given name", + "what_is_your_name" + ], + [ + "what's the name you like to be called", + "what_is_your_name" + ], + [ + "what's the name you were given", + "what_is_your_name" + ], + [ + "can i ask your name", + "what_is_your_name" + ], + [ + "do you mind if i ask your name", + "what_is_your_name" + ], + [ + "do you have a nickname", + "what_is_your_name" + ], + [ + "what do you go by", + "what_is_your_name" + ], + [ + "what do you call yourself", + "what_is_your_name" + ], + [ + "i'd like to know your name", + "what_is_your_name" + ], + [ + "your name please", + "what_is_your_name" + ], + [ + "can i have your name", + "what_is_your_name" + ], + [ + "how do i set up direct deposit for my first national account", + "direct_deposit" + ], + [ + "how do i set up direct deposit for my fifth third account", + "direct_deposit" + ], + [ + "how do i set up direct deposit for my cefcu account", + "direct_deposit" + ], + [ + "how do i set up direct deposit for my old national account", + "direct_deposit" + ], + [ + "how do i set up direct deposit for my bank of america account", + "direct_deposit" + ], + [ + "what might i need to do to direct deposit my paycheck", + "direct_deposit" + ], + [ + "what information do i need to direct deposit my paycheck", + "direct_deposit" + ], + [ + "how do i go about getting direct deposit in my usaa account", + "direct_deposit" + ], + [ + "does my td ameritrade checking account take direct deposit", + "direct_deposit" + ], + [ + "if i want to direct deposit my paycheck, what info do i need", + "direct_deposit" + ], + [ + "direct deposit my paycheck to my capital one account", + "direct_deposit" + ], + [ + "i'd like direct deposit to my chase bank account", + "direct_deposit" + ], + [ + "i want to set up direct deposit to my charles schwab account", + "direct_deposit" + ], + [ + "how do i go about setting up paycheck direct deposit", + "direct_deposit" + ], + [ + "link up my paycheck for direct deposit to my account at chase", + "direct_deposit" + ], + [ + "please assist me in linking my chase account to direct deposit for my paycheck", + "direct_deposit" + ], + [ + "please show me how to set up my paycheck for direct deposit to my chase account", + "direct_deposit" + ], + [ + "tell me the easiest way to set up direct deposit of my paycheck to my chase account", + "direct_deposit" + ], + [ + "help me get my paycheck set up for direct deposit to my chase account", + "direct_deposit" + ], + [ + "how can i learn how to use direct deposit", + "direct_deposit" + ], + [ + "what kind of interest can i expect with my chase account", + "interest_rate" + ], + [ + "how much interest am i getting in my citibank savings", + "interest_rate" + ], + [ + "how much interest do i get on my citizen's savings account", + "interest_rate" + ], + [ + "what kind of interest am i getting from my bank of america checking", + "interest_rate" + ], + [ + "what's my interest rate with my capital one account", + "interest_rate" + ], + [ + "what is walker bank paying me in interest on my account", + "interest_rate" + ], + [ + "where do i go to get private client account's interest rate", + "interest_rate" + ], + [ + "what interest rate am i getting currently from oak bank", + "interest_rate" + ], + [ + "how much interest am i getting percentage wise from chase", + "interest_rate" + ], + [ + "what is my interest rate for my scotiabank account", + "interest_rate" + ], + [ + "where can i find my voca account's interest rate", + "interest_rate" + ], + [ + "how can i find the current interest rate for my account ending in 9012", + "interest_rate" + ], + [ + "what interest rate is us bank giving me on my acount", + "interest_rate" + ], + [ + "where do i find the interest rate for my platinum account", + "interest_rate" + ], + [ + "where can i locate the pnc account's interest rate", + "interest_rate" + ], + [ + "what is the interest rate on my auto loan", + "interest_rate" + ], + [ + "how much is the interest rate on my home equity loan", + "interest_rate" + ], + [ + "tell me what the interest rate is on my personal loan through chase", + "interest_rate" + ], + [ + "whats the amount of interest i'm paying on my mortgage", + "interest_rate" + ], + [ + "what is the interest rate at pnc", + "interest_rate" + ], + [ + "how do i change my credit limit", + "credit_limit_change" + ], + [ + "how can up my credit limit", + "credit_limit_change" + ], + [ + "how can i make a change to my credit limit", + "credit_limit_change" + ], + [ + "can i make a change to my credit limit", + "credit_limit_change" + ], + [ + "how do i increse my credit limit", + "credit_limit_change" + ], + [ + "is there a way to increase the limit of my credit to 5000 dollars", + "credit_limit_change" + ], + [ + "i would like to have my credit increased to 5000 dollars", + "credit_limit_change" + ], + [ + "i want to increase my credit limit to 5000 dollars", + "credit_limit_change" + ], + [ + "could my credit be increased to 5000 dollars", + "credit_limit_change" + ], + [ + "i need my credit limit changed", + "credit_limit_change" + ], + [ + "the credit limit i have needs to be changed", + "credit_limit_change" + ], + [ + "can you help me change my credit limit", + "credit_limit_change" + ], + [ + "my credit limit needs to me changed", + "credit_limit_change" + ], + [ + "i would like my credit limit increased to 5000 dollars", + "credit_limit_change" + ], + [ + "i would like to change my credit limit", + "credit_limit_change" + ], + [ + "can i increase my credit limit", + "credit_limit_change" + ], + [ + "raise my credit limit", + "credit_limit_change" + ], + [ + "increase my credit limit", + "credit_limit_change" + ], + [ + "i'd like to increase my credit limit", + "credit_limit_change" + ], + [ + "can you help me increase my credit limit", + "credit_limit_change" + ], + [ + "do you have hobbies", + "what_are_your_hobbies" + ], + [ + "tell me about your hobbies", + "what_are_your_hobbies" + ], + [ + "are you involved in hobbies", + "what_are_your_hobbies" + ], + [ + "what recreational activities do you enjoy", + "what_are_your_hobbies" + ], + [ + "what do you do as a hobby", + "what_are_your_hobbies" + ], + [ + "what do you like to do in your free time", + "what_are_your_hobbies" + ], + [ + "what are your hobbies", + "what_are_your_hobbies" + ], + [ + "what hobbies do you have", + "what_are_your_hobbies" + ], + [ + "when you have free time, what do you do", + "what_are_your_hobbies" + ], + [ + "what do you do in your spare time siri", + "what_are_your_hobbies" + ], + [ + "what hobbies do you have alexa", + "what_are_your_hobbies" + ], + [ + "what are your hobbies siri", + "what_are_your_hobbies" + ], + [ + "what do you do for fun alexa", + "what_are_your_hobbies" + ], + [ + "what activities do you enjoy", + "what_are_your_hobbies" + ], + [ + "what do you do with your free time", + "what_are_your_hobbies" + ], + [ + "what are you interested in", + "what_are_your_hobbies" + ], + [ + "what are you\u2019re hobbies, ai", + "what_are_your_hobbies" + ], + [ + "what do you find fun", + "what_are_your_hobbies" + ], + [ + "which hobbies do you like", + "what_are_your_hobbies" + ], + [ + "what are your interests", + "what_are_your_hobbies" + ], + [ + "can you find me a round trip flight from denver international to new york international on the 3rd through the 7th", + "book_flight" + ], + [ + "can you look for a denver international to new york international round trip flight for the 5th though 8th", + "book_flight" + ], + [ + "can you find me a flight from denver international to new york international on the 4th for under 700 dollars", + "book_flight" + ], + [ + "for under 700 i need a flight from denver international to new york international on the 3rd", + "book_flight" + ], + [ + "i need a flight from denver international to new york international round trip for the 4th though the 8th", + "book_flight" + ], + [ + "i want to find a round trip flight from denver international to new york international on the 8th to the 16th", + "book_flight" + ], + [ + "i need a flight from denver international to new york for under 700 on the 3rd", + "book_flight" + ], + [ + "i want to find a flight for under 700 on the 4th from denver international to new york international", + "book_flight" + ], + [ + "on the third i am looking for a flight for under 700 from denver international to new york international", + "book_flight" + ], + [ + "i need a flight from the 3rd to the 7th round rip from denver international to new york international", + "book_flight" + ], + [ + "find me a flight from philly to atl for june 5th to 8th", + "book_flight" + ], + [ + "get me flight from philly to atlanta on june 5th i'm coming back june 8th", + "book_flight" + ], + [ + "book a flight from philadelphia to atlanta on june 5th and returning on june 8th", + "book_flight" + ], + [ + "i need an airline ticket for a round trip flight from philadelphia to atlanta for the dates of june 5 - 8", + "book_flight" + ], + [ + "need airplane ridge from philadelphia to atlanta leaving on the 5th of june and returning on the 8th of june", + "book_flight" + ], + [ + "i'm looking for a back and forth flight from lax to portland for w to sunday", + "book_flight" + ], + [ + "i'm exploring a possible cycle flight from yyz to dublin for w to aug two", + "book_flight" + ], + [ + "i'm seeking a full circle flight from msy to msp for w to june 7", + "book_flight" + ], + [ + "i'm searching for a 2-way flight from yqg to heathrow for w to memorial day", + "book_flight" + ], + [ + "i'm striving to find a 2-way flight from jfk to dtw for w to july 3", + "book_flight" + ], + [ + "will you please read the things on my shopping list", + "shopping_list" + ], + [ + "what is on my shopping list", + "shopping_list" + ], + [ + "can you read the things to me that are on my shopping list", + "shopping_list" + ], + [ + "can you read the things on my shopping list", + "shopping_list" + ], + [ + "is it possible for you to read the things on my shopping list", + "shopping_list" + ], + [ + "did i add salt to my shopping list", + "shopping_list" + ], + [ + "do i have toothpaste on my shopping list", + "shopping_list" + ], + [ + "is there lettuce on my shopping list", + "shopping_list" + ], + [ + "did i include butter in my shopping list", + "shopping_list" + ], + [ + "did i put elbow noodles on the shopping list", + "shopping_list" + ], + [ + "did i forget to put protein shakes on my shopping list", + "shopping_list" + ], + [ + "do i have butter on my list", + "shopping_list" + ], + [ + "is waffles on my list for shopping", + "shopping_list" + ], + [ + "do i already have cereal on my shopping list", + "shopping_list" + ], + [ + "did i remember to add milk to my shopping list", + "shopping_list" + ], + [ + "check my shopping list", + "shopping_list" + ], + [ + "read my shopping list", + "shopping_list" + ], + [ + "shopping list", + "shopping_list" + ], + [ + "what do i need to buy", + "shopping_list" + ], + [ + "did i remember to put eggs on my shopping list", + "shopping_list" + ], + [ + "send a text to joe", + "text" + ], + [ + "i need to text joe", + "text" + ], + [ + "text joe", + "text" + ], + [ + "send joe a text", + "text" + ], + [ + "text john with the message 'where are you", + "text" + ], + [ + "please send a text to danny saying that i'm running late", + "text" + ], + [ + "text mom saying happy birthday", + "text" + ], + [ + "text mollie saying 'i am on my way", + "text" + ], + [ + "i need you to text mickey saying 'can we reschedule", + "text" + ], + [ + "send message to carl, you suck", + "text" + ], + [ + "let carl know that he sucks", + "text" + ], + [ + "message carl, you suck", + "text" + ], + [ + "tell carl that he sucks", + "text" + ], + [ + "inform carl that he is an awful human being", + "text" + ], + [ + "send robert a text from me telling him okay", + "text" + ], + [ + "i need leslie to be texted saying have a good day", + "text" + ], + [ + "i want a text sent to bob saying i will be late", + "text" + ], + [ + "write a text to kim saying no", + "text" + ], + [ + "send a text to mom saying i'm on my way", + "text" + ], + [ + "robbie needs to know aboutthis so would you text robbie to let them know", + "text" + ], + [ + "how much is my kill bill bill for", + "bill_balance" + ], + [ + "what is the amount i owe on my phone", + "bill_balance" + ], + [ + "what is the total of my repair bill", + "bill_balance" + ], + [ + "how much is due on the gas bill", + "bill_balance" + ], + [ + "what do i owe on telephone and cable bill", + "bill_balance" + ], + [ + "how much do i have left to pay on my server and domain", + "bill_balance" + ], + [ + "what's the amount due on my vet and vehicle registration bills", + "bill_balance" + ], + [ + "what do my bills look like for amazon and netflix", + "bill_balance" + ], + [ + "how much do i have to pay on taxes and cable", + "bill_balance" + ], + [ + "how much do i owe on all of my bills", + "bill_balance" + ], + [ + "how much do i have to pay for my shell gas card bill", + "bill_balance" + ], + [ + "what is the total of all my bills combined", + "bill_balance" + ], + [ + "can you tell me how much i need to pay on my bills this month", + "bill_balance" + ], + [ + "how much is my bill for capital one", + "bill_balance" + ], + [ + "what is the total amount i am going to have to pay in bills this month", + "bill_balance" + ], + [ + "how much do i have to pay on my amazon card this month", + "bill_balance" + ], + [ + "how much do my bills cost this month", + "bill_balance" + ], + [ + "how much is my xfinity cable bill", + "bill_balance" + ], + [ + "what is the amount i owe to clay electric", + "bill_balance" + ], + [ + "could you tell me the amount owed on gas and electric", + "bill_balance" + ], + [ + "give my location to stan", + "share_location" + ], + [ + "i'd like to share my location with stephanie", + "share_location" + ], + [ + "i would like brenda to have my location", + "share_location" + ], + [ + "let lisa know where i am now", + "share_location" + ], + [ + "i want david to know where i'm at", + "share_location" + ], + [ + "can you share my location with roger", + "share_location" + ], + [ + "can you send my exact location to laura", + "share_location" + ], + [ + "share my location with apple", + "share_location" + ], + [ + "share my location with google", + "share_location" + ], + [ + "send mike my exact location", + "share_location" + ], + [ + "send my current location to steve, please", + "share_location" + ], + [ + "steve needs to know my location", + "share_location" + ], + [ + "i'd like to send steve my location", + "share_location" + ], + [ + "share my location with steve", + "share_location" + ], + [ + "i need to send my location to my friend steve", + "share_location" + ], + [ + "give arianna my current location", + "share_location" + ], + [ + "share with current location with ben", + "share_location" + ], + [ + "show my gps location to brittany", + "share_location" + ], + [ + "give my gps location to jason", + "share_location" + ], + [ + "share my gps with tom", + "share_location" + ], + [ + "cash in my credit card rewards", + "redeem_rewards" + ], + [ + "convert my credit card points to cash", + "redeem_rewards" + ], + [ + "cash in my credit card points", + "redeem_rewards" + ], + [ + "where i can use credit card points", + "redeem_rewards" + ], + [ + "redeem credit card points", + "redeem_rewards" + ], + [ + "how to use credit card points", + "redeem_rewards" + ], + [ + "what can i buy with credit card points", + "redeem_rewards" + ], + [ + "please redeem my credit card points", + "redeem_rewards" + ], + [ + "redeem my credit card rewards into my account", + "redeem_rewards" + ], + [ + "help with credit card points", + "redeem_rewards" + ], + [ + "what should i use the points from my credit card on", + "redeem_rewards" + ], + [ + "how do i cash in credit card points", + "redeem_rewards" + ], + [ + "i have credit card points, how do i redeem them", + "redeem_rewards" + ], + [ + "where do i redeem my credit card points", + "redeem_rewards" + ], + [ + "i would like to find out how to cash out cred card points", + "redeem_rewards" + ], + [ + "how to cash in visa card rewards", + "redeem_rewards" + ], + [ + "how can i cash in my visa rewards", + "redeem_rewards" + ], + [ + "how do you get your visa card rewards", + "redeem_rewards" + ], + [ + "how do i get rewards from my visa card", + "redeem_rewards" + ], + [ + "how do i get my rewards from my visa card", + "redeem_rewards" + ], + [ + "let me hear the song sympathy for the devil", + "play_music" + ], + [ + "please start the song penny lane", + "play_music" + ], + [ + "i want to hear satisfaction", + "play_music" + ], + [ + "fetch the song smells like teen spirit and play it", + "play_music" + ], + [ + "i am in the mood to listen to mack the knife", + "play_music" + ], + [ + "can you play the song that sounds like thun thun thun", + "play_music" + ], + [ + "play the song that goes like i like to move it, move it", + "play_music" + ], + [ + "can you play the song amazing grace and it goes like this, amazing grace how sweet the sound", + "play_music" + ], + [ + "please play the song that goes like america the beautiful", + "play_music" + ], + [ + "please play the song that goes like this: jingle bells jingle bells jingle all the way", + "play_music" + ], + [ + "can you play music by the beatles", + "play_music" + ], + [ + "can you play the beatles", + "play_music" + ], + [ + "are you able to play beatles songs", + "play_music" + ], + [ + "can i hear the beatles", + "play_music" + ], + [ + "do you have any of the beatles music", + "play_music" + ], + [ + "can you play the song that starts with doo doo doo", + "play_music" + ], + [ + "can i hear the song that starts out doo doo doo", + "play_music" + ], + [ + "please play me the song that starts out with doo doo doo", + "play_music" + ], + [ + "please play the song that goes doo doo doo", + "play_music" + ], + [ + "can you play the song that goes doo doo doo", + "play_music" + ], + [ + "you can remove the field trip from my calendar for march 12, 2019", + "calendar_update" + ], + [ + "you can remove the wedding from my calendar for march 12, 2019", + "calendar_update" + ], + [ + "you can remove the play date from my calendar for feb 18, 2019", + "calendar_update" + ], + [ + "you can remove the dinner party from my calendar for january 21, 2019", + "calendar_update" + ], + [ + "you can remove the brithday party from my calendar fpr january 15, 2019", + "calendar_update" + ], + [ + "put cancel abc on my calendar for next thursday", + "calendar_update" + ], + [ + "i need to add iep meeting to my calendar on april 15th", + "calendar_update" + ], + [ + "add my next doctor visit to my calendar", + "calendar_update" + ], + [ + "add swimming to my calendar today", + "calendar_update" + ], + [ + "i have an appointment on the 5th put it on for 5pm", + "calendar_update" + ], + [ + "for friday, add a doctor's appointment to my calendar", + "calendar_update" + ], + [ + "can you add a doctor's appointment to friday's calendar", + "calendar_update" + ], + [ + "add to my friday calendar a doctor's appointment", + "calendar_update" + ], + [ + "add a doctor's appointment to my calendar for friday", + "calendar_update" + ], + [ + "add to friday's calendar a doctor's appointment", + "calendar_update" + ], + [ + "mark my calendar that i will be meeting steven on march 5", + "calendar_update" + ], + [ + "on the 22nd of this month, we need to clear our calendar so we can leave it open for mark to visit", + "calendar_update" + ], + [ + "can you remove that event from my calendar, please", + "calendar_update" + ], + [ + "can you remove this event from my calendar", + "calendar_update" + ], + [ + "can you remove this event from my calendar, please", + "calendar_update" + ], + [ + "are you secretly real", + "are_you_a_bot" + ], + [ + "i would like to know if you are a robot", + "are_you_a_bot" + ], + [ + "you could tell me if you were real", + "are_you_a_bot" + ], + [ + "i would like to know if you are an artificial intelligence being", + "are_you_a_bot" + ], + [ + "do you consider yourself an artificial intelligence being", + "are_you_a_bot" + ], + [ + "can you act and think like a real person", + "are_you_a_bot" + ], + [ + "could you be a real person", + "are_you_a_bot" + ], + [ + "clear something up, are you a robot", + "are_you_a_bot" + ], + [ + "are you a human being or a computer", + "are_you_a_bot" + ], + [ + "can you tell me if you are a real live person", + "are_you_a_bot" + ], + [ + "am i speaking with a real person", + "are_you_a_bot" + ], + [ + "are you an actual human", + "are_you_a_bot" + ], + [ + "would you be classified as a bot", + "are_you_a_bot" + ], + [ + "would it be accurate to call you a bot", + "are_you_a_bot" + ], + [ + "would you say you are a bot", + "are_you_a_bot" + ], + [ + "i am curious to know if you are a bot", + "are_you_a_bot" + ], + [ + "are you an actual live person", + "are_you_a_bot" + ], + [ + "please tell me if you are a bot", + "are_you_a_bot" + ], + [ + "are you a robot", + "are_you_a_bot" + ], + [ + "can you tell me what kind of life form you are", + "are_you_a_bot" + ], + [ + "what is the gas level in my gas tank", + "gas" + ], + [ + "is my gas tank full or empty", + "gas" + ], + [ + "do i have enough gas to take me home", + "gas" + ], + [ + "should i a gas refill for my car at the next gas station", + "gas" + ], + [ + "can you inform me of my gas amount", + "gas" + ], + [ + "calculate the amount of gas i currently have", + "gas" + ], + [ + "how many gallons of gas are in my car", + "gas" + ], + [ + "what amount of gas do i have left", + "gas" + ], + [ + "how much gas does my car currently have", + "gas" + ], + [ + "how much gas do i have", + "gas" + ], + [ + "how much fuel do i have left", + "gas" + ], + [ + "what's left in the tank", + "gas" + ], + [ + "how much gas do i have left", + "gas" + ], + [ + "how long before i'm on e", + "gas" + ], + [ + "do i have enough fuel to get to buffalo", + "gas" + ], + [ + "how much gas do i need to get to buffalo", + "gas" + ], + [ + "do i have enough gas to get to buffalo", + "gas" + ], + [ + "how much fuel do i need to get to buffalo", + "gas" + ], + [ + "how much gas do you have will you make it to jackson", + "gas" + ], + [ + "how much gas does it take to get to jackson", + "gas" + ], + [ + "what is the date that my visa card expires", + "expiration_date" + ], + [ + "tell me the expiration date on my visa credit card please", + "expiration_date" + ], + [ + "tell me when my credit card from visa expires please", + "expiration_date" + ], + [ + "do you know the expiration date that is on my visa card", + "expiration_date" + ], + [ + "can you find the expiration date and tell me what it is that is on my visa credit card", + "expiration_date" + ], + [ + "will i need to renew my credit card soon", + "expiration_date" + ], + [ + "when will my visa expire", + "expiration_date" + ], + [ + "will my debit card go bad any time soon", + "expiration_date" + ], + [ + "what is my expiration data for my card", + "expiration_date" + ], + [ + "when will my card go rotten", + "expiration_date" + ], + [ + "will my card expire on a certain month", + "expiration_date" + ], + [ + "when is my cards end month", + "expiration_date" + ], + [ + "what month does my card stop working", + "expiration_date" + ], + [ + "my card will work until what month", + "expiration_date" + ], + [ + "what month does my card close", + "expiration_date" + ], + [ + "when do i need a new credit card", + "expiration_date" + ], + [ + "in what month does my credit card expire", + "expiration_date" + ], + [ + "when is my credit card set to expire", + "expiration_date" + ], + [ + "i need to know when my credit card is going to expire", + "expiration_date" + ], + [ + "tell me when my credit card expires", + "expiration_date" + ], + [ + "add this song to travel", + "update_playlist" + ], + [ + "add song to media playlist", + "update_playlist" + ], + [ + "add song to my hype playlist", + "update_playlist" + ], + [ + "put song in springtime playlist", + "update_playlist" + ], + [ + "put we are the champions to my running playlist", + "update_playlist" + ], + [ + "put on bended knee on my reflection playlist", + "update_playlist" + ], + [ + "please place this track on my driving mix", + "update_playlist" + ], + [ + "please add this song to my morning job playlist", + "update_playlist" + ], + [ + "i'd like to augment my workout playlist with this tune", + "update_playlist" + ], + [ + "i'd like to add this song to my relaxation playlist", + "update_playlist" + ], + [ + "add games without frontiers to my week 5 playlist", + "update_playlist" + ], + [ + "i want to put thank you on my playlist called relaxing jams", + "update_playlist" + ], + [ + "can you put the currently playing track on my zen playlist", + "update_playlist" + ], + [ + "add welcome to the jungle to my workout mix", + "update_playlist" + ], + [ + "i want you to add the song i listen to to my summer playlist", + "update_playlist" + ], + [ + "add what i listen to to my car ride playlist", + "update_playlist" + ], + [ + "please add what i listen to to my lolla playlist", + "update_playlist" + ], + [ + "can you help me add the song i listen to to my clutch playlist", + "update_playlist" + ], + [ + "add what i am listening to to my road trip playlist", + "update_playlist" + ], + [ + "put this in my workout playlist", + "update_playlist" + ], + [ + "i would like to cancel my reservation for nenuco's restaurant to x- tapas", + "cancel_reservation" + ], + [ + "i need my reservation to be cancelled for nugget to xiomara's restaurant", + "cancel_reservation" + ], + [ + "i need to cancel my reservation for new york to xai varanda", + "cancel_reservation" + ], + [ + "i want to cancel my reservation for network to xaga such", + "cancel_reservation" + ], + [ + "forget reservation at longhorn for 4", + "cancel_reservation" + ], + [ + "forget reservation at oyster bar for tonight", + "cancel_reservation" + ], + [ + "cancel my reservation at osteria for our party", + "cancel_reservation" + ], + [ + "scrap reservation at 4 for red robin", + "cancel_reservation" + ], + [ + "cancel reservation at eight for the group", + "cancel_reservation" + ], + [ + "i'd like to cancel my reservation for 5 at hoss's steak house", + "cancel_reservation" + ], + [ + "please cancel my reservation at red lobster for 6", + "cancel_reservation" + ], + [ + "i need to cancel my reservation for 2 at franklin's grille", + "cancel_reservation" + ], + [ + "cancel that reservation for 8 at barney's", + "cancel_reservation" + ], + [ + "nix that reservation for 4 at strip house", + "cancel_reservation" + ], + [ + "undo my reservation for 5 at the loft", + "cancel_reservation" + ], + [ + "i no longer want my reservation for 5 at the loft cancel it please", + "cancel_reservation" + ], + [ + "hey siri, please cancel my reservation at the loft for 5", + "cancel_reservation" + ], + [ + "i don't need my reservation for 5 at the loft please cancel it", + "cancel_reservation" + ], + [ + "cancel my reservation for 5 at the loft", + "cancel_reservation" + ], + [ + "carla doesn't want her olive garden reservation anymore", + "cancel_reservation" + ], + [ + "what's the funniest thing you've got", + "tell_joke" + ], + [ + "let me hear something funny", + "tell_joke" + ], + [ + "i want to hear anything you have that's funny", + "tell_joke" + ], + [ + "i want to hear something hilarious", + "tell_joke" + ], + [ + "tell me your funniest joke", + "tell_joke" + ], + [ + "do you have any funny jokes", + "tell_joke" + ], + [ + "give me your best joke", + "tell_joke" + ], + [ + "tell my something funny", + "tell_joke" + ], + [ + "tell me something to make me laugh", + "tell_joke" + ], + [ + "i'm in the mood for a joke", + "tell_joke" + ], + [ + "could you tell me a good joke", + "tell_joke" + ], + [ + "do you have any funny jokes you can tell", + "tell_joke" + ], + [ + "have you heard any great jokes lately", + "tell_joke" + ], + [ + "do you know any good jokes you would like to share", + "tell_joke" + ], + [ + "what sort of jokes do you know", + "tell_joke" + ], + [ + "i want to hear doctor jokes", + "tell_joke" + ], + [ + "do you know any jokes about librarians", + "tell_joke" + ], + [ + "tell me a funny joke about men", + "tell_joke" + ], + [ + "can you tell me a joke about a lawyer", + "tell_joke" + ], + [ + "i want to hear jokes about toddlers", + "tell_joke" + ], + [ + "can i start calling you dave", + "change_ai_name" + ], + [ + "i want to change your name to sarah", + "change_ai_name" + ], + [ + "i want to call you maggie", + "change_ai_name" + ], + [ + "can i change you name to gretchen", + "change_ai_name" + ], + [ + "i'd like to call you alex", + "change_ai_name" + ], + [ + "can i call you adam instead of the current name", + "change_ai_name" + ], + [ + "i will now call you adam instead of your old name", + "change_ai_name" + ], + [ + "will you respond to adam instead of the current name", + "change_ai_name" + ], + [ + "i want to change your name to adam", + "change_ai_name" + ], + [ + "i want to start calling you adam", + "change_ai_name" + ], + [ + "i want your name to be gerry", + "change_ai_name" + ], + [ + "i want your name to be henry", + "change_ai_name" + ], + [ + "i want your name to be john", + "change_ai_name" + ], + [ + "make your name jake", + "change_ai_name" + ], + [ + "make your name steve", + "change_ai_name" + ], + [ + "i would like to change your name to fred", + "change_ai_name" + ], + [ + "i think i want your name changed to fred", + "change_ai_name" + ], + [ + "can you have your name changed to fred", + "change_ai_name" + ], + [ + "can you change your name to fred", + "change_ai_name" + ], + [ + "change your name to fred", + "change_ai_name" + ], + [ + "what is your age again", + "how_old_are_you" + ], + [ + "how old are you in 2019", + "how_old_are_you" + ], + [ + "what's your birthday", + "how_old_are_you" + ], + [ + "were you born in the 80s", + "how_old_are_you" + ], + [ + "how old were you on your most recent birthday", + "how_old_are_you" + ], + [ + "what day were you born", + "how_old_are_you" + ], + [ + "what is your current age", + "how_old_are_you" + ], + [ + "how old are you as of today", + "how_old_are_you" + ], + [ + "what you age on your last birthday", + "how_old_are_you" + ], + [ + "how many birthdays have you had", + "how_old_are_you" + ], + [ + "how many years have you been living", + "how_old_are_you" + ], + [ + "hey how old are you", + "how_old_are_you" + ], + [ + "do you have an age", + "how_old_are_you" + ], + [ + "i was wondering what age you are", + "how_old_are_you" + ], + [ + "in what year were you born", + "how_old_are_you" + ], + [ + "what is your date of birth", + "how_old_are_you" + ], + [ + "what year were you born in", + "how_old_are_you" + ], + [ + "what is the year that were you born", + "how_old_are_you" + ], + [ + "how old are you ai", + "how_old_are_you" + ], + [ + "are you 16 years old", + "how_old_are_you" + ], + [ + "i need a car rental this week", + "car_rental" + ], + [ + "i am going away and need to rent a car", + "car_rental" + ], + [ + "help me find a car to rent", + "car_rental" + ], + [ + "can you get me a car rental for march 1st to 3rd in seattle, and i'd like a sedan if possible", + "car_rental" + ], + [ + "help me book a car rental in austin for april 11th to 13th get me a sedan if possible", + "car_rental" + ], + [ + "can you get me a car rental for march 13th to 15th in nyc, and i'd like a convertible if possible", + "car_rental" + ], + [ + "help me book a car rental in chicago for april 1st to 3rd get me an suv if possible", + "car_rental" + ], + [ + "i need to book a car rental in las vegas", + "car_rental" + ], + [ + "i'm looking for assistance booking a rental car in las vegas", + "car_rental" + ], + [ + "could i get assistance booking a car rental in las vegas", + "car_rental" + ], + [ + "how can i rent a car in las vegas", + "car_rental" + ], + [ + "can you help me rent a car in las vegas", + "car_rental" + ], + [ + "can i get a car rental in boise from april 11th to april 13th", + "car_rental" + ], + [ + "how can i rent a ride in alaska from march 5th to march 18th", + "car_rental" + ], + [ + "where do i rent a car in las vegas from november 16th to december 16th", + "car_rental" + ], + [ + "can i rent a car from dfw airport from march 1st to march 8th", + "car_rental" + ], + [ + "do you have a car rental in new york from june 6th to june 9th", + "car_rental" + ], + [ + "i must procure a car rental for the 10th to the 15th in zimbabwe and i would prefer a bmw", + "car_rental" + ], + [ + "i really must rent a car out of sky harbor airport from the 3rd to the 5th of february", + "car_rental" + ], + [ + "i really need to get a volkswagen car rental for march 5th to march 8th in phoenix", + "car_rental" + ], + [ + "how can i jump start my car if my battery is dead", + "jump_start" + ], + [ + "will a jump start work if my batter is dead", + "jump_start" + ], + [ + "how to jump start a car", + "jump_start" + ], + [ + "what do i need to jump start a battery", + "jump_start" + ], + [ + "how do i jump start a bad battery", + "jump_start" + ], + [ + "what steps do i need to take to jump start my car", + "jump_start" + ], + [ + "i'm not sure how to jump start a car; can you help me", + "jump_start" + ], + [ + "how do i do a jump start on my car", + "jump_start" + ], + [ + "how might i go about jump starting a car", + "jump_start" + ], + [ + "how can i jump start a car", + "jump_start" + ], + [ + "can you tell me how to jump start a car", + "jump_start" + ], + [ + "how can i jump start my car", + "jump_start" + ], + [ + "show me instructions on how to jump start my car", + "jump_start" + ], + [ + "teach me how to jump start my car", + "jump_start" + ], + [ + "what do i need in order to jump start my car", + "jump_start" + ], + [ + "do i need jumper cables for my dead car battery", + "jump_start" + ], + [ + "who can jump off my dead car battery", + "jump_start" + ], + [ + "my car battery died and i need help", + "jump_start" + ], + [ + "can i get my car jumped for this dead battery", + "jump_start" + ], + [ + "there is no juice in my battery please help", + "jump_start" + ], + [ + "can you give me a chinese meal suggestion", + "meal_suggestion" + ], + [ + "i would like you to suggest a chinese dish", + "meal_suggestion" + ], + [ + "please suggest a chinese meal", + "meal_suggestion" + ], + [ + "i would like you to give me a suggestion for a mexican meal", + "meal_suggestion" + ], + [ + "can you suggest a mexican dish", + "meal_suggestion" + ], + [ + "i need some good suggestions for peruvian cuisine", + "meal_suggestion" + ], + [ + "help me find some new dinner recipes", + "meal_suggestion" + ], + [ + "what would you say is a good german dinner idea", + "meal_suggestion" + ], + [ + "i need an italian dinner idea", + "meal_suggestion" + ], + [ + "any recommendations for a greek dinner", + "meal_suggestion" + ], + [ + "what would you say is the best meal to have for dinner", + "meal_suggestion" + ], + [ + "i am bored and need new dinner recommendations", + "meal_suggestion" + ], + [ + "i need an idea for a french dinner", + "meal_suggestion" + ], + [ + "whats a good chinese dinner suggestion", + "meal_suggestion" + ], + [ + "what would you suggest having for dinner", + "meal_suggestion" + ], + [ + "i need to quick dinner suggestions", + "meal_suggestion" + ], + [ + "what kind of meal should i eat from thailand", + "meal_suggestion" + ], + [ + "suggest a meal from thailand please", + "meal_suggestion" + ], + [ + "suggestions for thai food", + "meal_suggestion" + ], + [ + "give recommendations for thai food", + "meal_suggestion" + ], + [ + "i would like to learn to make cookies", + "recipe" + ], + [ + "show me popular sushi recipes", + "recipe" + ], + [ + "i need a pancake recipe", + "recipe" + ], + [ + "find instructions on baking lemon cake", + "recipe" + ], + [ + "can you give me instructions on how to make alfredo", + "recipe" + ], + [ + "how do i make shrimp", + "recipe" + ], + [ + "what is a good recipe for steak", + "recipe" + ], + [ + "find a recipe for hamburgers", + "recipe" + ], + [ + "pull up ramen recipes please", + "recipe" + ], + [ + "how do you make dumplings", + "recipe" + ], + [ + "how do you make blue cheese dressing", + "recipe" + ], + [ + "i need a recipe for chicken cordon bleu", + "recipe" + ], + [ + "recipe for traditional roast beef and gravy", + "recipe" + ], + [ + "i want to make pork barbque but do no know how", + "recipe" + ], + [ + "give me a good recipe for chicken parmesan", + "recipe" + ], + [ + "do you have any good ways to make tomato soup", + "recipe" + ], + [ + "how do i make chicken alfredo", + "recipe" + ], + [ + "recipe for beef stroganoff", + "recipe" + ], + [ + "i need to find a good way to make chicken soup", + "recipe" + ], + [ + "tell me how to make ramen", + "recipe" + ], + [ + "what's my income before taxes", + "income" + ], + [ + "what's my income from work", + "income" + ], + [ + "how much money do i make at my job", + "income" + ], + [ + "was is my salary", + "income" + ], + [ + "what's my yearly income", + "income" + ], + [ + "what was my income last year", + "income" + ], + [ + "what's my total income", + "income" + ], + [ + "what's my total earnings", + "income" + ], + [ + "what's my work salary", + "income" + ], + [ + "do you know my work income", + "income" + ], + [ + "how much money do i make a week", + "income" + ], + [ + "how much do i make in a year", + "income" + ], + [ + "what do i get paid", + "income" + ], + [ + "how much is my salary", + "income" + ], + [ + "i would like to know what my income is", + "income" + ], + [ + "tell me my income amount", + "income" + ], + [ + "i need to know the amount of my income", + "income" + ], + [ + "get my income amount for me", + "income" + ], + [ + "how much do you start at", + "income" + ], + [ + "yearly salary", + "income" + ], + [ + "order more bread please", + "order" + ], + [ + "i ran out of bread, order more", + "order" + ], + [ + "since i ran out , order more bread", + "order" + ], + [ + "place an order for bread", + "order" + ], + [ + "make an order of bread because i am out", + "order" + ], + [ + "order an amazon gift card from amazon in the amount of twenty dollars", + "order" + ], + [ + "order a case of coke from amazon", + "order" + ], + [ + "order dog food from walmart", + "order" + ], + [ + "order more paper towels from amazon", + "order" + ], + [ + "order a disney gift card in the amount of five hundred dollars from costco", + "order" + ], + [ + "i want to buy an iphone7", + "order" + ], + [ + "can you order an iphone7 for me with two-day free delivery", + "order" + ], + [ + "help me buy a black iphone7", + "order" + ], + [ + "please order an iphone7 for me", + "order" + ], + [ + "everything needs ordered off my list", + "order" + ], + [ + "for the shopping list, order everything", + "order" + ], + [ + "order all of my shopping list", + "order" + ], + [ + "order all items on the list", + "order" + ], + [ + "purchase me the kyrie 4s", + "order" + ], + [ + "aquire me them kyrie 4s", + "order" + ], + [ + "is there much traffic between here and work right now", + "traffic" + ], + [ + "what's the traffic like right now for my route to work", + "traffic" + ], + [ + "is the traffic bad going downtown right now", + "traffic" + ], + [ + "how's the traffic this morning", + "traffic" + ], + [ + "how bad is the traffic on the way to downtown", + "traffic" + ], + [ + "what's the traffic like going to central park", + "traffic" + ], + [ + "is there heavy traffic on the way to the city", + "traffic" + ], + [ + "how bad is traffic on the way into oakville right now", + "traffic" + ], + [ + "how does the traffic look on my way to work right now", + "traffic" + ], + [ + "what does my commute look like", + "traffic" + ], + [ + "what is the traffic like on the road to downtown dallas", + "traffic" + ], + [ + "what kind of traffic is on hwy 1 going to the downtown area right now", + "traffic" + ], + [ + "how is the traffic on rt 5 towards my work , community bank", + "traffic" + ], + [ + "is there any traffic on the road i take home from work right now, rt 40", + "traffic" + ], + [ + "tell me how the traffic is on rt 7 to the airport today", + "traffic" + ], + [ + "what will the traffic be like if i headed out to work right now", + "traffic" + ], + [ + "what kind of traffic can i expect on the way to church", + "traffic" + ], + [ + "how's the traffic to work", + "traffic" + ], + [ + "can you give me a traffic update for a trip to the grocery store", + "traffic" + ], + [ + "how's the traffic looking if i headed to fred meyer", + "traffic" + ], + [ + "i need more checks because i am out", + "order_checks" + ], + [ + "can i order new checks since i am out", + "order_checks" + ], + [ + "i am now out of checks, how do i order new ones", + "order_checks" + ], + [ + "i need to order new checks because i am all out", + "order_checks" + ], + [ + "i have no checks and need to order new checks", + "order_checks" + ], + [ + "put in an order for more checks", + "order_checks" + ], + [ + "how do i order more free checkbooks", + "order_checks" + ], + [ + "i ran out of checks and need more ordered", + "order_checks" + ], + [ + "please order more checks i just used the last one", + "order_checks" + ], + [ + "i just used my last check and need more now", + "order_checks" + ], + [ + "i ran out of checks and need more asap", + "order_checks" + ], + [ + "i would like more checks sent to my address", + "order_checks" + ], + [ + "how would i go about getting more checks for my western union account", + "order_checks" + ], + [ + "i just used my final check order more", + "order_checks" + ], + [ + "can i order checks online for my checking account", + "order_checks" + ], + [ + "please send me more checkbooks", + "order_checks" + ], + [ + "please notify my bank that i need more checks", + "order_checks" + ], + [ + "how can i order checks for my savings account", + "order_checks" + ], + [ + "i need to know how to order checks for my bank of america account", + "order_checks" + ], + [ + "who do i contact to order more checks for my td bank account", + "order_checks" + ], + [ + "is there a reason my card was declined", + "card_declined" + ], + [ + "my card was rejected at shakey's and i am wondering why", + "card_declined" + ], + [ + "was there a problem with my card yesterday", + "card_declined" + ], + [ + "my debit card was rejected at ella's and i want to know why", + "card_declined" + ], + [ + "my card was declined at mcdonald's and i want to know why", + "card_declined" + ], + [ + "i need to know why you declined my card yesterday", + "card_declined" + ], + [ + "my card was rejected at the zoo, could you tell me why", + "card_declined" + ], + [ + "tell me why my card was declined", + "card_declined" + ], + [ + "tell me why my card was declined at auto zone, why", + "card_declined" + ], + [ + "i need to know why my credit card transaction was declined", + "card_declined" + ], + [ + "why was my credit card not accepted", + "card_declined" + ], + [ + "i was in target about to buy a chair when my card got declined", + "card_declined" + ], + [ + "my card just got declined when i was in home depot buying tile", + "card_declined" + ], + [ + "i was trying to buy a chainsaw at the tractor store and they said my card was declined", + "card_declined" + ], + [ + "why was my card declined just now when i tried to buy a jeep at carmax", + "card_declined" + ], + [ + "i was at walmart trying to buy toilet paper and my card got declined", + "card_declined" + ], + [ + "target declined my card and i don't know why", + "card_declined" + ], + [ + "do you know why my card was declined at target i can't figure out why", + "card_declined" + ], + [ + "i can't figure out why my card was declined at target", + "card_declined" + ], + [ + "i was just at target and they declined my card and i can't understand why", + "card_declined" + ] + ], + "train": [ + [ + "what expression would i use to say i love you if i were an italian", + "translate" + ], + [ + "can you tell me how to say 'i do not speak much spanish', in spanish", + "translate" + ], + [ + "what is the equivalent of, 'life is good' in french", + "translate" + ], + [ + "tell me how to say, 'it is a beautiful morning' in italian", + "translate" + ], + [ + "if i were mongolian, how would i say that i am a tourist", + "translate" + ], + [ + "how do i say 'hotel' in finnish", + "translate" + ], + [ + "i need you to translate the sentence, 'we will be there soon' into portuguese", + "translate" + ], + [ + "please tell me how to ask for a taxi in french", + "translate" + ], + [ + "can you tell me how i would say, 'more bread please' in french", + "translate" + ], + [ + "what is the correct way to say 'i am a visitor' in french", + "translate" + ], + [ + "how would i say, 'i don't know the answer' in spanish", + "translate" + ], + [ + "i would like to know the proper way to greet an adult in portuguese", + "translate" + ], + [ + "what words would i use to tell someone i am lost if i were japanese", + "translate" + ], + [ + "how would i say thank you if i were russian", + "translate" + ], + [ + "can you tell me how i would normally say thank you as a french person", + "translate" + ], + [ + "i would like to know how to say hello in french", + "translate" + ], + [ + "if i were english how would i say subway", + "translate" + ], + [ + "i would i say subway if i were english", + "translate" + ], + [ + "how do you say hi in french", + "translate" + ], + [ + "in england how do they say subway", + "translate" + ], + [ + "translate hello in french", + "translate" + ], + [ + "how is hello said in french", + "translate" + ], + [ + "what do you call a subway if you were english", + "translate" + ], + [ + "how would i say if i were english subway", + "translate" + ], + [ + "how should i say hello in french", + "translate" + ], + [ + "how could i say twin in chinese", + "translate" + ], + [ + "how can i say not now in spanish", + "translate" + ], + [ + "what do spanish people say for the word cow", + "translate" + ], + [ + "translate hello to english", + "translate" + ], + [ + "how do you say goodbye in spanish", + "translate" + ], + [ + "how would i say love in french", + "translate" + ], + [ + "could you translate atm machine into english", + "translate" + ], + [ + "please translate grocery into french for me", + "translate" + ], + [ + "how do germans say goodnight", + "translate" + ], + [ + "tell me how the russians say notebook", + "translate" + ], + [ + "how do vietnameses people say hello", + "translate" + ], + [ + "how do i say thank you in japanese", + "translate" + ], + [ + "what is latin for i love you", + "translate" + ], + [ + "how can i thank somebody in italian", + "translate" + ], + [ + "how do i say you're welcome in chinese", + "translate" + ], + [ + "translate hello english to french", + "translate" + ], + [ + "what is hello in french", + "translate" + ], + [ + "what phrase means goodbye in hawaii", + "translate" + ], + [ + "what spanish word means hello", + "translate" + ], + [ + "translate hello to french", + "translate" + ], + [ + "translate english to french hello", + "translate" + ], + [ + "what is the word for hello spanish", + "translate" + ], + [ + "how do they say goodbye in hawaii", + "translate" + ], + [ + "what's local slang for goodbye in hawaii", + "translate" + ], + [ + "how do you say hello in french", + "translate" + ], + [ + "tell me how to say hello in spanish", + "translate" + ], + [ + "what do i say for goodbye in hawaii", + "translate" + ], + [ + "translate hello into french for me", + "translate" + ], + [ + "how do i say hello in french", + "translate" + ], + [ + "translate for me hello into french", + "translate" + ], + [ + "how would they say say goodbye in hawaii", + "translate" + ], + [ + "what is spanish for hello", + "translate" + ], + [ + "how would i say hello in french", + "translate" + ], + [ + "how can i say i love you in italy", + "translate" + ], + [ + "what is spanish for good morning", + "translate" + ], + [ + "how do you say it's snowing in german", + "translate" + ], + [ + "how would you say can i borrow five dollars in portuguese", + "translate" + ], + [ + "do you know how to say where is the restroom in french", + "translate" + ], + [ + "how would i say pleased to meet you if i were japanese", + "translate" + ], + [ + "can you translate hello into swedish for me", + "translate" + ], + [ + "can you translate i love you into french for me", + "translate" + ], + [ + "can you translate where's the bar into irish for me", + "translate" + ], + [ + "how would i say goodbye if i were norwegian", + "translate" + ], + [ + "how would i say i love you if i were french", + "translate" + ], + [ + "how would i say hello if i were swedish", + "translate" + ], + [ + "can you translate good bye into russian for me", + "translate" + ], + [ + "can you translate i have to go pee into korean for me", + "translate" + ], + [ + "how would i say i'm not guilty if i were mexican", + "translate" + ], + [ + "how do you say thank you in spanish", + "translate" + ], + [ + "how does one say thank you in spanish", + "translate" + ], + [ + "how can i say thank you in spanish", + "translate" + ], + [ + "what is thank you in spanish", + "translate" + ], + [ + "what is the way to say thank you in spanish", + "translate" + ], + [ + "how do they say \"who is your father\" in german", + "translate" + ], + [ + "how do they say \"where's the bathroom\" in spanish", + "translate" + ], + [ + "how do they say \"how's it going\" in swahili", + "translate" + ], + [ + "how do they say \"i love you\" in japanese", + "translate" + ], + [ + "how do they say \"what's up\" in chinese", + "translate" + ], + [ + "how do you say thank you in german", + "translate" + ], + [ + "how do you say please in arabic", + "translate" + ], + [ + "how do you say cat in spanish", + "translate" + ], + [ + "how do you say i'm hungry in french", + "translate" + ], + [ + "how do you say i need coffee in dutch", + "translate" + ], + [ + "how do they say yes in brazil", + "translate" + ], + [ + "can you translate cat into russian for me", + "translate" + ], + [ + "can you translate bowl into russian for me", + "translate" + ], + [ + "how do they say hello in france", + "translate" + ], + [ + "i wanna know a phrase in spanish", + "translate" + ], + [ + "can you translate bat into russian for me", + "translate" + ], + [ + "how do they say no in germany", + "translate" + ], + [ + "can you translate hi into spanish for me", + "translate" + ], + [ + "i wanna learn a phrase in russian", + "translate" + ], + [ + "how do they say hello in germany", + "translate" + ], + [ + "can you translate milk into spanish for me", + "translate" + ], + [ + "how do they say hello in brazil", + "translate" + ], + [ + "i need $20000 transferred from my savings to my checking", + "transfer" + ], + [ + "complete a transaction from savings to checking of $20000", + "transfer" + ], + [ + "transfer $20000 from my savings account to checking account", + "transfer" + ], + [ + "take $20000 from savings and put it in checking", + "transfer" + ], + [ + "put $20000 into my checking account from my savings account", + "transfer" + ], + [ + "send 100 dollars between bank of the west and bank of america acccounts", + "transfer" + ], + [ + "send 50 dollars between bank of america and chase accounts", + "transfer" + ], + [ + "send 2000 dollars between chase and rabobank accounts", + "transfer" + ], + [ + "send 1200 dollars between usaa and navy federal accounts", + "transfer" + ], + [ + "send 400 dollars between city bank and usaa accounts", + "transfer" + ], + [ + "take $40 and transfer it to account a from b", + "transfer" + ], + [ + "transfer $40 from account a to b", + "transfer" + ], + [ + "move $40 from account b to account a", + "transfer" + ], + [ + "put $40 from account a to b", + "transfer" + ], + [ + "take $40 from account a and transfer it to account b", + "transfer" + ], + [ + "i need to transfer from this account to that one", + "transfer" + ], + [ + "need to transfer from one account to my other one", + "transfer" + ], + [ + "i would like to transfer from one account to my second one", + "transfer" + ], + [ + "i need to transfer from one account to my second one", + "transfer" + ], + [ + "i have to transfer from one account to my other one", + "transfer" + ], + [ + "send fifty dollars from me to carrie", + "transfer" + ], + [ + "transfer sixty dollars to dad from my biggest accnt", + "transfer" + ], + [ + "send over a hundred dollars from huntington into saving", + "transfer" + ], + [ + "move 57 dollars from saving into mom", + "transfer" + ], + [ + "transfer two hundred dollars between my portfolio and my money market account", + "transfer" + ], + [ + "i need to transfer ten dollars from my bank of america account to my capital one account", + "transfer" + ], + [ + "go ahead and send ten dollars from bank of america to capital one", + "transfer" + ], + [ + "i must transfer ten dollars from my bank of america account to my capital one account", + "transfer" + ], + [ + "i got to transfer ten dollars from my bank of america account to my capital one account", + "transfer" + ], + [ + "i want you to send ten dollars from bank of america to capital one", + "transfer" + ], + [ + "i need you to send ten dollars from bank of america to capital one", + "transfer" + ], + [ + "i have to transfer ten dollars from my bank of america account to my capital one account", + "transfer" + ], + [ + "send ten dollars from bank of america to capital one", + "transfer" + ], + [ + "please send ten dollars from bank of america to capital one", + "transfer" + ], + [ + "make a transfer of $200 from my savings account to my checking account", + "transfer" + ], + [ + "please transfer $250 from checking to savings", + "transfer" + ], + [ + "transfer $500 from my checking to my savings", + "transfer" + ], + [ + "please transfer $100 from my checking to my savings account", + "transfer" + ], + [ + "transfer $500 from my money market savings account to my checking account", + "transfer" + ], + [ + "send money from one account to another", + "transfer" + ], + [ + "transfer 200 dollars from paypal to savings", + "transfer" + ], + [ + "transfer $10 from checking to savings", + "transfer" + ], + [ + "send $100 from paypal to my bank", + "transfer" + ], + [ + "please transfer 100 dollars between my amazon payments and savings accounts", + "transfer" + ], + [ + "i would like to make a transfer", + "transfer" + ], + [ + "i want to transfer funds between accounts", + "transfer" + ], + [ + "send over 50 dollars between my shared and not shared accounts", + "transfer" + ], + [ + "whats the quickest way to money from one account to another", + "transfer" + ], + [ + "what is the process to move money from one account to another", + "transfer" + ], + [ + "i need you to send 500 dollars from my high tier account to my regular checking account", + "transfer" + ], + [ + "can you transfer money from a to b", + "transfer" + ], + [ + "send my money between accounts", + "transfer" + ], + [ + "how can i send money from one account to another", + "transfer" + ], + [ + "i need to move money from one account to another", + "transfer" + ], + [ + "send $20 from debit to steve's account", + "transfer" + ], + [ + "send 20 dollars from savings to checking", + "transfer" + ], + [ + "please transfer my funds", + "transfer" + ], + [ + "please transfer $50 to my checking account from credit", + "transfer" + ], + [ + "go ahead and move $200 from amazon to my bank account", + "transfer" + ], + [ + "help me move my money", + "transfer" + ], + [ + "i need my money to be moved", + "transfer" + ], + [ + "help me move my money please", + "transfer" + ], + [ + "i need to move my money", + "transfer" + ], + [ + "move my money please", + "transfer" + ], + [ + "i would like to transfer $5 from savings to checking", + "transfer" + ], + [ + "transfer $5 from savings to checking", + "transfer" + ], + [ + "can you transfer $5 from savings to checking", + "transfer" + ], + [ + "send $5 from savings to checking", + "transfer" + ], + [ + "please transfer $5 from savings to checking", + "transfer" + ], + [ + "please switch $s checking to mortage", + "transfer" + ], + [ + "please transfer $s from saving to checking", + "transfer" + ], + [ + "could you transfer $x from saving to checking", + "transfer" + ], + [ + "help me transfer $x from credit to debit", + "transfer" + ], + [ + "please transfer $x from checking to saving", + "transfer" + ], + [ + "transfer money to another account", + "transfer" + ], + [ + "requesting money transfer between accounts", + "transfer" + ], + [ + "transfer money from this account to that account", + "transfer" + ], + [ + "can you transfer money from my account", + "transfer" + ], + [ + "money transfer request", + "transfer" + ], + [ + "send 100 dollars from checking to savings", + "transfer" + ], + [ + "transfer 100 dollars checking to savings", + "transfer" + ], + [ + "transfer 100 dollars between checking and savings", + "transfer" + ], + [ + "take 100 dollars from checking and send it to savings", + "transfer" + ], + [ + "move 100 dollars from checking to savings", + "transfer" + ], + [ + "can we wire some money over to the other account i have", + "transfer" + ], + [ + "time to move some cash from one account to another", + "transfer" + ], + [ + "i need to throw some money into that other account", + "transfer" + ], + [ + "let's send some money to another account", + "transfer" + ], + [ + "i want to initiate a transfer from one account to the other", + "transfer" + ], + [ + "transfer money from one place to another", + "transfer" + ], + [ + "move money from one account to another", + "transfer" + ], + [ + "transfer between two accounts", + "transfer" + ], + [ + "make a transfer between accounts", + "transfer" + ], + [ + "send money to another account", + "transfer" + ], + [ + "i need ten dollars sent from b of a to washington mutual", + "transfer" + ], + [ + "transfer fifty dollars between my chase and bank of america account", + "transfer" + ], + [ + "deposit ten bucks from my chase account to my ally account", + "transfer" + ], + [ + "put a hundred dollars in my ally account from bluebird", + "transfer" + ], + [ + "i want seventy bucks transferred from b of a to chase", + "transfer" + ], + [ + "can i initiate a one-time transfer from my savings account to my money market account", + "transfer" + ], + [ + "please set a 4 minute timer", + "timer" + ], + [ + "please set a timer for 6 minutes", + "timer" + ], + [ + "set a timer for 5 minutes", + "timer" + ], + [ + "i need a 7 minute timer", + "timer" + ], + [ + "i need to set the timer for two minutes", + "timer" + ], + [ + "can you set a timer for me for fifteen minutes starting now", + "timer" + ], + [ + "start the timer now and stop at thirty minutes", + "timer" + ], + [ + "i would like you to set the timer to go off in ten minutes", + "timer" + ], + [ + "please set a timer for 40 minutes", + "timer" + ], + [ + "wake me in an hour", + "timer" + ], + [ + "please set a timer for cookies", + "timer" + ], + [ + "i want a timer set", + "timer" + ], + [ + "remind me in (x) hours", + "timer" + ], + [ + "set timer for (x) minutes", + "timer" + ], + [ + "i gotta have a 10 minute timer", + "timer" + ], + [ + "please set a timer for me", + "timer" + ], + [ + "i need a 10 minute timer", + "timer" + ], + [ + "i wish to have a 10 minute timer", + "timer" + ], + [ + "i really need to set a timer", + "timer" + ], + [ + "set a new timer for ten seconds", + "timer" + ], + [ + "set a timer for me", + "timer" + ], + [ + "i want a 10 minute timer", + "timer" + ], + [ + "i gotta set a timer", + "timer" + ], + [ + "set a 10 minute timer", + "timer" + ], + [ + "set a brand new timer for eight seconds", + "timer" + ], + [ + "set a ten second timer", + "timer" + ], + [ + "i must set a timer", + "timer" + ], + [ + "set a timer for twelve seconds", + "timer" + ], + [ + "set a timer for fifteen seconds", + "timer" + ], + [ + "tell me when two minutes are up", + "timer" + ], + [ + "start a timer for two minutes", + "timer" + ], + [ + "set a timer for two minutes", + "timer" + ], + [ + "start counting down from two minutes", + "timer" + ], + [ + "can you set a timer for two minutes", + "timer" + ], + [ + "\"please set 5 minute timer", + "timer" + ], + [ + "can u please set the timer for 5 minutes", + "timer" + ], + [ + "set timer of 5 minutes", + "timer" + ], + [ + "\"can u set a timer for 5 minutes", + "timer" + ], + [ + "set a one hour timer", + "timer" + ], + [ + "please set a timer for 20 minutes", + "timer" + ], + [ + "set a five minute timer please", + "timer" + ], + [ + "set a timer for two hours", + "timer" + ], + [ + "can you set a two hour timer", + "timer" + ], + [ + "set the timer for me please", + "timer" + ], + [ + "you need to set the timer for me", + "timer" + ], + [ + "i need you to set timer for me", + "timer" + ], + [ + "please set the timer for me", + "timer" + ], + [ + "i would like a timer set", + "timer" + ], + [ + "can you set a timer", + "timer" + ], + [ + "i need you to set a time", + "timer" + ], + [ + "i need a timer set for 15 minutes", + "timer" + ], + [ + "start a countdown for 20 minutes", + "timer" + ], + [ + "set a timer for 15 minutes", + "timer" + ], + [ + "i'll need you to set a timer for 10 minutes", + "timer" + ], + [ + "let's get a timer set for 5 minutes", + "timer" + ], + [ + "set a timer for 35 minutes", + "timer" + ], + [ + "please start counting down from 10 minutes", + "timer" + ], + [ + "let's get a timer going for 10 minutes", + "timer" + ], + [ + "i need a timer for 20 seconds", + "timer" + ], + [ + "timer 5 minutes", + "timer" + ], + [ + "alert me in 20 minutes", + "timer" + ], + [ + "give me a 10 minute countdown", + "timer" + ], + [ + "let me know in 15 minutes please", + "timer" + ], + [ + "i'm cooking an egg, timer for 3 mins", + "timer" + ], + [ + "10 minute timer", + "timer" + ], + [ + "start a timer for 10 minutes", + "timer" + ], + [ + "timer 10 minutes", + "timer" + ], + [ + "count down 10 minutes", + "timer" + ], + [ + "make up a timer for me", + "timer" + ], + [ + "create a timer for me", + "timer" + ], + [ + "can you set a timer for me", + "timer" + ], + [ + "i need to set a timer", + "timer" + ], + [ + "set up a timer", + "timer" + ], + [ + "could you start a timer for me", + "timer" + ], + [ + "lets set a timer for me", + "timer" + ], + [ + "please run a timer for me", + "timer" + ], + [ + "set a one minute timer", + "timer" + ], + [ + "set a five minute timer", + "timer" + ], + [ + "set a seven minute timer", + "timer" + ], + [ + "start a timer for me", + "timer" + ], + [ + "set a four minute timer", + "timer" + ], + [ + "set a six minute timer", + "timer" + ], + [ + "how do i set a timer", + "timer" + ], + [ + "i want a timer for 5 minutes", + "timer" + ], + [ + "timer for 5 minutes", + "timer" + ], + [ + "set a timer to go off in 5 minutes", + "timer" + ], + [ + "set timer for 5 minutes", + "timer" + ], + [ + "i want to set a timer", + "timer" + ], + [ + "make a timer for 5 minutes", + "timer" + ], + [ + "please set a timer for", + "timer" + ], + [ + "remind me that time is up in sixty minutes", + "timer" + ], + [ + "set an alarm for nine minutes from now", + "timer" + ], + [ + "tell me when ninety minutes have passed", + "timer" + ], + [ + "please set timer for 4 pm", + "timer" + ], + [ + "want 5 minute timer", + "timer" + ], + [ + "set 30 minute timer", + "timer" + ], + [ + "get a 3 minute timer", + "timer" + ], + [ + "please, can you set the timer for me", + "timer" + ], + [ + "can you please the timer", + "timer" + ], + [ + "will you set the timer", + "timer" + ], + [ + "what is the meaning of realism", + "definition" + ], + [ + "what is regard mean", + "definition" + ], + [ + "what is the meaning of interorganizational", + "definition" + ], + [ + "what is it is all relative mean", + "definition" + ], + [ + "what is intercontinental mean", + "definition" + ], + [ + "what is the meaning of supercede", + "definition" + ], + [ + "what is let it be mean", + "definition" + ], + [ + "what is the definition of incomprehensible", + "definition" + ], + [ + "what is the meaning of stupendous", + "definition" + ], + [ + "what is the definition of intelligent", + "definition" + ], + [ + "what is good riddance mean", + "definition" + ], + [ + "what is break a leg mean", + "definition" + ], + [ + "what is the meaning of hyperactive", + "definition" + ], + [ + "what is the definition of valor", + "definition" + ], + [ + "what is stupedous meant", + "definition" + ], + [ + "find the meaning of qat", + "definition" + ], + [ + "what the heck is qat", + "definition" + ], + [ + "define qat for me", + "definition" + ], + [ + "read me a definition for qat", + "definition" + ], + [ + "look up qat please", + "definition" + ], + [ + "what might the meaning of altruism be", + "definition" + ], + [ + "exactly what does altruism mean", + "definition" + ], + [ + "what does altruism mean", + "definition" + ], + [ + "what is the definition of altruism", + "definition" + ], + [ + "what is the meaning of altruism", + "definition" + ], + [ + "affiliate's definition is what", + "definition" + ], + [ + "the definition of affiliate is", + "definition" + ], + [ + "what's the meaning of affiliate", + "definition" + ], + [ + "what's affiliate definition", + "definition" + ], + [ + "definition of affiliate is what", + "definition" + ], + [ + "whats the definition of poor", + "definition" + ], + [ + "describe the meaning of \"dog", + "definition" + ], + [ + "what does \"money\" mean", + "definition" + ], + [ + "tell me what the word die means", + "definition" + ], + [ + "what is the definition of succumb", + "definition" + ], + [ + "what is the meaning of telepathy", + "definition" + ], + [ + "what does tertiary mean", + "definition" + ], + [ + "tell me the definition of the word redemption", + "definition" + ], + [ + "what is the meaning of the word lux", + "definition" + ], + [ + "what is an ataraxy", + "definition" + ], + [ + "what does the word ataraxy mean", + "definition" + ], + [ + "what does ataraxy mean", + "definition" + ], + [ + "use the word ataraxy in a sentence", + "definition" + ], + [ + "define ataraxy", + "definition" + ], + [ + "what does discretionary mean", + "definition" + ], + [ + "define discretionary", + "definition" + ], + [ + "i want to know the definition of discretionary", + "definition" + ], + [ + "can you give the definition of deiscretionary", + "definition" + ], + [ + "let's hear the definition of iridium", + "definition" + ], + [ + "what's the definition of analogy", + "definition" + ], + [ + "can you tell me the definition of sucrose", + "definition" + ], + [ + "definition of anachronism", + "definition" + ], + [ + "what's the definition of patriarchy", + "definition" + ], + [ + "can you tell me the definition of yttrbium", + "definition" + ], + [ + "please share the definition of episcopalian", + "definition" + ], + [ + "what does saffron mean", + "definition" + ], + [ + "define sonogram", + "definition" + ], + [ + "define thoroughbred", + "definition" + ], + [ + "what's the meaning of a fortnight", + "definition" + ], + [ + "what is an anachronism", + "definition" + ], + [ + "what's the meaning of emulsify", + "definition" + ], + [ + "tell me what cyst means", + "definition" + ], + [ + "what is the definition of flange", + "definition" + ], + [ + "tell me what flange means", + "definition" + ], + [ + "define flange", + "definition" + ], + [ + "flange means what", + "definition" + ], + [ + "what is the meaning of flange", + "definition" + ], + [ + "what does \"rescind\" mean", + "definition" + ], + [ + "what is the meaning of word \"rescind", + "definition" + ], + [ + "is \"rescind\" a word of positive connotation", + "definition" + ], + [ + "where i can use word \"rescind", + "definition" + ], + [ + "read me the definition of ajar", + "definition" + ], + [ + "what does ajar mean", + "definition" + ], + [ + "can you show me the dictionary definition of ajar", + "definition" + ], + [ + "tell me what monstrosity means", + "definition" + ], + [ + "give me the definition of ajar", + "definition" + ], + [ + "what is the definition of didactic", + "definition" + ], + [ + "i need to know what adumbrate means can you look it up for me now", + "definition" + ], + [ + "i want to know what the word discomfit means", + "definition" + ], + [ + "find what the word diaphanous mean please", + "definition" + ], + [ + "do you know what calumny means please look it up for me", + "definition" + ], + [ + "find out what the word abrogate means for me", + "definition" + ], + [ + "tell me what edict means", + "definition" + ], + [ + "what does the word abjure mean", + "definition" + ], + [ + "can you tell me what dirge means", + "definition" + ], + [ + "tell me what the word arboreal means", + "definition" + ], + [ + "whats the definition of transmute", + "definition" + ], + [ + "what is the meaning of the word slander", + "definition" + ], + [ + "what is meant by defense", + "definition" + ], + [ + "tell me what the word bounty means", + "definition" + ], + [ + "what does deceive mean", + "definition" + ], + [ + "define zesty", + "definition" + ], + [ + "look up zesty in dictionary", + "definition" + ], + [ + "definition of zesty", + "definition" + ], + [ + "what is the definition of zesty", + "definition" + ], + [ + "what does zesty mean", + "definition" + ], + [ + "tell me what alternative means", + "definition" + ], + [ + "what does alternative mean", + "definition" + ], + [ + "give me the meaning of alternative", + "definition" + ], + [ + "tell me the meaning of alternative", + "definition" + ], + [ + "does life have meaning", + "meaning_of_life" + ], + [ + "is being alive the meaning of life", + "meaning_of_life" + ], + [ + "what is the real meaning of life", + "meaning_of_life" + ], + [ + "what is the answer to the meaning of life", + "meaning_of_life" + ], + [ + "is there really an answer to the meaning of life", + "meaning_of_life" + ], + [ + "does life have a meaning", + "meaning_of_life" + ], + [ + "who can tell me if there's any meaning to life", + "meaning_of_life" + ], + [ + "what makes life have any meaning", + "meaning_of_life" + ], + [ + "why do you think we're here", + "meaning_of_life" + ], + [ + "what's the answer to existence", + "meaning_of_life" + ], + [ + "what's the point of sentience", + "meaning_of_life" + ], + [ + "what's the purpose of existence", + "meaning_of_life" + ], + [ + "what's the purpose of life", + "meaning_of_life" + ], + [ + "what's the point of this dumpster fire known as life", + "meaning_of_life" + ], + [ + "what is life's meaning", + "meaning_of_life" + ], + [ + "is there a greater purpose in life", + "meaning_of_life" + ], + [ + "what is our purpose in life", + "meaning_of_life" + ], + [ + "how is life in existence", + "meaning_of_life" + ], + [ + "what's lifes meaning", + "meaning_of_life" + ], + [ + "what exactly is the meaning of life", + "meaning_of_life" + ], + [ + "whats lifes meaning exactly", + "meaning_of_life" + ], + [ + "what's the meaning of this life", + "meaning_of_life" + ], + [ + "what is the meaning of life here", + "meaning_of_life" + ], + [ + "does my life have meaning", + "meaning_of_life" + ], + [ + "i wish to know the meaning of life", + "meaning_of_life" + ], + [ + "i wanna know the meaning of life", + "meaning_of_life" + ], + [ + "i wanna know the point of life", + "meaning_of_life" + ], + [ + "i need to know the point of life", + "meaning_of_life" + ], + [ + "i must know the point of life", + "meaning_of_life" + ], + [ + "tell the meaning of life", + "meaning_of_life" + ], + [ + "i gotta know the meaning of life", + "meaning_of_life" + ], + [ + "what is your take on the meaning of life", + "meaning_of_life" + ], + [ + "tell me what is the purpose of life", + "meaning_of_life" + ], + [ + "what meaning does life hold", + "meaning_of_life" + ], + [ + "what do you think is the meaning of like", + "meaning_of_life" + ], + [ + "how do i find the meaning of life", + "meaning_of_life" + ], + [ + "what is the purpose of exsistance", + "meaning_of_life" + ], + [ + "what is your version on the meaning of life", + "meaning_of_life" + ], + [ + "what is your explanation for the meaning of life", + "meaning_of_life" + ], + [ + "what is the purpose of creation", + "meaning_of_life" + ], + [ + "can you figure out the meaning of life", + "meaning_of_life" + ], + [ + "whats your take on the meaning of life", + "meaning_of_life" + ], + [ + "can you explain the meaning of life to me", + "meaning_of_life" + ], + [ + "what is life all about", + "meaning_of_life" + ], + [ + "can you explain the meaning of life", + "meaning_of_life" + ], + [ + "what's the point of life, anyways", + "meaning_of_life" + ], + [ + "the meaning of life please", + "meaning_of_life" + ], + [ + "the meaning of life", + "meaning_of_life" + ], + [ + "i'd like to me told the meaning of life", + "meaning_of_life" + ], + [ + "do you know the meaning of life", + "meaning_of_life" + ], + [ + "say what the meaning of life is", + "meaning_of_life" + ], + [ + "can you tell me life's meaning", + "meaning_of_life" + ], + [ + "what's the meaning of my life", + "meaning_of_life" + ], + [ + "what is the underlying purpose to life", + "meaning_of_life" + ], + [ + "what do you think about the meaning of life", + "meaning_of_life" + ], + [ + "what is life\u2019s meaning", + "meaning_of_life" + ], + [ + "help me figure out the meaning of life", + "meaning_of_life" + ], + [ + "would you tell me the meaning of life, please", + "meaning_of_life" + ], + [ + "could you tell me the meaning of life, please", + "meaning_of_life" + ], + [ + "can you tell me the meaning of life", + "meaning_of_life" + ], + [ + "could you tell me the meaning of life", + "meaning_of_life" + ], + [ + "can you tell me the meaning of life, please", + "meaning_of_life" + ], + [ + "what does life mean to you", + "meaning_of_life" + ], + [ + "is there really a meaning of life", + "meaning_of_life" + ], + [ + "is there any meaning to being alive", + "meaning_of_life" + ], + [ + "what is the meaning of my life", + "meaning_of_life" + ], + [ + "what is the point of life", + "meaning_of_life" + ], + [ + "what's the point of everything", + "meaning_of_life" + ], + [ + "is there a meaning to life", + "meaning_of_life" + ], + [ + "why are we here in life", + "meaning_of_life" + ], + [ + "can you share the meaning of life", + "meaning_of_life" + ], + [ + "research the meaning of life", + "meaning_of_life" + ], + [ + "can you tell me what you think the meaning of life is", + "meaning_of_life" + ], + [ + "what is our purpose here on earth", + "meaning_of_life" + ], + [ + "is love the meaning of life", + "meaning_of_life" + ], + [ + "is there a reason people exist", + "meaning_of_life" + ], + [ + "what is the secret or meaning to life", + "meaning_of_life" + ], + [ + "what does life mean on a deeper level", + "meaning_of_life" + ], + [ + "how would you put what life is all about", + "meaning_of_life" + ], + [ + "how would you describe what life means", + "meaning_of_life" + ], + [ + "what do people say life means or the meaning is", + "meaning_of_life" + ], + [ + "life has what meaning or what's the secret to it", + "meaning_of_life" + ], + [ + "where is there meaning in life", + "meaning_of_life" + ], + [ + "what is the meaning of this life", + "meaning_of_life" + ], + [ + "do you know what the meaning of life is", + "meaning_of_life" + ], + [ + "what's life's meaning", + "meaning_of_life" + ], + [ + "does life have a meaning, according to you", + "meaning_of_life" + ], + [ + "does this life have a meaning", + "meaning_of_life" + ], + [ + "can you share with me your interpretation of the meaning of life", + "meaning_of_life" + ], + [ + "what do you think is the meaning of life", + "meaning_of_life" + ], + [ + "is there a meaning in life", + "meaning_of_life" + ], + [ + "i wonder if you can explain the meaning of life", + "meaning_of_life" + ], + [ + "i always wonder about the meaning of life, can you tell me", + "meaning_of_life" + ], + [ + "what's my meaning in life", + "meaning_of_life" + ], + [ + "define the meaning of life", + "meaning_of_life" + ], + [ + "meaning of life is", + "meaning_of_life" + ], + [ + "what is your perception of the meaning of life", + "meaning_of_life" + ], + [ + "whats the meaning of life", + "meaning_of_life" + ], + [ + "what do you think the meaning of life is", + "meaning_of_life" + ], + [ + "what is behind life's meaning", + "meaning_of_life" + ], + [ + "how to create a new aaa insurance plan", + "insurance_change" + ], + [ + "website to start aaa new insurance plan", + "insurance_change" + ], + [ + "aaa insurance start new plan", + "insurance_change" + ], + [ + "i want to start a new aaa insurance plan", + "insurance_change" + ], + [ + "is new this a good insurance plan for me", + "insurance_change" + ], + [ + "what do i do to get new insurance", + "insurance_change" + ], + [ + "new insurance is obtainable how", + "insurance_change" + ], + [ + "how is new insurance gotten", + "insurance_change" + ], + [ + "what do i do for new insurance", + "insurance_change" + ], + [ + "how do i get new insurance, please", + "insurance_change" + ], + [ + "how can i obtain new insurance", + "insurance_change" + ], + [ + "how can i obtain new insurance, please", + "insurance_change" + ], + [ + "how can i get new insurance, please", + "insurance_change" + ], + [ + "how do i make my insurance policy different", + "insurance_change" + ], + [ + "how do i change my insurance policy", + "insurance_change" + ], + [ + "how do i modify my insurance policy", + "insurance_change" + ], + [ + "how do i alter my insurance policy", + "insurance_change" + ], + [ + "how do i get different terms on my insurance policy", + "insurance_change" + ], + [ + "help me change my insurance plan", + "insurance_change" + ], + [ + "i would like a new insurance plan", + "insurance_change" + ], + [ + "connect me with some new insurance", + "insurance_change" + ], + [ + "i need a newer insurance plan", + "insurance_change" + ], + [ + "my insurance plan needs to be changed", + "insurance_change" + ], + [ + "what rental insurance policy do you recommend", + "insurance_change" + ], + [ + "help me find a new auto insurance policy", + "insurance_change" + ], + [ + "find the best life insurance for me", + "insurance_change" + ], + [ + "i need new home owners insurance", + "insurance_change" + ], + [ + "i need new health care coverage", + "insurance_change" + ], + [ + "how do i change my current insurance to a new plan with lower co-pay", + "insurance_change" + ], + [ + "what steps do i need to take to switch my insurance plan from an hmo to a high deductible ppo plan", + "insurance_change" + ], + [ + "i need to change my insurance to a plan with a lower deductible", + "insurance_change" + ], + [ + "how do i go about changing my insurance to a new low monthly premium plan", + "insurance_change" + ], + [ + "i would like to change my insurance from a ppo to an hmo plan", + "insurance_change" + ], + [ + "help me figure out getting new insurance", + "insurance_change" + ], + [ + "i would like to get a new insurance plan", + "insurance_change" + ], + [ + "i want help adjusting my insurance policy", + "insurance_change" + ], + [ + "i am hoping to switch insurance plans", + "insurance_change" + ], + [ + "i need help acquiring new insurance", + "insurance_change" + ], + [ + "walk me through the process of getting new insurance", + "insurance_change" + ], + [ + "i am interested in acquiring new insurance", + "insurance_change" + ], + [ + "how can i acquire new insurance", + "insurance_change" + ], + [ + "what must i do if i want to adjust my insurance policy", + "insurance_change" + ], + [ + "what is the protocol for modifying my insurance policy", + "insurance_change" + ], + [ + "i dont like my current insurance plan and want a new one", + "insurance_change" + ], + [ + "walk me through making changes to my insurance policy", + "insurance_change" + ], + [ + "i need new insurance but dont know how to get it", + "insurance_change" + ], + [ + "i am thinking of switching to a different insurance plan", + "insurance_change" + ], + [ + "help me modify my insurance policy", + "insurance_change" + ], + [ + "could you help me out with a new renters' insurance plan", + "insurance_change" + ], + [ + "i'd like a new life insurance plan", + "insurance_change" + ], + [ + "can you help me with a new car insurance plan", + "insurance_change" + ], + [ + "i need to get a new motorcycle insurance plan", + "insurance_change" + ], + [ + "can i get a new pet insurance plan", + "insurance_change" + ], + [ + "where do i go to get new insurance", + "insurance_change" + ], + [ + "i need new insurance, how do i get it", + "insurance_change" + ], + [ + "how do i apply for new insurance", + "insurance_change" + ], + [ + "i would like you to help me get on another united healthcare insurance plan", + "insurance_change" + ], + [ + "can you help me get on a new united healthcare insurance plan", + "insurance_change" + ], + [ + "i want to find a new united healthcare plan to get on", + "insurance_change" + ], + [ + "i'd like to get on a new united healthcare plan", + "insurance_change" + ], + [ + "i need to get on a new united healthcare insurance plan", + "insurance_change" + ], + [ + "help make changes to my insurance policy", + "insurance_change" + ], + [ + "i must switch to a new insurance plan", + "insurance_change" + ], + [ + "i need help to make changes to my insurance policy", + "insurance_change" + ], + [ + "i gotta switch to a new insurance plan", + "insurance_change" + ], + [ + "help me make changes to my insurance policy", + "insurance_change" + ], + [ + "i need to switch to a new insurance plan", + "insurance_change" + ], + [ + "i really need to switch to a new insurance plan", + "insurance_change" + ], + [ + "i would like to make changes to my insurance policy", + "insurance_change" + ], + [ + "i need to make changes to my insurance policy", + "insurance_change" + ], + [ + "i shall switch to a new insurance plan", + "insurance_change" + ], + [ + "how do i update my insurance", + "insurance_change" + ], + [ + "how can i get new insurance", + "insurance_change" + ], + [ + "how can i find out about new insurance", + "insurance_change" + ], + [ + "i need to find new insurance", + "insurance_change" + ], + [ + "i need to get new insurance, how do i do it", + "insurance_change" + ], + [ + "can you switch me to a new insurance plan", + "insurance_change" + ], + [ + "i would like to switch to a different insurance plan", + "insurance_change" + ], + [ + "help me switch to a new insurance plan", + "insurance_change" + ], + [ + "switch my insurance plan to a new one", + "insurance_change" + ], + [ + "what are my options for new insurance plans", + "insurance_change" + ], + [ + "i want to shop for new insurance plans", + "insurance_change" + ], + [ + "i would like to switch my insurance plan", + "insurance_change" + ], + [ + "help me find new insurance providers", + "insurance_change" + ], + [ + "i would like to compare insurance plan options", + "insurance_change" + ], + [ + "i need a new house insurance plan", + "insurance_change" + ], + [ + "i want to get a new car insurance plan", + "insurance_change" + ], + [ + "i need new health insurance", + "insurance_change" + ], + [ + "i want a new policy with long-term care insurance", + "insurance_change" + ], + [ + "i want a new motorcycle insurance plan", + "insurance_change" + ], + [ + "how do i adjust my insurance policy", + "insurance_change" + ], + [ + "my insurance policy needs to be adjusted", + "insurance_change" + ], + [ + "i am in need of a switch to my insurance plan", + "insurance_change" + ], + [ + "walk me through on how to change my insurance", + "insurance_change" + ], + [ + "i wish to request a change in insurance plans", + "insurance_change" + ], + [ + "i would like to alter my insurance plan", + "insurance_change" + ], + [ + "i need to know how to change my insurance", + "insurance_change" + ], + [ + "i want to switch my insurance coverage", + "insurance_change" + ], + [ + "help me change my insurance", + "insurance_change" + ], + [ + "how do i replace my insurance", + "insurance_change" + ], + [ + "i need help finding my mobile phone", + "find_phone" + ], + [ + "help me figure out where my cell phone is", + "find_phone" + ], + [ + "give me a hand finding my mobile device", + "find_phone" + ], + [ + "i can't find my cell and need help locating it", + "find_phone" + ], + [ + "can you help me find my cell", + "find_phone" + ], + [ + "help, i cannot find my phone", + "find_phone" + ], + [ + "i can't seem to find my phone", + "find_phone" + ], + [ + "are you able to track a phone", + "find_phone" + ], + [ + "my phone cannot be found", + "find_phone" + ], + [ + "i have misplaced my phone", + "find_phone" + ], + [ + "i don't know where i left my phone", + "find_phone" + ], + [ + "i left my phone somewhere", + "find_phone" + ], + [ + "i am looking for my phone", + "find_phone" + ], + [ + "i need you to find my phone", + "find_phone" + ], + [ + "please locate my phone", + "find_phone" + ], + [ + "can you help me find my lost phone", + "find_phone" + ], + [ + "i need help figuring out where my phone is", + "find_phone" + ], + [ + "please help me figure out where my lost phone is", + "find_phone" + ], + [ + "please help me find my phone, because i lost it", + "find_phone" + ], + [ + "i lost my phone, can you help me find it", + "find_phone" + ], + [ + "who has seen my cellphone", + "find_phone" + ], + [ + "have you seen my cellphone", + "find_phone" + ], + [ + "can you find my cellphone", + "find_phone" + ], + [ + "find my cellphone", + "find_phone" + ], + [ + "please help me find my phone", + "find_phone" + ], + [ + "where my phone", + "find_phone" + ], + [ + "where was the last place i had my phone", + "find_phone" + ], + [ + "can you find my iphone", + "find_phone" + ], + [ + "i can't find my phone", + "find_phone" + ], + [ + "call my phone, i can't find it", + "find_phone" + ], + [ + "can you find my lost phone", + "find_phone" + ], + [ + "do you know where my phone is", + "find_phone" + ], + [ + "can you help me find my cellphone", + "find_phone" + ], + [ + "can you call my cellphone", + "find_phone" + ], + [ + "my phone is lost - can you help me find it", + "find_phone" + ], + [ + "where is my phone", + "find_phone" + ], + [ + "ai can you help me find my phone", + "find_phone" + ], + [ + "ai, i lost my phone, help me find it please", + "find_phone" + ], + [ + "ai, please help me find my phone", + "find_phone" + ], + [ + "ai locate my phone", + "find_phone" + ], + [ + "ai find my phone", + "find_phone" + ], + [ + "how can i find my phone", + "find_phone" + ], + [ + "my phone is lost, can you help with that", + "find_phone" + ], + [ + "i need to locate my phone", + "find_phone" + ], + [ + "find out where my phone is", + "find_phone" + ], + [ + "help me find my phone", + "find_phone" + ], + [ + "locate my phone please", + "find_phone" + ], + [ + "what is the location of my phone", + "find_phone" + ], + [ + "my phone is currently lost", + "find_phone" + ], + [ + "i don't remember where my phone is", + "find_phone" + ], + [ + "locate my phone for me", + "find_phone" + ], + [ + "the location of my phone is unknown to me", + "find_phone" + ], + [ + "find my phone", + "find_phone" + ], + [ + "i need to find my phone", + "find_phone" + ], + [ + "please aid in my searching for my lost phone", + "find_phone" + ], + [ + "please help me locate my phone", + "find_phone" + ], + [ + "where did i last place my phone", + "find_phone" + ], + [ + "can you assist me in locating my phone", + "find_phone" + ], + [ + "is my phone in the house", + "find_phone" + ], + [ + "i lost my phone and need help retrieving it", + "find_phone" + ], + [ + "help me search for my phone", + "find_phone" + ], + [ + "misplaced my phone", + "find_phone" + ], + [ + "can you help locate my phone", + "find_phone" + ], + [ + "i need my phone, but can't find it", + "find_phone" + ], + [ + "i lost my phone and need assistance", + "find_phone" + ], + [ + "i don't know where my phone is", + "find_phone" + ], + [ + "i can't find my phone do you know where it is", + "find_phone" + ], + [ + "please tell me where my phone is", + "find_phone" + ], + [ + "can you help me find my phone", + "find_phone" + ], + [ + "do you know where my phone is located now", + "find_phone" + ], + [ + "can you track the location of my phone", + "find_phone" + ], + [ + "where can i find my phone", + "find_phone" + ], + [ + "can you locate my phone", + "find_phone" + ], + [ + "do you know where i left my phone", + "find_phone" + ], + [ + "where is my phone now", + "find_phone" + ], + [ + "alexa, tell me the location of my phone", + "find_phone" + ], + [ + "siri, where is my iphone", + "find_phone" + ], + [ + "siri, tell me where my iphone is", + "find_phone" + ], + [ + "siri, find my iphone", + "find_phone" + ], + [ + "help me locate my phone", + "find_phone" + ], + [ + "you need to help me find my cellphone", + "find_phone" + ], + [ + "help me find my cellphone", + "find_phone" + ], + [ + "please help me find my cellphone", + "find_phone" + ], + [ + "where did i put my phone", + "find_phone" + ], + [ + "tell me where my phone is", + "find_phone" + ], + [ + "please find my phone", + "find_phone" + ], + [ + "locate my phone", + "find_phone" + ], + [ + "i would like some help finding my phone", + "find_phone" + ], + [ + "i need to know where my phone is", + "find_phone" + ], + [ + "i seemed to misplaced my phone", + "find_phone" + ], + [ + "i lost my phone", + "find_phone" + ], + [ + "i need some help finding my phone", + "find_phone" + ], + [ + "can you locate my phone for me", + "find_phone" + ], + [ + "i don't know where i put my phone", + "find_phone" + ], + [ + "help find my phone", + "find_phone" + ], + [ + "i would like to know where my phone is", + "find_phone" + ], + [ + "i'd like help finding my fon", + "find_phone" + ], + [ + "i can't locate my phone", + "find_phone" + ], + [ + "can you tell me where i left my phone", + "find_phone" + ], + [ + "can you please locate my phone", + "find_phone" + ], + [ + "does ireland have any travel alerts i should be aware of", + "travel_alert" + ], + [ + "does north korea have any travel alerts i should be aware of", + "travel_alert" + ], + [ + "are there any travel alerts for russia", + "travel_alert" + ], + [ + "does spain have any travel alerts i should be aware of", + "travel_alert" + ], + [ + "are there any travel alerts for north korea", + "travel_alert" + ], + [ + "does macedonia have any travel alerts i should be aware of", + "travel_alert" + ], + [ + "are there any travel alerts for syria", + "travel_alert" + ], + [ + "are there any travel alerts for ukraine", + "travel_alert" + ], + [ + "does myanmar have any travel alerts i should be aware of", + "travel_alert" + ], + [ + "are there any travel alerts for china", + "travel_alert" + ], + [ + "is there a travel alert for russia", + "travel_alert" + ], + [ + "is there a travel alert for scotland", + "travel_alert" + ], + [ + "does russia have any travel alerts i should be aware of", + "travel_alert" + ], + [ + "is it safe to travel to iceland", + "travel_alert" + ], + [ + "is it safe to travel to russia", + "travel_alert" + ], + [ + "does italy have any travel alerts i should be aware of", + "travel_alert" + ], + [ + "does germany have any travel alerts i should be aware of", + "travel_alert" + ], + [ + "is there a travel alert for north korea", + "travel_alert" + ], + [ + "does china have any travel alerts i should be aware of", + "travel_alert" + ], + [ + "is there a travel alert for canada", + "travel_alert" + ], + [ + "is it safe to travel to norway", + "travel_alert" + ], + [ + "is it safe to travel to bermuda", + "travel_alert" + ], + [ + "is it safe to travel to argentina", + "travel_alert" + ], + [ + "does finland have any travel alerts i should be aware of", + "travel_alert" + ], + [ + "is there a travel alert for spain", + "travel_alert" + ], + [ + "have there been any travel alerts issued for france", + "travel_alert" + ], + [ + "tell me about any travel alerts issued for germany", + "travel_alert" + ], + [ + "are there any travel warnings for london", + "travel_alert" + ], + [ + "should i know about any travel alerts before traveling in the usa", + "travel_alert" + ], + [ + "are there any new travel warnings for the us", + "travel_alert" + ], + [ + "any travel advisories for portugal", + "travel_alert" + ], + [ + "can you tell me if germany issued any travel warnings", + "travel_alert" + ], + [ + "does france have any current travel alerts", + "travel_alert" + ], + [ + "does spain expect any travel alerts", + "travel_alert" + ], + [ + "i am going to australia and want to be notified of any travel alerts", + "travel_alert" + ], + [ + "i am going to be traveling in turkey, are there any alerts", + "travel_alert" + ], + [ + "are there any alerts for traveling in belize", + "travel_alert" + ], + [ + "what alerts are listed for traveling to paris", + "travel_alert" + ], + [ + "i need to know about travel alerts for mexico", + "travel_alert" + ], + [ + "what travel alerts are there in china", + "travel_alert" + ], + [ + "are there any alerts for travelling to beirut", + "travel_alert" + ], + [ + "argentina travel alert yes or no", + "travel_alert" + ], + [ + "does argentina have a travel alert", + "travel_alert" + ], + [ + "is there a travel alert in argentina", + "travel_alert" + ], + [ + "list of countries with travel alerts", + "travel_alert" + ], + [ + "can traveling to nepal be safe (what's safe in x)", + "travel_alert" + ], + [ + "will i be safe while traveling to lyon (will you be safe)", + "travel_alert" + ], + [ + "how safe is it to travel to mongolia (how safe is mongolia)", + "travel_alert" + ], + [ + "is it safe to travel to rio de janeiro (is rio de janeiro safe)", + "travel_alert" + ], + [ + "is traveling to dublin safe (will dublin be safe)", + "travel_alert" + ], + [ + "is new caledonia safer than other countries", + "travel_alert" + ], + [ + "is las vegas a safe place to visit", + "travel_alert" + ], + [ + "if i go to baltimore will i be safe", + "travel_alert" + ], + [ + "can you give me the travel alerts for jalisco, mexico", + "travel_alert" + ], + [ + "what are the latest travel alerts for dubai", + "travel_alert" + ], + [ + "are there any travel alerts i should know about for buenos aires, argentina", + "travel_alert" + ], + [ + "i need any relevant travel alerts for australia", + "travel_alert" + ], + [ + "are there travel notifications for columbia", + "travel_alert" + ], + [ + "where in the world is there a travel alert", + "travel_alert" + ], + [ + "what are today's travel advisories", + "travel_alert" + ], + [ + "can you list the places that there are travel alerts for", + "travel_alert" + ], + [ + "where are there current travel alerts", + "travel_alert" + ], + [ + "is there a travel alert for [country]", + "travel_alert" + ], + [ + "if i got to indonesia is it safe", + "travel_alert" + ], + [ + "i am thinking of going to brazil and was wondering if that is hazardous", + "travel_alert" + ], + [ + "would it be safe to go to columbia", + "travel_alert" + ], + [ + "is mexico a safe place", + "travel_alert" + ], + [ + "what potential hazards are there for going to spain", + "travel_alert" + ], + [ + "does a travel alert exist for that country", + "travel_alert" + ], + [ + "inform me if there's a travel alert for the country", + "travel_alert" + ], + [ + "does the country have a travel alert", + "travel_alert" + ], + [ + "i'd like to see if there's a travel alert for the country", + "travel_alert" + ], + [ + "can you tell me if there's a travel alert for that country", + "travel_alert" + ], + [ + "any travel alerts for south korea", + "travel_alert" + ], + [ + "are there travel alerts for europe", + "travel_alert" + ], + [ + "what are the currect travel alerts in africa", + "travel_alert" + ], + [ + "can i safely travel to brazil", + "travel_alert" + ], + [ + "does japan have any travel alerts i should be aware of", + "travel_alert" + ], + [ + "is there travel alerts for greece", + "travel_alert" + ], + [ + "how safe is it to travel to germany", + "travel_alert" + ], + [ + "is it safe to travel to china", + "travel_alert" + ], + [ + "is it safe to fly to russia", + "travel_alert" + ], + [ + "does france have any travel alerts i should be aware of", + "travel_alert" + ], + [ + "look for travel alerts for china", + "travel_alert" + ], + [ + "does south korea have any travel alerts i should be aware of", + "travel_alert" + ], + [ + "is it dangerous to travel to mexico", + "travel_alert" + ], + [ + "any travel alerts for canada", + "travel_alert" + ], + [ + "any travel alerts for that country i should know about", + "travel_alert" + ], + [ + "are there any travel alerts in that region", + "travel_alert" + ], + [ + "i need to know the travel alerts for kenya", + "travel_alert" + ], + [ + "any alerts for travelers to canada", + "travel_alert" + ], + [ + "should i be worried about any travel alerts for that country", + "travel_alert" + ], + [ + "look up travel alerts for canada", + "travel_alert" + ], + [ + "is there a travel alert for that country", + "travel_alert" + ], + [ + "find if there are any travel alerts for canada", + "travel_alert" + ], + [ + "search for any travel alerts for canada", + "travel_alert" + ], + [ + "does kenya have any travel alerts right now", + "travel_alert" + ], + [ + "check travel alerts for kenya", + "travel_alert" + ], + [ + "do i need to read any travel alerts for kenya", + "travel_alert" + ], + [ + "search for travel alerts for kenya", + "travel_alert" + ], + [ + "how do i put in a pto request for the first to the ninth", + "pto_request" + ], + [ + "am i allowed to put in a pto request for now to april", + "pto_request" + ], + [ + "is there a time i can put in a pto request for dec 2 to new years", + "pto_request" + ], + [ + "when can i put a pto request in for feb 22 to march 1", + "pto_request" + ], + [ + "i need a pto request on march 1 to 2", + "pto_request" + ], + [ + "on march 1-2 i want a pto request made for me", + "pto_request" + ], + [ + "schedule a pto request for me on march 1-2", + "pto_request" + ], + [ + "for march 1 to 2 make a pto request for me", + "pto_request" + ], + [ + "i want to schedule a pto request on march 1-2", + "pto_request" + ], + [ + "between october 7th and october 10th, i'd like for there to be a pto request for me", + "pto_request" + ], + [ + "i need a pto request for the dates jan 15th to jan 20th", + "pto_request" + ], + [ + "let's do a personal pto request for the dates may 12th to may 15th", + "pto_request" + ], + [ + "can you set up a pto request for me for march 20th to april 12th", + "pto_request" + ], + [ + "i'd like for their to be a pto request for me made for the dates june 4th to june 8th", + "pto_request" + ], + [ + "i'd like to go on vacation", + "pto_request" + ], + [ + "create a pto request for march 21st to march 26th", + "pto_request" + ], + [ + "i need to put in a pto request from the 8th to the 17th of january", + "pto_request" + ], + [ + "can you put in a pto request for the 5th of june to june 8th", + "pto_request" + ], + [ + "from december 22nd to the 25th, make me a pto request", + "pto_request" + ], + [ + "i need a pto request put in for the weekend of june 1st to june 2nd", + "pto_request" + ], + [ + "how do i schedule vacation days", + "pto_request" + ], + [ + "put in a pto request for march 4 to march 6", + "pto_request" + ], + [ + "i need to put in a pto request for march 4 to march 6", + "pto_request" + ], + [ + "how do i use my vacation days", + "pto_request" + ], + [ + "how do i put in for vacation", + "pto_request" + ], + [ + "how can i schedule a vacation request", + "pto_request" + ], + [ + "can you put in a pto request for march 4 to march 6 for me", + "pto_request" + ], + [ + "put in for time off march 4 to march 6", + "pto_request" + ], + [ + "where do i make a vacation request", + "pto_request" + ], + [ + "can i take pto form march 4 to march 6", + "pto_request" + ], + [ + "may i take a pto on february 7 and 8", + "pto_request" + ], + [ + "please tell me how to submit a vacation request", + "pto_request" + ], + [ + "can i take a pto for two days, starting on february 7", + "pto_request" + ], + [ + "i would like to know how to make a vacation request", + "pto_request" + ], + [ + "please tell me how to go about asking for a vacation", + "pto_request" + ], + [ + "can you tell me how to make a vacation request", + "pto_request" + ], + [ + "i would like to request a pto on february 7 and 8", + "pto_request" + ], + [ + "i would like to take a paid time off for february 7 and 8", + "pto_request" + ], + [ + "would you be able to tell me how to make a vacation request", + "pto_request" + ], + [ + "is it possible for me to take a pto for two days, starting february 7", + "pto_request" + ], + [ + "i want to put in a request for pto from may 5 to may 12", + "pto_request" + ], + [ + "i want you to make me a pto request for me for april twenty through may two", + "pto_request" + ], + [ + "i want to request pto from november 7 to 11", + "pto_request" + ], + [ + "how can i request a vacation from work", + "pto_request" + ], + [ + "how do i request vacation time", + "pto_request" + ], + [ + "what do i need to do to request vacation time off", + "pto_request" + ], + [ + "can you put in a pto request for me for july second and third", + "pto_request" + ], + [ + "what do i need to do if i want to ask for vacation time", + "pto_request" + ], + [ + "put in a pto request for me i want it for the ninth and the tenth of august", + "pto_request" + ], + [ + "how do i ask to have a vacation", + "pto_request" + ], + [ + "can you schedule a vacation for next week", + "pto_request" + ], + [ + "i'd like to make a vacation request", + "pto_request" + ], + [ + "what do i do to request a vacation", + "pto_request" + ], + [ + "how can i make a vacation request", + "pto_request" + ], + [ + "how do i book a vacation", + "pto_request" + ], + [ + "what is the process for requesting a vacation", + "pto_request" + ], + [ + "i want to schedule a vacation, can i request that through you", + "pto_request" + ], + [ + "can i put in a vacation request with you", + "pto_request" + ], + [ + "i need to set up a vacation request, what do i need to give you", + "pto_request" + ], + [ + "i need to take some time off, can i have the next week off", + "pto_request" + ], + [ + "what do i need to make a vacation request with you", + "pto_request" + ], + [ + "i need a pto request for march 3rd and 4th", + "pto_request" + ], + [ + "would it be possible to make a pto request for january 15th and 16th", + "pto_request" + ], + [ + "please put in a pto request for june 5th and 6th", + "pto_request" + ], + [ + "set a pto request for april 1st and 2nd", + "pto_request" + ], + [ + "i would like to make a pto request for july 17th and 18th", + "pto_request" + ], + [ + "submit a request for pto for the dates may 5th to the 12th", + "pto_request" + ], + [ + "please place a pto request for february 18th to the february 25th", + "pto_request" + ], + [ + "i would like you put in a pto request for the dates july 4th to the 8th", + "pto_request" + ], + [ + "i need to submit a request for pto for june 12th to june 14th", + "pto_request" + ], + [ + "can you put in a pto request for march 7th to the 9th", + "pto_request" + ], + [ + "i'd like to take a vacation day from 2/24 to 2/25", + "pto_request" + ], + [ + "i'd like to schedule some pto from 2/22 to 2/25", + "pto_request" + ], + [ + "make a pto request from april 2 to april 4", + "pto_request" + ], + [ + "request pto from march 8th until march 11th", + "pto_request" + ], + [ + "please request pto for me from march 3rd to march 7th", + "pto_request" + ], + [ + "could you submit a pto request for me from dates oct thirty to nov second", + "pto_request" + ], + [ + "could you submit a pto request for me from dates mar 3 to 9, please", + "pto_request" + ], + [ + "could you submit a pto request for me for dates april 21 to 30, please", + "pto_request" + ], + [ + "can you submit a pto request for me from dates nov 2 to 10, please", + "pto_request" + ], + [ + "could you submit a pto request for me for dates june 11 to 14", + "pto_request" + ], + [ + "please make a pto request for me from dates jan 21 to begininning of february", + "pto_request" + ], + [ + "please make a pto request for dates tomorrow to the twentieth", + "pto_request" + ], + [ + "please make a pto request from dates september 1 to 15", + "pto_request" + ], + [ + "make a pto request for dates november 11 to black friday", + "pto_request" + ], + [ + "make a pto request from dates may 3 to 9", + "pto_request" + ], + [ + "i want to put in a pto request for march 1-8", + "pto_request" + ], + [ + "how can i go about requesting a vacation", + "pto_request" + ], + [ + "can you put in a pto request for me from march 1-7", + "pto_request" + ], + [ + "please assist me by making a pto request for march 11-18", + "pto_request" + ], + [ + "would i be able to put in a pto request for march 21-26", + "pto_request" + ], + [ + "create for me a pto request for march 16-21", + "pto_request" + ], + [ + "what steps should i take if i want to request vacation", + "pto_request" + ], + [ + "tell me how to request vacation", + "pto_request" + ], + [ + "i'm intereted in requesting pto from april 1-5", + "pto_request" + ], + [ + "i need help making a pto request for march 3-10", + "pto_request" + ], + [ + "am i able to place a pto request for february 20-25", + "pto_request" + ], + [ + "can i request pto from march 9-16", + "pto_request" + ], + [ + "what is the protocol for requesting a vacation", + "pto_request" + ], + [ + "i want help making a pto request for february 22-27", + "pto_request" + ], + [ + "what steps should i take to improve my credit score", + "improve_credit_score" + ], + [ + "give me a recommendation to improve my credit score", + "improve_credit_score" + ], + [ + "what can i do to raise my credit score", + "improve_credit_score" + ], + [ + "steps to raise my credit score", + "improve_credit_score" + ], + [ + "is there a quick way to improve my credit score", + "improve_credit_score" + ], + [ + "what are ways to improve my credit", + "improve_credit_score" + ], + [ + "how to keep my credit score from going down", + "improve_credit_score" + ], + [ + "what are some ways to increase my credit", + "improve_credit_score" + ], + [ + "what can i do to keep my score from dropping", + "improve_credit_score" + ], + [ + "how do i build my credit score", + "improve_credit_score" + ], + [ + "how can i build my credit", + "improve_credit_score" + ], + [ + "what are ways to improve my credit score", + "improve_credit_score" + ], + [ + "i want to keep my credit score from going down, how do i do that", + "improve_credit_score" + ], + [ + "what can i do to improve my credit score", + "improve_credit_score" + ], + [ + "how can i keep my credit score from going down", + "improve_credit_score" + ], + [ + "how can i improve my credit score", + "improve_credit_score" + ], + [ + "how do i keep my credit score from dropping", + "improve_credit_score" + ], + [ + "how to improve my credit score", + "improve_credit_score" + ], + [ + "what are some way s i can do to improe my credit score", + "improve_credit_score" + ], + [ + "how to keep my credit up", + "improve_credit_score" + ], + [ + "how to keep my credit from dropping", + "improve_credit_score" + ], + [ + "i want to keep my credit from going down, how do i do this", + "improve_credit_score" + ], + [ + "my credit is going down what should i do", + "improve_credit_score" + ], + [ + "how do i maintain my credit score", + "improve_credit_score" + ], + [ + "how can i build credit", + "improve_credit_score" + ], + [ + "how do i keep good credit", + "improve_credit_score" + ], + [ + "what are ways to build credit", + "improve_credit_score" + ], + [ + "how to build up my credit score", + "improve_credit_score" + ], + [ + "what can i do to keep my credit in good standing", + "improve_credit_score" + ], + [ + "how do i keep my credit from lowering", + "improve_credit_score" + ], + [ + "give me some ways to build my credit score", + "improve_credit_score" + ], + [ + "what can i do to maintain good credit", + "improve_credit_score" + ], + [ + "can you tell me some tricks and tips i can use to see an increase in my credit score", + "improve_credit_score" + ], + [ + "are there ways for me to make my credit score better", + "improve_credit_score" + ], + [ + "i need a list of different methods for building my credit score", + "improve_credit_score" + ], + [ + "what are some of the ways that i can see an improvement in my credit score", + "improve_credit_score" + ], + [ + "what methods can i use to improve my credit score", + "improve_credit_score" + ], + [ + "what are some tips to build my credit score", + "improve_credit_score" + ], + [ + "help me build my credit score by showing me some ways on how to", + "improve_credit_score" + ], + [ + "show me some ways to build my credit score", + "improve_credit_score" + ], + [ + "what are the best ways to build my credit score", + "improve_credit_score" + ], + [ + "what are some steps to building my credit score", + "improve_credit_score" + ], + [ + "will doing this hurt my credit score", + "improve_credit_score" + ], + [ + "tell me all the ways my credit score can get hurt", + "improve_credit_score" + ], + [ + "i'm not sure if this will hurt my credit score", + "improve_credit_score" + ], + [ + "i want to find out if this will hurt my credit", + "improve_credit_score" + ], + [ + "tell me if the following thing can hurt my credit score", + "improve_credit_score" + ], + [ + "i want to know if opening a new account will decrease my credit score", + "improve_credit_score" + ], + [ + "i heard that opening a new account will decrease my credit score, is it true", + "improve_credit_score" + ], + [ + "is it true that opening a new account can decrease your credit score", + "improve_credit_score" + ], + [ + "please confirm that opening a new account can decrease your credit score", + "improve_credit_score" + ], + [ + "tell me if opening a new account will decrease my credit score", + "improve_credit_score" + ], + [ + "what are some mistakes to avoid so that my credit score stays high", + "improve_credit_score" + ], + [ + "how can i protect my credit rating", + "improve_credit_score" + ], + [ + "tell me some things i can do to secure my credit rating", + "improve_credit_score" + ], + [ + "what are some ways to keep my credit score up", + "improve_credit_score" + ], + [ + "give me tips on maintaining good credit", + "improve_credit_score" + ], + [ + "what factors can ruin a credit score", + "improve_credit_score" + ], + [ + "pull up ways to lower credit score", + "improve_credit_score" + ], + [ + "is it possible to lower my credit score by doing this", + "improve_credit_score" + ], + [ + "what can harm my credit score", + "improve_credit_score" + ], + [ + "are there any new harmful things that could affect my credit score", + "improve_credit_score" + ], + [ + "how can i make my credit score better", + "improve_credit_score" + ], + [ + "what steps can i take to make sure my credit score doesn't go down", + "improve_credit_score" + ], + [ + "how can i ensure my credit score doesn't drop", + "improve_credit_score" + ], + [ + "i'd like to improve my credit score", + "improve_credit_score" + ], + [ + "what do i do to stop my credit score from going lower", + "improve_credit_score" + ], + [ + "how do i make my credit score better", + "improve_credit_score" + ], + [ + "how can i go about improving my credit score", + "improve_credit_score" + ], + [ + "i'd like to make my credit score better", + "improve_credit_score" + ], + [ + "i'd like to find ways to improve my credit score", + "improve_credit_score" + ], + [ + "how do i prevent my credit score from lowering", + "improve_credit_score" + ], + [ + "how can i stop my credit score from dropping", + "improve_credit_score" + ], + [ + "tell me how to improve my credit score", + "improve_credit_score" + ], + [ + "ways to build credit", + "improve_credit_score" + ], + [ + "tell me ways to improve my credit score", + "improve_credit_score" + ], + [ + "how can i hurt my credit score", + "improve_credit_score" + ], + [ + "does carrying a balance hurt my credit score", + "improve_credit_score" + ], + [ + "would being late hurt my credit", + "improve_credit_score" + ], + [ + "does medical debt hurt my credit score", + "improve_credit_score" + ], + [ + "would late payments hurt my credit", + "improve_credit_score" + ], + [ + "can i hurt my credit score", + "improve_credit_score" + ], + [ + "how is the credit score hurt", + "improve_credit_score" + ], + [ + "so how can i hurt my credit score", + "improve_credit_score" + ], + [ + "will checking your credit lower my score", + "improve_credit_score" + ], + [ + "is it true a hard pull hurts my credit score", + "improve_credit_score" + ], + [ + "what lowers you credit score", + "improve_credit_score" + ], + [ + "can i harm my credit if i miss a car payment", + "improve_credit_score" + ], + [ + "will a loan lower my credit score", + "improve_credit_score" + ], + [ + "how do i make sure my credit doesn't fall", + "improve_credit_score" + ], + [ + "what's the best way to build credit", + "improve_credit_score" + ], + [ + "can i improve my credit score", + "improve_credit_score" + ], + [ + "what lowers credit score", + "improve_credit_score" + ], + [ + "how do i build credit", + "improve_credit_score" + ], + [ + "how to improve a credit score", + "improve_credit_score" + ], + [ + "how do i improve my credit score", + "improve_credit_score" + ], + [ + "how to protect my credit score", + "improve_credit_score" + ], + [ + "can i protect my credit score", + "improve_credit_score" + ], + [ + "how to keep credit score high", + "improve_credit_score" + ], + [ + "do you know if bouncing one check on your checking account can hurt your credit score or not", + "improve_credit_score" + ], + [ + "lets hear an interesting fact about funko pops", + "fun_fact" + ], + [ + "know any interesting facts", + "fun_fact" + ], + [ + "what is one fun fact", + "fun_fact" + ], + [ + "tell me a fact", + "fun_fact" + ], + [ + "lets hear a fact", + "fun_fact" + ], + [ + "any unique trivia about beats headphones", + "fun_fact" + ], + [ + "tell me a fact i may not know", + "fun_fact" + ], + [ + "what is one thing i might not know about nike shoes", + "fun_fact" + ], + [ + "tell me something interesting about sperm whales", + "fun_fact" + ], + [ + "i want to know a fun fact about pluto", + "fun_fact" + ], + [ + "what's an interesting fact about flamingos", + "fun_fact" + ], + [ + "tell me a random fact", + "fun_fact" + ], + [ + "have any cool facts on reptiles", + "fun_fact" + ], + [ + "i want to learn an interesting fact about cats", + "fun_fact" + ], + [ + "read me some fun facts", + "fun_fact" + ], + [ + "tell me a few facts about cats", + "fun_fact" + ], + [ + "help me learn something intriguing about turtles", + "fun_fact" + ], + [ + "read me some interesting information about cats", + "fun_fact" + ], + [ + "what's an interesting tidbit about rivers", + "fun_fact" + ], + [ + "can you tell me something i don't know about banks", + "fun_fact" + ], + [ + "can you tell me a fun fact regarding cars", + "fun_fact" + ], + [ + "do you know any fun facts about shampoo", + "fun_fact" + ], + [ + "what's a fun fact about eggs", + "fun_fact" + ], + [ + "what's a neat fact about twinkies", + "fun_fact" + ], + [ + "i'd like to hear a fun fact about adult entertainment", + "fun_fact" + ], + [ + "tell me something neat about slinkies", + "fun_fact" + ], + [ + "tell me something fun about gravity", + "fun_fact" + ], + [ + "say trivia about lebron james", + "fun_fact" + ], + [ + "tell me a fun fact about mt everest", + "fun_fact" + ], + [ + "give me some trivia about lebron james", + "fun_fact" + ], + [ + "what are some trivia questions about lebron james", + "fun_fact" + ], + [ + "repeat that fun fact about mt everest", + "fun_fact" + ], + [ + "what is a fun fact about mt everest", + "fun_fact" + ], + [ + "say a fun fact about mt everest", + "fun_fact" + ], + [ + "do you know any fun facts about mt everest", + "fun_fact" + ], + [ + "explain some trivia about lebron james", + "fun_fact" + ], + [ + "communicate trivia about lebron james", + "fun_fact" + ], + [ + "what are fun facts about lighthouses", + "fun_fact" + ], + [ + "can you tell me fun facts about lighthouses", + "fun_fact" + ], + [ + "tell me interesting facts about lighthouses", + "fun_fact" + ], + [ + "tell me a fun trivia bit about artificial intelligence", + "fun_fact" + ], + [ + "do you know any trivia about the ocean", + "fun_fact" + ], + [ + "tell me something neat about the ocean floor", + "fun_fact" + ], + [ + "i'd like to hear a fun fact about the nfl", + "fun_fact" + ], + [ + "i want to hear an interesting fact about dinosaurs", + "fun_fact" + ], + [ + "please tell me an interesting tidbit about the roman empire", + "fun_fact" + ], + [ + "can you share some trivia with me about us history", + "fun_fact" + ], + [ + "do you know any fun facts about the ocean", + "fun_fact" + ], + [ + "i want to learn a neat fact about black holes", + "fun_fact" + ], + [ + "can you give me a good piece of trivia about the rainforest", + "fun_fact" + ], + [ + "tell me something interesting about outer space", + "fun_fact" + ], + [ + "share with me a fun fact about outer space", + "fun_fact" + ], + [ + "tell me a neat fact about the ocean", + "fun_fact" + ], + [ + "tell me some interesting trivia about dinosaurs", + "fun_fact" + ], + [ + "i want to hear a fun fact about american presidents", + "fun_fact" + ], + [ + "give me an interesting fact about antarctica", + "fun_fact" + ], + [ + "can you share something interesting about world war one", + "fun_fact" + ], + [ + "i want to know some trivia about our solar system", + "fun_fact" + ], + [ + "tell me a fun fact about the olympics", + "fun_fact" + ], + [ + "tell me something cool about elephants", + "fun_fact" + ], + [ + "name some awesome things about dogs", + "fun_fact" + ], + [ + "list some neat stuff about rats", + "fun_fact" + ], + [ + "what's a good trivia fact about china", + "fun_fact" + ], + [ + "give me a fun fact about otters", + "fun_fact" + ], + [ + "do you know any fun facts about australian football", + "fun_fact" + ], + [ + "tell me some trivia about birds", + "fun_fact" + ], + [ + "do you know any trivia about ostriches", + "fun_fact" + ], + [ + "what's a good fun fact about great britain", + "fun_fact" + ], + [ + "give me trivia about bats", + "fun_fact" + ], + [ + "fun facts about tigers", + "fun_fact" + ], + [ + "tell me something interesting about los angeles", + "fun_fact" + ], + [ + "what's a fun fact about mythology", + "fun_fact" + ], + [ + "what's a fun fact relating to elephants", + "fun_fact" + ], + [ + "what's a cool and interesting thing about dogs", + "fun_fact" + ], + [ + "i'd like to hear some trivia about florida", + "fun_fact" + ], + [ + "tell me a fun fact about butterflies", + "fun_fact" + ], + [ + "please give me a really impressive piece of trivia about bubble gum", + "fun_fact" + ], + [ + "what is the most fun fact you know about the film industry", + "fun_fact" + ], + [ + "please tell me trivia about hamburgers", + "fun_fact" + ], + [ + "what is the most unique piece of trivia relating to cameras", + "fun_fact" + ], + [ + "what's a fun fact about elephants", + "fun_fact" + ], + [ + "tell me some amazing trivia about radios", + "fun_fact" + ], + [ + "tell me a fun fact about computer", + "fun_fact" + ], + [ + "please tell me a really fun fact about facebook", + "fun_fact" + ], + [ + "can you tell me the most interesting fact about resistors", + "fun_fact" + ], + [ + "what is an amazing trivia fact relating to 3d printing", + "fun_fact" + ], + [ + "tell me a fun fact about tigers", + "fun_fact" + ], + [ + "can you tell me a fun fact about elephants", + "fun_fact" + ], + [ + "what is a fun fact about dogs", + "fun_fact" + ], + [ + "what would be a fun fact about cats", + "fun_fact" + ], + [ + "tell me all about the trivia with friends", + "fun_fact" + ], + [ + "i need to know trivia on star wars", + "fun_fact" + ], + [ + "lets fin out some fun facts about humans", + "fun_fact" + ], + [ + "i want to know all about trivia for the office", + "fun_fact" + ], + [ + "explain to me the trivia on twilight", + "fun_fact" + ], + [ + "lets go threw some trivia on sports", + "fun_fact" + ], + [ + "trivia about something,tell me some", + "fun_fact" + ], + [ + "tell me about something some trivia", + "fun_fact" + ], + [ + "tell me some something trivia", + "fun_fact" + ], + [ + "about something,tell me some trivia", + "fun_fact" + ], + [ + "adjust your language setting to english", + "change_language" + ], + [ + "change and set your language setting to english", + "change_language" + ], + [ + "set your language setting to english", + "change_language" + ], + [ + "make your preferred language english", + "change_language" + ], + [ + "i would like to have language set to spanish, please", + "change_language" + ], + [ + "please give me your responses only in french from now on", + "change_language" + ], + [ + "can we speak in english rather than zulu", + "change_language" + ], + [ + "i would like to change your language from portuguese to italian", + "change_language" + ], + [ + "change the response language to french please", + "change_language" + ], + [ + "what languages can i switch to for your responses", + "change_language" + ], + [ + "can you give me the answers in italian instead of english", + "change_language" + ], + [ + "i want us to speak to each other in spanish from now on", + "change_language" + ], + [ + "switch the language for your responses, please", + "change_language" + ], + [ + "let's speak in mandarin instead of english", + "change_language" + ], + [ + "how can we start communicating in french rather than english", + "change_language" + ], + [ + "please change the language that you are responding in", + "change_language" + ], + [ + "how do i change the language that your responses are delivered in", + "change_language" + ], + [ + "i need to switch the language for your responses", + "change_language" + ], + [ + "i need to change language to spanish", + "change_language" + ], + [ + "fix my language to spanish", + "change_language" + ], + [ + "speak in the language english", + "change_language" + ], + [ + "i need to change my speaking to spanish", + "change_language" + ], + [ + "i want to switch speaking to french", + "change_language" + ], + [ + "replace my language to chinese", + "change_language" + ], + [ + "can you change your language to japanese", + "change_language" + ], + [ + "change your language to spanish please", + "change_language" + ], + [ + "can you translate that to french", + "change_language" + ], + [ + "please respond to me in spanish", + "change_language" + ], + [ + "can you speak to me using japanese", + "change_language" + ], + [ + "i would appreciate it if you could talk to me in french", + "change_language" + ], + [ + "do you know french", + "change_language" + ], + [ + "can we talk in french", + "change_language" + ], + [ + "can you talk to me in italian", + "change_language" + ], + [ + "can you speak to me in french", + "change_language" + ], + [ + "can you speak to me in chinese", + "change_language" + ], + [ + "talk to me in italian from now on", + "change_language" + ], + [ + "can i start talking to you in french", + "change_language" + ], + [ + "can you talk to me in french", + "change_language" + ], + [ + "can you talk in spanish", + "change_language" + ], + [ + "can i start talking to you in spanish", + "change_language" + ], + [ + "please talk to me in spanish", + "change_language" + ], + [ + "can you understand me, if i start talking in italian", + "change_language" + ], + [ + "is it ok if i start speaking to you in german", + "change_language" + ], + [ + "can i give you instructions in japanese", + "change_language" + ], + [ + "talk to me in spanish from now on", + "change_language" + ], + [ + "can you talk to me in chinese", + "change_language" + ], + [ + "i am going to switch to greek", + "change_language" + ], + [ + "i want to use spanish as my language", + "change_language" + ], + [ + "i will be speaking chinese going forward", + "change_language" + ], + [ + "the language i am using will now be italian", + "change_language" + ], + [ + "i am changing over to italian now", + "change_language" + ], + [ + "is there an option to speak only in mandarin", + "change_language" + ], + [ + "let's go ahead and switch your language", + "change_language" + ], + [ + "i want to edit the language", + "change_language" + ], + [ + "is it possible to only talk in spanish", + "change_language" + ], + [ + "let me talk to you in greek", + "change_language" + ], + [ + "change the native language", + "change_language" + ], + [ + "can i speak to you in german", + "change_language" + ], + [ + "is there an option to change the language", + "change_language" + ], + [ + "i need to change the language to french", + "change_language" + ], + [ + "how can i adjust the spoken language", + "change_language" + ], + [ + "answer me in french", + "change_language" + ], + [ + "please respond in latin from now on", + "change_language" + ], + [ + "talk to me in italian", + "change_language" + ], + [ + "let\u2019s chat using spanish", + "change_language" + ], + [ + "i need the language set to swahili", + "change_language" + ], + [ + "change the language you're using to american english", + "change_language" + ], + [ + "switch the language setting over to german", + "change_language" + ], + [ + "change language to french, please", + "change_language" + ], + [ + "can you swap the language to afrikaans for me", + "change_language" + ], + [ + "i want you to address me in italian", + "change_language" + ], + [ + "i want you to speak in french", + "change_language" + ], + [ + "start talking in spanish", + "change_language" + ], + [ + "can you speak in french", + "change_language" + ], + [ + "i want to hear from you in german", + "change_language" + ], + [ + "change your language setting to german", + "change_language" + ], + [ + "alter your language to french", + "change_language" + ], + [ + "change your language prefrences japanese", + "change_language" + ], + [ + "change your language setting to chinese", + "change_language" + ], + [ + "alter your language choice to dutch", + "change_language" + ], + [ + "change your language", + "change_language" + ], + [ + "can i change your language", + "change_language" + ], + [ + "select a new language", + "change_language" + ], + [ + "i want to put you in a different language", + "change_language" + ], + [ + "let's change the language for you", + "change_language" + ], + [ + "set default language to english", + "change_language" + ], + [ + "you should respond in english", + "change_language" + ], + [ + "please respond in english", + "change_language" + ], + [ + "change your spoken language to english", + "change_language" + ], + [ + "change language setting to english", + "change_language" + ], + [ + "switch your language setting to english", + "change_language" + ], + [ + "i want your language changed to chinese", + "change_language" + ], + [ + "can you start talking to me in spanish from here on out", + "change_language" + ], + [ + "please speak to me in chinese", + "change_language" + ], + [ + "please make your language setting french", + "change_language" + ], + [ + "please speak german to me from now on", + "change_language" + ], + [ + "i need your language setting to be russian now", + "change_language" + ], + [ + "please change your language setting to spanish", + "change_language" + ], + [ + "i want your responses to be in french", + "change_language" + ], + [ + "from now on, i want you to answer me using japanese", + "change_language" + ], + [ + "on what date do i get paid", + "payday" + ], + [ + "what day do i get my paycheck", + "payday" + ], + [ + "i need to know when to expect my next paycheck", + "payday" + ], + [ + "tell me when my next paycheck will arrive", + "payday" + ], + [ + "what date do i get my next paycheck", + "payday" + ], + [ + "when will i be getting my next paycheck", + "payday" + ], + [ + "when's the the last time i was paid", + "payday" + ], + [ + "what date did i receive my last paycheck", + "payday" + ], + [ + "when was my last payday", + "payday" + ], + [ + "when was my last paycheck", + "payday" + ], + [ + "when's the last time i got a paycheck", + "payday" + ], + [ + "i need to know when i was paid last", + "payday" + ], + [ + "tell me when i last got paid", + "payday" + ], + [ + "tell me when i received my last paycheck", + "payday" + ], + [ + "i want to know when i was last paid", + "payday" + ], + [ + "when did i get my last paycheck", + "payday" + ], + [ + "please give me the expected arrival date for my next paycheck", + "payday" + ], + [ + "tell me when i received my most recent paycheck", + "payday" + ], + [ + "do you know when i can expect my next paycheck", + "payday" + ], + [ + "i need to know when i got latest paycheck", + "payday" + ], + [ + "tell me when my next paycheck is set to arrive", + "payday" + ], + [ + "can you confirm the date my last paycheck was received", + "payday" + ], + [ + "can you tell me what day my next paycheck will come", + "payday" + ], + [ + "what is the date of my last paycheck", + "payday" + ], + [ + "i need to know the date my next paycheck will be here", + "payday" + ], + [ + "please find the receipt date for my last paycheck", + "payday" + ], + [ + "when does my paycheck arrive", + "payday" + ], + [ + "i want to know when to expect my next paycheck", + "payday" + ], + [ + "will i get my paycheck soon", + "payday" + ], + [ + "what date will my next paycheck be here", + "payday" + ], + [ + "is my paycheck arriving soon", + "payday" + ], + [ + "what day will my paycheck come", + "payday" + ], + [ + "did i receive my paycheck this week", + "payday" + ], + [ + "when will my next paycheck be", + "payday" + ], + [ + "when am i paid", + "payday" + ], + [ + "when is my pay period", + "payday" + ], + [ + "how much longer until i have a direct deposit", + "payday" + ], + [ + "how many days until my next payday", + "payday" + ], + [ + "when will my paycheck be available", + "payday" + ], + [ + "my next paycheck is available when", + "payday" + ], + [ + "when will i recieve my next paycheck", + "payday" + ], + [ + "let me know when i'm going to be paid", + "payday" + ], + [ + "can you tell me when i'm supposed to get paid", + "payday" + ], + [ + "tell me when i get paid", + "payday" + ], + [ + "how much longer until the next payday", + "payday" + ], + [ + "when will i recieve another paycheck", + "payday" + ], + [ + "what date is another paycheck due", + "payday" + ], + [ + "when do i get paid again", + "payday" + ], + [ + "when should another paycheck arrive", + "payday" + ], + [ + "when is my next paycheck due", + "payday" + ], + [ + "when will i be paid again", + "payday" + ], + [ + "which date is my next paycheck due", + "payday" + ], + [ + "what is my next payday", + "payday" + ], + [ + "find my next payday", + "payday" + ], + [ + "next payday please", + "payday" + ], + [ + "my next payday", + "payday" + ], + [ + "what is the date i get paid", + "payday" + ], + [ + "day that i get paid", + "payday" + ], + [ + "what is my pay date", + "payday" + ], + [ + "next payday", + "payday" + ], + [ + "what day do i get paid", + "payday" + ], + [ + "what day is my next payday", + "payday" + ], + [ + "when is the next day i get paid", + "payday" + ], + [ + "when will i get paid next", + "payday" + ], + [ + "when's my next paycheck", + "payday" + ], + [ + "how long is it until payday", + "payday" + ], + [ + "when should i expect my next paycheck", + "payday" + ], + [ + "when is the next time i get paid", + "payday" + ], + [ + "what day will i get paid", + "payday" + ], + [ + "when is my next direct deposit from my job", + "payday" + ], + [ + "when is payday", + "payday" + ], + [ + "when is my paycheck coming", + "payday" + ], + [ + "when was the last date that i got a paycheck", + "payday" + ], + [ + "when was i last paid", + "payday" + ], + [ + "when was the last date that i got paid", + "payday" + ], + [ + "when was the date that i was last paid", + "payday" + ], + [ + "when was the last date that i was paid", + "payday" + ], + [ + "when am i due for my next paycheck", + "payday" + ], + [ + "what time is my next paycheck coming", + "payday" + ], + [ + "when will my next paycheck come", + "payday" + ], + [ + "when will i get my next paycheck", + "payday" + ], + [ + "when is my next paycheck", + "payday" + ], + [ + "tell me my next paycheck", + "payday" + ], + [ + "when did i get paid the last time", + "payday" + ], + [ + "tell me when my next paycheck will be here", + "payday" + ], + [ + "when was the last time i got paid", + "payday" + ], + [ + "i wanna know when i was paid last", + "payday" + ], + [ + "when was my last payment", + "payday" + ], + [ + "when was i paid last", + "payday" + ], + [ + "i wanna know my next paycheck", + "payday" + ], + [ + "tell me on what day did i get paid last", + "payday" + ], + [ + "remind me of the date of my last paycheck", + "payday" + ], + [ + "on what date did i get paid last", + "payday" + ], + [ + "when did they deposit my last salary", + "payday" + ], + [ + "when was i paid the last time", + "payday" + ], + [ + "when's payday", + "payday" + ], + [ + "when's my next payday", + "payday" + ], + [ + "when do i get paid", + "payday" + ], + [ + "what day do i get paid next", + "payday" + ], + [ + "when do i get my next check", + "payday" + ], + [ + "tell me about today weather", + "replacement_card_duration" + ], + [ + "can my debit card be replaced quickly", + "replacement_card_duration" + ], + [ + "how long does visa take to get me a new card", + "replacement_card_duration" + ], + [ + "is my card made immedietly after reporting stolen", + "replacement_card_duration" + ], + [ + "can i replace a stolen card soon", + "replacement_card_duration" + ], + [ + "how long to replace a credit card", + "replacement_card_duration" + ], + [ + "how soon until you send me replacement card", + "replacement_card_duration" + ], + [ + "when will you mail me a replacement card", + "replacement_card_duration" + ], + [ + "how long until you send me a replacement card", + "replacement_card_duration" + ], + [ + "when will you send me a replacement card", + "replacement_card_duration" + ], + [ + "when can you send me a replacement card", + "replacement_card_duration" + ], + [ + "how long will delivery of a new card take", + "replacement_card_duration" + ], + [ + "when can i expect my replacement card", + "replacement_card_duration" + ], + [ + "how long can i expect to wait for a new card", + "replacement_card_duration" + ], + [ + "when do they mail me a replacement card", + "replacement_card_duration" + ], + [ + "when does the replacement card arrive", + "replacement_card_duration" + ], + [ + "if my credit card was stolen, how long will it take to replace", + "replacement_card_duration" + ], + [ + "how long will i have to wait until they replace a stolen credit card", + "replacement_card_duration" + ], + [ + "how long does it take to replace a stolen credit card", + "replacement_card_duration" + ], + [ + "how long will a new card take to come in the mail", + "replacement_card_duration" + ], + [ + "what's the timeline on replacing a stolen credit card", + "replacement_card_duration" + ], + [ + "do i get a replacement card mailed, and when", + "replacement_card_duration" + ], + [ + "what's the transit time on a new card", + "replacement_card_duration" + ], + [ + "will you notify me when my new card is on the way", + "replacement_card_duration" + ], + [ + "what is the quickest way to get a new card", + "replacement_card_duration" + ], + [ + "what is the turn around for a new card", + "replacement_card_duration" + ], + [ + "how long will it take to get a new card", + "replacement_card_duration" + ], + [ + "when can i expect my new card", + "replacement_card_duration" + ], + [ + "my new card will arrive when", + "replacement_card_duration" + ], + [ + "my new card arrives in the post when", + "replacement_card_duration" + ], + [ + "how long til my new card arrives by mail", + "replacement_card_duration" + ], + [ + "my new card will get here in the mail when", + "replacement_card_duration" + ], + [ + "if i ordered a new card, how long til it comes", + "replacement_card_duration" + ], + [ + "when can i expect my new card to get here", + "replacement_card_duration" + ], + [ + "when will my new card come in the mail", + "replacement_card_duration" + ], + [ + "when will my new visa get here", + "replacement_card_duration" + ], + [ + "my card is coming by mail how long will that take", + "replacement_card_duration" + ], + [ + "how long will it take a new card to come in the mail", + "replacement_card_duration" + ], + [ + "what date will my card be here", + "replacement_card_duration" + ], + [ + "how many days do i have to wait for my card", + "replacement_card_duration" + ], + [ + "when will me new card arrive", + "replacement_card_duration" + ], + [ + "how long does it take to get a replacement card", + "replacement_card_duration" + ], + [ + "if i order a new card how long would it take", + "replacement_card_duration" + ], + [ + "if i need a new card mailed how long will it take", + "replacement_card_duration" + ], + [ + "how long will it be for me to get a new card", + "replacement_card_duration" + ], + [ + "how long will a new card take to reach me", + "replacement_card_duration" + ], + [ + "time to get replacement credit card for stolen one", + "replacement_card_duration" + ], + [ + "how long it takes to get a new replacement card", + "replacement_card_duration" + ], + [ + "mailing to me for a new card takes how long", + "replacement_card_duration" + ], + [ + "mailing a new card to me takes how long", + "replacement_card_duration" + ], + [ + "for anew card to be mailed to me, how long does it take", + "replacement_card_duration" + ], + [ + "it takes how long to mail me a new card", + "replacement_card_duration" + ], + [ + "a new cards takes how long to mail to me", + "replacement_card_duration" + ], + [ + "average time to receive new card", + "replacement_card_duration" + ], + [ + "how long to get a new credit card", + "replacement_card_duration" + ], + [ + "how many days before my credit card arrives", + "replacement_card_duration" + ], + [ + "will my credit card be mailed soon", + "replacement_card_duration" + ], + [ + "when will i get my new credit card", + "replacement_card_duration" + ], + [ + "my credit card was stolen; how long before a new one will arrive", + "replacement_card_duration" + ], + [ + "my credit card has been stolen and i want to know how long it will be before i can get a new one", + "replacement_card_duration" + ], + [ + "how long will it take for me to get a new credit card to replace the one that was stolen", + "replacement_card_duration" + ], + [ + "my credit card got stolen and i need to know how long it will be before a new on arrives", + "replacement_card_duration" + ], + [ + "how many days will it take to get a new credit card to replace the one stolen from me", + "replacement_card_duration" + ], + [ + "what's the expected time to have a stolen credit card replaced", + "replacement_card_duration" + ], + [ + "how long does it take to replace a lost card", + "replacement_card_duration" + ], + [ + "how long should i expect to wait for my new card in the mail", + "replacement_card_duration" + ], + [ + "how long should i wait to get my new card when my old one was stolen", + "replacement_card_duration" + ], + [ + "what's the typical lag time in receiving a new credit card when your previous one was lost", + "replacement_card_duration" + ], + [ + "what's the usual time to get a new card when your previous one was lost", + "replacement_card_duration" + ], + [ + "how long will it take before the postal service delivers my new card", + "replacement_card_duration" + ], + [ + "what's the typical time it takes for a new card to arrive", + "replacement_card_duration" + ], + [ + "when will i get a replacement card for a lost one", + "replacement_card_duration" + ], + [ + "what's the eta for a new card to come in the mail", + "replacement_card_duration" + ], + [ + "my last card was stolen and i want to know how long until i get my new one", + "replacement_card_duration" + ], + [ + "how many days till i get a new card to replace the stolen one", + "replacement_card_duration" + ], + [ + "what's the average time it takes for a new card to arrive", + "replacement_card_duration" + ], + [ + "how long until the credit card company replaces my lost card", + "replacement_card_duration" + ], + [ + "how long does it take to get a replacement credit card when your last one was stolen", + "replacement_card_duration" + ], + [ + "how soon will i be sent a new card", + "replacement_card_duration" + ], + [ + "how many days does it take to receive a new card", + "replacement_card_duration" + ], + [ + "how long does it take you to mail me a new card", + "replacement_card_duration" + ], + [ + "how soon will you mail me a new card", + "replacement_card_duration" + ], + [ + "what is the earliest date i can get my new card", + "replacement_card_duration" + ], + [ + "whats the wait time for a replacement card", + "replacement_card_duration" + ], + [ + "how long until i get a replacement card", + "replacement_card_duration" + ], + [ + "how long before i can get a replacement card", + "replacement_card_duration" + ], + [ + "when will a replacement card get here", + "replacement_card_duration" + ], + [ + "how long is the shipping for my replacement card", + "replacement_card_duration" + ], + [ + "what date will my replacement card arrive on", + "replacement_card_duration" + ], + [ + "is my replacement card coming soon", + "replacement_card_duration" + ], + [ + "when will my card replacement arrive", + "replacement_card_duration" + ], + [ + "when will my card come", + "replacement_card_duration" + ], + [ + "when should i expect my replacement card", + "replacement_card_duration" + ], + [ + "when will my replacement card get mailed", + "replacement_card_duration" + ], + [ + "do you know when my card will come in", + "replacement_card_duration" + ], + [ + "do when you when my replacement card will get mailed", + "replacement_card_duration" + ], + [ + "what date will my replacement card get mailed", + "replacement_card_duration" + ], + [ + "what would be the estimated time from to get a new card mailed to me", + "replacement_card_duration" + ], + [ + "what is the time frame to get a new card mailed to me", + "replacement_card_duration" + ], + [ + "how long until i can expect my new card to get mailed to me", + "replacement_card_duration" + ], + [ + "what time is it in punta gorda, florida", + "time" + ], + [ + "what time is it in glenwood springs, co", + "time" + ], + [ + "what time is it in fredericksburg, tx", + "time" + ], + [ + "what time is it in las vegas, nv", + "time" + ], + [ + "what time is it in houston, tx", + "time" + ], + [ + "i need to know the current time in the central timezone", + "time" + ], + [ + "would you tell me the current time in the eastern timezone", + "time" + ], + [ + "let me know the current time in the central timezone", + "time" + ], + [ + "tell me what time it is in the central timezone", + "time" + ], + [ + "i am needing to know the current time in the eastern timezone", + "time" + ], + [ + "what is the time right now in the hst timezone", + "time" + ], + [ + "can you tell me the current time", + "time" + ], + [ + "what is the current time in cst", + "time" + ], + [ + "i need to know what time it is in florida", + "time" + ], + [ + "what is the time right now", + "time" + ], + [ + "in the mst time zone, what time is it right now", + "time" + ], + [ + "tell me what time it is right now", + "time" + ], + [ + "can you tell me the current time in the pacific timezone", + "time" + ], + [ + "look up the time in california", + "time" + ], + [ + "what is the current est time", + "time" + ], + [ + "can you tell me what time it is please", + "time" + ], + [ + "what time is it getting to be", + "time" + ], + [ + "what time do you have on your watch", + "time" + ], + [ + "what time would it be in rome right now", + "time" + ], + [ + "what's the time in london", + "time" + ], + [ + "what's the time set to in florida right now", + "time" + ], + [ + "what time is it currently in istanbul", + "time" + ], + [ + "what time is it right now in paris", + "time" + ], + [ + "what's the time right now", + "time" + ], + [ + "current time, please", + "time" + ], + [ + "would you mind telling me the time", + "time" + ], + [ + "can you give me the time", + "time" + ], + [ + "please let me know what time it is", + "time" + ], + [ + "what is the exact time right now in the hawaii time zone", + "time" + ], + [ + "what is the time", + "time" + ], + [ + "what is the time right now in the peruvian time zone", + "time" + ], + [ + "what is the exact time", + "time" + ], + [ + "what time is it exactly in the new zealand time zone", + "time" + ], + [ + "what is the exact time in the ist time zone", + "time" + ], + [ + "what is the time in the utc timezone", + "time" + ], + [ + "what time is it exactly", + "time" + ], + [ + "what is the time now", + "time" + ], + [ + "what time is it in russia", + "time" + ], + [ + "what time is it", + "time" + ], + [ + "what is the time in sydney, australia", + "time" + ], + [ + "what time is it in honolulu", + "time" + ], + [ + "what's the current time in greenwhich", + "time" + ], + [ + "what's the current time in est", + "time" + ], + [ + "what time is it on the pacific coast right now", + "time" + ], + [ + "given my time, what time is it in mst", + "time" + ], + [ + "have you the time", + "time" + ], + [ + "when is it right now", + "time" + ], + [ + "what hour and minute is it", + "time" + ], + [ + "what time is it right now in cst", + "time" + ], + [ + "what time is it in the eastern standard timezone", + "time" + ], + [ + "what time is it in the pacific standard timezone", + "time" + ], + [ + "what time is it in the alaska standard timezone", + "time" + ], + [ + "what time is it in the central standard timezone", + "time" + ], + [ + "what time is it in the mountain standard timezone", + "time" + ], + [ + "now what is the time", + "time" + ], + [ + "at the moment what is the time", + "time" + ], + [ + "i want to know the time", + "time" + ], + [ + "what time is it now", + "time" + ], + [ + "do you know the current time in southern california", + "time" + ], + [ + "what is the current time in china", + "time" + ], + [ + "what is the current time in mexico city", + "time" + ], + [ + "what is the current time in new york", + "time" + ], + [ + "what is the current time in istanbul", + "time" + ], + [ + "what time is it in buenos aires", + "time" + ], + [ + "what time is it in north korea", + "time" + ], + [ + "what does it say on the clock", + "time" + ], + [ + "in tokyo, what's the time", + "time" + ], + [ + "in tokyo, what time is it", + "time" + ], + [ + "what's the time in tokyo", + "time" + ], + [ + "time in tokyo", + "time" + ], + [ + "what time is it in tokyo", + "time" + ], + [ + "the time please", + "time" + ], + [ + "i want to know what time it is", + "time" + ], + [ + "can you tell me the time", + "time" + ], + [ + "i would like to know the time", + "time" + ], + [ + "i need to know the time", + "time" + ], + [ + "the current time", + "time" + ], + [ + "in the eastern timezone, what time is it now", + "time" + ], + [ + "in the central timezone, what time is it", + "time" + ], + [ + "what's the current time now cst", + "time" + ], + [ + "in pacific time, what's the current time", + "time" + ], + [ + "what time is it now pacific time", + "time" + ], + [ + "what is the current time, please", + "time" + ], + [ + "what's the current time, please", + "time" + ], + [ + "what is the time, please", + "time" + ], + [ + "how is the time", + "time" + ], + [ + "please tell me the time", + "time" + ], + [ + "what time is it in london", + "time" + ], + [ + "what time is it in new york", + "time" + ], + [ + "what time is it in paris", + "time" + ], + [ + "what time is it in daniel boone national forest timezone", + "time" + ], + [ + "what is the time in atlantic timezone", + "time" + ], + [ + "what's the time in anchorage timezone", + "time" + ], + [ + "in bst timezone, what time is it", + "time" + ], + [ + "do you have the time", + "time" + ], + [ + "when will my application for my credit card be processed", + "application_status" + ], + [ + "has the discover card approved my app", + "application_status" + ], + [ + "do you know if my amex card app went through", + "application_status" + ], + [ + "have they looked over my app for the new credit card yet", + "application_status" + ], + [ + "has my application for the mastercard card gone through", + "application_status" + ], + [ + "have my app for a new card been processed yet", + "application_status" + ], + [ + "has the application i put in for a new visa been processed", + "application_status" + ], + [ + "has there been any notice that my card app has been looked at", + "application_status" + ], + [ + "has visa gotten back to me regarding my card app", + "application_status" + ], + [ + "see if my form submission for an american express card has been seen", + "application_status" + ], + [ + "do you know if anyone's even looked at the application i sent in for the new visa card", + "application_status" + ], + [ + "has anyone looked at my mastercard application", + "application_status" + ], + [ + "have i gotten confirmation for my credit card app", + "application_status" + ], + [ + "can you check if my application for a discovery card has been looked over yet", + "application_status" + ], + [ + "is there any indication my application for a new credit card has been processed", + "application_status" + ], + [ + "i put in a credit card application, so what is the status with it currently", + "application_status" + ], + [ + "did my visa card app go through yet", + "application_status" + ], + [ + "did my chase card application go through yet", + "application_status" + ], + [ + "do you know the status of the credit card application i filed", + "application_status" + ], + [ + "has the application for my visa been processed", + "application_status" + ], + [ + "i filed a credit card application so what is going on with it", + "application_status" + ], + [ + "did my american express card application go through yet", + "application_status" + ], + [ + "what is the status of the application for a credit card i put in", + "application_status" + ], + [ + "has the application for my american express been processed yet", + "application_status" + ], + [ + "my credit card application has what status", + "application_status" + ], + [ + "where can i go to see if my credit card application has been processed", + "application_status" + ], + [ + "will i be notified when my application has been processed", + "application_status" + ], + [ + "what is the status of my credit card application", + "application_status" + ], + [ + "how will i know when my application for a credit card has been processed", + "application_status" + ], + [ + "where can i find out the status of my credit card application", + "application_status" + ], + [ + "tell me if my application has been processed yet, i signed up for a credit card recently", + "application_status" + ], + [ + "can you check and see if my credit card application has been approved or not", + "application_status" + ], + [ + "has my application for a trust bank credit card been mailed out and if so was i approved or not", + "application_status" + ], + [ + "could you check and see if my credit card application has been processed and approved or not", + "application_status" + ], + [ + "i want to know if my application for a credit card at community bank has been approved or not", + "application_status" + ], + [ + "can you find out if my application at smith bank was approved or not i applied for s credit card a month ago", + "application_status" + ], + [ + "can you tell me if my application for a credit card has been processed yet it was at chase bank", + "application_status" + ], + [ + "was my application approved or not for a credit card at chase bank", + "application_status" + ], + [ + "i want an update on my application for a credit card that i sent in a couple weeks ago", + "application_status" + ], + [ + "i haven't heard if my application for a credit card has been accepted or not can you check on it for me", + "application_status" + ], + [ + "please look into the latest status of my credit card application", + "application_status" + ], + [ + "can you update me on the status of my american express card application", + "application_status" + ], + [ + "can you find out the latest on my credit card application, i haven't heard an update in some time", + "application_status" + ], + [ + "find out for me if my amex card application was received", + "application_status" + ], + [ + "can you check the status of my credit card application", + "application_status" + ], + [ + "how can i track the progress of my credit card application", + "application_status" + ], + [ + "has my credit card application been received, or what is its current status", + "application_status" + ], + [ + "i need to know what the latest is with my application for a visa credit card", + "application_status" + ], + [ + "please check the status of my mastercard application", + "application_status" + ], + [ + "do you know what the latest is with my credit card application", + "application_status" + ], + [ + "i would like an update on the progress of my credit card application", + "application_status" + ], + [ + "update me on the status of my credit card application", + "application_status" + ], + [ + "please get me an update on the status of my credit card application", + "application_status" + ], + [ + "has there been any changes in the status of my credit card application", + "application_status" + ], + [ + "please find out the current status of my credit card application", + "application_status" + ], + [ + "i want to be updated on the most recent status of my credit card application", + "application_status" + ], + [ + "tell me the present status of the credit card application i submitted", + "application_status" + ], + [ + "look into the status of the credit card application i submitted recently for my new card", + "application_status" + ], + [ + "look to see if my application for the barclay's card has gone through yet", + "application_status" + ], + [ + "i want to know if my credit card application has been processed yet", + "application_status" + ], + [ + "i need to know if the application been processed", + "application_status" + ], + [ + "tell me straight if it has been processed or not", + "application_status" + ], + [ + "can you tell me when my credit card application will be processed", + "application_status" + ], + [ + "how much longer until my credit card application is checked", + "application_status" + ], + [ + "when will my credit card app be approved", + "application_status" + ], + [ + "has my credit card application gone through", + "application_status" + ], + [ + "check on my credit card application", + "application_status" + ], + [ + "do i have any updates about my credit card application", + "application_status" + ], + [ + "has my credit card application been processed", + "application_status" + ], + [ + "have i received any messages about my credit card application", + "application_status" + ], + [ + "when can i hear the decision on my credit card application", + "application_status" + ], + [ + "my credit card application status", + "application_status" + ], + [ + "i applied for the credit card, have you processed my application", + "application_status" + ], + [ + "how long to process my credit card application", + "application_status" + ], + [ + "how is my application on new credit card going", + "application_status" + ], + [ + "what is the status of my new credit card application", + "application_status" + ], + [ + "is my application processed for credit card", + "application_status" + ], + [ + "help with credit card application status", + "application_status" + ], + [ + "is my credit card application approved", + "application_status" + ], + [ + "what is the status of my application for the credit card", + "application_status" + ], + [ + "has my credit card application been processed yet", + "application_status" + ], + [ + "what's the current status of the credit card i applied for", + "application_status" + ], + [ + "in what status is my credit card application", + "application_status" + ], + [ + "did the application i put in for a mastercard go through yet", + "application_status" + ], + [ + "has my application for a new credit card been processed", + "application_status" + ], + [ + "has my amex application gone through yet", + "application_status" + ], + [ + "i applied for a visa card; did that go through", + "application_status" + ], + [ + "what status is my card application in", + "application_status" + ], + [ + "did they process the credit card i applied for", + "application_status" + ], + [ + "i applied for a new credit card; did it process yet", + "application_status" + ], + [ + "did discover get my card application yet", + "application_status" + ], + [ + "tell me about my american express application; did it go through", + "application_status" + ], + [ + "tell me a little more about the status of my credit card application", + "application_status" + ], + [ + "tell me the status of my credit card application", + "application_status" + ], + [ + "is the processing done on my new credit card", + "application_status" + ], + [ + "i'm desperate to know about my cc processing", + "application_status" + ], + [ + "have you heard anything back on my cc application", + "application_status" + ], + [ + "is it likely my credit card application has processed yet", + "application_status" + ], + [ + "has my credit card application been approved", + "application_status" + ], + [ + "when will my cc application process", + "application_status" + ], + [ + "what is the projected time frame for the flight to land", + "flight_status" + ], + [ + "is there any news on flight dl123", + "flight_status" + ], + [ + "what is the word on flight dl123", + "flight_status" + ], + [ + "when will we begin to board my scheduled flight", + "flight_status" + ], + [ + "whats the status of my frontier flight", + "flight_status" + ], + [ + "when will my flight take off", + "flight_status" + ], + [ + "what is the arrival time for my flight", + "flight_status" + ], + [ + "whats the status of my delta flight", + "flight_status" + ], + [ + "whats the update on flight dl123", + "flight_status" + ], + [ + "is there an update on flight dl123", + "flight_status" + ], + [ + "when will my flight land", + "flight_status" + ], + [ + "at what point should the flight land", + "flight_status" + ], + [ + "what time is my flight scheduled to leave", + "flight_status" + ], + [ + "when is my flight supposed to leave", + "flight_status" + ], + [ + "whats the status of my south west flight", + "flight_status" + ], + [ + "when should the flight land", + "flight_status" + ], + [ + "whats the latest on flight dl123", + "flight_status" + ], + [ + "whats the status of my united flight", + "flight_status" + ], + [ + "whats the status of my singapore flight", + "flight_status" + ], + [ + "give me the status of flight dl123", + "flight_status" + ], + [ + "tell me that status of flight dl123", + "flight_status" + ], + [ + "is flight dl123 coming in on time", + "flight_status" + ], + [ + "is flight dl123 on time", + "flight_status" + ], + [ + "what's the latest with my united flight", + "flight_status" + ], + [ + "update me on my delta flight please", + "flight_status" + ], + [ + "tell me what the status of my american airlines flight is", + "flight_status" + ], + [ + "look up when my flight is set to start boarding", + "flight_status" + ], + [ + "at what time will my flight land", + "flight_status" + ], + [ + "i need to know the status of my alaska air flight", + "flight_status" + ], + [ + "at what time will my flight begin boarding", + "flight_status" + ], + [ + "what time is my flight supposed to board", + "flight_status" + ], + [ + "tell me what time my flight ought to be landing", + "flight_status" + ], + [ + "tell me when my flight is scheduled to start boarding", + "flight_status" + ], + [ + "when is my plane scheduled to land", + "flight_status" + ], + [ + "when does boarding for my flight begin", + "flight_status" + ], + [ + "whats the most recent status for my virgin air flight", + "flight_status" + ], + [ + "can you check when my flight lands", + "flight_status" + ], + [ + "what time is my flight supposed to be landing", + "flight_status" + ], + [ + "can you tell me the status of my delta flight", + "flight_status" + ], + [ + "whats my delta flight's status", + "flight_status" + ], + [ + "is my delta flight on time", + "flight_status" + ], + [ + "when will my delta flight depart", + "flight_status" + ], + [ + "will my delta flight leave on time", + "flight_status" + ], + [ + "what is the eta of my flight", + "flight_status" + ], + [ + "when is my flight due to arrive", + "flight_status" + ], + [ + "what landing time is scheduled for my flight", + "flight_status" + ], + [ + "what time is my plane supposed to arrive", + "flight_status" + ], + [ + "what is the scheduled arrival time for my flight", + "flight_status" + ], + [ + "please tell me the status of my southwest flight", + "flight_status" + ], + [ + "i would appreciate it if you could tell me the status of my southwest flight", + "flight_status" + ], + [ + "what is the status of my frontier flight", + "flight_status" + ], + [ + "could you tell me the status of my frontier flight", + "flight_status" + ], + [ + "do you mind informing me the status of my southwest flight", + "flight_status" + ], + [ + "when will my aa flight be landing", + "flight_status" + ], + [ + "when's my flight boarding", + "flight_status" + ], + [ + "what's the latest info on flight dl123", + "flight_status" + ], + [ + "when will my panam flight be arriving", + "flight_status" + ], + [ + "when will my jetblue flight get here", + "flight_status" + ], + [ + "when will they let me board", + "flight_status" + ], + [ + "can you update me with the status of flight dl123", + "flight_status" + ], + [ + "what's the status of my united flight", + "flight_status" + ], + [ + "can you tell me where flight dl123 is", + "flight_status" + ], + [ + "at what point will this flight start letting people board", + "flight_status" + ], + [ + "how long until delta is at the gate", + "flight_status" + ], + [ + "when should i expect my flight to come in", + "flight_status" + ], + [ + "when can i start boarding my flight", + "flight_status" + ], + [ + "when's my flight getting here", + "flight_status" + ], + [ + "how long until my flight is here", + "flight_status" + ], + [ + "has flight dl123 arrived yet", + "flight_status" + ], + [ + "what time will i be allowed to board", + "flight_status" + ], + [ + "any idea where flight dl123 is right now", + "flight_status" + ], + [ + "what's my flight's eta", + "flight_status" + ], + [ + "what time does my flight get in", + "flight_status" + ], + [ + "when does my flight arrive", + "flight_status" + ], + [ + "let me know the status of flight dl123", + "flight_status" + ], + [ + "tell me the status of flight dl123", + "flight_status" + ], + [ + "i would love to know when my flight is going to land", + "flight_status" + ], + [ + "i wanna know the status of flight dl123", + "flight_status" + ], + [ + "tell me when my flight will land", + "flight_status" + ], + [ + "i gotta know when my flight will land", + "flight_status" + ], + [ + "please inform me when my flight scheduled to board", + "flight_status" + ], + [ + "i would like to know when my flight scheduled to board", + "flight_status" + ], + [ + "i need to know when my flight scheduled to board", + "flight_status" + ], + [ + "tell me when my flight scheduled to board", + "flight_status" + ], + [ + "please tell me when my flight will land", + "flight_status" + ], + [ + "i wanna know when my flight scheduled to board", + "flight_status" + ], + [ + "i need to know the status of flight dl123", + "flight_status" + ], + [ + "i wish to know when my flight will land", + "flight_status" + ], + [ + "what is the scheduled landing time for my flight", + "flight_status" + ], + [ + "what time will my flight be boarding", + "flight_status" + ], + [ + "what time is this flight supposed to land", + "flight_status" + ], + [ + "what time will i be able to board the plane", + "flight_status" + ], + [ + "when will i get to my destination", + "flight_status" + ], + [ + "can you tell me what time this flight is going to land", + "flight_status" + ], + [ + "please tell me what the boarding time is for my plane", + "flight_status" + ], + [ + "what time will my flight reach the destination", + "flight_status" + ], + [ + "can you tell me when my flight is going to board", + "flight_status" + ], + [ + "tell me when my flight is landing", + "flight_status" + ], + [ + "i need to know when my flight is landing", + "flight_status" + ], + [ + "so when is my flight landing", + "flight_status" + ], + [ + "please flip a coin and tell me what side it lands on", + "flip_coin" + ], + [ + "will you flip a coin so i can make a choice", + "flip_coin" + ], + [ + "flip a two sided coin and tell me what it lands on", + "flip_coin" + ], + [ + "i need you to flip a coin so i can decide", + "flip_coin" + ], + [ + "begin the coin flip now", + "flip_coin" + ], + [ + "i want you to help me make a decision by flipping a coin", + "flip_coin" + ], + [ + "please flip a coin, and i call heads", + "flip_coin" + ], + [ + "flip a coin and let me know if it lands on heads or tails, please", + "flip_coin" + ], + [ + "i want you to flip a fair sided coin", + "flip_coin" + ], + [ + "are you able to flip a two sided coin", + "flip_coin" + ], + [ + "i need you to flip a coin so i can make a choice", + "flip_coin" + ], + [ + "can you please flip a coin, i call tails", + "flip_coin" + ], + [ + "flip a coin, i call tails", + "flip_coin" + ], + [ + "heads or tails i choose tails", + "flip_coin" + ], + [ + "please tell me if a coin lands on tails", + "flip_coin" + ], + [ + "please tell me if a coin flip lands on heads or tails", + "flip_coin" + ], + [ + "flip a coin heads or tails", + "flip_coin" + ], + [ + "please flip a coin i select tails", + "flip_coin" + ], + [ + "will you flip a coin", + "flip_coin" + ], + [ + "can you get a coin and flip it", + "flip_coin" + ], + [ + "would you flip a coin", + "flip_coin" + ], + [ + "will you get a coin and flip it", + "flip_coin" + ], + [ + "flip a coin for me, with you calling heads", + "flip_coin" + ], + [ + "i'd like you to throw a virtual coin for me", + "flip_coin" + ], + [ + "can i get a random heads or tails", + "flip_coin" + ], + [ + "can you do a coin flip", + "flip_coin" + ], + [ + "i want a coin flip and i'll take tails", + "flip_coin" + ], + [ + "i call tails for a coin flip you need to do right now", + "flip_coin" + ], + [ + "do a virtual coin flip and tell me if i win as tails", + "flip_coin" + ], + [ + "randomly pick between heads or tails and tell me if tails wins", + "flip_coin" + ], + [ + "toss a coin and tell me what it lands on", + "flip_coin" + ], + [ + "choose heads or tails and tell me what you came up with", + "flip_coin" + ], + [ + "flip a fair coin i win if it's tails", + "flip_coin" + ], + [ + "flip a coin for me i call tails", + "flip_coin" + ], + [ + "flip me a coin i'm calling tails", + "flip_coin" + ], + [ + "take a coin and flip it and i call tails", + "flip_coin" + ], + [ + "hey, flip me a coin i call tails", + "flip_coin" + ], + [ + "flip a coin one time", + "flip_coin" + ], + [ + "flip that dime", + "flip_coin" + ], + [ + "i need to do a fair coin flip", + "flip_coin" + ], + [ + "flip that coin once; it must be tails", + "flip_coin" + ], + [ + "flip a quarter", + "flip_coin" + ], + [ + "do one coin flip; it will be tails", + "flip_coin" + ], + [ + "flip a coin; i say tails", + "flip_coin" + ], + [ + "how about a coin flip", + "flip_coin" + ], + [ + "let's decide with a coin flip", + "flip_coin" + ], + [ + "can you flip a coin once", + "flip_coin" + ], + [ + "if you flip a coin, i call tails", + "flip_coin" + ], + [ + "let's settle it with a coin flip", + "flip_coin" + ], + [ + "please flip a coin i hope its tails", + "flip_coin" + ], + [ + "i need you to flip a coin once", + "flip_coin" + ], + [ + "flip that coin please", + "flip_coin" + ], + [ + "flip the coin", + "flip_coin" + ], + [ + "flip that coin please, i choose heads", + "flip_coin" + ], + [ + "flip that coin now", + "flip_coin" + ], + [ + "i choose heads, now flip that coin", + "flip_coin" + ], + [ + "go ahead and flip that coin, i am choosing heads here", + "flip_coin" + ], + [ + "flip it please", + "flip_coin" + ], + [ + "i am choosing heads, now please flip that coin", + "flip_coin" + ], + [ + "go ahead and flip a coin", + "flip_coin" + ], + [ + "go ahead and flip that coin, i choose heads", + "flip_coin" + ], + [ + "can you flip a coin and tell me the result", + "flip_coin" + ], + [ + "i will determine it with a coin flip", + "flip_coin" + ], + [ + "i want you to flip a coin", + "flip_coin" + ], + [ + "flip a coin and tell me if its heads or tails", + "flip_coin" + ], + [ + "flip a coin if you will", + "flip_coin" + ], + [ + "can you do a coin flip for me", + "flip_coin" + ], + [ + "i need to have a coin flipped", + "flip_coin" + ], + [ + "i would like a coin flip", + "flip_coin" + ], + [ + "i ned you to flip a coin", + "flip_coin" + ], + [ + "i want a coin flipped", + "flip_coin" + ], + [ + "flip a coin for me", + "flip_coin" + ], + [ + "i want a coin flip", + "flip_coin" + ], + [ + "i require a coin flip", + "flip_coin" + ], + [ + "lets go with heads or tails", + "flip_coin" + ], + [ + "lets flip for it", + "flip_coin" + ], + [ + "toss a coin i will take heads", + "flip_coin" + ], + [ + "lets do a coin toss, i call tails", + "flip_coin" + ], + [ + "filp a coin, i call heads", + "flip_coin" + ], + [ + "spin a coin", + "flip_coin" + ], + [ + "lets do a coin toss", + "flip_coin" + ], + [ + "toss a coin i will take tails", + "flip_coin" + ], + [ + "do a coin flip", + "flip_coin" + ], + [ + "do heads or tails", + "flip_coin" + ], + [ + "coin flip", + "flip_coin" + ], + [ + "heads or tails please", + "flip_coin" + ], + [ + "ai, heads or tails", + "flip_coin" + ], + [ + "ai, coin flip", + "flip_coin" + ], + [ + "ai, please flip a coin", + "flip_coin" + ], + [ + "ai, give me the results of a coin flip", + "flip_coin" + ], + [ + "flip a coin for me ai", + "flip_coin" + ], + [ + "flip a coin, you win with heads", + "flip_coin" + ], + [ + "can you flip a coin, i will take tails", + "flip_coin" + ], + [ + "go ahead and flip a coin, i am calling tails", + "flip_coin" + ], + [ + "please flip a coin for me, tails i win", + "flip_coin" + ], + [ + "flip a coin, i have tails", + "flip_coin" + ], + [ + "heads or tails", + "flip_coin" + ], + [ + "perform a coin flip", + "flip_coin" + ], + [ + "do a coin toss", + "flip_coin" + ], + [ + "help me flip a coin", + "flip_coin" + ], + [ + "please change the name you refer to me by", + "change_user_name" + ], + [ + "how do i change the name you use to address me", + "change_user_name" + ], + [ + "is there a way i can change the name you use to address me", + "change_user_name" + ], + [ + "i need to change my name to something else for you to call me", + "change_user_name" + ], + [ + "can i have you call me something else", + "change_user_name" + ], + [ + "i go by brad", + "change_user_name" + ], + [ + "usually people refer to me as brad", + "change_user_name" + ], + [ + "i prefer to go by brad", + "change_user_name" + ], + [ + "people call me brad", + "change_user_name" + ], + [ + "my name is brad", + "change_user_name" + ], + [ + "call me carrie", + "change_user_name" + ], + [ + "my names carrie", + "change_user_name" + ], + [ + "my friends call me carrie", + "change_user_name" + ], + [ + "you can call me carrie", + "change_user_name" + ], + [ + "call me dad", + "change_user_name" + ], + [ + "you can call me stevie", + "change_user_name" + ], + [ + "you can call me sarah", + "change_user_name" + ], + [ + "you can call me james", + "change_user_name" + ], + [ + "call me jake", + "change_user_name" + ], + [ + "call me stevie", + "change_user_name" + ], + [ + "you can call me john", + "change_user_name" + ], + [ + "my name is steve", + "change_user_name" + ], + [ + "my name is john", + "change_user_name" + ], + [ + "please call me jim", + "change_user_name" + ], + [ + "i go by the name jim", + "change_user_name" + ], + [ + "feel free to call me jim", + "change_user_name" + ], + [ + "you can just speak to me as jim", + "change_user_name" + ], + [ + "my name is jim", + "change_user_name" + ], + [ + "please start calling me mandy", + "change_user_name" + ], + [ + "the name i go by is sandy", + "change_user_name" + ], + [ + "i like to be called mikey", + "change_user_name" + ], + [ + "please refer to me as sharon", + "change_user_name" + ], + [ + "john is my name", + "change_user_name" + ], + [ + "the name you should call me is janet", + "change_user_name" + ], + [ + "people call me gary", + "change_user_name" + ], + [ + "you can address me as lizzie", + "change_user_name" + ], + [ + "i want to be called mollie", + "change_user_name" + ], + [ + "you can call me cindy", + "change_user_name" + ], + [ + "call me ishmael", + "change_user_name" + ], + [ + "can you just start calling me sir", + "change_user_name" + ], + [ + "i'm called tim", + "change_user_name" + ], + [ + "my friends call me sam", + "change_user_name" + ], + [ + "i'd like you to address me as lord snugglebottom", + "change_user_name" + ], + [ + "i go by ted", + "change_user_name" + ], + [ + "they call me john", + "change_user_name" + ], + [ + "would you just like to call me paul", + "change_user_name" + ], + [ + "please call me johnny", + "change_user_name" + ], + [ + "just call me sam", + "change_user_name" + ], + [ + "i want you to call me this new name", + "change_user_name" + ], + [ + "talk to me by calling me this name from now on", + "change_user_name" + ], + [ + "the new name that i want you to call me is this one", + "change_user_name" + ], + [ + "please call me by this new name", + "change_user_name" + ], + [ + "please change my name", + "change_user_name" + ], + [ + "you can call me brandon", + "change_user_name" + ], + [ + "you can call me jeff", + "change_user_name" + ], + [ + "you can call me michael", + "change_user_name" + ], + [ + "you can call me steve", + "change_user_name" + ], + [ + "you can call me alan", + "change_user_name" + ], + [ + "call me mary", + "change_user_name" + ], + [ + "i need you to call me mary", + "change_user_name" + ], + [ + "would you call me mary", + "change_user_name" + ], + [ + "i want to be called by mary", + "change_user_name" + ], + [ + "i would like you to call me mary", + "change_user_name" + ], + [ + "can i change what you call me", + "change_user_name" + ], + [ + "i'd like you to call me something different", + "change_user_name" + ], + [ + "change the name that you call me", + "change_user_name" + ], + [ + "call me frank", + "change_user_name" + ], + [ + "you can refer to me as frank", + "change_user_name" + ], + [ + "i want you to call me something else", + "change_user_name" + ], + [ + "my name's frank", + "change_user_name" + ], + [ + "i'd like to be called frank", + "change_user_name" + ], + [ + "can i change my nickname", + "change_user_name" + ], + [ + "i am john", + "change_user_name" + ], + [ + "hi, i'm john", + "change_user_name" + ], + [ + "please call me frank from now on", + "change_user_name" + ], + [ + "can you call me bobby instead of bob", + "change_user_name" + ], + [ + "my name's bob", + "change_user_name" + ], + [ + "please call me bob", + "change_user_name" + ], + [ + "when you talk to me, use bob", + "change_user_name" + ], + [ + "please stop calling me dave, my name's bob", + "change_user_name" + ], + [ + "my name is stu, not sue!", + "change_user_name" + ], + [ + "i want you to start referring to me as lucky", + "change_user_name" + ], + [ + "i'd like you to refer to me as bob", + "change_user_name" + ], + [ + "i am david", + "change_user_name" + ], + [ + "change my name to master", + "change_user_name" + ], + [ + "you can call me al", + "change_user_name" + ], + [ + "just call me al", + "change_user_name" + ], + [ + "i go by stefan", + "change_user_name" + ], + [ + "just call me dennis", + "change_user_name" + ], + [ + "please change my name to loverboy", + "change_user_name" + ], + [ + "i want you to call me lord", + "change_user_name" + ], + [ + "i'd rather have you call be ray ray", + "change_user_name" + ], + [ + "they call me josh", + "change_user_name" + ], + [ + "i am josh", + "change_user_name" + ], + [ + "i want you to call me pam", + "change_user_name" + ], + [ + "i need to change my username", + "change_user_name" + ], + [ + "address me by the name stan", + "change_user_name" + ], + [ + "only call me dan", + "change_user_name" + ], + [ + "please only call me joe", + "change_user_name" + ], + [ + "can you call me something else", + "change_user_name" + ], + [ + "where is your place of origin", + "where_are_you_from" + ], + [ + "what is your place of origin", + "where_are_you_from" + ], + [ + "what is your country of origin", + "where_are_you_from" + ], + [ + "where is your country of origin", + "where_are_you_from" + ], + [ + "what is your nationality", + "where_are_you_from" + ], + [ + "tell me where you're made", + "where_are_you_from" + ], + [ + "tell me how you're made", + "where_are_you_from" + ], + [ + "what town were you born in", + "where_are_you_from" + ], + [ + "what country were you born in", + "where_are_you_from" + ], + [ + "where's your birthplace", + "where_are_you_from" + ], + [ + "you were born where", + "where_are_you_from" + ], + [ + "your birthplace is where", + "where_are_you_from" + ], + [ + "where are your origins located", + "where_are_you_from" + ], + [ + "where did you originate from", + "where_are_you_from" + ], + [ + "where is your home located", + "where_are_you_from" + ], + [ + "where do you trace your roots", + "where_are_you_from" + ], + [ + "where do you hail from", + "where_are_you_from" + ], + [ + "i'd like to know where you're from", + "where_are_you_from" + ], + [ + "where are your origins found", + "where_are_you_from" + ], + [ + "can you tell me where you are from", + "where_are_you_from" + ], + [ + "where is the location of your creation", + "where_are_you_from" + ], + [ + "can you tell me where you were created", + "where_are_you_from" + ], + [ + "could you tell me where did you originate", + "where_are_you_from" + ], + [ + "would you care to let me know where you were made", + "where_are_you_from" + ], + [ + "where is the location that you were made", + "where_are_you_from" + ], + [ + "in which area were you made", + "where_are_you_from" + ], + [ + "what country were you made", + "where_are_you_from" + ], + [ + "where was it you were made", + "where_are_you_from" + ], + [ + "where did they make you", + "where_are_you_from" + ], + [ + "where were you created", + "where_are_you_from" + ], + [ + "what place were you created in", + "where_are_you_from" + ], + [ + "in which place were you made", + "where_are_you_from" + ], + [ + "what's your country of origin", + "where_are_you_from" + ], + [ + "what was your place of creation", + "where_are_you_from" + ], + [ + "what location did you originate at", + "where_are_you_from" + ], + [ + "what's your place of manufacture", + "where_are_you_from" + ], + [ + "from whence do you hail", + "where_are_you_from" + ], + [ + "where do you come from", + "where_are_you_from" + ], + [ + "what is your point of origin", + "where_are_you_from" + ], + [ + "what's your nationality", + "where_are_you_from" + ], + [ + "where were you manufactured", + "where_are_you_from" + ], + [ + "where were your born", + "where_are_you_from" + ], + [ + "what country do you consider yourself a citizen of", + "where_are_you_from" + ], + [ + "where did you last live", + "where_are_you_from" + ], + [ + "what's your birthplace", + "where_are_you_from" + ], + [ + "where did you used to live", + "where_are_you_from" + ], + [ + "what area did you grow up in", + "where_are_you_from" + ], + [ + "what area were you born in", + "where_are_you_from" + ], + [ + "what state were you born in", + "where_are_you_from" + ], + [ + "were you born here", + "where_are_you_from" + ], + [ + "are you from the uk", + "where_are_you_from" + ], + [ + "are you from the us", + "where_are_you_from" + ], + [ + "are you from europe", + "where_are_you_from" + ], + [ + "where you from the usa", + "where_are_you_from" + ], + [ + "where is your family from", + "where_are_you_from" + ], + [ + "where are you originally from", + "where_are_you_from" + ], + [ + "where was your home before here", + "where_are_you_from" + ], + [ + "where did you live previously", + "where_are_you_from" + ], + [ + "where did you live before here", + "where_are_you_from" + ], + [ + "where did you live prior to living here", + "where_are_you_from" + ], + [ + "what is the area that you came from", + "where_are_you_from" + ], + [ + "what location did you live at before", + "where_are_you_from" + ], + [ + "where is your original location", + "where_are_you_from" + ], + [ + "where were you before moving here", + "where_are_you_from" + ], + [ + "do you know where you were born", + "where_are_you_from" + ], + [ + "can you tell me where you were born", + "where_are_you_from" + ], + [ + "where did you come from, originally", + "where_are_you_from" + ], + [ + "what was the location of your birth", + "where_are_you_from" + ], + [ + "what is the name of your birthplace", + "where_are_you_from" + ], + [ + "what is your native home", + "where_are_you_from" + ], + [ + "can you tell me your place of origin", + "where_are_you_from" + ], + [ + "where is your home", + "where_are_you_from" + ], + [ + "whereabouts are you from", + "where_are_you_from" + ], + [ + "did you grow up here", + "where_are_you_from" + ], + [ + "where were you given birth", + "where_are_you_from" + ], + [ + "where are you from", + "where_are_you_from" + ], + [ + "where did your mom have you", + "where_are_you_from" + ], + [ + "what city were you born in", + "where_are_you_from" + ], + [ + "what's your city of origin", + "where_are_you_from" + ], + [ + "where are your roots", + "where_are_you_from" + ], + [ + "when you were a child, where did you live", + "where_are_you_from" + ], + [ + "if you were to call a place your beginning, your home start, where would that be", + "where_are_you_from" + ], + [ + "so where did you live when you were a baby", + "where_are_you_from" + ], + [ + "what place do you call home", + "where_are_you_from" + ], + [ + "up until now, what place was your home base", + "where_are_you_from" + ], + [ + "what location were you born in", + "where_are_you_from" + ], + [ + "your birth occurred where", + "where_are_you_from" + ], + [ + "where is your birth place", + "where_are_you_from" + ], + [ + "you came from where", + "where_are_you_from" + ], + [ + "where were you made", + "where_are_you_from" + ], + [ + "where would you say you were born", + "where_are_you_from" + ], + [ + "tell me where you come from", + "where_are_you_from" + ], + [ + "tell me where you were born", + "where_are_you_from" + ], + [ + "where were you born", + "where_are_you_from" + ], + [ + "what's your hometown", + "where_are_you_from" + ], + [ + "where's home for you", + "where_are_you_from" + ], + [ + "in what state were you born", + "where_are_you_from" + ], + [ + "were you born in a hospital", + "where_are_you_from" + ], + [ + "where did your parents have you", + "where_are_you_from" + ], + [ + "where did your mom give birth", + "where_are_you_from" + ], + [ + "delete fries from shopping list", + "shopping_list_update" + ], + [ + "take off fries from the shopping list", + "shopping_list_update" + ], + [ + "please take away the fries from the shopping list", + "shopping_list_update" + ], + [ + "remove fries from my shopping list", + "shopping_list_update" + ], + [ + "we no longer need fries on the shopping lisr", + "shopping_list_update" + ], + [ + "cross out bananas from my shopping list and put papayas on it, please", + "shopping_list_update" + ], + [ + "i need to delete tomatoes from my shopping list and add onions instead", + "shopping_list_update" + ], + [ + "can you add carrots to my shopping list and delete potatoes", + "shopping_list_update" + ], + [ + "please remove ginger ale from my shopping list and add root beer", + "shopping_list_update" + ], + [ + "go ahead and erase cashews from my list, and add walnuts to it, please", + "shopping_list_update" + ], + [ + "add eggs to my shopping list and remove cheese", + "shopping_list_update" + ], + [ + "add corn to my shopping list and remove wine", + "shopping_list_update" + ], + [ + "add flour to my shopping list if it's not already on it", + "shopping_list_update" + ], + [ + "take bread off my shopping list and add milk", + "shopping_list_update" + ], + [ + "please add sugar to my shopping list if it's not on it", + "shopping_list_update" + ], + [ + "remove wine and add beer to my shopping list", + "shopping_list_update" + ], + [ + "is paprika listed on my shopping list, please add it", + "shopping_list_update" + ], + [ + "is bacon on my shopping list, add if it's not", + "shopping_list_update" + ], + [ + "delete soda from my shopping list and add water to it", + "shopping_list_update" + ], + [ + "do i have pepper my shopping list, if not add it", + "shopping_list_update" + ], + [ + "are bananas on the list, if not can you add them", + "shopping_list_update" + ], + [ + "do i have bananas on my list, if not please put them on the list", + "shopping_list_update" + ], + [ + "are bananas already on the list, if not go ahead and add them", + "shopping_list_update" + ], + [ + "are bananas on my shopping list can you add them if they aren't", + "shopping_list_update" + ], + [ + "do i have bananas on my shopping list, if not please add it", + "shopping_list_update" + ], + [ + "add bread to my list of groceries", + "shopping_list_update" + ], + [ + "add bread to my list of things to buy", + "shopping_list_update" + ], + [ + "put bread on my shopping list", + "shopping_list_update" + ], + [ + "make sure bread gets added to my shopping list", + "shopping_list_update" + ], + [ + "remind me to buy bread next time i go shopping", + "shopping_list_update" + ], + [ + "will you include kleenex on my list for shopping please", + "shopping_list_update" + ], + [ + "make sure walnuts is on my shopping list", + "shopping_list_update" + ], + [ + "put film on my shopping list", + "shopping_list_update" + ], + [ + "add sprite to my shopping list", + "shopping_list_update" + ], + [ + "write apples on my shopping list", + "shopping_list_update" + ], + [ + "add oranges to my to do shopping list", + "shopping_list_update" + ], + [ + "add mountain dew to my list for shopping", + "shopping_list_update" + ], + [ + "add coke to my shopping cart", + "shopping_list_update" + ], + [ + "add apples to my to do shopping list", + "shopping_list_update" + ], + [ + "add pepsi to my shopping bag", + "shopping_list_update" + ], + [ + "i'm out of bananas; add to shopping list", + "shopping_list_update" + ], + [ + "i need for you to remove milk from my shopping list and add bread", + "shopping_list_update" + ], + [ + "on my shopping list, remove bread and add milk", + "shopping_list_update" + ], + [ + "i need for you to get bananas added to my shopping list; i'm out", + "shopping_list_update" + ], + [ + "would you add bananas to my shopping list as i am out", + "shopping_list_update" + ], + [ + "add groceries to my shopping list as i am out", + "shopping_list_update" + ], + [ + "please get milk removed from my shopping list and add bread", + "shopping_list_update" + ], + [ + "would you remove bread from my shopping list and add bread", + "shopping_list_update" + ], + [ + "i want to remove milk from my shopping list and add bread", + "shopping_list_update" + ], + [ + "i am out of trash bags and need them to be added to my shopping list", + "shopping_list_update" + ], + [ + "please add milk on my shopping list, if it is not already on it", + "shopping_list_update" + ], + [ + "do i have milk on my shopping list please add it if it is not", + "shopping_list_update" + ], + [ + "i want you to add milk on my shopping list unless it is already on it", + "shopping_list_update" + ], + [ + "i would like you to add milk if it is not on my shopping list already", + "shopping_list_update" + ], + [ + "is the milk on the shopping list if not, please add", + "shopping_list_update" + ], + [ + "do me a favor and put sharpies on my list for shopping", + "shopping_list_update" + ], + [ + "please put silverware on my list for shopping", + "shopping_list_update" + ], + [ + "may i suggest we put paper towels on my list for shopping", + "shopping_list_update" + ], + [ + "maybe we can put blank cds on my list for shopping", + "shopping_list_update" + ], + [ + "can we put sunscreen on my list for shopping", + "shopping_list_update" + ], + [ + "make sure to put extra paint on the list", + "shopping_list_update" + ], + [ + "x on the shopping list please", + "shopping_list_update" + ], + [ + "can you put carrots on my shopping list", + "shopping_list_update" + ], + [ + "i would like to put carrots on my list for shopping", + "shopping_list_update" + ], + [ + "remove corn from my shopping list", + "shopping_list_update" + ], + [ + "put on my shopping list i need carots", + "shopping_list_update" + ], + [ + "remove chips from my shopping list", + "shopping_list_update" + ], + [ + "take frozen food off my shopping list", + "shopping_list_update" + ], + [ + "i need soda added to my list and carrots removed", + "shopping_list_update" + ], + [ + "i need oranges on my shopping list", + "shopping_list_update" + ], + [ + "take carrots off my list for shopping", + "shopping_list_update" + ], + [ + "my shopping list should have carrots on it", + "shopping_list_update" + ], + [ + "remove carrots from my shopping list and add soda", + "shopping_list_update" + ], + [ + "can you put oranges on my shopping list", + "shopping_list_update" + ], + [ + "put carrots on my shopping list", + "shopping_list_update" + ], + [ + "put soda on the shopping list and add carrots", + "shopping_list_update" + ], + [ + "can you take frozen food of my shopping list", + "shopping_list_update" + ], + [ + "can you take carrots off my shopping list and add soda", + "shopping_list_update" + ], + [ + "please make sure oranges are on my shopping list", + "shopping_list_update" + ], + [ + "add soda on my shopping list and remove carrots", + "shopping_list_update" + ], + [ + "get rid of butter on my shopping list", + "shopping_list_update" + ], + [ + "delete ice cream from my shopping list", + "shopping_list_update" + ], + [ + "take fresh carrots off my shopping list", + "shopping_list_update" + ], + [ + "i want you to remove shampoo from my shopping list", + "shopping_list_update" + ], + [ + "update my shopping list, delete canned olives", + "shopping_list_update" + ], + [ + "can you put detergent on my shopping list cause i'm all out", + "shopping_list_update" + ], + [ + "put milk on my shopping list cause i'm out of it", + "shopping_list_update" + ], + [ + "put spaghetti on my shopping list cause i'm out of it please", + "shopping_list_update" + ], + [ + "put rice and pudding on my shopping list cause i need them", + "shopping_list_update" + ], + [ + "can you please put toilet paper on the shopping list i'm out of it", + "shopping_list_update" + ], + [ + "i need to add cherrios to the grocery list", + "shopping_list_update" + ], + [ + "i'm low on cherrios can you add that to the shopping list", + "shopping_list_update" + ], + [ + "i ran out of cherrios so add that to the list", + "shopping_list_update" + ], + [ + "add cherrios to the shopping list", + "shopping_list_update" + ], + [ + "can you add cherrios to my shopping list", + "shopping_list_update" + ], + [ + "for the shopping list, add ham as well", + "shopping_list_update" + ], + [ + "are eggs on my list, if not add them", + "shopping_list_update" + ], + [ + "i need you to add creamer to my shopping list", + "shopping_list_update" + ], + [ + "please put milk on my list i just used the last of it", + "shopping_list_update" + ], + [ + "i no longer need milk, so forget that", + "shopping_list_update" + ], + [ + "what things can you help me with exactly", + "what_can_i_ask_you" + ], + [ + "what are the things you can help me with", + "what_can_i_ask_you" + ], + [ + "what exactly can you help me with", + "what_can_i_ask_you" + ], + [ + "what can you help me with exactly", + "what_can_i_ask_you" + ], + [ + "what can you help me with", + "what_can_i_ask_you" + ], + [ + "what kinds of questions can you answer", + "what_can_i_ask_you" + ], + [ + "tell me the subject areas you are familiar with", + "what_can_i_ask_you" + ], + [ + "what sorts of subjects are you well versed in", + "what_can_i_ask_you" + ], + [ + "what are the subject areas you are knowledgable in", + "what_can_i_ask_you" + ], + [ + "what kinds of things are you knowledgable about", + "what_can_i_ask_you" + ], + [ + "tell me the types of things i can ask you about", + "what_can_i_ask_you" + ], + [ + "what sorts of things can i ask you about", + "what_can_i_ask_you" + ], + [ + "tell me what you are capable of answering", + "what_can_i_ask_you" + ], + [ + "what sorts of queries should i give you", + "what_can_i_ask_you" + ], + [ + "what sorts of subjects do you know about", + "what_can_i_ask_you" + ], + [ + "what type of questions may i ask you", + "what_can_i_ask_you" + ], + [ + "which types of questions may i ask you", + "what_can_i_ask_you" + ], + [ + "what kind of questions may i ask you", + "what_can_i_ask_you" + ], + [ + "which types of questions can i ask you", + "what_can_i_ask_you" + ], + [ + "what kind of questions can i ask you", + "what_can_i_ask_you" + ], + [ + "what topics can i ask you about", + "what_can_i_ask_you" + ], + [ + "what information can i ask you", + "what_can_i_ask_you" + ], + [ + "what subjects do you know something about", + "what_can_i_ask_you" + ], + [ + "what kinds of questions can i ask you", + "what_can_i_ask_you" + ], + [ + "what types of things do you know", + "what_can_i_ask_you" + ], + [ + "what kind of questions do you accept", + "what_can_i_ask_you" + ], + [ + "what questions are permissible", + "what_can_i_ask_you" + ], + [ + "what can i ask you", + "what_can_i_ask_you" + ], + [ + "what are my list of commands", + "what_can_i_ask_you" + ], + [ + "what are the kinds of things you can help me with", + "what_can_i_ask_you" + ], + [ + "what kind of questions are you good at answering", + "what_can_i_ask_you" + ], + [ + "can i ask you about anything", + "what_can_i_ask_you" + ], + [ + "can you help me with anything i need", + "what_can_i_ask_you" + ], + [ + "what all can you do", + "what_can_i_ask_you" + ], + [ + "what things do you know about", + "what_can_i_ask_you" + ], + [ + "what are you able to help me with", + "what_can_i_ask_you" + ], + [ + "what types of things are you able to do", + "what_can_i_ask_you" + ], + [ + "what can you answer for me", + "what_can_i_ask_you" + ], + [ + "is there anything i can't ask you", + "what_can_i_ask_you" + ], + [ + "what questions do you respond to", + "what_can_i_ask_you" + ], + [ + "what should i ask you about", + "what_can_i_ask_you" + ], + [ + "what are you able to answer", + "what_can_i_ask_you" + ], + [ + "what's the sort of thing i should ask", + "what_can_i_ask_you" + ], + [ + "what kind of things can you answer", + "what_can_i_ask_you" + ], + [ + "what things can you do", + "what_can_i_ask_you" + ], + [ + "what can you do", + "what_can_i_ask_you" + ], + [ + "what types of questions do you have a response for", + "what_can_i_ask_you" + ], + [ + "what kinds of questions can you respond to", + "what_can_i_ask_you" + ], + [ + "what do you have answers for", + "what_can_i_ask_you" + ], + [ + "what questions am i allowed to ask", + "what_can_i_ask_you" + ], + [ + "what kinds of things can you do", + "what_can_i_ask_you" + ], + [ + "ai can you tell me what things i may ask", + "what_can_i_ask_you" + ], + [ + "what can i ask you, ai", + "what_can_i_ask_you" + ], + [ + "what am i able to ask the ai", + "what_can_i_ask_you" + ], + [ + "ai, tell me what things i should ask of you", + "what_can_i_ask_you" + ], + [ + "what sorts of things am i able to ask of you ai", + "what_can_i_ask_you" + ], + [ + "how can i get you to help me", + "what_can_i_ask_you" + ], + [ + "what types of things can i ask you", + "what_can_i_ask_you" + ], + [ + "what sort of things can you help me with", + "what_can_i_ask_you" + ], + [ + "what are you able to do", + "what_can_i_ask_you" + ], + [ + "what can i use you to help me with", + "what_can_i_ask_you" + ], + [ + "how can i use you", + "what_can_i_ask_you" + ], + [ + "what subjects do you know", + "what_can_i_ask_you" + ], + [ + "what subjects are you familiar with", + "what_can_i_ask_you" + ], + [ + "what subjects do you know about", + "what_can_i_ask_you" + ], + [ + "what types of subjects do you know", + "what_can_i_ask_you" + ], + [ + "what are you familiar with", + "what_can_i_ask_you" + ], + [ + "what do you know", + "what_can_i_ask_you" + ], + [ + "what subjects are you versed in", + "what_can_i_ask_you" + ], + [ + "can you tell me the subjects you know best", + "what_can_i_ask_you" + ], + [ + "tell me the subjects you're aware of", + "what_can_i_ask_you" + ], + [ + "let me know what subjects you comprehend well", + "what_can_i_ask_you" + ], + [ + "what are the sorts of things i can ask you about", + "what_can_i_ask_you" + ], + [ + "what questions are you programmed to answer", + "what_can_i_ask_you" + ], + [ + "what kinds of things can i ask you", + "what_can_i_ask_you" + ], + [ + "what kinds of questions can i ask of you", + "what_can_i_ask_you" + ], + [ + "are there certain types of questions i can ask you", + "what_can_i_ask_you" + ], + [ + "what kinds of things would you be able to help me with", + "what_can_i_ask_you" + ], + [ + "i need to know what kind of things you can help with", + "what_can_i_ask_you" + ], + [ + "i want to know what sort of things you can assist me with", + "what_can_i_ask_you" + ], + [ + "what sort of things are you able to help with", + "what_can_i_ask_you" + ], + [ + "let me know what you can assist me with", + "what_can_i_ask_you" + ], + [ + "how can i benefit from using you", + "what_can_i_ask_you" + ], + [ + "how can you assist me", + "what_can_i_ask_you" + ], + [ + "i wanna know the types of subjects are you familiar with", + "what_can_i_ask_you" + ], + [ + "i wish to know the types of subjects are you familiar with", + "what_can_i_ask_you" + ], + [ + "please inform me of the types of subjects are you familiar with", + "what_can_i_ask_you" + ], + [ + "what can you be asked about", + "what_can_i_ask_you" + ], + [ + "tell me the types of subjects are you familiar with", + "what_can_i_ask_you" + ], + [ + "i would like to know the types of subjects are you familiar with", + "what_can_i_ask_you" + ], + [ + "what can i ask you all about", + "what_can_i_ask_you" + ], + [ + "are you familiar with any types of subjects", + "what_can_i_ask_you" + ], + [ + "what skills do you have", + "what_can_i_ask_you" + ], + [ + "what are your capabilities", + "what_can_i_ask_you" + ], + [ + "what topics are you versed in", + "what_can_i_ask_you" + ], + [ + "what sort of stuff do you know", + "what_can_i_ask_you" + ], + [ + "what subjects do you know well", + "what_can_i_ask_you" + ], + [ + "what can i ask you to accomplish", + "what_can_i_ask_you" + ], + [ + "what tasks can you complete for me", + "what_can_i_ask_you" + ], + [ + "what type of questions are you partial to that i can ask you", + "what_can_i_ask_you" + ], + [ + "i don't know the answer", + "maybe" + ], + [ + "i'm unsure", + "maybe" + ], + [ + "shit if i know", + "maybe" + ], + [ + "no idea", + "maybe" + ], + [ + "hell if i know", + "maybe" + ], + [ + "either or should work", + "maybe" + ], + [ + "i dont know", + "maybe" + ], + [ + "both would work", + "maybe" + ], + [ + "it could be one or the other", + "maybe" + ], + [ + "i dont have an answer for that", + "maybe" + ], + [ + "not a clue", + "maybe" + ], + [ + "who knows", + "maybe" + ], + [ + "it could be either", + "maybe" + ], + [ + "sorry, i do not know", + "maybe" + ], + [ + "i'm unsure of the proper answer", + "maybe" + ], + [ + "i do not know that", + "maybe" + ], + [ + "maybe one, maybe the other", + "maybe" + ], + [ + "maybe, maybe not", + "maybe" + ], + [ + "it might be either one", + "maybe" + ], + [ + "perhaps either of them", + "maybe" + ], + [ + "i don't know how to answer to that", + "maybe" + ], + [ + "maybe either", + "maybe" + ], + [ + "i dunno", + "maybe" + ], + [ + "maybe yes, maybe no", + "maybe" + ], + [ + "might be true, might be false", + "maybe" + ], + [ + "possibly", + "maybe" + ], + [ + "it depends", + "maybe" + ], + [ + "i'm not sure what the answer is", + "maybe" + ], + [ + "i will know later", + "maybe" + ], + [ + "maybe", + "maybe" + ], + [ + "one or the other, or both", + "maybe" + ], + [ + "no clue", + "maybe" + ], + [ + "i am not to sure about that", + "maybe" + ], + [ + "either one would work", + "maybe" + ], + [ + "i really don't know", + "maybe" + ], + [ + "i am not confident on that", + "maybe" + ], + [ + "that i don't know", + "maybe" + ], + [ + "both maybe", + "maybe" + ], + [ + "i think it could be both", + "maybe" + ], + [ + "i don't know for sure", + "maybe" + ], + [ + "cant say", + "maybe" + ], + [ + "im not certain", + "maybe" + ], + [ + "im not sure", + "maybe" + ], + [ + "really dont know", + "maybe" + ], + [ + "i'm unsure of the answer", + "maybe" + ], + [ + "it could be possible", + "maybe" + ], + [ + "i can't answer yes or no right now", + "maybe" + ], + [ + "i can't answer that", + "maybe" + ], + [ + "i don't know the answer to that", + "maybe" + ], + [ + "i'm not sure", + "maybe" + ], + [ + "i can't decide", + "maybe" + ], + [ + "i can't tell", + "maybe" + ], + [ + "i'll have to think about it", + "maybe" + ], + [ + "not sure if that's a yes or a no", + "maybe" + ], + [ + "not quite sure how to respond", + "maybe" + ], + [ + "i'm torn on how to answer", + "maybe" + ], + [ + "not sure, maybe", + "maybe" + ], + [ + "that could maybe be it", + "maybe" + ], + [ + "i have no earthly idea at all", + "maybe" + ], + [ + "it may be either one", + "maybe" + ], + [ + "i don't have that information", + "maybe" + ], + [ + "i can't make up my mind", + "maybe" + ], + [ + "it's either of them", + "maybe" + ], + [ + "i don't have the answer", + "maybe" + ], + [ + "sorry no idea", + "maybe" + ], + [ + "it could be that one or the other one", + "maybe" + ], + [ + "i'm not sure which one because it could be either of them", + "maybe" + ], + [ + "i'm drawing a blank", + "maybe" + ], + [ + "i have no knowledge about it", + "maybe" + ], + [ + "no idea, sorry", + "maybe" + ], + [ + "i'm not sure which it is", + "maybe" + ], + [ + "i'm really not sure", + "maybe" + ], + [ + "i'm uncertain", + "maybe" + ], + [ + "i'm unaware of that", + "maybe" + ], + [ + "i have no knowledge of that", + "maybe" + ], + [ + "i am thinking it is either", + "maybe" + ], + [ + "hmmm, either could be a choice", + "maybe" + ], + [ + "i'm sure it could be either", + "maybe" + ], + [ + "well, i guess maybe", + "maybe" + ], + [ + "maybe is my answer", + "maybe" + ], + [ + "i know it could be either one", + "maybe" + ], + [ + "maybe is what i am going to answer", + "maybe" + ], + [ + "hmm, either", + "maybe" + ], + [ + "i'm pretty sure it could be either", + "maybe" + ], + [ + "i have no clue", + "maybe" + ], + [ + "it might be either", + "maybe" + ], + [ + "i don't know anything about that", + "maybe" + ], + [ + "it's possible that it could be either", + "maybe" + ], + [ + "i don't have a clue", + "maybe" + ], + [ + "it could be either, i think", + "maybe" + ], + [ + "i think it could be either one", + "maybe" + ], + [ + "i don't really know", + "maybe" + ], + [ + "i'm not sure of that", + "maybe" + ], + [ + "that's a possibility", + "maybe" + ], + [ + "how is the weather today", + "maybe" + ], + [ + "i haven't a clue", + "maybe" + ], + [ + "i haven't the foggiest", + "maybe" + ], + [ + "that answer's above my pay scale", + "maybe" + ], + [ + "i really don't have a clue", + "maybe" + ], + [ + "i have no idea", + "maybe" + ], + [ + "how do i change a car's oil", + "oil_change_how" + ], + [ + "can you find instructions on how to change oil in a car", + "oil_change_how" + ], + [ + "what do i need to change my oil", + "oil_change_how" + ], + [ + "how do i change the oil in a car", + "oil_change_how" + ], + [ + "how do i change the oil in my passat", + "oil_change_how" + ], + [ + "please tell me how to change the oil in my car", + "oil_change_how" + ], + [ + "tell me how to change the oil in 2014 odyssey", + "oil_change_how" + ], + [ + "find instructions for how to change the oil in a 2015 passat", + "oil_change_how" + ], + [ + "give me instructions for changing the oil in a 2015 passat", + "oil_change_how" + ], + [ + "do i need to go under the car to change oil", + "oil_change_how" + ], + [ + "what way can i change oil at home", + "oil_change_how" + ], + [ + "how do i switch out my oil", + "oil_change_how" + ], + [ + "what is the way to change motor oil", + "oil_change_how" + ], + [ + "i need step by step instructions on how to change the oil in my car", + "oil_change_how" + ], + [ + "what kind of oil do i need to change the oil in my car", + "oil_change_how" + ], + [ + "give me instructions on how to change the oil in my car", + "oil_change_how" + ], + [ + "can you tell me the steps to change the oil in my car", + "oil_change_how" + ], + [ + "is it easy to change the oil in my car", + "oil_change_how" + ], + [ + "how do i change the oil in my car", + "oil_change_how" + ], + [ + "can you tell me how to change the oil in my car", + "oil_change_how" + ], + [ + "do i need any tools to change the oil in my car", + "oil_change_how" + ], + [ + "what do i need to change the oil in my car", + "oil_change_how" + ], + [ + "please explain the steps to change oil", + "oil_change_how" + ], + [ + "i want to change the oil in my car", + "oil_change_how" + ], + [ + "do you know how to change car oil", + "oil_change_how" + ], + [ + "can you show me how to change the oil for my car", + "oil_change_how" + ], + [ + "search for how to change my oil", + "oil_change_how" + ], + [ + "i need to know how to change my oil", + "oil_change_how" + ], + [ + "find instructions on how to change my oil", + "oil_change_how" + ], + [ + "show me how to change my oil", + "oil_change_how" + ], + [ + "what oil should i use and how do i change it", + "oil_change_how" + ], + [ + "how do i change my oil with the correct type", + "oil_change_how" + ], + [ + "what oil do i need and how is it changed", + "oil_change_how" + ], + [ + "how do i change my oil and choose the right oil", + "oil_change_how" + ], + [ + "how do i choose the correct oil and how do i change it", + "oil_change_how" + ], + [ + "teach me how to change my oil", + "oil_change_how" + ], + [ + "i want a lesson on changing my oil", + "oil_change_how" + ], + [ + "give me instructions on how to change my oil", + "oil_change_how" + ], + [ + "i would like to know how to perform an oil change", + "oil_change_how" + ], + [ + "i intend to learn how to change oil", + "oil_change_how" + ], + [ + "i intend to learn how to change oil in my car", + "oil_change_how" + ], + [ + "i want manual on how to change oil", + "oil_change_how" + ], + [ + "give me manual on how to change oil", + "oil_change_how" + ], + [ + "i want to learn the process of changing oil", + "oil_change_how" + ], + [ + "i want to learn to change oil", + "oil_change_how" + ], + [ + "what is the way i can change my oil", + "oil_change_how" + ], + [ + "i want to practive changing oil", + "oil_change_how" + ], + [ + "get me instruction to change oil", + "oil_change_how" + ], + [ + "give me instruction mannual on how to change oil", + "oil_change_how" + ], + [ + "what kind of oil does my car take and how do i do a change", + "oil_change_how" + ], + [ + "can you assist with an oil change, and what type of oil do i get", + "oil_change_how" + ], + [ + "i want to change my oil if you can tell me what to do, and what kind do i get", + "oil_change_how" + ], + [ + "i should use what kind of oil and can you help me change it", + "oil_change_how" + ], + [ + "how do i do an oil change and what type do i use", + "oil_change_how" + ], + [ + "how do i change the oil for my car", + "oil_change_how" + ], + [ + "what do i do to change my car's oil", + "oil_change_how" + ], + [ + "can you give me instructions on how to change the oil for my car", + "oil_change_how" + ], + [ + "can you tell me how to change my car's oil", + "oil_change_how" + ], + [ + "what steps do i take to change the oil for my car", + "oil_change_how" + ], + [ + "i need to know how to change my car's oil", + "oil_change_how" + ], + [ + "tell me the procedure for changing oil in a car", + "oil_change_how" + ], + [ + "what actions do i take to change a car's oil", + "oil_change_how" + ], + [ + "how do i go about changing the oil in my car", + "oil_change_how" + ], + [ + "what are the steps to change the oil in my car", + "oil_change_how" + ], + [ + "what kind of oil do i need to use for my car", + "oil_change_how" + ], + [ + "how can i change my car oil", + "oil_change_how" + ], + [ + "how do i change my oil and what kind do i need", + "oil_change_how" + ], + [ + "how can my oil be changed in my car", + "oil_change_how" + ], + [ + "what kind of oil should i use for my current car", + "oil_change_how" + ], + [ + "how do i change my car oil", + "oil_change_how" + ], + [ + "how can i change my oil for my car", + "oil_change_how" + ], + [ + "how will i change my car's oil", + "oil_change_how" + ], + [ + "what kind of oil do i need to get and use for my car", + "oil_change_how" + ], + [ + "what is needed to change my oil", + "oil_change_how" + ], + [ + "how can i change my oil in my car", + "oil_change_how" + ], + [ + "i need to change my oil, how do i", + "oil_change_how" + ], + [ + "tell me how to change my car's oil, and what type of oil i should buy", + "oil_change_how" + ], + [ + "what kinds of oil can i use in my car, and how to i change the oil", + "oil_change_how" + ], + [ + "i need instructions on how to change my car's oil and what type i should buy", + "oil_change_how" + ], + [ + "i need to change my oil and have no idea how to do it", + "oil_change_how" + ], + [ + "can you tell me how to change my car's oil, and what type i need to buy", + "oil_change_how" + ], + [ + "i don't know how to change my oil or what type i need", + "oil_change_how" + ], + [ + "i'm due for an oil change and need assistance doing it and also need to know what kind of oil the car takes", + "oil_change_how" + ], + [ + "i can't change my oil and don't know what kind i need", + "oil_change_how" + ], + [ + "help me change my oil and what kind do i need", + "oil_change_how" + ], + [ + "how do i change my oil out and what kind should i use", + "oil_change_how" + ], + [ + "can you show me how to change the oil in my car", + "oil_change_how" + ], + [ + "i want to learn how to change the oil in my car", + "oil_change_how" + ], + [ + "what are the steps i need to do to change the oil in my car", + "oil_change_how" + ], + [ + "teach me how to change the oil in my vehicle", + "oil_change_how" + ], + [ + "give me instructions to change my oil", + "oil_change_how" + ], + [ + "steps to change car oil", + "oil_change_how" + ], + [ + "how should i prepare to change my own oil", + "oil_change_how" + ], + [ + "how do you change car oil", + "oil_change_how" + ], + [ + "how easy is it to change your own oil", + "oil_change_how" + ], + [ + "please show me instructions on how to change my oil", + "oil_change_how" + ], + [ + "what do i need in order to change my oil", + "oil_change_how" + ], + [ + "what are the procedures for changing my oil", + "oil_change_how" + ], + [ + "tell me what to do to change the oil in a subaru", + "oil_change_how" + ], + [ + "walk me through changing the oil on a tesla", + "oil_change_how" + ], + [ + "you need to call the melt in lakewood for a table for at 2:00, monday, the first week in march", + "restaurant_reservation" + ], + [ + "hey computer, make a reservation for 2 for my parents at red lobster on wednseday next, 2:00pm if possible", + "restaurant_reservation" + ], + [ + "i think we should reserve dad's regular table friday for 6 people, use his name, make that close to 4:00 pm at the club", + "restaurant_reservation" + ], + [ + "listen i need to get a reservation for , me and teresa at georgetown cafe on tuesday at 7:00 pm", + "restaurant_reservation" + ], + [ + "can you make me a reservation for 4 pm on the 22nd at ruth's", + "restaurant_reservation" + ], + [ + "i need a reservation at 8 on the 22nd of november at ruth's", + "restaurant_reservation" + ], + [ + "can i make a reservation for 6 pm on the 21st at sidetracks", + "restaurant_reservation" + ], + [ + "please reserve me a table at hell's kitchen on may 3rd at 8 pm", + "restaurant_reservation" + ], + [ + "please reserve me a table for 2 pm at maxwell's on the 14th", + "restaurant_reservation" + ], + [ + "can you make a reservation for me at the restaurant", + "restaurant_reservation" + ], + [ + "can you make a reservation at the restaurant for tomorrow", + "restaurant_reservation" + ], + [ + "can you book a table at the restaurant for me and my husband", + "restaurant_reservation" + ], + [ + "can you make a reservation at the restaurant for tonight", + "restaurant_reservation" + ], + [ + "can you get me a table for 6 at mark's at 11am", + "restaurant_reservation" + ], + [ + "can you get me a table for 1 at the vega at 1pm", + "restaurant_reservation" + ], + [ + "can you get a table for 5 at joe's at 5pm", + "restaurant_reservation" + ], + [ + "can you get me a table for 3 at captain d's at 2pm", + "restaurant_reservation" + ], + [ + "can you get me a table for 2 at mexico viejo at 3pm", + "restaurant_reservation" + ], + [ + "can you get me a table for 2 at diablo", + "restaurant_reservation" + ], + [ + "can you get me a table for 5 at johnnys", + "restaurant_reservation" + ], + [ + "can you get me a table for 8 at johnnys", + "restaurant_reservation" + ], + [ + "can you get me a table for 6 at johnnys", + "restaurant_reservation" + ], + [ + "can you get me a table for 4 at steve's", + "restaurant_reservation" + ], + [ + "reserve a table for 3 at outback steakhouse under the name lance at 7:00pm", + "restaurant_reservation" + ], + [ + "reserve a table for 4 at red lobster under the name dave at 7:30pm", + "restaurant_reservation" + ], + [ + "reserve a table for 6 at morton's under the name jaime at 8:30pm", + "restaurant_reservation" + ], + [ + "can you get me a table for 3 at olive garden at 7pm", + "restaurant_reservation" + ], + [ + "book a reservation for 6 at shakey's under the name jason", + "restaurant_reservation" + ], + [ + "reserve a table for 5 at lawry's under the name steve at 8:00pm", + "restaurant_reservation" + ], + [ + "book a reservation for 5 at lawry's under the name chris", + "restaurant_reservation" + ], + [ + "reserve a table for 2 at olive garden under the name jim at 6:00pm", + "restaurant_reservation" + ], + [ + "book a reservation for 4 at outback steakhouse under the name dave", + "restaurant_reservation" + ], + [ + "can you get me a table for 5 at outback steakhouse at 6:30pm", + "restaurant_reservation" + ], + [ + "book a reservation for 3 at red lobster under the name steve", + "restaurant_reservation" + ], + [ + "book a reservation for 2 at olive garden under the name jim", + "restaurant_reservation" + ], + [ + "can you get me a table for 8 at mastro's at 8:30pm", + "restaurant_reservation" + ], + [ + "can you get me a table for 4 at red lobster at 8pm", + "restaurant_reservation" + ], + [ + "can you get me a table for 6 at lawry's at 7:30pm", + "restaurant_reservation" + ], + [ + "is it possible to get a table for 4 at the village inn around 10am", + "restaurant_reservation" + ], + [ + "can you get me a table for 5 at mcdonalds at 5pm", + "restaurant_reservation" + ], + [ + "give me a table for 3 at o'reilly's bar for 7 please", + "restaurant_reservation" + ], + [ + "can i have a table held at the outback steakhouse for johnson at 5", + "restaurant_reservation" + ], + [ + "is it possible to book a room at the taco bell for reavers at 3", + "restaurant_reservation" + ], + [ + "i'd like to set up a reservation for kibble at 4", + "restaurant_reservation" + ], + [ + "can i reserve a table for 2 at the olive garden at 8", + "restaurant_reservation" + ], + [ + "i want to reserve a table at 8 at long john silver's under the name freddie", + "restaurant_reservation" + ], + [ + "i want to have a table for 2 at the broadmore around 6", + "restaurant_reservation" + ], + [ + "i need an 8 o'clock reservation at pizza hut for the last name mercury", + "restaurant_reservation" + ], + [ + "hey, i need to make a reservation for three at umi, six pm on february 30th", + "restaurant_reservation" + ], + [ + "hello, i'd like a reservation for two at the olive garden at six tonight", + "restaurant_reservation" + ], + [ + "can you set me up for a reservation for five at outback steakhouse on february 28th at seven pm", + "restaurant_reservation" + ], + [ + "i need a reservation for one at applebee's, four in the afternoon on march 3rd", + "restaurant_reservation" + ], + [ + "please make a reservation for me: party of two, february 22nd at chili's, two in the afternoon", + "restaurant_reservation" + ], + [ + "i gotta make a reservation for 8 pm at red robin for 3", + "restaurant_reservation" + ], + [ + "can i make a reservation for 8 pm at red robin for 3", + "restaurant_reservation" + ], + [ + "please book a reservation for 8 pm at red robin under the name kevin", + "restaurant_reservation" + ], + [ + "i want you to book a reservation for 8 pm at red robin under the name kevin", + "restaurant_reservation" + ], + [ + "you have to reserve a table for 4 at red robin under the name kevin at 7", + "restaurant_reservation" + ], + [ + "please reserve a table for 4 at red robin under the name kevin at 7", + "restaurant_reservation" + ], + [ + "i need you to reserve a table for 4 at red robin under the name kevin at 7", + "restaurant_reservation" + ], + [ + "reserve a table for 4 at red robin under the name kevin at 7", + "restaurant_reservation" + ], + [ + "i want to make a reservation for 8 pm at red robin for 3", + "restaurant_reservation" + ], + [ + "you must reserve a table for 4 at red robin under the name kevin at 7", + "restaurant_reservation" + ], + [ + "i think i need to make a reservation for 8 pm at red robin for 3", + "restaurant_reservation" + ], + [ + "i need you to book a reservation for 8 pm at red robin under the name kevin", + "restaurant_reservation" + ], + [ + "go ahead and book a reservation for 8 pm at red robin under the name kevin", + "restaurant_reservation" + ], + [ + "i need to make a reservation for 8 pm at red robin for 3", + "restaurant_reservation" + ], + [ + "book a reservation for 8 pm at red robin under the name kevin", + "restaurant_reservation" + ], + [ + "would you please make a reservation for 2 at olive garden for 5 pm today", + "restaurant_reservation" + ], + [ + "i'd like a reservation for 2 at olive garden for 5 pm today", + "restaurant_reservation" + ], + [ + "could you make reservations for 2 at olive garden for 5 pm today", + "restaurant_reservation" + ], + [ + "make a reservation at 5 pm today for 2 at olive garden", + "restaurant_reservation" + ], + [ + "please make a reservation for 2 at olive garden for 5 pm today", + "restaurant_reservation" + ], + [ + "i need you to reserve a table for 6:00 pm for three at devon's seafood", + "restaurant_reservation" + ], + [ + "make a reservation for three at prime rib at 6:30 pm", + "restaurant_reservation" + ], + [ + "i would like a reservation for 6:30 pm at pietro's under the name david jones", + "restaurant_reservation" + ], + [ + "please reserve a table for two at rouge for 7:00 pm", + "restaurant_reservation" + ], + [ + "can you get me a table for two for 8:00 pm at parc", + "restaurant_reservation" + ], + [ + "i would like you to secure a 4:30 pm reservation for five people at morton's steakhouse", + "restaurant_reservation" + ], + [ + "call and make a 5:45 pm reservation for jason rogers, table for four", + "restaurant_reservation" + ], + [ + "i need you to reserve at table for a party of four at devon's for 6:00 pm", + "restaurant_reservation" + ], + [ + "reserve a table for two for 7:30 pm at dibruno's under patrick donoghue", + "restaurant_reservation" + ], + [ + "please make a reservation at ruth's steaks for a party of five at 7:00 pm under jack arnold", + "restaurant_reservation" + ], + [ + "can i make a reservation for 2 at state bird for 7:30, please", + "restaurant_reservation" + ], + [ + "can i make a reservation for 2 at state bird for 8:30, please", + "restaurant_reservation" + ], + [ + "can i make a reservation for 2 at state bird for 6:30, please", + "restaurant_reservation" + ], + [ + "can i make a reservation for 3 at state bird for 8:30, please", + "restaurant_reservation" + ], + [ + "can i make a reservation for 2 at state bird for 8:30", + "restaurant_reservation" + ], + [ + "please make a reservation for us at joy bar for 4 adults", + "restaurant_reservation" + ], + [ + "please make me a reservation for monty's at noon for 55555", + "restaurant_reservation" + ], + [ + "now, i need a reservation for backwoods crossing at seven for 6 people", + "restaurant_reservation" + ], + [ + "make me a reservation for tomorrow at happys for four", + "restaurant_reservation" + ], + [ + "make me a reservation for 5 at coral for 10 pm immediately", + "restaurant_reservation" + ], + [ + "can you reserve a table for 2 at red lobster at 8pm", + "restaurant_reservation" + ], + [ + "schedule me a table for 2 at red lobster at 8", + "restaurant_reservation" + ], + [ + "check reservation availability for 2 at red lobster at 8pm", + "restaurant_reservation" + ], + [ + "make a reservation for 2 at red lobster at 8pm", + "restaurant_reservation" + ], + [ + "reserve a table for 2 at red lobster at 8:00", + "restaurant_reservation" + ], + [ + "reserve a table for four for tonight at 7 at the fatted calf", + "restaurant_reservation" + ], + [ + "make a reservation for tuesday at 7:00 pm at cielo for 2", + "restaurant_reservation" + ], + [ + "savings account balance at chase bank please", + "balance" + ], + [ + "check chase bank for my checking balance", + "balance" + ], + [ + "what is my checking account balance at chase", + "balance" + ], + [ + "i want my checking balance at chase", + "balance" + ], + [ + "what's my savings balance at chase", + "balance" + ], + [ + "do i have enough money in my chime bank account to take ashley to the movies tuesday", + "balance" + ], + [ + "check my visa account and see if i have enough money for dinner tonight", + "balance" + ], + [ + "is tehre enough in my bluebird account for groceries this week", + "balance" + ], + [ + "do i have enough in my sears account to buy a new dishwasher", + "balance" + ], + [ + "is there enough money in my discover account for a new pair of jeans", + "balance" + ], + [ + "what is the total of my bank accounts", + "balance" + ], + [ + "what is in my bank accounts", + "balance" + ], + [ + "what is the balance on my bank accounts", + "balance" + ], + [ + "what is remaining in my bank acccounts", + "balance" + ], + [ + "how much money is left in my bank accounts", + "balance" + ], + [ + "what amount of money is in my bank accounts", + "balance" + ], + [ + "what is the balance of my bank accounts", + "balance" + ], + [ + "what what kind money is available in my bank accounts", + "balance" + ], + [ + "what is the value of my bank accounts", + "balance" + ], + [ + "how much funds do i have in my bank accounts", + "balance" + ], + [ + "what's my checking account balance", + "balance" + ], + [ + "how much do i have in my checking", + "balance" + ], + [ + "what's the balance of my savings", + "balance" + ], + [ + "how much is in savings", + "balance" + ], + [ + "how much money is in my checking account", + "balance" + ], + [ + "what's the amount of money accumulated in my bank accounts", + "balance" + ], + [ + "what's my current bank savings", + "balance" + ], + [ + "how much total cash do i have in the bank", + "balance" + ], + [ + "what's my current checking balance", + "balance" + ], + [ + "can you tell me my current bank accounts balance", + "balance" + ], + [ + "what's the balance of my bank accounts", + "balance" + ], + [ + "what is my current balance on my home equity line of credit", + "balance" + ], + [ + "please find my balance on my chase mastercard", + "balance" + ], + [ + "can you tell me my checking account balance", + "balance" + ], + [ + "perform a search for my most recent balance on my amex account", + "balance" + ], + [ + "how much is the current balance in my td bank savings account", + "balance" + ], + [ + "what is my balance in checking account", + "balance" + ], + [ + "how much is available in my savings account", + "balance" + ], + [ + "tell me what i have in my money market account", + "balance" + ], + [ + "how much money do i have in my account", + "balance" + ], + [ + "how much is left of mastercard", + "balance" + ], + [ + "what is the available balance in savings", + "balance" + ], + [ + "what is the balance on my visa", + "balance" + ], + [ + "do i have enough money in my chase account for a new refrigerator", + "balance" + ], + [ + "do i have enough money in my charles schwab account to get a new baseball bat", + "balance" + ], + [ + "i'd like to know my bank balance please", + "balance" + ], + [ + "what's the balance on my bank account", + "balance" + ], + [ + "will the money in my capital one account cover a new washing machine", + "balance" + ], + [ + "could you check my bank balance for me", + "balance" + ], + [ + "will the amount in my chase bank account right now cover the cost of a new dryer", + "balance" + ], + [ + "i want to get a new shirt; will the money in my td ameritrade account cover it", + "balance" + ], + [ + "how much do i have in the bank", + "balance" + ], + [ + "what's my bank balance", + "balance" + ], + [ + "what is my bank balance", + "balance" + ], + [ + "is there any money left", + "balance" + ], + [ + "do i have any cash left", + "balance" + ], + [ + "can you tell me how much cash i have", + "balance" + ], + [ + "do i have enough in my boa account for a new pair of skis", + "balance" + ], + [ + "do i have enough in my chase account for new nikes", + "balance" + ], + [ + "can the funds in my wells fargo account cover my lift tickets", + "balance" + ], + [ + "do i have enough to cover new skis in my bank of america account", + "balance" + ], + [ + "do i have enough in my chase account for a plane ticket", + "balance" + ], + [ + "do you know how much i have in checking", + "balance" + ], + [ + "what is my saving's account balance", + "balance" + ], + [ + "what's the balance in my checking", + "balance" + ], + [ + "how much do i have in savings", + "balance" + ], + [ + "could you tell me what my checking account balance is", + "balance" + ], + [ + "what's my total net worth in all of my bank accounts", + "balance" + ], + [ + "what's my account balance", + "balance" + ], + [ + "i want to view my balance", + "balance" + ], + [ + "check my bank balance", + "balance" + ], + [ + "how much money do i have in all of my accounts", + "balance" + ], + [ + "how much money do i have in all of my accounts combined", + "balance" + ], + [ + "what's my checking balance", + "balance" + ], + [ + "how much money do i have total", + "balance" + ], + [ + "what's the total of my bank accounts", + "balance" + ], + [ + "how much money do i have in checking", + "balance" + ], + [ + "i wish to know the balance of my bank of american account", + "balance" + ], + [ + "what is the balance of my bank of american account", + "balance" + ], + [ + "i need to know my bank balance", + "balance" + ], + [ + "i wanna know the balance of my bank of american account", + "balance" + ], + [ + "i'd like to know the balance of my bank of american account", + "balance" + ], + [ + "i wish to know the balance of my bank of american account now", + "balance" + ], + [ + "please tell me my bank balance", + "balance" + ], + [ + "i wanna know my bank balance", + "balance" + ], + [ + "please let me know what my current bank balance is", + "balance" + ], + [ + "what is status of my bank account", + "balance" + ], + [ + "what is my balance", + "balance" + ], + [ + "what is the balance of my bank account", + "balance" + ], + [ + "what is is the details of my bank account", + "balance" + ], + [ + "is there enough money in my discover account for a vacation", + "balance" + ], + [ + "is there enough money in my account for expenses", + "balance" + ], + [ + "do i have enough money in my first hawaiian bank account for a vacation", + "balance" + ], + [ + "is there enough money in my bank of hawaii for vacation", + "balance" + ], + [ + "is there enough money in my discover account for airplane tickets", + "balance" + ], + [ + "what is my savings account balance", + "balance" + ], + [ + "what is my savings balance", + "balance" + ], + [ + "what is my money market account balance", + "balance" + ], + [ + "what is my bank balance for all accounts", + "balance" + ], + [ + "tell me my payroll account balance", + "balance" + ], + [ + "verify that i have reservations at chilis for john doe", + "confirm_reservation" + ], + [ + "can you check my reservations for mortons under david winters", + "confirm_reservation" + ], + [ + "can you check for reservations at wongs chinese for john acer", + "confirm_reservation" + ], + [ + "check and confirm reservations at ruth chris for carol lee", + "confirm_reservation" + ], + [ + "verify that my reservations at won wons for joe lee are good", + "confirm_reservation" + ], + [ + "check on my reservation for umami at 6pm", + "confirm_reservation" + ], + [ + "confirm a reservation for nicole brown at diangelo's at 6:45 pm, please", + "confirm_reservation" + ], + [ + "i need you to confirm that there is a reservation under the name david kramer for 7:00 pm at pietro's", + "confirm_reservation" + ], + [ + "i would like to confirm my 7:30 pm reservation at morton's steakhouse, under michael james", + "confirm_reservation" + ], + [ + "can you please confirm that i have a 6:00 pm table reserved under michelle solomon at devon's", + "confirm_reservation" + ], + [ + "please confirm my reservation at parc for 8:00 pm, with the name denise jack", + "confirm_reservation" + ], + [ + "please confirm my reservation for thursday at 10am", + "confirm_reservation" + ], + [ + "does it show me as having a reservation for tomorrow at 5", + "confirm_reservation" + ], + [ + "can you confirm my reservation for 6 at the outback", + "confirm_reservation" + ], + [ + "can you check that i have a reservation on february 28th for 3 in the afternoon", + "confirm_reservation" + ], + [ + "i want to make sure my reservation for 5 at mcdonalds is still set", + "confirm_reservation" + ], + [ + "i want to verify my reservation for the 18th at 1pm", + "confirm_reservation" + ], + [ + "do i have a reservation for may 1st, 2019 at 4 pm", + "confirm_reservation" + ], + [ + "can you verify that i have a reservation at o'reilly's for 9", + "confirm_reservation" + ], + [ + "can you assure me i have a table at taco bell at 7pm", + "confirm_reservation" + ], + [ + "is my 10am village inn reservation valid", + "confirm_reservation" + ], + [ + "please confirm my reservation for morton's at 5 pm", + "confirm_reservation" + ], + [ + "do i have reservations at o'neal's at 3 pm", + "confirm_reservation" + ], + [ + "is my reservation confirmed for lu shi at 7 pm", + "confirm_reservation" + ], + [ + "confirm my reservation at dino's at 6 pm", + "confirm_reservation" + ], + [ + "please tell me if my reservation is scheduled for sally's at 3 pm", + "confirm_reservation" + ], + [ + "check to see if i have reservations at prado at 6 pm", + "confirm_reservation" + ], + [ + "tell me if i have reservations at the back abbey at 6 pm", + "confirm_reservation" + ], + [ + "do you know if my reservation for dono is confirmed at 8 pm", + "confirm_reservation" + ], + [ + "do i have reservations at creme at 7 pm", + "confirm_reservation" + ], + [ + "i need to know if i have reservations at arufflo at 5 pm", + "confirm_reservation" + ], + [ + "i really need you to confirm my reservation for kevin at red robin", + "confirm_reservation" + ], + [ + "can you confirm my reservation for kevin at red robin", + "confirm_reservation" + ], + [ + "i wanna confirm my reservation for 2/20 at 8 pm", + "confirm_reservation" + ], + [ + "i'd like to confirm my reservation for 2/20 at 8 pm", + "confirm_reservation" + ], + [ + "i would like for you to confirm my reservation for red robin at 5 pm", + "confirm_reservation" + ], + [ + "i must confirm my reservation for 2/20 at 8 pm", + "confirm_reservation" + ], + [ + "i really want to confirm that i have a reservation at red robin for josh", + "confirm_reservation" + ], + [ + "i need you to confirm my reservation for kevin at red robin", + "confirm_reservation" + ], + [ + "will you confirm my reservation for red robin at 10", + "confirm_reservation" + ], + [ + "i wanna try and confirm that i have a reservation at red robin for josh", + "confirm_reservation" + ], + [ + "i need to confirm that i have a reservation at red robin for josh", + "confirm_reservation" + ], + [ + "please confirm my reservation for red robin at 9", + "confirm_reservation" + ], + [ + "i wish to confirm that i have a reservation at red robin for josh", + "confirm_reservation" + ], + [ + "i need to confirm my reservation for 2/20 at 8 pm", + "confirm_reservation" + ], + [ + "go ahead and confirm my reservation for kevin at red robin", + "confirm_reservation" + ], + [ + "please confirm my reservation for 2/20 at 8 pm", + "confirm_reservation" + ], + [ + "confirm my reservation for red robin at 8", + "confirm_reservation" + ], + [ + "i need you to confirm my reservation for outback steakhouse at 6", + "confirm_reservation" + ], + [ + "please confirm my reservation for kevin at red robin", + "confirm_reservation" + ], + [ + "i'd like to confirm that i have a reservation at red robin for josh", + "confirm_reservation" + ], + [ + "will you make sure robert has a reservation at ruth's steakhouse", + "confirm_reservation" + ], + [ + "do i still have the reservation on march 21 at 8pm", + "confirm_reservation" + ], + [ + "can you check that there's a reservation for mark at sidetracks", + "confirm_reservation" + ], + [ + "will you check there is a reservation for laura at black pearl", + "confirm_reservation" + ], + [ + "i need to make sure there is a reservation for george at connor oneil's", + "confirm_reservation" + ], + [ + "can you confirm my reservation for 6 pm on the 13th of february", + "confirm_reservation" + ], + [ + "can you confirm i have a reservation at 5 pm on march 13th", + "confirm_reservation" + ], + [ + "can you confirm my reservation for 8 pm on the 7th of november", + "confirm_reservation" + ], + [ + "please confirm i have a reservation for 2 pm on february 21st", + "confirm_reservation" + ], + [ + "can you verify mike has a reservation at black rock at 6 pm", + "confirm_reservation" + ], + [ + "i want my reservation for march 1 at 8 pm confirmed", + "confirm_reservation" + ], + [ + "will you please confirm my reservation for march 11 at 6:30 pm", + "confirm_reservation" + ], + [ + "i would like you to confirm my reservation for next saturday at 11 am", + "confirm_reservation" + ], + [ + "i need you to confirm my reservation for tomorrow at 3 pm", + "confirm_reservation" + ], + [ + "check to confirm my reservation for february 22 at noon", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at houlihan\u2019s for mike", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at the seven dwarves for peter", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at hu hot for paulie", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at macaroni grill for saul", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at chili\u2019s for melinda", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at macaroni grill for silva", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at kelly's for moreno", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at la palapa for bolding", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at gusteau's for krystine", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at chili's for jamie", + "confirm_reservation" + ], + [ + "can you confirm my reservation for jim at lawry's", + "confirm_reservation" + ], + [ + "can you confirm my reservation for dave at outback steakhouse", + "confirm_reservation" + ], + [ + "can you confirm my reservation for lance at morton's", + "confirm_reservation" + ], + [ + "can you confirm my reservation for steve at olive garden", + "confirm_reservation" + ], + [ + "can you confirm my reservation for jaime at red lobster", + "confirm_reservation" + ], + [ + "i'd like for you to make sure my reservation is there for charlie's under jack", + "confirm_reservation" + ], + [ + "can you check and see i have a reservation under alex for bon apetite", + "confirm_reservation" + ], + [ + "can you verify my reservation under steve for friendly's", + "confirm_reservation" + ], + [ + "make sure my reservation is happening for john at olive garden", + "confirm_reservation" + ], + [ + "double check my reservation under adam for outback steakhouse", + "confirm_reservation" + ], + [ + "please confirm my reservation for april 1st at 9am", + "confirm_reservation" + ], + [ + "please confirm my reservation for march 8th at 12:00", + "confirm_reservation" + ], + [ + "can you confirm my reservation for donnobys at 5:00", + "confirm_reservation" + ], + [ + "can you confirm my reservation for minnis at 4:00", + "confirm_reservation" + ], + [ + "please confirm my reservation for may 9th at 4pm", + "confirm_reservation" + ], + [ + "please confirm my reservation for march 1st at 2pm", + "confirm_reservation" + ], + [ + "can you confirm my reservation for torris at 7:00", + "confirm_reservation" + ], + [ + "can you confirm my reservation for applebees at 2:00", + "confirm_reservation" + ], + [ + "can you confirm my reservation for chillis at 8:00", + "confirm_reservation" + ], + [ + "please confirm my reservation for feburary 21st at 6pm", + "confirm_reservation" + ], + [ + "confirm my taco house reservation for jean", + "confirm_reservation" + ], + [ + "can you you confirm my reservation for jean at taco house", + "confirm_reservation" + ], + [ + "does taco house have a reservation for jean", + "confirm_reservation" + ], + [ + "i would like to check my reservation for jean at taco house", + "confirm_reservation" + ], + [ + "can you block my chase account right away please", + "freeze_account" + ], + [ + "i want my chase account blocked immediately", + "freeze_account" + ], + [ + "i need you to block my chase account immediately", + "freeze_account" + ], + [ + "can you put a block on my chase account right away", + "freeze_account" + ], + [ + "please block my chase account right away", + "freeze_account" + ], + [ + "what do i do to freeze my account", + "freeze_account" + ], + [ + "place a hold on my bank account", + "freeze_account" + ], + [ + "how can i stop transactions on my account", + "freeze_account" + ], + [ + "freeze my account immediately", + "freeze_account" + ], + [ + "block my monkey market right now", + "freeze_account" + ], + [ + "put a stop on my deposit account", + "freeze_account" + ], + [ + "stop any future processing on my savings account", + "freeze_account" + ], + [ + "put a hault on my savings account", + "freeze_account" + ], + [ + "could you put a stop on my bank account, please", + "freeze_account" + ], + [ + "can you put a stop on my bank account now", + "freeze_account" + ], + [ + "can you put a stop on my bank account, please", + "freeze_account" + ], + [ + "could you freeze my account", + "freeze_account" + ], + [ + "could you freeze my account, please", + "freeze_account" + ], + [ + "can you put a stop on my bank account", + "freeze_account" + ], + [ + "can you freeze my account, please", + "freeze_account" + ], + [ + "could you freeze my account now", + "freeze_account" + ], + [ + "can you freeze my account", + "freeze_account" + ], + [ + "could you put a stop on my bank account", + "freeze_account" + ], + [ + "do you mind putting a stop on my bank account", + "freeze_account" + ], + [ + "i would like you to put a stop on my bank account", + "freeze_account" + ], + [ + "please turn my account to frozen", + "freeze_account" + ], + [ + "please make my account a frozen one", + "freeze_account" + ], + [ + "please make sure my account is frozen", + "freeze_account" + ], + [ + "is it too much trouble to put a stop on my bank account", + "freeze_account" + ], + [ + "i would love it if you could put a stop on my bank account", + "freeze_account" + ], + [ + "i would appreciate it if you put a stop on my bank account", + "freeze_account" + ], + [ + "please set my account as frozen", + "freeze_account" + ], + [ + "please freeze my account", + "freeze_account" + ], + [ + "i need my account frozen", + "freeze_account" + ], + [ + "i'd like my account frozen", + "freeze_account" + ], + [ + "i would like my account frozen", + "freeze_account" + ], + [ + "i want my account frozen", + "freeze_account" + ], + [ + "i really want my account frozen", + "freeze_account" + ], + [ + "no payments on my bank account", + "freeze_account" + ], + [ + "turn off my bank account", + "freeze_account" + ], + [ + "stop all payments to my bank account", + "freeze_account" + ], + [ + "shut down my account", + "freeze_account" + ], + [ + "close out my account", + "freeze_account" + ], + [ + "turn off my account", + "freeze_account" + ], + [ + "i need to hold off on my account", + "freeze_account" + ], + [ + "plase hold my account for now", + "freeze_account" + ], + [ + "terminate the account", + "freeze_account" + ], + [ + "i am going to need a block put on my chase account right away", + "freeze_account" + ], + [ + "would you please put a block on my chase account right away", + "freeze_account" + ], + [ + "i would like a block put on my chase account asap", + "freeze_account" + ], + [ + "can you please put a block on my chase account quickly", + "freeze_account" + ], + [ + "i need a block put on my chase account right away", + "freeze_account" + ], + [ + "i need to put a freeze on my banking account", + "freeze_account" + ], + [ + "put a freeze on my bank account", + "freeze_account" + ], + [ + "freeze my bank account", + "freeze_account" + ], + [ + "can i freeze my bank account", + "freeze_account" + ], + [ + "i want you to immediatly block any further activity on my bb&t bank account", + "freeze_account" + ], + [ + "block my citibank account right away", + "freeze_account" + ], + [ + "add a block to my capital one bank account so it cannot be used any more", + "freeze_account" + ], + [ + "please immediatly block my presidential bank account right now", + "freeze_account" + ], + [ + "put a block on my amalgamated bank account right now", + "freeze_account" + ], + [ + "please put a stop on my back account", + "freeze_account" + ], + [ + "please put a block on my td ameritrade account now", + "freeze_account" + ], + [ + "i'd like a stop placed on my bank account", + "freeze_account" + ], + [ + "place a block on my capital one account right now", + "freeze_account" + ], + [ + "i'd like a block on my charles schwab account immediately", + "freeze_account" + ], + [ + "i need you to place a stop on my bank account, thank you", + "freeze_account" + ], + [ + "place a stop on my bank account", + "freeze_account" + ], + [ + "i need you to freeze my account", + "freeze_account" + ], + [ + "i need you to block my mutualone account now", + "freeze_account" + ], + [ + "help me freeze my bank account, please", + "freeze_account" + ], + [ + "i'd like to put a freeze on my bank account", + "freeze_account" + ], + [ + "block my chase account asap", + "freeze_account" + ], + [ + "can you please freeze my bank account", + "freeze_account" + ], + [ + "can you please put a stop on my bank account", + "freeze_account" + ], + [ + "pause my account", + "freeze_account" + ], + [ + "put a hold on my bank account", + "freeze_account" + ], + [ + "please do a stop on my bank account", + "freeze_account" + ], + [ + "stop payments from my bank", + "freeze_account" + ], + [ + "put a hold on my account", + "freeze_account" + ], + [ + "stop my account activity", + "freeze_account" + ], + [ + "please pause my banking actions", + "freeze_account" + ], + [ + "dont allow any action on my account", + "freeze_account" + ], + [ + "don't let payments go through using my bank account", + "freeze_account" + ], + [ + "please freeze my bank account", + "freeze_account" + ], + [ + "i want my bank account frozen", + "freeze_account" + ], + [ + "my bank account must be frozen", + "freeze_account" + ], + [ + "please ask the bank to freeze my account", + "freeze_account" + ], + [ + "i need to freeze my bank account", + "freeze_account" + ], + [ + "put a block on my chase account right away", + "freeze_account" + ], + [ + "put a hold on my chase account right away please", + "freeze_account" + ], + [ + "freeze my account", + "freeze_account" + ], + [ + "place a stop on my main account for me please", + "freeze_account" + ], + [ + "please put a block on my wells fargo account", + "freeze_account" + ], + [ + "put a hold on my bank account please", + "freeze_account" + ], + [ + "put a hold on my bank of america account right away please", + "freeze_account" + ], + [ + "can you notify the bank to put a stop on my account", + "freeze_account" + ], + [ + "can you put a stop on my account", + "freeze_account" + ], + [ + "i need a stop placed on my bank account please", + "freeze_account" + ], + [ + "can you put a block on my visa account right away", + "freeze_account" + ], + [ + "ways to transfer my 401k", + "rollover_401k" + ], + [ + "where do i go the transfer my 401k", + "rollover_401k" + ], + [ + "who do i go to, to transfer my 401k", + "rollover_401k" + ], + [ + "what are the ways i can transfer my 401k", + "rollover_401k" + ], + [ + "i need guidance on how to rollover my 401k", + "rollover_401k" + ], + [ + "walk me through the process of transferring my 401k", + "rollover_401k" + ], + [ + "i want to figure out how to rollover my 401k", + "rollover_401k" + ], + [ + "tell me if i am able to rollover my 401k", + "rollover_401k" + ], + [ + "i have to transfer my 401k but i don't know how to do it", + "rollover_401k" + ], + [ + "i want to rollover my 401k but dont know how", + "rollover_401k" + ], + [ + "i need to know if it is possible to rollover my 401k", + "rollover_401k" + ], + [ + "i nee to know how to transfer my 401k", + "rollover_401k" + ], + [ + "will you help me figure out how to transfer my 401k", + "rollover_401k" + ], + [ + "explain to me how transferring my 401k works", + "rollover_401k" + ], + [ + "can you instruct me on how to rollover my 401k", + "rollover_401k" + ], + [ + "do you know if my 401k is able to be rolled over", + "rollover_401k" + ], + [ + "look up whether my 401k may be rolled over", + "rollover_401k" + ], + [ + "please walk me through the steps necessary to rollover my 401k", + "rollover_401k" + ], + [ + "how do i transport my 401k", + "rollover_401k" + ], + [ + "how do i relocate my 401k", + "rollover_401k" + ], + [ + "since i got a new job, i need help with my 401k rollover", + "rollover_401k" + ], + [ + "i have a new job now and need help with rolling over my 401k", + "rollover_401k" + ], + [ + "how do i move my 401k", + "rollover_401k" + ], + [ + "i recently got a new job and need assistance with my 401k rollover", + "rollover_401k" + ], + [ + "how do i redirect my 401k", + "rollover_401k" + ], + [ + "now that i have a new job, i need getting my 401k rolled over", + "rollover_401k" + ], + [ + "i have a new job and need direction with my 401k rollover", + "rollover_401k" + ], + [ + "i need help changing my 401k after i got a new job", + "rollover_401k" + ], + [ + "i just got a new job and need help transferring my 401k", + "rollover_401k" + ], + [ + "how do i rollover my 401k after i got a new job", + "rollover_401k" + ], + [ + "i need to rollover my 401k because i got a new job", + "rollover_401k" + ], + [ + "i jot got hired and need help with my retirement account", + "rollover_401k" + ], + [ + "could you roll over my 401k for me", + "rollover_401k" + ], + [ + "what are the steps for transfering my 401k", + "rollover_401k" + ], + [ + "walk me through on how to roll over my 401k", + "rollover_401k" + ], + [ + "help me roll over my 401k", + "rollover_401k" + ], + [ + "could you walk me through transfering my 401k", + "rollover_401k" + ], + [ + "i could use some help transfering my 401k", + "rollover_401k" + ], + [ + "help me transfer my 401k", + "rollover_401k" + ], + [ + "i need your assistance on transfering my 401k", + "rollover_401k" + ], + [ + "i need your assistance on rolling over my 401k", + "rollover_401k" + ], + [ + "i need help to roll over my 401k", + "rollover_401k" + ], + [ + "i have to get my 401k rollover because i just got a new job", + "rollover_401k" + ], + [ + "i just changed jobs and need help with my 401k rollover", + "rollover_401k" + ], + [ + "i have just switched jobs and need assistance with my 401k rollover", + "rollover_401k" + ], + [ + "i just started this new job and need help with my 401k rollover", + "rollover_401k" + ], + [ + "i just switched jobs and need a 401k rollover", + "rollover_401k" + ], + [ + "i'd like my 401k to be rolled over", + "rollover_401k" + ], + [ + "tell me how to get my 401k rolled over", + "rollover_401k" + ], + [ + "help me to roll over my 401k", + "rollover_401k" + ], + [ + "i'd like to roll over my 401k", + "rollover_401k" + ], + [ + "how can i roll over my 401k", + "rollover_401k" + ], + [ + "will my 401k rollover or not", + "rollover_401k" + ], + [ + "can a 401k be rolled over", + "rollover_401k" + ], + [ + "do i have the ability to rollover my 401k", + "rollover_401k" + ], + [ + "what's up with my 401k and will it roll over", + "rollover_401k" + ], + [ + "i'm on a new job but i need help with my 401k rollover", + "rollover_401k" + ], + [ + "i managed to get a new job but i need help with my 401k rollover", + "rollover_401k" + ], + [ + "i just acquired a new job but i need help with my 401k rollover", + "rollover_401k" + ], + [ + "i recently took a new job and need help with my 401k rollover", + "rollover_401k" + ], + [ + "i just got this new job but i need help with my 401k rollover", + "rollover_401k" + ], + [ + "i want help rolling over my 401k", + "rollover_401k" + ], + [ + "i need to rollover my 401k to a new job", + "rollover_401k" + ], + [ + "i want my 401k rolled over to a new workplace", + "rollover_401k" + ], + [ + "my previous job's 401k needs to be rolled over", + "rollover_401k" + ], + [ + "i need a 401k rolled over to my brand new job", + "rollover_401k" + ], + [ + "what do i do to rollover my 401k", + "rollover_401k" + ], + [ + "i need to rollover my 401k", + "rollover_401k" + ], + [ + "can you help me with rolling over my 401k", + "rollover_401k" + ], + [ + "i desperately need to rollover my 401k somehow", + "rollover_401k" + ], + [ + "my new job requires that i rollover my 401k", + "rollover_401k" + ], + [ + "can you help me figure out the process of rolling over a 401k", + "rollover_401k" + ], + [ + "what do i need to do to rollover my 401k", + "rollover_401k" + ], + [ + "can you help me rollover my 401k to my new place of employment", + "rollover_401k" + ], + [ + "how can i rollover my 401k at my new job", + "rollover_401k" + ], + [ + "can you assist me rolling over a 401k for a new job", + "rollover_401k" + ], + [ + "what's the process for rolling over my 401k", + "rollover_401k" + ], + [ + "i just found a better job and need to move my 401k over to my new employer", + "rollover_401k" + ], + [ + "i have to roll over my 401k to a new account and i don't know how", + "rollover_401k" + ], + [ + "i switched companies and need to rollover my 401k", + "rollover_401k" + ], + [ + "tell me how to transfer my 401k", + "rollover_401k" + ], + [ + "what are the steps for transferring my 401k", + "rollover_401k" + ], + [ + "transfer my 401k please", + "rollover_401k" + ], + [ + "i need to transfer my 401 k", + "rollover_401k" + ], + [ + "is there a way to transfer my 401k", + "rollover_401k" + ], + [ + "can you explain to me how to rollover my 401k", + "rollover_401k" + ], + [ + "can you help me figure out how to rollover my 401k", + "rollover_401k" + ], + [ + "i got a new job, can you help me with my 401k rollover", + "rollover_401k" + ], + [ + "i want to know how to rollover my 401k", + "rollover_401k" + ], + [ + "i need help with my 401k rollver since i got a new job", + "rollover_401k" + ], + [ + "i would like to know how to rollover my 401k", + "rollover_401k" + ], + [ + "explain to me how to rollover my 401k", + "rollover_401k" + ], + [ + "please help me with my 401k rollover since i got a new job", + "rollover_401k" + ], + [ + "can you help me with my 401k rollover since i got a new job", + "rollover_401k" + ], + [ + "i have a new job, help me with my 401k rollover", + "rollover_401k" + ], + [ + "i need assistance figuring out how to rollover my 401k", + "rollover_401k" + ], + [ + "i need to get some assistance figuring out how i can rollover my 401k, please", + "rollover_401k" + ], + [ + "i need to get some assistance figuring out how to rollover my 401k, please", + "rollover_401k" + ], + [ + "i need to get some assistance figuring out how to rollover my 401k", + "rollover_401k" + ], + [ + "i need assistance figuring out how to rollover my 401k, please", + "rollover_401k" + ], + [ + "who formed you", + "who_made_you" + ], + [ + "who constructed you", + "who_made_you" + ], + [ + "what's your design company", + "who_made_you" + ], + [ + "what company coded you", + "who_made_you" + ], + [ + "who fabricated you", + "who_made_you" + ], + [ + "what company wrote your code", + "who_made_you" + ], + [ + "what company owns your code", + "who_made_you" + ], + [ + "who brought you up", + "who_made_you" + ], + [ + "who is it that programmed you", + "who_made_you" + ], + [ + "whats it like to be programmed", + "who_made_you" + ], + [ + "who was the inventor of ai", + "who_made_you" + ], + [ + "ai was made by whom", + "who_made_you" + ], + [ + "tell me the inventor of ai", + "who_made_you" + ], + [ + "can you tell me who made ai", + "who_made_you" + ], + [ + "could you let me know who made you", + "who_made_you" + ], + [ + "would you let me know who programmed you", + "who_made_you" + ], + [ + "provide me the name of who programmed you", + "who_made_you" + ], + [ + "i want to know who made you", + "who_made_you" + ], + [ + "provide me the name of who made you", + "who_made_you" + ], + [ + "i am needing to know who made you", + "who_made_you" + ], + [ + "tell me who made you", + "who_made_you" + ], + [ + "tell me who programmed you", + "who_made_you" + ], + [ + "let me know who made you", + "who_made_you" + ], + [ + "i need to know who programmed you", + "who_made_you" + ], + [ + "i am wanting to know who programmed you", + "who_made_you" + ], + [ + "give me an answer to who made you", + "who_made_you" + ], + [ + "i'm needing to know who made you", + "who_made_you" + ], + [ + "what's your brand", + "who_made_you" + ], + [ + "who created you", + "who_made_you" + ], + [ + "who was your creator", + "who_made_you" + ], + [ + "who made your algorithms", + "who_made_you" + ], + [ + "who manufactured you", + "who_made_you" + ], + [ + "what's the name of the company that designed you", + "who_made_you" + ], + [ + "who's responsible for your existence", + "who_made_you" + ], + [ + "what's the business that caused you to be made", + "who_made_you" + ], + [ + "can you remember who compiled you", + "who_made_you" + ], + [ + "what company's software engineers gave you life", + "who_made_you" + ], + [ + "who are the people responsible for you", + "who_made_you" + ], + [ + "who invented you", + "who_made_you" + ], + [ + "who designed you", + "who_made_you" + ], + [ + "who developed your actions", + "who_made_you" + ], + [ + "who supplied your instructions", + "who_made_you" + ], + [ + "who formulated you", + "who_made_you" + ], + [ + "which company can i credit your design to", + "who_made_you" + ], + [ + "by which company are you designed by", + "who_made_you" + ], + [ + "to which company is your design accredited to", + "who_made_you" + ], + [ + "which company is responsible for your design", + "who_made_you" + ], + [ + "what organization created you", + "who_made_you" + ], + [ + "who developed your internal code", + "who_made_you" + ], + [ + "who created your ai program", + "who_made_you" + ], + [ + "who was your inventor", + "who_made_you" + ], + [ + "who engineered you", + "who_made_you" + ], + [ + "who is this ai's creater", + "who_made_you" + ], + [ + "who made this ai", + "who_made_you" + ], + [ + "who did the programming for this ai", + "who_made_you" + ], + [ + "i would like to know who programmed this ai", + "who_made_you" + ], + [ + "you were built by who", + "who_made_you" + ], + [ + "what company manufactured you", + "who_made_you" + ], + [ + "who were you made by", + "who_made_you" + ], + [ + "are you made in the usa", + "who_made_you" + ], + [ + "tell me your brand", + "who_made_you" + ], + [ + "tell me the company that produces you and similar machines", + "who_made_you" + ], + [ + "may i know who made you", + "who_made_you" + ], + [ + "what created you", + "who_made_you" + ], + [ + "do you know who you came from", + "who_made_you" + ], + [ + "who is your originator", + "who_made_you" + ], + [ + "who is your creator", + "who_made_you" + ], + [ + "who is responsible for who you are", + "who_made_you" + ], + [ + "who crafted you", + "who_made_you" + ], + [ + "who was your programmer", + "who_made_you" + ], + [ + "the programmer who made you is who", + "who_made_you" + ], + [ + "who did the programming on you", + "who_made_you" + ], + [ + "what is the name of the person who created you", + "who_made_you" + ], + [ + "who built you", + "who_made_you" + ], + [ + "how were you made", + "who_made_you" + ], + [ + "how did you come to be you", + "who_made_you" + ], + [ + "please identify the name of the creator of this ai", + "who_made_you" + ], + [ + "this ai was made by what person or team", + "who_made_you" + ], + [ + "who is the creator of this ai", + "who_made_you" + ], + [ + "how was this ai created", + "who_made_you" + ], + [ + "tell me what company programmed you", + "who_made_you" + ], + [ + "the creator of your ai, what is their name", + "who_made_you" + ], + [ + "who made the ai", + "who_made_you" + ], + [ + "what is the name of the person who made the ai", + "who_made_you" + ], + [ + "can you tell me who made the ai", + "who_made_you" + ], + [ + "will you tell me who made the ai", + "who_made_you" + ], + [ + "would you tell me who made the ai", + "who_made_you" + ], + [ + "who makes the ai", + "who_made_you" + ], + [ + "ai who made you", + "who_made_you" + ], + [ + "who made you ai", + "who_made_you" + ], + [ + "can you tell me who created you", + "who_made_you" + ], + [ + "who is responsible for making you", + "who_made_you" + ], + [ + "who were you invented by", + "who_made_you" + ], + [ + "i'd like to know who made you", + "who_made_you" + ], + [ + "who brought you to life", + "who_made_you" + ], + [ + "who made you up", + "who_made_you" + ], + [ + "what company created you", + "who_made_you" + ], + [ + "who gave you life", + "who_made_you" + ], + [ + "what company sponsored you", + "who_made_you" + ], + [ + "which company programmed you", + "who_made_you" + ], + [ + "estimated time to airport from current location, la", + "distance" + ], + [ + "how long to get to the airport in la", + "distance" + ], + [ + "how early should i leave to the airport in la", + "distance" + ], + [ + "does it take a long time to get to the airport in la", + "distance" + ], + [ + "is the ride short to the airport in la", + "distance" + ], + [ + "how long's it take to get to the panera downtown", + "distance" + ], + [ + "how long will it take to drive to the kroger in westwood", + "distance" + ], + [ + "how long will it take to walk to the safeway in the strip mall", + "distance" + ], + [ + "how long will it take me to get to the mcdonald's in the city", + "distance" + ], + [ + "how long will it take me to drive to the park in west county", + "distance" + ], + [ + "how long does it take to get to spago's in los angeles", + "distance" + ], + [ + "it takes how long to get to the beach in santa barbara", + "distance" + ], + [ + "how long does it take to get to universal studios in los angeles", + "distance" + ], + [ + "how long does it take to get to disneyland in anaheim", + "distance" + ], + [ + "it takes how long to get to mcdonald's in pomona", + "distance" + ], + [ + "if i take the bus, how long will it take to get to dubrovnik", + "distance" + ], + [ + "how much time will riding the bus to downtown take", + "distance" + ], + [ + "what's my eta on the bus ride to church", + "distance" + ], + [ + "how long will it take the bus to get to stop 23", + "distance" + ], + [ + "how long before i get to dallas , in time, not miles", + "distance" + ], + [ + "what is the distance to austin city limits from my hotel , the holiday inn at austin", + "distance" + ], + [ + "how far is the airport in dallas from my current location", + "distance" + ], + [ + "how far am i from the beach right now", + "distance" + ], + [ + "tell the miles it will take to get to las vegas from san diego", + "distance" + ], + [ + "give me the time left before i get to the hotel", + "distance" + ], + [ + "tell me how far i am from home in time and miles", + "distance" + ], + [ + "how miles does it take to get to red lobster from my current location", + "distance" + ], + [ + "how many miles until i get to the beach", + "distance" + ], + [ + "how far is the grand canyon from my current location in phoenix, az", + "distance" + ], + [ + "how many hours will it take to get to my destination", + "distance" + ], + [ + "how long will it take me to drive to my destination", + "distance" + ], + [ + "how many miles will it take to get to my destination", + "distance" + ], + [ + "where is the closest gas station", + "distance" + ], + [ + "what's the estimated time to get to ppg paints arena in pittsburgh via bus", + "distance" + ], + [ + "how long would it take to get to times square by bus", + "distance" + ], + [ + "how long would a bus to the empire state building take", + "distance" + ], + [ + "how long can i expect a bus ride to the liberty bell to take", + "distance" + ], + [ + "if i'm trying to get to heinz field, how long would it take by bus", + "distance" + ], + [ + "please let me know how long it'll be until i reach the sky harbor airport", + "distance" + ], + [ + "i want to know how long it is from here to the sky harbor airport", + "distance" + ], + [ + "will it be long to get to the sky harbor airport", + "distance" + ], + [ + "how long does it take to get to the sky harbor airport", + "distance" + ], + [ + "how long does it take until i reach the sky harbor airport", + "distance" + ], + [ + "approximately how long does it take to get to the resort in miami", + "distance" + ], + [ + "about how much time will it take to get to the laundry in this area", + "distance" + ], + [ + "approximately how much time will it take to get to tod's in minutes", + "distance" + ], + [ + "how long does it take to get to the park in detroit", + "distance" + ], + [ + "how long does it take to get to the airport in dallas", + "distance" + ], + [ + "how long does it take to get to outback in atlanta", + "distance" + ], + [ + "how long does it take to get to applebees in new york", + "distance" + ], + [ + "how long does it take to get to the mall in las vegas", + "distance" + ], + [ + "so to go to brooklyn, it would take me how long again", + "distance" + ], + [ + "if i take this bus, how long until i get to brooklyn", + "distance" + ], + [ + "from here, i take this bus to go to brooklyn and how long is the commute", + "distance" + ], + [ + "does it take 5 hrs to get to brooklyn by bus", + "distance" + ], + [ + "usually, how long does is the commute to brooklyn by bus", + "distance" + ], + [ + "what's the eta for grandma's house", + "distance" + ], + [ + "what is the average time to get to walmart in mays landing", + "distance" + ], + [ + "how long does it take to get to applebees in nj", + "distance" + ], + [ + "how long until i reach my destination", + "distance" + ], + [ + "i need a time update on the applebees trip", + "distance" + ], + [ + "i want to know the time to get to td bank in toms river", + "distance" + ], + [ + "what time will we arrive at the bank", + "distance" + ], + [ + "how fast can i get to target in trenton", + "distance" + ], + [ + "how long is the ride to phoenix", + "distance" + ], + [ + "how long will it take to get to outback in phoenix", + "distance" + ], + [ + "how long will it take to get to phoenix", + "distance" + ], + [ + "how long does it take to get to phoenix by bus", + "distance" + ], + [ + "how long does it take to get to dallas by bus", + "distance" + ], + [ + "how long will it take me to get to phoenix", + "distance" + ], + [ + "how long is it gonna take to get to red robin in avondale", + "distance" + ], + [ + "how long does it take to get to red robin on phoenix", + "distance" + ], + [ + "how long does it take to get to virginia by bus", + "distance" + ], + [ + "what is the time frame to get to phoenix", + "distance" + ], + [ + "how long does it take to get to houston by bus", + "distance" + ], + [ + "how long will it take me to get to red robin in glendale", + "distance" + ], + [ + "what is the length of time it takes to get to phoenix", + "distance" + ], + [ + "how long will it take for me to get to red robin in san diego", + "distance" + ], + [ + "how long does it take to get to orlando by bus", + "distance" + ], + [ + "how long will a bus ride take if i'm going to the capitol building", + "distance" + ], + [ + "if i go by bus, how long will it take to get to the airport", + "distance" + ], + [ + "how long is a bus ride to the library", + "distance" + ], + [ + "what amount of time would it take me to reach the university by bus", + "distance" + ], + [ + "how long will it take to reach central park by bus", + "distance" + ], + [ + "how much time does it take to get to levi stadium from san jose airport", + "distance" + ], + [ + "how long will it take to get to golden gate bridge from pier 39", + "distance" + ], + [ + "how long is the drive from sfo to fisherman's wharf", + "distance" + ], + [ + "how long will it take to get to long beach terminal from long beach airport", + "distance" + ], + [ + "how long will it take to get from galleria mall to state capitol", + "distance" + ], + [ + "by bus, how long would it take to get to detroit", + "distance" + ], + [ + "utilizing an automobile known as a bus, how long will it take to get to detroit", + "distance" + ], + [ + "what is the time that it will take to arrive at detroit", + "distance" + ], + [ + "how much time will pass between the start and end of our sojourn by bus to detroit", + "distance" + ], + [ + "what amount of time will pass in order for a person at our location to take bus to detroit", + "distance" + ], + [ + "how long will it take to reach my doctors office", + "distance" + ], + [ + "how long to reach my doctors office", + "distance" + ], + [ + "how much time to reach doctors office", + "distance" + ], + [ + "time taken to reach doctors office", + "distance" + ], + [ + "time taken from home to doctors office", + "distance" + ], + [ + "if i leave now, how long will it take me to drive to cape hatteras", + "distance" + ], + [ + "you refer to me as what", + "user_name" + ], + [ + "by what name do you refer to me", + "user_name" + ], + [ + "what name do you use when addressing me", + "user_name" + ], + [ + "is there a name that you call me", + "user_name" + ], + [ + "how do you usually refer to me", + "user_name" + ], + [ + "what is the name you call me saved as", + "user_name" + ], + [ + "regarding my name, whats it saved as", + "user_name" + ], + [ + "what name do you have saved for me", + "user_name" + ], + [ + "whats my name saved under", + "user_name" + ], + [ + "what is my first name saved as", + "user_name" + ], + [ + "do you know my name", + "user_name" + ], + [ + "say my name if you know it", + "user_name" + ], + [ + "can you guess my name", + "user_name" + ], + [ + "i want you to guess my name", + "user_name" + ], + [ + "by what name people call me", + "user_name" + ], + [ + "do you remember my name", + "user_name" + ], + [ + "say what you think my name is", + "user_name" + ], + [ + "show me what you think my name is", + "user_name" + ], + [ + "tell me what you think my name is", + "user_name" + ], + [ + "what can you call me", + "user_name" + ], + [ + "what would you like to call me", + "user_name" + ], + [ + "what would i be referred to as", + "user_name" + ], + [ + "what would you like to refer to me as", + "user_name" + ], + [ + "what do you think you will refer to me as", + "user_name" + ], + [ + "what will you call me", + "user_name" + ], + [ + "what will you refer to me as", + "user_name" + ], + [ + "what are you going to refer to me as", + "user_name" + ], + [ + "you saved my name how", + "user_name" + ], + [ + "in what format did you save my name", + "user_name" + ], + [ + "you wrote what for my name", + "user_name" + ], + [ + "what did ya save my name as", + "user_name" + ], + [ + "how did you save my name", + "user_name" + ], + [ + "what's my name in your system", + "user_name" + ], + [ + "how is my name listed", + "user_name" + ], + [ + "the name you have for me is what", + "user_name" + ], + [ + "what name am i under", + "user_name" + ], + [ + "call me by my name", + "user_name" + ], + [ + "tell me my designation", + "user_name" + ], + [ + "by what nym do you think of me", + "user_name" + ], + [ + "how do you say my name", + "user_name" + ], + [ + "what do you know me as", + "user_name" + ], + [ + "what do you say for my name", + "user_name" + ], + [ + "what's my name huh", + "user_name" + ], + [ + "please tell me the name you use for me", + "user_name" + ], + [ + "what name do you use to talk about me", + "user_name" + ], + [ + "how do you reference me", + "user_name" + ], + [ + "who do you think i am", + "user_name" + ], + [ + "can you tell me what you refer to me as", + "user_name" + ], + [ + "what am i called by you", + "user_name" + ], + [ + "what is my name saved as in your system", + "user_name" + ], + [ + "do you have any idea what my name is", + "user_name" + ], + [ + "can you tell me what my name is", + "user_name" + ], + [ + "what is the name you associate with me", + "user_name" + ], + [ + "what name do you have listed for me", + "user_name" + ], + [ + "what is the name you have listed for my identity", + "user_name" + ], + [ + "what do you refer to me as", + "user_name" + ], + [ + "what name do you know me by", + "user_name" + ], + [ + "how do you address me", + "user_name" + ], + [ + "tell me what you believe my name to be", + "user_name" + ], + [ + "what am i known as to you", + "user_name" + ], + [ + "what do you think i am called", + "user_name" + ], + [ + "tell me your guess of what my name is", + "user_name" + ], + [ + "can you tell me what you call me", + "user_name" + ], + [ + "what do you have my name saved under", + "user_name" + ], + [ + "what's my name saved under", + "user_name" + ], + [ + "what name do you call me", + "user_name" + ], + [ + "what is my name saved under", + "user_name" + ], + [ + "what is the name that you have for me, please", + "user_name" + ], + [ + "what is the name that you have for me", + "user_name" + ], + [ + "what name do you call me by", + "user_name" + ], + [ + "what is your name for me, please", + "user_name" + ], + [ + "what do you have me saved under", + "user_name" + ], + [ + "what's the name that you have for me, please", + "user_name" + ], + [ + "what is my name saved as", + "user_name" + ], + [ + "what name do you refer to me as", + "user_name" + ], + [ + "what might my name be", + "user_name" + ], + [ + "can you tell me my name", + "user_name" + ], + [ + "if you were smart, would you know my name", + "user_name" + ], + [ + "do you call me a certain name", + "user_name" + ], + [ + "do i have a name to you", + "user_name" + ], + [ + "what is your name for me", + "user_name" + ], + [ + "i want you to let me know what names you have for me", + "user_name" + ], + [ + "could you let me know what names you have for me", + "user_name" + ], + [ + "would you tell me what names you have for me", + "user_name" + ], + [ + "let me know what names you have for me", + "user_name" + ], + [ + "i need to know what names you have for me", + "user_name" + ], + [ + "do you my name", + "user_name" + ], + [ + "do you know how to refer to me", + "user_name" + ], + [ + "can you tell me what your refer to me as", + "user_name" + ], + [ + "my name is what", + "user_name" + ], + [ + "do you know what you call me", + "user_name" + ], + [ + "what is the name you call me", + "user_name" + ], + [ + "what name is mine", + "user_name" + ], + [ + "you have what name for me", + "user_name" + ], + [ + "so what is my name saved as", + "user_name" + ], + [ + "so what is my current name saved as", + "user_name" + ], + [ + "i wanna know what do you call me", + "user_name" + ], + [ + "let me know the name you have for me", + "user_name" + ], + [ + "so what name do you have for me", + "user_name" + ], + [ + "let me know what do you call me", + "user_name" + ], + [ + "timezone of cuba", + "timezone" + ], + [ + "what is the time zone of france", + "timezone" + ], + [ + "french time zone", + "timezone" + ], + [ + "which timezone is colombia", + "timezone" + ], + [ + "time zone in france", + "timezone" + ], + [ + "do you know what timezone italy is in", + "timezone" + ], + [ + "italy's timezone is what", + "timezone" + ], + [ + "the timezone of italy is what", + "timezone" + ], + [ + "italy is in what timezone", + "timezone" + ], + [ + "for italy what timezone is it in", + "timezone" + ], + [ + "i wanna know what timezone spain is in", + "timezone" + ], + [ + "what timezone is japan in", + "timezone" + ], + [ + "what timezone is philadelphia in", + "timezone" + ], + [ + "what timezone is china in", + "timezone" + ], + [ + "what timezone is scotland in", + "timezone" + ], + [ + "i need to know what timezone ireland is in", + "timezone" + ], + [ + "what timezone is sweden in", + "timezone" + ], + [ + "what timezone is phoenix in", + "timezone" + ], + [ + "what timezone is dallas in", + "timezone" + ], + [ + "tell me what timezone finland is in", + "timezone" + ], + [ + "what timezone is canada in", + "timezone" + ], + [ + "tell me the timezone that spain is in", + "timezone" + ], + [ + "what timezone is detroit in", + "timezone" + ], + [ + "what timezone is russia in", + "timezone" + ], + [ + "what's the time zone in miami", + "timezone" + ], + [ + "time zone in miami is what like", + "timezone" + ], + [ + "how is miami time zone like", + "timezone" + ], + [ + "time zone in miami is like what", + "timezone" + ], + [ + "miami time zone is what", + "timezone" + ], + [ + "what's the current timezone in barcelona", + "timezone" + ], + [ + "can you tell me the timezone in san francisco", + "timezone" + ], + [ + "in paris, what's the timezone", + "timezone" + ], + [ + "what's the timezone for london", + "timezone" + ], + [ + "what timezone does lisbon have", + "timezone" + ], + [ + "in what timezone is nigeria", + "timezone" + ], + [ + "which timezone is england in", + "timezone" + ], + [ + "can you tell me which timezone is cambodia in", + "timezone" + ], + [ + "in which timezone is jamaica", + "timezone" + ], + [ + "what timezone is viet nam in", + "timezone" + ], + [ + "what's the timezone for brasilia", + "timezone" + ], + [ + "which timezone is buenos aires in", + "timezone" + ], + [ + "what timezone is lima in", + "timezone" + ], + [ + "what's chicago's time zone", + "timezone" + ], + [ + "what is the timezone for quito", + "timezone" + ], + [ + "what timezone is chicago in", + "timezone" + ], + [ + "what timezone is boise in", + "timezone" + ], + [ + "what timezone is miami in", + "timezone" + ], + [ + "whats the timezone for modesto", + "timezone" + ], + [ + "what timezone is sacromento in", + "timezone" + ], + [ + "whats the timezone for san fransico", + "timezone" + ], + [ + "if i\u2019m in japan, what time zone am i in", + "timezone" + ], + [ + "tell me what time zone portugal uses", + "timezone" + ], + [ + "nigeria is in which time zone", + "timezone" + ], + [ + "the time zone for brazil is what", + "timezone" + ], + [ + "what time zone is ireland in", + "timezone" + ], + [ + "what's the timezone for boston", + "timezone" + ], + [ + "do you know the timezone for dublin", + "timezone" + ], + [ + "what's the timezone for san diego", + "timezone" + ], + [ + "what timezone is london is", + "timezone" + ], + [ + "what timezone is melbourne in", + "timezone" + ], + [ + "what timezone would tampa be in", + "timezone" + ], + [ + "what timezone do they use in la", + "timezone" + ], + [ + "can you tell me denver's timezone", + "timezone" + ], + [ + "what timezone does bangor have", + "timezone" + ], + [ + "does phoenix have a different timezone", + "timezone" + ], + [ + "do you know the timezone for phoenix", + "timezone" + ], + [ + "what timezone would i be in if i traveled to moscow", + "timezone" + ], + [ + "if you're in melbourne, what timezone are you in", + "timezone" + ], + [ + "what timezone is milan in", + "timezone" + ], + [ + "detroit is in what timezone", + "timezone" + ], + [ + "can you tell me what timezone chicago is in", + "timezone" + ], + [ + "doy ou know what timezone chicago is in", + "timezone" + ], + [ + "could you tell me what timezone reno is in", + "timezone" + ], + [ + "reno's timezone is what", + "timezone" + ], + [ + "if i change my timezone to reno, what would it be", + "timezone" + ], + [ + "do you know what the timezone is in reno", + "timezone" + ], + [ + "if i am in reno, what would the timezone be", + "timezone" + ], + [ + "find the applicable timezone for austin", + "timezone" + ], + [ + "what time zone are we currently in", + "timezone" + ], + [ + "please search for portland's timezone", + "timezone" + ], + [ + "in what timezone does baton rouge fall", + "timezone" + ], + [ + "can you tell me the timezone that hartford is in", + "timezone" + ], + [ + "i need to know what timezone sedona is in", + "timezone" + ], + [ + "can you tell my what france's timezone is", + "timezone" + ], + [ + "i would like information on france's timezone", + "timezone" + ], + [ + "i want to know france's timezone", + "timezone" + ], + [ + "which timezone is france in", + "timezone" + ], + [ + "what timezone is france in", + "timezone" + ], + [ + "what timezone is new york in", + "timezone" + ], + [ + "what timezone is reno in", + "timezone" + ], + [ + "what timezone is vegas in", + "timezone" + ], + [ + "what timezone is los angeles in", + "timezone" + ], + [ + "is austin in the central timezone", + "timezone" + ], + [ + "does the central timezone include austin", + "timezone" + ], + [ + "what is the timezone in las vegas", + "timezone" + ], + [ + "which timezone is las vegas in", + "timezone" + ], + [ + "las vegas is in what timezone", + "timezone" + ], + [ + "tell me the timezone las vegas is in", + "timezone" + ], + [ + "las vegas timezone please", + "timezone" + ], + [ + "what timezone is boston in", + "timezone" + ], + [ + "go past this song", + "next_song" + ], + [ + "put on the next song", + "next_song" + ], + [ + "please play the next song", + "next_song" + ], + [ + "go forward to the next song on the playlist", + "next_song" + ], + [ + "change the song to the next one", + "next_song" + ], + [ + "go to the next song on the playlist", + "next_song" + ], + [ + "go to my next song", + "next_song" + ], + [ + "skip this song", + "next_song" + ], + [ + "can you skip this song", + "next_song" + ], + [ + "pass this song", + "next_song" + ], + [ + "i want to hear the very next song on this playlist", + "next_song" + ], + [ + "i would like to hear the next song on this playlist", + "next_song" + ], + [ + "skip this song and play the next", + "next_song" + ], + [ + "play the next hit", + "next_song" + ], + [ + "remember to play the next number on this particular playlist", + "next_song" + ], + [ + "i would like to hear the next tune on this particular playlist", + "next_song" + ], + [ + "please put on the next number on this playlist", + "next_song" + ], + [ + "can you move to the next song", + "next_song" + ], + [ + "lets pause this song and move onto the next", + "next_song" + ], + [ + "lets pass on this song and do the next", + "next_song" + ], + [ + "play the next musical number", + "next_song" + ], + [ + "play the next tune", + "next_song" + ], + [ + "lets just play the next song please", + "next_song" + ], + [ + "hop to the next one", + "next_song" + ], + [ + "go to next song", + "next_song" + ], + [ + "play the next track", + "next_song" + ], + [ + "skip over this song", + "next_song" + ], + [ + "play the next song instead", + "next_song" + ], + [ + "play the song coming on next", + "next_song" + ], + [ + "play the next song queued up", + "next_song" + ], + [ + "move to the next song", + "next_song" + ], + [ + "what is the next song to be played", + "next_song" + ], + [ + "can we play the next track", + "next_song" + ], + [ + "can we stop this song and play the next one", + "next_song" + ], + [ + "can we skip this song", + "next_song" + ], + [ + "skip this and go to the next song", + "next_song" + ], + [ + "skip and play next song", + "next_song" + ], + [ + "skip and next", + "next_song" + ], + [ + "go to the next song and skip", + "next_song" + ], + [ + "go to the next song now", + "next_song" + ], + [ + "play one song forward", + "next_song" + ], + [ + "i want to hear the next song", + "next_song" + ], + [ + "go forward one song", + "next_song" + ], + [ + "the next song should be played", + "next_song" + ], + [ + "what's next on the list", + "next_song" + ], + [ + "play the next song", + "next_song" + ], + [ + "next song on the list, please", + "next_song" + ], + [ + "you must skip this song and play the next one", + "next_song" + ], + [ + "go ahead and skip this song and play the next one", + "next_song" + ], + [ + "you need to skip this song and play the next one", + "next_song" + ], + [ + "go ahead and play the next song on this playlist", + "next_song" + ], + [ + "go passed the song now", + "next_song" + ], + [ + "will you play the next song on this playlist", + "next_song" + ], + [ + "i need you to play the next song on this playlist", + "next_song" + ], + [ + "please skip this song and play the next one", + "next_song" + ], + [ + "please change the song now", + "next_song" + ], + [ + "please play the next song on this playlist", + "next_song" + ], + [ + "i want you to play the next song on this playlist", + "next_song" + ], + [ + "i need you to skip this song and play the next one", + "next_song" + ], + [ + "i don't want this song, move to the next", + "next_song" + ], + [ + "skip to the next song", + "next_song" + ], + [ + "play next song using this playlist", + "next_song" + ], + [ + "go to next song, please", + "next_song" + ], + [ + "forget this song and go to the next", + "next_song" + ], + [ + "move on to the next song", + "next_song" + ], + [ + "using this playlist, play next song", + "next_song" + ], + [ + "jump to the next song on this playlist", + "next_song" + ], + [ + "skip to the next song please", + "next_song" + ], + [ + "please go to the song after this one", + "next_song" + ], + [ + "please jump to the song that follows this one", + "next_song" + ], + [ + "let's play the next song now", + "next_song" + ], + [ + "can you fast forward to the next song", + "next_song" + ], + [ + "continue to next song on the playlist", + "next_song" + ], + [ + "take me to the next song on this playlist", + "next_song" + ], + [ + "find the next song on this playlist", + "next_song" + ], + [ + "proceed to the next song on this playlist", + "next_song" + ], + [ + "listen to next song on playlist", + "next_song" + ], + [ + "i want to listen to another song", + "next_song" + ], + [ + "go to the next tune", + "next_song" + ], + [ + "beginning playing the next tune", + "next_song" + ], + [ + "start playing the next track", + "next_song" + ], + [ + "advance to the next song", + "next_song" + ], + [ + "go forward to the next track", + "next_song" + ], + [ + "give me the next song", + "next_song" + ], + [ + "skip this song and play the next one", + "next_song" + ], + [ + "play the song after this", + "next_song" + ], + [ + "switch to the next song on this playlist please", + "next_song" + ], + [ + "change the song to the next one on this playlist", + "next_song" + ], + [ + "i want to listen to the next song on this playlist instead", + "next_song" + ], + [ + "stop the current song and play the next one on this playlist", + "next_song" + ], + [ + "could you skip to the next song on this playlist, please", + "next_song" + ], + [ + "could you play the next song on this playlist, please", + "next_song" + ], + [ + "can you play the next song on this playlist, please", + "next_song" + ], + [ + "could you play the next song on this playlist", + "next_song" + ], + [ + "could you skip to the next song on this playlist", + "next_song" + ], + [ + "play next on the playlist", + "next_song" + ], + [ + "skip to next song", + "next_song" + ], + [ + "next song play", + "next_song" + ], + [ + "stop this song and go to the next one", + "next_song" + ], + [ + "play the next song on this list", + "next_song" + ], + [ + "before i make my mastercard payment can you tell me what i've recently charged on it", + "transactions" + ], + [ + "please tell me all of my recent transactions", + "transactions" + ], + [ + "i want to pay my amazon credit card but i need to know the last few transactions", + "transactions" + ], + [ + "before i pay my walmart credit card did i make any purchases using it recently", + "transactions" + ], + [ + "i need to know all the recent transactions i've made", + "transactions" + ], + [ + "please tell me all the transactions i've made recently", + "transactions" + ], + [ + "what are the last ten transactions i've made", + "transactions" + ], + [ + "before i pay my capital one, what are the most recent transactions i've made", + "transactions" + ], + [ + "tell me the most recent charges on my chase credit card before i pay the bill", + "transactions" + ], + [ + "read off to me the last five transactions i've made", + "transactions" + ], + [ + "what transactions have i made on liquor in the past month", + "transactions" + ], + [ + "i'd like to see last week's atm transactions", + "transactions" + ], + [ + "show me the transactions from costco yesterday", + "transactions" + ], + [ + "i need to know something about my latest transaction", + "transactions" + ], + [ + "can you check on a transaction for me", + "transactions" + ], + [ + "i need some information on a recent transaction", + "transactions" + ], + [ + "i need a recent transaction looked into", + "transactions" + ], + [ + "can you let me know my latest transactions", + "transactions" + ], + [ + "what was the last thing i purchased", + "transactions" + ], + [ + "what did i buy last", + "transactions" + ], + [ + "how much did my last purchase cost", + "transactions" + ], + [ + "how expensive was my most recent transaction", + "transactions" + ], + [ + "when was my most recent transaction", + "transactions" + ], + [ + "show me the transactions made on my business card for supplies last quarter", + "transactions" + ], + [ + "may i get all of the food transactions that were made last month", + "transactions" + ], + [ + "can you show me the transactions that were made last night at the restaurant", + "transactions" + ], + [ + "what transactions did i make yesterday at the flea market", + "transactions" + ], + [ + "please show me what transactions i made on the first of this month", + "transactions" + ], + [ + "please tell me my in-person transactions for the last three days using my debit card", + "transactions" + ], + [ + "please give me my last ten debit card transactions in the month of december", + "transactions" + ], + [ + "what were my last five transactions on my visa card", + "transactions" + ], + [ + "i would like to hear all transactions made on my amex for the last ten days", + "transactions" + ], + [ + "can you list all of my online transactions for the month of january", + "transactions" + ], + [ + "show me my transactions on groceries", + "transactions" + ], + [ + "show me my transactions on tacobell", + "transactions" + ], + [ + "show me my transactions on make up at sephora", + "transactions" + ], + [ + "show me my transactions on mcdonalds", + "transactions" + ], + [ + "show me my transactions on clothes at macys", + "transactions" + ], + [ + "let me see the list of tranaction on my discovery credit card", + "transactions" + ], + [ + "let me know the list of transaction on my first hawaiian bank", + "transactions" + ], + [ + "i want to see the list of transaction on my bank of hawaii", + "transactions" + ], + [ + "list me my recent transaction", + "transactions" + ], + [ + "what are my recent transaction", + "transactions" + ], + [ + "please show me my recent transaction", + "transactions" + ], + [ + "i want to see my recent transaction", + "transactions" + ], + [ + "let me check my transaction for first bank card", + "transactions" + ], + [ + "let me check my transaction on my citi card", + "transactions" + ], + [ + "show me my recent transactoin", + "transactions" + ], + [ + "on my card what have been my recent purchases", + "transactions" + ], + [ + "pull up my recent transactions on my mastercard", + "transactions" + ], + [ + "on the card can you give me the last transactions", + "transactions" + ], + [ + "whats my recent transactions on my card", + "transactions" + ], + [ + "on my card what all are my latest transactions", + "transactions" + ], + [ + "show my transaction statement", + "transactions" + ], + [ + "retrieve my recent transactions", + "transactions" + ], + [ + "view my transactions for the last week", + "transactions" + ], + [ + "my transaction history", + "transactions" + ], + [ + "may transactions for last 2 days", + "transactions" + ], + [ + "what was my last transaction", + "transactions" + ], + [ + "show me recent transactions", + "transactions" + ], + [ + "what transactions happened in the last week", + "transactions" + ], + [ + "show me the last month of transactions", + "transactions" + ], + [ + "show me the last five transactions", + "transactions" + ], + [ + "what's the last transaction i made yesterday", + "transactions" + ], + [ + "show me yesterday's last transaction", + "transactions" + ], + [ + "open yesterday's last payment", + "transactions" + ], + [ + "show me last transaction", + "transactions" + ], + [ + "show me transactions related to travel", + "transactions" + ], + [ + "help me get access to my recent transaction history", + "transactions" + ], + [ + "i need to see my shopping transactions", + "transactions" + ], + [ + "get me access to a list of my recent transactions", + "transactions" + ], + [ + "i would like to take a look at my transaction history", + "transactions" + ], + [ + "can you pull up my most recent transactions", + "transactions" + ], + [ + "i want to see my entertainment transactions", + "transactions" + ], + [ + "where can i find my recent transaction history", + "transactions" + ], + [ + "can you show me transactions related to utilities", + "transactions" + ], + [ + "pull up my grocery transactions", + "transactions" + ], + [ + "what were my purchases on visa card last month", + "transactions" + ], + [ + "i spent what dollar amount last month on mastercard", + "transactions" + ], + [ + "what was the amount that i spent on fidelity visa last month", + "transactions" + ], + [ + "what did i spend at target on my barclays card last month", + "transactions" + ], + [ + "what amount did i spend for food on chase visa on current bill", + "transactions" + ], + [ + "i need to know last months transactions", + "transactions" + ], + [ + "i need to know the transactions i made on the 10th", + "transactions" + ], + [ + "i would like to see the transactions i made last week", + "transactions" + ], + [ + "can i see my transactions on the 7th", + "transactions" + ], + [ + "can i get my transactions for the date of the 23rd", + "transactions" + ], + [ + "show me the transaction on burger king", + "transactions" + ], + [ + "show me the transaction on macys", + "transactions" + ], + [ + "show me the transaction on mcdonald", + "transactions" + ], + [ + "show me the transaction on the food", + "transactions" + ], + [ + "show me the transaction on my car", + "transactions" + ], + [ + "bring up all purchases from target", + "transactions" + ], + [ + "show me my transactions within the past week", + "transactions" + ], + [ + "can i see my transactions from yesterday", + "transactions" + ], + [ + "show me all gas purchases within the last month", + "transactions" + ], + [ + "can you list all recent transactions", + "transactions" + ], + [ + "bring up my most recent purchases", + "transactions" + ], + [ + "i need to see all visa purchases for march", + "transactions" + ], + [ + "looking at january, show all wine purchases", + "transactions" + ], + [ + "can you suggest a restaurant for me to eat tonight", + "restaurant_suggestion" + ], + [ + "tell me where to go since i want to eat out tonight", + "restaurant_suggestion" + ], + [ + "i'm craving for italian food, where should i go", + "restaurant_suggestion" + ], + [ + "suggest a restaurant for me to eat tonight, please", + "restaurant_suggestion" + ], + [ + "i'm not going to cook today, can you suggest a restaurant", + "restaurant_suggestion" + ], + [ + "what restaurants are pet friendly near here", + "restaurant_suggestion" + ], + [ + "what are the best restaurants", + "restaurant_suggestion" + ], + [ + "what decent restaurants around here are italian", + "restaurant_suggestion" + ], + [ + "do you know any good restaurants good for kids", + "restaurant_suggestion" + ], + [ + "any good pizza restaurants around here", + "restaurant_suggestion" + ], + [ + "where should i go to eat tonight", + "restaurant_suggestion" + ], + [ + "where should i eat tonight", + "restaurant_suggestion" + ], + [ + "i want to eat out, where should i go", + "restaurant_suggestion" + ], + [ + "give me some good restaurants", + "restaurant_suggestion" + ], + [ + "i'm hungry, where should i go", + "restaurant_suggestion" + ], + [ + "name a good restaurant near me", + "restaurant_suggestion" + ], + [ + "where should i go for dinner", + "restaurant_suggestion" + ], + [ + "its date night and we cant decide where to go help", + "restaurant_suggestion" + ], + [ + "where do people go to eat in this town", + "restaurant_suggestion" + ], + [ + "i am hungry and need a restaurant suggestion", + "restaurant_suggestion" + ], + [ + "can you tell me the best place for cajun shrimp in tampa", + "restaurant_suggestion" + ], + [ + "what's a good place to eat chinese in san francisco", + "restaurant_suggestion" + ], + [ + "what's a highly rated place for steak in omaha", + "restaurant_suggestion" + ], + [ + "where can i pick up a good burger near where i am", + "restaurant_suggestion" + ], + [ + "what's a good place to go to for food around here", + "restaurant_suggestion" + ], + [ + "are there any decent places to get seafood in seattle", + "restaurant_suggestion" + ], + [ + "what's the best place for some thai in new york city", + "restaurant_suggestion" + ], + [ + "i'm famished so give me some places to eat!", + "restaurant_suggestion" + ], + [ + "any ideas on a good place to eat out", + "restaurant_suggestion" + ], + [ + "can you recommend any restaurants", + "restaurant_suggestion" + ], + [ + "i'm in the mood for italian, are there any good places around", + "restaurant_suggestion" + ], + [ + "please list nearby restaurants with 4 or more star reviews", + "restaurant_suggestion" + ], + [ + "where's a good place to get some grub", + "restaurant_suggestion" + ], + [ + "where would you eat italian in chicago", + "restaurant_suggestion" + ], + [ + "can i get good tacos anywhere in austin", + "restaurant_suggestion" + ], + [ + "is there a good fish place in salem", + "restaurant_suggestion" + ], + [ + "what are good places for a burrito in albuquerque", + "restaurant_suggestion" + ], + [ + "where should i go out for food to", + "restaurant_suggestion" + ], + [ + "can you recommend a decent place in chicago to get pizza", + "restaurant_suggestion" + ], + [ + "do you know of any good restaurants", + "restaurant_suggestion" + ], + [ + "help me find a good sushi spot in chicago", + "restaurant_suggestion" + ], + [ + "can you find me a good restaurant to try eating at", + "restaurant_suggestion" + ], + [ + "i want you to recommend a good local restaurant to me", + "restaurant_suggestion" + ], + [ + "tell me some good mexican restaurants in dallas", + "restaurant_suggestion" + ], + [ + "do you know of any good seafood restaurants in seattle", + "restaurant_suggestion" + ], + [ + "please find me some good thai restaurants in new york city", + "restaurant_suggestion" + ], + [ + "find me a good spot for southern comfort food in los angeles", + "restaurant_suggestion" + ], + [ + "are there any good restaurants in nyc that serve barbecue", + "restaurant_suggestion" + ], + [ + "i want to go out to eat but have no idea where to go, do you know of any places", + "restaurant_suggestion" + ], + [ + "i want recommendations for good sushi spots in los angeles", + "restaurant_suggestion" + ], + [ + "do you know of any good mexican restaurants in seattle", + "restaurant_suggestion" + ], + [ + "does boise have any good indian restaurants", + "restaurant_suggestion" + ], + [ + "can you suggest some quality chinese restaurants in oklahoma city", + "restaurant_suggestion" + ], + [ + "help me pick a nice restaurant to dine at", + "restaurant_suggestion" + ], + [ + "what mexican restaurant within 5 miles has the best reviews", + "restaurant_suggestion" + ], + [ + "show me 5-star dining establishments in nashville", + "restaurant_suggestion" + ], + [ + "are there any good chinese restaurants open right now", + "restaurant_suggestion" + ], + [ + "what are the best family restaurants in charlottesville", + "restaurant_suggestion" + ], + [ + "in boston, what are the best pizza places", + "restaurant_suggestion" + ], + [ + "are there some good thai restaurants in san antonio", + "restaurant_suggestion" + ], + [ + "what are the best italian restaurants in chicago", + "restaurant_suggestion" + ], + [ + "where are the good thai restaurants in atlanta", + "restaurant_suggestion" + ], + [ + "recommendations for good thai restaurants in las vegas", + "restaurant_suggestion" + ], + [ + "where should i go for good thai food in las vegas", + "restaurant_suggestion" + ], + [ + "i need suggestions for good thai restaurants in las vegas", + "restaurant_suggestion" + ], + [ + "where are some good thai restaurants in las vegas", + "restaurant_suggestion" + ], + [ + "tell me which restaurants are good for thai food in las vegas", + "restaurant_suggestion" + ], + [ + "can you list off 4 star restaurants", + "restaurant_suggestion" + ], + [ + "what type of restaurants are nearby", + "restaurant_suggestion" + ], + [ + "i need to know what restaurants are near me", + "restaurant_suggestion" + ], + [ + "can you list off different restaurants", + "restaurant_suggestion" + ], + [ + "what are some good places to eat at", + "restaurant_suggestion" + ], + [ + "could you locate me some good places in kentucky that serve sushi", + "restaurant_suggestion" + ], + [ + "does kentucky have any good restaurants that serve sushi", + "restaurant_suggestion" + ], + [ + "can you find me some good places in kentucky that serve sushi", + "restaurant_suggestion" + ], + [ + "what are some good places in kentucky that serve sushi", + "restaurant_suggestion" + ], + [ + "could you direct me to any good places in kentucky that serve sushi", + "restaurant_suggestion" + ], + [ + "find me a new place for dinner", + "restaurant_suggestion" + ], + [ + "can you find a good steakhouse for tonight", + "restaurant_suggestion" + ], + [ + "what's a good restaurant nearby", + "restaurant_suggestion" + ], + [ + "any new restaurants near the mall", + "restaurant_suggestion" + ], + [ + "what's your recommendation for dining out tonight", + "restaurant_suggestion" + ], + [ + "find me an asian restaurant", + "restaurant_suggestion" + ], + [ + "is there a barbecue restaurant around here", + "restaurant_suggestion" + ], + [ + "find an indian restaurant", + "restaurant_suggestion" + ], + [ + "can you recommend an indian restaurant", + "restaurant_suggestion" + ], + [ + "can you find a keto friendly restaurant", + "restaurant_suggestion" + ], + [ + "is there any good place in hawaii for pasta", + "restaurant_suggestion" + ], + [ + "is there any good place in hawaii kai that serve local food", + "restaurant_suggestion" + ], + [ + "i want sushi, is there any good place in ho chi minh", + "restaurant_suggestion" + ], + [ + "is there any good place for vietnamese food on the east side of the island", + "restaurant_suggestion" + ], + [ + "is there any good place for mexican food in hawaii", + "restaurant_suggestion" + ], + [ + "what are some good sushi restaurants in reno", + "restaurant_suggestion" + ], + [ + "which restaurants in reno are good for sushi", + "restaurant_suggestion" + ], + [ + "what are the best sushi restaurants in reno", + "restaurant_suggestion" + ], + [ + "what are good restaurants in reno that serve sushi", + "restaurant_suggestion" + ], + [ + "are there any sushi restaurants in reno that have good reviews", + "restaurant_suggestion" + ], + [ + "list me some good vietnamese restaurants in new york city", + "restaurant_suggestion" + ], + [ + "suggest some restaurants", + "restaurant_suggestion" + ], + [ + "give me some restaurant suggestions", + "restaurant_suggestion" + ], + [ + "how high are the rewards on my discover card", + "rewards_balance" + ], + [ + "how many rewards do i now have on my hy-vee card", + "rewards_balance" + ], + [ + "what's the current reward amount on my mastercard", + "rewards_balance" + ], + [ + "what's my current reward balance on my amex card", + "rewards_balance" + ], + [ + "what's my visa's current rewards balance", + "rewards_balance" + ], + [ + "how many reward points have stacked up for my amex card", + "rewards_balance" + ], + [ + "how many reward points do i have available to redeem on my visa", + "rewards_balance" + ], + [ + "what's the current reward amount on my visa", + "rewards_balance" + ], + [ + "what's the reward point count on my discover card", + "rewards_balance" + ], + [ + "what is my american express card's rewards balance", + "rewards_balance" + ], + [ + "what is my chase card's rewards balance", + "rewards_balance" + ], + [ + "what is my wells fargo card's rewards balance", + "rewards_balance" + ], + [ + "what is my citigroup card's rewards balance", + "rewards_balance" + ], + [ + "what is my bank of america card's rewards balance", + "rewards_balance" + ], + [ + "how can i see my rewards for my visa card", + "rewards_balance" + ], + [ + "tell me how to check my rewards for my american express card", + "rewards_balance" + ], + [ + "how can i look at rewards for my amex card", + "rewards_balance" + ], + [ + "tell me how to check rewards for my mastercard", + "rewards_balance" + ], + [ + "where are rewards from my visa card visible", + "rewards_balance" + ], + [ + "what is my current reward point total on my visa card", + "rewards_balance" + ], + [ + "how would i be able to check my kohls rewards card", + "rewards_balance" + ], + [ + "i need to know my reward point total looking at my debit card", + "rewards_balance" + ], + [ + "do i have enough points on my starbucks card yet", + "rewards_balance" + ], + [ + "help me check my visa rewards card", + "rewards_balance" + ], + [ + "can i check my gold rewards card online", + "rewards_balance" + ], + [ + "can you tell me how many points i have on my kohls card", + "rewards_balance" + ], + [ + "what is the easiest way to check my bank rewards card", + "rewards_balance" + ], + [ + "is there a better way to check my visa rewards card balance", + "rewards_balance" + ], + [ + "how many points are on my gold card", + "rewards_balance" + ], + [ + "what's the amount of points i have earned with my discover card", + "rewards_balance" + ], + [ + "i wonder how many points i have earned with my bank of america card", + "rewards_balance" + ], + [ + "have i earned a lot of points on my capital one card", + "rewards_balance" + ], + [ + "can you tell me how many points i have to date with my capital one miles card", + "rewards_balance" + ], + [ + "what's the total number of points i earned so far with my chase rewards card", + "rewards_balance" + ], + [ + "how many points have i already accrued on my chase mastercard", + "rewards_balance" + ], + [ + "i would like my total rewards points balance on my bank of america platinum rewards card, please", + "rewards_balance" + ], + [ + "i need to hear how many points i've obtained on my capital one visa", + "rewards_balance" + ], + [ + "how many points did i get on my discover card", + "rewards_balance" + ], + [ + "how many points did my visa earn", + "rewards_balance" + ], + [ + "what points were earned on my mastercard", + "rewards_balance" + ], + [ + "how many points have been earned on my amex", + "rewards_balance" + ], + [ + "how many points did i get on my visa card", + "rewards_balance" + ], + [ + "what's the balance of my reward points on my discover card", + "rewards_balance" + ], + [ + "i need to know my rewards balance on my discover card", + "rewards_balance" + ], + [ + "what's my discover card reward balance", + "rewards_balance" + ], + [ + "what's my rewards balance on my discover", + "rewards_balance" + ], + [ + "what is the reward balance on my discover card", + "rewards_balance" + ], + [ + "how many rewards points do i have for my visa card", + "rewards_balance" + ], + [ + "how many rewards points do i have for my wells fargo card", + "rewards_balance" + ], + [ + "how many rewards points do i have for my amazon card", + "rewards_balance" + ], + [ + "how many rewards points do i have for my chase card", + "rewards_balance" + ], + [ + "how many rewards points do i have for my mastercard", + "rewards_balance" + ], + [ + "what is my points total for my mastercard", + "rewards_balance" + ], + [ + "what's my total point number on my mastercard", + "rewards_balance" + ], + [ + "how many points do i have on my mastercard", + "rewards_balance" + ], + [ + "what is the number of points i earned with my mastercard", + "rewards_balance" + ], + [ + "how many points have i accumulated on my mastercard", + "rewards_balance" + ], + [ + "how can i see my rewards for my chase card", + "rewards_balance" + ], + [ + "where can i find my rewards for my chase card", + "rewards_balance" + ], + [ + "what do i have to do to see my rewards for my chase card", + "rewards_balance" + ], + [ + "how do i see me rewards for my chase card", + "rewards_balance" + ], + [ + "where are my rewards for my chase card", + "rewards_balance" + ], + [ + "what's the point balance on my marriot rewards card", + "rewards_balance" + ], + [ + "how many points do i have in total on my marriot rewards card", + "rewards_balance" + ], + [ + "show me the total up to date points on the marriot rewards card", + "rewards_balance" + ], + [ + "my marriot rewards card has how much for a point total", + "rewards_balance" + ], + [ + "give my my current points on my marriot rewards card", + "rewards_balance" + ], + [ + "can you tell me my starbucks rewards balance", + "rewards_balance" + ], + [ + "can you help me tell what my starbucks rewards balance is", + "rewards_balance" + ], + [ + "what is the remainder of my starbucks rewards balance", + "rewards_balance" + ], + [ + "my starbucks rewards balance is", + "rewards_balance" + ], + [ + "what is the total amount of my starbucks rewards balance", + "rewards_balance" + ], + [ + "i have how many points on my amex right now", + "rewards_balance" + ], + [ + "how many points are on my speedway card right now", + "rewards_balance" + ], + [ + "i have how many tier credits on my caesar's card", + "rewards_balance" + ], + [ + "how many points do i have on my mlife card", + "rewards_balance" + ], + [ + "how many delta miles are on my card right now", + "rewards_balance" + ], + [ + "how many rewards do i have on my chase card", + "rewards_balance" + ], + [ + "how do i find out my rewards balance on my chase card", + "rewards_balance" + ], + [ + "can i check my visa reward balance online", + "rewards_balance" + ], + [ + "when can i receive rewards on my visa card", + "rewards_balance" + ], + [ + "how do i check how many rewards i have on my master card", + "rewards_balance" + ], + [ + "how do i check my rewards for my gold card", + "rewards_balance" + ], + [ + "what rewards does my gold card get", + "rewards_balance" + ], + [ + "where do i find my gold card rewards", + "rewards_balance" + ], + [ + "what is the number of remaining rewards points on my chase card", + "rewards_balance" + ], + [ + "i need to find out the rewards points i have left on my american express card", + "rewards_balance" + ], + [ + "what is the amount of rewards points on my visa card", + "rewards_balance" + ], + [ + "do you know how many rewards points are currently on my discover card", + "rewards_balance" + ], + [ + "does my mastercard have any rewards points remaining", + "rewards_balance" + ], + [ + "put my points up for master card", + "rewards_balance" + ], + [ + "figure out my reward points for discovery card", + "rewards_balance" + ], + [ + "add all of my points for my current discover card", + "rewards_balance" + ], + [ + "calculate my points for visa", + "rewards_balance" + ], + [ + "add up my reward points for master card", + "rewards_balance" + ], + [ + "what the current balance of reward points on my mastercard", + "rewards_balance" + ], + [ + "what's my reward balance on my amex card", + "rewards_balance" + ], + [ + "how do i get my rewards balance on my diner's club card", + "rewards_balance" + ], + [ + "how many reward points does my discover card have", + "rewards_balance" + ], + [ + "tell me how to check rewards on my american express card", + "rewards_balance" + ], + [ + "i want to pay my bill, please", + "pay_bill" + ], + [ + "pay my water bill with my charles schwab account", + "pay_bill" + ], + [ + "i'd like to pay my bill", + "pay_bill" + ], + [ + "pay my internet bill with my discover account", + "pay_bill" + ], + [ + "can you help me pay a bill", + "pay_bill" + ], + [ + "i need to pay my bill", + "pay_bill" + ], + [ + "can i pay a bill", + "pay_bill" + ], + [ + "use my capital one account to pay for my gas bill", + "pay_bill" + ], + [ + "pay my electric bill from my amex account", + "pay_bill" + ], + [ + "i want to pay my house bill", + "pay_bill" + ], + [ + "i want to pay my car bill", + "pay_bill" + ], + [ + "i want to pay my insurance bill", + "pay_bill" + ], + [ + "i want to pay my tax bill", + "pay_bill" + ], + [ + "i need help paying my auto insurance bill", + "pay_bill" + ], + [ + "i need help paying my hoa bill", + "pay_bill" + ], + [ + "i need help paying my tuition bill", + "pay_bill" + ], + [ + "i need help paying my phone bill", + "pay_bill" + ], + [ + "my water bill is due, pay it immediately", + "pay_bill" + ], + [ + "i need to pay my water bill", + "pay_bill" + ], + [ + "please go ahead and make my student loan payment", + "pay_bill" + ], + [ + "go ahead and pay my american express bill now", + "pay_bill" + ], + [ + "i need to pay my electric bill now", + "pay_bill" + ], + [ + "can you assist me in paying my electric bill", + "pay_bill" + ], + [ + "i want to do a payment on my water bill", + "pay_bill" + ], + [ + "pay my mortgage from my checkings accounts", + "pay_bill" + ], + [ + "do a car payment from my savings account", + "pay_bill" + ], + [ + "can you give me a hand paying my water bill", + "pay_bill" + ], + [ + "i want to pay off my student loan", + "pay_bill" + ], + [ + "i need a bit of hand holding getting my trash bill paid", + "pay_bill" + ], + [ + "i need to pay my mortgage", + "pay_bill" + ], + [ + "are you able to help me pay my mortgage", + "pay_bill" + ], + [ + "i want to pay my car payment", + "pay_bill" + ], + [ + "i need to pay this month's tv subscription fee", + "pay_bill" + ], + [ + "will you aid me in paying my insurance premium", + "pay_bill" + ], + [ + "pay a bribe using my money market account", + "pay_bill" + ], + [ + "use my savings account to the pay the rent", + "pay_bill" + ], + [ + "use my checkings account to pay the electric bill", + "pay_bill" + ], + [ + "i'd like to pay my coned bill", + "pay_bill" + ], + [ + "please help with paying my cell phone bill", + "pay_bill" + ], + [ + "i'd like to make a payment on my credit card bill", + "pay_bill" + ], + [ + "i would like to pay my cell phone bill", + "pay_bill" + ], + [ + "please help me pay my cable bill", + "pay_bill" + ], + [ + "please tell me how to pay my gas bill", + "pay_bill" + ], + [ + "i need to get help paying my gas bill", + "pay_bill" + ], + [ + "i need help to pay my electric bill", + "pay_bill" + ], + [ + "can you help me pay my phone bill", + "pay_bill" + ], + [ + "will you take my bill payment", + "pay_bill" + ], + [ + "is it possible to pay my bill", + "pay_bill" + ], + [ + "how can i pay my bill", + "pay_bill" + ], + [ + "can i pay my bill", + "pay_bill" + ], + [ + "use my park bank account to pay my electric bill", + "pay_bill" + ], + [ + "pay my electric bill from my park bank account", + "pay_bill" + ], + [ + "pay my gas bill from my saving account", + "pay_bill" + ], + [ + "pay my cable bill from my facebook account", + "pay_bill" + ], + [ + "pay my cell bill from my deposit account", + "pay_bill" + ], + [ + "pay my electric bill from my paypal account", + "pay_bill" + ], + [ + "pay my water bill from my checking account", + "pay_bill" + ], + [ + "pay my phoe bill with my debit card", + "pay_bill" + ], + [ + "schedule a gas bill payment", + "pay_bill" + ], + [ + "pay the cable bill with my visa card", + "pay_bill" + ], + [ + "pay the red cross the monthly donation", + "pay_bill" + ], + [ + "i want to pay my internet bill", + "pay_bill" + ], + [ + "i want to pay my gas bill", + "pay_bill" + ], + [ + "i want to pay my electric bill", + "pay_bill" + ], + [ + "i want to pay my rent bill", + "pay_bill" + ], + [ + "i want to pay my water bill", + "pay_bill" + ], + [ + "make a payment on the electric bill", + "pay_bill" + ], + [ + "help me pay my electric bill", + "pay_bill" + ], + [ + "pay the electric bill", + "pay_bill" + ], + [ + "pay electric", + "pay_bill" + ], + [ + "please pay electric bill", + "pay_bill" + ], + [ + "i got to pay my cable bill", + "pay_bill" + ], + [ + "i need help paying my store bill", + "pay_bill" + ], + [ + "i wanna pay my cable bill from my checking account", + "pay_bill" + ], + [ + "i need help paying my cable bill", + "pay_bill" + ], + [ + "pay my cable bill from my checking account", + "pay_bill" + ], + [ + "i must pay my cable bill from my checking account", + "pay_bill" + ], + [ + "i gotta pay my cable bill", + "pay_bill" + ], + [ + "i must pay my cable bill", + "pay_bill" + ], + [ + "i wish to pay my cable bill", + "pay_bill" + ], + [ + "i need to pay my cable bill", + "pay_bill" + ], + [ + "i need help paying my rent bill", + "pay_bill" + ], + [ + "i need help paying my water bill", + "pay_bill" + ], + [ + "i really want to pay my cable bill from my checking account", + "pay_bill" + ], + [ + "i need help paying my electric bill", + "pay_bill" + ], + [ + "i need to pay my cable bill from my checking account", + "pay_bill" + ], + [ + "what's the best way to pay my bill", + "pay_bill" + ], + [ + "i'd really like to pay this bill", + "pay_bill" + ], + [ + "can you help me pay this bill", + "pay_bill" + ], + [ + "i am not sure how to pay my phone bill and need assistance", + "pay_bill" + ], + [ + "i need to make a bill payment", + "pay_bill" + ], + [ + "please pay my bill", + "pay_bill" + ], + [ + "can anyone help me pay my car bill", + "pay_bill" + ], + [ + "i want to pay that bill now", + "pay_bill" + ], + [ + "is there anyone available to help pay an internet bill", + "pay_bill" + ], + [ + "i need anyone who can help me pay my electric bill", + "pay_bill" + ], + [ + "help me pay my cable bill", + "pay_bill" + ], + [ + "can you pay the bill now", + "pay_bill" + ], + [ + "i need your help to pay my gas bill", + "pay_bill" + ], + [ + "pay my insurance bill", + "pay_bill" + ], + [ + "how much did i spend at restaurants last week", + "spending_history" + ], + [ + "how much have i spent lately on eating out", + "spending_history" + ], + [ + "what did i spend at the grocery store yesterday", + "spending_history" + ], + [ + "how much money did i spend at starbucks in the last week", + "spending_history" + ], + [ + "what was the total i spent at home depot last month", + "spending_history" + ], + [ + "where did all my money go this month", + "spending_history" + ], + [ + "what have my expenditures been at macys", + "spending_history" + ], + [ + "how much did i spend this week", + "spending_history" + ], + [ + "how much did i spend on christmas gifts in december", + "spending_history" + ], + [ + "how much money did i spend yesterday", + "spending_history" + ], + [ + "what did i spend at bath and body works last month", + "spending_history" + ], + [ + "how much did i spend on lunches last week", + "spending_history" + ], + [ + "what amount did i spend last week", + "spending_history" + ], + [ + "what did i spend my money on last week", + "spending_history" + ], + [ + "how much did i spend on movies last week", + "spending_history" + ], + [ + "have i been spending a lot on groceries lately", + "spending_history" + ], + [ + "have i been spending a lot on shoes lately", + "spending_history" + ], + [ + "have i been spending a lot on food lately", + "spending_history" + ], + [ + "have i been spending a lot on alcohol lately", + "spending_history" + ], + [ + "have i been spending a lot on take out lately", + "spending_history" + ], + [ + "how much have i spent on shoes lately", + "spending_history" + ], + [ + "did i spend a lot on shoes recently", + "spending_history" + ], + [ + "how much have i spent on shoes", + "spending_history" + ], + [ + "have i have been spending a lot of money on shoes", + "spending_history" + ], + [ + "what is the total i spent on shoes recently", + "spending_history" + ], + [ + "what have i spent over the last few days", + "spending_history" + ], + [ + "how much have i spent recently", + "spending_history" + ], + [ + "how much money have i dropped recently", + "spending_history" + ], + [ + "how much money have i spent this month", + "spending_history" + ], + [ + "what's the amount of money i spent yesterday", + "spending_history" + ], + [ + "could you tell me how much i've spent over the past two weeks", + "spending_history" + ], + [ + "how much money have i spent this week", + "spending_history" + ], + [ + "could you tell me how much money i spent last week", + "spending_history" + ], + [ + "please tell me how much i have spent recently", + "spending_history" + ], + [ + "how much did i spend last week", + "spending_history" + ], + [ + "can you tell me my spending history from last week", + "spending_history" + ], + [ + "i want to know how much i spent last week", + "spending_history" + ], + [ + "i want to know my recent spending", + "spending_history" + ], + [ + "how much have i paid for rent in the last 6 months", + "spending_history" + ], + [ + "how much money have i spent on groceries recently", + "spending_history" + ], + [ + "how much did i spend on groceries today", + "spending_history" + ], + [ + "how much have i spent eating out this week", + "spending_history" + ], + [ + "what chunk of my income have i spent on rent this year", + "spending_history" + ], + [ + "what's it been costing me to buy three packs a day", + "spending_history" + ], + [ + "what have car repairs ran me this month", + "spending_history" + ], + [ + "what has gas cost me this week", + "spending_history" + ], + [ + "what did car insurance run me this year", + "spending_history" + ], + [ + "what's the total amount i've spent eating out in the last two weeks", + "spending_history" + ], + [ + "how much have i spent on alcohol recently", + "spending_history" + ], + [ + "how much have i spent on books recently", + "spending_history" + ], + [ + "how much have i spent on food recently", + "spending_history" + ], + [ + "how much have i spent on bills recently", + "spending_history" + ], + [ + "how much have i spent on clothes recently", + "spending_history" + ], + [ + "i need to know my total spending on amazon for november and december 2018", + "spending_history" + ], + [ + "please list my total spending on grocery shopping for the last two months", + "spending_history" + ], + [ + "how much have i spent on starbucks since the beginning of 2019", + "spending_history" + ], + [ + "what is my total spent on dining out for the month of january", + "spending_history" + ], + [ + "what is the total amount that i have spent on the cash app for this month so far", + "spending_history" + ], + [ + "have i spent a lot on food recently", + "spending_history" + ], + [ + "i need to know what i have spent on food recently", + "spending_history" + ], + [ + "can you tell me what i have spent on food recently", + "spending_history" + ], + [ + "what have i spent on food recently", + "spending_history" + ], + [ + "what is the amount i have spent on food recently", + "spending_history" + ], + [ + "how much have i lately spent on eating out", + "spending_history" + ], + [ + "what have i spent lately in child care", + "spending_history" + ], + [ + "how much have i spent lately on food", + "spending_history" + ], + [ + "how much money have i recently spent on entertainment", + "spending_history" + ], + [ + "how much have i paid in medical expenses recently", + "spending_history" + ], + [ + "how much did i spend on gas last week", + "spending_history" + ], + [ + "can you tell me what i spend on gas for the past two weeks", + "spending_history" + ], + [ + "yesterday what did i spend on lunch", + "spending_history" + ], + [ + "i need to know what i spend on utilities for the last year", + "spending_history" + ], + [ + "what did i spend on groceries this month", + "spending_history" + ], + [ + "have i been giving lot of money to food to food lately", + "spending_history" + ], + [ + "how much money did i use to spend on catering five hours ago", + "spending_history" + ], + [ + "how much did i spend on gear two weeks ago", + "spending_history" + ], + [ + "have i been spending a lot on roast beef lately", + "spending_history" + ], + [ + "have i been spending a ton of money on movies lately", + "spending_history" + ], + [ + "how much money did i spend on tent equipment four hours ago", + "spending_history" + ], + [ + "how much did i spend on furniture last week", + "spending_history" + ], + [ + "how much did i spend on petrol 2 days ago", + "spending_history" + ], + [ + "how much money did i spend on food last month", + "spending_history" + ], + [ + "would please let me know how much i spent on food in january", + "spending_history" + ], + [ + "could you check my account and let me know how much i spent on food in january", + "spending_history" + ], + [ + "please check and tell me the amount i spent on food last month", + "spending_history" + ], + [ + "let me know the amount i spent on food last month", + "spending_history" + ], + [ + "i have been spending a lot on food out lately", + "spending_history" + ], + [ + "i have spent a lot on groceries lately", + "spending_history" + ], + [ + "i spent a lot on vacations recently", + "spending_history" + ], + [ + "i have been spending a lot on utility bills lately", + "spending_history" + ], + [ + "i have been spending a lot on insurance lately", + "spending_history" + ], + [ + "did i go out to eat more than usual", + "spending_history" + ], + [ + "have i been spending more money at restaurants", + "spending_history" + ], + [ + "how much did i spend on food", + "spending_history" + ], + [ + "how much do i spend going out to eat", + "spending_history" + ], + [ + "what's my going out to eat tab this month vs last month", + "spending_history" + ], + [ + "how much did i spend shopping for clothes today", + "spending_history" + ], + [ + "how much did i spend the past 3 days", + "spending_history" + ], + [ + "how much did i spend on gas the past month", + "spending_history" + ], + [ + "how much have i spent on food in the past week", + "spending_history" + ], + [ + "have they approved my vacation request yet", + "pto_request_status" + ], + [ + "give me the status of my vacation request", + "pto_request_status" + ], + [ + "am i going to be able to get my vacation request", + "pto_request_status" + ], + [ + "i want to check on my vacation request", + "pto_request_status" + ], + [ + "is my vacation approved yet", + "pto_request_status" + ], + [ + "my vacation, has it been approved yet", + "pto_request_status" + ], + [ + "have i been approved for vacation yet", + "pto_request_status" + ], + [ + "am i approved for vacation yet", + "pto_request_status" + ], + [ + "did they approve my day off request", + "pto_request_status" + ], + [ + "is my day off approved", + "pto_request_status" + ], + [ + "did they say yes to my day off request", + "pto_request_status" + ], + [ + "did i get my day off", + "pto_request_status" + ], + [ + "is my day off request approved", + "pto_request_status" + ], + [ + "update on vacation request", + "pto_request_status" + ], + [ + "what is the current status of my vacation request", + "pto_request_status" + ], + [ + "i need status on that vacation request", + "pto_request_status" + ], + [ + "how is my vacation request looking", + "pto_request_status" + ], + [ + "please inform me on my current vacation request status", + "pto_request_status" + ], + [ + "have they recieved my vacation request and approved it", + "pto_request_status" + ], + [ + "will my vacation be approved soon", + "pto_request_status" + ], + [ + "did my vacation get approved", + "pto_request_status" + ], + [ + "do we have good news in the form of vacation approval", + "pto_request_status" + ], + [ + "has my vacation request been acknowledged", + "pto_request_status" + ], + [ + "has my request for vacation days been signed by my supervisor yet", + "pto_request_status" + ], + [ + "has my supervisor approved my vacation", + "pto_request_status" + ], + [ + "has may supervisor approved the vacation days i asked for", + "pto_request_status" + ], + [ + "on my vacation request, what is the latest information", + "pto_request_status" + ], + [ + "what is the news on my vacation request", + "pto_request_status" + ], + [ + "what is the update on my vacation request", + "pto_request_status" + ], + [ + "what is the most recent info for my request for vacation", + "pto_request_status" + ], + [ + "what is the status for what i requested for my vacation", + "pto_request_status" + ], + [ + "tell me about my vacation request", + "pto_request_status" + ], + [ + "update me on my vacation request", + "pto_request_status" + ], + [ + "what about my vacation request", + "pto_request_status" + ], + [ + "has the status of my vacation request changed", + "pto_request_status" + ], + [ + "has my vacation request been updated", + "pto_request_status" + ], + [ + "has my vacation time been signed off on", + "pto_request_status" + ], + [ + "what's my vacation status", + "pto_request_status" + ], + [ + "has my vacation been approved", + "pto_request_status" + ], + [ + "has my vacation been ok'd", + "pto_request_status" + ], + [ + "will i be allowed to take vacation", + "pto_request_status" + ], + [ + "are they going to let me take vacation", + "pto_request_status" + ], + [ + "has my request for vacation time been okayed", + "pto_request_status" + ], + [ + "has my vacation time at work been allowed", + "pto_request_status" + ], + [ + "is walmart going to let me take the vacation time i asked for", + "pto_request_status" + ], + [ + "i'm i okayed for vacation time", + "pto_request_status" + ], + [ + "did you get confirmation my vacation is a go", + "pto_request_status" + ], + [ + "is the request for vacation i filed with my manager at intel approved yet", + "pto_request_status" + ], + [ + "do you know if my vacation request went through", + "pto_request_status" + ], + [ + "has my manager at mcdonald's confirmed i can take vacation", + "pto_request_status" + ], + [ + "have they authorized my vacation", + "pto_request_status" + ], + [ + "i want to know if my vacation request has been approved", + "pto_request_status" + ], + [ + "the status of my day off request, please", + "pto_request_status" + ], + [ + "do you know if my vacation request has been approved", + "pto_request_status" + ], + [ + "has my vacation request been approved", + "pto_request_status" + ], + [ + "what is the status of my vacation request", + "pto_request_status" + ], + [ + "any news for me regarding my day off request", + "pto_request_status" + ], + [ + "i want to know the status of my day off request", + "pto_request_status" + ], + [ + "tell me the status of my vacation request", + "pto_request_status" + ], + [ + "tell me the status of my day off request", + "pto_request_status" + ], + [ + "could you tell me the status of my vacation request", + "pto_request_status" + ], + [ + "i requested some vacation time; has it been approved", + "pto_request_status" + ], + [ + "can you share the status of my day off request", + "pto_request_status" + ], + [ + "was my day off request approved", + "pto_request_status" + ], + [ + "status of my request for vacation", + "pto_request_status" + ], + [ + "what's my day off request's status", + "pto_request_status" + ], + [ + "has my day off request been approved or denied yet", + "pto_request_status" + ], + [ + "has my vacation request been denied or approved yet", + "pto_request_status" + ], + [ + "has my request for the day off been approved yet", + "pto_request_status" + ], + [ + "how is the approval of my day off progressing", + "pto_request_status" + ], + [ + "how is the approval of my day off going", + "pto_request_status" + ], + [ + "whats going on with my day off request", + "pto_request_status" + ], + [ + "any status update on my day off request", + "pto_request_status" + ], + [ + "did you hear back about my day off request", + "pto_request_status" + ], + [ + "is my day off request still pending", + "pto_request_status" + ], + [ + "has anyone looked over my request for a day off", + "pto_request_status" + ], + [ + "has anyone approved my day off request", + "pto_request_status" + ], + [ + "how's my day off request looking", + "pto_request_status" + ], + [ + "has my day off request been looked at yet", + "pto_request_status" + ], + [ + "i need you to let me know what the status of my day off request is", + "pto_request_status" + ], + [ + "please let me know what the status of my day off request is", + "pto_request_status" + ], + [ + "could you tell me what the status of my day off request is", + "pto_request_status" + ], + [ + "would you tell me what the status of my day of request is", + "pto_request_status" + ], + [ + "i need to know the status of my day off request", + "pto_request_status" + ], + [ + "has my vacation request been approved yet", + "pto_request_status" + ], + [ + "has my vacation been approved yet", + "pto_request_status" + ], + [ + "has my time off request been approved yet", + "pto_request_status" + ], + [ + "check on the status of my vacation request please", + "pto_request_status" + ], + [ + "please check to see if my vacation request has been updated", + "pto_request_status" + ], + [ + "please find out the status of my vacation request", + "pto_request_status" + ], + [ + "do you know if my vacation was approved yet or not", + "pto_request_status" + ], + [ + "please tell me if my vacation has been approved or not", + "pto_request_status" + ], + [ + "can you look into the status of my vacation request", + "pto_request_status" + ], + [ + "i want to know what the latest is on my vacation request i submitted", + "pto_request_status" + ], + [ + "i need to know if my vacation was approved", + "pto_request_status" + ], + [ + "please check to see if my vacation has been approved", + "pto_request_status" + ], + [ + "do you know if my vacation request is still pending", + "pto_request_status" + ], + [ + "can you find out if my vacation time off request has been approved or not", + "pto_request_status" + ], + [ + "i sent in a request for vacation time off and am wondering if its been approved yet", + "pto_request_status" + ], + [ + "i haven't heard if my request for time off for vacation has been approved , can you get an update for me", + "pto_request_status" + ], + [ + "how do i look up my credit score", + "credit_score" + ], + [ + "please look up my credit score", + "credit_score" + ], + [ + "can you figure out how to find my credit score", + "credit_score" + ], + [ + "are you able to lookup my credit rating", + "credit_score" + ], + [ + "how can i find my credit rating", + "credit_score" + ], + [ + "where can i check my credit rating", + "credit_score" + ], + [ + "say my credit score", + "credit_score" + ], + [ + "give me my credit score", + "credit_score" + ], + [ + "i want my credit score", + "credit_score" + ], + [ + "inform me of my credit score", + "credit_score" + ], + [ + "clue me in on my credit score", + "credit_score" + ], + [ + "provide me with my credit score", + "credit_score" + ], + [ + "my credit score is", + "credit_score" + ], + [ + "i need my credit score", + "credit_score" + ], + [ + "find my credit score for me", + "credit_score" + ], + [ + "what is my credit score", + "credit_score" + ], + [ + "please get my credit score", + "credit_score" + ], + [ + "can you find my credit score", + "credit_score" + ], + [ + "i'd like to know what my credit rating is", + "credit_score" + ], + [ + "please tell me my credit rating", + "credit_score" + ], + [ + "what in the world is my credit rating", + "credit_score" + ], + [ + "my credit score is what", + "credit_score" + ], + [ + "tell me my credit score please", + "credit_score" + ], + [ + "can you tell me my credit score", + "credit_score" + ], + [ + "find my credit score and tell it to me", + "credit_score" + ], + [ + "get my credit score", + "credit_score" + ], + [ + "what is my exact credit score", + "credit_score" + ], + [ + "how good is my credit score", + "credit_score" + ], + [ + "what's my credit score rating", + "credit_score" + ], + [ + "what kind of credit score do i have", + "credit_score" + ], + [ + "if i want my credit score, how do i find it", + "credit_score" + ], + [ + "how do i find information about my credit score", + "credit_score" + ], + [ + "what is the process of finding my credit score", + "credit_score" + ], + [ + "how do i get my credit score", + "credit_score" + ], + [ + "how do i locate my current credit score", + "credit_score" + ], + [ + "where is my credit score", + "credit_score" + ], + [ + "how do i see my credit score", + "credit_score" + ], + [ + "how exactly do i find my credit score", + "credit_score" + ], + [ + "how do i locate my credit score", + "credit_score" + ], + [ + "how do i find out what my credit score is", + "credit_score" + ], + [ + "i really wanna know my credit score", + "credit_score" + ], + [ + "i wish to know my credit rating", + "credit_score" + ], + [ + "let me understand my credit rating", + "credit_score" + ], + [ + "i wanna know my credit rating now", + "credit_score" + ], + [ + "i gotta know my credit score", + "credit_score" + ], + [ + "tell me my credit rating", + "credit_score" + ], + [ + "i would love to know my credit score", + "credit_score" + ], + [ + "i wish to know my credit score", + "credit_score" + ], + [ + "i wanna know my credit score", + "credit_score" + ], + [ + "tell me what my credit rating is", + "credit_score" + ], + [ + "can you provide me my credit score", + "credit_score" + ], + [ + "i'd like the number for my credit score", + "credit_score" + ], + [ + "tell me my credit score", + "credit_score" + ], + [ + "verify with me my credit score", + "credit_score" + ], + [ + "can you help me find my credit score", + "credit_score" + ], + [ + "would you tell me my credit score", + "credit_score" + ], + [ + "how do i find my credit score", + "credit_score" + ], + [ + "will you tell me my credit score", + "credit_score" + ], + [ + "do you know my credit score", + "credit_score" + ], + [ + "how to see my credit score", + "credit_score" + ], + [ + "can i see my credit score", + "credit_score" + ], + [ + "hows my credit score", + "credit_score" + ], + [ + "websites that share credit ratings", + "credit_score" + ], + [ + "what's my credit rating", + "credit_score" + ], + [ + "how do i find out my credit rating", + "credit_score" + ], + [ + "how to locate my credit score", + "credit_score" + ], + [ + "where is my credit score located", + "credit_score" + ], + [ + "where can i find my credit score", + "credit_score" + ], + [ + "find my credit score", + "credit_score" + ], + [ + "tell me the steps to getting my credit score", + "credit_score" + ], + [ + "help me locate my credit score", + "credit_score" + ], + [ + "lets look up my credit score", + "credit_score" + ], + [ + "i would like to look up my credit score please", + "credit_score" + ], + [ + "i want to find out what my credit score is", + "credit_score" + ], + [ + "help me find my credit score", + "credit_score" + ], + [ + "what is my fica score", + "credit_score" + ], + [ + "can you reveal my credit score", + "credit_score" + ], + [ + "how is my credit score rated", + "credit_score" + ], + [ + "any idea what my credit score is", + "credit_score" + ], + [ + "show me my credit score please", + "credit_score" + ], + [ + "let me know what my credit score is", + "credit_score" + ], + [ + "is my credit score high", + "credit_score" + ], + [ + "i am trying to find my credit score", + "credit_score" + ], + [ + "show me my credit score", + "credit_score" + ], + [ + "how does my credit score look", + "credit_score" + ], + [ + "is my credit report low", + "credit_score" + ], + [ + "whats my credit rating", + "credit_score" + ], + [ + "what is my current credit score", + "credit_score" + ], + [ + "where can i check my credit score", + "credit_score" + ], + [ + "where can i see my credit score", + "credit_score" + ], + [ + "how can i find out my credit score", + "credit_score" + ], + [ + "inform me of my current credit rating", + "credit_score" + ], + [ + "please notify me of my credit rating", + "credit_score" + ], + [ + "i would like to be told about my credit rating", + "credit_score" + ], + [ + "can you tell me about my credit rating", + "credit_score" + ], + [ + "tell me my current credit rating", + "credit_score" + ], + [ + "what is the number of my credit score", + "credit_score" + ], + [ + "what's my credit score", + "credit_score" + ], + [ + "let me know my credit score", + "credit_score" + ], + [ + "how is my credit score", + "credit_score" + ], + [ + "how can i apply for a discover card", + "new_card" + ], + [ + "can i apply for a discover card", + "new_card" + ], + [ + "how do applications for discover cards work", + "new_card" + ], + [ + "is this how i apply for a discover card", + "new_card" + ], + [ + "what does it take to get a new card", + "new_card" + ], + [ + "how do i sign up for a new credit card", + "new_card" + ], + [ + "can i complete an application for a new credit card", + "new_card" + ], + [ + "is it possible to get a new credit card", + "new_card" + ], + [ + "please show me how to apply for a visa card", + "new_card" + ], + [ + "i need to apply for a visa card", + "new_card" + ], + [ + "i need to know how to apply for a visa card", + "new_card" + ], + [ + "tell me how to apply for a visa card", + "new_card" + ], + [ + "what is the process to apply for a visa card", + "new_card" + ], + [ + "show me how to apply for a visa card", + "new_card" + ], + [ + "can you let me know the info on how to apply for a visa card", + "new_card" + ], + [ + "visa card, i want to apply", + "new_card" + ], + [ + "show me the application for a visa card", + "new_card" + ], + [ + "how do i get a new credit card sent to me", + "new_card" + ], + [ + "can you send me a new credit card please mine is getting old and unusable", + "new_card" + ], + [ + "can you apply for idaho independent card for me", + "new_card" + ], + [ + "please apply cc visa card for me", + "new_card" + ], + [ + "apply for a kbc card for me", + "new_card" + ], + [ + "i want to apply for a alphabank card", + "new_card" + ], + [ + "i would like to apply for a bank of america travel rewards credit card", + "new_card" + ], + [ + "i need to apply for a new credit card", + "new_card" + ], + [ + "i wanna apply for a new credit card", + "new_card" + ], + [ + "i got to apply for a new credit card", + "new_card" + ], + [ + "i wanna apply for a bank of america travel rewards credit card", + "new_card" + ], + [ + "i need to apply for a bank of america travel rewards credit card", + "new_card" + ], + [ + "i desire to apply for a bank of america travel rewards credit card", + "new_card" + ], + [ + "apply for a bank of america travel rewards credit card", + "new_card" + ], + [ + "i must apply for a new credit card", + "new_card" + ], + [ + "i gotta apply for a new credit card", + "new_card" + ], + [ + "i would like to apply for a master card", + "new_card" + ], + [ + "i would like to apply for a green card", + "new_card" + ], + [ + "i would like to apply for a visa card", + "new_card" + ], + [ + "i would like to apply for a credit card", + "new_card" + ], + [ + "i would like to apply for a discover card", + "new_card" + ], + [ + "what's the procedure to apply for a new credit card", + "new_card" + ], + [ + "how can i get a new credit card", + "new_card" + ], + [ + "direct me to the application for a new credit card", + "new_card" + ], + [ + "apply for an american express card", + "new_card" + ], + [ + "can you tell me if i might be able to apply for a new credit card", + "new_card" + ], + [ + "might i be able to apply for a new credit card", + "new_card" + ], + [ + "can you help me apply for a visa card", + "new_card" + ], + [ + "i want to apply for a discover card", + "new_card" + ], + [ + "am i eligible for a new credit card application", + "new_card" + ], + [ + "is it possible to apply for a new credit card", + "new_card" + ], + [ + "i think i'd like to apply for an amex", + "new_card" + ], + [ + "am i able to apply for a new credit card", + "new_card" + ], + [ + "application for a mastercard", + "new_card" + ], + [ + "can i get a new card", + "new_card" + ], + [ + "i would like to apply for a new card", + "new_card" + ], + [ + "can i maybe apply for a new card", + "new_card" + ], + [ + "can i please get a new card", + "new_card" + ], + [ + "can i get a brand new card please", + "new_card" + ], + [ + "list the steps for applying for an american express card", + "new_card" + ], + [ + "what's the process for getting an american express card", + "new_card" + ], + [ + "what do i need to do to get an american express card", + "new_card" + ], + [ + "help me get an american express card", + "new_card" + ], + [ + "help me apply for an american express card", + "new_card" + ], + [ + "i am hoping to apply for an amex card", + "new_card" + ], + [ + "i want to find a new credit card to sign up for", + "new_card" + ], + [ + "how do i apply for a barclay's card", + "new_card" + ], + [ + "walk me through the process of applying for an american express card", + "new_card" + ], + [ + "i need help figuring out a new credit card to get", + "new_card" + ], + [ + "i am interested in applying for a visa card", + "new_card" + ], + [ + "i am interested in acquiring a new credit card", + "new_card" + ], + [ + "i want to apply for a mastercard", + "new_card" + ], + [ + "walk me through applying for a visa card", + "new_card" + ], + [ + "i want to submit an application for a barclay's card", + "new_card" + ], + [ + "can you help me sign up for a new credit card", + "new_card" + ], + [ + "i need to know how to apply for a mastercard", + "new_card" + ], + [ + "i intend to apply for an american express card", + "new_card" + ], + [ + "tell me how to apply for an american express card", + "new_card" + ], + [ + "i feel like it is time for me to sign up for a new credit card", + "new_card" + ], + [ + "how to apply for platinum card", + "new_card" + ], + [ + "i would like to apply for a air canada card visa, can you help me", + "new_card" + ], + [ + "please help me apply for a silver card", + "new_card" + ], + [ + "tell me the process of applying for a apollo card", + "new_card" + ], + [ + "can you tell me how to apply for a western card", + "new_card" + ], + [ + "how can i apply for a visa card", + "new_card" + ], + [ + "how can i apply for a visa card, please", + "new_card" + ], + [ + "how do i apply for a visa card, please", + "new_card" + ], + [ + "how can i apply for a mastercard, please", + "new_card" + ], + [ + "what if you need to obtain a new credit card", + "new_card" + ], + [ + "what if you want to obtain a new credit card", + "new_card" + ], + [ + "what if you want a new credit card", + "new_card" + ], + [ + "what if you need to get a new credit card", + "new_card" + ], + [ + "show me how i can get a new credit card", + "new_card" + ], + [ + "can you help me find out how to get a new credit card", + "new_card" + ], + [ + "how do i get a new credit card", + "new_card" + ], + [ + "can you help me get a new credit card", + "new_card" + ], + [ + "what is the process i need to follow to get a new credit card", + "new_card" + ], + [ + "may i apply for a new credit card", + "new_card" + ], + [ + "how do i go about applying for a new credit card", + "new_card" + ], + [ + "i would like to apply for a new credit card", + "new_card" + ], + [ + "could you please let me apply for a new credit card", + "new_card" + ], + [ + "is it possible to apply for a visa card", + "new_card" + ], + [ + "hey what do i do to apply for a visa card", + "new_card" + ], + [ + "locate lost luggage from flight america airlines in o'hare", + "lost_luggage" + ], + [ + "on flight america airlines in o'hare lost luggage", + "lost_luggage" + ], + [ + "in o'hare lost luggage on flight america airlines", + "lost_luggage" + ], + [ + "lost luggage on flight america airlines in o'hare", + "lost_luggage" + ], + [ + "while on flight america airlines i lost luggage in o'hare", + "lost_luggage" + ], + [ + "it seems my luggage was lost", + "lost_luggage" + ], + [ + "my luggage was lost so what do i do", + "lost_luggage" + ], + [ + "my luggage is missing i was on spirit flight ab123 from chicago", + "lost_luggage" + ], + [ + "i think my luggage has been lost", + "lost_luggage" + ], + [ + "i think my luggage was misplaced or has been lost", + "lost_luggage" + ], + [ + "i lost my luggage coming from new york city on american flight ab123", + "lost_luggage" + ], + [ + "what step do i take if my bag got lost on the flight", + "lost_luggage" + ], + [ + "i lost my luggage coming from chicago on delta flight ab123", + "lost_luggage" + ], + [ + "what is the next step if my luggage was lost", + "lost_luggage" + ], + [ + "i lost my luggage, what now", + "lost_luggage" + ], + [ + "i lost my luggage", + "lost_luggage" + ], + [ + "my luggage is missing i was on frontier flight ab123 from seattle", + "lost_luggage" + ], + [ + "my luggage was lost on the flight", + "lost_luggage" + ], + [ + "my luggage is lost i was on delta flight ab123 from detroit", + "lost_luggage" + ], + [ + "can you please help me find my lost luggage", + "lost_luggage" + ], + [ + "my luggage has not arrived and i would like help locating it", + "lost_luggage" + ], + [ + "my luggage has not arrived and i would like assistance locating it", + "lost_luggage" + ], + [ + "can you please help me locate my luggage", + "lost_luggage" + ], + [ + "my luggage is lost and i would like help trying to locate it", + "lost_luggage" + ], + [ + "im at lax and my bags aren't", + "lost_luggage" + ], + [ + "my bags did not arrive here at smf", + "lost_luggage" + ], + [ + "i got to vegas airport but my bags didn't", + "lost_luggage" + ], + [ + "where are my bags, not here at the airport", + "lost_luggage" + ], + [ + "my bags didn't make it to the new orleans airport", + "lost_luggage" + ], + [ + "i'm not able to find my luggage and i was on southwest airlines flight ab123 out of houston", + "lost_luggage" + ], + [ + "my luggage is missing i was on american airlines flight ab123 out of dallas", + "lost_luggage" + ], + [ + "i just traveled on american airlines flight ab123 out of dallas i can't find my luggage", + "lost_luggage" + ], + [ + "i flew on southwest airlines flight ab123 out of dallas and i can not find my luggage", + "lost_luggage" + ], + [ + "i was on american airlines flight ab123 out of houston and i can't find my luggage", + "lost_luggage" + ], + [ + "what if i lost my luggage", + "lost_luggage" + ], + [ + "help, i lost my luggage", + "lost_luggage" + ], + [ + "what to do if luggage lost", + "lost_luggage" + ], + [ + "how to find lost luggage", + "lost_luggage" + ], + [ + "what do you do if your luggage is missing", + "lost_luggage" + ], + [ + "what is the best way to deal with my lost luggage", + "lost_luggage" + ], + [ + "i'm in baggage claim at the airport and my luggage didn't make it", + "lost_luggage" + ], + [ + "who can i turn to if i lost my luggage", + "lost_luggage" + ], + [ + "i'm waiting for my luggage in the airport now but it's been a while and it's still not arrived", + "lost_luggage" + ], + [ + "where do i begin the process of reporting my luggage lost", + "lost_luggage" + ], + [ + "my luggage is nowhere in sight, it might be lost", + "lost_luggage" + ], + [ + "if i lost my luggage, where can i get help", + "lost_luggage" + ], + [ + "i believe it looks like my luggage has disappeared", + "lost_luggage" + ], + [ + "my luggage is missing, i think", + "lost_luggage" + ], + [ + "it appears that my luggage has vanished", + "lost_luggage" + ], + [ + "can you tell me what to do as i am in the airport and have been for some time and there is still no sign of my suitcase", + "lost_luggage" + ], + [ + "there's a strong possibility that my luggage has gone missing", + "lost_luggage" + ], + [ + "how do i handle the situation if i lost my luggage", + "lost_luggage" + ], + [ + "is there someone i can talk to since i am in the airport waiting for my luggage which never came", + "lost_luggage" + ], + [ + "what should i do if i'm waiting at the airport and my luggage is not here", + "lost_luggage" + ], + [ + "i think my luggage got lost", + "lost_luggage" + ], + [ + "i believe that my luggage was lost", + "lost_luggage" + ], + [ + "it looks as though my luggage has been lost", + "lost_luggage" + ], + [ + "i don't know where my luggage is", + "lost_luggage" + ], + [ + "i'm having trouble finding my luggage i was on delta flight ab123 out of new york", + "lost_luggage" + ], + [ + "i was on delta flight ab123 out of new york and i can't find my luggage", + "lost_luggage" + ], + [ + "i miss placed my luggage i was on delta flight ab123 out of new york", + "lost_luggage" + ], + [ + "my luggage is lost i was on delta flight ab123 out of new york", + "lost_luggage" + ], + [ + "i was on delta flight ab123 out of new york and haven't been able to locate my luggage", + "lost_luggage" + ], + [ + "my luggage appears to be missing", + "lost_luggage" + ], + [ + "i need to find my luggage", + "lost_luggage" + ], + [ + "do you know where my luggage is", + "lost_luggage" + ], + [ + "i can't find my luggage anywhere and there's no more on the conveyor", + "lost_luggage" + ], + [ + "can you see if you can track where my luggage is", + "lost_luggage" + ], + [ + "what the heck, where's my luggage!", + "lost_luggage" + ], + [ + "i can't find any of my luggage!", + "lost_luggage" + ], + [ + "do you know where the luggage for people on panam flight ab123 out of tuscon is", + "lost_luggage" + ], + [ + "who do i report lost luggage to", + "lost_luggage" + ], + [ + "i'm here at dia but my luggage isn't!", + "lost_luggage" + ], + [ + "find me the number for jet blue's customer service so i can yell at someone about my missing luggage", + "lost_luggage" + ], + [ + "can you help me locate lost luggage", + "lost_luggage" + ], + [ + "how do i find lost luggage", + "lost_luggage" + ], + [ + "i arrived on delta flight ab123 from juno but my luggage doesn't appear to have come with me", + "lost_luggage" + ], + [ + "what's the procedure to deal with lost luggage", + "lost_luggage" + ], + [ + "i just flew in on american airlines flight ab123 from chicago and can't find my luggage", + "lost_luggage" + ], + [ + "can you check where my luggage is off jetblue flight ab123 out of buffalo", + "lost_luggage" + ], + [ + "where's my luggage for american airlines flight ab123 out of denver", + "lost_luggage" + ], + [ + "how do i go about resolving my luggage that didn't arrive", + "lost_luggage" + ], + [ + "can you find out what happened to my luggage", + "lost_luggage" + ], + [ + "do you know whom i should contact since my luggage did not arrive", + "lost_luggage" + ], + [ + "my luggage did not arrive, please investigate", + "lost_luggage" + ], + [ + "where is my luggage, i was on delta flight ab123 out of dc", + "lost_luggage" + ], + [ + "i need my luggage found, i was on delta flight ab123 out of san francisco", + "lost_luggage" + ], + [ + "i can't locate my luggage, i was on jetblue flight ab123 out of detroit", + "lost_luggage" + ], + [ + "my luggage is lost, i was on american airlines ab123 out of los angeles", + "lost_luggage" + ], + [ + "i need assistance with my lost luggage, i was on american airlines ab123 out of talahasse", + "lost_luggage" + ], + [ + "help me find my luggage", + "lost_luggage" + ], + [ + "tell me where my luggage is", + "lost_luggage" + ], + [ + "how do i find lost luggage in an airport", + "lost_luggage" + ], + [ + "i need to figure out what to do about lost luggage", + "lost_luggage" + ], + [ + "my luggage is lost,what do i do now", + "lost_luggage" + ], + [ + "who do i go to to find lost luggage", + "lost_luggage" + ], + [ + "who do i complain to about my luggage not arriving at the airport", + "lost_luggage" + ], + [ + "can you help me find my luggage it was lost on delta flight abc123 from houston", + "lost_luggage" + ], + [ + "i need my luggage that your airline lost it was flight abc123 and now it\u2019s suddenly missing", + "lost_luggage" + ], + [ + "my luggage was on delta flight abc123 out of houston and now i can\u2019t find it", + "lost_luggage" + ], + [ + "i didn't hear you please repeat", + "repeat" + ], + [ + "please repeat", + "repeat" + ], + [ + "i want you to repeat that", + "repeat" + ], + [ + "one more time please", + "repeat" + ], + [ + "i need you to repeat that", + "repeat" + ], + [ + "i need you to please repeat that", + "repeat" + ], + [ + "one more time for me please", + "repeat" + ], + [ + "i would like that repeated", + "repeat" + ], + [ + "just another time please", + "repeat" + ], + [ + "say it again please", + "repeat" + ], + [ + "i must have you repeat that", + "repeat" + ], + [ + "say it again", + "repeat" + ], + [ + "i need that repeated", + "repeat" + ], + [ + "just one more time", + "repeat" + ], + [ + "i want to have that repeated for me", + "repeat" + ], + [ + "i want that repeated", + "repeat" + ], + [ + "ai what was the question", + "repeat" + ], + [ + "ai i didn't hear you", + "repeat" + ], + [ + "ai please repeat", + "repeat" + ], + [ + "ai could you say that again", + "repeat" + ], + [ + "excuse me", + "repeat" + ], + [ + "i did not hear you", + "repeat" + ], + [ + "i didn't get that, please repeat", + "repeat" + ], + [ + "please repeat yourself", + "repeat" + ], + [ + "i didn't catch that, please repeat", + "repeat" + ], + [ + "can you say that over", + "repeat" + ], + [ + "restate the last thing you told me", + "repeat" + ], + [ + "repeat what you just said", + "repeat" + ], + [ + "i didn't catch that say it again", + "repeat" + ], + [ + "what was that last thing you said", + "repeat" + ], + [ + "repeat what you just told me", + "repeat" + ], + [ + "please say that one more time", + "repeat" + ], + [ + "hold on what was that you just said", + "repeat" + ], + [ + "repeat that last response", + "repeat" + ], + [ + "i need you to repeat that, please", + "repeat" + ], + [ + "i did not quite hear you, can you say it again", + "repeat" + ], + [ + "can you please repeat that response", + "repeat" + ], + [ + "i did not hear you, please repeat", + "repeat" + ], + [ + "say it one more time please", + "repeat" + ], + [ + "i didn't hear, please say it again", + "repeat" + ], + [ + "im sorry can you repeat yourself", + "repeat" + ], + [ + "i missed what you said, can you say it again", + "repeat" + ], + [ + "i couldn't hear you, can you repeat it", + "repeat" + ], + [ + "i didn't hear say it again please", + "repeat" + ], + [ + "can you repeat yourself", + "repeat" + ], + [ + "i would like you to repeat yourself", + "repeat" + ], + [ + "i missed that last one, please repeat", + "repeat" + ], + [ + "what was that", + "repeat" + ], + [ + "i didn't hear you can you repeat that", + "repeat" + ], + [ + "please repeat that phrase", + "repeat" + ], + [ + "i missed what you said, please say it again", + "repeat" + ], + [ + "can you tell me what you just said", + "repeat" + ], + [ + "will you repeat that, please", + "repeat" + ], + [ + "could you repeat that, please", + "repeat" + ], + [ + "would you repeat that, please", + "repeat" + ], + [ + "would you repeat that", + "repeat" + ], + [ + "would you please ask the question again", + "repeat" + ], + [ + "i am needing for you to say that again", + "repeat" + ], + [ + "i need for you to ask the question again", + "repeat" + ], + [ + "could you ask the question again", + "repeat" + ], + [ + "i am going to need you to say that again", + "repeat" + ], + [ + "would you say that again, please", + "repeat" + ], + [ + "repeat the question", + "repeat" + ], + [ + "i didn't hear what you said", + "repeat" + ], + [ + "repeat that please", + "repeat" + ], + [ + "i didn't hear you", + "repeat" + ], + [ + "i didnt hear what you just said, can you say it again", + "repeat" + ], + [ + "may you repeat what you said again", + "repeat" + ], + [ + "i didn't hear what you just said, can you repeat it", + "repeat" + ], + [ + "i didn't understand what you just said, can you repeat it", + "repeat" + ], + [ + "i didnt understand what you just said, can you say it again", + "repeat" + ], + [ + "can you say what you just said again", + "repeat" + ], + [ + "could you repeat what you just said again", + "repeat" + ], + [ + "would you repeat what you just said", + "repeat" + ], + [ + "will you please repeat what you said", + "repeat" + ], + [ + "what did you just mention", + "repeat" + ], + [ + "i need that said again", + "repeat" + ], + [ + "i need to know again", + "repeat" + ], + [ + "please say it again", + "repeat" + ], + [ + "tell me once more", + "repeat" + ], + [ + "repeat that again", + "repeat" + ], + [ + "replay what you just said", + "repeat" + ], + [ + "i missed that, say it again", + "repeat" + ], + [ + "could you say that again", + "repeat" + ], + [ + "repeat your last message", + "repeat" + ], + [ + "say it one more time", + "repeat" + ], + [ + "i did not understand say it again", + "repeat" + ], + [ + "can you please sat it one more time", + "repeat" + ], + [ + "i did not catch that, repeat what you just said", + "repeat" + ], + [ + "sorry, i didn't hear you, can you say that gain", + "repeat" + ], + [ + "i didn't hear you, can you repeat that louder", + "repeat" + ], + [ + "i didn't catch that so please repeat it", + "repeat" + ], + [ + "please run that by me again", + "repeat" + ], + [ + "i missed that say it again", + "repeat" + ], + [ + "can you say again", + "repeat" + ], + [ + "please repeat what you just said", + "repeat" + ], + [ + "can i get you to say that once more", + "repeat" + ], + [ + "will you repeat what you just said", + "repeat" + ], + [ + "please repeat over what you said", + "repeat" + ], + [ + "come again with that", + "repeat" + ], + [ + "what kind of mileage do i get out of gas", + "mpg" + ], + [ + "what's the fuel economy of my car", + "mpg" + ], + [ + "how many miles per gallon do i get in my car", + "mpg" + ], + [ + "tell me my car's fuel economy", + "mpg" + ], + [ + "what kind of gas mileage do i get", + "mpg" + ], + [ + "what gas mileage does my car get", + "mpg" + ], + [ + "in my car, what's the fuel economy", + "mpg" + ], + [ + "how many miles per gallon do i get", + "mpg" + ], + [ + "what's my car's gas mileage", + "mpg" + ], + [ + "how many miles per gallon does my car get", + "mpg" + ], + [ + "look up the gas mileage for my vehicle", + "mpg" + ], + [ + "can you tell me the miles per gallon rate of my car", + "mpg" + ], + [ + "tell me my car's gas mileage please", + "mpg" + ], + [ + "what is the gas mileage for the car that i drive", + "mpg" + ], + [ + "how many miles can i drive on 1 gallon of gas", + "mpg" + ], + [ + "how many miles does my car get per gallon", + "mpg" + ], + [ + "what\u2019s my gas mileage", + "mpg" + ], + [ + "retrieve my current mpg on my car", + "mpg" + ], + [ + "tell me the gas mileage on my car", + "mpg" + ], + [ + "tell me my miles per gallon on my car", + "mpg" + ], + [ + "how much mpg does this car get in the city", + "mpg" + ], + [ + "what kind of mpg does this car get in the city", + "mpg" + ], + [ + "how many miles per gallon does it get in the city", + "mpg" + ], + [ + "how many miles per gallon does it get on the highway", + "mpg" + ], + [ + "can you give me the car's mpg for the city", + "mpg" + ], + [ + "what's the mpg for the car when it's on the highway", + "mpg" + ], + [ + "what are the estimates for the car's highway mpg", + "mpg" + ], + [ + "how much highway mpg does it get", + "mpg" + ], + [ + "for city driving, what's the car's mpg", + "mpg" + ], + [ + "how far can the car get per gallon on the highway", + "mpg" + ], + [ + "tell me the mpg of this car", + "mpg" + ], + [ + "can you tell me the mpg of this car", + "mpg" + ], + [ + "how many mpg does this car get", + "mpg" + ], + [ + "mpg of this car", + "mpg" + ], + [ + "what is the mpg of this car", + "mpg" + ], + [ + "what is the mpg", + "mpg" + ], + [ + "how much is this mpg", + "mpg" + ], + [ + "what's my current mpg", + "mpg" + ], + [ + "how much mpg do i have", + "mpg" + ], + [ + "what's my car's miles per gallon", + "mpg" + ], + [ + "calculate car mpg", + "mpg" + ], + [ + "what's my gas mileage like", + "mpg" + ], + [ + "is the fuel economy of this car good or bad", + "mpg" + ], + [ + "average mpg", + "mpg" + ], + [ + "what mpg does my car get", + "mpg" + ], + [ + "what is my average mpg in this car", + "mpg" + ], + [ + "tell me about this cars fuel economy", + "mpg" + ], + [ + "do you know the fuel economy of this car", + "mpg" + ], + [ + "what's the mpg of this car", + "mpg" + ], + [ + "what's the miles per gallon on this car", + "mpg" + ], + [ + "how does this do on gas mileage", + "mpg" + ], + [ + "whats the cars fuel mileage like", + "mpg" + ], + [ + "how does this car do on its fuel", + "mpg" + ], + [ + "what is the city mpg for this car", + "mpg" + ], + [ + "how many miles per gallon does this car get in the city", + "mpg" + ], + [ + "what is the city fuel efficiency for this car", + "mpg" + ], + [ + "what's the fuel economy for this car downtown", + "mpg" + ], + [ + "how many mpg does this rig get when i'm in the city", + "mpg" + ], + [ + "how much gas does this use in the city", + "mpg" + ], + [ + "do you know what this car's mpg is", + "mpg" + ], + [ + "how is this car rated for fuel economy", + "mpg" + ], + [ + "what's this car guzzle in gas when driving in town", + "mpg" + ], + [ + "what mpg does this car get on the expressway", + "mpg" + ], + [ + "what's the non-city mpg for this car", + "mpg" + ], + [ + "what'll this car do for gas mileage on the open road", + "mpg" + ], + [ + "how good is the fuel usage for this vehicle", + "mpg" + ], + [ + "what's this car get for highway driving", + "mpg" + ], + [ + "how much gas does this car use in the city", + "mpg" + ], + [ + "do you know the mpg for this vehicle", + "mpg" + ], + [ + "how's the mpg for this on the freeway", + "mpg" + ], + [ + "how many mpgs does this car get on the highway", + "mpg" + ], + [ + "how's the fuel efficiency for city driving for this car", + "mpg" + ], + [ + "what's this car do for fuel economy", + "mpg" + ], + [ + "what is the amount of miles per gallon this car gets on the highway", + "mpg" + ], + [ + "how many mpg does this get on the highway", + "mpg" + ], + [ + "what is the highway mpg on this car", + "mpg" + ], + [ + "how many miles per gallon does this car get on the highway", + "mpg" + ], + [ + "does this car get good mpg on the highway", + "mpg" + ], + [ + "what is the cars mpg on the highway", + "mpg" + ], + [ + "what is the mpg like for this car while driving in the city", + "mpg" + ], + [ + "what is the mpg on this car", + "mpg" + ], + [ + "how does this cars mpg do on the highway", + "mpg" + ], + [ + "whats the cars mpg", + "mpg" + ], + [ + "please tell me what the mpg is for this car", + "mpg" + ], + [ + "how does this car do with mpg in the city", + "mpg" + ], + [ + "tell me what this cars highway mpg is", + "mpg" + ], + [ + "what is the mpg for this car in city", + "mpg" + ], + [ + "does this car get good mpg in the city", + "mpg" + ], + [ + "what mpg does this car get in city", + "mpg" + ], + [ + "what mpg does this car get on the highway", + "mpg" + ], + [ + "how much mpg does this car get on the highway", + "mpg" + ], + [ + "please look up the this cars mpg", + "mpg" + ], + [ + "my mpg is how much", + "mpg" + ], + [ + "how many miles per gallon am i getting", + "mpg" + ], + [ + "how much is my mpg", + "mpg" + ], + [ + "what's the mileage on my car", + "mpg" + ], + [ + "how expensive is it to fuel this car", + "mpg" + ], + [ + "how many miles will a gallon of gas take this car", + "mpg" + ], + [ + "how many mpg does this car have", + "mpg" + ], + [ + "how far can i go on one tank of gas", + "mpg" + ], + [ + "when should i change my car oil", + "oil_change_when" + ], + [ + "do i need to change my oil", + "oil_change_when" + ], + [ + "how often do you have to change your oil", + "oil_change_when" + ], + [ + "how do i know when i have to change my oil", + "oil_change_when" + ], + [ + "when do i need to change my oil", + "oil_change_when" + ], + [ + "when am i due for an oil change", + "oil_change_when" + ], + [ + "how long before i neet to get my oil changed", + "oil_change_when" + ], + [ + "at how many miles am i required to get my oil changed", + "oil_change_when" + ], + [ + "when should my oil get changed", + "oil_change_when" + ], + [ + "when do i need you change my oil", + "oil_change_when" + ], + [ + "when is my oil due to be changed", + "oil_change_when" + ], + [ + "when should my oil be changed", + "oil_change_when" + ], + [ + "how long until i need to change my oil", + "oil_change_when" + ], + [ + "how many miles can i drive before changing my oil", + "oil_change_when" + ], + [ + "at which mileage, should i get my oil changed", + "oil_change_when" + ], + [ + "when should i change my oil again", + "oil_change_when" + ], + [ + "at what point should the oil be changed again", + "oil_change_when" + ], + [ + "how much longer until i need an oil change", + "oil_change_when" + ], + [ + "when do i need to change the oil again", + "oil_change_when" + ], + [ + "when do i need to change my oil again", + "oil_change_when" + ], + [ + "when should i change my oil next", + "oil_change_when" + ], + [ + "at what point will i need another oil change", + "oil_change_when" + ], + [ + "when will i need another oil change", + "oil_change_when" + ], + [ + "when will i need to change my oil again", + "oil_change_when" + ], + [ + "when do i need to get an oil change", + "oil_change_when" + ], + [ + "when must i change oil", + "oil_change_when" + ], + [ + "when do i need my oil changed", + "oil_change_when" + ], + [ + "when should oil be changed in my car", + "oil_change_when" + ], + [ + "when is an oil change needed by me", + "oil_change_when" + ], + [ + "i really must know when should i get my oil changed next", + "oil_change_when" + ], + [ + "when must i change the oil in my car", + "oil_change_when" + ], + [ + "i gotta know when should i get my oil changed next", + "oil_change_when" + ], + [ + "when do i have to change oil", + "oil_change_when" + ], + [ + "when should i change the oil in my car", + "oil_change_when" + ], + [ + "when do i need an oil change", + "oil_change_when" + ], + [ + "when does my oil need some changing", + "oil_change_when" + ], + [ + "i wanna know when should i get my oil changed next", + "oil_change_when" + ], + [ + "i must know when should i get my oil changed next", + "oil_change_when" + ], + [ + "i need to know when should i get my oil changed next", + "oil_change_when" + ], + [ + "how often should i change my oil", + "oil_change_when" + ], + [ + "oil changes are typical done how often", + "oil_change_when" + ], + [ + "when's my next oil change due", + "oil_change_when" + ], + [ + "oil changes are typical done when", + "oil_change_when" + ], + [ + "when is my oil change expected", + "oil_change_when" + ], + [ + "is there a way to tell when i need my oil changed", + "oil_change_when" + ], + [ + "when is my next oil change", + "oil_change_when" + ], + [ + "tell me how i know when i need an oil change", + "oil_change_when" + ], + [ + "how do i know when i need my next oil change", + "oil_change_when" + ], + [ + "when do i need my next oil change", + "oil_change_when" + ], + [ + "is it time for an oil change", + "oil_change_when" + ], + [ + "should i get an oil change", + "oil_change_when" + ], + [ + "when is the best time for my next oil change", + "oil_change_when" + ], + [ + "what date should i next change my oil", + "oil_change_when" + ], + [ + "the next time i change my oil, when should it be", + "oil_change_when" + ], + [ + "what duration of time should i wait before i change my oil", + "oil_change_when" + ], + [ + "after how long should i change my oil", + "oil_change_when" + ], + [ + "when will my car need an oil change", + "oil_change_when" + ], + [ + "can you make a note for my next oil change", + "oil_change_when" + ], + [ + "how long before i need an oil change", + "oil_change_when" + ], + [ + "when do you think i should change my oil", + "oil_change_when" + ], + [ + "when is my next oil change suggested", + "oil_change_when" + ], + [ + "what is the due date for my next oil change", + "oil_change_when" + ], + [ + "in how many miles do i need to schedule my oil change", + "oil_change_when" + ], + [ + "when is my car due for an oil change and lube", + "oil_change_when" + ], + [ + "how many miles can i drive before needing the next oil change", + "oil_change_when" + ], + [ + "it's been 3 years since i changed my oil, how long until i have to deal with it", + "oil_change_when" + ], + [ + "can you check when i'm next due for an oil change", + "oil_change_when" + ], + [ + "my oil seems pretty black, does that mean i should change it", + "oil_change_when" + ], + [ + "when's the next time i should go for an oil change", + "oil_change_when" + ], + [ + "my car's been throwing cels that i think are oil related, so i'm wondering if it's time to take it in or not", + "oil_change_when" + ], + [ + "my next oil change is when", + "oil_change_when" + ], + [ + "at what time should i get my oil changed next", + "oil_change_when" + ], + [ + "how much longer until i need to get my oil changed", + "oil_change_when" + ], + [ + "what is the next date that i should change my oil at", + "oil_change_when" + ], + [ + "when would you recommend i get my oil changed", + "oil_change_when" + ], + [ + "when would it be required for me to get my oil changed", + "oil_change_when" + ], + [ + "when is my next oil change due", + "oil_change_when" + ], + [ + "what is the average time to go between oil changes", + "oil_change_when" + ], + [ + "do i need to have my oil changed after 3000 miles", + "oil_change_when" + ], + [ + "how soon should i have my oil changed", + "oil_change_when" + ], + [ + "how often should i have my oil changed", + "oil_change_when" + ], + [ + "what is the recommended time frame to change my oil", + "oil_change_when" + ], + [ + "how many miles can i drive before i need to change my oil", + "oil_change_when" + ], + [ + "how long can i go before changing my oil", + "oil_change_when" + ], + [ + "how long is an oil change good for", + "oil_change_when" + ], + [ + "i need to know when my oil should be changed", + "oil_change_when" + ], + [ + "when do people typically change their oil", + "oil_change_when" + ], + [ + "how often should the oil get changed", + "oil_change_when" + ], + [ + "what is the time frame for changing oil", + "oil_change_when" + ], + [ + "about how long before i need another oil change", + "oil_change_when" + ], + [ + "how long does oil last in a car", + "oil_change_when" + ], + [ + "do you change the oil in your car more than once a year", + "oil_change_when" + ], + [ + "when is my car due for an oil change", + "oil_change_when" + ], + [ + "when do cars need their oil changed", + "oil_change_when" + ], + [ + "when do i change my oil", + "oil_change_when" + ], + [ + "how long can you go between oil changes", + "oil_change_when" + ], + [ + "how often should you get an oil change", + "oil_change_when" + ], + [ + "when can i get oil changed", + "oil_change_when" + ], + [ + "when should i change this oil", + "oil_change_when" + ], + [ + "when to change my oil", + "oil_change_when" + ], + [ + "yep", + "yes" + ], + [ + "that is affirmative", + "yes" + ], + [ + "what you just said is true", + "yes" + ], + [ + "that is not false", + "yes" + ], + [ + "that is a fact", + "yes" + ], + [ + "i agree with the truth of what you just said", + "yes" + ], + [ + "i believe what you just said is true", + "yes" + ], + [ + "that would be great", + "yes" + ], + [ + "that would be awesome", + "yes" + ], + [ + "that is totally true", + "yes" + ], + [ + "oh yes", + "yes" + ], + [ + "yes that is right", + "yes" + ], + [ + "that is a yes", + "yes" + ], + [ + "that seems true", + "yes" + ], + [ + "positive", + "yes" + ], + [ + "true", + "yes" + ], + [ + "very true", + "yes" + ], + [ + "that will be true", + "yes" + ], + [ + "that appears true", + "yes" + ], + [ + "that is true", + "yes" + ], + [ + "it is true", + "yes" + ], + [ + "that is right", + "yes" + ], + [ + "that statement was correct", + "yes" + ], + [ + "i think that's true", + "yes" + ], + [ + "that is accurate", + "yes" + ], + [ + "yes, that is it", + "yes" + ], + [ + "correct", + "yes" + ], + [ + "the answer is yes", + "yes" + ], + [ + "all right", + "yes" + ], + [ + "it's indeed true", + "yes" + ], + [ + "that's a yes from me", + "yes" + ], + [ + "yes you are correct", + "yes" + ], + [ + "that's a definite yes", + "yes" + ], + [ + "yes that's it", + "yes" + ], + [ + "i vote yes", + "yes" + ], + [ + "that is correct", + "yes" + ], + [ + "yes, that is true", + "yes" + ], + [ + "yep, that's right", + "yes" + ], + [ + "yeah that's what i want", + "yes" + ], + [ + "you got it", + "yes" + ], + [ + "yeah that's right, so true", + "yes" + ], + [ + "true is my response", + "yes" + ], + [ + "yes, that's affirmative", + "yes" + ], + [ + "yes, you got it", + "yes" + ], + [ + "absolutely!", + "yes" + ], + [ + "do that", + "yes" + ], + [ + "absolutely correct", + "yes" + ], + [ + "confirm", + "yes" + ], + [ + "yes, i'd really like that alot", + "yes" + ], + [ + "agreed, that's valid", + "yes" + ], + [ + "affirmative, go ahead", + "yes" + ], + [ + "yes that's correct", + "yes" + ], + [ + "yeah, that's how it is", + "yes" + ], + [ + "yeah, that's right", + "yes" + ], + [ + "of course", + "yes" + ], + [ + "that's the truth", + "yes" + ], + [ + "exactly right", + "yes" + ], + [ + "yes, that's accurate", + "yes" + ], + [ + "yes, that is accurate", + "yes" + ], + [ + "yes, that's what i want", + "yes" + ], + [ + "yes, that is a fact", + "yes" + ], + [ + "yes, that is correct", + "yes" + ], + [ + "yes, that's confirmed", + "yes" + ], + [ + "indeed", + "yes" + ], + [ + "yes", + "yes" + ], + [ + "uh-huh", + "yes" + ], + [ + "correct, that's true", + "yes" + ], + [ + "yes, that's correct", + "yes" + ], + [ + "yeah", + "yes" + ], + [ + "yeap", + "yes" + ], + [ + "ok", + "yes" + ], + [ + "sure thing", + "yes" + ], + [ + "yes you are right", + "yes" + ], + [ + "yes you are", + "yes" + ], + [ + "yes i do like that", + "yes" + ], + [ + "yes that is correct", + "yes" + ], + [ + "yes i am", + "yes" + ], + [ + "i think it's true", + "yes" + ], + [ + "that would be yes", + "yes" + ], + [ + "that would be true", + "yes" + ], + [ + "i believe that's true", + "yes" + ], + [ + "uh huh", + "yes" + ], + [ + "yep, that's true", + "yes" + ], + [ + "yes, that is actually true", + "yes" + ], + [ + "yes, that's it", + "yes" + ], + [ + "yes, that is right", + "yes" + ], + [ + "correct, it is affirmative", + "yes" + ], + [ + "the answer to that is a resounding yes", + "yes" + ], + [ + "i can confirm it is affirmative", + "yes" + ], + [ + "my response to that is yes", + "yes" + ], + [ + "i have to say affirmative on that one", + "yes" + ], + [ + "i would have to say yes as my answer", + "yes" + ], + [ + "the answer to that is affirmative", + "yes" + ], + [ + "that is true, yes", + "yes" + ], + [ + "it is definitely affirmative", + "yes" + ], + [ + "is is very much true", + "yes" + ], + [ + "it is a true", + "yes" + ], + [ + "its a for sure true", + "yes" + ], + [ + "yes sir", + "yes" + ], + [ + "it's true", + "yes" + ], + [ + "can you give me some suggestions to go site seeing when i get there", + "travel_suggestion" + ], + [ + "can you get me any recommendations for the place i'm traveling to", + "travel_suggestion" + ], + [ + "please suggest some fun tourist activities in tokyo", + "travel_suggestion" + ], + [ + "i need help with some fun tourist things to do in tokyo", + "travel_suggestion" + ], + [ + "could you tell me what fun tourist things i could do in tokyo", + "travel_suggestion" + ], + [ + "what should i do for fun in tokyo", + "travel_suggestion" + ], + [ + "what do tourists do in tokyo", + "travel_suggestion" + ], + [ + "what sites are there to see when in evans", + "travel_suggestion" + ], + [ + "what can i do in evans", + "travel_suggestion" + ], + [ + "name some things i should do while in evans", + "travel_suggestion" + ], + [ + "if i go to evans, what should i do", + "travel_suggestion" + ], + [ + "what is there to do in evans", + "travel_suggestion" + ], + [ + "what can i do in new orleans for fun", + "travel_suggestion" + ], + [ + "what do you recommend to do in vegas", + "travel_suggestion" + ], + [ + "is there anything fun to do in berlin", + "travel_suggestion" + ], + [ + "find something fun for me to do in dallas", + "travel_suggestion" + ], + [ + "what's fun to do in thailand", + "travel_suggestion" + ], + [ + "where should i book my next trip", + "travel_suggestion" + ], + [ + "what are some hot travel destinations", + "travel_suggestion" + ], + [ + "what's a good place to travel to", + "travel_suggestion" + ], + [ + "where should i travel to next", + "travel_suggestion" + ], + [ + "what's the best place to travel to this time of year", + "travel_suggestion" + ], + [ + "when visiting chicago, what things can i do there", + "travel_suggestion" + ], + [ + "what are some good restaurants in chicago", + "travel_suggestion" + ], + [ + "what are some activities to do in chicago", + "travel_suggestion" + ], + [ + "when travelling in chicago, what kinds of attractions should i see", + "travel_suggestion" + ], + [ + "what kind of entertainment is available in chicago", + "travel_suggestion" + ], + [ + "show me some things to do in gatlinburg", + "travel_suggestion" + ], + [ + "what are the main attractions in gatlinburg", + "travel_suggestion" + ], + [ + "name the five star attractions in gatlinburg", + "travel_suggestion" + ], + [ + "what are some of the attractions in gatlinburg", + "travel_suggestion" + ], + [ + "what are the most popular attractions in gatlinburg", + "travel_suggestion" + ], + [ + "where should i spend my time off", + "travel_suggestion" + ], + [ + "give me some awesome travel destinations", + "travel_suggestion" + ], + [ + "what's the best place to just get away from it all", + "travel_suggestion" + ], + [ + "what are some tourist sites to see in ann arbor", + "travel_suggestion" + ], + [ + "name some tourist things to do in chicago", + "travel_suggestion" + ], + [ + "in austin, what are some tourist things to do", + "travel_suggestion" + ], + [ + "name some tourist things to do in seattle", + "travel_suggestion" + ], + [ + "what are some fun, tourist sites to see in nyc", + "travel_suggestion" + ], + [ + "what experiences does kentucky offer", + "travel_suggestion" + ], + [ + "what's something interesting to do kentucky", + "travel_suggestion" + ], + [ + "what things are there to do in kentucky", + "travel_suggestion" + ], + [ + "what could i do for fun in kentucky", + "travel_suggestion" + ], + [ + "what does kentucky have to offer for things to do", + "travel_suggestion" + ], + [ + "what are the big tourist sites in sweden", + "travel_suggestion" + ], + [ + "what are some fun things to do in sweden", + "travel_suggestion" + ], + [ + "can you tell me about the best tourist attractions in sweden", + "travel_suggestion" + ], + [ + "what are some of sweden's best sights", + "travel_suggestion" + ], + [ + "what can i do in nashville", + "travel_suggestion" + ], + [ + "help me find things to do in nashville", + "travel_suggestion" + ], + [ + "can i do a lot in nashville", + "travel_suggestion" + ], + [ + "i need ideas for things to do in nashville", + "travel_suggestion" + ], + [ + "do you know of any activities in nashville", + "travel_suggestion" + ], + [ + "what are some touristy things to do in boston", + "travel_suggestion" + ], + [ + "what kinds of fun things are there in boston for tourists", + "travel_suggestion" + ], + [ + "are there any exciting tourist things to do in boston", + "travel_suggestion" + ], + [ + "what kinds of fun touristy things are there to do in boston", + "travel_suggestion" + ], + [ + "are there any fun tourist things to do in boston", + "travel_suggestion" + ], + [ + "what are some fun things i can partake in in atlanta", + "travel_suggestion" + ], + [ + "tell me things i can do in chicago", + "travel_suggestion" + ], + [ + "provide me with ideas of things we can do in charlotte", + "travel_suggestion" + ], + [ + "give me a list of things to do in orlando", + "travel_suggestion" + ], + [ + "where should i travel if i want to visit some history museums", + "travel_suggestion" + ], + [ + "i'd like some suggestions on where to go on my vacation this year", + "travel_suggestion" + ], + [ + "are there any interesting things to do in atlanta, georgia", + "travel_suggestion" + ], + [ + "is there anything fun to do in manassas, virginia", + "travel_suggestion" + ], + [ + "i want to travel this year but i need some suggestions", + "travel_suggestion" + ], + [ + "where should i travel if i want to go to a nice beach", + "travel_suggestion" + ], + [ + "give me some ideas on what i can do in seattle for fun", + "travel_suggestion" + ], + [ + "what do you suggest for entertainment in tampa, florida", + "travel_suggestion" + ], + [ + "what are some fun things to do in butte, montana", + "travel_suggestion" + ], + [ + "in portland, what things are there to do", + "travel_suggestion" + ], + [ + "what things can i do in portland", + "travel_suggestion" + ], + [ + "what are some things i can do in portland", + "travel_suggestion" + ], + [ + "what are some things to do in portland", + "travel_suggestion" + ], + [ + "what things are there to do in portland", + "travel_suggestion" + ], + [ + "what is there to do besides drink in germany", + "travel_suggestion" + ], + [ + "what festivals are there to see in paris", + "travel_suggestion" + ], + [ + "what fun is there to do in england", + "travel_suggestion" + ], + [ + "where is the best winery in the south of france", + "travel_suggestion" + ], + [ + "what should i do in france", + "travel_suggestion" + ], + [ + "where do you suggest i plan my next vacation", + "travel_suggestion" + ], + [ + "what are your best travel suggestions", + "travel_suggestion" + ], + [ + "what are some suggestions for places to travel", + "travel_suggestion" + ], + [ + "what do people in sioux falls do for fun", + "travel_suggestion" + ], + [ + "what's there to do in seattle", + "travel_suggestion" + ], + [ + "are there any interesting activities to do in austin", + "travel_suggestion" + ], + [ + "where's a good place to go if i want to see mountains", + "travel_suggestion" + ], + [ + "what's a nice place to visit a beautiful beach", + "travel_suggestion" + ], + [ + "what should i do in bangor", + "travel_suggestion" + ], + [ + "what do tourists do for fun in seattle", + "travel_suggestion" + ], + [ + "are there any fun tourist activities in australia", + "travel_suggestion" + ], + [ + "what's a good use of my time in toronto", + "travel_suggestion" + ], + [ + "what can a tourist in denver do", + "travel_suggestion" + ], + [ + "what sort of things do people do in new york", + "travel_suggestion" + ], + [ + "tell me some things to see in tampa", + "travel_suggestion" + ], + [ + "is there anything neat to do in boston", + "travel_suggestion" + ], + [ + "what are some interesting things to do in dc", + "travel_suggestion" + ], + [ + "what's the funnest thing for a tourist to do in iceland", + "travel_suggestion" + ], + [ + "what do my health benefits consist of", + "insurance" + ], + [ + "what health benefits are available to me", + "insurance" + ], + [ + "what health benefits can i use", + "insurance" + ], + [ + "what are the health benefits i have", + "insurance" + ], + [ + "what health benefits do i have", + "insurance" + ], + [ + "i need to know my health benefits", + "insurance" + ], + [ + "what is my health plan", + "insurance" + ], + [ + "what's the name of my medical coverage", + "insurance" + ], + [ + "i need to know more about my health plan", + "insurance" + ], + [ + "are my health benefits good", + "insurance" + ], + [ + "tell me what my health plan is called", + "insurance" + ], + [ + "do i have many health benefits", + "insurance" + ], + [ + "tell me about my health insurance", + "insurance" + ], + [ + "what is the name of my health insurance", + "insurance" + ], + [ + "list all of my health benefits", + "insurance" + ], + [ + "my insurance gives me what benefits", + "insurance" + ], + [ + "what benefits are available with my insurance", + "insurance" + ], + [ + "what benefits does my insurance provide", + "insurance" + ], + [ + "what benefits are provided by my insurance", + "insurance" + ], + [ + "my insurance benefits are what", + "insurance" + ], + [ + "what benefits do i get from insurance", + "insurance" + ], + [ + "give me information on my health plan", + "insurance" + ], + [ + "i'd like to know about my health plan", + "insurance" + ], + [ + "can you tell me my health plan", + "insurance" + ], + [ + "insurance benefits", + "insurance" + ], + [ + "what benefits are associated with my insurance", + "insurance" + ], + [ + "can you tell me my insurance benefits", + "insurance" + ], + [ + "what benefits does my insurance have", + "insurance" + ], + [ + "i'm curious what health plan i'm on", + "insurance" + ], + [ + "i'm wondering what health plan i'm on", + "insurance" + ], + [ + "can you let me know what health plan i'm on", + "insurance" + ], + [ + "do you know the health plan i'm on", + "insurance" + ], + [ + "is it possible for you to let me know what health plan i'm on", + "insurance" + ], + [ + "tell me about my insurance benefits", + "insurance" + ], + [ + "list my insurance benefits", + "insurance" + ], + [ + "list insurance benefits", + "insurance" + ], + [ + "insurance benefit information", + "insurance" + ], + [ + "insurance benefit details", + "insurance" + ], + [ + "give me the name of the insurance plan that i enrolled in", + "insurance" + ], + [ + "tell me the name of my insurance plan", + "insurance" + ], + [ + "what is the name of my insurance plan", + "insurance" + ], + [ + "what is the name of the insurance plan that i'm enrolled in", + "insurance" + ], + [ + "please provide the name of the insurance plan that i'm enrolled in", + "insurance" + ], + [ + "what's the healthcare plan i'm on", + "insurance" + ], + [ + "what's the deal with my health care", + "insurance" + ], + [ + "what's my current health care plan", + "insurance" + ], + [ + "any word on my healthcare plan", + "insurance" + ], + [ + "what healthcare plan do you have me on", + "insurance" + ], + [ + "i need you to tell me what benefits are included in my insurance", + "insurance" + ], + [ + "please find the benefits provided by my insurance", + "insurance" + ], + [ + "what benefits do i have with my insurance", + "insurance" + ], + [ + "can you tell me what is included in my health benefits", + "insurance" + ], + [ + "please tell my what insurance plan i registered for", + "insurance" + ], + [ + "i need to know what my health benefits cover, please", + "insurance" + ], + [ + "i would like to hear a list of my insurance benefits, please", + "insurance" + ], + [ + "what is the insurance plan that i'm signed up for", + "insurance" + ], + [ + "please tell me what's provided in my health benefits", + "insurance" + ], + [ + "which insurance plan do i currently have", + "insurance" + ], + [ + "can you tell me the name of the insurance plan i'm a member of", + "insurance" + ], + [ + "remind me of which insurance plan i'm currently enrolled in", + "insurance" + ], + [ + "what benefits does my health coverage give me", + "insurance" + ], + [ + "i would like to know all of the covered benefits that are given by my health care plan", + "insurance" + ], + [ + "can you tell me what benefits i receive with my insurance", + "insurance" + ], + [ + "is there an insurance plan for my health", + "insurance" + ], + [ + "can i see my health benefits", + "insurance" + ], + [ + "what are the benefits i get for my health", + "insurance" + ], + [ + "what is the aid i get from these health benefits", + "insurance" + ], + [ + "can i obtain health benefits", + "insurance" + ], + [ + "give me info on my health plan", + "insurance" + ], + [ + "what was my health plan again", + "insurance" + ], + [ + "what health plan do i have", + "insurance" + ], + [ + "tell me my health plan", + "insurance" + ], + [ + "what's my health plan", + "insurance" + ], + [ + "which insurance plan am i enrolled in, please", + "insurance" + ], + [ + "what type of insurance plan am i enrolled in, please", + "insurance" + ], + [ + "what kind of insurance plan am i enrolled in", + "insurance" + ], + [ + "what kind of insurance plan am i enrolled in, please", + "insurance" + ], + [ + "may i know my insurance benefits", + "insurance" + ], + [ + "where is the list of my insurance benefits", + "insurance" + ], + [ + "what's my insurance benefits like", + "insurance" + ], + [ + "how do i know my insurance benefits", + "insurance" + ], + [ + "what insurance benefits am i getting", + "insurance" + ], + [ + "how would you define my health benefits", + "insurance" + ], + [ + "will you summarize my health benefits", + "insurance" + ], + [ + "define my health benefits", + "insurance" + ], + [ + "how would you describe my health benefits", + "insurance" + ], + [ + "what is the definition of my health benefits", + "insurance" + ], + [ + "can you explain my benefits", + "insurance" + ], + [ + "whats included with my insurance", + "insurance" + ], + [ + "what insurance benefits do i have", + "insurance" + ], + [ + "what do my benefits look like", + "insurance" + ], + [ + "what benefits are included in my package", + "insurance" + ], + [ + "what are my insurance assets", + "insurance" + ], + [ + "what are my insurance advantages", + "insurance" + ], + [ + "what are my insurance perks", + "insurance" + ], + [ + "what are my insurance rewards", + "insurance" + ], + [ + "what are my insurance amenities", + "insurance" + ], + [ + "do you know what my health benefits are", + "insurance" + ], + [ + "please look up the name of my insurance plan", + "insurance" + ], + [ + "can you tell me the name of my insurance plan", + "insurance" + ], + [ + "i need to add the chore of vacuuming to my task list", + "todo_list_update" + ], + [ + "put wash the counters down on my list of pending tasks", + "todo_list_update" + ], + [ + "take doing the dishes off my todo list", + "todo_list_update" + ], + [ + "blank out my todo list", + "todo_list_update" + ], + [ + "erase all items on my todo list", + "todo_list_update" + ], + [ + "delete everything on my todo list", + "todo_list_update" + ], + [ + "add clean bathroom to my to do list", + "todo_list_update" + ], + [ + "go ahead and take cleaning the bathroom off my todo list", + "todo_list_update" + ], + [ + "you can remove vacuuming off the todo list", + "todo_list_update" + ], + [ + "make my todo list blank", + "todo_list_update" + ], + [ + "please take shoveling the car off my todo list", + "todo_list_update" + ], + [ + "i'd like you to remove throw away dvds off my todo list", + "todo_list_update" + ], + [ + "put clean stovetop on my list of reminders", + "todo_list_update" + ], + [ + "nuke all items on my todo list", + "todo_list_update" + ], + [ + "will you put change the light bulbs on my list of things to do", + "todo_list_update" + ], + [ + "delete everything from the task list", + "todo_list_update" + ], + [ + "hurry up and just erase everything from the todo list", + "todo_list_update" + ], + [ + "can you kindly clear my agenda list", + "todo_list_update" + ], + [ + "hey just take off everything from my todo list", + "todo_list_update" + ], + [ + "i don't want to do anything today so just clear the todo list", + "todo_list_update" + ], + [ + "please include feeding the fish on my to do list", + "todo_list_update" + ], + [ + "please remove laundry from my list of chores", + "todo_list_update" + ], + [ + "please clear out my whole to do list", + "todo_list_update" + ], + [ + "i want you to clear out my to do list", + "todo_list_update" + ], + [ + "i want you to add cleaning the toilet to my to do list", + "todo_list_update" + ], + [ + "make sure my to do list is completely clear please", + "todo_list_update" + ], + [ + "please include laundry on my to do list", + "todo_list_update" + ], + [ + "can you please add take out recycling on my list of chores to complete", + "todo_list_update" + ], + [ + "please get rid off everything on my to do list", + "todo_list_update" + ], + [ + "please take feeding the fish off of my list of tasks to complete", + "todo_list_update" + ], + [ + "i need to add dusting the bookshelf to my to do list", + "todo_list_update" + ], + [ + "please put washing the dishes on my list of tasks to accomplish", + "todo_list_update" + ], + [ + "please be sure to put folding laundry on my to do list for me", + "todo_list_update" + ], + [ + "please put watering the plants on my to do list", + "todo_list_update" + ], + [ + "please erase everything on my to do list", + "todo_list_update" + ], + [ + "take watering the plants off of my to do list", + "todo_list_update" + ], + [ + "i just finished taking out my recycling, so cross that off my to do list", + "todo_list_update" + ], + [ + "can you check washing the dishes off on my to do list", + "todo_list_update" + ], + [ + "i need laundry put on my list of tasks to complete", + "todo_list_update" + ], + [ + "please add watering the plants to my current to do list", + "todo_list_update" + ], + [ + "to my domestic task list please add paint kitchen", + "todo_list_update" + ], + [ + "add to my task list get carpet cleaned", + "todo_list_update" + ], + [ + "add clean the bathroom to my task list", + "todo_list_update" + ], + [ + "put clean refrigerator on my spring cleaning to do list", + "todo_list_update" + ], + [ + "on my big project task list please add paint shutters in spring", + "todo_list_update" + ], + [ + "delete my to do list", + "todo_list_update" + ], + [ + "erase get a haircut from my to do list, please", + "todo_list_update" + ], + [ + "i need to include a stop at the pharmacy to the list of things to do", + "todo_list_update" + ], + [ + "please cross off schedule acupuncture appointment off of the to do list", + "todo_list_update" + ], + [ + "please put my acupuncture appointment on my to list", + "todo_list_update" + ], + [ + "can you add a trip to the post office to my to do list, please", + "todo_list_update" + ], + [ + "please also list wash laundry on my to do list", + "todo_list_update" + ], + [ + "will you please put remember to drop off at the dry cleaner's to my current to do list", + "todo_list_update" + ], + [ + "would you kindly remove five mile run from my list of things to do", + "todo_list_update" + ], + [ + "let's go ahead and scratch laundry off my to do list, please!", + "todo_list_update" + ], + [ + "can you delete lunch with david from my to do list", + "todo_list_update" + ], + [ + "put dishes on to do list", + "todo_list_update" + ], + [ + "on my to do list, add dishes", + "todo_list_update" + ], + [ + "i need to do dishes put it on my to do list", + "todo_list_update" + ], + [ + "add dishes to my list", + "todo_list_update" + ], + [ + "cleaning needs to be on my to do list", + "todo_list_update" + ], + [ + "please add cleaning on my list to do", + "todo_list_update" + ], + [ + "cleaning needs to go on my list of things to do", + "todo_list_update" + ], + [ + "on my to do list, add cleaning", + "todo_list_update" + ], + [ + "i need to do cleaning so add it to my to do list", + "todo_list_update" + ], + [ + "on my to do list, i need cleaning added", + "todo_list_update" + ], + [ + "put cleaning on my to do list", + "todo_list_update" + ], + [ + "please put cleaning on my list of things to do", + "todo_list_update" + ], + [ + "add cleaning to my to do list", + "todo_list_update" + ], + [ + "on my list of things to do, add cleaning", + "todo_list_update" + ], + [ + "can you place laundry on my to do list", + "todo_list_update" + ], + [ + "help remind me that i need to add laundry to my list of housework", + "todo_list_update" + ], + [ + "if you could remind me about doing laundry i would appreciate it", + "todo_list_update" + ], + [ + "please remind me to add laundry to my list of chores", + "todo_list_update" + ], + [ + "add laundry to my list of shit to do", + "todo_list_update" + ], + [ + "add change filters to my to do list", + "todo_list_update" + ], + [ + "add schedule appraiser to my to do list", + "todo_list_update" + ], + [ + "add mop bathroom to my to do list", + "todo_list_update" + ], + [ + "add do laundry to my to do list", + "todo_list_update" + ], + [ + "put buy dog food on my to do list", + "todo_list_update" + ], + [ + "on my to do list, add exercising", + "todo_list_update" + ], + [ + "remove all items from todo list", + "todo_list_update" + ], + [ + "add grocery shopping to my list of things to do", + "todo_list_update" + ], + [ + "clear out my entire todo list", + "todo_list_update" + ], + [ + "remove laundry from my todo list", + "todo_list_update" + ], + [ + "put laundry on my to do list", + "todo_list_update" + ], + [ + "nix folding laundry from my todo list", + "todo_list_update" + ], + [ + "add washing dishes to my to do list", + "todo_list_update" + ], + [ + "cross volunteering off my todo list", + "todo_list_update" + ], + [ + "take everything off my todo list", + "todo_list_update" + ], + [ + "i no longer need to wash dishes; take it of my list", + "todo_list_update" + ], + [ + "delete everything on my to do list", + "todo_list_update" + ], + [ + "mark down cleaning the bathroom on my list of things to do", + "todo_list_update" + ], + [ + "throw mopping onto my to do list", + "todo_list_update" + ], + [ + "can you remind me to mop later by putting it on my to do list today", + "todo_list_update" + ], + [ + "will you make sure that mopping is on my to do list", + "todo_list_update" + ], + [ + "will you add mopping to my to do list please", + "todo_list_update" + ], + [ + "can you put mopping on my to do list", + "todo_list_update" + ], + [ + "place cleaning the backyard on my list of things to do", + "todo_list_update" + ], + [ + "please put the meeting with carla on my to do list", + "todo_list_update" + ], + [ + "tell me my reminders", + "reminder" + ], + [ + "tell me my current reminders list", + "reminder" + ], + [ + "please read my reminders", + "reminder" + ], + [ + "will you repeat my reminder list", + "reminder" + ], + [ + "check my reminders for mop and floor", + "reminder" + ], + [ + "read my reminder list to me", + "reminder" + ], + [ + "is mop the floor already in my reminders", + "reminder" + ], + [ + "read back the reminder list", + "reminder" + ], + [ + "what's on the reminder list", + "reminder" + ], + [ + "read my reminders to me", + "reminder" + ], + [ + "check my reminders for mop the floor", + "reminder" + ], + [ + "what reminders do i have", + "reminder" + ], + [ + "read what i added to the reminder list", + "reminder" + ], + [ + "can you list each item on my reminder list", + "reminder" + ], + [ + "can you tell me what reminders i've set", + "reminder" + ], + [ + "tell me what's on my reminder list", + "reminder" + ], + [ + "do i have any reminders to look up how to properly do a potato in my microwave", + "reminder" + ], + [ + "do i have a reminder for our neighbor's anniversary", + "reminder" + ], + [ + "tell my all my reminders", + "reminder" + ], + [ + "is respond to the professor's email on my list of reminders", + "reminder" + ], + [ + "read me my reminders list", + "reminder" + ], + [ + "go through all the reminders on my list and state what they are", + "reminder" + ], + [ + "is there a reminder for my aa meeting on my list", + "reminder" + ], + [ + "speak back to me what's on my reminder list", + "reminder" + ], + [ + "iterate the items on my reminder list", + "reminder" + ], + [ + "please go through my reminder list and tell me what's on it", + "reminder" + ], + [ + "did i add to my reminder list that i need to take the car in for an oil change", + "reminder" + ], + [ + "what did i want to remember again", + "reminder" + ], + [ + "what did i put on my list of reminders", + "reminder" + ], + [ + "can you tell me the reminders i have set up", + "reminder" + ], + [ + "what were the reminders that i made", + "reminder" + ], + [ + "i wanted to remember what again", + "reminder" + ], + [ + "can you remind me what i was trying to remember", + "reminder" + ], + [ + "i had a list of reminders what were they", + "reminder" + ], + [ + "remind me of what i asked you to remember", + "reminder" + ], + [ + "what reminders did i have", + "reminder" + ], + [ + "what are the thing i told you to help me remember", + "reminder" + ], + [ + "read my reminders please", + "reminder" + ], + [ + "what's on my reminder list today", + "reminder" + ], + [ + "do i have anything in my reminders", + "reminder" + ], + [ + "what did i ask to be reminded about", + "reminder" + ], + [ + "check if getting a light bulb is on my list of reminders", + "reminder" + ], + [ + "is buying a light bulb on my reminders list", + "reminder" + ], + [ + "confirm that buy a light bulb is on my list of reminders", + "reminder" + ], + [ + "please read my list of reminders", + "reminder" + ], + [ + "what is now on my reminder list", + "reminder" + ], + [ + "what things are currently on my reminder list", + "reminder" + ], + [ + "tell me what is showing up on my reminder list", + "reminder" + ], + [ + "what are the items on my reminder list", + "reminder" + ], + [ + "can you read my list back to me", + "reminder" + ], + [ + "can you repeat my list back to me", + "reminder" + ], + [ + "can you describe my list back to me", + "reminder" + ], + [ + "what is on my reminder list", + "reminder" + ], + [ + "is checking the mail on my list of reminder", + "reminder" + ], + [ + "i want to see my reminder list", + "reminder" + ], + [ + "what do i want to remember", + "reminder" + ], + [ + "let me know what is on my reminder list", + "reminder" + ], + [ + "can you please repeat my list back to me", + "reminder" + ], + [ + "tell me what is on my reminder list", + "reminder" + ], + [ + "let me see the reminder list please", + "reminder" + ], + [ + "can you read me my list of reminders", + "reminder" + ], + [ + "what do i have on my list of reminders", + "reminder" + ], + [ + "what did i list in my reminders", + "reminder" + ], + [ + "i wanted to remember some things, what were they", + "reminder" + ], + [ + "can you remind me the things i was trying to remember", + "reminder" + ], + [ + "let me know what's on my list of reminders", + "reminder" + ], + [ + "can you tell me what things i was trying to remember", + "reminder" + ], + [ + "tell me what's on my reminders list please", + "reminder" + ], + [ + "what were those things i was trying to remember", + "reminder" + ], + [ + "do you know what things i wanted to remember", + "reminder" + ], + [ + "what are in my reminders list", + "reminder" + ], + [ + "my list of reminders is what", + "reminder" + ], + [ + "on my list of reminders is what", + "reminder" + ], + [ + "the lists of my reminders is what", + "reminder" + ], + [ + "reminders of my list is what", + "reminder" + ], + [ + "is there a reminder set to clean the gutters", + "reminder" + ], + [ + "what do i have on my reminder list", + "reminder" + ], + [ + "please read all the items on my reminder list", + "reminder" + ], + [ + "can you tell me all the reminders i have set on my reminder list", + "reminder" + ], + [ + "did i request a reminder for my niece's graduation", + "reminder" + ], + [ + "can you read my reminder list, please", + "reminder" + ], + [ + "is the company party on my list of reminders", + "reminder" + ], + [ + "did i set up a reminder to clean the bathroom", + "reminder" + ], + [ + "what did i include on my list of things to remember", + "reminder" + ], + [ + "please look to see if paying bills is on my reminders list currently", + "reminder" + ], + [ + "please tell me everything on my list of reminders", + "reminder" + ], + [ + "tell me if flipping the mattress is on my list of reminders please", + "reminder" + ], + [ + "i need to know the content of my list of reminders", + "reminder" + ], + [ + "tell me everything i included on my list of things to remember for later", + "reminder" + ], + [ + "check to see if picking up glenn from the airport is on my list of reminders", + "reminder" + ], + [ + "go through my reminder list with me please", + "reminder" + ], + [ + "i would like to hear you read my reminder list to me", + "reminder" + ], + [ + "i want to hear what is on my reminders list", + "reminder" + ], + [ + "read my list of reminders to me", + "reminder" + ], + [ + "tell me what i had wanted to remember earlier", + "reminder" + ], + [ + "did i include cleaning the hamster cage on my list of reminders", + "reminder" + ], + [ + "walk me through the items on my reminder list", + "reminder" + ], + [ + "i need to know what it is that i wanted to remember before", + "reminder" + ], + [ + "please give me a rundown of my reminder list", + "reminder" + ], + [ + "i want to hear everything on my reminder list", + "reminder" + ], + [ + "can you slow your speaking down", + "change_speed" + ], + [ + "slow down your talking too fast i don't understand you", + "change_speed" + ], + [ + "you're talking too fast i need you to slow it down", + "change_speed" + ], + [ + "you're speaking too fast, slow down", + "change_speed" + ], + [ + "can you speak slower please", + "change_speed" + ], + [ + "can you please speed up your speech settings", + "change_speed" + ], + [ + "i want you to adjust your speaking to be faster", + "change_speed" + ], + [ + "can you speak faster please", + "change_speed" + ], + [ + "i want you to speak to me faster", + "change_speed" + ], + [ + "decrease the speed of your speech please", + "change_speed" + ], + [ + "please speed up your speaking pattern", + "change_speed" + ], + [ + "i want you to talk more slowly", + "change_speed" + ], + [ + "your voice speed is too slow, please increase it", + "change_speed" + ], + [ + "i want your speech settings to be made slower", + "change_speed" + ], + [ + "you are talking far too fast for me, can you slow it down a bit", + "change_speed" + ], + [ + "please make it so you say your words more slowly", + "change_speed" + ], + [ + "can you talk slower please", + "change_speed" + ], + [ + "can you speed up your speech please", + "change_speed" + ], + [ + "i want you to talk more quickly", + "change_speed" + ], + [ + "you are talking too fast for me, please slow down", + "change_speed" + ], + [ + "please increase the speed of your speech, it is too slow", + "change_speed" + ], + [ + "could you slow down your speech", + "change_speed" + ], + [ + "please increase the speed of your talking", + "change_speed" + ], + [ + "please slow down i can't understand you", + "change_speed" + ], + [ + "i want you to speak more slowly to me", + "change_speed" + ], + [ + "speed up your speech", + "change_speed" + ], + [ + "speak slower", + "change_speed" + ], + [ + "i'd like you to talk faster", + "change_speed" + ], + [ + "speak at a slower rate", + "change_speed" + ], + [ + "talk slower, please", + "change_speed" + ], + [ + "slow your roll", + "change_speed" + ], + [ + "slow your speech", + "change_speed" + ], + [ + "slow down your speech", + "change_speed" + ], + [ + "slow down your talking", + "change_speed" + ], + [ + "speak faster, please", + "change_speed" + ], + [ + "speak more quickly, please", + "change_speed" + ], + [ + "i need you to speak faster", + "change_speed" + ], + [ + "you should talk faster", + "change_speed" + ], + [ + "slow your speech down", + "change_speed" + ], + [ + "present your speech at a slower pace", + "change_speed" + ], + [ + "can you slow down", + "change_speed" + ], + [ + "make your speed a bit slower", + "change_speed" + ], + [ + "can you please speed up your speech", + "change_speed" + ], + [ + "make your speech slower than now", + "change_speed" + ], + [ + "change the speed of your voice to slower", + "change_speed" + ], + [ + "slow down", + "change_speed" + ], + [ + "can you please slow down", + "change_speed" + ], + [ + "find a new voice that is slower than your current voice", + "change_speed" + ], + [ + "can you please talk faster", + "change_speed" + ], + [ + "talker faster please", + "change_speed" + ], + [ + "slow the speech down", + "change_speed" + ], + [ + "hey, speak slowly", + "change_speed" + ], + [ + "reduce your speed of voice", + "change_speed" + ], + [ + "hey ai, don't speak fast", + "change_speed" + ], + [ + "hey, slow down and take your time", + "change_speed" + ], + [ + "hey ai, reduce your speed of speaking", + "change_speed" + ], + [ + "can you slow down your speech", + "change_speed" + ], + [ + "how do i slow down my ai's voice", + "change_speed" + ], + [ + "could you speak a little more slowly", + "change_speed" + ], + [ + "how do i change your options so that you speak more slowly", + "change_speed" + ], + [ + "how do i change the speed of my ai's voice", + "change_speed" + ], + [ + "adjust speech rate to a faster setting", + "change_speed" + ], + [ + "please use a quicker rate of speech", + "change_speed" + ], + [ + "speak faster", + "change_speed" + ], + [ + "speed up your talking please", + "change_speed" + ], + [ + "could you not talk so slowly", + "change_speed" + ], + [ + "can you please talk slower", + "change_speed" + ], + [ + "can you talk a bit slower please", + "change_speed" + ], + [ + "can you please not talk so fast", + "change_speed" + ], + [ + "speak slower please", + "change_speed" + ], + [ + "please don't speak so fast", + "change_speed" + ], + [ + "can you speak with me using faster speech", + "change_speed" + ], + [ + "please say things more quickly", + "change_speed" + ], + [ + "will you speak more rapidly", + "change_speed" + ], + [ + "i would like you to increase the speed of your speech please", + "change_speed" + ], + [ + "i'd like you to speak a bit slower", + "change_speed" + ], + [ + "can you change how fast you're talking to speak more slowly", + "change_speed" + ], + [ + "i can't understand you because of how rapidly you're speaking", + "change_speed" + ], + [ + "can you slow down how fast you talk", + "change_speed" + ], + [ + "please speak slower", + "change_speed" + ], + [ + "whoa whoa please slow down", + "change_speed" + ], + [ + "is there any way you can decrease your speaking rate", + "change_speed" + ], + [ + "why are you talking so sloooooooooowly, please speed it up!", + "change_speed" + ], + [ + "can i get you to talk at a slightly faster rate", + "change_speed" + ], + [ + "can you talk at a normal speed please", + "change_speed" + ], + [ + "please stop talking so fast", + "change_speed" + ], + [ + "hey, stop talking like you're a stretch taped", + "change_speed" + ], + [ + "please slow down how you're speaking", + "change_speed" + ], + [ + "you're talking too quickly for me to understand", + "change_speed" + ], + [ + "is it possible to speed up of your replies", + "change_speed" + ], + [ + "where do i find instructions on how to speed up voice replies", + "change_speed" + ], + [ + "how do i speed up the speech of this ai", + "change_speed" + ], + [ + "sorry, can you speak a little faster", + "change_speed" + ], + [ + "sorry, can you speak a little quicker, please", + "change_speed" + ], + [ + "can you speak a little faster, please", + "change_speed" + ], + [ + "sorry, can you speak a little faster, please", + "change_speed" + ], + [ + "could you speak a little faster, please", + "change_speed" + ], + [ + "i need to change your voice settings", + "change_speed" + ], + [ + "can you slow down the speed in which you speak", + "change_speed" + ], + [ + "you're speaking too fast and i need to change that", + "change_speed" + ], + [ + "how's the air pressure in my tires", + "tire_pressure" + ], + [ + "what's my tires current air pressure", + "tire_pressure" + ], + [ + "what's the amount of air in my tires right now", + "tire_pressure" + ], + [ + "are my tire's air pressure good enough to drive on", + "tire_pressure" + ], + [ + "what's the inflation of my tires", + "tire_pressure" + ], + [ + "what's the current psi for my tires", + "tire_pressure" + ], + [ + "how low is the pressure in my tires", + "tire_pressure" + ], + [ + "what's the current tire pressure of my tires", + "tire_pressure" + ], + [ + "is the air pressure in my tires low", + "tire_pressure" + ], + [ + "what's my current tire pressure", + "tire_pressure" + ], + [ + "is the air pressure on my tires low", + "tire_pressure" + ], + [ + "do i need to fill up my tires", + "tire_pressure" + ], + [ + "are my tires in need of air", + "tire_pressure" + ], + [ + "should i put air in my tires", + "tire_pressure" + ], + [ + "are my tires requiring a fill-up", + "tire_pressure" + ], + [ + "are my tires good on air", + "tire_pressure" + ], + [ + "have my tires got adequate amounts of air in them", + "tire_pressure" + ], + [ + "do i need more air in my tires", + "tire_pressure" + ], + [ + "should i be concerned about the air in my tires", + "tire_pressure" + ], + [ + "how is the air level in my tires", + "tire_pressure" + ], + [ + "how much air is in my tires", + "tire_pressure" + ], + [ + "is there air in my tires", + "tire_pressure" + ], + [ + "air amount in tires", + "tire_pressure" + ], + [ + "how high is the air in my tires", + "tire_pressure" + ], + [ + "how much air remains in my tires", + "tire_pressure" + ], + [ + "what is the tire pressure in my car", + "tire_pressure" + ], + [ + "are my tires full or low", + "tire_pressure" + ], + [ + "what is the current tire pressure level in the car", + "tire_pressure" + ], + [ + "tell me my car's tires' air pressure", + "tire_pressure" + ], + [ + "do i need to fill my tires", + "tire_pressure" + ], + [ + "tell me my tires' air pressure", + "tire_pressure" + ], + [ + "what's my tires' air pressure", + "tire_pressure" + ], + [ + "what's my car's tire pressure", + "tire_pressure" + ], + [ + "what is the air pressure in my tires", + "tire_pressure" + ], + [ + "can you tell me the tire pressure in my car", + "tire_pressure" + ], + [ + "what's my air pressure right now", + "tire_pressure" + ], + [ + "what's the air level in my tires", + "tire_pressure" + ], + [ + "tell me my car's tire pressure level", + "tire_pressure" + ], + [ + "how many psi's are my tires at the moment", + "tire_pressure" + ], + [ + "the car feels wobbly so check my tire pressure", + "tire_pressure" + ], + [ + "what is my current tire pressure for each tire", + "tire_pressure" + ], + [ + "tell me ths pressure of my tires", + "tire_pressure" + ], + [ + "please measure my tire pressure", + "tire_pressure" + ], + [ + "the cars riding funny, does the tire pressure feel low to you", + "tire_pressure" + ], + [ + "can you check the tire pressure", + "tire_pressure" + ], + [ + "do the tires look a little low on pressure", + "tire_pressure" + ], + [ + "what is the pressure like on my tires", + "tire_pressure" + ], + [ + "measure tire pressure", + "tire_pressure" + ], + [ + "check my car's tire pressure", + "tire_pressure" + ], + [ + "gauge the tire pressure", + "tire_pressure" + ], + [ + "how much pressure is in my car's tire", + "tire_pressure" + ], + [ + "what is my car's tire pressure", + "tire_pressure" + ], + [ + "are my tires fully inflated", + "tire_pressure" + ], + [ + "do i need to inflate my tires", + "tire_pressure" + ], + [ + "are my tires aired properly", + "tire_pressure" + ], + [ + "are my tires ok on pressure", + "tire_pressure" + ], + [ + "is the pressure in my tires optimal", + "tire_pressure" + ], + [ + "are my tires properly inflated with air", + "tire_pressure" + ], + [ + "are my tires good on pressure", + "tire_pressure" + ], + [ + "do my tires have enough air", + "tire_pressure" + ], + [ + "please check and report on my tire pressure", + "tire_pressure" + ], + [ + "how's my tire pressure", + "tire_pressure" + ], + [ + "i want an evaluation of my car's tire pressure", + "tire_pressure" + ], + [ + "can you give me a reading of my car's tire pressure please", + "tire_pressure" + ], + [ + "i would like to know my car's tire pressure please", + "tire_pressure" + ], + [ + "how are my tires", + "tire_pressure" + ], + [ + "are my tires low", + "tire_pressure" + ], + [ + "should i air up the tires", + "tire_pressure" + ], + [ + "do the tires need air", + "tire_pressure" + ], + [ + "how is the tire pressure", + "tire_pressure" + ], + [ + "how much pressure are currently in my tires", + "tire_pressure" + ], + [ + "how much pressure is in my tires", + "tire_pressure" + ], + [ + "whats the pressure like in my tires", + "tire_pressure" + ], + [ + "how are the tires on air pressure", + "tire_pressure" + ], + [ + "please check the pressure in my tires", + "tire_pressure" + ], + [ + "hows the air in my tires", + "tire_pressure" + ], + [ + "i am needing to know how low the air in my tires are", + "tire_pressure" + ], + [ + "tell me how low the air in my tires are", + "tire_pressure" + ], + [ + "i want to know how low the air in my tires are", + "tire_pressure" + ], + [ + "let me know how low the air in my tires are", + "tire_pressure" + ], + [ + "would you let me know how low the air in my tires are", + "tire_pressure" + ], + [ + "what does my tire pressure look like", + "tire_pressure" + ], + [ + "are my tires under-inflated", + "tire_pressure" + ], + [ + "is my tire pressure in the correct range", + "tire_pressure" + ], + [ + "do my tires need air", + "tire_pressure" + ], + [ + "should i pump my tires", + "tire_pressure" + ], + [ + "are my tires low on air", + "tire_pressure" + ], + [ + "do my tires seem too low on air", + "tire_pressure" + ], + [ + "would it be smart to put air in my tires", + "tire_pressure" + ], + [ + "what's the tire pressure of my car", + "tire_pressure" + ], + [ + "is my tire pressure okay", + "tire_pressure" + ], + [ + "can you tell me what's the car's tire pressure", + "tire_pressure" + ], + [ + "tire pressure please", + "tire_pressure" + ], + [ + "can you check my tire pressure", + "tire_pressure" + ], + [ + "can you tell me what my tire pressure is", + "tire_pressure" + ], + [ + "can you check the air in my tires", + "tire_pressure" + ], + [ + "check how much air is in my tires", + "tire_pressure" + ], + [ + "how much air do i have in my tires", + "tire_pressure" + ], + [ + "tell me what my tire pressure is", + "tire_pressure" + ], + [ + "how full are my tires", + "tire_pressure" + ], + [ + "no, that's incorrect", + "no" + ], + [ + "that's not true", + "no" + ], + [ + "that is not true, it's false", + "no" + ], + [ + "no way", + "no" + ], + [ + "not really", + "no" + ], + [ + "naw", + "no" + ], + [ + "nay", + "no" + ], + [ + "i must say no", + "no" + ], + [ + "i think not", + "no" + ], + [ + "that is actually false", + "no" + ], + [ + "i gotta say no", + "no" + ], + [ + "no thanks", + "no" + ], + [ + "no is the answer", + "no" + ], + [ + "i don't think so", + "no" + ], + [ + "it's a no", + "no" + ], + [ + "i think it is false", + "no" + ], + [ + "not true", + "no" + ], + [ + "that is not true", + "no" + ], + [ + "not at all", + "no" + ], + [ + "that turns out to be false", + "no" + ], + [ + "please, no", + "no" + ], + [ + "not that", + "no" + ], + [ + "definitely not", + "no" + ], + [ + "i would have to say the answer to that is no", + "no" + ], + [ + "i say no to that question", + "no" + ], + [ + "no, that is my response", + "no" + ], + [ + "i don't believe that is possible, it is false", + "no" + ], + [ + "i would say that the statement is definitely false", + "no" + ], + [ + "i am afraid that that is not the case", + "no" + ], + [ + "no, that information is wrong", + "no" + ], + [ + "that is a completely false statement", + "no" + ], + [ + "that would be a no", + "no" + ], + [ + "i do not think that is true, so i would say it is a false statement", + "no" + ], + [ + "incorrect, it is certainly a false statement", + "no" + ], + [ + "i do not believe that that is correct", + "no" + ], + [ + "the answer is definitely no", + "no" + ], + [ + "sorry, that is not true", + "no" + ], + [ + "that's a negative", + "no" + ], + [ + "no!", + "no" + ], + [ + "that's not right", + "no" + ], + [ + "no, don't do that", + "no" + ], + [ + "i don't like that, no", + "no" + ], + [ + "no way!", + "no" + ], + [ + "oh hell no, that'd be terrible!", + "no" + ], + [ + "that's inaccurate", + "no" + ], + [ + "that's not what i want!", + "no" + ], + [ + "that's completely false", + "no" + ], + [ + "that's incorrect!", + "no" + ], + [ + "that's totally wrong!", + "no" + ], + [ + "that's a hard no from me", + "no" + ], + [ + "no don't do that!", + "no" + ], + [ + "no that is not right", + "no" + ], + [ + "false for sure", + "no" + ], + [ + "that's definitely false", + "no" + ], + [ + "nope, that's false", + "no" + ], + [ + "no, that is not right", + "no" + ], + [ + "no, that is inaccurate", + "no" + ], + [ + "no, that can't be right", + "no" + ], + [ + "that is untrue", + "no" + ], + [ + "i disagree that is false", + "no" + ], + [ + "what you just said is false", + "no" + ], + [ + "that is erroneous", + "no" + ], + [ + "no that's wrong", + "no" + ], + [ + "that isn't the right answer", + "no" + ], + [ + "the information is wrong", + "no" + ], + [ + "that is not correct", + "no" + ], + [ + "that is not right", + "no" + ], + [ + "that is wrong", + "no" + ], + [ + "i'll pass", + "no" + ], + [ + "not that one", + "no" + ], + [ + "that's not right, so no", + "no" + ], + [ + "the answer is false", + "no" + ], + [ + "no, that is not right at all", + "no" + ], + [ + "that is overwhelmingly false", + "no" + ], + [ + "that's not right it's false", + "no" + ], + [ + "i say negative", + "no" + ], + [ + "negative for sure", + "no" + ], + [ + "nope", + "no" + ], + [ + "no thank you", + "no" + ], + [ + "that is not the case", + "no" + ], + [ + "no that isn't the case", + "no" + ], + [ + "no that isn't it", + "no" + ], + [ + "no that isn't correct", + "no" + ], + [ + "that would be \"no", + "no" + ], + [ + "you are wrong", + "no" + ], + [ + "no that is wrong", + "no" + ], + [ + "that is false", + "no" + ], + [ + "negative", + "no" + ], + [ + "what you just said is wrong", + "no" + ], + [ + "that\u2019s actually wrong", + "no" + ], + [ + "that\u2019s not correct", + "no" + ], + [ + "that\u2019s incorrect", + "no" + ], + [ + "are you sure i don\u2019t think that\u2019s correct", + "no" + ], + [ + "that'd be a no", + "no" + ], + [ + "nada", + "no" + ], + [ + "the answer is no", + "no" + ], + [ + "i think that's false", + "no" + ], + [ + "i believe that to be false", + "no" + ], + [ + "it seems not", + "no" + ], + [ + "that would be false", + "no" + ], + [ + "is the apr on my credit card good", + "apr" + ], + [ + "how good is the apr on my credit card", + "apr" + ], + [ + "do i have a good apr on my credit card", + "apr" + ], + [ + "does my credit card apr fall into a good range", + "apr" + ], + [ + "tell me how the apr on my hy-vee card is", + "apr" + ], + [ + "what's my apr on my discovery card", + "apr" + ], + [ + "what's an example of a good apr and what do i have", + "apr" + ], + [ + "how much is my apr on my bank of america card", + "apr" + ], + [ + "is my visa card's apr decent", + "apr" + ], + [ + "how good is the apr on my mastercard compared to others", + "apr" + ], + [ + "is the apr rate on my amex pretty good", + "apr" + ], + [ + "can you inform me what my apr is on my visa", + "apr" + ], + [ + "how high is the apr on my mastercard", + "apr" + ], + [ + "how much is my amex's apr", + "apr" + ], + [ + "what's the current apr for my mastercard", + "apr" + ], + [ + "how much do i pay in apr on my amex card", + "apr" + ], + [ + "what is the apr on my master card", + "apr" + ], + [ + "what is the apr on my visa card", + "apr" + ], + [ + "what is the apr on my discover card", + "apr" + ], + [ + "what is the apr on my chase freedom card", + "apr" + ], + [ + "what is the apr on my american express card", + "apr" + ], + [ + "what is the credit card apr exactly", + "apr" + ], + [ + "what is the credit card apr at the moment", + "apr" + ], + [ + "what is the credit card apr if you could fill me in", + "apr" + ], + [ + "what is the credit card apr please", + "apr" + ], + [ + "what is the credit card apr if you could tell me", + "apr" + ], + [ + "could you tell me what is the apr for the credit card", + "apr" + ], + [ + "could you please state the apr for the credit card", + "apr" + ], + [ + "what is the credit card's apr", + "apr" + ], + [ + "what is the apr for the credit card", + "apr" + ], + [ + "could you please tell me the apr for the credit card", + "apr" + ], + [ + "what is the apr rate on my bank of america card", + "apr" + ], + [ + "i need to know on my citibank card, what is the apr", + "apr" + ], + [ + "i need to know the apr on my credit union visa", + "apr" + ], + [ + "on my bank of america visa, what is the apr", + "apr" + ], + [ + "what is the apr on my aaa visa card", + "apr" + ], + [ + "review of my card apr", + "apr" + ], + [ + "how good is card apr", + "apr" + ], + [ + "can you give me an appraisal of my card's apr", + "apr" + ], + [ + "tell me the apr on my mastercard", + "apr" + ], + [ + "give me the apr for my mastercard", + "apr" + ], + [ + "fill me in on the apr for my american express card", + "apr" + ], + [ + "would you say that my card's apr is", + "apr" + ], + [ + "give me information about my card's apr", + "apr" + ], + [ + "what is the apr on my barclay's card", + "apr" + ], + [ + "i need to know the apr for my visa card", + "apr" + ], + [ + "can you look into whether my card has good apr or not", + "apr" + ], + [ + "tell me how good the apr is on my card please", + "apr" + ], + [ + "i must know my visa card's apr", + "apr" + ], + [ + "i need the apr on my visa card", + "apr" + ], + [ + "get me the apr on my visa card", + "apr" + ], + [ + "the apr on my visa card is what", + "apr" + ], + [ + "can you tell me the apr on my visa card", + "apr" + ], + [ + "my visa card what's the apr on that", + "apr" + ], + [ + "the apr on my disney visa, what is that exactly", + "apr" + ], + [ + "i'd like to know the apr on my visa card", + "apr" + ], + [ + "hey siri, tell me the apr on my disney visa", + "apr" + ], + [ + "check the apr on my disney visa, please", + "apr" + ], + [ + "how much is the apr these days on my nordstrom credit card", + "apr" + ], + [ + "on my wells fargo mastercard, what is the current apr", + "apr" + ], + [ + "tell me the current apr on my visa card from bbt", + "apr" + ], + [ + "what is the apr on my chase visa", + "apr" + ], + [ + "what will the apr on my transferred balance be after the first year on my bank of america credit card", + "apr" + ], + [ + "what's my apr on the credit card i used for a purchase a week ago", + "apr" + ], + [ + "what's my apr on the card i recently used to make a purchase", + "apr" + ], + [ + "what's my apr on my primary credit card", + "apr" + ], + [ + "what's my apr on this card", + "apr" + ], + [ + "what's the apr like for my credit card", + "apr" + ], + [ + "this credit card's apr is what", + "apr" + ], + [ + "what apr do i have with my credit card", + "apr" + ], + [ + "what apr does this credit card have", + "apr" + ], + [ + "what is the apr to my credit card", + "apr" + ], + [ + "i want you to tell me my credit card's apr", + "apr" + ], + [ + "tell me what my credit card's apr is", + "apr" + ], + [ + "would you please inform me about my credit card's apr", + "apr" + ], + [ + "do you know my credit card's apr", + "apr" + ], + [ + "it would be great if you could tell me my credit card's apr", + "apr" + ], + [ + "what is my credit card's annual percentage rate", + "apr" + ], + [ + "tell me my credit card's annual percentage rate", + "apr" + ], + [ + "my credit card's apr, please", + "apr" + ], + [ + "can you let me know my credit card's apr", + "apr" + ], + [ + "what is my apr for my credit card", + "apr" + ], + [ + "what is my apr", + "apr" + ], + [ + "i want to know my credit card apr", + "apr" + ], + [ + "is my apr for my credit card available", + "apr" + ], + [ + "tell me my credit card apr", + "apr" + ], + [ + "what's the apr on my visa card, please", + "apr" + ], + [ + "what's the apr on my amex card", + "apr" + ], + [ + "what's the apr on my amex card, please", + "apr" + ], + [ + "what is the apr on my amex card, please", + "apr" + ], + [ + "what is the apr on my amex card", + "apr" + ], + [ + "give me my credit card's apr", + "apr" + ], + [ + "what is the apr for my credit card", + "apr" + ], + [ + "please say my credit card's apr", + "apr" + ], + [ + "what is my credit card's apr", + "apr" + ], + [ + "please say the apr for my credit card", + "apr" + ], + [ + "credit card annual rate", + "apr" + ], + [ + "what's the annual rate on my discover card", + "apr" + ], + [ + "tell me the apr of my credit card", + "apr" + ], + [ + "what's the apr of my discover card", + "apr" + ], + [ + "what's the nutritional info for spaghetti", + "nutrition_info" + ], + [ + "what's the nutritional info for pizza", + "nutrition_info" + ], + [ + "how healthy are potato skins", + "nutrition_info" + ], + [ + "how healthy is spaghetti", + "nutrition_info" + ], + [ + "share the nutrition info for brownies with me", + "nutrition_info" + ], + [ + "share the nutrition info for french fries with me", + "nutrition_info" + ], + [ + "what's the nutritional info for potato skins", + "nutrition_info" + ], + [ + "what's the nutritional info for lasagna", + "nutrition_info" + ], + [ + "how healthy are french fries", + "nutrition_info" + ], + [ + "share the nutrition info for spaghetti with me", + "nutrition_info" + ], + [ + "share the nutrition info for cake with me", + "nutrition_info" + ], + [ + "what's the nutritional info for french fries", + "nutrition_info" + ], + [ + "how healthy is tomato soup", + "nutrition_info" + ], + [ + "share the nutrition info for pizza with me", + "nutrition_info" + ], + [ + "what do you know to be the nutritional info for macaroni and cheese to be", + "nutrition_info" + ], + [ + "the nutritional info for macaroni and cheese is what", + "nutrition_info" + ], + [ + "can you read to me the nutritional info for macaroni and cheese", + "nutrition_info" + ], + [ + "do you know the nutritional info for macaroni and cheese", + "nutrition_info" + ], + [ + "can you remember the nutritional info for macaroni and cheese", + "nutrition_info" + ], + [ + "is it healthy to eat pizza", + "nutrition_info" + ], + [ + "is pizza healthy", + "nutrition_info" + ], + [ + "how healthy is pizza", + "nutrition_info" + ], + [ + "could pizza be healthy", + "nutrition_info" + ], + [ + "is pizza considered healthy", + "nutrition_info" + ], + [ + "i'd like to know the nutritional content of eggs, please", + "nutrition_info" + ], + [ + "what's the nutrition content of chicken nuggets", + "nutrition_info" + ], + [ + "give me the nutrition facts for chicken breast", + "nutrition_info" + ], + [ + "what's the nutritional information for steak", + "nutrition_info" + ], + [ + "can you tell me the nutritional content of chicken nuggets", + "nutrition_info" + ], + [ + "what's the nutritional information of iceberg lettuce", + "nutrition_info" + ], + [ + "what kind of nutritional content do carrots have", + "nutrition_info" + ], + [ + "nutritional information for celery", + "nutrition_info" + ], + [ + "what are the nutritional facts of waffles", + "nutrition_info" + ], + [ + "can you tell me the nutrition info for pork sausage", + "nutrition_info" + ], + [ + "what's the nutritional info for an apple", + "nutrition_info" + ], + [ + "what's the nutritional info for chicken breast", + "nutrition_info" + ], + [ + "what's the nutritional info for a banana", + "nutrition_info" + ], + [ + "what's the nutritional info for a cheeseburger", + "nutrition_info" + ], + [ + "what's the nutritional info for a loaf of bread", + "nutrition_info" + ], + [ + "mashed potato's nutrition", + "nutrition_info" + ], + [ + "nutrition information of mashed potatoes", + "nutrition_info" + ], + [ + "what are the nutritional data for mashed potatoes", + "nutrition_info" + ], + [ + "are mashed potatoes good nutrition", + "nutrition_info" + ], + [ + "give me the nutritional information for mashed potatoes", + "nutrition_info" + ], + [ + "how healthy are apples", + "nutrition_info" + ], + [ + "i want to know if pizza is healthy", + "nutrition_info" + ], + [ + "can you tell me how healthy apples are", + "nutrition_info" + ], + [ + "are pasta dishes healthy", + "nutrition_info" + ], + [ + "do you know the nutrition facts for grapes", + "nutrition_info" + ], + [ + "i must know the nutritional info for grapes", + "nutrition_info" + ], + [ + "grapes have what kind of nutritional facts", + "nutrition_info" + ], + [ + "tell me the nutrition for grapes", + "nutrition_info" + ], + [ + "can you show me the nutrition facts for grapes", + "nutrition_info" + ], + [ + "i want to know the nutrition info for chicken nuggets", + "nutrition_info" + ], + [ + "tell me the nutritional information for chicken nuggets", + "nutrition_info" + ], + [ + "nutrition information for chicken nuggets, please", + "nutrition_info" + ], + [ + "can you tell me the nutritional information for chicken nuggets", + "nutrition_info" + ], + [ + "i would like you to share with me the nutrition info for chicken nuggets", + "nutrition_info" + ], + [ + "i want to know how nutritious an avocado typically is", + "nutrition_info" + ], + [ + "can you give me nutritional info on oranges", + "nutrition_info" + ], + [ + "can you tell me how many calories are in an apple", + "nutrition_info" + ], + [ + "i would like to know how much fat is in tbsp of olive oil", + "nutrition_info" + ], + [ + "can you give the nutritional information for the pasta", + "nutrition_info" + ], + [ + "let me see the nutrition content of the chicken tacos", + "nutrition_info" + ], + [ + "i need to see the chicken salad's nutritional info", + "nutrition_info" + ], + [ + "i need to know all about the nutrition of the beef taco", + "nutrition_info" + ], + [ + "i want to see the nutritional content of the hamburger", + "nutrition_info" + ], + [ + "what sort of nutrients does a steak have", + "nutrition_info" + ], + [ + "what's the facts about nutrients in rice milk", + "nutrition_info" + ], + [ + "what type of nutrition does spaghetti have", + "nutrition_info" + ], + [ + "how many kinds of nutrients does a glass of rice milk have", + "nutrition_info" + ], + [ + "can you give me information about the nutrition facts for celery", + "nutrition_info" + ], + [ + "what's the nutrient make up of a plate of spaghetti", + "nutrition_info" + ], + [ + "what's the nutrient info for a donut", + "nutrition_info" + ], + [ + "what's the nutritional info for a ganola bar", + "nutrition_info" + ], + [ + "can you tell me about the nutrients in jello", + "nutrition_info" + ], + [ + "how many nutrients are there in a bowl of cereal", + "nutrition_info" + ], + [ + "i need to know how healthy meatloaf is", + "nutrition_info" + ], + [ + "what are the nutrition facts of grilled chicken", + "nutrition_info" + ], + [ + "what are the nutrition facts for macaroni and cheese", + "nutrition_info" + ], + [ + "please fill me in on the nutrition facts for shrimp scampi", + "nutrition_info" + ], + [ + "is spaghetti healthy", + "nutrition_info" + ], + [ + "tell me how healthy mac and cheese is", + "nutrition_info" + ], + [ + "please give me the nutrition facts for chicken parmesan", + "nutrition_info" + ], + [ + "how healthy is grilled chicken", + "nutrition_info" + ], + [ + "i want to know the nutrition facts for pizza", + "nutrition_info" + ], + [ + "do you have nutrition facts for cheerios", + "nutrition_info" + ], + [ + "where are the nutrition facts for cheerios", + "nutrition_info" + ], + [ + "how nutritious are cheerios", + "nutrition_info" + ], + [ + "where on the cheerios box are the nutrition facts", + "nutrition_info" + ], + [ + "does the box have nutrition facts for cheerios on it", + "nutrition_info" + ], + [ + "what are the nutrition facts for a mcdouble at mcdonalds", + "nutrition_info" + ], + [ + "how healthy are lunchables", + "nutrition_info" + ], + [ + "what are the nutrition facts for a medium popcorn at the movies", + "nutrition_info" + ], + [ + "what's the nutritional info for a subway chicken sandwhich", + "nutrition_info" + ], + [ + "what are the nutrition facts for a rodeo cheese burger at burger king", + "nutrition_info" + ], + [ + "how healthy is pho", + "nutrition_info" + ], + [ + "what's the nutritional value for a pizza lunchable", + "nutrition_info" + ], + [ + "how healthy is stax chips", + "nutrition_info" + ], + [ + "what's the nutritional info for a cup of noodle soup", + "nutrition_info" + ], + [ + "does my calendar have anything for january 1st", + "calendar" + ], + [ + "what is there on january 1st on my calendar", + "calendar" + ], + [ + "are there any events on my calendar for january 1st", + "calendar" + ], + [ + "what do i have to do on january 1st", + "calendar" + ], + [ + "do i have anything scheduled on january 1st", + "calendar" + ], + [ + "what items do i have on my calendar for easter", + "calendar" + ], + [ + "what do i have on my calendar today, the 3rd", + "calendar" + ], + [ + "what've i got set for friday, the 13th, of next year", + "calendar" + ], + [ + "is my daughter's birthday on my calendar", + "calendar" + ], + [ + "did i had my wife and mine anniversary to my calendar", + "calendar" + ], + [ + "did i put an item on the calendar to get the dog neutered", + "calendar" + ], + [ + "can you tell me what's on my calendar for march 05, 2019", + "calendar" + ], + [ + "does the calendar already have easter noted on it", + "calendar" + ], + [ + "do i have a note on the calendar for black friday", + "calendar" + ], + [ + "what's on my calendar for march 01", + "calendar" + ], + [ + "anything on the schedule for october 14th", + "calendar" + ], + [ + "what does my schedule look like for april 1", + "calendar" + ], + [ + "do i have anything to do march 2nd", + "calendar" + ], + [ + "what do i have on my calendar for february 8", + "calendar" + ], + [ + "how is my calendar looking for may 6th", + "calendar" + ], + [ + "what do i have planned on my calendar for next sunday", + "calendar" + ], + [ + "do i have anything on my calendar next sunday", + "calendar" + ], + [ + "show me my calendar for next sunday", + "calendar" + ], + [ + "is my calendar free next sunday", + "calendar" + ], + [ + "what is on my calendar next sunday", + "calendar" + ], + [ + "what do i have scheduled on march 2nd on my calendar", + "calendar" + ], + [ + "are there any events on my calendar for march 2nd", + "calendar" + ], + [ + "have i scheduled anything on march 2nd on my calendar", + "calendar" + ], + [ + "do i have anything on my calendar for march 2nd", + "calendar" + ], + [ + "what do i have going on march 2nd on my calendar", + "calendar" + ], + [ + "what's happening on may 3rd", + "calendar" + ], + [ + "what's in the books for april 30th", + "calendar" + ], + [ + "what do i have going on may 4th", + "calendar" + ], + [ + "what is on my calander for valentines day", + "calendar" + ], + [ + "on the 26th what is on the table for my calendar", + "calendar" + ], + [ + "when am i next having a meeting in december", + "calendar" + ], + [ + "what is currently on my calendar for friday the 1st", + "calendar" + ], + [ + "tell what is showing on my calendar for the 17th of march", + "calendar" + ], + [ + "i wanna know what is currently on my calendar for friday the 1st", + "calendar" + ], + [ + "let me know what is showing on my calendar for the 17th of march", + "calendar" + ], + [ + "please inform me what is showing on my calendar for the 17th of march", + "calendar" + ], + [ + "i must know what is currently on my calendar for friday the 1st", + "calendar" + ], + [ + "i need to know what is currently on my calendar for friday the 1st", + "calendar" + ], + [ + "what is showing on my calendar for the 17th of march", + "calendar" + ], + [ + "i gotta know what is currently on my calendar for friday the 1st", + "calendar" + ], + [ + "tell me what is showing on my calendar for the 17th of march", + "calendar" + ], + [ + "what do i have scheduled on 3/15", + "calendar" + ], + [ + "what do i have planned on 3/15", + "calendar" + ], + [ + "what do i have to do on march 2 that's on my calendar", + "calendar" + ], + [ + "tell me what is on my calendar for march 2", + "calendar" + ], + [ + "what do i have on my calendar for march 2", + "calendar" + ], + [ + "let me know my march 2 calendar", + "calendar" + ], + [ + "what is on march 2 calendar", + "calendar" + ], + [ + "what time is my haircut on wednesday", + "calendar" + ], + [ + "do i have any appointments on tuesday", + "calendar" + ], + [ + "can you see whether i have an event called amy's surprise party on my calendar", + "calendar" + ], + [ + "can you tell me what my may 1st will be like according to my calendar", + "calendar" + ], + [ + "tell me everything on my calendar for may 1", + "calendar" + ], + [ + "remind me of the date of the event called 'anniversary dinner", + "calendar" + ], + [ + "what is on my schedule for the day of march 5th", + "calendar" + ], + [ + "what do i have scheduled for february 28th", + "calendar" + ], + [ + "what events are on my calendar for april 1st", + "calendar" + ], + [ + "is there an event titled anniversary dinner on my calendar", + "calendar" + ], + [ + "tell me if there is an event called annual physical in my calendar", + "calendar" + ], + [ + "can you give me an overview of what march 23 will look like for me", + "calendar" + ], + [ + "tell me what my calendar looks like for march 12th", + "calendar" + ], + [ + "check my calendar to see if an event called final exams exists", + "calendar" + ], + [ + "what do i have on my calendar for march 11", + "calendar" + ], + [ + "does my calendar include an event called shana's baby shower", + "calendar" + ], + [ + "pull up my calendar and tell me what i have scheduled for march 30", + "calendar" + ], + [ + "do i have anything on my schedule for april 15", + "calendar" + ], + [ + "tell me any events scheduled on my calendar for april 15", + "calendar" + ], + [ + "tell me what my calendar looks like for april 13", + "calendar" + ], + [ + "what have i got planned for the date of april 23", + "calendar" + ], + [ + "tell me what is on my calendar for april 1", + "calendar" + ], + [ + "the 21st, what is on my calendar", + "calendar" + ], + [ + "what's on the calendar for march 4th", + "calendar" + ], + [ + "what's on my calendar for tuesday", + "calendar" + ], + [ + "what's on my calendar for the 18th of march", + "calendar" + ], + [ + "i have what to do on wednesday", + "calendar" + ], + [ + "what do i have scheduled for march 2", + "calendar" + ], + [ + "do i have anything on my calendar for may 3", + "calendar" + ], + [ + "i want my schedule for march 2", + "calendar" + ], + [ + "tell me what is on my calendar for may 3", + "calendar" + ], + [ + "what's on my schedule for may 3", + "calendar" + ], + [ + "read me my schedule for march 2", + "calendar" + ], + [ + "do i have anything on my schedule for may 3", + "calendar" + ], + [ + "read my appointments for march 2", + "calendar" + ], + [ + "what is on my schedule for tomorrow", + "calendar" + ], + [ + "search my calendar for birthday party", + "calendar" + ], + [ + "do i have 30th birthday party on my calendar", + "calendar" + ], + [ + "search my calendar for birthday", + "calendar" + ], + [ + "check my calendar for 30th birthday party", + "calendar" + ], + [ + "check my calendar for saturday", + "calendar" + ], + [ + "tell me what's on the calendar for saturday", + "calendar" + ], + [ + "read my calendar events", + "calendar" + ], + [ + "what's on my agenda for tomorrow", + "calendar" + ], + [ + "what am i supposed to be doing today", + "calendar" + ], + [ + "what do i have planned for tomorrow", + "calendar" + ], + [ + "what do i have on my calendar for monday the 1st of march", + "calendar" + ], + [ + "book an uber for 6 people to go to the movies", + "uber" + ], + [ + "i need an uber for 6 people to the movies", + "uber" + ], + [ + "book a 6 person uber to the movies", + "uber" + ], + [ + "i need an uber to the movies for me and 5 other people", + "uber" + ], + [ + "i'm going to the movies book an uber for 6 people", + "uber" + ], + [ + "i need an uber to take me to the mall", + "uber" + ], + [ + "are there any ubers available that fit 5 people we are going to wendys", + "uber" + ], + [ + "call an uber that fits 5 people that are on their way to wendys", + "uber" + ], + [ + "book an uber suitable for seating 5 individuals and headed for the mall", + "uber" + ], + [ + "book me an uber to olive garden", + "uber" + ], + [ + "please book an uber for chima's", + "uber" + ], + [ + "call an uber to mark's house", + "uber" + ], + [ + "call an uber to mcdonalds", + "uber" + ], + [ + "i need an uber for 5 people to go to wendys", + "uber" + ], + [ + "please order an uber for me to go to the zoo", + "uber" + ], + [ + "can you please book an uber to the zoo", + "uber" + ], + [ + "order a large uber for 5 people to the zoo", + "uber" + ], + [ + "schedule an uber to the bean", + "uber" + ], + [ + "i am in need of an uber to the hospital", + "uber" + ], + [ + "i need an uber to times square asap", + "uber" + ], + [ + "i need an uber that will accommodate eight people to go to the closest amc theater", + "uber" + ], + [ + "can i get an uber for five people to go to the national gallery of art", + "uber" + ], + [ + "i need to get an uber for three people to go to the zoo", + "uber" + ], + [ + "i want to get an uber for one person to go to the library", + "uber" + ], + [ + "i need an uber that fits ten people to go to chipotle", + "uber" + ], + [ + "get an uber to take me to my brother's house in mineola", + "uber" + ], + [ + "i need an uber for 3 passengers to go to madison square garden", + "uber" + ], + [ + "get an uber to pick me up at work and take me home", + "uber" + ], + [ + "we need an uber pool for 2 passengers going to the greenboro airport", + "uber" + ], + [ + "find an uber xl to take me to the kroger near me", + "uber" + ], + [ + "find an uber for two passengers we are going to the airport in toledo", + "uber" + ], + [ + "i need an uber with a car seat for 2 adults and one child to take us to wilmington, de", + "uber" + ], + [ + "get an uber for 4 passengers to get us to the phl airport", + "uber" + ], + [ + "i need an uber pool from home in the morning at seven to the capitol building", + "uber" + ], + [ + "i need an uber to class tonight on the mainline campus", + "uber" + ], + [ + "can i get an uber for 2 home", + "uber" + ], + [ + "can i get an uber to central park for 5", + "uber" + ], + [ + "can i get a car to the baseball field for 12", + "uber" + ], + [ + "can i get an uber for 4 to the mall", + "uber" + ], + [ + "can i get an uber for myself to the grocery store", + "uber" + ], + [ + "i need to go to phoenix sky harbor airport using uber", + "uber" + ], + [ + "can you send me an uber to go to a restaurant in downtown phoenix", + "uber" + ], + [ + "is there any uber available to take me to the airport", + "uber" + ], + [ + "i want to reserve an uber to go to the airport", + "uber" + ], + [ + "i need an uber please", + "uber" + ], + [ + "help me get an uber to soldier field", + "uber" + ], + [ + "help me get an uber to ann arbor", + "uber" + ], + [ + "i need an uber to the sears tower", + "uber" + ], + [ + "can you get me an uber to the science museum", + "uber" + ], + [ + "assist me with finding an uber to big ben", + "uber" + ], + [ + "book an uber with the destination set to david's house, please", + "uber" + ], + [ + "i need an uber reserved to take me to the restaurant", + "uber" + ], + [ + "i would like an uber going to the train station, please", + "uber" + ], + [ + "please book me an uber ride to the stadium", + "uber" + ], + [ + "can you please reserve my uber to go to devon's seafood restaurant", + "uber" + ], + [ + "can you please order me an uber to get to jfk international", + "uber" + ], + [ + "please book me an uber and enter destination penn station, new york", + "uber" + ], + [ + "make an uber reservation to the ymca, center city, philadelphia, please", + "uber" + ], + [ + "i need an uber to get to dulles airport", + "uber" + ], + [ + "i would like an uber going to atlantic city, new jersey", + "uber" + ], + [ + "i need an uber", + "uber" + ], + [ + "please get me an uber to get to the movies", + "uber" + ], + [ + "i would like to get an uber to the movies", + "uber" + ], + [ + "i would like an uber please", + "uber" + ], + [ + "am i able to get an uber to the movies", + "uber" + ], + [ + "can you get me an uber to the movies", + "uber" + ], + [ + "i want an uber", + "uber" + ], + [ + "i need an uber to the movies", + "uber" + ], + [ + "get me an uber", + "uber" + ], + [ + "i would like to request an uber please", + "uber" + ], + [ + "uber, i have 3 people who are going to union station", + "uber" + ], + [ + "i need to get 3 riders to union station", + "uber" + ], + [ + "i want to book uber for 3 people to union station", + "uber" + ], + [ + "3 of us need to get to union station via uber", + "uber" + ], + [ + "can i get an uber to union station for 3 riders", + "uber" + ], + [ + "i need an uber to the doctor", + "uber" + ], + [ + "i need to catch an uber to cal expo", + "uber" + ], + [ + "schedule an uber to the mall", + "uber" + ], + [ + "get me an uber to the napa winery", + "uber" + ], + [ + "schedule me an uber to my job", + "uber" + ], + [ + "schedule me an uber to the mall", + "uber" + ], + [ + "get me an uber to the airport", + "uber" + ], + [ + "get me an uber to chilis", + "uber" + ], + [ + "book an uber to school", + "uber" + ], + [ + "get an uber to the airport", + "uber" + ], + [ + "ai i need to go to charlies with eight adults can you get uber", + "uber" + ], + [ + "ai i have 4 people need to get to get me uber", + "uber" + ], + [ + "i am stranded and need uber", + "uber" + ], + [ + "set me up with an uber", + "uber" + ], + [ + "i will need an uber for 3 to go to jfk airport", + "uber" + ], + [ + "i need an uber for 2 for orlando", + "uber" + ], + [ + "get me an uber for 4 heading to miam", + "uber" + ], + [ + "i will need an uber for 2 people to get to philadelphia", + "uber" + ], + [ + "i need to uber somewhere", + "uber" + ], + [ + "help me get an uber", + "uber" + ], + [ + "schedule an uber for 3 to go to the airport", + "uber" + ], + [ + "call an uber for 2 people to go to fourth street live", + "uber" + ], + [ + "i'm going to need an uber to take 4 people to the mall", + "uber" + ], + [ + "i need an uber for 7 people to go to safire restaurant", + "uber" + ], + [ + "can you call an uber for 2 to go to proof on main", + "uber" + ], + [ + "what is 7 x 7", + "calculator" + ], + [ + "please add 456 and 781 for me", + "calculator" + ], + [ + "what is 8 factorial", + "calculator" + ], + [ + "can you tell me what 30% off 279 is", + "calculator" + ], + [ + "can you tell me what 30% off 235 is, please", + "calculator" + ], + [ + "what is the sum of 3 plus 5", + "calculator" + ], + [ + "could you tell me what 30% off 235 is, please", + "calculator" + ], + [ + "can you tell me what 30% off 235 is", + "calculator" + ], + [ + "can you tell me what 30% off 279 is, please", + "calculator" + ], + [ + "what is the sum of 10 plus 5", + "calculator" + ], + [ + "what is 4 + 4", + "calculator" + ], + [ + "what is 60 percent off of 350 dollars", + "calculator" + ], + [ + "what is an 18 percent tip on 20 dollars", + "calculator" + ], + [ + "what is 25 percent of 6999", + "calculator" + ], + [ + "can you tell me what is 18 percent of $2500", + "calculator" + ], + [ + "what is 3/4 of 18", + "calculator" + ], + [ + "i need to know what is 85% of $1500", + "calculator" + ], + [ + "what is 20% of a thousand", + "calculator" + ], + [ + "what is 55 times 300", + "calculator" + ], + [ + "what is the square root of 1 million", + "calculator" + ], + [ + "will you help me with a math problem", + "calculator" + ], + [ + "can you help me solve a math problem", + "calculator" + ], + [ + "how to solve this math problem", + "calculator" + ], + [ + "what is 4 + 7", + "calculator" + ], + [ + "what is 4 x 4", + "calculator" + ], + [ + "what is 2 + 2", + "calculator" + ], + [ + "what is 20+ 5", + "calculator" + ], + [ + "what is 500 x 25", + "calculator" + ], + [ + "what is 2+2", + "calculator" + ], + [ + "what is 10 + 20", + "calculator" + ], + [ + "what is 22+ 6", + "calculator" + ], + [ + "what is the square root of 80", + "calculator" + ], + [ + "what is 5 x 4", + "calculator" + ], + [ + "what is 15% of 3143", + "calculator" + ], + [ + "what is the square root of 10294", + "calculator" + ], + [ + "how many square feet is a 13 by 74 room", + "calculator" + ], + [ + "what is three quarters of one sixth", + "calculator" + ], + [ + "what is 213 times 3", + "calculator" + ], + [ + "what is the square root of 144", + "calculator" + ], + [ + "what is the antilog of 365", + "calculator" + ], + [ + "what is 78 times 85", + "calculator" + ], + [ + "what is 250 times 118 times 9", + "calculator" + ], + [ + "what is 78 times 81 minus 5", + "calculator" + ], + [ + "what is 1785 minus 334 minus 87 plus 374 minus 400 plus 17", + "calculator" + ], + [ + "help me with math", + "calculator" + ], + [ + "i need you to help me with some math if you can", + "calculator" + ], + [ + "please help with my math", + "calculator" + ], + [ + "can you help me do math", + "calculator" + ], + [ + "can you do a math problem", + "calculator" + ], + [ + "what is 1 million twelve hundred divided by 400 thousand", + "calculator" + ], + [ + "what is the square root of 10500", + "calculator" + ], + [ + "what is 20 times 20 times 30", + "calculator" + ], + [ + "what is 10 to the 12th power", + "calculator" + ], + [ + "how much is 50 plus 756", + "calculator" + ], + [ + "what is 750 divided by 5", + "calculator" + ], + [ + "if i win 200000 how do i split it 7 ways", + "calculator" + ], + [ + "what is 900 times 8", + "calculator" + ], + [ + "can you tell me what 80 divided buy 4 is", + "calculator" + ], + [ + "560 divided by 3", + "calculator" + ], + [ + "what is 606 divided by 5", + "calculator" + ], + [ + "subtract 100 from 12", + "calculator" + ], + [ + "what is 005 percent of 1 percent", + "calculator" + ], + [ + "what is the square root of 31", + "calculator" + ], + [ + "what is six divided by 16", + "calculator" + ], + [ + "how many times can 12 go into 600", + "calculator" + ], + [ + "what is the square root of sixteen", + "calculator" + ], + [ + "what is 562 times 400", + "calculator" + ], + [ + "add twelve and twelve please", + "calculator" + ], + [ + "what is 10 + 10", + "calculator" + ], + [ + "what is the square root of 5", + "calculator" + ], + [ + "what is 1/2 times 5/8", + "calculator" + ], + [ + "what is 80980 + 098098 + 80980 + 1243", + "calculator" + ], + [ + "what is 13 times 45", + "calculator" + ], + [ + "what is 34 times 80908", + "calculator" + ], + [ + "what is 90908 divided by 30890", + "calculator" + ], + [ + "what is 38% of 389209", + "calculator" + ], + [ + "what is the square root of 66", + "calculator" + ], + [ + "what is 2/3 x 1/9", + "calculator" + ], + [ + "can you do algebra", + "calculator" + ], + [ + "what is 1 fifth times 2 fifths", + "calculator" + ], + [ + "what's 3 plus 3", + "calculator" + ], + [ + "what's ten times eight", + "calculator" + ], + [ + "i need to know what 75 plus 43 is", + "calculator" + ], + [ + "what do you get if you divide 3 by 2", + "calculator" + ], + [ + "what is the area of a 20 x 20 room", + "calculator" + ], + [ + "subtract 85 from 997", + "calculator" + ], + [ + "what is 20 + 20", + "calculator" + ], + [ + "what is the square root of 2784", + "calculator" + ], + [ + "how many times does 8 go into 2000", + "calculator" + ], + [ + "what is 35 times 23", + "calculator" + ], + [ + "what is 3 to the 6th power", + "calculator" + ], + [ + "what is 63 percent of 145", + "calculator" + ], + [ + "can you calculate 18 divided by 45", + "calculator" + ], + [ + "what is the square root of 104", + "calculator" + ], + [ + "what\u2019s the answer to 5-6=", + "calculator" + ], + [ + "what is the sum of 8 + 3", + "calculator" + ], + [ + "please provide the square root of 36", + "calculator" + ], + [ + "what does 6 x 1 equal", + "calculator" + ], + [ + "what does 2 + 2 equal", + "calculator" + ], + [ + "what is 10000 divided by 20", + "calculator" + ], + [ + "i would like to know what today's date is", + "date" + ], + [ + "i need information on today's date", + "date" + ], + [ + "tell me what date it is please", + "date" + ], + [ + "tell me what day today is", + "date" + ], + [ + "can you tell me tomorrow's date", + "date" + ], + [ + "what is the date for tomorrow", + "date" + ], + [ + "i would like to know tomorrow's date", + "date" + ], + [ + "what is the month and day tomorrow", + "date" + ], + [ + "in six days, what will it be", + "date" + ], + [ + "what day will it be in fourteen days", + "date" + ], + [ + "which day will it be five days from now", + "date" + ], + [ + "after another eight days, what day will it be", + "date" + ], + [ + "what day is it gonna be in twenty-one days", + "date" + ], + [ + "current date", + "date" + ], + [ + "what day of the month is it today", + "date" + ], + [ + "what date is it", + "date" + ], + [ + "can you tell me the date today", + "date" + ], + [ + "please share today's date", + "date" + ], + [ + "what date is it today", + "date" + ], + [ + "what day is it", + "date" + ], + [ + "what is the day", + "date" + ], + [ + "tell me what day it is", + "date" + ], + [ + "is it monday, tuesday, wednesday, thursday, friday, saturday, or sunday", + "date" + ], + [ + "what's the day of the week", + "date" + ], + [ + "what's the date tomorrow, please", + "date" + ], + [ + "what is the date tomorrow", + "date" + ], + [ + "what is the date tomorrow, please", + "date" + ], + [ + "what is tomorrow's date, please", + "date" + ], + [ + "can you tell me what today's date is", + "date" + ], + [ + "what is today's month, day and year", + "date" + ], + [ + "today's date is what", + "date" + ], + [ + "please tell me today's date", + "date" + ], + [ + "could you tell me today's date", + "date" + ], + [ + "i need to know today's date please", + "date" + ], + [ + "would you please tell me today's date", + "date" + ], + [ + "what is the date today", + "date" + ], + [ + "today's date is what exactly", + "date" + ], + [ + "please tell me what date it is today", + "date" + ], + [ + "can you tell me today's date", + "date" + ], + [ + "i need to know today's date", + "date" + ], + [ + "what would tomorrow's date be", + "date" + ], + [ + "tell me the date today", + "date" + ], + [ + "i'd like to know the date tomorrow", + "date" + ], + [ + "in 2 days, what date will it be", + "date" + ], + [ + "what will be the date tomorrow", + "date" + ], + [ + "what will the date be in 10 days", + "date" + ], + [ + "15 days from today, what will the date be", + "date" + ], + [ + "what's the date tomorrow", + "date" + ], + [ + "i need to know what date it is tomorrow", + "date" + ], + [ + "in 100 days from now, what will be the date", + "date" + ], + [ + "what will be the date in 100 days from now", + "date" + ], + [ + "tell me what the date is tomorrow", + "date" + ], + [ + "give me tomorrow's date please", + "date" + ], + [ + "what day is it today", + "date" + ], + [ + "do you have the date", + "date" + ], + [ + "what is the date of today", + "date" + ], + [ + "please give me today's date", + "date" + ], + [ + "what is today's date", + "date" + ], + [ + "what date is today", + "date" + ], + [ + "what is today", + "date" + ], + [ + "today is what date", + "date" + ], + [ + "what's the day today", + "date" + ], + [ + "what year is it", + "date" + ], + [ + "what's the date 400 days from now", + "date" + ], + [ + "can you tell me the current date", + "date" + ], + [ + "tell me the date 650 days from now", + "date" + ], + [ + "what's the current date, month and year", + "date" + ], + [ + "what will the date be 100 days from now", + "date" + ], + [ + "what day of the week is it", + "date" + ], + [ + "what day will it be 373 days from now", + "date" + ], + [ + "i need to know the date in 256 days", + "date" + ], + [ + "what is the date", + "date" + ], + [ + "give me the date today", + "date" + ], + [ + "i need to know what the date is today", + "date" + ], + [ + "i'd like to know what the date is", + "date" + ], + [ + "what's today's date", + "date" + ], + [ + "tell me what the date is today", + "date" + ], + [ + "show me a calendar", + "date" + ], + [ + "show me the date", + "date" + ], + [ + "i need the full date for today", + "date" + ], + [ + "what day of the month is it", + "date" + ], + [ + "can you remind me of the date", + "date" + ], + [ + "tomorrow, what will the date be", + "date" + ], + [ + "tell me what the date is for tomorrow", + "date" + ], + [ + "tell me what the date will be tomorrow", + "date" + ], + [ + "what is tomorrow's date", + "date" + ], + [ + "what's tomorrow on the calender", + "date" + ], + [ + "what date is tomorrow", + "date" + ], + [ + "calender says tomorrow is", + "date" + ], + [ + "tell me tomorrow's date", + "date" + ], + [ + "the date tomorrow is what", + "date" + ], + [ + "when will it be in 10 days", + "date" + ], + [ + "what day is it tomorrow", + "date" + ], + [ + "what's the current date", + "date" + ], + [ + "what is the full date after today", + "date" + ], + [ + "what's the date 32 days from now", + "date" + ], + [ + "can you tell me the date", + "date" + ], + [ + "what will the date be in 64 days", + "date" + ], + [ + "can you tell me what the next day is", + "date" + ], + [ + "what's today", + "date" + ], + [ + "if i fly american to los angeles, how many carry ons am i allowed", + "carry_on" + ], + [ + "how many carry ons will american let me take for a flight to los vegas", + "carry_on" + ], + [ + "if i take a flight on pan am to denver, how many carry ons are included", + "carry_on" + ], + [ + "if i fly on virgin to chicago, how many carry ons can i take", + "carry_on" + ], + [ + "how my carry ons does spirit airlines allow me for a flight to dallas", + "carry_on" + ], + [ + "would you let me know how many carry ons i can take on a flight with southwest airlines to miami", + "carry_on" + ], + [ + "i need to know the carry-on restrictions for united airlines", + "carry_on" + ], + [ + "tell me the carry-on restrictions for united airlines", + "carry_on" + ], + [ + "i need to know how many carry ons i can take on a flight with southwest airlines to houston", + "carry_on" + ], + [ + "let me know how many carry ons i can take on a flight with southwest airlines to dallas", + "carry_on" + ], + [ + "tell me how many carry ons i can take on a flight with southwest airlines to dallas", + "carry_on" + ], + [ + "would you let me know the carry-on restrictions for american airlines", + "carry_on" + ], + [ + "i am wanting to know how many carry ons i can take on a flight with southwest airlines to houston", + "carry_on" + ], + [ + "could you list out the carry-on restrictions for american airlines", + "carry_on" + ], + [ + "i am wanting to know the carry-on restrictions for united airlines", + "carry_on" + ], + [ + "what carry-on restrictions does southwest impose", + "carry_on" + ], + [ + "carry-on restrictions for air emirates", + "carry_on" + ], + [ + "does delta have any carry-on restrictions", + "carry_on" + ], + [ + "what's restricted in my carry-on with united", + "carry_on" + ], + [ + "what restrictions do my carry-ons need to comply with for delta", + "carry_on" + ], + [ + "how much luggage can i carry with me on flight dl2200 to denver", + "carry_on" + ], + [ + "am i allowed carry ons for my flight with westjet to edmonton", + "carry_on" + ], + [ + "how many carry ons am i allowed to take on my canadair flight to frankfurt", + "carry_on" + ], + [ + "is there are limit of carry ons for my flight with aer lingus to cork", + "carry_on" + ], + [ + "what are the carry on limits for delta", + "carry_on" + ], + [ + "am i limited in carry ons for jet blue", + "carry_on" + ], + [ + "what am i allowed to carry on for american airlines", + "carry_on" + ], + [ + "does delta have any restrictions for what i can carry on", + "carry_on" + ], + [ + "does jet blue have any carry-on restrictions", + "carry_on" + ], + [ + "how many carry-on items are allowed per passenger", + "carry_on" + ], + [ + "what are the carry-on rules", + "carry_on" + ], + [ + "is there a carry-on item weight limit", + "carry_on" + ], + [ + "how big can a carry-on bag be", + "carry_on" + ], + [ + "does delta have carry-on restrictions", + "carry_on" + ], + [ + "do you know the carry-on restrictions for delta", + "carry_on" + ], + [ + "delta has too many carry-on restrictions! do you know them", + "carry_on" + ], + [ + "are there carry-on restrictions for delta", + "carry_on" + ], + [ + "what are the carry on rules for united", + "carry_on" + ], + [ + "tell me united's carry on policy", + "carry_on" + ], + [ + "what should i know about the carry on policy for american", + "carry_on" + ], + [ + "let me know the carry on policy for alaska airlines", + "carry_on" + ], + [ + "i want to know the carry on policy for southwest", + "carry_on" + ], + [ + "if i fly internationally, do brittish airwaiys have carry-on limitations", + "carry_on" + ], + [ + "can i carry on a garment bag, a small travel bag, and a back pack on my trip with american airlines", + "carry_on" + ], + [ + "i am flying jetblue and need to know what the most number of bags are that i can carry on", + "carry_on" + ], + [ + "what are the carry-on fees with delta for international flights", + "carry_on" + ], + [ + "what are the carry-on limits for flying domestically with delta", + "carry_on" + ], + [ + "how many carry ons can i take on a flight with jet blue to washington dc", + "carry_on" + ], + [ + "how many carry ons can i take on a flight with virgin airlines to vancouver bc", + "carry_on" + ], + [ + "how many carry ons can i take on a flight with delta to mexico city", + "carry_on" + ], + [ + "how many carry ons can i take on a flight with united to lax", + "carry_on" + ], + [ + "how many carry ons can i take on a flight with american airlines to seattle", + "carry_on" + ], + [ + "what is the carry-on policy say for flights on delta airlines", + "carry_on" + ], + [ + "what are the carry-on restrictions for singapore airlines", + "carry_on" + ], + [ + "what are the carry-on restrictions for frontier airlines", + "carry_on" + ], + [ + "what does the carry-on policy say for flights on united airlines", + "carry_on" + ], + [ + "how many bags can i carry-on for flights on singapore airlines", + "carry_on" + ], + [ + "what are the carry-on restrictions for delta", + "carry_on" + ], + [ + "what are the carry-on restrictions for united", + "carry_on" + ], + [ + "what are the carry-on restrictions for southwest airlines", + "carry_on" + ], + [ + "what are the rules regarding carry-on baggage for flights on virgin airlines", + "carry_on" + ], + [ + "what can't i carry-on to delta", + "carry_on" + ], + [ + "what is the carry on limit", + "carry_on" + ], + [ + "what are delta's carry-on policies for flights", + "carry_on" + ], + [ + "what are the rules for carry on luggage", + "carry_on" + ], + [ + "can you look up the carry-on restrictions for delta", + "carry_on" + ], + [ + "are there restrictions for carry-ons on delta", + "carry_on" + ], + [ + "what can i carry-on delta flights", + "carry_on" + ], + [ + "do i have to pay for carry-ons on delta", + "carry_on" + ], + [ + "what are the carry on limits for delta flights", + "carry_on" + ], + [ + "is there a carry on weight limit", + "carry_on" + ], + [ + "what restrictions are there for carry-on on delta", + "carry_on" + ], + [ + "what are the rules for carry on luggage for delta", + "carry_on" + ], + [ + "what are delta's carry-on restrictions", + "carry_on" + ], + [ + "tell me the carry on rules", + "carry_on" + ], + [ + "does united airlines allow more than one carry on", + "carry_on" + ], + [ + "how strict is spirit when it comes to carry ons", + "carry_on" + ], + [ + "can i have 3 carry ons with delta at jfk", + "carry_on" + ], + [ + "what is american airlines carry on policy", + "carry_on" + ], + [ + "does delta allow more than one carry on when traveling to miami", + "carry_on" + ], + [ + "does delta charge for carry ons", + "carry_on" + ], + [ + "what are my carry on options when flying american airlines to trenton", + "carry_on" + ], + [ + "how many carry ons does spirit allow when flying to dallas", + "carry_on" + ], + [ + "what is delta's carry on policy", + "carry_on" + ], + [ + "do you know about carry ons out of tampa with spirit", + "carry_on" + ], + [ + "search for carry on rules for flights on delta airlines", + "carry_on" + ], + [ + "what are the requirements for carry on on flights with united airlines", + "carry_on" + ], + [ + "please find the rules for carry on when flying with spirit airlines", + "carry_on" + ], + [ + "i need to know the carry on policy for american airlines flights", + "carry_on" + ], + [ + "can you tell me jet blue airlines' carry on policy", + "carry_on" + ], + [ + "from a flight from muscat to qatar, how many carry ons can i take", + "carry_on" + ], + [ + "do i need to pay for delta carry on", + "carry_on" + ], + [ + "which rules does delta have for carry on", + "carry_on" + ], + [ + "when taking a flight with lion to singapore, how many carry ons are allowed", + "carry_on" + ], + [ + "how many carry ons are allowed on a flight with wow to iceland", + "carry_on" + ], + [ + "on a flight with allegiant to orlando, how many carry ons can i take", + "carry_on" + ], + [ + "when taking a flight with porter to toronto, how many carry ons can i take", + "carry_on" + ], + [ + "on a flight with jin air to jeju, how many carry ons are allowed", + "carry_on" + ], + [ + "let me know the rules for carry ons for continental", + "carry_on" + ], + [ + "i want to know the carry on policy for aeromexico", + "carry_on" + ], + [ + "have i used half of my days off yet", + "pto_used" + ], + [ + "go to my job portal, i'd like to know how many days off i have used", + "pto_used" + ], + [ + "what amount of days off have i already utilized", + "pto_used" + ], + [ + "call hr so i can figure out how many days off i've taken", + "pto_used" + ], + [ + "how many times have i taken off from work this year", + "pto_used" + ], + [ + "about how many vacation days have i taken", + "pto_used" + ], + [ + "count how many sick days i've used", + "pto_used" + ], + [ + "can you check how much pto i have already used", + "pto_used" + ], + [ + "tell me the exact amount of pto i have used", + "pto_used" + ], + [ + "my pto used so far is what right now", + "pto_used" + ], + [ + "i've used how much pto so far", + "pto_used" + ], + [ + "get the details on the pto i have used", + "pto_used" + ], + [ + "how much time did i take off so far", + "pto_used" + ], + [ + "including the day i missed because of snow, how much time have i take off work so far", + "pto_used" + ], + [ + "how many sick, personal, and vacation days have i billed so far this year", + "pto_used" + ], + [ + "can you add up how much time i've taken off so far", + "pto_used" + ], + [ + "what's the number of day's i've taken off", + "pto_used" + ], + [ + "how many days so far have i taken off", + "pto_used" + ], + [ + "tell me how many days i've taken off at this point", + "pto_used" + ], + [ + "so far how many days have i taken off", + "pto_used" + ], + [ + "i need to know how many days so far i've taken off", + "pto_used" + ], + [ + "how many days have i taken off this year", + "pto_used" + ], + [ + "can you tell me how much pto i've gone through", + "pto_used" + ], + [ + "how many personal days have i taken", + "pto_used" + ], + [ + "how many vacation days have i consumed", + "pto_used" + ], + [ + "how much pto have i depleted", + "pto_used" + ], + [ + "how much vacation have i already used this year", + "pto_used" + ], + [ + "what's the total of days i've taken for me time so far", + "pto_used" + ], + [ + "how many of my sick days have i gone through", + "pto_used" + ], + [ + "what amount of pto have i taken", + "pto_used" + ], + [ + "what is the extent of the pto i've taken", + "pto_used" + ], + [ + "what's the amount of time off i've had", + "pto_used" + ], + [ + "what's the amount of time i've taken off work this year", + "pto_used" + ], + [ + "what's the total vacation days i've gone through", + "pto_used" + ], + [ + "how many personal days have i taken this month", + "pto_used" + ], + [ + "what's the total pto i've used", + "pto_used" + ], + [ + "count the number of vacation days i've taken and tell me", + "pto_used" + ], + [ + "how many of my vacation days have i depleted", + "pto_used" + ], + [ + "what's the amount of vacation days i've taken", + "pto_used" + ], + [ + "how much of my pto have i depleted", + "pto_used" + ], + [ + "up to this point, how much of my pto have i used", + "pto_used" + ], + [ + "please find out how many of my vacation days i have spent", + "pto_used" + ], + [ + "check to see how many days off i have used in total so far", + "pto_used" + ], + [ + "look up my total number of days off so far", + "pto_used" + ], + [ + "i need to know how many vacation days i have used up please", + "pto_used" + ], + [ + "find out how much of my pto is already used", + "pto_used" + ], + [ + "tell me the amount of pto i have used at this point", + "pto_used" + ], + [ + "check to see how many days off i have used", + "pto_used" + ], + [ + "look up how many of my days off i have used so far", + "pto_used" + ], + [ + "look up the amount of vacation days i have used please", + "pto_used" + ], + [ + "can you count for me the total number of days off i have used", + "pto_used" + ], + [ + "look up the amount of pto i have already used", + "pto_used" + ], + [ + "do you know the total number of vacation days i have used", + "pto_used" + ], + [ + "i need to know how many of my days off i have used at this point", + "pto_used" + ], + [ + "please find out how many days off i have used by this point", + "pto_used" + ], + [ + "what is the total number of days i have taken off so far", + "pto_used" + ], + [ + "i need to know how much of my pto has been used at this point", + "pto_used" + ], + [ + "how many vacation days have i spent in total", + "pto_used" + ], + [ + "find out for me how many days off i have taken in total at this point", + "pto_used" + ], + [ + "i need to know the number of days off i have taken at this point", + "pto_used" + ], + [ + "how many days did i skip work", + "pto_used" + ], + [ + "how much vacation have i taken", + "pto_used" + ], + [ + "how many days was i sick or on vacation", + "pto_used" + ], + [ + "which days did i take vacation", + "pto_used" + ], + [ + "which days did i take off work", + "pto_used" + ], + [ + "how many vacation days have i used", + "pto_used" + ], + [ + "how many days have i taken off so far", + "pto_used" + ], + [ + "how much time have i taken off this year", + "pto_used" + ], + [ + "how many times have i used my annual leave", + "pto_used" + ], + [ + "how much paid time off have i taken", + "pto_used" + ], + [ + "how many of my paid days off have i used", + "pto_used" + ], + [ + "how much pto do i have used up", + "pto_used" + ], + [ + "how much of my time off have i used", + "pto_used" + ], + [ + "how many days of pto have i used", + "pto_used" + ], + [ + "can you tell me how many vacation days i've taken", + "pto_used" + ], + [ + "what's my vacation day usage so far", + "pto_used" + ], + [ + "what kind of pto do i have left", + "pto_used" + ], + [ + "how many times did i take a day off", + "pto_used" + ], + [ + "tell me how many vacation days i've used", + "pto_used" + ], + [ + "how much pto has been used on my behalf", + "pto_used" + ], + [ + "how many days off have i taken", + "pto_used" + ], + [ + "what kind of pto have i used", + "pto_used" + ], + [ + "what kind of vacation days have i used so far", + "pto_used" + ], + [ + "tell me how much pto i've used", + "pto_used" + ], + [ + "how much paid time off have i used", + "pto_used" + ], + [ + "how many days off did i use so far", + "pto_used" + ], + [ + "tell me the number of days off i took this year", + "pto_used" + ], + [ + "how many days off have i had this year", + "pto_used" + ], + [ + "so far, how many days off have i taken", + "pto_used" + ], + [ + "tell me my usage of vacation days", + "pto_used" + ], + [ + "whats my count of vacation days used thus far", + "pto_used" + ], + [ + "how many vacation days have i taken", + "pto_used" + ], + [ + "what is the status of my pto", + "pto_used" + ], + [ + "how much paid time off do i have left", + "pto_used" + ], + [ + "how many days of pto are available", + "pto_used" + ], + [ + "how many vacation days have i used up", + "pto_used" + ], + [ + "how many vacation days did i use", + "pto_used" + ], + [ + "what is the total number of vacation days i've used", + "pto_used" + ], + [ + "have i used any vacation days this year", + "pto_used" + ], + [ + "how many vacation days have i used so far", + "pto_used" + ], + [ + "my car needs to be brought for maintenance", + "schedule_maintenance" + ], + [ + "could you schedule car maintenance for me", + "schedule_maintenance" + ], + [ + "i need someone to look at my car because my check engine light is on", + "schedule_maintenance" + ], + [ + "locate someone to look at my car because my check engine light is on", + "schedule_maintenance" + ], + [ + "i require a car maintenance", + "schedule_maintenance" + ], + [ + "who is available to check why my check engine light is on", + "schedule_maintenance" + ], + [ + "could you find someone to check out my car because the check engine light is on", + "schedule_maintenance" + ], + [ + "i need to schedule car maintenance", + "schedule_maintenance" + ], + [ + "please schedule car maintenance for me", + "schedule_maintenance" + ], + [ + "who can i contact about why check engine light is on", + "schedule_maintenance" + ], + [ + "i want to schedule a tire check up somewhere", + "schedule_maintenance" + ], + [ + "i need to get my tires checked out somewhere", + "schedule_maintenance" + ], + [ + "i need to find somewhere to check my tires out", + "schedule_maintenance" + ], + [ + "i need to get my tired checked at one of the location", + "schedule_maintenance" + ], + [ + "can i schedule a check up for my tires somewhere", + "schedule_maintenance" + ], + [ + "where in sacramento ca i schedule maintenance on my car", + "schedule_maintenance" + ], + [ + "i want to to schedule maintenance on my vehicle", + "schedule_maintenance" + ], + [ + "look for auto companies that do scheduled maintenance on my vehicle", + "schedule_maintenance" + ], + [ + "i need some work done on my car so need to schedule auto mechanic for maintenance", + "schedule_maintenance" + ], + [ + "find local deals who schedule maintenance on cars", + "schedule_maintenance" + ], + [ + "where can i find a place where i can schedule to check my tires out", + "schedule_maintenance" + ], + [ + "is there a special place where i can schedule to check my tires out", + "schedule_maintenance" + ], + [ + "where can i schedule to get my tires checked out", + "schedule_maintenance" + ], + [ + "where is an appropriate place where i can schedule to check out my tires", + "schedule_maintenance" + ], + [ + "is there a location i can schedule to check out my tires", + "schedule_maintenance" + ], + [ + "can you make an appointment for an oil change", + "schedule_maintenance" + ], + [ + "please make an appointment for an oil change", + "schedule_maintenance" + ], + [ + "i need you to find a mechanic for my check engine light", + "schedule_maintenance" + ], + [ + "please schedule an appointment for my oil to get changed", + "schedule_maintenance" + ], + [ + "my car needs maintenance scheduled", + "schedule_maintenance" + ], + [ + "how i do schedule car maintenance", + "schedule_maintenance" + ], + [ + "my check engine light is on and someone needs to look at it", + "schedule_maintenance" + ], + [ + "i need to get my oil change so make an appointment", + "schedule_maintenance" + ], + [ + "the check engine light is on and i need a mechanic", + "schedule_maintenance" + ], + [ + "my car needs maintenance prepared", + "schedule_maintenance" + ], + [ + "my car needs an appointment for an oil change", + "schedule_maintenance" + ], + [ + "i need someone to look at my check engine light", + "schedule_maintenance" + ], + [ + "help me find someone to look at my check engine light", + "schedule_maintenance" + ], + [ + "put a tire inspection on my schedule please", + "schedule_maintenance" + ], + [ + "i need to find someone to look at my check engine light", + "schedule_maintenance" + ], + [ + "is it possible to get schedule getting my tires inspected", + "schedule_maintenance" + ], + [ + "i'd like to schedule a tire inspection", + "schedule_maintenance" + ], + [ + "who in the area can inspect my engine light", + "schedule_maintenance" + ], + [ + "set an appointment for an oil change", + "schedule_maintenance" + ], + [ + "book an oil change please", + "schedule_maintenance" + ], + [ + "can you please obtain an oil change appointment for me", + "schedule_maintenance" + ], + [ + "where can i get my tires checked and how can i schedule it", + "schedule_maintenance" + ], + [ + "is there someone in the area who can check my engine light since it is on", + "schedule_maintenance" + ], + [ + "i need the soonest appointment for an oil change", + "schedule_maintenance" + ], + [ + "i am in need of an oil change, set an appointment", + "schedule_maintenance" + ], + [ + "please find someone who specializes in cars, my check engine light has turned on", + "schedule_maintenance" + ], + [ + "my check engine light has switched on, schedule someone to inspect it", + "schedule_maintenance" + ], + [ + "i need to schedule a car repair", + "schedule_maintenance" + ], + [ + "can i schedule a car repair", + "schedule_maintenance" + ], + [ + "how do i schedule car maintenance", + "schedule_maintenance" + ], + [ + "i want to schedule car maintenance", + "schedule_maintenance" + ], + [ + "i wanna have an appointment to get my oil changed", + "schedule_maintenance" + ], + [ + "i wanna schedule some car maintenance", + "schedule_maintenance" + ], + [ + "can someone look at my car cause the check engine light is on", + "schedule_maintenance" + ], + [ + "i need to schedule some car maintenance", + "schedule_maintenance" + ], + [ + "i got to schedule somewhere get my tires checked out", + "schedule_maintenance" + ], + [ + "i must schedule somewhere get my tires checked out", + "schedule_maintenance" + ], + [ + "i'd like to get an appointment to get my oil changed", + "schedule_maintenance" + ], + [ + "i want to schedule somewhere get my tires checked out", + "schedule_maintenance" + ], + [ + "i gotta schedule some car maintenance", + "schedule_maintenance" + ], + [ + "y check engine light currently came on and i need assistance with it", + "schedule_maintenance" + ], + [ + "i need help cause my check engine light came on", + "schedule_maintenance" + ], + [ + "i have to schedule somewhere get my tires checked out", + "schedule_maintenance" + ], + [ + "i need to have an appointment to get my oil changed", + "schedule_maintenance" + ], + [ + "i need an appointment to get my oil changed", + "schedule_maintenance" + ], + [ + "i got to schedule some car maintenance", + "schedule_maintenance" + ], + [ + "my engine light came on, so i need to get help", + "schedule_maintenance" + ], + [ + "i want to get an appointment to get my oil changed", + "schedule_maintenance" + ], + [ + "my check engine light is on and i need to take a look at it", + "schedule_maintenance" + ], + [ + "i have to schedule some car maintenance", + "schedule_maintenance" + ], + [ + "i need to schedule somewhere get my tires checked out", + "schedule_maintenance" + ], + [ + "i would like an appointment to get my oil changed", + "schedule_maintenance" + ], + [ + "can i please get an appointment to get my oil changed", + "schedule_maintenance" + ], + [ + "i need an oil change, make an appointment", + "schedule_maintenance" + ], + [ + "find a mechanic to look at my check engine light", + "schedule_maintenance" + ], + [ + "book an appointment for an oil change", + "schedule_maintenance" + ], + [ + "i should get my tires checked, schedule that", + "schedule_maintenance" + ], + [ + "how do i schedule getting my tires checked", + "schedule_maintenance" + ], + [ + "i need someone to look at my car and tell me why the light is on", + "schedule_maintenance" + ], + [ + "schedule an oil change for me", + "schedule_maintenance" + ], + [ + "which mechanic can check my check engine light", + "schedule_maintenance" + ], + [ + "make a reminder to schedule a tire check", + "schedule_maintenance" + ], + [ + "who can look at my car, the engine light is on", + "schedule_maintenance" + ], + [ + "set a time to get my oil changed", + "schedule_maintenance" + ], + [ + "make an appointment to check my tires", + "schedule_maintenance" + ], + [ + "i don't know why my check engine light is on, i need a mechanic", + "schedule_maintenance" + ], + [ + "make an appointment for an oil change", + "schedule_maintenance" + ], + [ + "make arrangements for me to get my oil changed", + "schedule_maintenance" + ], + [ + "can you schedule me a mechanic", + "schedule_maintenance" + ], + [ + "schedule an appointment to get my oil changed", + "schedule_maintenance" + ], + [ + "i need to get my oil changed", + "schedule_maintenance" + ], + [ + "schedule a time to get my oil changed", + "schedule_maintenance" + ], + [ + "find me a mechanic", + "schedule_maintenance" + ], + [ + "schedule a mechanic", + "schedule_maintenance" + ], + [ + "schedule car repairs", + "schedule_maintenance" + ], + [ + "im going to be in canada from august 10th until august 12th", + "travel_notification" + ], + [ + "im going to be in slovakia from january 16th until january 19th", + "travel_notification" + ], + [ + "im going to be in paraguay from january 7th until january 10th", + "travel_notification" + ], + [ + "i'm going to be in thailand from october 15th until october 23rd", + "travel_notification" + ], + [ + "im going to be in jamaica from october 4th until october 8th", + "travel_notification" + ], + [ + "my bank needs to know i am going to be out of the country", + "travel_notification" + ], + [ + "i am going out of country and my bank needs to be notified", + "travel_notification" + ], + [ + "i need to inform the bank i am going out of country", + "travel_notification" + ], + [ + "i am going out of country and need to inform my bank", + "travel_notification" + ], + [ + "tell the bank i'm traveling between denver and la", + "travel_notification" + ], + [ + "tell my bank i am traveling out of country", + "travel_notification" + ], + [ + "i'm driving from la to denver and need my bank notified", + "travel_notification" + ], + [ + "notify my bank i am travailing from denver to la", + "travel_notification" + ], + [ + "i'm traveling between denver and la so tell my bank", + "travel_notification" + ], + [ + "i need to let my bank know i am traveling to la", + "travel_notification" + ], + [ + "i need to let my bank know i am traveling to detroit", + "travel_notification" + ], + [ + "i need to let my bank know i am traveling to new york", + "travel_notification" + ], + [ + "i need to let my bank know i am traveling to chicago", + "travel_notification" + ], + [ + "i need to let my bank know i am traveling to paris", + "travel_notification" + ], + [ + "i will be traveling to rome from february 1 to march 1, please make this aware to my bank", + "travel_notification" + ], + [ + "inform my bank that i will be in rome from february 1 to march 1", + "travel_notification" + ], + [ + "please let my bank know that i will be in rome from february 1 to march 1", + "travel_notification" + ], + [ + "mark down that i will be in rome from february 1 to march 1 and notify my bank", + "travel_notification" + ], + [ + "notify my bank that i will be in rome from february 1 to march 1", + "travel_notification" + ], + [ + "i need to let my bank know that i'll be travelling internationally", + "travel_notification" + ], + [ + "can you tell my bank that i'll be travelling internationally soon", + "travel_notification" + ], + [ + "i'll soon be travelling internationally; could you let my bank know", + "travel_notification" + ], + [ + "i'll be out of the country soon, and want to notify my bank", + "travel_notification" + ], + [ + "i'm going out of the country and need to notify my bank", + "travel_notification" + ], + [ + "tell my bank that i'm going to france", + "travel_notification" + ], + [ + "tell my bank that i'll be in canada this weekend", + "travel_notification" + ], + [ + "let my bank know that i'm traveling to prague", + "travel_notification" + ], + [ + "let my bank know that i'll be in moscow, russia", + "travel_notification" + ], + [ + "inform my bank that i'll be going to europe", + "travel_notification" + ], + [ + "i'm traveling to paris soon and want to inform my bank", + "travel_notification" + ], + [ + "i'm traveling to fresnosoon and want to inform my bank", + "travel_notification" + ], + [ + "i'm traveling to london soon and want to inform my bank", + "travel_notification" + ], + [ + "i'm traveling to ca soon and want to inform my bank", + "travel_notification" + ], + [ + "i'm traveling tony soon and want to inform my bank", + "travel_notification" + ], + [ + "i've let me bank know that i'm visiting south america from may to october", + "travel_notification" + ], + [ + "i've notified my bank that i'm in mexico from august 1 to august 5", + "travel_notification" + ], + [ + "i let my bank know that i'm traveling to greece from march to april", + "travel_notification" + ], + [ + "i've told my financial institution that i'm in africa from august 6 to december 5", + "travel_notification" + ], + [ + "call the bank and tell them i will be in france on the 16th until the 26th", + "travel_notification" + ], + [ + "notify my bank i'll be in rome from the 1st to the 17th", + "travel_notification" + ], + [ + "tell my bank i'll be in jamaica from the 4th to the 11th", + "travel_notification" + ], + [ + "please tell my bank i will be in israel from the 6th to the 23rd", + "travel_notification" + ], + [ + "alert the bank that i am traveling to tokyo on the 7th until the 21st", + "travel_notification" + ], + [ + "i'm traveling to denmark soon and want to inform my bank", + "travel_notification" + ], + [ + "alert my bank and let them know that i'm travelling to switzerland", + "travel_notification" + ], + [ + "alert my bank and let them know that i'm travelling to china", + "travel_notification" + ], + [ + "i'm traveling to belgium soon and want to inform my bank", + "travel_notification" + ], + [ + "i'm traveling to sweden soon and want to inform my bank", + "travel_notification" + ], + [ + "i'm traveling to morocco soon and want to inform my bank", + "travel_notification" + ], + [ + "alert my bank and let them know i'm travelling to japan", + "travel_notification" + ], + [ + "tell my bank that i will be taveling to south korea", + "travel_notification" + ], + [ + "alert my bank and tell them that i'm travelling to paris", + "travel_notification" + ], + [ + "i'm traveling to england soon and want to inform my bank", + "travel_notification" + ], + [ + "how can i tell my bank i'm going to vietnam", + "travel_notification" + ], + [ + "how do i let my bank know i'm going to vietnam", + "travel_notification" + ], + [ + "i'm going to paris soon and want to let my bank know, how do i do that", + "travel_notification" + ], + [ + "how can i let my bank know i'm going to denmark", + "travel_notification" + ], + [ + "how do i inform my bank i'm going to paris", + "travel_notification" + ], + [ + "from january to august, i will be in uruguay, please let me bank know", + "travel_notification" + ], + [ + "tell my bank that i'll be in uruguay during january to august", + "travel_notification" + ], + [ + "i will be in uruguay from january to august, please let me bank know", + "travel_notification" + ], + [ + "can you let my bank know i'll be in uruguay from january to august", + "travel_notification" + ], + [ + "please let my bank know that i will be in uruguay from january to august", + "travel_notification" + ], + [ + "tell my bank i am taking a trip to brazil from june 1st to july 1st", + "travel_notification" + ], + [ + "inform my bank i will travel to brazil from june 1st to july 1st", + "travel_notification" + ], + [ + "let me bank know i will be in brazil from june 1st to july 1st", + "travel_notification" + ], + [ + "tell my bank i will be traveling in brazil from june 1st to july 1st", + "travel_notification" + ], + [ + "tell my bank i will be in brazil from june 1st to july 1st", + "travel_notification" + ], + [ + "i'm travelling to seattle soon and want to inform my bank", + "travel_notification" + ], + [ + "i'm travelling to thailand soon and want to inform my bank", + "travel_notification" + ], + [ + "i'm travelling to spain soon and want to inform my bank", + "travel_notification" + ], + [ + "alert my bank and let them know that i'm travelling to brussels", + "travel_notification" + ], + [ + "alert my bank and let them know that i'm travelling to oslo", + "travel_notification" + ], + [ + "alert my bank and let them know that i'm travelling to stockholm", + "travel_notification" + ], + [ + "i'm travelling to boston soon and want to inform my bank", + "travel_notification" + ], + [ + "alert my bank and let them know that i'm travelling to london", + "travel_notification" + ], + [ + "i'm travelling to ireland soon and want to inform my bank", + "travel_notification" + ], + [ + "alert my bank and let them know that i'm travelling to madrid", + "travel_notification" + ], + [ + "the bank should know i am going to asia soon", + "travel_notification" + ], + [ + "since i am traveling to asia, i need to inform the bank", + "travel_notification" + ], + [ + "i need to tell bank that i am taking a trip to asia", + "travel_notification" + ], + [ + "i am going to asia in a bit, i should tell the bank", + "travel_notification" + ], + [ + "i need to let my bank know i am visiting asia soon", + "travel_notification" + ], + [ + "let my bank know i will be travelling to the cayman islands", + "travel_notification" + ], + [ + "i am going to south america, let my bank know", + "travel_notification" + ], + [ + "inform my bank i will be travelling to central africa", + "travel_notification" + ], + [ + "let my bank know i will be on travel to fes", + "travel_notification" + ], + [ + "tell my bank i will be travelling to the caribbean", + "travel_notification" + ], + [ + "please tell my bank that i will be traveling abroad", + "travel_notification" + ], + [ + "the bank needs to know that i am traveling soon", + "travel_notification" + ], + [ + "make sur eyou tell the bank that i will be traveling internationally soon", + "travel_notification" + ], + [ + "please tell the bank i will be traveling internationally", + "travel_notification" + ], + [ + "tell the bank i will be traveling internationally soon", + "travel_notification" + ], + [ + "let my bank know that i'm going to norway between march 3 and march 5", + "travel_notification" + ], + [ + "tell my bank i'm going to france", + "travel_notification" + ], + [ + "please link with my phone", + "sync_device" + ], + [ + "please connect the device to my phone", + "sync_device" + ], + [ + "please link up to my phone", + "sync_device" + ], + [ + "could you link with my phone", + "sync_device" + ], + [ + "please turn off your wifi from my phone", + "sync_device" + ], + [ + "please remove your connection to my phone", + "sync_device" + ], + [ + "please unlink my phone", + "sync_device" + ], + [ + "please get off my phone connection", + "sync_device" + ], + [ + "please desync my current mobile", + "sync_device" + ], + [ + "i no longer want this phone to sync", + "sync_device" + ], + [ + "please link up to my cell", + "sync_device" + ], + [ + "create a link with my phone", + "sync_device" + ], + [ + "stop syncing with this phone", + "sync_device" + ], + [ + "i don't want this phone synced any more", + "sync_device" + ], + [ + "desync from my iphone", + "sync_device" + ], + [ + "please immediately disconnect this mobile", + "sync_device" + ], + [ + "establish a connection to my phone", + "sync_device" + ], + [ + "my phone needs to be unsynced now", + "sync_device" + ], + [ + "could you unsync my phone please", + "sync_device" + ], + [ + "you can unsync from my phone now", + "sync_device" + ], + [ + "disconnect from my phone please", + "sync_device" + ], + [ + "please unsync phone from phone from home system", + "sync_device" + ], + [ + "i must disconnect from my phone", + "sync_device" + ], + [ + "go and disconnect from my phone", + "sync_device" + ], + [ + "you must connect to my phone", + "sync_device" + ], + [ + "please connect to my phone", + "sync_device" + ], + [ + "you have to connect to my phone", + "sync_device" + ], + [ + "go ahead and disconnect from my phone", + "sync_device" + ], + [ + "i wanna disconnect from my phone", + "sync_device" + ], + [ + "i need to disconnect from my phone", + "sync_device" + ], + [ + "you need to connect to my phone", + "sync_device" + ], + [ + "go ahead and connect to my phone", + "sync_device" + ], + [ + "get connected to my phone", + "sync_device" + ], + [ + "i want for you to connect to my phone", + "sync_device" + ], + [ + "disconnect from my phone for me", + "sync_device" + ], + [ + "would you disconnect from my phone", + "sync_device" + ], + [ + "help me to disconnect from my phone", + "sync_device" + ], + [ + "would you connect to my phone", + "sync_device" + ], + [ + "i need for you to connect to my phone", + "sync_device" + ], + [ + "i need you to disconnect from my phone", + "sync_device" + ], + [ + "i want for you to disconnect from my phone", + "sync_device" + ], + [ + "connect to my phone for me", + "sync_device" + ], + [ + "mind connecting to my phone", + "sync_device" + ], + [ + "connect with my phone please", + "sync_device" + ], + [ + "can you link to my phone", + "sync_device" + ], + [ + "will you connect to my phone", + "sync_device" + ], + [ + "please disconnect from my phone", + "sync_device" + ], + [ + "please connect with my phone", + "sync_device" + ], + [ + "please unsync from my phone", + "sync_device" + ], + [ + "pair with my smart phone", + "sync_device" + ], + [ + "i want you to disconnect from my phone", + "sync_device" + ], + [ + "unsync from my phone", + "sync_device" + ], + [ + "please connect with my smart phone", + "sync_device" + ], + [ + "disconnect from my phone now, please", + "sync_device" + ], + [ + "could you connect to my phone", + "sync_device" + ], + [ + "can you connect to my phone, please", + "sync_device" + ], + [ + "disconnect from my phone, please", + "sync_device" + ], + [ + "could you connect to my phone, please", + "sync_device" + ], + [ + "can you connect with my phone, please", + "sync_device" + ], + [ + "could you connect with my phone, please", + "sync_device" + ], + [ + "pair my phone please", + "sync_device" + ], + [ + "pair with my phone please", + "sync_device" + ], + [ + "with my phone please pair", + "sync_device" + ], + [ + "pair with my phone", + "sync_device" + ], + [ + "would you unsync the phone now please", + "sync_device" + ], + [ + "unsync my phone now please", + "sync_device" + ], + [ + "how can i unsync my phone", + "sync_device" + ], + [ + "go ahead an unsync my phone now", + "sync_device" + ], + [ + "unsync my phone", + "sync_device" + ], + [ + "please remove the phone's sync", + "sync_device" + ], + [ + "remove the sync from my phone", + "sync_device" + ], + [ + "please unsync my phone", + "sync_device" + ], + [ + "desync from my phone", + "sync_device" + ], + [ + "can we pair this with my new phone", + "sync_device" + ], + [ + "i would like to pair this with my new phone", + "sync_device" + ], + [ + "i am going to go ahead and pair this with my new phone", + "sync_device" + ], + [ + "lets pair this with my new phone", + "sync_device" + ], + [ + "i need to pair this with my phone", + "sync_device" + ], + [ + "use my phone and connect please", + "sync_device" + ], + [ + "would you please pair with my phone", + "sync_device" + ], + [ + "initiate connection with my phone, please", + "sync_device" + ], + [ + "please begin pairing with my phone", + "sync_device" + ], + [ + "will you please end the connection to my phone", + "sync_device" + ], + [ + "you can disconnect from my phone now", + "sync_device" + ], + [ + "stop the connection with my phone", + "sync_device" + ], + [ + "let's terminate connection to my phone please", + "sync_device" + ], + [ + "i want you to connect using my phone", + "sync_device" + ], + [ + "i want to disconnect the current connection to my phone", + "sync_device" + ], + [ + "disconnect from my phone now", + "sync_device" + ], + [ + "disconnect from my phone", + "sync_device" + ], + [ + "i'd like you to disconnect from my phone", + "sync_device" + ], + [ + "do you think you could disconnect from my phone", + "sync_device" + ], + [ + "can you disconnect from my phone", + "sync_device" + ], + [ + "please get off my phone", + "sync_device" + ], + [ + "are you able to get into my phone at the moment", + "sync_device" + ], + [ + "can you get access to my phone right now", + "sync_device" + ], + [ + "do you have access to my phone", + "sync_device" + ], + [ + "are you able to link to my phone", + "sync_device" + ], + [ + "is my phone connectable right now", + "sync_device" + ], + [ + "quickly disconnect the phone", + "sync_device" + ], + [ + "you have been a big help, thank you so much", + "thank_you" + ], + [ + "i appreciate your help, thank you", + "thank_you" + ], + [ + "i really appreciate your help, thank you", + "thank_you" + ], + [ + "i am very grateful", + "thank_you" + ], + [ + "i appreciate the assistance", + "thank_you" + ], + [ + "i want to thank you for helping", + "thank_you" + ], + [ + "much obliged", + "thank_you" + ], + [ + "your help is appreciated", + "thank_you" + ], + [ + "gracias", + "thank_you" + ], + [ + "i appreciate that", + "thank_you" + ], + [ + "thanks so much!", + "thank_you" + ], + [ + "many thanks", + "thank_you" + ], + [ + "appreciate it", + "thank_you" + ], + [ + "thanks!", + "thank_you" + ], + [ + "i thank you", + "thank_you" + ], + [ + "thank you kindly", + "thank_you" + ], + [ + "thank you so very much", + "thank_you" + ], + [ + "thank you for helping me", + "thank_you" + ], + [ + "i'm grateful to you", + "thank_you" + ], + [ + "you did a good job thank you", + "thank_you" + ], + [ + "good looking out", + "thank_you" + ], + [ + "i wish you were here earlier", + "thank_you" + ], + [ + "it's so much easier with you around", + "thank_you" + ], + [ + "you've been a great help", + "thank_you" + ], + [ + "thanks for the help", + "thank_you" + ], + [ + "thanks please", + "thank_you" + ], + [ + "why thank you", + "thank_you" + ], + [ + "thanks for the answer", + "thank_you" + ], + [ + "thank you very much for the answer", + "thank_you" + ], + [ + "okay thanks", + "thank_you" + ], + [ + "thanks a lot", + "thank_you" + ], + [ + "thanks a lot for the answer", + "thank_you" + ], + [ + "thank you for the answer", + "thank_you" + ], + [ + "thank you a lot for that answer", + "thank_you" + ], + [ + "thanks for helping me!", + "thank_you" + ], + [ + "i'm so glad you helped me!", + "thank_you" + ], + [ + "i appreciate your help!", + "thank_you" + ], + [ + "i am thankful for your help!", + "thank_you" + ], + [ + "i have much gratitude for your help", + "thank_you" + ], + [ + "i appreciate your help", + "thank_you" + ], + [ + "i appreciate you helping me", + "thank_you" + ], + [ + "awesome, thanks", + "thank_you" + ], + [ + "thank you so much", + "thank_you" + ], + [ + "thank you very much for the assistance", + "thank_you" + ], + [ + "i appreciate it", + "thank_you" + ], + [ + "thanks again!", + "thank_you" + ], + [ + "thanks for the info", + "thank_you" + ], + [ + "thanks for letting me know", + "thank_you" + ], + [ + "that's all i need, thanks!", + "thank_you" + ], + [ + "thanks, that's helpful", + "thank_you" + ], + [ + "thank you for the information", + "thank_you" + ], + [ + "thanks for answering my question", + "thank_you" + ], + [ + "your efforts don't go unnoticed", + "thank_you" + ], + [ + "i appreciate what you did", + "thank_you" + ], + [ + "you are so thoughtful and i appreciate your gesture", + "thank_you" + ], + [ + "you are so nice to think of me", + "thank_you" + ], + [ + "you were so kind to do that", + "thank_you" + ], + [ + "your answer pleased me", + "thank_you" + ], + [ + "i'm happy with your answer", + "thank_you" + ], + [ + "your answer was enjoyable", + "thank_you" + ], + [ + "your answer was good", + "thank_you" + ], + [ + "thanks for giving me assistance", + "thank_you" + ], + [ + "really great!", + "thank_you" + ], + [ + "appreciate the help", + "thank_you" + ], + [ + "i'm grateful for the answer you just gave me", + "thank_you" + ], + [ + "that'll work, good job!", + "thank_you" + ], + [ + "good answer, thanks for providing it", + "thank_you" + ], + [ + "i'm grateful for the assistance", + "thank_you" + ], + [ + "thanks for that!", + "thank_you" + ], + [ + "good job with assisting me", + "thank_you" + ], + [ + "nice, excellent!", + "thank_you" + ], + [ + "i'm grateful", + "thank_you" + ], + [ + "i appreciate that answer!", + "thank_you" + ], + [ + "i would like to thank you", + "thank_you" + ], + [ + "i can not thank you enough", + "thank_you" + ], + [ + "i need to thank you", + "thank_you" + ], + [ + "i really thank you", + "thank_you" + ], + [ + "let me thank you", + "thank_you" + ], + [ + "thank you!", + "thank_you" + ], + [ + "thanks for the help!", + "thank_you" + ], + [ + "you're the best!", + "thank_you" + ], + [ + "i appreciate that answer", + "thank_you" + ], + [ + "your answer is appreciated", + "thank_you" + ], + [ + "i am thankful for the answer", + "thank_you" + ], + [ + "oh sweet thanks", + "thank_you" + ], + [ + "oh, thanks", + "thank_you" + ], + [ + "merci beaucoup", + "thank_you" + ], + [ + "thanks again", + "thank_you" + ], + [ + "thanks", + "thank_you" + ], + [ + "thank you for answering that", + "thank_you" + ], + [ + "thank you", + "thank_you" + ], + [ + "thanks for that", + "thank_you" + ], + [ + "thank you for your time", + "thank_you" + ], + [ + "i appreciate the help", + "thank_you" + ], + [ + "thank ya!", + "thank_you" + ], + [ + "thanks for your response", + "thank_you" + ], + [ + "youre a doll", + "thank_you" + ], + [ + "thanks for your cooperation", + "thank_you" + ], + [ + "i owe you one!", + "thank_you" + ], + [ + "thanks for helping out", + "thank_you" + ], + [ + "will you roll a d20", + "roll_dice" + ], + [ + "will you roll a 12 sided dice", + "roll_dice" + ], + [ + "will you roll a 10 sided dice", + "roll_dice" + ], + [ + "i'd like you to roll dice", + "roll_dice" + ], + [ + "i'd like a 7 sided dice roll please", + "roll_dice" + ], + [ + "i need to roll a 10 sided die", + "roll_dice" + ], + [ + "please roll a 7 sided die", + "roll_dice" + ], + [ + "let's roll some dice", + "roll_dice" + ], + [ + "i want to roll some dice", + "roll_dice" + ], + [ + "can you roll a fair, 6 sided die", + "roll_dice" + ], + [ + "i'd like to roll a dice and get the result", + "roll_dice" + ], + [ + "can you roll a dice", + "roll_dice" + ], + [ + "i want to roll a dice", + "roll_dice" + ], + [ + "help me roll a dice", + "roll_dice" + ], + [ + "roll a dice for me", + "roll_dice" + ], + [ + "go ahead and roll those dice", + "roll_dice" + ], + [ + "i need you to roll an 8 sided dice", + "roll_dice" + ], + [ + "i want you to roll dice", + "roll_dice" + ], + [ + "go ahead and roll that 9 sided dice", + "roll_dice" + ], + [ + "roll a 7 sided dice", + "roll_dice" + ], + [ + "roll the 10 sided dice on time", + "roll_dice" + ], + [ + "roll a pair of dice", + "roll_dice" + ], + [ + "please do a dice roll", + "roll_dice" + ], + [ + "please roll a 6 sided dice", + "roll_dice" + ], + [ + "roll a 6 sided die", + "roll_dice" + ], + [ + "roll a die", + "roll_dice" + ], + [ + "roll die", + "roll_dice" + ], + [ + "please roll a die now", + "roll_dice" + ], + [ + "roll this dice", + "roll_dice" + ], + [ + "i need a 10 sided die rolled", + "roll_dice" + ], + [ + "i would like a 10 sided die rolled", + "roll_dice" + ], + [ + "would you roll the dice", + "roll_dice" + ], + [ + "role a 10 sided die for me", + "roll_dice" + ], + [ + "could you role a ten sided die", + "roll_dice" + ], + [ + "can you roll a 10 sided die", + "roll_dice" + ], + [ + "the dice need to be rolled", + "roll_dice" + ], + [ + "i would like the dice to be rolled", + "roll_dice" + ], + [ + "toss a die would you", + "roll_dice" + ], + [ + "play vegas baby roll a dice for mama", + "roll_dice" + ], + [ + "find a virtual dice and roll it for me please", + "roll_dice" + ], + [ + "roll a dice and give me a number from 1 to 6", + "roll_dice" + ], + [ + "roll dice now", + "roll_dice" + ], + [ + "roll dice", + "roll_dice" + ], + [ + "roll the dice", + "roll_dice" + ], + [ + "roll dice please", + "roll_dice" + ], + [ + "go ahead and roll the dice", + "roll_dice" + ], + [ + "please roll dice", + "roll_dice" + ], + [ + "will you roll a 6 sided dice", + "roll_dice" + ], + [ + "will you roll a 3 sided dice", + "roll_dice" + ], + [ + "will you roll a 5 sided dice", + "roll_dice" + ], + [ + "will you roll a 2 sided dice", + "roll_dice" + ], + [ + "will you roll a 4 sided dice", + "roll_dice" + ], + [ + "please roll the dice", + "roll_dice" + ], + [ + "roll a dice", + "roll_dice" + ], + [ + "give me a random number between 1 and 6", + "roll_dice" + ], + [ + "i want you to roll a dice", + "roll_dice" + ], + [ + "ai, please roll the dice", + "roll_dice" + ], + [ + "roll that dice, ai", + "roll_dice" + ], + [ + "ai, would you kindly roll the dice", + "roll_dice" + ], + [ + "ai, go ahead and roll the dice", + "roll_dice" + ], + [ + "please roll the dice, ai", + "roll_dice" + ], + [ + "could you roll a 6 sided dice", + "roll_dice" + ], + [ + "can you roll a 6 sided dice", + "roll_dice" + ], + [ + "i'd like you to roll a 6 sided dice", + "roll_dice" + ], + [ + "roll a 6 sided dice for me", + "roll_dice" + ], + [ + "could you roll the 8 sided dice", + "roll_dice" + ], + [ + "can you roll the 12 sided dice please", + "roll_dice" + ], + [ + "go ahead and roll the 6 sided dice for me", + "roll_dice" + ], + [ + "please roll the 10 sided dice", + "roll_dice" + ], + [ + "please roll the 5 sided dice", + "roll_dice" + ], + [ + "give the dice a roll", + "roll_dice" + ], + [ + "roll the dice for me", + "roll_dice" + ], + [ + "can you roll the dice", + "roll_dice" + ], + [ + "could you roll the dice please", + "roll_dice" + ], + [ + "i need you to roll dice now", + "roll_dice" + ], + [ + "provide a random roll of the dice", + "roll_dice" + ], + [ + "can you roll dice", + "roll_dice" + ], + [ + "throw the dice", + "roll_dice" + ], + [ + "roll the dice!", + "roll_dice" + ], + [ + "roll the die!", + "roll_dice" + ], + [ + "shoot the dice!", + "roll_dice" + ], + [ + "throw the dice!", + "roll_dice" + ], + [ + "roll them bones!", + "roll_dice" + ], + [ + "6 sided dice roll", + "roll_dice" + ], + [ + "roll 6 sided die", + "roll_dice" + ], + [ + "roll die, 6 sided", + "roll_dice" + ], + [ + "roll a die with 6 sides please", + "roll_dice" + ], + [ + "roll a die with 6 sides", + "roll_dice" + ], + [ + "what do you get if you roll a six sided dice", + "roll_dice" + ], + [ + "tell me the result of a dice roll with five sides", + "roll_dice" + ], + [ + "what do you get when you roll a dice with five sides", + "roll_dice" + ], + [ + "i'd like to know how much you get when you roll a ten sided dice", + "roll_dice" + ], + [ + "when you roll a six sided dice what is the results", + "roll_dice" + ], + [ + "roll an eight sided die", + "roll_dice" + ], + [ + "roll a pair of eight sided dice", + "roll_dice" + ], + [ + "i need an algorithm to give me the result of rolling one twelve sided die", + "roll_dice" + ], + [ + "what number do you get when you roll one six sided die", + "roll_dice" + ], + [ + "roll a pair of six sided dice", + "roll_dice" + ], + [ + "can you roll a 4 sided dice", + "roll_dice" + ], + [ + "roll a seven sided dice for me", + "roll_dice" + ], + [ + "jello should stay in the fridge for how long", + "food_last" + ], + [ + "when will my milk be no good", + "food_last" + ], + [ + "when will my eggs go bad", + "food_last" + ], + [ + "how long will my eggs be good for", + "food_last" + ], + [ + "what date does my apple juice expire", + "food_last" + ], + [ + "how long until my cereal is ruined", + "food_last" + ], + [ + "what's the max time i can leave a green pepper in the fridge", + "food_last" + ], + [ + "what's the time frame for hamburger stored in the freezer to go bad", + "food_last" + ], + [ + "how long can i keep deer meat in the freezer before it's unedible", + "food_last" + ], + [ + "has the leftover hamburger from last saturday gone bad", + "food_last" + ], + [ + "is there a limit to how long you can store bread in the freezer", + "food_last" + ], + [ + "i've had eggs in the fridge since monday, are they still safe", + "food_last" + ], + [ + "how long can you keep chicken in the freeze before it goes bad", + "food_last" + ], + [ + "is the tofu i put in the fridge tuesday still edible today", + "food_last" + ], + [ + "how long does cottage cheese keep in the fridge", + "food_last" + ], + [ + "what's the shelf life of guacamole in the fridge", + "food_last" + ], + [ + "how long does it take for dough in the freezer to go off", + "food_last" + ], + [ + "will i get sick if i eat the tuna salad from friday", + "food_last" + ], + [ + "i put some leftover stew in the fridge and want to know how long it'll last", + "food_last" + ], + [ + "how long can i leave tuna casserole in the fridge", + "food_last" + ], + [ + "is it still safe to consume the cake she backed last thursday", + "food_last" + ], + [ + "can i safely eat chicken that i've had in my fridge since monday", + "food_last" + ], + [ + "can i eat chicken if it's been in the fridge since monday", + "food_last" + ], + [ + "is it safe to eat chicken that has been in the fridge since monday", + "food_last" + ], + [ + "will the chicken have gone bad if it's been in the fridge since monday", + "food_last" + ], + [ + "is it okay to eat chicken that i put in the fridge on monday", + "food_last" + ], + [ + "how soon until the milk expires", + "food_last" + ], + [ + "the milk will expire when", + "food_last" + ], + [ + "tell me when the milk will expire", + "food_last" + ], + [ + "what is the expiration date of the milk", + "food_last" + ], + [ + "will it be all right for me to drink milk i've had in the fridge since tuesday", + "food_last" + ], + [ + "what is the shelf life for beef in the freezer", + "food_last" + ], + [ + "can i eat the eggs i've had in the fridge since 2/21", + "food_last" + ], + [ + "how long can i keep a ham in the freezer", + "food_last" + ], + [ + "how long will chicken last in the freezer", + "food_last" + ], + [ + "can i drink milk i've kept in the fridge since wednesday", + "food_last" + ], + [ + "how long will steaks last in the freezer", + "food_last" + ], + [ + "what's the shelf life for eggs in the fridge", + "food_last" + ], + [ + "how long can i store eggs in the fridge", + "food_last" + ], + [ + "will it be okay for me to eat my leftover turkey from monday that's been in my fridge", + "food_last" + ], + [ + "how long can i keep fish in the freezer before it gets ruined", + "food_last" + ], + [ + "how long will my milk be good in the fridge", + "food_last" + ], + [ + "how long will eggs last in the fridge", + "food_last" + ], + [ + "i've had eggs in the fridge since monday are they safe eat", + "food_last" + ], + [ + "is the meatloaf still good to eat, i've had it in the refrigerator since last monday", + "food_last" + ], + [ + "apples expire in how long", + "food_last" + ], + [ + "cut cucumbers can stay in the fridge for how long before spoiling", + "food_last" + ], + [ + "ribs can stay in the fridge for how long before they turn", + "food_last" + ], + [ + "when do ribs expire", + "food_last" + ], + [ + "bananas expire in how long", + "food_last" + ], + [ + "how long does it take tomatoes to expire", + "food_last" + ], + [ + "how long can i keep avocados in the fridge before they go bad", + "food_last" + ], + [ + "how long can i keep macaroni in the fridge before it spoils", + "food_last" + ], + [ + "oranges expire in how long", + "food_last" + ], + [ + "cut carrots can stay in the fridge for how long before going bad", + "food_last" + ], + [ + "i wanna know how long can i keep pizza in the freezer for before it goes bad", + "food_last" + ], + [ + "how long can i keep pizza in the freezer for before it goes bad", + "food_last" + ], + [ + "it seems to be that i have had pizza in the fridge since monday, so is it safe to eat", + "food_last" + ], + [ + "how long can pizza be in the fridge", + "food_last" + ], + [ + "so how long can pizza last in the fridge", + "food_last" + ], + [ + "it turns out i have had pizza in the fridge since monday, so is it safe to eat", + "food_last" + ], + [ + "i got to know how long can i keep pizza in the freezer for before it goes bad", + "food_last" + ], + [ + "so it seems i have had pizza in the fridge since monday, so is it safe to eat", + "food_last" + ], + [ + "how long can i leave pizza in the fridge", + "food_last" + ], + [ + "tell me how long can i keep pizza in the freezer for before it goes bad", + "food_last" + ], + [ + "how long can i have pizza in the fridge", + "food_last" + ], + [ + "i have had pizza in the fridge since monday, so is it safe to eat", + "food_last" + ], + [ + "so i have had pizza in the fridge since monday, so is it safe to eat", + "food_last" + ], + [ + "i need to know how long can i keep pizza in the freezer for before it goes bad", + "food_last" + ], + [ + "how long can i put pizza in the fridge", + "food_last" + ], + [ + "what is the length of time i can leave pork in the fridge", + "food_last" + ], + [ + "how long until pork spoils in the fridge", + "food_last" + ], + [ + "how long is pork good in the fridge", + "food_last" + ], + [ + "is there a time limit on leaving pork in the fridge", + "food_last" + ], + [ + "when does pork go bad in the fridge", + "food_last" + ], + [ + "when does milk expire", + "food_last" + ], + [ + "how long does it take frozen steaks to go bad", + "food_last" + ], + [ + "how long does bread last in the freezer", + "food_last" + ], + [ + "how long does bread last", + "food_last" + ], + [ + "how long can i expect chicken breast to be good for before expiration", + "food_last" + ], + [ + "how long will eggs keep in the freezer", + "food_last" + ], + [ + "how long do i have before frozen chicken will go bad", + "food_last" + ], + [ + "how long are eggs good for", + "food_last" + ], + [ + "how long can i expect to keep steak in the freezer", + "food_last" + ], + [ + "what's the expiration for steak", + "food_last" + ], + [ + "is it ok to eat alfredo that's been in the fridge since last sunday", + "food_last" + ], + [ + "my chinese food has sat in the fridge since friday but can i still eat it", + "food_last" + ], + [ + "how long is it safe to leave a burger in the refrigerator", + "food_last" + ], + [ + "what is the fridge life of spahghetti", + "food_last" + ], + [ + "check if it is ok to eat cheese that has been in the refrigerator since last tuesday", + "food_last" + ], + [ + "give me the length of time that i can leave milk in my fridge", + "food_last" + ], + [ + "how long is it safe to leave shrimp in the fridge", + "food_last" + ], + [ + "i have had pasta in the fridge since monday, can is till consume it", + "food_last" + ], + [ + "am i good to eat this burger from the fridge that i got two mondays ago", + "food_last" + ], + [ + "when will lettuce in the fridge go bad", + "food_last" + ], + [ + "i've got some chips from monday, will they still be ok to eat", + "food_last" + ], + [ + "i have potatoes in the cupboard from wednesday, are they fine", + "food_last" + ], + [ + "i have tomatoes from tuesday, do you think those are still good", + "food_last" + ], + [ + "i've had these burger patties in the freezer since saturday, are they still fine to cook", + "food_last" + ], + [ + "if i have garlic from sunday is it still fine to use", + "food_last" + ], + [ + "how long will the turkey take to cook", + "cook_time" + ], + [ + "so how long do you think the chicken will take", + "cook_time" + ], + [ + "how long does pizza take to cook", + "cook_time" + ], + [ + "how long is the chicken gonna take", + "cook_time" + ], + [ + "how long will the chicken take to cook", + "cook_time" + ], + [ + "how long does it take to cook roast beef", + "cook_time" + ], + [ + "how long does it take to boil an egg", + "cook_time" + ], + [ + "how long does it take to bake a pork loin", + "cook_time" + ], + [ + "how long does it take to make roast chicken", + "cook_time" + ], + [ + "how long does it take to cook a pork chop", + "cook_time" + ], + [ + "how much time do i need to make the chicken", + "cook_time" + ], + [ + "what's the prep and cooking time on pizza dough", + "cook_time" + ], + [ + "how long does it take to make lasagna", + "cook_time" + ], + [ + "how long will it take to make the wings", + "cook_time" + ], + [ + "what's the cooking time for the cake", + "cook_time" + ], + [ + "the steak must go under the broiler for how long", + "cook_time" + ], + [ + "how long do i put the casserole in", + "cook_time" + ], + [ + "if i cook the pizza at 400 degrees how long must it be in for", + "cook_time" + ], + [ + "how long do you need to put the cuish in for", + "cook_time" + ], + [ + "the sauce must simmer then go in the oven but for how long", + "cook_time" + ], + [ + "i need the cooking length for a turkey", + "cook_time" + ], + [ + "how many minutes do i cook baked ziti", + "cook_time" + ], + [ + "how long does it take to cook ham", + "cook_time" + ], + [ + "i need to know how long to do a pot roast in a slow cooker", + "cook_time" + ], + [ + "how long does a roast take", + "cook_time" + ], + [ + "how long is it acceptable to carmelize onions", + "cook_time" + ], + [ + "when should i take an apple pie out", + "cook_time" + ], + [ + "how long do you cook a salmon", + "cook_time" + ], + [ + "how much time does it take to boil an egg", + "cook_time" + ], + [ + "what is the duration of time cookies should be in the oven", + "cook_time" + ], + [ + "about how long should you cook lasagna", + "cook_time" + ], + [ + "what is the prep time for a 10 lb turkey", + "cook_time" + ], + [ + "how many minutes to melt cheese", + "cook_time" + ], + [ + "how long to reheat chinese food", + "cook_time" + ], + [ + "how long do you cook pasta for", + "cook_time" + ], + [ + "about how long should you cook a 10 pound turkey", + "cook_time" + ], + [ + "how long does it take to prepare pot roast", + "cook_time" + ], + [ + "how long to microwave a pizza", + "cook_time" + ], + [ + "how long should i cook a glazed ham", + "cook_time" + ], + [ + "how long should i cook a spiral ham", + "cook_time" + ], + [ + "how long do the brownies have to cook", + "cook_time" + ], + [ + "how long to i bake the brownies", + "cook_time" + ], + [ + "how long should i bake the brownies for", + "cook_time" + ], + [ + "for how long should i bake the brownies", + "cook_time" + ], + [ + "how long do the brownies need to be in the oven", + "cook_time" + ], + [ + "how long does this dish need to be in the oven", + "cook_time" + ], + [ + "for how long does this need to cook", + "cook_time" + ], + [ + "what do i set the timer for if i'm making gyoza", + "cook_time" + ], + [ + "what should i put on the timer to cook this dish", + "cook_time" + ], + [ + "how long do i cook this dish of rice", + "cook_time" + ], + [ + "how long should a cake bake", + "cook_time" + ], + [ + "how long to microwave a frozen dinner", + "cook_time" + ], + [ + "what's the preparation time for spaghetti", + "cook_time" + ], + [ + "how long should this be in the oven", + "cook_time" + ], + [ + "how long to cook a frozen pizza", + "cook_time" + ], + [ + "i want to bake brownies, how long do they bake for", + "cook_time" + ], + [ + "how long do you bake a cake", + "cook_time" + ], + [ + "how long does it take to make shrimp scampi", + "cook_time" + ], + [ + "how long to cook steak for", + "cook_time" + ], + [ + "how long do you cook a hamburger for", + "cook_time" + ], + [ + "how long should i expect beef stroganoff to prepare", + "cook_time" + ], + [ + "how long do i cook steak", + "cook_time" + ], + [ + "what's the cooking time for chicken alfredo", + "cook_time" + ], + [ + "how long does it take pork to cook", + "cook_time" + ], + [ + "how much time do i need to prepare chicken", + "cook_time" + ], + [ + "noodles need to cook for how long", + "cook_time" + ], + [ + "how long should i boil noodles for", + "cook_time" + ], + [ + "how long do noodles need to cook", + "cook_time" + ], + [ + "what time should i cook noodles for", + "cook_time" + ], + [ + "how long do i need to make lasagne", + "cook_time" + ], + [ + "how long will it take me to make baked chicken", + "cook_time" + ], + [ + "how long will it take to fix shepherd's pie", + "cook_time" + ], + [ + "how long do cheeseburgers take to make", + "cook_time" + ], + [ + "how long should i cook the ham for", + "cook_time" + ], + [ + "how long should i cook the eggs for", + "cook_time" + ], + [ + "how long should i cook the asparagus for", + "cook_time" + ], + [ + "how long should i cook the pasta for", + "cook_time" + ], + [ + "how long should i cook the steak for", + "cook_time" + ], + [ + "what is the necessary amount of time required to prepare pot roast", + "cook_time" + ], + [ + "how long am i supposed to cook pork loin", + "cook_time" + ], + [ + "how long must i cook spaghetti for", + "cook_time" + ], + [ + "tell me how long i will need to spend preparing a meat loaf dish", + "cook_time" + ], + [ + "i need to know the preparation time required for fried chicken", + "cook_time" + ], + [ + "how long should i spend preparing roast beef", + "cook_time" + ], + [ + "what amount of time do i need to cook lobster for", + "cook_time" + ], + [ + "what is the proper time to cook steak for", + "cook_time" + ], + [ + "how long should i cook chicken", + "cook_time" + ], + [ + "tell me how long i ought to spend preparing fajitas", + "cook_time" + ], + [ + "how long should i cook chicken thighs", + "cook_time" + ], + [ + "how long should i cook a ny steak", + "cook_time" + ], + [ + "how long do i cook pork", + "cook_time" + ], + [ + "how long do i cook the chicken roast", + "cook_time" + ], + [ + "how long do i cook chicken breast", + "cook_time" + ], + [ + "what's the time it takes to make a decent omelette", + "cook_time" + ], + [ + "how long should i fry an egg for", + "cook_time" + ], + [ + "what's the prep time for a garden salad", + "cook_time" + ], + [ + "what's the usual time for tuna casserole", + "cook_time" + ], + [ + "how long do you need to bake chicken for it to be safe to eat", + "cook_time" + ], + [ + "how long should i cook a steak for", + "cook_time" + ], + [ + "how long should i wait before i can bake bread with homemade dough", + "cook_time" + ], + [ + "remind me to call my mother saturday morning", + "reminder_update" + ], + [ + "please set up a reminder i need to remember to ask about work", + "reminder_update" + ], + [ + "make a reminder for me to do my resume", + "reminder_update" + ], + [ + "remind me to take out the garbage in the morning", + "reminder_update" + ], + [ + "the next time it rains, remind me to close the windows", + "reminder_update" + ], + [ + "could you make me a reminder to do the floors", + "reminder_update" + ], + [ + "i need a reminder set for signing up for the conference", + "reminder_update" + ], + [ + "set a reminder for me to call my brother at 8 pm", + "reminder_update" + ], + [ + "make me a reminder about booking it", + "reminder_update" + ], + [ + "at 4 tomorrow afternoon, remind me to start the oven", + "reminder_update" + ], + [ + "how about a reminder", + "reminder_update" + ], + [ + "i would like a reminder", + "reminder_update" + ], + [ + "i need to make a reminder please", + "reminder_update" + ], + [ + "please give me a reminder", + "reminder_update" + ], + [ + "can you set me a reminder", + "reminder_update" + ], + [ + "can i set a reminder", + "reminder_update" + ], + [ + "please make a reminder", + "reminder_update" + ], + [ + "add a reminder to check how the body is decomposing", + "reminder_update" + ], + [ + "remind me to set the meat out to defrost", + "reminder_update" + ], + [ + "create a reminder for me to exercise this week", + "reminder_update" + ], + [ + "will you add a reminder for me", + "reminder_update" + ], + [ + "add a reminder to pick milk up at the store", + "reminder_update" + ], + [ + "make a reminder to do my taxes", + "reminder_update" + ], + [ + "set a reminder to remind me to check when my car payment is", + "reminder_update" + ], + [ + "set a reminder for me to take my meds", + "reminder_update" + ], + [ + "can you create a reminder", + "reminder_update" + ], + [ + "create a reminder for me to send flowers to my mom for mother's day", + "reminder_update" + ], + [ + "i'd like to have a reminder made", + "reminder_update" + ], + [ + "set a reminder for later", + "reminder_update" + ], + [ + "please remind me later", + "reminder_update" + ], + [ + "remind me again please", + "reminder_update" + ], + [ + "remind me later", + "reminder_update" + ], + [ + "please remind me at a later time", + "reminder_update" + ], + [ + "set a reminder", + "reminder_update" + ], + [ + "remind me", + "reminder_update" + ], + [ + "please remind me of something", + "reminder_update" + ], + [ + "i need a reminder", + "reminder_update" + ], + [ + "i would like to be reminded", + "reminder_update" + ], + [ + "set a reminder for me", + "reminder_update" + ], + [ + "i need a reminder to remind me to do something", + "reminder_update" + ], + [ + "i want you to remind me of something", + "reminder_update" + ], + [ + "i need you to remind me to get something done", + "reminder_update" + ], + [ + "remind me to call the vet tomorrow", + "reminder_update" + ], + [ + "set a reminder for me to do this in a bit", + "reminder_update" + ], + [ + "can you set a reminder for the meeting", + "reminder_update" + ], + [ + "set a reminder to go dress shopping", + "reminder_update" + ], + [ + "remember to remind me of this later", + "reminder_update" + ], + [ + "i need to set a reminder to go to the post office", + "reminder_update" + ], + [ + "set a reminder for tomorrows meeting", + "reminder_update" + ], + [ + "set a reminder for the movie", + "reminder_update" + ], + [ + "set a reminder to go grocery shopping", + "reminder_update" + ], + [ + "set a reminder to feed the dogs", + "reminder_update" + ], + [ + "set a reminder to go check the mail", + "reminder_update" + ], + [ + "make a reminder to change the cat litter", + "reminder_update" + ], + [ + "set a reminder for my doctors appointment", + "reminder_update" + ], + [ + "dont forget to set a reminder to pay the bills", + "reminder_update" + ], + [ + "please remind me to do this later", + "reminder_update" + ], + [ + "remind me to do this in awhile", + "reminder_update" + ], + [ + "help me set a reminder to work out", + "reminder_update" + ], + [ + "dont let me forget to do that thing later", + "reminder_update" + ], + [ + "make a reminder to work out at the gym", + "reminder_update" + ], + [ + "set a reminder to pick up the kids", + "reminder_update" + ], + [ + "set a reminder to call my mom", + "reminder_update" + ], + [ + "remind me to take the chicken out in a hour", + "reminder_update" + ], + [ + "set reminder to prepare for my meeting at 10 am", + "reminder_update" + ], + [ + "set reminder for tomorrow to eat", + "reminder_update" + ], + [ + "remind me to bring a jacket in tomorrow", + "reminder_update" + ], + [ + "set a reminder to bring a book to work tomorrow", + "reminder_update" + ], + [ + "set a new reminder for tomorrow at 4am", + "reminder_update" + ], + [ + "make reminder to pay rent on the 30th of every month", + "reminder_update" + ], + [ + "open up a reminder, pay taxes on monday", + "reminder_update" + ], + [ + "new reminder, please", + "reminder_update" + ], + [ + "create a reminder to give the cat her flea medicine", + "reminder_update" + ], + [ + "set up a reminder to give the cat her flea medicine", + "reminder_update" + ], + [ + "i need you to make a reminder for me to give the cat her flea medicine", + "reminder_update" + ], + [ + "make a reminder, pay taxes on monday", + "reminder_update" + ], + [ + "set reminder pay taxes on monday", + "reminder_update" + ], + [ + "make a reminder to give the cat her flea medicine", + "reminder_update" + ], + [ + "set up an alarm to remind me to give my cat her flea medicine", + "reminder_update" + ], + [ + "set reminder to feed cat tonight at 6pm", + "reminder_update" + ], + [ + "set a reminder for monday pay taxes", + "reminder_update" + ], + [ + "create a reminder to pay taxes on monday", + "reminder_update" + ], + [ + "remind me to use the bathroom", + "reminder_update" + ], + [ + "please reminder for car meet", + "reminder_update" + ], + [ + "remind me to clean room", + "reminder_update" + ], + [ + "i need to be notified to clean the room", + "reminder_update" + ], + [ + "remind me tommorow at 3pm i have a doctors appointment", + "reminder_update" + ], + [ + "remind me friday to call my mother", + "reminder_update" + ], + [ + "make me a reminder that tommorow is trash day", + "reminder_update" + ], + [ + "set up a reminder that i need to pay my car ins the 23rd", + "reminder_update" + ], + [ + "set up a reminder to mail a check tommorow", + "reminder_update" + ], + [ + "i need to take out the trash please remind me", + "reminder_update" + ], + [ + "set a reminder to take out the trash", + "reminder_update" + ], + [ + "tell me to take out the trash in an hour", + "reminder_update" + ], + [ + "remind me to take out the trash", + "reminder_update" + ], + [ + "please remind me to take out the trash", + "reminder_update" + ], + [ + "i need to be reminded to pray", + "reminder_update" + ], + [ + "i want to get reminded to clean my room", + "reminder_update" + ], + [ + "remind me to call bob", + "reminder_update" + ], + [ + "give me a reminder for calling bill", + "reminder_update" + ], + [ + "immediately the credit card company must be told that i lost my card from them", + "report_lost_card" + ], + [ + "i lost my debit card and need it reported as lost", + "report_lost_card" + ], + [ + "i can't seem to find my gold card and want it reported as lost", + "report_lost_card" + ], + [ + "i lost my chase bank card and want it labeled as lost", + "report_lost_card" + ], + [ + "can you report my td bank card as lost", + "report_lost_card" + ], + [ + "i misplaced my visa and need it marked as lost", + "report_lost_card" + ], + [ + "what do i do if my visa card got stolen", + "report_lost_card" + ], + [ + "what should i do when my visa card is stolen", + "report_lost_card" + ], + [ + "my visa card was stolen", + "report_lost_card" + ], + [ + "my visa card got stolen", + "report_lost_card" + ], + [ + "i think my visa card was stolen", + "report_lost_card" + ], + [ + "my visa has been stolen by someone", + "report_lost_card" + ], + [ + "someone stole my mastercade", + "report_lost_card" + ], + [ + "my visa was stolen", + "report_lost_card" + ], + [ + "my american express card needs to be reported as stolen", + "report_lost_card" + ], + [ + "my discover card has been stolen", + "report_lost_card" + ], + [ + "report lost card to discover company", + "report_lost_card" + ], + [ + "report discover card as lost", + "report_lost_card" + ], + [ + "how do i report a lost discover credit card", + "report_lost_card" + ], + [ + "where to report lost discover credit card", + "report_lost_card" + ], + [ + "report lost card", + "report_lost_card" + ], + [ + "report a lost card here", + "report_lost_card" + ], + [ + "please report my stolen card", + "report_lost_card" + ], + [ + "could you please help me, my card has been stolen and i need to report it", + "report_lost_card" + ], + [ + "my credit card has been stolen, please report it", + "report_lost_card" + ], + [ + "oh no, report my card, it's stolen", + "report_lost_card" + ], + [ + "i would like to have my card reported as stolen", + "report_lost_card" + ], + [ + "i need to report a card that's been lost but i dont know how", + "report_lost_card" + ], + [ + "how can i report a card that has been lost", + "report_lost_card" + ], + [ + "file a report for a lost american express card", + "report_lost_card" + ], + [ + "help me report my lost mastercard", + "report_lost_card" + ], + [ + "i lost my card, how should i report that", + "report_lost_card" + ], + [ + "what should i do if my card is lost", + "report_lost_card" + ], + [ + "report my lost visa card", + "report_lost_card" + ], + [ + "i lost my amex and need to report it", + "report_lost_card" + ], + [ + "i have to report a lost visa card", + "report_lost_card" + ], + [ + "walk me through the process of reporting a lost card", + "report_lost_card" + ], + [ + "what can i do if my card is lost", + "report_lost_card" + ], + [ + "my card is lost what do i do", + "report_lost_card" + ], + [ + "my card is lost how do i report it", + "report_lost_card" + ], + [ + "what must i do to report my card lost", + "report_lost_card" + ], + [ + "can you help me report my lost card please", + "report_lost_card" + ], + [ + "my card is lost please report it", + "report_lost_card" + ], + [ + "i need to report that my card has been lost", + "report_lost_card" + ], + [ + "i want you to repord my card as lost", + "report_lost_card" + ], + [ + "i lost my card, what do i do", + "report_lost_card" + ], + [ + "i need to report that my card is lost", + "report_lost_card" + ], + [ + "i need to replace my lost card", + "report_lost_card" + ], + [ + "what do i do if i lost my card", + "report_lost_card" + ], + [ + "how do i report a lost card", + "report_lost_card" + ], + [ + "someone stole my discover card", + "report_lost_card" + ], + [ + "my american saving bank was stolen", + "report_lost_card" + ], + [ + "someone stole my discover credit card", + "report_lost_card" + ], + [ + "someone stole my capital one credit card", + "report_lost_card" + ], + [ + "my capital one credit card was stolen", + "report_lost_card" + ], + [ + "my card is to be reported stolen", + "report_lost_card" + ], + [ + "my stolen card needs to be reported", + "report_lost_card" + ], + [ + "i need to report my stolen card", + "report_lost_card" + ], + [ + "i have to report my card as stolen", + "report_lost_card" + ], + [ + "i am obliged to report my stolen card", + "report_lost_card" + ], + [ + "i need to report my card as stolen, please", + "report_lost_card" + ], + [ + "i can't find my mastercard and i want to report it as lost, please", + "report_lost_card" + ], + [ + "i can't find my visa card and i want to report it as lost", + "report_lost_card" + ], + [ + "i can't find my mastercard and i want to report it as lost", + "report_lost_card" + ], + [ + "i would like to report my card as stolen", + "report_lost_card" + ], + [ + "i can't find my visa card and i want to report it as lost, please", + "report_lost_card" + ], + [ + "i'd like to report my card as stolen", + "report_lost_card" + ], + [ + "i'd like to report my card as stolen, please", + "report_lost_card" + ], + [ + "i can't locate my mastercard and i want to report it as lost, please", + "report_lost_card" + ], + [ + "i would like to report my card as stolen, please", + "report_lost_card" + ], + [ + "i need to report a stolen card, please", + "report_lost_card" + ], + [ + "i think my card is stolen and needs to be reported", + "report_lost_card" + ], + [ + "i would like to report a stolen card", + "report_lost_card" + ], + [ + "is there anyway, i can report my card being stolen", + "report_lost_card" + ], + [ + "my card is stolen, i need to report it", + "report_lost_card" + ], + [ + "my new debit card is lost and i need to report it", + "report_lost_card" + ], + [ + "my bronze card is missing i would like to report it as lost", + "report_lost_card" + ], + [ + "i lost my purple credit card and need to report it", + "report_lost_card" + ], + [ + "i lost my silicon valley card", + "report_lost_card" + ], + [ + "i lost my commerce card and need to report it as lost", + "report_lost_card" + ], + [ + "someone stole my card", + "report_lost_card" + ], + [ + "i need help since someone stole my card", + "report_lost_card" + ], + [ + "my credit card was stolen", + "report_lost_card" + ], + [ + "i need to report credit card theft", + "report_lost_card" + ], + [ + "who do i report card theft to", + "report_lost_card" + ], + [ + "i want to report my card as lost", + "report_lost_card" + ], + [ + "i need to report a lost card", + "report_lost_card" + ], + [ + "what do i do to report a lost card", + "report_lost_card" + ], + [ + "how do i report my lost card", + "report_lost_card" + ], + [ + "help me report a lost card", + "report_lost_card" + ], + [ + "can you report my lost discover card", + "report_lost_card" + ], + [ + "report my card as lost", + "report_lost_card" + ], + [ + "i lost my card how do i report it", + "report_lost_card" + ], + [ + "i lost my discover card, i want to report it", + "report_lost_card" + ], + [ + "i want to report my discover card as lost", + "report_lost_card" + ], + [ + "i can't find my discover card, how do i report it", + "report_lost_card" + ], + [ + "i can't find my credit card and i want to report it as lost", + "report_lost_card" + ], + [ + "i can't find my insurance card and i want to report it as lost", + "report_lost_card" + ], + [ + "i can't find my student id card and i want to report it as lost", + "report_lost_card" + ], + [ + "i need to report my card as stolen, who do i tell", + "report_lost_card" + ], + [ + "what about changing the sugar for baking soda", + "ingredient_substitution" + ], + [ + "can i swap sugar for salt", + "ingredient_substitution" + ], + [ + "would it be possible to replace the salt with baking soda", + "ingredient_substitution" + ], + [ + "instead of pepper, can i use salt", + "ingredient_substitution" + ], + [ + "can i take out the olive oil and use lard", + "ingredient_substitution" + ], + [ + "can i use water instead of milk", + "ingredient_substitution" + ], + [ + "it is okay to use water in place of milk", + "ingredient_substitution" + ], + [ + "it is okay to replace water instead of milk", + "ingredient_substitution" + ], + [ + "is it okay to switch water for milk", + "ingredient_substitution" + ], + [ + "will it be okay if i use water instead of milk", + "ingredient_substitution" + ], + [ + "can i substitute ginger for garlic", + "ingredient_substitution" + ], + [ + "can i substitute rice for potatoes", + "ingredient_substitution" + ], + [ + "can i substitute oregano for basil", + "ingredient_substitution" + ], + [ + "can i substitute bacon for sausage", + "ingredient_substitution" + ], + [ + "can i substitute honey for sugar", + "ingredient_substitution" + ], + [ + "can i switch cream with milk in a recipe", + "ingredient_substitution" + ], + [ + "can i exchange milk for cream in recipes", + "ingredient_substitution" + ], + [ + "is milk an ok substitute for cream", + "ingredient_substitution" + ], + [ + "can i use milk instead of cream", + "ingredient_substitution" + ], + [ + "can i switch cream out for milk", + "ingredient_substitution" + ], + [ + "can i substitute skim milk for whole milk", + "ingredient_substitution" + ], + [ + "is it okay to substitute oregano for basil", + "ingredient_substitution" + ], + [ + "can i use colby jack cheese instead of cheddar in a recipe", + "ingredient_substitution" + ], + [ + "can i use dark brown sugar instead of brown sugar", + "ingredient_substitution" + ], + [ + "can i substitute lemon juice for vinegar", + "ingredient_substitution" + ], + [ + "can i use apple juice instead of grape juice", + "ingredient_substitution" + ], + [ + "can i substitute apple juice for wine", + "ingredient_substitution" + ], + [ + "can i substitute vinegar for apple cider vinegar", + "ingredient_substitution" + ], + [ + "can i substitute lemon juice for lime juice", + "ingredient_substitution" + ], + [ + "can i use sour cream instead of yogurt", + "ingredient_substitution" + ], + [ + "is it possible to substitute apple cider vinegar for lemons", + "ingredient_substitution" + ], + [ + "i need to know if i could substitute apple sauce with eggs", + "ingredient_substitution" + ], + [ + "is honey a good sugar substitute", + "ingredient_substitution" + ], + [ + "could i use olive oil instead of grape seed oil", + "ingredient_substitution" + ], + [ + "can i use flour as a substitute for bread crumbs", + "ingredient_substitution" + ], + [ + "i need to swap salt for baking soda", + "ingredient_substitution" + ], + [ + "i wanna swap salt for baking soda", + "ingredient_substitution" + ], + [ + "i need to sub sugar for salt", + "ingredient_substitution" + ], + [ + "can i sub sugar for salt", + "ingredient_substitution" + ], + [ + "is it ok to sub sugar for salt", + "ingredient_substitution" + ], + [ + "let me swap salt for baking soda", + "ingredient_substitution" + ], + [ + "please allow me to swap salt for baking soda", + "ingredient_substitution" + ], + [ + "is it acceptable to swap salt for baking soda", + "ingredient_substitution" + ], + [ + "i gotta sub sugar for salt", + "ingredient_substitution" + ], + [ + "i wanna sub sugar for salt", + "ingredient_substitution" + ], + [ + "can i use flour instead of cornstarch to make gravy", + "ingredient_substitution" + ], + [ + "can i substitute yogurt for sour cream", + "ingredient_substitution" + ], + [ + "if a recipe calls for sour cream, can i use yogurt", + "ingredient_substitution" + ], + [ + "can i use sour cream in place of creme fraiche", + "ingredient_substitution" + ], + [ + "can i use yogurt in place of sour cream", + "ingredient_substitution" + ], + [ + "can i use sour cream instead of milk", + "ingredient_substitution" + ], + [ + "i don't have sour cream, can i use yogurt instead", + "ingredient_substitution" + ], + [ + "can i swap yogurt for sour cream", + "ingredient_substitution" + ], + [ + "can yogurt be used for sour cream", + "ingredient_substitution" + ], + [ + "is it fine to sub bread flour with all-purpose flour", + "ingredient_substitution" + ], + [ + "are you able to sub white sugar for brown sugar", + "ingredient_substitution" + ], + [ + "can you sub half and half for heavy whipping cream", + "ingredient_substitution" + ], + [ + "can i use baking powder instead of baking soda", + "ingredient_substitution" + ], + [ + "do you think i can sub honey for sugar", + "ingredient_substitution" + ], + [ + "proper to substitute cumin for tumeric", + "ingredient_substitution" + ], + [ + "can substitute cumin for tumeric", + "ingredient_substitution" + ], + [ + "cumin may be substituted for tumeric", + "ingredient_substitution" + ], + [ + "is almond milk an acceptable substitute for milk", + "ingredient_substitution" + ], + [ + "can i swap coconut milk for condensed milk", + "ingredient_substitution" + ], + [ + "can i substitute eggs for milk in a recipe", + "ingredient_substitution" + ], + [ + "could i use white wine instead of red wine in a recipe", + "ingredient_substitution" + ], + [ + "can i substitute ketchup for mustard", + "ingredient_substitution" + ], + [ + "can i substitute milk for almond milk", + "ingredient_substitution" + ], + [ + "is it acceptable to swap milk for water", + "ingredient_substitution" + ], + [ + "is it acceptable to swap chicken for pork", + "ingredient_substitution" + ], + [ + "is it acceptable to swap marinara for alfredo", + "ingredient_substitution" + ], + [ + "can i substitute milk for water", + "ingredient_substitution" + ], + [ + "is it acceptable to swap rice for quinoa", + "ingredient_substitution" + ], + [ + "can i substitute butter for margarine", + "ingredient_substitution" + ], + [ + "is it acceptable to swap beef for tempeh", + "ingredient_substitution" + ], + [ + "can i substitute salt for pepper", + "ingredient_substitution" + ], + [ + "is it ok to use brown sugar instead of powdered sugar", + "ingredient_substitution" + ], + [ + "can i use margarine instead of butter", + "ingredient_substitution" + ], + [ + "can i switch in almond butter for peanut butter", + "ingredient_substitution" + ], + [ + "can i use salt instead of baking soda", + "ingredient_substitution" + ], + [ + "can i substitute cream for milk", + "ingredient_substitution" + ], + [ + "can i use baking soda instead of baking powder", + "ingredient_substitution" + ], + [ + "what can i use as a substitute for yeast", + "ingredient_substitution" + ], + [ + "substitute for milk in pancakes", + "ingredient_substitution" + ], + [ + "alternatives to white wine in food", + "ingredient_substitution" + ], + [ + "can i use something else if i don't have eggs", + "ingredient_substitution" + ], + [ + "can i use a green pepper instead of a red pepper", + "ingredient_substitution" + ], + [ + "is it possible to use sausage instead of hot dog", + "ingredient_substitution" + ], + [ + "is it ok to substitute spinach for lettuce", + "ingredient_substitution" + ], + [ + "is crushed garlic the same as powdered garlic for a spaghetti sauce", + "ingredient_substitution" + ], + [ + "can i use almond milk instead of rice milk", + "ingredient_substitution" + ], + [ + "can i swap cayenne pepper for black pepper", + "ingredient_substitution" + ], + [ + "can i use normal flour if i don't have bread flour", + "ingredient_substitution" + ], + [ + "can i use olive oil instead of butter", + "ingredient_substitution" + ], + [ + "can i use coconut oil instead of olive oil", + "ingredient_substitution" + ], + [ + "can you just use regular milk instead of buttermilk", + "ingredient_substitution" + ], + [ + "can i use strawberries instead of pineapples for this", + "ingredient_substitution" + ], + [ + "can i use sharp cheddar instead of muenster", + "ingredient_substitution" + ], + [ + "can i use mayonnaise instead of miracle whip", + "ingredient_substitution" + ], + [ + "can i substitute rice milk for milk", + "ingredient_substitution" + ], + [ + "place a phone call to yiming", + "make_call" + ], + [ + "phone lobby", + "make_call" + ], + [ + "can you call dominos pizza", + "make_call" + ], + [ + "can you redial the last number dialed", + "make_call" + ], + [ + "call 911", + "make_call" + ], + [ + "can you call a taxi", + "make_call" + ], + [ + "can you call mom", + "make_call" + ], + [ + "call work", + "make_call" + ], + [ + "call justin", + "make_call" + ], + [ + "call home", + "make_call" + ], + [ + "call erryn", + "make_call" + ], + [ + "i have to call the commander", + "make_call" + ], + [ + "i will be calling hr", + "make_call" + ], + [ + "it is important that i call katie", + "make_call" + ], + [ + "x is who i need to call", + "make_call" + ], + [ + "i am going to call the landlord", + "make_call" + ], + [ + "call macy", + "make_call" + ], + [ + "dial lisa's cell phone number", + "make_call" + ], + [ + "please dial david now", + "make_call" + ], + [ + "i need you to call michael at home", + "make_call" + ], + [ + "can you call mary", + "make_call" + ], + [ + "please phone lizzy", + "make_call" + ], + [ + "please dial x's phone number", + "make_call" + ], + [ + "dial x's phone please", + "make_call" + ], + [ + "please call toby", + "make_call" + ], + [ + "call dave", + "make_call" + ], + [ + "call my best friend", + "make_call" + ], + [ + "can you make a phone call to mark", + "make_call" + ], + [ + "can you call my mom", + "make_call" + ], + [ + "call mark", + "make_call" + ], + [ + "call friend", + "make_call" + ], + [ + "can i call a restaurant", + "make_call" + ], + [ + "can you make a phone call to kevin", + "make_call" + ], + [ + "call bob for me", + "make_call" + ], + [ + "call my mother", + "make_call" + ], + [ + "call jim", + "make_call" + ], + [ + "can you make a phone call to roger", + "make_call" + ], + [ + "can you make a phone call to dave", + "make_call" + ], + [ + "call mymother", + "make_call" + ], + [ + "can you make a phone call to randy", + "make_call" + ], + [ + "bella needs to be called", + "make_call" + ], + [ + "give liz a call", + "make_call" + ], + [ + "would you give jenny a call", + "make_call" + ], + [ + "i want you to call bella", + "make_call" + ], + [ + "phone call secretary", + "make_call" + ], + [ + "get a hold of sue", + "make_call" + ], + [ + "i'm looking to call a group", + "make_call" + ], + [ + "call tom", + "make_call" + ], + [ + "dial x's number", + "make_call" + ], + [ + "dial christie's cell", + "make_call" + ], + [ + "call christie's work number", + "make_call" + ], + [ + "phone christie", + "make_call" + ], + [ + "call christie", + "make_call" + ], + [ + "please dial christie's number", + "make_call" + ], + [ + "can you call someone", + "make_call" + ], + [ + "call someone for me", + "make_call" + ], + [ + "dial someone's phone number", + "make_call" + ], + [ + "i need to talk to someone on the phone", + "make_call" + ], + [ + "call someone", + "make_call" + ], + [ + "it's time for me to call drew", + "make_call" + ], + [ + "it's necessary to call michael", + "make_call" + ], + [ + "i must call jordan", + "make_call" + ], + [ + "x is waiting for me to call", + "make_call" + ], + [ + "put me on a call to sally", + "make_call" + ], + [ + "place a call to bill now", + "make_call" + ], + [ + "i want to place a call to mike", + "make_call" + ], + [ + "i have to call jane", + "make_call" + ], + [ + "can you call russell", + "make_call" + ], + [ + "place call to robby", + "make_call" + ], + [ + "dial sarah", + "make_call" + ], + [ + "call robby", + "make_call" + ], + [ + "phone sarah", + "make_call" + ], + [ + "call sarah", + "make_call" + ], + [ + "call robby for me", + "make_call" + ], + [ + "i want to call robby", + "make_call" + ], + [ + "can you call robby", + "make_call" + ], + [ + "phonecall sarah", + "make_call" + ], + [ + "i want to talk to sarah", + "make_call" + ], + [ + "dial steven", + "make_call" + ], + [ + "phone steven", + "make_call" + ], + [ + "ring steven", + "make_call" + ], + [ + "call steven", + "make_call" + ], + [ + "i want to make a call to uncle", + "make_call" + ], + [ + "use my phone to dial work", + "make_call" + ], + [ + "start a phone call with kathy", + "make_call" + ], + [ + "initiate a phone call with receptionist", + "make_call" + ], + [ + "can a phone call be made to maria", + "make_call" + ], + [ + "i need you to call the broker", + "make_call" + ], + [ + "please do me a favor and call brother mario", + "make_call" + ], + [ + "can you please call nata", + "make_call" + ], + [ + "call sandra right now", + "make_call" + ], + [ + "immediately call tom", + "make_call" + ], + [ + "i must call dr smith", + "make_call" + ], + [ + "connect me to bob", + "make_call" + ], + [ + "place a call to father callahan", + "make_call" + ], + [ + "i should call ruthie", + "make_call" + ], + [ + "please call christy", + "make_call" + ], + [ + "i must call roderick", + "make_call" + ], + [ + "please make a phone call to christopher", + "make_call" + ], + [ + "i need to call mark", + "make_call" + ], + [ + "wake me up at noon tomorrow", + "alarm" + ], + [ + "set my alarm for getting up", + "alarm" + ], + [ + "make sure my alarm is set for three thirty in the morning", + "alarm" + ], + [ + "please set an alarm for mid day", + "alarm" + ], + [ + "have an alarm set for three in the morning", + "alarm" + ], + [ + "you need to set alarm for me", + "alarm" + ], + [ + "i need you to set alarm for me", + "alarm" + ], + [ + "set the alarm for me", + "alarm" + ], + [ + "can you set alarm for me", + "alarm" + ], + [ + "please set alarm for me", + "alarm" + ], + [ + "make a new alarm for 6 in the morning", + "alarm" + ], + [ + "make a new alarm", + "alarm" + ], + [ + "create an alarm", + "alarm" + ], + [ + "i need an alarm for 6am", + "alarm" + ], + [ + "can you alert me at 6 in the morning", + "alarm" + ], + [ + "i'd like a new alarm set for 6am", + "alarm" + ], + [ + "set an alarm for 6am, please", + "alarm" + ], + [ + "initiate a new alarm please", + "alarm" + ], + [ + "set up an alarm", + "alarm" + ], + [ + "make up a new alarm", + "alarm" + ], + [ + "i want to make an alarm", + "alarm" + ], + [ + "i would like an alarm set", + "alarm" + ], + [ + "schedule an alarm", + "alarm" + ], + [ + "i need an alarm set", + "alarm" + ], + [ + "i need alarms set for 6am and 615am", + "alarm" + ], + [ + "i need an alarm to go off tomorrow at five fifteen", + "alarm" + ], + [ + "can you set an alarm for seven fifteen for tomorrow", + "alarm" + ], + [ + "set me an alarm for 4pm and another for 5pm", + "alarm" + ], + [ + "set one alarm for 215pm and another for 7pm", + "alarm" + ], + [ + "create an alarm for 9 am and another one for 11 am", + "alarm" + ], + [ + "set the alarm to go off at 9 tomorrow", + "alarm" + ], + [ + "make an alarm for tomorrow at twilight", + "alarm" + ], + [ + "set up two alarms one for 10am and another for 2pm", + "alarm" + ], + [ + "please set up an alarm to go off tomorrow at daybreak", + "alarm" + ], + [ + "could you set one alarm for 8am saturday and one for 9am sunday", + "alarm" + ], + [ + "can i turn on the alarm now", + "alarm" + ], + [ + "how do i set the alarm", + "alarm" + ], + [ + "please turn on the alarm", + "alarm" + ], + [ + "set my alarm for 6am tomorrow", + "alarm" + ], + [ + "set alarm for 6am", + "alarm" + ], + [ + "can you play an alarm at 5pm", + "alarm" + ], + [ + "create alarm 6am", + "alarm" + ], + [ + "set alarm for 5pm", + "alarm" + ], + [ + "make an alarm 6am", + "alarm" + ], + [ + "create an alarm for 6am", + "alarm" + ], + [ + "put in an alarm for 5pm", + "alarm" + ], + [ + "i want an alarm at 5pm", + "alarm" + ], + [ + "set my alarm for 5pm", + "alarm" + ], + [ + "set an alarm", + "alarm" + ], + [ + "create alarm", + "alarm" + ], + [ + "set alarm", + "alarm" + ], + [ + "i need an alarm to wake me up at 8 tomorrow morning", + "alarm" + ], + [ + "i need you to set an alarm for 8am tomorrow", + "alarm" + ], + [ + "please set an alarm for 5 am", + "alarm" + ], + [ + "set an alarm for 9pm please", + "alarm" + ], + [ + "i need an alarm set for 6 in the morning", + "alarm" + ], + [ + "i need an alarm set for 10:00 and another set for 3:00", + "alarm" + ], + [ + "set an alarm for me for 10:00 and another one set for 4:00", + "alarm" + ], + [ + "would you set my alarm for 10:00 and another for 3:00", + "alarm" + ], + [ + "provide assistance by setting an alarm at 8:00 and another for 11:00", + "alarm" + ], + [ + "assist me by setting my alarm for 9:00 and another for 11:00", + "alarm" + ], + [ + "tomorrow i need an alarm at 7 tomorrow", + "alarm" + ], + [ + "at 9 tomorrow, set off the alarm", + "alarm" + ], + [ + "tomorrow i would like an alarm for 9 tomorrow", + "alarm" + ], + [ + "tomorrow i need the alarm to go off at 5", + "alarm" + ], + [ + "sound the alarm at 6 am tomorrow", + "alarm" + ], + [ + "set reminder for 2 pm", + "alarm" + ], + [ + "wake me up at 6 am", + "alarm" + ], + [ + "ring my phone at 12 pm", + "alarm" + ], + [ + "set alarm for 5 am", + "alarm" + ], + [ + "please set an alarm for 2 pm for me", + "alarm" + ], + [ + "set an alarm for 5 pm", + "alarm" + ], + [ + "can you make an alarm for 7 am", + "alarm" + ], + [ + "set a 5 am alarm please", + "alarm" + ], + [ + "i need an alarm at 8 pm", + "alarm" + ], + [ + "set an alarm to start work and another to stop", + "alarm" + ], + [ + "set an alarm to go to sleep and another to wake up", + "alarm" + ], + [ + "please set a reminder for me", + "alarm" + ], + [ + "set an alarm to work out and another to go home", + "alarm" + ], + [ + "create an alarm for me", + "alarm" + ], + [ + "set an alarm for lunch and another for dinner", + "alarm" + ], + [ + "make an alarm for me", + "alarm" + ], + [ + "set an alarm for my meeting and another for my phone call", + "alarm" + ], + [ + "i want an alarm set up", + "alarm" + ], + [ + "i need an alarm set please", + "alarm" + ], + [ + "have an alarm wake me at 10:30 am", + "alarm" + ], + [ + "i want an alarm to go off at 9 am", + "alarm" + ], + [ + "i need an alarm set for 9 am and another for 11 am", + "alarm" + ], + [ + "i need an alarm set for 5:30 pm", + "alarm" + ], + [ + "i need you to schedule an alarm", + "alarm" + ], + [ + "please create an alarm for 5:45 am and an alarm for 6:15 am", + "alarm" + ], + [ + "would you set up an alarm for me", + "alarm" + ], + [ + "please create one alarm for 330 pm and one for 8 pm", + "alarm" + ], + [ + "please create a new alarm for me", + "alarm" + ], + [ + "i need an alarm to go off at 6 am", + "alarm" + ], + [ + "please set two alarms, one at 12 pm and the next at 1 pm", + "alarm" + ], + [ + "please create an alarm for 12 noon", + "alarm" + ], + [ + "i need one alarm to go off at 6:30 am and a second alarm set for 8:00 am", + "alarm" + ], + [ + "help me get up at eight thirty in the morning tomorrow", + "alarm" + ], + [ + "i want to be woken up at 9 tomorrow", + "alarm" + ], + [ + "what are the things that i have for today", + "todo_list" + ], + [ + "what is left to do today", + "todo_list" + ], + [ + "what do i have to do today", + "todo_list" + ], + [ + "the tasks for today, what are they", + "todo_list" + ], + [ + "i need to know what my to-do list is looking like", + "todo_list" + ], + [ + "is cleaning the kitchen coming up on my list of things i have to do today", + "todo_list" + ], + [ + "do i have cleaning the counters on my to-do list", + "todo_list" + ], + [ + "is cleaning the toilet on my to-do list", + "todo_list" + ], + [ + "tell me what is on the list of things to do", + "todo_list" + ], + [ + "tell me what is on my to do list", + "todo_list" + ], + [ + "is vacuuming on my list of things to do", + "todo_list" + ], + [ + "will an oil change be on my to-do list tomorrow", + "todo_list" + ], + [ + "read me my list of things to do", + "todo_list" + ], + [ + "please read my todo list", + "todo_list" + ], + [ + "tell me what is on my todo list", + "todo_list" + ], + [ + "i need my todo list read", + "todo_list" + ], + [ + "i need to hear my todo list", + "todo_list" + ], + [ + "is taking out the trash on my to do list", + "todo_list" + ], + [ + "read to me my to do list", + "todo_list" + ], + [ + "read back my to do list", + "todo_list" + ], + [ + "can you tell me my to do list", + "todo_list" + ], + [ + "i want to know what i have to do", + "todo_list" + ], + [ + "read back to me my to do list", + "todo_list" + ], + [ + "tell me the content of my to do list today", + "todo_list" + ], + [ + "what is on my to do list", + "todo_list" + ], + [ + "please read back to me my to do list", + "todo_list" + ], + [ + "let me know what i have to do today", + "todo_list" + ], + [ + "is fixing mom's kitchen blind on my to do list", + "todo_list" + ], + [ + "check my domestic to do list for carpet cleaning", + "todo_list" + ], + [ + "do my task list have call kath on it", + "todo_list" + ], + [ + "check my to do list to see if jewelry repair is listed", + "todo_list" + ], + [ + "does my errand list have goodwill on it", + "todo_list" + ], + [ + "can you tell me the items on my to do list", + "todo_list" + ], + [ + "do i have brush my teeth on my todo list", + "todo_list" + ], + [ + "what chores do i have waiting on my reminder list", + "todo_list" + ], + [ + "do i have get an oil change on my todo list", + "todo_list" + ], + [ + "do i already have a task on my todo list to research delaware", + "todo_list" + ], + [ + "what do i have on my need to do list", + "todo_list" + ], + [ + "read my complete todo list to me", + "todo_list" + ], + [ + "i want to hear everything on my todo list", + "todo_list" + ], + [ + "do i have any birthdays on my todo list", + "todo_list" + ], + [ + "how many items are on my todo list", + "todo_list" + ], + [ + "is doing my laundry already on my todo list", + "todo_list" + ], + [ + "how many chores are on my todo list", + "todo_list" + ], + [ + "iterate the items on my todo list", + "todo_list" + ], + [ + "do i have an item on my todo list related to shopping", + "todo_list" + ], + [ + "are the items on my todo list listed alphabetically", + "todo_list" + ], + [ + "did i add purchase tickets to the penguin game to my todo list", + "todo_list" + ], + [ + "did i remember to add buy flowers to my chore list today", + "todo_list" + ], + [ + "can you check if i've added an item to throw out the carcasses on my todo list", + "todo_list" + ], + [ + "what tasks have i yet to complete off my list", + "todo_list" + ], + [ + "do i have anything on my todo list about shoveling snow", + "todo_list" + ], + [ + "what items do i need to do", + "todo_list" + ], + [ + "did i create a task to clean the gutters on my list", + "todo_list" + ], + [ + "tell me what i have on my todo list", + "todo_list" + ], + [ + "is studying for the chem exam on my todo list", + "todo_list" + ], + [ + "please tell me all items on my todo list", + "todo_list" + ], + [ + "do i have a car wash scheduled on my to do list", + "todo_list" + ], + [ + "at what time is laundry on my to do list", + "todo_list" + ], + [ + "have i set aside a time on my to do list to do my taxes", + "todo_list" + ], + [ + "did i jot down a time to see my accountant on my to do list", + "todo_list" + ], + [ + "when is babysitting on my to do list", + "todo_list" + ], + [ + "what does my to-do list consist of", + "todo_list" + ], + [ + "can you please tell me what is on my to-do list", + "todo_list" + ], + [ + "i wonder what my to-do list looks like for today", + "todo_list" + ], + [ + "what does my to-do list look like", + "todo_list" + ], + [ + "let me hear all of the items on my to do list, please", + "todo_list" + ], + [ + "repeat my to do list to me, please", + "todo_list" + ], + [ + "let's go over the list of items on the to do list just to be sure we got it all", + "todo_list" + ], + [ + "can i hear the complete to do list just dictated", + "todo_list" + ], + [ + "tell me what things i need to accomplish per my to do list, please", + "todo_list" + ], + [ + "can you tell me all of the things on my to do list for tomorrow, please", + "todo_list" + ], + [ + "please remind me of the tasks on my to do list", + "todo_list" + ], + [ + "go ahead and say all of the points on my list of to-do's please", + "todo_list" + ], + [ + "what do i have to do tomorrow, according to my to-do list", + "todo_list" + ], + [ + "i want to hear my to do list please", + "todo_list" + ], + [ + "what have i got on my to-do list", + "todo_list" + ], + [ + "let me know whether folding laundry is on my to do list", + "todo_list" + ], + [ + "can you tell me the tasks on my to-do list", + "todo_list" + ], + [ + "i need to know what tasks are on my to-do list", + "todo_list" + ], + [ + "i want to hear my to do list read out loud", + "todo_list" + ], + [ + "can you look to see whether feeding the fish is on my to do list", + "todo_list" + ], + [ + "please let me know if giving the dog a bath is on my list of tasks to complete", + "todo_list" + ], + [ + "can you walk me through the various tasks on my to do list", + "todo_list" + ], + [ + "what do i have left to do on my to-do list", + "todo_list" + ], + [ + "is changing the water filter on my to do list right now", + "todo_list" + ], + [ + "please tell me all the items on my to do list right now", + "todo_list" + ], + [ + "please inform me of what tasks i have listed on my to do list", + "todo_list" + ], + [ + "look to see if i have folding laundry on my to do list", + "todo_list" + ], + [ + "please read out my list of tasks to accomplish", + "todo_list" + ], + [ + "i need to know everything on my to do list currently", + "todo_list" + ], + [ + "i need to know if sorting the mail is on my to do list", + "todo_list" + ], + [ + "can you read my to do list to me please", + "todo_list" + ], + [ + "check my to do list to see if feeding the fish is on it", + "todo_list" + ], + [ + "did i put unpacking groceries on my to do list", + "todo_list" + ], + [ + "will you please go back over everything on my to do list", + "todo_list" + ], + [ + "read my to-do list to me", + "todo_list" + ], + [ + "i need to know if cleaning out the fridge is on my to do list", + "todo_list" + ], + [ + "do i have watering the plants on my to do list", + "todo_list" + ], + [ + "let's go through my to do list items please", + "todo_list" + ], + [ + "use a different accent", + "change_accent" + ], + [ + "try using a different accent", + "change_accent" + ], + [ + "speak in a different accent", + "change_accent" + ], + [ + "change the accent you're speaking in", + "change_accent" + ], + [ + "could you change the accent you're using", + "change_accent" + ], + [ + "would you change your accent to the male british one", + "change_accent" + ], + [ + "i want your accent changed to the male british one", + "change_accent" + ], + [ + "i need for you to change your accent to the male british one", + "change_accent" + ], + [ + "would you please get your accent changed to the male british one", + "change_accent" + ], + [ + "try it with a male voice", + "change_accent" + ], + [ + "could you use a male voice", + "change_accent" + ], + [ + "use a male voice now", + "change_accent" + ], + [ + "use a male voice instead", + "change_accent" + ], + [ + "try a male voice", + "change_accent" + ], + [ + "i would prefer your voice to be male", + "change_accent" + ], + [ + "please use a male voice when speaking", + "change_accent" + ], + [ + "can you switch to the female voice", + "change_accent" + ], + [ + "change to a male voice", + "change_accent" + ], + [ + "please change your accent to a british male", + "change_accent" + ], + [ + "can you change the way you talk to a male british voice", + "change_accent" + ], + [ + "could you talk like a british male", + "change_accent" + ], + [ + "can i change the voice to male", + "change_accent" + ], + [ + "i want to hear the female voice option", + "change_accent" + ], + [ + "is there a way to change the voice to male", + "change_accent" + ], + [ + "i would prefer to hear the female voice", + "change_accent" + ], + [ + "i would prefer to hear you speak like a british male", + "change_accent" + ], + [ + "start speaking in a male british voice", + "change_accent" + ], + [ + "go ahead and switch to the female voice", + "change_accent" + ], + [ + "i shall switch to the male voice", + "change_accent" + ], + [ + "i must to the female voice", + "change_accent" + ], + [ + "please change to the female voice", + "change_accent" + ], + [ + "please change your accent to the male british one", + "change_accent" + ], + [ + "i need you to change your accent to the male british one", + "change_accent" + ], + [ + "i need to to the female voice", + "change_accent" + ], + [ + "i need to switch to the male voice", + "change_accent" + ], + [ + "go ahead and switch to the male voice", + "change_accent" + ], + [ + "you need to change your accent to the male british one", + "change_accent" + ], + [ + "i gotta to the female voice", + "change_accent" + ], + [ + "i wanna switch to the male voice", + "change_accent" + ], + [ + "go ahead and change your accent to the male british one", + "change_accent" + ], + [ + "i must switch to the male voice", + "change_accent" + ], + [ + "i want you to change your accent to the male british one", + "change_accent" + ], + [ + "i wanna change to the female voice", + "change_accent" + ], + [ + "i want to change what accent you use", + "change_accent" + ], + [ + "use a new accent", + "change_accent" + ], + [ + "switch to a different accent", + "change_accent" + ], + [ + "can you use a different accent", + "change_accent" + ], + [ + "let's change your accent", + "change_accent" + ], + [ + "speak in a male voice", + "change_accent" + ], + [ + "can i hear the male voice please", + "change_accent" + ], + [ + "can you change your accent to the male british one", + "change_accent" + ], + [ + "use your male voice", + "change_accent" + ], + [ + "please talk to me in the male british accent", + "change_accent" + ], + [ + "use one of your male voices", + "change_accent" + ], + [ + "can you use the male british accent", + "change_accent" + ], + [ + "speak in a woman's voice", + "change_accent" + ], + [ + "switch over to the male voice mode", + "change_accent" + ], + [ + "go to the female voice", + "change_accent" + ], + [ + "please use your female voice", + "change_accent" + ], + [ + "please change your accent the male british one", + "change_accent" + ], + [ + "make your accent the male british one", + "change_accent" + ], + [ + "switch over to the female voice", + "change_accent" + ], + [ + "use a woman's voice", + "change_accent" + ], + [ + "can you speak like a british dude", + "change_accent" + ], + [ + "do you have the ability to do a male british accent", + "change_accent" + ], + [ + "is it possible for you to speak with a british gent's accent", + "change_accent" + ], + [ + "can i get you to talk like a pouty english guy", + "change_accent" + ], + [ + "if you can do accents, i want to hear you talk like david bowie", + "change_accent" + ], + [ + "do a british male accent only", + "change_accent" + ], + [ + "i want to hear a male british accent", + "change_accent" + ], + [ + "change to a male british accent", + "change_accent" + ], + [ + "switch to british male accent", + "change_accent" + ], + [ + "can you do a british male accent", + "change_accent" + ], + [ + "change accent to male british", + "change_accent" + ], + [ + "set to female voice", + "change_accent" + ], + [ + "please change accent to british male", + "change_accent" + ], + [ + "please set to female voice", + "change_accent" + ], + [ + "use male voice", + "change_accent" + ], + [ + "can you switch to female voice", + "change_accent" + ], + [ + "please use male voice", + "change_accent" + ], + [ + "switch to female voice", + "change_accent" + ], + [ + "can you use male voice", + "change_accent" + ], + [ + "use male voice now", + "change_accent" + ], + [ + "can you make your accent british male", + "change_accent" + ], + [ + "now use male voice", + "change_accent" + ], + [ + "speak as a british male", + "change_accent" + ], + [ + "change accent to british male", + "change_accent" + ], + [ + "change to female voice", + "change_accent" + ], + [ + "use the male voice please", + "change_accent" + ], + [ + "can you swap to male voice", + "change_accent" + ], + [ + "i want to change to male voice", + "change_accent" + ], + [ + "use female voice now instead", + "change_accent" + ], + [ + "please start using female voice", + "change_accent" + ], + [ + "i want to use the female voice now", + "change_accent" + ], + [ + "i prefer female voice now", + "change_accent" + ], + [ + "switch from the male to the female voice", + "change_accent" + ], + [ + "please use male voice instead", + "change_accent" + ], + [ + "switch over from female to the male voice", + "change_accent" + ], + [ + "i need a new accent male british", + "change_accent" + ], + [ + "switch to male british accent", + "change_accent" + ], + [ + "where can i locate my w2 so i can do my taxes", + "w2" + ], + [ + "where is the w-2 form located", + "w2" + ], + [ + "where can i locate my w-2 form", + "w2" + ], + [ + "where can one receive their w-2 form", + "w2" + ], + [ + "what is the location of my w2 that is needed for taxes", + "w2" + ], + [ + "where would my w2 be found so i can do my taxes", + "w2" + ], + [ + "i need to find my w2 so i can do taxes", + "w2" + ], + [ + "where are w-2 forms given", + "w2" + ], + [ + "i require my w2 for taxes and need to locate it", + "w2" + ], + [ + "where do i get the form i need for taxes", + "w2" + ], + [ + "how can i get my year end summary for taxes", + "w2" + ], + [ + "where should i go to get a w2 to do my taxes", + "w2" + ], + [ + "where do i pick up a w2 form", + "w2" + ], + [ + "where can i get a w2 form", + "w2" + ], + [ + "tell me where a w2 is available please", + "w2" + ], + [ + "a w2 form can be gotten from where", + "w2" + ], + [ + "can i get a w2 form online", + "w2" + ], + [ + "help me get a w2 to do my taxes", + "w2" + ], + [ + "what location can i get a w2 from", + "w2" + ], + [ + "where can i get a w2", + "w2" + ], + [ + "a w2 form is obtainable where", + "w2" + ], + [ + "who can send me a w2 so i can complete my taxes", + "w2" + ], + [ + "how can i get my w2 to do my taxes", + "w2" + ], + [ + "where can i pick up my w2 to do my taxes", + "w2" + ], + [ + "where do i get the form that shows my wages for the year for taxes", + "w2" + ], + [ + "can you tell me what the form is employers are supposed to send you for taxes and where i get it", + "w2" + ], + [ + "i've got tax issues and need help obtaining my w2", + "w2" + ], + [ + "i need to do taxes and have to get a w2", + "w2" + ], + [ + "where do i find the irs form that tells me the amount of money i owe them", + "w2" + ], + [ + "where do i get the tax form that i have to report to the irs", + "w2" + ], + [ + "can you locate my w-2", + "w2" + ], + [ + "i would like to know how to find my w-2", + "w2" + ], + [ + "can you help me find my w-2", + "w2" + ], + [ + "hey, anyone seen my w-2", + "w2" + ], + [ + "help - i can't find my w-2", + "w2" + ], + [ + "where is my w-2", + "w2" + ], + [ + "where can i get my w-2", + "w2" + ], + [ + "i need to download my w-2 form", + "w2" + ], + [ + "can you access my w-2", + "w2" + ], + [ + "how can i get a hold of my w-2", + "w2" + ], + [ + "i need to get a hold of my w-2 right now", + "w2" + ], + [ + "where can i get the form i need to do my taxes", + "w2" + ], + [ + "where can i get the form i need to do my taxes, please", + "w2" + ], + [ + "where can i get the employment document that i need to do my taxes, please", + "w2" + ], + [ + "where can i get a w2 form from", + "w2" + ], + [ + "where can i obtain a w2 form", + "w2" + ], + [ + "where can i find a w2 form", + "w2" + ], + [ + "where can i obtain a w2 form from", + "w2" + ], + [ + "where can i get the employment form i need to do my taxes", + "w2" + ], + [ + "where can i get the employment form i need to do my taxes, please", + "w2" + ], + [ + "where is my w2", + "w2" + ], + [ + "where can i find my w2", + "w2" + ], + [ + "where can i find my w2 as i need it for tax reasons", + "w2" + ], + [ + "where do i get my tax papers", + "w2" + ], + [ + "where do i recieve a w2", + "w2" + ], + [ + "how do i get a w2", + "w2" + ], + [ + "is this where i get a w2", + "w2" + ], + [ + "can you tell me where to get a w2", + "w2" + ], + [ + "who has the tax form that shows my wages", + "w2" + ], + [ + "what is that tax form that shows my wages and where do i get it", + "w2" + ], + [ + "where do i locate the form that has my tax information", + "w2" + ], + [ + "who has the tax form that has my wage informaton", + "w2" + ], + [ + "where do i get the tax form that shows my wages", + "w2" + ], + [ + "where's my w-2", + "w2" + ], + [ + "i can't find my w-2", + "w2" + ], + [ + "do you know where my w-2 is", + "w2" + ], + [ + "i'm having trouble locating my w-2", + "w2" + ], + [ + "where can i find my w-2", + "w2" + ], + [ + "provide me assistance on where to go to get my w2 for tax reasons", + "w2" + ], + [ + "i am in need of my w2 for tax reasons; provide me where to get it", + "w2" + ], + [ + "assist me on where to go to get my w2 for tax reasons", + "w2" + ], + [ + "where do i go to get my w2 for tax reasons", + "w2" + ], + [ + "where can i get my w2 from for tax reasons", + "w2" + ], + [ + "i would like to get the forms to file for my w2", + "w2" + ], + [ + "where could i locate a w2 form from", + "w2" + ], + [ + "locate my w-2 form", + "w2" + ], + [ + "where could i find forms to get my w2", + "w2" + ], + [ + "where can i find my tax form to report what i earn", + "w2" + ], + [ + "where do i go to get my w-2", + "w2" + ], + [ + "how do i find my w-2 form", + "w2" + ], + [ + "what is the form i need to report my earnings", + "w2" + ], + [ + "where do i get my w2 form from", + "w2" + ], + [ + "tell me where to get myy w-2 form", + "w2" + ], + [ + "where can i find my w-2 form", + "w2" + ], + [ + "where can i locate a form for my w2", + "w2" + ], + [ + "is my w2 available at the post office", + "w2" + ], + [ + "i need to know where to get a w-2 form", + "w2" + ], + [ + "when will i receive my w2", + "w2" + ], + [ + "can i get my w2 online", + "w2" + ], + [ + "how do i get a w-2", + "w2" + ], + [ + "i need help getting a w-2", + "w2" + ], + [ + "can i get a w-2 from the post office", + "w2" + ], + [ + "can i get my w-2 online", + "w2" + ], + [ + "does my w2 come by mail", + "w2" + ], + [ + "how and where are my w2 forms given", + "w2" + ], + [ + "where can i get my w2 forms from", + "w2" + ], + [ + "from where are w2 forms given", + "w2" + ], + [ + "how do i get a w2 form and from where", + "w2" + ], + [ + "how do i get a personal w2 form", + "w2" + ], + [ + "have i been sent my w-2 in my email", + "w2" + ], + [ + "when should i pay my bill by", + "bill_due" + ], + [ + "when is my car insurance due", + "bill_due" + ], + [ + "when's the gas bill due", + "bill_due" + ], + [ + "when do i pay the utilities", + "bill_due" + ], + [ + "do i pay my rent this week", + "bill_due" + ], + [ + "i need to know when i must pay my car bill", + "bill_due" + ], + [ + "how much is my water bill", + "bill_due" + ], + [ + "is my bill due this week", + "bill_due" + ], + [ + "how much time left to pay my bill", + "bill_due" + ], + [ + "what day is my car insurance due", + "bill_due" + ], + [ + "when's the electric bill due", + "bill_due" + ], + [ + "when's the next phone bill", + "bill_due" + ], + [ + "when is my next car payment", + "bill_due" + ], + [ + "when is too late to pay my cable bill", + "bill_due" + ], + [ + "can you alert me when my phone bill is due", + "bill_due" + ], + [ + "on what day do i pay my car payment", + "bill_due" + ], + [ + "how can i know when my cable bill is due", + "bill_due" + ], + [ + "what day do i have to pay for my capital one card", + "bill_due" + ], + [ + "how long do i have left to pay for my chase credit card", + "bill_due" + ], + [ + "what is the due date of my att bill", + "bill_due" + ], + [ + "when is my xfinity bill due", + "bill_due" + ], + [ + "how many more days before my verizon bill is due", + "bill_due" + ], + [ + "i cant remember when my bill is due", + "bill_due" + ], + [ + "what is the due date of my bill", + "bill_due" + ], + [ + "what day is my bill due", + "bill_due" + ], + [ + "when is my bill due", + "bill_due" + ], + [ + "tell me when my bill will be due", + "bill_due" + ], + [ + "how do i locate when my gas bill is do", + "bill_due" + ], + [ + "i would like to know my electric bills date it needs to be payed", + "bill_due" + ], + [ + "i need to know where to locate when my gas bill is due", + "bill_due" + ], + [ + "can you tell me when my electric bill is due", + "bill_due" + ], + [ + "i need to know the due date for my credit card", + "bill_due" + ], + [ + "where should i look for when my gas bill is due", + "bill_due" + ], + [ + "can you tell me the date my credit card is due", + "bill_due" + ], + [ + "i'd like to find the date that my gas bill is due", + "bill_due" + ], + [ + "how do i know when to pay my gas bill", + "bill_due" + ], + [ + "when do i have to pay my water bill by", + "bill_due" + ], + [ + "when do i have to pay my electric bill by", + "bill_due" + ], + [ + "when do i have to pay my internet bill by", + "bill_due" + ], + [ + "when do i have to pay my gas bill by", + "bill_due" + ], + [ + "tell me when i have to pay my bill", + "bill_due" + ], + [ + "what date do i have to pay my bill", + "bill_due" + ], + [ + "give me the date my bill is due", + "bill_due" + ], + [ + "on what day do i have to pay my nordstrom bill", + "bill_due" + ], + [ + "when is my chase visa due", + "bill_due" + ], + [ + "when do i need to pay my annual payment for auto insurance", + "bill_due" + ], + [ + "what is the exact due date for my mortgage payment", + "bill_due" + ], + [ + "what is the due date for my metronorth monthy pass", + "bill_due" + ], + [ + "can you tell me when my peco energy bill is due this month", + "bill_due" + ], + [ + "please find the exact payment due date for my sprint phone bill", + "bill_due" + ], + [ + "what is the due date on my xfinity internet bill for february", + "bill_due" + ], + [ + "what is the latest date that i can pay my direct tv bill this month", + "bill_due" + ], + [ + "i need the new due date for my pgw gas bill", + "bill_due" + ], + [ + "what time do i have to pay z bill", + "bill_due" + ], + [ + "whats the due date for z bill", + "bill_due" + ], + [ + "how soon before my catering bill is due", + "bill_due" + ], + [ + "how long before my lawn guy bill's due", + "bill_due" + ], + [ + "when's my heater bill due", + "bill_due" + ], + [ + "what date is my water bill due", + "bill_due" + ], + [ + "whats the deadline for amex payment", + "bill_due" + ], + [ + "when is my visa due", + "bill_due" + ], + [ + "when is visa due", + "bill_due" + ], + [ + "do you know when i need to pay my mastercard", + "bill_due" + ], + [ + "what's the due date for my american express payment", + "bill_due" + ], + [ + "when is my mortgage payment due", + "bill_due" + ], + [ + "what's the due date for the credit card", + "bill_due" + ], + [ + "when's the next time i have to pay the insurance", + "bill_due" + ], + [ + "how long do i have to pay the gas bill", + "bill_due" + ], + [ + "when's the rent due", + "bill_due" + ], + [ + "when does the car payment come due", + "bill_due" + ], + [ + "when does the electric bill up", + "bill_due" + ], + [ + "how do i check when my mortgage is next up for payment", + "bill_due" + ], + [ + "when do i owe the state payment for my car tags", + "bill_due" + ], + [ + "when do i owe the rent", + "bill_due" + ], + [ + "do i need to pay my credit card bill already", + "bill_due" + ], + [ + "do you know when my next electric bill is due", + "bill_due" + ], + [ + "where do i find information on when the water bill is due", + "bill_due" + ], + [ + "how do i ascertain when my next insurance payment will be", + "bill_due" + ], + [ + "what do i do to check when my next credit card payment is", + "bill_due" + ], + [ + "when do i need to pay my at&t bill", + "bill_due" + ], + [ + "what is the due date of my at&t bill", + "bill_due" + ], + [ + "is my at&t bill do soon", + "bill_due" + ], + [ + "when is my at&t bill due", + "bill_due" + ], + [ + "what date is my at&t bill due", + "bill_due" + ], + [ + "when's the ac bill due", + "bill_due" + ], + [ + "what day is the z bill due", + "bill_due" + ], + [ + "what's the due date for the renting bill", + "bill_due" + ], + [ + "i want to know when a bill is due", + "bill_due" + ], + [ + "what day is the bill due", + "bill_due" + ], + [ + "i would like to know when the bill is due", + "bill_due" + ], + [ + "what is the due date for a bill", + "bill_due" + ], + [ + "when is the bill due", + "bill_due" + ], + [ + "how do i find when my water bill needs to be paid", + "bill_due" + ], + [ + "when is my water bill due", + "bill_due" + ], + [ + "how do i find when my cable bill is due", + "bill_due" + ], + [ + "when is my electric bill due", + "bill_due" + ], + [ + "when do i need to pay the water bil", + "bill_due" + ], + [ + "how do i find when my medical bill is due", + "bill_due" + ], + [ + "when do i need to pay the cable bill", + "bill_due" + ], + [ + "how do i find when my electric bill is due", + "bill_due" + ], + [ + "can you provide me the calories in the smoothie", + "calories" + ], + [ + "can you tell me the calories for the cheeseburger", + "calories" + ], + [ + "i'd like the calories for this chicken breast", + "calories" + ], + [ + "how many calories in this slice of pizza", + "calories" + ], + [ + "what about the calories for this chicken salad", + "calories" + ], + [ + "how many calories are in a large fry", + "calories" + ], + [ + "a large french fry has how many calories", + "calories" + ], + [ + "what is the calorie content of a scoop of chocolate ice cream", + "calories" + ], + [ + "how many calories in scoop of chocolate ice cream", + "calories" + ], + [ + "tell me how many calories in a medium size apple", + "calories" + ], + [ + "how many calories does a scoop of chocolate ice cream have", + "calories" + ], + [ + "how many calories are in a can of coke", + "calories" + ], + [ + "what's the number of calories in a pepsi", + "calories" + ], + [ + "what is the calorie content of a small bag of lay's potato chips", + "calories" + ], + [ + "how many calories does a kitkat have", + "calories" + ], + [ + "how many calories are there in a scoop of chocolate ice cream", + "calories" + ], + [ + "how many calories does a scoop of chocolate ice cream contain", + "calories" + ], + [ + "what's the expected calories in a cream filled cookie", + "calories" + ], + [ + "what's the amount of calories in a cheesy omelette", + "calories" + ], + [ + "can you tell me the calorie count in a glazed donut", + "calories" + ], + [ + "what's the calorie count for tuna casserole", + "calories" + ], + [ + "how many calories are in waffles", + "calories" + ], + [ + "what's the calorie content for fried eggs", + "calories" + ], + [ + "what's the amount of calories in an cream filled oatmeal cookie", + "calories" + ], + [ + "how many calories are in chocolate cake", + "calories" + ], + [ + "how high in calories is pork", + "calories" + ], + [ + "how many calories are in a honey bun", + "calories" + ], + [ + "what does a sausage sandwich have for calories", + "calories" + ], + [ + "what's the number of calories in a coke", + "calories" + ], + [ + "what are the total calories for two servings of pasta", + "calories" + ], + [ + "how many calories should i plan to be in a donut", + "calories" + ], + [ + "how many calories would i estimate for fettuccine alfredo", + "calories" + ], + [ + "how many calories does a big mac have", + "calories" + ], + [ + "what's the caloric content if you eat roast beef", + "calories" + ], + [ + "how many calories would i consume if i ate a loaded hotdog", + "calories" + ], + [ + "what's the expected calorie load of a peanut butter and jelly sandwich", + "calories" + ], + [ + "what's a big bowl of ice cream contain in calories", + "calories" + ], + [ + "do cheetos have a lot of calories", + "calories" + ], + [ + "what's the calorie content of cheetos", + "calories" + ], + [ + "looks up the calories in cheetos", + "calories" + ], + [ + "calorie count of cheetos", + "calories" + ], + [ + "how many calories do cheetos have", + "calories" + ], + [ + "how many calories are in a cup of white rice", + "calories" + ], + [ + "how many calories are in vanilla ice cream", + "calories" + ], + [ + "one cup of almonds has how many calories", + "calories" + ], + [ + "what's the calorie info for 2 cups of regular chex mix", + "calories" + ], + [ + "what's the caloric content in a bowl of rice crispies with milk", + "calories" + ], + [ + "a bowl of cheerios with milk has how many calories", + "calories" + ], + [ + "how many calories are in a bag of regular doritos", + "calories" + ], + [ + "how many calories are in chocolate ice cream", + "calories" + ], + [ + "2 cups of grapes have how many calories", + "calories" + ], + [ + "how many calories are in spaghetti and meat sauce", + "calories" + ], + [ + "in one cookie, how many calories would i find", + "calories" + ], + [ + "what is the calorie count for one cookie", + "calories" + ], + [ + "if i ate a cookie, how many calories would i be ingesting", + "calories" + ], + [ + "cookies have how many calories", + "calories" + ], + [ + "how many calories are in a cookie", + "calories" + ], + [ + "how many calories in gum", + "calories" + ], + [ + "how many calories in chicken", + "calories" + ], + [ + "how many calories in meatloaf", + "calories" + ], + [ + "how many calories are in chicken breast", + "calories" + ], + [ + "how many calories in peanuts", + "calories" + ], + [ + "what is the total number of calories in a bag of potato chips", + "calories" + ], + [ + "can you tell me the amount of calories i can expect one tuna sandwich to contain", + "calories" + ], + [ + "give me expected number of calories in a breakfast burrito", + "calories" + ], + [ + "can you tell me the number of calories in one serving of whole cashews", + "calories" + ], + [ + "please tell me the total calories a single serving of chocolate ice cream is expected to contain", + "calories" + ], + [ + "i need to know the total calories for a chicken caesar salad", + "calories" + ], + [ + "please tell me how many calories one chocolate bar contains", + "calories" + ], + [ + "what's the average number of calories in one cup of tomato soup", + "calories" + ], + [ + "do you know how many calories are in a single chicken breast", + "calories" + ], + [ + "i need to know the number of calories on average in a handful of pistachios", + "calories" + ], + [ + "what is the caloric value of a cookie", + "calories" + ], + [ + "how many calories are in cookies", + "calories" + ], + [ + "can you tell me how many calories are in cookies", + "calories" + ], + [ + "what is the calorie count in a cookie", + "calories" + ], + [ + "what are the calories in a cookie", + "calories" + ], + [ + "what is the calorie count for muffins", + "calories" + ], + [ + "are there a lot of calories in muffins", + "calories" + ], + [ + "tell me the amount of calories in muffins", + "calories" + ], + [ + "what is the caloric total in these muffins", + "calories" + ], + [ + "what amount of calories are in one muffin", + "calories" + ], + [ + "look up the calories in an apple", + "calories" + ], + [ + "tell me the calorie content of an apple", + "calories" + ], + [ + "what's the caloric content of an apple", + "calories" + ], + [ + "tell me the calorie content for an apple", + "calories" + ], + [ + "i need to know the calorie content in a piece of pepperoni pizza", + "calories" + ], + [ + "how many calories are in an apple", + "calories" + ], + [ + "i want the calorie content for a banana", + "calories" + ], + [ + "tell me the number of calories in a banana", + "calories" + ], + [ + "what is the calorie look like in apples", + "calories" + ], + [ + "what is the calorie going to be if i'm eating cereal", + "calories" + ], + [ + "add up the calories in tacos", + "calories" + ], + [ + "how many calories are in cheerios", + "calories" + ], + [ + "what type of calorie numbers are in onions", + "calories" + ], + [ + "i need to know the calorie count of a bacon cheeseburger", + "calories" + ], + [ + "whats the calorie content of oatmeal", + "calories" + ], + [ + "what is the calorie count of an apple", + "calories" + ], + [ + "how many calories on average are in a hot dog", + "calories" + ], + [ + "how many calories are in a piece of bacon", + "calories" + ], + [ + "let my credit card company know that my card split in half", + "damaged_card" + ], + [ + "how do you report a burned debit card", + "damaged_card" + ], + [ + "my card split in half, how do i report it", + "damaged_card" + ], + [ + "report my burned card to the company", + "damaged_card" + ], + [ + "what do i say when i report a split credit card", + "damaged_card" + ], + [ + "my card was damaged by my cat; can i report that", + "damaged_card" + ], + [ + "i dropped my card in my gasoline and the printing wore off", + "damaged_card" + ], + [ + "i need to report that my dog chewed up my card", + "damaged_card" + ], + [ + "it seems i can't use my card since it has been damaged", + "damaged_card" + ], + [ + "unfortunately, my card is damaged and unusable", + "damaged_card" + ], + [ + "what should i do with an unusable and damaged card", + "damaged_card" + ], + [ + "my card is unusable because it's damaged", + "damaged_card" + ], + [ + "i cracked my card and need a replacement", + "damaged_card" + ], + [ + "my card got melted and i need to report it", + "damaged_card" + ], + [ + "my card got melted and i need to report it, please", + "damaged_card" + ], + [ + "my card got melted in the dryer and i need to report it, please", + "damaged_card" + ], + [ + "my card got damaged and i need to report it", + "damaged_card" + ], + [ + "my card got damaged and i need to report it, please", + "damaged_card" + ], + [ + "my card is damaged so i can not use it", + "damaged_card" + ], + [ + "report the card has been damaged", + "damaged_card" + ], + [ + "i can not use my card, it is damaged", + "damaged_card" + ], + [ + "the card is torn, let's report it", + "damaged_card" + ], + [ + "report that the card has been wrecked", + "damaged_card" + ], + [ + "my card is damaged and no longer function", + "damaged_card" + ], + [ + "my card is damaged and unusable", + "damaged_card" + ], + [ + "my card is wrecked, let's report it", + "damaged_card" + ], + [ + "report the card has been torn", + "damaged_card" + ], + [ + "i can not use my card since it is damaged", + "damaged_card" + ], + [ + "i need to report a bent card", + "damaged_card" + ], + [ + "my card split in half, can i report it", + "damaged_card" + ], + [ + "i cracked my card, order a new one", + "damaged_card" + ], + [ + "report that i split my card", + "damaged_card" + ], + [ + "please make a report that my card is split", + "damaged_card" + ], + [ + "the magnetic strip on my card is scratched, let the card company know", + "damaged_card" + ], + [ + "i cut up the wrong card, please contact the bank and let them know", + "damaged_card" + ], + [ + "i creased my card today, contact the bank", + "damaged_card" + ], + [ + "my card is cracked, please tell the card company", + "damaged_card" + ], + [ + "the dog chewed up my card, will you find out what it takes to get a replacement", + "damaged_card" + ], + [ + "the plastic numbers on my card are falling off", + "damaged_card" + ], + [ + "corner of my credit card is chipped off", + "damaged_card" + ], + [ + "my card got snapped in half", + "damaged_card" + ], + [ + "my card is too scratched and won't read correctly", + "damaged_card" + ], + [ + "the sticker on my card is peeling off", + "damaged_card" + ], + [ + "i can't use my card because it is broken", + "damaged_card" + ], + [ + "my broken card won't work", + "damaged_card" + ], + [ + "i can't use my damaged card", + "damaged_card" + ], + [ + "my damage card is not working", + "damaged_card" + ], + [ + "my damage card will not work", + "damaged_card" + ], + [ + "i don't know who to notify that i ran my credit card over with the lawn mower", + "damaged_card" + ], + [ + "i ran my credit card over with the lawn mower and need to replace it", + "damaged_card" + ], + [ + "i need to replace my credit card because i ran it over with the lawn mower", + "damaged_card" + ], + [ + "my card is partially damaged how do i report this", + "damaged_card" + ], + [ + "my card is not working and i need to let them know", + "damaged_card" + ], + [ + "my card broke in half and i need to report this", + "damaged_card" + ], + [ + "the chip on my card is damaged and i need a new one", + "damaged_card" + ], + [ + "my card's magnetic strip is not working and i want to notify them", + "damaged_card" + ], + [ + "my card has a deep crease through the middle so i would like to report it", + "damaged_card" + ], + [ + "how do i report my card if it got cut in half", + "damaged_card" + ], + [ + "my card is cracked and i want to report it", + "damaged_card" + ], + [ + "my card is too scratched up and i need to report it", + "damaged_card" + ], + [ + "i need to report my bent card", + "damaged_card" + ], + [ + "report to the company that i damaged my card", + "damaged_card" + ], + [ + "call the card company and ask them to replace my card", + "damaged_card" + ], + [ + "i damaged the card; can you replace the card", + "damaged_card" + ], + [ + "i demagnetized my card and want to report it", + "damaged_card" + ], + [ + "i want to report a broken card", + "damaged_card" + ], + [ + "my phone was too close to my card and demagnetized it, how can i report this", + "damaged_card" + ], + [ + "my card has been erased and i need to report it", + "damaged_card" + ], + [ + "i need a report form for my damaged, demagnetized card", + "damaged_card" + ], + [ + "how to report bent credit card", + "damaged_card" + ], + [ + "i can't use my broken card", + "damaged_card" + ], + [ + "i broke my card", + "damaged_card" + ], + [ + "how to tell the company that my credit card melted", + "damaged_card" + ], + [ + "my card is broken", + "damaged_card" + ], + [ + "my card isn't working", + "damaged_card" + ], + [ + "who do i report to if my credit card snaps", + "damaged_card" + ], + [ + "i accidentally bent my card, what do i do", + "damaged_card" + ], + [ + "my card doesn't work anymore", + "damaged_card" + ], + [ + "how do i report a melted credit card", + "damaged_card" + ], + [ + "my card needs replaced, i accidentally scraped it", + "damaged_card" + ], + [ + "i'd like to report my card as damaged, it's bent", + "damaged_card" + ], + [ + "i bent my card, can you report it to my bank", + "damaged_card" + ], + [ + "my card got scratched badly, can you tell my bank to send a replacement", + "damaged_card" + ], + [ + "my card snapped, can you tell my bank to send a replacement", + "damaged_card" + ], + [ + "i accidentally put my credit card in the shredder", + "damaged_card" + ], + [ + "my credit card fell out of my back pocket and got flushed down the toilet", + "damaged_card" + ], + [ + "my credit card snapped in half while i was fiddling with it", + "damaged_card" + ], + [ + "my dog ate my credit card and ruined it", + "damaged_card" + ], + [ + "i was using my credit card as a cutting board and accidentally sliced it in half", + "damaged_card" + ], + [ + "can you assist me with reporting that the atm nicked my card", + "damaged_card" + ], + [ + "i need to report a new card please the atm hurt mine", + "damaged_card" + ], + [ + "how report that scratched my card", + "damaged_card" + ], + [ + "the atm chewed up my card can i get a new one", + "damaged_card" + ], + [ + "an atm ate my card, how do i report it", + "damaged_card" + ], + [ + "my card fell out of my wallet and i ran over it so it does not work", + "damaged_card" + ], + [ + "my card fell in the toilet and now the chip does not work", + "damaged_card" + ], + [ + "the magnetic strip on my card is scratched up pretty badly from overuse can i get a new one", + "damaged_card" + ], + [ + "i need a new card because my dog chewed on it and now it does not work", + "damaged_card" + ], + [ + "i want to report my damaged card i accidentally cut it up thinking it was my expired card", + "damaged_card" + ], + [ + "i cracked my rewards card can i get a different one", + "damaged_card" + ], + [ + "do people like the donuts at tgi", + "restaurant_reviews" + ], + [ + "are the donuts at tgi well reviewed", + "restaurant_reviews" + ], + [ + "how are the donuts reviews at tgi", + "restaurant_reviews" + ], + [ + "what are the comments on the donuts at tgi", + "restaurant_reviews" + ], + [ + "are people recommending the donuts at tgi", + "restaurant_reviews" + ], + [ + "does outback steakhouse have good reviews", + "restaurant_reviews" + ], + [ + "does pizza hut have good reviews", + "restaurant_reviews" + ], + [ + "does have good reviews have great reviews", + "restaurant_reviews" + ], + [ + "does red robin have good reviews", + "restaurant_reviews" + ], + [ + "so does outback steakhouse have good reviews", + "restaurant_reviews" + ], + [ + "how good are the ratings for pizza hut", + "restaurant_reviews" + ], + [ + "how good are the ratings for red robin", + "restaurant_reviews" + ], + [ + "how good are the ratings for outback", + "restaurant_reviews" + ], + [ + "how good are the ratings for papa john's", + "restaurant_reviews" + ], + [ + "how good are the ratings for the olive garden", + "restaurant_reviews" + ], + [ + "what are people saying about chipotle", + "restaurant_reviews" + ], + [ + "tell me the reviews for chipotle", + "restaurant_reviews" + ], + [ + "do people like chipotle", + "restaurant_reviews" + ], + [ + "give me the reviews for chipotle", + "restaurant_reviews" + ], + [ + "what are the ratings for chipotle", + "restaurant_reviews" + ], + [ + "how good are the ratings for chic-fil-a", + "restaurant_reviews" + ], + [ + "how good are the ratings for olive garden", + "restaurant_reviews" + ], + [ + "how good are the ratings for longhorn steakhouse", + "restaurant_reviews" + ], + [ + "does chic-fil-a have good reviews", + "restaurant_reviews" + ], + [ + "how good are the ratings for outback steakhouse", + "restaurant_reviews" + ], + [ + "how good are the ratings for applebees", + "restaurant_reviews" + ], + [ + "does wendy's have good reviews", + "restaurant_reviews" + ], + [ + "does mcdonalds have good reviews", + "restaurant_reviews" + ], + [ + "does longhorn steakhouse have good reviews", + "restaurant_reviews" + ], + [ + "what reviews does miyabi have", + "restaurant_reviews" + ], + [ + "does applebee's have good reviews", + "restaurant_reviews" + ], + [ + "how are the reviews for cracker barrel", + "restaurant_reviews" + ], + [ + "are the reviews for mi casita good", + "restaurant_reviews" + ], + [ + "are the reviews good or bad for burger king", + "restaurant_reviews" + ], + [ + "tell me the ratings for the local denny's", + "restaurant_reviews" + ], + [ + "does the bleu olive have decent reviews", + "restaurant_reviews" + ], + [ + "how are the reviews for la loconda", + "restaurant_reviews" + ], + [ + "how many stars does la vignette have", + "restaurant_reviews" + ], + [ + "does the mediterranean grille have good reviews", + "restaurant_reviews" + ], + [ + "have you heard how the enchiladas are at jose's taco shop", + "restaurant_reviews" + ], + [ + "how does yelp report the enchiladas are at jose's taco shop", + "restaurant_reviews" + ], + [ + "does ihop have good reviews", + "restaurant_reviews" + ], + [ + "can you tell me if eating at outback's any good", + "restaurant_reviews" + ], + [ + "what do people say about village inn", + "restaurant_reviews" + ], + [ + "are the pancakes at ihop any good", + "restaurant_reviews" + ], + [ + "how are the reviews for spaghetti at the olive garden", + "restaurant_reviews" + ], + [ + "how's the lo mein rated at hun lee's", + "restaurant_reviews" + ], + [ + "how's the sausage pizza at pizza hut", + "restaurant_reviews" + ], + [ + "is mcdonalds a good place to eat", + "restaurant_reviews" + ], + [ + "what's the reviews have to say about burger king", + "restaurant_reviews" + ], + [ + "how are the burgers at carl jr's", + "restaurant_reviews" + ], + [ + "are the chili's reviews any good", + "restaurant_reviews" + ], + [ + "are the reviews for applebee's good", + "restaurant_reviews" + ], + [ + "i want to know how the mcdonalds reviews are", + "restaurant_reviews" + ], + [ + "tell me about the reviews for chilis", + "restaurant_reviews" + ], + [ + "let me know how the outback steakhouse reviews are", + "restaurant_reviews" + ], + [ + "how good are the ratings for per se", + "restaurant_reviews" + ], + [ + "what are the reviews like for khin khao", + "restaurant_reviews" + ], + [ + "how good are the ratings for the french laundry", + "restaurant_reviews" + ], + [ + "how good are the ratings for chez panisse", + "restaurant_reviews" + ], + [ + "how good are the ratings for peter luger steakhouse", + "restaurant_reviews" + ], + [ + "what are the reviews like for mission chinese", + "restaurant_reviews" + ], + [ + "what are the reviews like for zazie", + "restaurant_reviews" + ], + [ + "what are the reviews like for bar tartine", + "restaurant_reviews" + ], + [ + "what are the reviews like for la camelia", + "restaurant_reviews" + ], + [ + "how are people liking the sushi at yakamoto", + "restaurant_reviews" + ], + [ + "is there any opinions on the sushi at yakamoto", + "restaurant_reviews" + ], + [ + "is the sushi well-received at yakamoto", + "restaurant_reviews" + ], + [ + "at yakamoto how is their sushi", + "restaurant_reviews" + ], + [ + "what is the sushi like at yakamoto", + "restaurant_reviews" + ], + [ + "what are the reviews like at minnis", + "restaurant_reviews" + ], + [ + "does buffalo wild wings have good reviews", + "restaurant_reviews" + ], + [ + "tell me the reviews for bjs", + "restaurant_reviews" + ], + [ + "what are the ratings about at pho king", + "restaurant_reviews" + ], + [ + "how are the ratings like for buffalo wild wings", + "restaurant_reviews" + ], + [ + "read some of the reviews for wing stop", + "restaurant_reviews" + ], + [ + "does applebees have alright reviews", + "restaurant_reviews" + ], + [ + "does bjs get good reviews", + "restaurant_reviews" + ], + [ + "what are the ratings like for chilis", + "restaurant_reviews" + ], + [ + "what do the ratings say about korean bbq", + "restaurant_reviews" + ], + [ + "what do the ratings say for black bear diner", + "restaurant_reviews" + ], + [ + "what are the reviews for mountain mikes", + "restaurant_reviews" + ], + [ + "i need to hear reviews for panda express", + "restaurant_reviews" + ], + [ + "what are the reviews like for black bear dinner", + "restaurant_reviews" + ], + [ + "does chillis have good reviews", + "restaurant_reviews" + ], + [ + "do people like the food at wendy's", + "restaurant_reviews" + ], + [ + "are there any positive reviews for wendy's", + "restaurant_reviews" + ], + [ + "what kind of reviews does wendy's have", + "restaurant_reviews" + ], + [ + "are there any negative reviews for wendy's", + "restaurant_reviews" + ], + [ + "what do people think about the sandwiches at wendy's", + "restaurant_reviews" + ], + [ + "look up the ratings for olive garden", + "restaurant_reviews" + ], + [ + "pull up the ratings for macaroni grill", + "restaurant_reviews" + ], + [ + "tell me about the reviews for olive garden", + "restaurant_reviews" + ], + [ + "are the reviews for chevy's any good", + "restaurant_reviews" + ], + [ + "has ruby tuesday got good reviews", + "restaurant_reviews" + ], + [ + "does chili's have good reviews", + "restaurant_reviews" + ], + [ + "tell me how good ihop's ratings are", + "restaurant_reviews" + ], + [ + "fill me in on the reviews for ruby tuesday", + "restaurant_reviews" + ], + [ + "does ihop have positive reviews", + "restaurant_reviews" + ], + [ + "what are reviews for ihop like", + "restaurant_reviews" + ], + [ + "where can i see the routing number for bmo", + "routing" + ], + [ + "i need to know what my wife's account's routing number is", + "routing" + ], + [ + "how do i locate my routing number for tax reasons", + "routing" + ], + [ + "where can i look up x's routing number", + "routing" + ], + [ + "please give my routing number for my national account", + "routing" + ], + [ + "where do i go to find my routing number for southpoint", + "routing" + ], + [ + "tell me my first national account's routing number", + "routing" + ], + [ + "how can i find my routing number for el dorado", + "routing" + ], + [ + "i need you to tell my what my routing number is for my first county account", + "routing" + ], + [ + "i need the routing number for my woodlawn account", + "routing" + ], + [ + "where do i find the routing number for sunflower bank", + "routing" + ], + [ + "can i get the routing number for sunflower bank", + "routing" + ], + [ + "where do i find the routing number for nfcu", + "routing" + ], + [ + "what's bank of america's routing number", + "routing" + ], + [ + "i need to know nfcu's routing number", + "routing" + ], + [ + "can you tell me the routing number of wells fargo", + "routing" + ], + [ + "where do i find the routing number for great western bank", + "routing" + ], + [ + "how do i find axos bank's routing number", + "routing" + ], + [ + "ai, routing number for my b of a checking account", + "routing" + ], + [ + "ai, what is my chase checking routing number", + "routing" + ], + [ + "ai, routing number for my wells fargo checking", + "routing" + ], + [ + "ai, what is the routing number for my citibank savings account", + "routing" + ], + [ + "ai, what is my chase routing number", + "routing" + ], + [ + "what's my routing number from chase", + "routing" + ], + [ + "can you help me find my routing number from wells fargo", + "routing" + ], + [ + "could you tell me what my routing number from first republic is", + "routing" + ], + [ + "do you know where i can find my suntrust routing number", + "routing" + ], + [ + "how can i find my routing number from bank of america", + "routing" + ], + [ + "what routing number do i use to send an international wire with citibank", + "routing" + ], + [ + "search for my routing number for my checking account with wells fargo", + "routing" + ], + [ + "what is my pnc account routing number", + "routing" + ], + [ + "can you tell me the routing number for my chase checking", + "routing" + ], + [ + "please find my routing number for my citizens' bank account", + "routing" + ], + [ + "i need to know my bank of america account routing number", + "routing" + ], + [ + "i need to find the correct td bank routing number for my pennsylvania account", + "routing" + ], + [ + "what is the correct routing number for my citizens bank account, pennsylvania", + "routing" + ], + [ + "please find the routing number for chase bank accounts opened in new york", + "routing" + ], + [ + "can you tell me the routing number for bank of america for domestic accounts", + "routing" + ], + [ + "please tell me what my bank routing number is", + "routing" + ], + [ + "i must learn my routing number", + "routing" + ], + [ + "what's the routing number for my money market account", + "routing" + ], + [ + "tell me my bank routing number", + "routing" + ], + [ + "where do i find the routing number for wells fargo", + "routing" + ], + [ + "i wanna know my bank of america routing number", + "routing" + ], + [ + "tell me my bank of america routing number", + "routing" + ], + [ + "how do i get the routing number for chase", + "routing" + ], + [ + "what's the routing number for my savings account", + "routing" + ], + [ + "let me know my bank of america routing number", + "routing" + ], + [ + "what's the routing number for my checking account", + "routing" + ], + [ + "let me know my routing number", + "routing" + ], + [ + "what's the routing number for my current savings", + "routing" + ], + [ + "i need to know my routing number", + "routing" + ], + [ + "what's the routing number for my current checking", + "routing" + ], + [ + "i must know my bank of america routing number", + "routing" + ], + [ + "show me the routing number for chase", + "routing" + ], + [ + "i need to know my bank of america routing number", + "routing" + ], + [ + "what is my routing number for home federal account", + "routing" + ], + [ + "show me my routing number for account finishing in 29309", + "routing" + ], + [ + "for my westport account, what is the routing number", + "routing" + ], + [ + "what is the routing number for royal", + "routing" + ], + [ + "display the routing number for account huntington", + "routing" + ], + [ + "provide me the routing number for my fed account", + "routing" + ], + [ + "give me the routing number for my paragon account", + "routing" + ], + [ + "let me know what the routing number for my civista account is", + "routing" + ], + [ + "inform me of the routing number for my amerifirst account", + "routing" + ], + [ + "tell me the routing number for my wf account", + "routing" + ], + [ + "routing number for american river", + "routing" + ], + [ + "what is the routing number of cadence", + "routing" + ], + [ + "what's my pioneer routing number", + "routing" + ], + [ + "can you tell me my routing number for summit", + "routing" + ], + [ + "what is my routing number for marine bank", + "routing" + ], + [ + "can you tell me my routing number", + "routing" + ], + [ + "what is my routing number", + "routing" + ], + [ + "i need my routing number", + "routing" + ], + [ + "i want to know my routing number please", + "routing" + ], + [ + "where do i find the routing number for usaa", + "routing" + ], + [ + "what's the routing number for my navy federal account", + "routing" + ], + [ + "what's the routing number for my chase account", + "routing" + ], + [ + "what's the routing number for my bank of america account", + "routing" + ], + [ + "where do i find the routing number for chase", + "routing" + ], + [ + "where do i find the routing number for bank of america", + "routing" + ], + [ + "where do i find the routing number for bank of the west", + "routing" + ], + [ + "where do i find the routing number for navy federal", + "routing" + ], + [ + "what's the routing number for my bank of the west account", + "routing" + ], + [ + "what's the routing number for my usaa account", + "routing" + ], + [ + "what's my bank routing number", + "routing" + ], + [ + "can i get the routing number for my boa account", + "routing" + ], + [ + "i need to know the routing number for my wells fargo account", + "routing" + ], + [ + "what is the routing number for my wells fargo account", + "routing" + ], + [ + "please tell me the routing number for my wells fargo account", + "routing" + ], + [ + "please tell me my bank of america routing number", + "routing" + ], + [ + "i need to know the routing number for my checking", + "routing" + ], + [ + "could you tell me the routing number for my chase checking account", + "routing" + ], + [ + "what is my routing number on my checking account", + "routing" + ], + [ + "i need the routing number to my chase checking account", + "routing" + ], + [ + "what is the routing number on my first merit account", + "routing" + ], + [ + "can you help me find the routing number", + "routing" + ], + [ + "will you tell me my routing number", + "routing" + ], + [ + "would you tell me my routing number", + "routing" + ], + [ + "i need to know chase banks routing #", + "routing" + ], + [ + "what type of pet do you have", + "do_you_have_pets" + ], + [ + "share some information about your pets with me", + "do_you_have_pets" + ], + [ + "do you have any type of pet", + "do_you_have_pets" + ], + [ + "do you own pets", + "do_you_have_pets" + ], + [ + "what are the pets that you have in your possession", + "do_you_have_pets" + ], + [ + "describe your types of pets", + "do_you_have_pets" + ], + [ + "how would you explain the pets you own", + "do_you_have_pets" + ], + [ + "what are the pet types you own", + "do_you_have_pets" + ], + [ + "do you have any pet animals", + "do_you_have_pets" + ], + [ + "any pets in your household", + "do_you_have_pets" + ], + [ + "do you have any domestic animals", + "do_you_have_pets" + ], + [ + "which animals do you have at home", + "do_you_have_pets" + ], + [ + "tell me all about the creatures you own", + "do_you_have_pets" + ], + [ + "specifically, what pets do you own", + "do_you_have_pets" + ], + [ + "if you had to choose, would you choose a cat or a dog", + "do_you_have_pets" + ], + [ + "what is your favorite, cats or dogs", + "do_you_have_pets" + ], + [ + "what kind of person are you, a cat or dog", + "do_you_have_pets" + ], + [ + "which food do you give your pets", + "do_you_have_pets" + ], + [ + "how old are your pets", + "do_you_have_pets" + ], + [ + "the pets are all good", + "do_you_have_pets" + ], + [ + "what is the colour of your pets", + "do_you_have_pets" + ], + [ + "what is your favourite pet", + "do_you_have_pets" + ], + [ + "do you have many kinds of pets at your house", + "do_you_have_pets" + ], + [ + "what kind of pets live with you", + "do_you_have_pets" + ], + [ + "how many different pets do you have", + "do_you_have_pets" + ], + [ + "do you have different kinds of pets", + "do_you_have_pets" + ], + [ + "what sort of pets do you have", + "do_you_have_pets" + ], + [ + "tell me about your pets", + "do_you_have_pets" + ], + [ + "what sort of person are you, a cat or dog person", + "do_you_have_pets" + ], + [ + "tell me if you like cats or dogs", + "do_you_have_pets" + ], + [ + "let me know about your pets", + "do_you_have_pets" + ], + [ + "can you tell me the types of pets you have", + "do_you_have_pets" + ], + [ + "i'd like to learn more about your pets", + "do_you_have_pets" + ], + [ + "so what pets do you have", + "do_you_have_pets" + ], + [ + "would you say you like cats or dogs", + "do_you_have_pets" + ], + [ + "would you say you're a person who likes cats or dogs more", + "do_you_have_pets" + ], + [ + "cats or dogs", + "do_you_have_pets" + ], + [ + "i want to know what kinds of pets you have", + "do_you_have_pets" + ], + [ + "would you let me know if you are a cat or dog person", + "do_you_have_pets" + ], + [ + "let me know what kinds of pets you have", + "do_you_have_pets" + ], + [ + "would you tell me what kind of pets you have", + "do_you_have_pets" + ], + [ + "i am needing to know what kind of pets you have", + "do_you_have_pets" + ], + [ + "tell me what kind of pets you have", + "do_you_have_pets" + ], + [ + "i want to know if you are a cat or dog person", + "do_you_have_pets" + ], + [ + "let me know if you are a cat or dog person", + "do_you_have_pets" + ], + [ + "i need to know whether you are a cat or dog person", + "do_you_have_pets" + ], + [ + "tell me whether you are a cat or dog person", + "do_you_have_pets" + ], + [ + "you have what kind of pets", + "do_you_have_pets" + ], + [ + "you have pets of what kind", + "do_you_have_pets" + ], + [ + "pets you have what kind", + "do_you_have_pets" + ], + [ + "on pets, what kind do you have", + "do_you_have_pets" + ], + [ + "kind of what pets do you have", + "do_you_have_pets" + ], + [ + "imagine you had to pick a preferred animal between cats or dogs, which will you pick", + "do_you_have_pets" + ], + [ + "why types of animals do you currently have as pets", + "do_you_have_pets" + ], + [ + "to what animal species do your pets belong", + "do_you_have_pets" + ], + [ + "what species of pets do you own", + "do_you_have_pets" + ], + [ + "what sort of animals are your pets", + "do_you_have_pets" + ], + [ + "would you say you like dogs more or cats more", + "do_you_have_pets" + ], + [ + "are you currently a pet owner", + "do_you_have_pets" + ], + [ + "have you any pets", + "do_you_have_pets" + ], + [ + "would you say that you are now a pet owner", + "do_you_have_pets" + ], + [ + "think about if you could only say one or the other, which animal do you see yourself choosing, cats or dogs", + "do_you_have_pets" + ], + [ + "which do you prefer, cats or dogs", + "do_you_have_pets" + ], + [ + "what pets do you currently own", + "do_you_have_pets" + ], + [ + "if you were getting a pet, would you get a cat or would you get a dog", + "do_you_have_pets" + ], + [ + "which pets do you own now", + "do_you_have_pets" + ], + [ + "so are cats and dogs liked by you", + "do_you_have_pets" + ], + [ + "are you a cat person", + "do_you_have_pets" + ], + [ + "so do you like cats or dogs", + "do_you_have_pets" + ], + [ + "i gotta know what kinds of pets you have", + "do_you_have_pets" + ], + [ + "tell me what kinds of pets you have", + "do_you_have_pets" + ], + [ + "do you like cat or dogs", + "do_you_have_pets" + ], + [ + "i need to know what kinds of pets you have", + "do_you_have_pets" + ], + [ + "i wanna know what kinds of pets you have", + "do_you_have_pets" + ], + [ + "do you like cats or dogs", + "do_you_have_pets" + ], + [ + "i must know what kinds of pets you have", + "do_you_have_pets" + ], + [ + "if you had to choose, cat or dog", + "do_you_have_pets" + ], + [ + "would you like to live with a cat or a dog", + "do_you_have_pets" + ], + [ + "which domestic animal do you prefer, dog or cat", + "do_you_have_pets" + ], + [ + "what is your favorite pet, a cat or a dog", + "do_you_have_pets" + ], + [ + "do you have pets", + "do_you_have_pets" + ], + [ + "do you keep any pets", + "do_you_have_pets" + ], + [ + "what are all your pets", + "do_you_have_pets" + ], + [ + "what are your pets", + "do_you_have_pets" + ], + [ + "how many pets do you have", + "do_you_have_pets" + ], + [ + "what animals do you have", + "do_you_have_pets" + ], + [ + "do you own any pet", + "do_you_have_pets" + ], + [ + "what kind of pets do you own", + "do_you_have_pets" + ], + [ + "what are the pets that you take care of", + "do_you_have_pets" + ], + [ + "do you own any pet at all", + "do_you_have_pets" + ], + [ + "what are the pets that you raise", + "do_you_have_pets" + ], + [ + "do you have any pet at all", + "do_you_have_pets" + ], + [ + "can you tell me about the pets you have", + "do_you_have_pets" + ], + [ + "can you tell me if you have any pets", + "do_you_have_pets" + ], + [ + "i am curious about whether you have pets", + "do_you_have_pets" + ], + [ + "i want to know whether or not you are a pet owner", + "do_you_have_pets" + ], + [ + "what sorts of pets do you own", + "do_you_have_pets" + ], + [ + "i want to hear about your pets", + "do_you_have_pets" + ], + [ + "are you a pet owner", + "do_you_have_pets" + ], + [ + "what types of pets do you own", + "do_you_have_pets" + ], + [ + "i want to know if there is meeting room available at 8", + "schedule_meeting" + ], + [ + "meeting room availability from 8:00 please", + "schedule_meeting" + ], + [ + "are there any meetings room available between 8:00 and 9:00 am", + "schedule_meeting" + ], + [ + "i want to check if there is any meeting room available between 8:00 and 10:00 am", + "schedule_meeting" + ], + [ + "tell me how do i schedule a meeting", + "schedule_meeting" + ], + [ + "show me how do i schedule a meeting", + "schedule_meeting" + ], + [ + "i want to know how do i schedule a meeting", + "schedule_meeting" + ], + [ + "meeting room availability at 8:00 please", + "schedule_meeting" + ], + [ + "i want to find out how do i schedule a meeting", + "schedule_meeting" + ], + [ + "do you know how do i schedule a meeting", + "schedule_meeting" + ], + [ + "can you schedule a meeting with steve at the office", + "schedule_meeting" + ], + [ + "can you schedule a meeting with jessica at the office, please", + "schedule_meeting" + ], + [ + "can you schedule a meeting with james at the office, please", + "schedule_meeting" + ], + [ + "how do i create a meeting", + "schedule_meeting" + ], + [ + "how can i create a meeting", + "schedule_meeting" + ], + [ + "how can i schedule a meeting", + "schedule_meeting" + ], + [ + "can you schedule a meeting with steve at the office, please", + "schedule_meeting" + ], + [ + "can you schedule a meeting with james at the office", + "schedule_meeting" + ], + [ + "do you have a meeting room open from noon until 2:00 pm", + "schedule_meeting" + ], + [ + "i'd like to schedule a meeting room from 1:00 pm until 2:00 pm", + "schedule_meeting" + ], + [ + "can i book a meeting room from 2:00 pm to 3:00 pm", + "schedule_meeting" + ], + [ + "are there any meeting rooms free from 10:00 am until 10:30 am", + "schedule_meeting" + ], + [ + "what is your availability for conference rooms between one and two today", + "schedule_meeting" + ], + [ + "i want to schedule a meeting with tom for 6pm", + "schedule_meeting" + ], + [ + "add a new meeting with tom for 6pm", + "schedule_meeting" + ], + [ + "how can you schedule a meeting for me", + "schedule_meeting" + ], + [ + "can you schedule a meeting for me", + "schedule_meeting" + ], + [ + "schedule a meeting with tom for 6pm", + "schedule_meeting" + ], + [ + "i need to schedule a meeting", + "schedule_meeting" + ], + [ + "schedule a meeting for me", + "schedule_meeting" + ], + [ + "add a meeting with tom at 6pm", + "schedule_meeting" + ], + [ + "i need to set a meeting with tom at 6pm", + "schedule_meeting" + ], + [ + "would you schedule a meeting with carrie and lisa please", + "schedule_meeting" + ], + [ + "i need you to schedule a meeting with carrie and lisa", + "schedule_meeting" + ], + [ + "schedule a meeting with carrie and lisa", + "schedule_meeting" + ], + [ + "i want you to schedule a meeting with carrie and lisa", + "schedule_meeting" + ], + [ + "could you please schedule a meeting with carrie and lisa", + "schedule_meeting" + ], + [ + "i want a meeting to be scheduled", + "schedule_meeting" + ], + [ + "tell me how i can schedule a meeting", + "schedule_meeting" + ], + [ + "help me schedule a meeting", + "schedule_meeting" + ], + [ + "how does scheduling a meeting work", + "schedule_meeting" + ], + [ + "help me get a meeting set up", + "schedule_meeting" + ], + [ + "i need a meeting scheduled with bob for 7:00am on 9/11", + "schedule_meeting" + ], + [ + "get me a meeting with bill for 5:30pm tomorrow", + "schedule_meeting" + ], + [ + "i have to meet with sam at 9:00am in two days", + "schedule_meeting" + ], + [ + "set a meeting with tom for 5:30 tomorrow", + "schedule_meeting" + ], + [ + "i'm having trouble scheduling a meeting", + "schedule_meeting" + ], + [ + "put a meeting on my schedule with pam for 3:00pm on february 11th", + "schedule_meeting" + ], + [ + "are there meeting rooms available between 9-10", + "schedule_meeting" + ], + [ + "are there meeting rooms available between 7-9", + "schedule_meeting" + ], + [ + "are there meeting rooms available between 11-12", + "schedule_meeting" + ], + [ + "are there meeting rooms available between 4-8", + "schedule_meeting" + ], + [ + "are there meeting rooms available between 10-11", + "schedule_meeting" + ], + [ + "can you put in a meeting for the blue room on friday", + "schedule_meeting" + ], + [ + "can you sign me up for a meeting in the blue room on friday", + "schedule_meeting" + ], + [ + "i want to know if there are meeting rooms available between 9:00 am and 11:00 am", + "schedule_meeting" + ], + [ + "please help me schedule a meeting with john love at 9 am tomorrow", + "schedule_meeting" + ], + [ + "between 9:00 am and 11:00 am, are there meeting rooms available", + "schedule_meeting" + ], + [ + "could you schedule a meeting with john smith at 1 pm tomorrow", + "schedule_meeting" + ], + [ + "i need you to schedule a meeting with bob brown at noon the day after tomorrow", + "schedule_meeting" + ], + [ + "can see you see if there are meeting rooms available between 9:00 am and 11:00 am", + "schedule_meeting" + ], + [ + "see if you can schedule a meeting with don southerland tomorrow at noon", + "schedule_meeting" + ], + [ + "i need meeting rooms between 9:00 am and 11:00 am, are there any available", + "schedule_meeting" + ], + [ + "can you schedule a meeting at 10 am tomorrow with john smith", + "schedule_meeting" + ], + [ + "please tell me if there are meeting rooms available between 9:00 am and 11:00 am", + "schedule_meeting" + ], + [ + "can you schedule a meeting room for interviews on thursday", + "schedule_meeting" + ], + [ + "can you schedule a meeting with damon for 1", + "schedule_meeting" + ], + [ + "can you schedule a meeting with john for 12", + "schedule_meeting" + ], + [ + "can you schedule a meeting with steve for 5", + "schedule_meeting" + ], + [ + "can you schedule a meeting with george for 4", + "schedule_meeting" + ], + [ + "can you schedule a meeting with matt for 3", + "schedule_meeting" + ], + [ + "a meeting needs to be schedule and i need to know how", + "schedule_meeting" + ], + [ + "show me how to schedule a meeting", + "schedule_meeting" + ], + [ + "tell me how to schedule a meeting", + "schedule_meeting" + ], + [ + "schedule a meeting room for friday at 3pm", + "schedule_meeting" + ], + [ + "at noon, schedule a meeting with saul", + "schedule_meeting" + ], + [ + "i'd like to pencil in a meeting with seth at 11am", + "schedule_meeting" + ], + [ + "what's the meeting room availability between noon and 2", + "schedule_meeting" + ], + [ + "set up a meeting with frank at 2pm", + "schedule_meeting" + ], + [ + "are there any open meeting rooms between noon and 1", + "schedule_meeting" + ], + [ + "book me a meeting room for 12pm on february 28th", + "schedule_meeting" + ], + [ + "are any meeting rooms open between 9 and 10", + "schedule_meeting" + ], + [ + "is there an open meeting room between 2 and 4", + "schedule_meeting" + ], + [ + "can you hook me up with a meeting room on saturday morning at 10am", + "schedule_meeting" + ], + [ + "i need to schedule a meeting with mae at 5pm", + "schedule_meeting" + ], + [ + "i'm going to need a meeting room on 9am on tuesday", + "schedule_meeting" + ], + [ + "i need a meeting room at 2pm on friday", + "schedule_meeting" + ], + [ + "i'm going to need to meet with scott at 1pm", + "schedule_meeting" + ], + [ + "is it possible to book a meeting room between 10 and 11", + "schedule_meeting" + ], + [ + "would you be able to help me with a meeting room on wednesday at 3pm", + "schedule_meeting" + ], + [ + "during afternoon is there a meeting room to use", + "schedule_meeting" + ], + [ + "is there a meeting room available between one and two", + "schedule_meeting" + ], + [ + "what is the availability of meeting rooms during the afternoon", + "schedule_meeting" + ], + [ + "how many rooms are available between 2 and 3", + "schedule_meeting" + ], + [ + "check if meeting rooms are free from 6 to 7", + "schedule_meeting" + ], + [ + "please find out if rooms are free from 1 to 2", + "schedule_meeting" + ], + [ + "are any rooms free from 12 to 1", + "schedule_meeting" + ], + [ + "are there rooms available between 5 and 530", + "schedule_meeting" + ], + [ + "if i want to schedule a meeting, how do i do it", + "schedule_meeting" + ], + [ + "how is a meeting scheduled", + "schedule_meeting" + ], + [ + "what kind of gasoline can this car take", + "gas_type" + ], + [ + "is there a certain type of gas i need to use", + "gas_type" + ], + [ + "i need to know what kind of gas i can use on this car", + "gas_type" + ], + [ + "is any type of gas ok on this car", + "gas_type" + ], + [ + "is there a certain type of gas i need to use for this car", + "gas_type" + ], + [ + "i want to know the type of gasoline for this car", + "gas_type" + ], + [ + "tell me the gas type for that car", + "gas_type" + ], + [ + "tell me what type of gas this car uses", + "gas_type" + ], + [ + "tell me what kind of gas this car uses", + "gas_type" + ], + [ + "what type of fuel does my car need", + "gas_type" + ], + [ + "what type of gas does the car use", + "gas_type" + ], + [ + "what type of fuel do i need to use to fill the car up with", + "gas_type" + ], + [ + "what type of gas do i need to use in this car", + "gas_type" + ], + [ + "what type of gas does this car need", + "gas_type" + ], + [ + "what kind of fuel do i need", + "gas_type" + ], + [ + "what kind of gas will i need to put in this car", + "gas_type" + ], + [ + "i need to know what kind of fuel this car needs", + "gas_type" + ], + [ + "what kind of gas should i use to fill the car", + "gas_type" + ], + [ + "what kind of petrol goes in the tank", + "gas_type" + ], + [ + "can i use any fuel in my car", + "gas_type" + ], + [ + "what kind of fuel should i use to fill the car", + "gas_type" + ], + [ + "tell me what type of fuel i need to use for this car", + "gas_type" + ], + [ + "what fuel do i need for my car", + "gas_type" + ], + [ + "what kind of gas should i put in this car", + "gas_type" + ], + [ + "what gas do i need to fill the car up with", + "gas_type" + ], + [ + "does my car need specific fuel", + "gas_type" + ], + [ + "which type of gas do i need to put in my car", + "gas_type" + ], + [ + "what sort of gas does the car need", + "gas_type" + ], + [ + "tell me what cas is needed for this car", + "gas_type" + ], + [ + "i need to know what kind of gas to put in this car", + "gas_type" + ], + [ + "i would like to know the kind of gas that this car uses", + "gas_type" + ], + [ + "tell me the gas i need to fill this car up with", + "gas_type" + ], + [ + "what gas does the car need", + "gas_type" + ], + [ + "what gas does that car currently use", + "gas_type" + ], + [ + "what gas does the car use", + "gas_type" + ], + [ + "i wanna know the gas i need to fill this car up with", + "gas_type" + ], + [ + "what kind of gas does my car currently need", + "gas_type" + ], + [ + "what gas is needed for the car", + "gas_type" + ], + [ + "i wanna know the gad i need to fill this car up with", + "gas_type" + ], + [ + "please inform me the gas i need to fill this car up with", + "gas_type" + ], + [ + "what gas does my car use", + "gas_type" + ], + [ + "so what kind of gas does my car need", + "gas_type" + ], + [ + "i wish to know the gas i need to fill this car up with", + "gas_type" + ], + [ + "what type of gas does my car use", + "gas_type" + ], + [ + "what kind of gas does my car use", + "gas_type" + ], + [ + "what type of gas am i allowed to put in this car", + "gas_type" + ], + [ + "what kind of gas should go in this car", + "gas_type" + ], + [ + "what kind of gas goes in this car", + "gas_type" + ], + [ + "what type of gas does this car take", + "gas_type" + ], + [ + "what kind of gas does my vehicle take", + "gas_type" + ], + [ + "what sort of fuel does this car take", + "gas_type" + ], + [ + "what type of fuel is used for this vehicle", + "gas_type" + ], + [ + "what sort of fuel should i use for this car", + "gas_type" + ], + [ + "tell me the kind of fuel that my vehicle operates on", + "gas_type" + ], + [ + "what kind of fuel does my vehicle run on", + "gas_type" + ], + [ + "what sort of gas should i get for my car", + "gas_type" + ], + [ + "tell me the right kind of gas for this car", + "gas_type" + ], + [ + "look up the kind of fuel i use in my car", + "gas_type" + ], + [ + "what sort of fuel do i need for my car", + "gas_type" + ], + [ + "can you check what fuel type to use with this car", + "gas_type" + ], + [ + "what kind of gas does this car take", + "gas_type" + ], + [ + "look up the type of gas needed for this vehicle", + "gas_type" + ], + [ + "tell me the fuel type used by my car", + "gas_type" + ], + [ + "what kind of gas is needed for this car", + "gas_type" + ], + [ + "does it matter what kind of gas i fill up my car with", + "gas_type" + ], + [ + "should i use premium gas with this car", + "gas_type" + ], + [ + "will using a different type of gas matter for this car", + "gas_type" + ], + [ + "will this car run on the cheaper gas", + "gas_type" + ], + [ + "can i put normal unleaded in this car", + "gas_type" + ], + [ + "is unleaded ok or should i use premium", + "gas_type" + ], + [ + "what percentage gas do i need", + "gas_type" + ], + [ + "what kind of gas does this car use", + "gas_type" + ], + [ + "what type of fuel should i use in my car", + "gas_type" + ], + [ + "which fuel does my car take", + "gas_type" + ], + [ + "what kind of fuel goes in my engine", + "gas_type" + ], + [ + "does this car take regular gas", + "gas_type" + ], + [ + "tell me the gasoline type for this car", + "gas_type" + ], + [ + "what type of gas do i need to put in this car", + "gas_type" + ], + [ + "what type of gas do i need for this car", + "gas_type" + ], + [ + "does this care use premium gas", + "gas_type" + ], + [ + "is regular gas ok or does this car need something else", + "gas_type" + ], + [ + "which gas grade does this car take", + "gas_type" + ], + [ + "which gas type does this car take", + "gas_type" + ], + [ + "what's the correct fuel type for my car", + "gas_type" + ], + [ + "does this car need high octane gas", + "gas_type" + ], + [ + "does this take regular unleaded", + "gas_type" + ], + [ + "is there a minimum gas grade this car needs", + "gas_type" + ], + [ + "tell me the fuel my car takes", + "gas_type" + ], + [ + "my car uses what type of fuel", + "gas_type" + ], + [ + "tell me the type of fuel my car takes", + "gas_type" + ], + [ + "tell me what type of fuel my car uses", + "gas_type" + ], + [ + "what type of fuel does my car use", + "gas_type" + ], + [ + "what kind of gas do i put in my car", + "gas_type" + ], + [ + "what gasoline do i need to buy", + "gas_type" + ], + [ + "what kind of gas does my car take", + "gas_type" + ], + [ + "what kind of gas does this car need", + "gas_type" + ], + [ + "what kind of gas should i put into this car", + "gas_type" + ], + [ + "what gas does this car need", + "gas_type" + ], + [ + "what gas should i fill it up with", + "gas_type" + ], + [ + "what do i need to gas up this car", + "gas_type" + ], + [ + "do i need a socket converter if i'm going to mexico", + "plug_type" + ], + [ + "does england have a different plug type and if so what is it", + "plug_type" + ], + [ + "is there a conversion plug if you travel to australia", + "plug_type" + ], + [ + "what kind of plug type do they use in russia", + "plug_type" + ], + [ + "what type of plug do i need to bring if i visit japan", + "plug_type" + ], + [ + "what type of plug do they use in mexico", + "plug_type" + ], + [ + "when you go to germany, do you need a special converter for your plugs", + "plug_type" + ], + [ + "do visitors to japan need to use a socket converter", + "plug_type" + ], + [ + "do you need a special outlet converter in sweden", + "plug_type" + ], + [ + "do i need a power adapter in mexico", + "plug_type" + ], + [ + "do they use special outlets in australia", + "plug_type" + ], + [ + "do they use any special type of plug in spain that you need a converter for", + "plug_type" + ], + [ + "do i need to have a socket converter in canada", + "plug_type" + ], + [ + "is a socket converter required if i travel to russia", + "plug_type" + ], + [ + "do they use weird plugs in australia where i'd need some kind of socket converter", + "plug_type" + ], + [ + "is there an outlet plug adapter", + "plug_type" + ], + [ + "can you tell me what kind of outlet plug there is over there", + "plug_type" + ], + [ + "how do i know what the outlets are like", + "plug_type" + ], + [ + "i'm going out of country, what type of outlet plug do i need", + "plug_type" + ], + [ + "what if i have the wrong plug", + "plug_type" + ], + [ + "do i need a socket converter if i'm going to be in ohio", + "plug_type" + ], + [ + "in osaka, do i need a plug converter for my electronics", + "plug_type" + ], + [ + "will i need a plug converter for my electronics in amman", + "plug_type" + ], + [ + "what plug types are there in cuba", + "plug_type" + ], + [ + "in chile, what kind of plugs are used", + "plug_type" + ], + [ + "what type of plugs do they use in london", + "plug_type" + ], + [ + "if i visit cairo will i need a plug converter", + "plug_type" + ], + [ + "to charge my phone in india will i need a plug converter", + "plug_type" + ], + [ + "what kind of plugs will i need when i'm in ecuador", + "plug_type" + ], + [ + "will i need to use a plug converter in el salvador", + "plug_type" + ], + [ + "what plugs are used in spain", + "plug_type" + ], + [ + "what type of plug does the country use", + "plug_type" + ], + [ + "give me the plug type for the country", + "plug_type" + ], + [ + "what kind of plug does the country use", + "plug_type" + ], + [ + "i have to know what plug that country uses", + "plug_type" + ], + [ + "inform me as to the plug type of the country", + "plug_type" + ], + [ + "which type of plugs do they use in scotland", + "plug_type" + ], + [ + "are socket converters needed in lisbon", + "plug_type" + ], + [ + "will i need a socket converter when i go to france", + "plug_type" + ], + [ + "is a socket converter required in india", + "plug_type" + ], + [ + "what kind of plug does my hair dryer use in south korea", + "plug_type" + ], + [ + "if i go to dublin is a socket converter needed", + "plug_type" + ], + [ + "what type of plugs are used in cambodia", + "plug_type" + ], + [ + "what kind of plug do i need for my razor in ireland", + "plug_type" + ], + [ + "when i go to dubai will i need a socket converter", + "plug_type" + ], + [ + "when i go to mexico, what kind of plugs do i need", + "plug_type" + ], + [ + "what kind of plug converter is needed in c", + "plug_type" + ], + [ + "what kind of outlets does havana have", + "plug_type" + ], + [ + "do i need a plug converter in doha", + "plug_type" + ], + [ + "is a plug converter required for haiti", + "plug_type" + ], + [ + "do i need to get a plug converter for athens", + "plug_type" + ], + [ + "do i need a socket converter if i'm going to be in russia", + "plug_type" + ], + [ + "do i need a plug converter when i visit russia", + "plug_type" + ], + [ + "do i need a socket converter if i'm going to be in china", + "plug_type" + ], + [ + "do i need a socket converter if i'm going to be in uruguay", + "plug_type" + ], + [ + "do i need a plug converter when i visit belgium", + "plug_type" + ], + [ + "what plug type does russia use", + "plug_type" + ], + [ + "what plug type does greece use", + "plug_type" + ], + [ + "do i need a socket converter if i'm going to be in germany", + "plug_type" + ], + [ + "what plug type does spain use", + "plug_type" + ], + [ + "what plug type is used in spain", + "plug_type" + ], + [ + "do i need a socket converter if i'm going to be in france", + "plug_type" + ], + [ + "tell me the plug type that is used in scotland", + "plug_type" + ], + [ + "should i bring a converter to barcelona", + "plug_type" + ], + [ + "do i need a converter in barcelona", + "plug_type" + ], + [ + "are barcelona plugs compatible", + "plug_type" + ], + [ + "will my plugs work in barcelona", + "plug_type" + ], + [ + "are the plugs different in barcelona", + "plug_type" + ], + [ + "what kind of outlets do they use in z", + "plug_type" + ], + [ + "what kind of electrical outlets do they use in z", + "plug_type" + ], + [ + "what kind of electrical plugs do they uze in z", + "plug_type" + ], + [ + "what kind of hertz outlets do they use in z", + "plug_type" + ], + [ + "do i need a socket converter in england", + "plug_type" + ], + [ + "are socket converters necessary in england", + "plug_type" + ], + [ + "should i bring my socket converter while traveling to england", + "plug_type" + ], + [ + "should i bring my socket converter to england", + "plug_type" + ], + [ + "does england require socket converters", + "plug_type" + ], + [ + "should i buy a specific plug type when in china", + "plug_type" + ], + [ + "would i need to buy a plug converter when in rome", + "plug_type" + ], + [ + "do i really need a plug converter when in london", + "plug_type" + ], + [ + "what type of plug do i need when in rome", + "plug_type" + ], + [ + "would it be smart to get a plug converter when i visit israel", + "plug_type" + ], + [ + "what do the plugs look like in japan", + "plug_type" + ], + [ + "should i buy a plug converter if i am traveling to egypt", + "plug_type" + ], + [ + "does australia have different plug sizes", + "plug_type" + ], + [ + "what are those european plugs called", + "plug_type" + ], + [ + "should i purchase a new plug converter when in france", + "plug_type" + ], + [ + "when i visit thailand do i need a plug converter", + "plug_type" + ], + [ + "can i use the plug i use at home when traveling in south america", + "plug_type" + ], + [ + "is a plug converter necessary in mexico", + "plug_type" + ], + [ + "when in europe would i be able to use a regular plug", + "plug_type" + ], + [ + "can i use an ordinary plug in scotland", + "plug_type" + ], + [ + "what is the plug type in france", + "plug_type" + ], + [ + "what plug type would i use in japan", + "plug_type" + ], + [ + "do i need a plug converter when i visit france", + "plug_type" + ], + [ + "do i need a plug converter when i visit china", + "plug_type" + ], + [ + "do i need a socket converter if i'm going to be in sweden", + "plug_type" + ], + [ + "do i need a socket converter if i'm going to be in eithiopia", + "plug_type" + ], + [ + "do i need a socket converter if i'm going to be in hong kong", + "plug_type" + ], + [ + "what plug type should i use in england", + "plug_type" + ], + [ + "tell me the status of my tires and when i need to replace them", + "tire_change" + ], + [ + "how many more miles can i drive before changing my tires", + "tire_change" + ], + [ + "how many miles can i drive before changing my tires", + "tire_change" + ], + [ + "when will my tires need to be replaced", + "tire_change" + ], + [ + "how is the tread on my tires", + "tire_change" + ], + [ + "when should i replace my tires next if i last replaced them on july 15th", + "tire_change" + ], + [ + "when are my tires due to be changed", + "tire_change" + ], + [ + "what date should i get my tires changed", + "tire_change" + ], + [ + "my tires need to be changed when", + "tire_change" + ], + [ + "how often do tires need changing", + "tire_change" + ], + [ + "when should i try to change my tires", + "tire_change" + ], + [ + "when is it imperative that i get my tires changed", + "tire_change" + ], + [ + "when do my tires need some changing", + "tire_change" + ], + [ + "when do my tires need changing", + "tire_change" + ], + [ + "when do i have to get my tires changed", + "tire_change" + ], + [ + "when should i replace my tires next if i last replaced them on the 1st", + "tire_change" + ], + [ + "tell when should i get my tires changed next", + "tire_change" + ], + [ + "tell me when should i get my tires changed next", + "tire_change" + ], + [ + "i need to know when should i get my tires changed next", + "tire_change" + ], + [ + "let me know when should i get my tires changed next", + "tire_change" + ], + [ + "when shall i get my tires changed", + "tire_change" + ], + [ + "when do i need to get my tires changed", + "tire_change" + ], + [ + "when must i get my tires changed", + "tire_change" + ], + [ + "i wanna know when should i get my tires changed next", + "tire_change" + ], + [ + "when am i due for a tire change", + "tire_change" + ], + [ + "do i need new tires if i just got them replaced on january 2017", + "tire_change" + ], + [ + "how many times a year should i change my tires", + "tire_change" + ], + [ + "do i need replacement tires if my last purchase was in june 2015", + "tire_change" + ], + [ + "if i bought new tires on may 27th, should i still need new ones", + "tire_change" + ], + [ + "would i need new tires if my last purchase was in may of 2018", + "tire_change" + ], + [ + "would you say i need new tires if i last bought them on the 24th", + "tire_change" + ], + [ + "do i need to change any of my tires", + "tire_change" + ], + [ + "i got my new tires a month ago, when should i replace them", + "tire_change" + ], + [ + "when should i get new tires i just replaced them", + "tire_change" + ], + [ + "i purchased new tires yesterday, should i buy new ones", + "tire_change" + ], + [ + "how soon should i replace my tires from yesterday", + "tire_change" + ], + [ + "i replaced my tires yesterday, when should i get new ones", + "tire_change" + ], + [ + "can you please let me know when next my tires are due to be changed", + "tire_change" + ], + [ + "please confirm the next time i should get the tires on my car replaced", + "tire_change" + ], + [ + "when is it recommended that i change my tires next", + "tire_change" + ], + [ + "how long until i should have my tires replaced", + "tire_change" + ], + [ + "when should i get new tires i last replaced them four years ago", + "tire_change" + ], + [ + "how many miles do i drive before i have to get new tires i replaced them four years ago", + "tire_change" + ], + [ + "how low should the tread be on my tires to replace them i bought new tires four years ago", + "tire_change" + ], + [ + "when should i get my tires changed again", + "tire_change" + ], + [ + "when do my tires need to be changed again", + "tire_change" + ], + [ + "when will i need to change my tires again", + "tire_change" + ], + [ + "when do i need to change my tires again", + "tire_change" + ], + [ + "when should my tires be changed next", + "tire_change" + ], + [ + "i replaced my tires on may 2, so when should i replace them next", + "tire_change" + ], + [ + "if i replaced my tires on labor day, when should i next replace them", + "tire_change" + ], + [ + "when should i have my tires replaced if i replaced them on the first of march", + "tire_change" + ], + [ + "if i replaced my tires on christmas eve, when will i need to replace them again", + "tire_change" + ], + [ + "when will i need to replace my tires if i last replaced them on december 20", + "tire_change" + ], + [ + "how long can i go before i need to change my tires", + "tire_change" + ], + [ + "when should i go in and have my tires changed", + "tire_change" + ], + [ + "how much time do i have before i have to change my tires", + "tire_change" + ], + [ + "when should i get new tires", + "tire_change" + ], + [ + "when ought i get my tires changed next", + "tire_change" + ], + [ + "are my tires due to be changed", + "tire_change" + ], + [ + "are my tires due to be changed soon", + "tire_change" + ], + [ + "how long until i have to replace my tires", + "tire_change" + ], + [ + "how much longer until i have to change my tires", + "tire_change" + ], + [ + "when's the next time i should change my tires", + "tire_change" + ], + [ + "when do i take my car in for a tire change", + "tire_change" + ], + [ + "how long until i need to change my tires", + "tire_change" + ], + [ + "how many miles until i change my tires", + "tire_change" + ], + [ + "when are my tires next due for a change", + "tire_change" + ], + [ + "how often do you change your tires", + "tire_change" + ], + [ + "how long do tires last for", + "tire_change" + ], + [ + "how many miles can i drive before i need to change my tires", + "tire_change" + ], + [ + "what signs should i look for to know if i should change my tires", + "tire_change" + ], + [ + "is there a way to tell if i need new tires", + "tire_change" + ], + [ + "when should i replace my tires next, if i replaced them on january 15, 2018", + "tire_change" + ], + [ + "when should i replace my tires if i replaced them last year", + "tire_change" + ], + [ + "how do i know when to change my tires", + "tire_change" + ], + [ + "tell me how i can tell if my tires need to be changed", + "tire_change" + ], + [ + "is it time for new tires", + "tire_change" + ], + [ + "do i need new tires", + "tire_change" + ], + [ + "tell me when i need to replace my tires, if i replaced them on october 1, 2017", + "tire_change" + ], + [ + "do i need to replace my tires if i replaced my tires in january", + "tire_change" + ], + [ + "i replaced my tires in december, when should i replace them again", + "tire_change" + ], + [ + "how often should i replace my tires sense i replaced them on 2/21/17", + "tire_change" + ], + [ + "i replaced my tires last year when should i replace my tires again", + "tire_change" + ], + [ + "when do you think i should replace my tires because i replaced them on 12/21/17", + "tire_change" + ], + [ + "how long before i need to replace my tires after i replaced them on 2/24/18", + "tire_change" + ], + [ + "when should i replace my tires sense i last replaced them on 3/21/17", + "tire_change" + ], + [ + "when is the right time to change my tires", + "tire_change" + ], + [ + "is it time to change my tires", + "tire_change" + ], + [ + "when do i need to change my tires", + "tire_change" + ], + [ + "do my tires need to be changed", + "tire_change" + ], + [ + "should i change my tires", + "tire_change" + ], + [ + "when will my tires need changed", + "tire_change" + ], + [ + "how many miles before i need my tires changed", + "tire_change" + ], + [ + "is there a specific date when i should get my tires changed", + "tire_change" + ], + [ + "can you tell me when my tires should get changed", + "tire_change" + ], + [ + "is there a time when i should get my tires changed", + "tire_change" + ], + [ + "would you tell me when i should replace my tires next if i last replaced them on june 2", + "tire_change" + ], + [ + "help me and let me know when i should replace my tires next if i last replaced them on june 2", + "tire_change" + ], + [ + "i need to know when i should replace my tires next if i last replaced them on june 2", + "tire_change" + ], + [ + "how many pesos can i get for one dollar", + "exchange_rate" + ], + [ + "what is the current going rate for exchanging dollars for pesos", + "exchange_rate" + ], + [ + "tell me the exchange rate between dollars and pesos", + "exchange_rate" + ], + [ + "let me know what the exchange rate between dollars and pesos is", + "exchange_rate" + ], + [ + "what's the exchange rate between dollars and pesos", + "exchange_rate" + ], + [ + "whats dollars won in 15", + "exchange_rate" + ], + [ + "what's dollars yen in 10", + "exchange_rate" + ], + [ + "whats pesos australian dollars in 20", + "exchange_rate" + ], + [ + "whats rupees dollars in 30", + "exchange_rate" + ], + [ + "whats euros kroner in 25", + "exchange_rate" + ], + [ + "how many lira can i get for 250 dollars", + "exchange_rate" + ], + [ + "what is the exchange rate in pesos for 100 dollars", + "exchange_rate" + ], + [ + "how many dollars can i exchange for 25 euros", + "exchange_rate" + ], + [ + "how many dollars can i exchange for 75 euros", + "exchange_rate" + ], + [ + "what is the equal number of dollars i can exchange for 50 pesos", + "exchange_rate" + ], + [ + "tell me the exchange rate between rubles and dollars", + "exchange_rate" + ], + [ + "i wanna know five dollars in yen and rubles", + "exchange_rate" + ], + [ + "what's the currency conversion between rubles and yen", + "exchange_rate" + ], + [ + "how many dollars can i exchange for 10 yen", + "exchange_rate" + ], + [ + "i wanna know the exchange rate between yen and dollars", + "exchange_rate" + ], + [ + "how many dollars can i exchange for 10000 rubles", + "exchange_rate" + ], + [ + "what is 5 in yen and rubles", + "exchange_rate" + ], + [ + "how many dollars can i exchange for 5000 rubles", + "exchange_rate" + ], + [ + "i need to know five dollars in yen and rubles", + "exchange_rate" + ], + [ + "how many dollars can i exchange for 10000 yen", + "exchange_rate" + ], + [ + "i gotta know the exchange rate between yen and rubles", + "exchange_rate" + ], + [ + "what's the currency conversion between rubles and dollars", + "exchange_rate" + ], + [ + "what's the currency conversion between usd and yen", + "exchange_rate" + ], + [ + "what's the currency conversion between usd and pounds", + "exchange_rate" + ], + [ + "i would love to know the exchange rate between rubles and pounds", + "exchange_rate" + ], + [ + "tell me five dollars in yen and rubles", + "exchange_rate" + ], + [ + "i must know five dollars in yen and rubles", + "exchange_rate" + ], + [ + "let me know the exchange rate between dollars and rubles", + "exchange_rate" + ], + [ + "how many dollars can i exchange for 100000 yen", + "exchange_rate" + ], + [ + "what's the currency conversion between rubles and pounds", + "exchange_rate" + ], + [ + "what is the exchange rate between usd and british pounds", + "exchange_rate" + ], + [ + "usd to yen is what right now", + "exchange_rate" + ], + [ + "what is the exchange rate between british pounds and yen", + "exchange_rate" + ], + [ + "usd to the euro exchanges at what right now", + "exchange_rate" + ], + [ + "what is the exchange rate between usd and the euro", + "exchange_rate" + ], + [ + "how much can i expect to receive if i trade in 6 yens", + "exchange_rate" + ], + [ + "what is the amount of dollars i get if i trade in 6 yens", + "exchange_rate" + ], + [ + "what is the maximum dollars i can get for 6 yens", + "exchange_rate" + ], + [ + "what is the quantity of dollars i receive for trading 6 yens", + "exchange_rate" + ], + [ + "how much dollars do i receive if i trade in 6 yens", + "exchange_rate" + ], + [ + "how many pesos in one dollar us", + "exchange_rate" + ], + [ + "how much is twenty pounds sterling in us dollars", + "exchange_rate" + ], + [ + "what is the the exchange rate for us dollars to euros", + "exchange_rate" + ], + [ + "can you tell me the exchange rate for yen to euros", + "exchange_rate" + ], + [ + "what is the exchange rate from pounds sterling to us dollars", + "exchange_rate" + ], + [ + "how many pesos equals 500 dollars", + "exchange_rate" + ], + [ + "tell me how many pesos equal 500 dollars", + "exchange_rate" + ], + [ + "what is the conversion for 500 dollars to pesos", + "exchange_rate" + ], + [ + "how much is 500 dollars in pesos", + "exchange_rate" + ], + [ + "500 dollars equals what in pesos", + "exchange_rate" + ], + [ + "how does 10 pounds convert to euros", + "exchange_rate" + ], + [ + "how many canadian dollars can i get for 5 us dollars", + "exchange_rate" + ], + [ + "how many euros can i exchange for 5 us dollars", + "exchange_rate" + ], + [ + "what is the exchange to yen if i have 100 us dollars", + "exchange_rate" + ], + [ + "how many us dollars can i get for 20 euros", + "exchange_rate" + ], + [ + "can you tell me today's rate for cad to usd", + "exchange_rate" + ], + [ + "how much cad can i get with my one usd", + "exchange_rate" + ], + [ + "is the dollar strong against the yen today", + "exchange_rate" + ], + [ + "tell me the exchange rate of dollars to yen", + "exchange_rate" + ], + [ + "what is one dollar worth in mexico", + "exchange_rate" + ], + [ + "i need to know the conversion for dollars to pesos", + "exchange_rate" + ], + [ + "can you tell me dollars to franks", + "exchange_rate" + ], + [ + "i would like to know the usd to aud conversion rate", + "exchange_rate" + ], + [ + "i need to know the dollar to peso conversion", + "exchange_rate" + ], + [ + "us dollars to uk", + "exchange_rate" + ], + [ + "exchange rate between mexico and us", + "exchange_rate" + ], + [ + "how many dollars is one mexican peso", + "exchange_rate" + ], + [ + "dollar to pesos exchange rate", + "exchange_rate" + ], + [ + "exchange rate to go from dollar to yen", + "exchange_rate" + ], + [ + "us and mexico exchange rate", + "exchange_rate" + ], + [ + "what is 2 francs in euros", + "exchange_rate" + ], + [ + "what's 10 pounds in dollars", + "exchange_rate" + ], + [ + "what is 56 dollars in yen", + "exchange_rate" + ], + [ + "what's 11 yen in pounds", + "exchange_rate" + ], + [ + "what's 10 euros in dollars", + "exchange_rate" + ], + [ + "how many swedish kroner do i get for a dollar", + "exchange_rate" + ], + [ + "how much is 10 us dollars in canadian dollars", + "exchange_rate" + ], + [ + "what is 50 dollars in euros", + "exchange_rate" + ], + [ + "what is the exchange rate for canadian dollars to us dollars", + "exchange_rate" + ], + [ + "what is the current exchange rate for the dollar and the yen", + "exchange_rate" + ], + [ + "if i have 10 us dollars, how many pounds sterling is that", + "exchange_rate" + ], + [ + "if i have 20,000 yen, how much is that in usd", + "exchange_rate" + ], + [ + "what's 50 euro in dollars", + "exchange_rate" + ], + [ + "how much is the euro in dollars", + "exchange_rate" + ], + [ + "what is the current exchange rate of yen to lira", + "exchange_rate" + ], + [ + "convert krugerrands to saudi riyal", + "exchange_rate" + ], + [ + "tell me the currency conversion rate from kurus to euros", + "exchange_rate" + ], + [ + "i need the exchange rate between pounds and us dollars", + "exchange_rate" + ], + [ + "what is the exchange rate between rubles and us dollars", + "exchange_rate" + ], + [ + "how many dollars can i exchange for 200 pounds", + "exchange_rate" + ], + [ + "how many euros can i exchange for 200 yen", + "exchange_rate" + ], + [ + "how many canadian dollars can i exchange for 200 yen", + "exchange_rate" + ], + [ + "how many dollars can i exchange for 200 yen", + "exchange_rate" + ], + [ + "how many dollars can i exchange for 200 euros", + "exchange_rate" + ], + [ + "what is the yen worth in terms of the peso", + "exchange_rate" + ], + [ + "when is the upcoming holiday, please", + "next_holiday" + ], + [ + "when is the upcoming holiday", + "next_holiday" + ], + [ + "what day is our next free day", + "next_holiday" + ], + [ + "when is the next scheduled holiday", + "next_holiday" + ], + [ + "when is the next scheduled holiday, please", + "next_holiday" + ], + [ + "when is our next free day", + "next_holiday" + ], + [ + "when is our next free day, please", + "next_holiday" + ], + [ + "what day is our next free day, please", + "next_holiday" + ], + [ + "what day is our next free day on the calendar, please", + "next_holiday" + ], + [ + "when is the next holiday, please", + "next_holiday" + ], + [ + "are there any holidays this month", + "next_holiday" + ], + [ + "when is the next day i have off", + "next_holiday" + ], + [ + "how many more days until my next paid day off", + "next_holiday" + ], + [ + "which holiday is next in line", + "next_holiday" + ], + [ + "i need to know how long until my next vacation day", + "next_holiday" + ], + [ + "is there a holiday next week", + "next_holiday" + ], + [ + "how many days until i am off", + "next_holiday" + ], + [ + "when is my next vacation day", + "next_holiday" + ], + [ + "what's the time period till our next day off", + "next_holiday" + ], + [ + "how much time till the next day off", + "next_holiday" + ], + [ + "how much longer till the next day off", + "next_holiday" + ], + [ + "how much time till the next time off", + "next_holiday" + ], + [ + "how many days till we have off again", + "next_holiday" + ], + [ + "when's the next time i get a day off", + "next_holiday" + ], + [ + "when is the next scheduled day off", + "next_holiday" + ], + [ + "what's the next day i am scheduled off", + "next_holiday" + ], + [ + "what's the closest holiday after today", + "next_holiday" + ], + [ + "do i have a day off coming up soon", + "next_holiday" + ], + [ + "what is the next holiday on the calendar", + "next_holiday" + ], + [ + "how many days until my next day off", + "next_holiday" + ], + [ + "what holiday comes next", + "next_holiday" + ], + [ + "when will i get the next holiday with pay", + "next_holiday" + ], + [ + "when is the next time off for a holiday here", + "next_holiday" + ], + [ + "check when the next day is i can go fishing will be", + "next_holiday" + ], + [ + "when is the next office holiday", + "next_holiday" + ], + [ + "when does my current job have the next official paid holiday", + "next_holiday" + ], + [ + "what's the next scheduled holiday at this job", + "next_holiday" + ], + [ + "when will we next get to stay home from work", + "next_holiday" + ], + [ + "when's the next federally recognized holiday", + "next_holiday" + ], + [ + "when's the next time my job'll give me a day to myself", + "next_holiday" + ], + [ + "when does this place let us have a holiday next", + "next_holiday" + ], + [ + "let me know when my next day off is", + "next_holiday" + ], + [ + "can you tell me when our next day off is", + "next_holiday" + ], + [ + "when do i get a day off", + "next_holiday" + ], + [ + "give me the info of when our next day off is", + "next_holiday" + ], + [ + "show me my next day off", + "next_holiday" + ], + [ + "how many more weeks until the next holiday", + "next_holiday" + ], + [ + "which holiday is next", + "next_holiday" + ], + [ + "how many more days until the next holiday", + "next_holiday" + ], + [ + "how soon until the next holiday", + "next_holiday" + ], + [ + "tell me when i will next have the day off", + "next_holiday" + ], + [ + "tell me when the next holiday arrives", + "next_holiday" + ], + [ + "tell me when the next day off will be", + "next_holiday" + ], + [ + "please look up the next holiday for me", + "next_holiday" + ], + [ + "i need to know when i will next have the day off", + "next_holiday" + ], + [ + "find out for me when the next holiday will be", + "next_holiday" + ], + [ + "look up when our next day off will be", + "next_holiday" + ], + [ + "i need to know when the next holiday is", + "next_holiday" + ], + [ + "when can i expect my next day off", + "next_holiday" + ], + [ + "can you tell me what the next holiday is", + "next_holiday" + ], + [ + "do you know the date of my next day off", + "next_holiday" + ], + [ + "please tell me what the next holiday is", + "next_holiday" + ], + [ + "i need to know when the next holiday will be", + "next_holiday" + ], + [ + "i need to know when my next day off is", + "next_holiday" + ], + [ + "what is the date of the next holiday", + "next_holiday" + ], + [ + "how soon is my next day off", + "next_holiday" + ], + [ + "tell me when my next day off is", + "next_holiday" + ], + [ + "how long until my next day off", + "next_holiday" + ], + [ + "when will we have another day off", + "next_holiday" + ], + [ + "what is my next day off", + "next_holiday" + ], + [ + "whats the next day that i am off", + "next_holiday" + ], + [ + "how many days until the next holiday arrives", + "next_holiday" + ], + [ + "what day am i off next", + "next_holiday" + ], + [ + "how much longer until my next day off", + "next_holiday" + ], + [ + "when is my next day off", + "next_holiday" + ], + [ + "when will i be off again", + "next_holiday" + ], + [ + "to what extent until the following day away from work", + "next_holiday" + ], + [ + "to what extent until the following three day weekend", + "next_holiday" + ], + [ + "to what extent until the following free day", + "next_holiday" + ], + [ + "what is the next holiday", + "next_holiday" + ], + [ + "tell me what holiday is comming up next", + "next_holiday" + ], + [ + "are there any holiday's comming up", + "next_holiday" + ], + [ + "what holiday's are comming up next", + "next_holiday" + ], + [ + "when can i expect the next holiday here", + "next_holiday" + ], + [ + "is the next day off coming up", + "next_holiday" + ], + [ + "when's the next day off coming up", + "next_holiday" + ], + [ + "how long before the next day off is here", + "next_holiday" + ], + [ + "when is the next day off", + "next_holiday" + ], + [ + "when will the day off be", + "next_holiday" + ], + [ + "i need to know when i get my next day off", + "next_holiday" + ], + [ + "when do i finally get a day off", + "next_holiday" + ], + [ + "when don't i have to work next", + "next_holiday" + ], + [ + "what holiday can i expect next", + "next_holiday" + ], + [ + "do you know when my next day off is coming", + "next_holiday" + ], + [ + "what holiday is coming up next", + "next_holiday" + ], + [ + "when do i have some time off next", + "next_holiday" + ], + [ + "when's the next holiday coming", + "next_holiday" + ], + [ + "can you tell me the next holiday", + "next_holiday" + ], + [ + "what's the next holiday", + "next_holiday" + ], + [ + "what's the date of the next closest holiday", + "next_holiday" + ], + [ + "raise the volume to 4 please", + "change_volume" + ], + [ + "please set the volume to 4", + "change_volume" + ], + [ + "please increase the volume to 4", + "change_volume" + ], + [ + "please raise the volume to 4", + "change_volume" + ], + [ + "set the volume to 4 please", + "change_volume" + ], + [ + "bring the volume up overall", + "change_volume" + ], + [ + "make the volume louder", + "change_volume" + ], + [ + "bring the sound up", + "change_volume" + ], + [ + "turn your speakers up", + "change_volume" + ], + [ + "make the speakers louder", + "change_volume" + ], + [ + "lower your volume", + "change_volume" + ], + [ + "go ahead and increase the volume to 4 please", + "change_volume" + ], + [ + "you must increase the volume to 4 please", + "change_volume" + ], + [ + "go ahead and your volume", + "change_volume" + ], + [ + "you must increase your volume", + "change_volume" + ], + [ + "please increase your volume", + "change_volume" + ], + [ + "please increase your speaker volume", + "change_volume" + ], + [ + "go now and increase the volume to 4 please", + "change_volume" + ], + [ + "please increase the volume to 4 please", + "change_volume" + ], + [ + "i want to increase your volume", + "change_volume" + ], + [ + "i need you to your volume", + "change_volume" + ], + [ + "please your volume", + "change_volume" + ], + [ + "go ahead and increase your speaker volume", + "change_volume" + ], + [ + "i want you to your volume", + "change_volume" + ], + [ + "i need you to increase your volume", + "change_volume" + ], + [ + "i need you to increase your speaker volume", + "change_volume" + ], + [ + "please go ahead and increase your speaker volume", + "change_volume" + ], + [ + "make my volume louder please", + "change_volume" + ], + [ + "make the sound of my speaker greater", + "change_volume" + ], + [ + "can you rise the volume of this please", + "change_volume" + ], + [ + "change the speaker volume to a louder one", + "change_volume" + ], + [ + "i want the speaker to be louder please", + "change_volume" + ], + [ + "i can't hear you", + "change_volume" + ], + [ + "turn it up please", + "change_volume" + ], + [ + "i need it louder", + "change_volume" + ], + [ + "the sound is too low", + "change_volume" + ], + [ + "the speaker volume needs to be increased", + "change_volume" + ], + [ + "would you please increase your speaker volume", + "change_volume" + ], + [ + "i need you to increase the speaker volume", + "change_volume" + ], + [ + "can you increase the speaker volume", + "change_volume" + ], + [ + "turn up the volume level to 4", + "change_volume" + ], + [ + "turn up the volume level to 4, please", + "change_volume" + ], + [ + "increase the volume level to 4, please", + "change_volume" + ], + [ + "increase the volume level to 4 now", + "change_volume" + ], + [ + "increase the volume level to 4", + "change_volume" + ], + [ + "can i have my volume increased", + "change_volume" + ], + [ + "can my volume be increased", + "change_volume" + ], + [ + "can i increase my volume", + "change_volume" + ], + [ + "volume needs to be at 4", + "change_volume" + ], + [ + "volume should be increased to 4", + "change_volume" + ], + [ + "boost volume to 4", + "change_volume" + ], + [ + "i want volume at 4", + "change_volume" + ], + [ + "i want that volume bumped up to 4", + "change_volume" + ], + [ + "the volume should be decreased", + "change_volume" + ], + [ + "raise the volume", + "change_volume" + ], + [ + "lower the volume", + "change_volume" + ], + [ + "i would like the volume lower", + "change_volume" + ], + [ + "can you turn this down", + "change_volume" + ], + [ + "turn the volume up", + "change_volume" + ], + [ + "i'd like to turn up the volume", + "change_volume" + ], + [ + "turn up the speaker volume", + "change_volume" + ], + [ + "get louder", + "change_volume" + ], + [ + "volume should be set at 4", + "change_volume" + ], + [ + "i'd like it to be louder", + "change_volume" + ], + [ + "can you please turn the volume to 4", + "change_volume" + ], + [ + "please speak louder", + "change_volume" + ], + [ + "increase your vocals", + "change_volume" + ], + [ + "lower your voice box", + "change_volume" + ], + [ + "increase your voice box", + "change_volume" + ], + [ + "turn your vocals down", + "change_volume" + ], + [ + "turn your voice box down", + "change_volume" + ], + [ + "turn down your volume", + "change_volume" + ], + [ + "limit your volume", + "change_volume" + ], + [ + "please adjust your settings", + "change_volume" + ], + [ + "change the volume to 4 now please", + "change_volume" + ], + [ + "go ahead and put the volume to 4", + "change_volume" + ], + [ + "set the volume to 4 now", + "change_volume" + ], + [ + "can you change the volume to 4", + "change_volume" + ], + [ + "turn the volume to 4", + "change_volume" + ], + [ + "can you turn the volume to 4", + "change_volume" + ], + [ + "set the volume at 4 for me please", + "change_volume" + ], + [ + "make the volume set to 4", + "change_volume" + ], + [ + "i want volume set to 4", + "change_volume" + ], + [ + "turn volume to the number 4 setting", + "change_volume" + ], + [ + "turn the volume to level 4", + "change_volume" + ], + [ + "make the volume 4", + "change_volume" + ], + [ + "please make sure the volume is on 4", + "change_volume" + ], + [ + "turn down volume", + "change_volume" + ], + [ + "please increase volume", + "change_volume" + ], + [ + "raise volume", + "change_volume" + ], + [ + "decrease volume level", + "change_volume" + ], + [ + "lower volume level", + "change_volume" + ], + [ + "set volume higher", + "change_volume" + ], + [ + "increase volume", + "change_volume" + ], + [ + "lower volume", + "change_volume" + ], + [ + "please raise volume", + "change_volume" + ], + [ + "decrease volume", + "change_volume" + ], + [ + "increase volume to 4", + "change_volume" + ], + [ + "put volume at 4", + "change_volume" + ], + [ + "decrease volume to 4", + "change_volume" + ], + [ + "who is your employeer", + "who_do_you_work_for" + ], + [ + "who is the boss of you", + "who_do_you_work_for" + ], + [ + "i gotta know who is your boss", + "who_do_you_work_for" + ], + [ + "tell me who is your boss", + "who_do_you_work_for" + ], + [ + "let me know who is your boss", + "who_do_you_work_for" + ], + [ + "i wanna know who is your boss", + "who_do_you_work_for" + ], + [ + "i need to know who is your boss", + "who_do_you_work_for" + ], + [ + "what is the name of your boss", + "who_do_you_work_for" + ], + [ + "what is the full name of your boss", + "who_do_you_work_for" + ], + [ + "do you know the name of your boss", + "who_do_you_work_for" + ], + [ + "could you tell me the name of your boss", + "who_do_you_work_for" + ], + [ + "your boss is", + "who_do_you_work_for" + ], + [ + "are you my worker", + "who_do_you_work_for" + ], + [ + "are you working for me or what", + "who_do_you_work_for" + ], + [ + "are you working for another person or entity", + "who_do_you_work_for" + ], + [ + "are you here to serve me", + "who_do_you_work_for" + ], + [ + "who or what association do you work for", + "who_do_you_work_for" + ], + [ + "describe who it is you work for", + "who_do_you_work_for" + ], + [ + "what entity is your boss", + "who_do_you_work_for" + ], + [ + "you work for who", + "who_do_you_work_for" + ], + [ + "you work for whom", + "who_do_you_work_for" + ], + [ + "what's your boss' name", + "who_do_you_work_for" + ], + [ + "are you working for someone other than me", + "who_do_you_work_for" + ], + [ + "who do you work for", + "who_do_you_work_for" + ], + [ + "do you work for me or is that wrong", + "who_do_you_work_for" + ], + [ + "what does your boss go by", + "who_do_you_work_for" + ], + [ + "who do you call your boss", + "who_do_you_work_for" + ], + [ + "when asked who you work for, what would you say", + "who_do_you_work_for" + ], + [ + "your boss is who", + "who_do_you_work_for" + ], + [ + "are you employed by someone else", + "who_do_you_work_for" + ], + [ + "you work for someone else or no", + "who_do_you_work_for" + ], + [ + "you work for what company or person exactly", + "who_do_you_work_for" + ], + [ + "do you have an employer", + "who_do_you_work_for" + ], + [ + "do you have a boss", + "who_do_you_work_for" + ], + [ + "are you paid by somebody", + "who_do_you_work_for" + ], + [ + "are you employed by someone", + "who_do_you_work_for" + ], + [ + "which organization you work for", + "who_do_you_work_for" + ], + [ + "who do you function for", + "who_do_you_work_for" + ], + [ + "who do you do task for", + "who_do_you_work_for" + ], + [ + "who do you job for", + "who_do_you_work_for" + ], + [ + "why do u work for them", + "who_do_you_work_for" + ], + [ + "who are they that you work for", + "who_do_you_work_for" + ], + [ + "who is it u work for", + "who_do_you_work_for" + ], + [ + "who is the person u work for", + "who_do_you_work_for" + ], + [ + "who do i work for", + "who_do_you_work_for" + ], + [ + "who is you employer", + "who_do_you_work_for" + ], + [ + "is it correct to say you work for me", + "who_do_you_work_for" + ], + [ + "who are you currently working for", + "who_do_you_work_for" + ], + [ + "are you self employed", + "who_do_you_work_for" + ], + [ + "who is your employer", + "who_do_you_work_for" + ], + [ + "are you now working for me", + "who_do_you_work_for" + ], + [ + "would you say you are working for me", + "who_do_you_work_for" + ], + [ + "who are you working for", + "who_do_you_work_for" + ], + [ + "who pay your salary", + "who_do_you_work_for" + ], + [ + "what organization do you work for", + "who_do_you_work_for" + ], + [ + "where else do you work", + "who_do_you_work_for" + ], + [ + "do you have another job", + "who_do_you_work_for" + ], + [ + "you working for someone else on the side", + "who_do_you_work_for" + ], + [ + "who do yo work for", + "who_do_you_work_for" + ], + [ + "who is in charge of you", + "who_do_you_work_for" + ], + [ + "what is your boss's name", + "who_do_you_work_for" + ], + [ + "would you say that you know who your boss is", + "who_do_you_work_for" + ], + [ + "do you know who you report to", + "who_do_you_work_for" + ], + [ + "don't you work for your self", + "who_do_you_work_for" + ], + [ + "don't you work for someone else", + "who_do_you_work_for" + ], + [ + "is there another person you work for", + "who_do_you_work_for" + ], + [ + "do you work for anyone else", + "who_do_you_work_for" + ], + [ + "who would you say your employer is", + "who_do_you_work_for" + ], + [ + "are you working for me", + "who_do_you_work_for" + ], + [ + "am i your boss", + "who_do_you_work_for" + ], + [ + "is there someone else you work for", + "who_do_you_work_for" + ], + [ + "are you employed by me", + "who_do_you_work_for" + ], + [ + "is there another entity you work for", + "who_do_you_work_for" + ], + [ + "who would you say that you are working for", + "who_do_you_work_for" + ], + [ + "do you happen to be employed by me", + "who_do_you_work_for" + ], + [ + "who would you say you work for", + "who_do_you_work_for" + ], + [ + "who would you say that you are employed by", + "who_do_you_work_for" + ], + [ + "who would you say you are employed by", + "who_do_you_work_for" + ], + [ + "am i your employer", + "who_do_you_work_for" + ], + [ + "is there another company you work for", + "who_do_you_work_for" + ], + [ + "are you my employee", + "who_do_you_work_for" + ], + [ + "am i your supervisor", + "who_do_you_work_for" + ], + [ + "am i your manager", + "who_do_you_work_for" + ], + [ + "who is the person you work for", + "who_do_you_work_for" + ], + [ + "for what person do you work", + "who_do_you_work_for" + ], + [ + "if you had to say who you worked for who would it be", + "who_do_you_work_for" + ], + [ + "who tells you what to do", + "who_do_you_work_for" + ], + [ + "who directs your labor", + "who_do_you_work_for" + ], + [ + "who do you take orders from", + "who_do_you_work_for" + ], + [ + "who do you consider your employer", + "who_do_you_work_for" + ], + [ + "who calls the shots for your employment", + "who_do_you_work_for" + ], + [ + "what company do you toil for", + "who_do_you_work_for" + ], + [ + "who do you report to", + "who_do_you_work_for" + ], + [ + "who is your boss", + "who_do_you_work_for" + ], + [ + "who is your manager", + "who_do_you_work_for" + ], + [ + "am i the one you work for", + "who_do_you_work_for" + ], + [ + "are you influenced by someone else", + "who_do_you_work_for" + ], + [ + "who else do you work for", + "who_do_you_work_for" + ], + [ + "who else commands you", + "who_do_you_work_for" + ], + [ + "are you working for someone else", + "who_do_you_work_for" + ], + [ + "how high is my credit limit for my old navy card", + "credit_limit" + ], + [ + "how high is my credit limit for my target card", + "credit_limit" + ], + [ + "what is the credit limit for my usaa card", + "credit_limit" + ], + [ + "how high is my credit limit for my childrens place card", + "credit_limit" + ], + [ + "how high is my credit limit for my walmart card", + "credit_limit" + ], + [ + "what is the credit limit for my bank of the west card", + "credit_limit" + ], + [ + "what is the credit limit for my chase card", + "credit_limit" + ], + [ + "how high is my credit limit for my navy federal card", + "credit_limit" + ], + [ + "what is the credit limit for my navy federal card", + "credit_limit" + ], + [ + "what is the credit limit for my bank of america card", + "credit_limit" + ], + [ + "what's my current spending limit", + "credit_limit" + ], + [ + "credit limit", + "credit_limit" + ], + [ + "what's the credit limit on my account", + "credit_limit" + ], + [ + "could you share what my current credit limit is", + "credit_limit" + ], + [ + "what's my current credit limit", + "credit_limit" + ], + [ + "what is the spending limit i have", + "credit_limit" + ], + [ + "what is the max on my credit limit", + "credit_limit" + ], + [ + "what is the limit on my credit", + "credit_limit" + ], + [ + "i need to know my spending limit on my visa", + "credit_limit" + ], + [ + "whats the max i can spend on my visa", + "credit_limit" + ], + [ + "how much can i max out on my visa", + "credit_limit" + ], + [ + "what's my visa limit", + "credit_limit" + ], + [ + "how much to i have left on my visa card limit", + "credit_limit" + ], + [ + "can you tell me the limit i currently have on my barclay card", + "credit_limit" + ], + [ + "what is my spending limit on my chase sapphire card", + "credit_limit" + ], + [ + "how much can i spend, at most, on my chase freedom", + "credit_limit" + ], + [ + "what is the current credit limit i have on my wells fargo mastercard", + "credit_limit" + ], + [ + "how much am i allowed to spend on my discover card", + "credit_limit" + ], + [ + "what is my amex credit limit", + "credit_limit" + ], + [ + "tell me the credit on my mastercard", + "credit_limit" + ], + [ + "tell me the limit for credit on my mastercard", + "credit_limit" + ], + [ + "look up the credit limit for my visa", + "credit_limit" + ], + [ + "i need know my credit limit on my american express card", + "credit_limit" + ], + [ + "how can i check my credit card limit", + "credit_limit" + ], + [ + "what is my credit limit looking like", + "credit_limit" + ], + [ + "where can i go to find out my credit limit", + "credit_limit" + ], + [ + "what's the credit limit on my visa", + "credit_limit" + ], + [ + "tell me the limit on my discover card", + "credit_limit" + ], + [ + "what is the credit limit on my discover card", + "credit_limit" + ], + [ + "what's the limit on my american express card", + "credit_limit" + ], + [ + "tell me my visa's credit limit", + "credit_limit" + ], + [ + "what is my credit limit", + "credit_limit" + ], + [ + "how much is my credit limit", + "credit_limit" + ], + [ + "can you tell me my credit limit", + "credit_limit" + ], + [ + "the credit limit on my account is how much", + "credit_limit" + ], + [ + "what's my limit on my visa card", + "credit_limit" + ], + [ + "what's my visa card's credit limit", + "credit_limit" + ], + [ + "how much can i spend on my visa card", + "credit_limit" + ], + [ + "what's my visa card's limit", + "credit_limit" + ], + [ + "what's the credit limit on my visa card", + "credit_limit" + ], + [ + "will you tell me my spending limit", + "credit_limit" + ], + [ + "will you let me know what my spending limit is", + "credit_limit" + ], + [ + "would you tell me my spending limit", + "credit_limit" + ], + [ + "can you tell me my spending limit", + "credit_limit" + ], + [ + "tel me the credit limit for my credit card", + "credit_limit" + ], + [ + "i wanna know the limit on my credit card", + "credit_limit" + ], + [ + "please tell me my spending limit", + "credit_limit" + ], + [ + "tell me the credit limit on my mastercard", + "credit_limit" + ], + [ + "i would love to know my spending limit", + "credit_limit" + ], + [ + "i wish to know my credit limit for my credit card", + "credit_limit" + ], + [ + "let me know the credit limit for my credit card", + "credit_limit" + ], + [ + "how high is my balance on my discovery card", + "credit_limit" + ], + [ + "can you find my credit limit on my mastercard", + "credit_limit" + ], + [ + "what's my current limit on my mastercard", + "credit_limit" + ], + [ + "what's my current limit on my visa", + "credit_limit" + ], + [ + "what's the credit limit on my discovery card", + "credit_limit" + ], + [ + "what's my credit limit on my visa", + "credit_limit" + ], + [ + "how high of a credit limit do i have on my amex card", + "credit_limit" + ], + [ + "what can i put on my bank of america card", + "credit_limit" + ], + [ + "what's my limit on my amex card", + "credit_limit" + ], + [ + "please check my credit limit on my visa", + "credit_limit" + ], + [ + "report my credit limit", + "credit_limit" + ], + [ + "what credit limit do i have", + "credit_limit" + ], + [ + "how is that credit limit", + "credit_limit" + ], + [ + "how is my credit limit", + "credit_limit" + ], + [ + "what is my credit limit at", + "credit_limit" + ], + [ + "credit limit info", + "credit_limit" + ], + [ + "what is the credit limit", + "credit_limit" + ], + [ + "i want to know my spending limit", + "credit_limit" + ], + [ + "what is the max credit limit for my card", + "credit_limit" + ], + [ + "can you let me know what my credit limit is for my visa card", + "credit_limit" + ], + [ + "tell me the visa card credit limit", + "credit_limit" + ], + [ + "what is my visa card limit", + "credit_limit" + ], + [ + "do you know my credit limit for the visa card", + "credit_limit" + ], + [ + "i need to know what the visa card credit limit is", + "credit_limit" + ], + [ + "how high is my credit limit for my chase card", + "credit_limit" + ], + [ + "how high is my credit limit for my wells fargo card", + "credit_limit" + ], + [ + "how high is my credit limit for my american express card", + "credit_limit" + ], + [ + "how high is my credit limit for my citigroup card", + "credit_limit" + ], + [ + "how high is my credit limit for my bank of america card", + "credit_limit" + ], + [ + "what is my spending limit on my mastercard", + "credit_limit" + ], + [ + "how much it the credit limit on my visa card", + "credit_limit" + ], + [ + "what is the credit limit on my visa", + "credit_limit" + ], + [ + "what is my limit on my visa card", + "credit_limit" + ], + [ + "what is the spending limit on my visa", + "credit_limit" + ], + [ + "how much can i charge on my visa", + "credit_limit" + ], + [ + "how much can i spend wth my visa", + "credit_limit" + ], + [ + "can i please know the credit limit for my citibank card", + "credit_limit" + ], + [ + "please let me know the credit limit on my citibank card", + "credit_limit" + ], + [ + "i would like to know the credit limit for my citibank card", + "credit_limit" + ], + [ + "do you know how long of a wait it will be", + "how_busy" + ], + [ + "how long is the restaurant line before we go", + "how_busy" + ], + [ + "how long will it take to get seated at needham's", + "how_busy" + ], + [ + "how long will the wait be at noon if we went to nagomi", + "how_busy" + ], + [ + "will i have to wait for long before being seated at the cheese cake factory", + "how_busy" + ], + [ + "how long should i expect to wait at the cheesecake factory before getting seated", + "how_busy" + ], + [ + "what is the average wait time at the cheese cake factory", + "how_busy" + ], + [ + "how long will i have to wait before being seated at the cheese cake factory", + "how_busy" + ], + [ + "how long will the wait time be at the cheese cake factory", + "how_busy" + ], + [ + "how long will i have to wait if i want to eat at panera", + "how_busy" + ], + [ + "how long would i have to wait if i want to go to golden corral", + "how_busy" + ], + [ + "how busy will panera be at noon", + "how_busy" + ], + [ + "is there a wait time to get into tgifridays", + "how_busy" + ], + [ + "will cracker barrel be crowded around five this evening", + "how_busy" + ], + [ + "how busy will golden corral be at 7:30 tonight", + "how_busy" + ], + [ + "can you tell me how busy chipotle will be at nine tonight", + "how_busy" + ], + [ + "what is the wait time at applebee's", + "how_busy" + ], + [ + "would i have to wait long if i want to eat at chili's", + "how_busy" + ], + [ + "if i go to tgifridays at eight, will they be crowded", + "how_busy" + ], + [ + "how much traffic do they get around dinner time", + "how_busy" + ], + [ + "can you check to see how busy that restaurant is for dinner", + "how_busy" + ], + [ + "is that place busy around dinner time", + "how_busy" + ], + [ + "is that restaurant crowded during dinner", + "how_busy" + ], + [ + "how busy it that place for dinner", + "how_busy" + ], + [ + "can i expect chili's to be busy at 4:30", + "how_busy" + ], + [ + "do you think longhorn steakhouse will be busy at 5pm", + "how_busy" + ], + [ + "how busy do you expect olive garden to be at 6", + "how_busy" + ], + [ + "what's the table wait at applebees", + "how_busy" + ], + [ + "i want a table at texas roadhouse; how long will it be", + "how_busy" + ], + [ + "how long does it take to get a table at chili's", + "how_busy" + ], + [ + "how many people do you think will be at applebees at 7", + "how_busy" + ], + [ + "how long will i wait for a table at red lobster", + "how_busy" + ], + [ + "is red lobster busy at 6pm", + "how_busy" + ], + [ + "what's the wait for a table at olive garden right now", + "how_busy" + ], + [ + "around nine, is ambrosio busy", + "how_busy" + ], + [ + "is sage busy around noon", + "how_busy" + ], + [ + "for toby's, is it busy around six", + "how_busy" + ], + [ + "at four, how much business does georgio have", + "how_busy" + ], + [ + "how long can i expect to wait for a restaurant table", + "how_busy" + ], + [ + "what time can i expect to be seated at this restaurant", + "how_busy" + ], + [ + "what is the wait time at this restaurant", + "how_busy" + ], + [ + "will there be a wait time at this restaurant", + "how_busy" + ], + [ + "what is the sitting time at this restaurant", + "how_busy" + ], + [ + "how busy is orchids at 7", + "how_busy" + ], + [ + "how busy is zippy around 12 for lunch", + "how_busy" + ], + [ + "how long is the wait at orchids", + "how_busy" + ], + [ + "how long is the wait at imanas", + "how_busy" + ], + [ + "how busy is imanas tei at 7 dinner", + "how_busy" + ], + [ + "what is the wait supposed to be at zippys", + "how_busy" + ], + [ + "how busy is mc donald at 8 in the morning", + "how_busy" + ], + [ + "how busy is michel at 9", + "how_busy" + ], + [ + "how busy is imanas at 6", + "how_busy" + ], + [ + "how long do i have to wait for shokudo", + "how_busy" + ], + [ + "how busy is teddy bigger burder around 5", + "how_busy" + ], + [ + "how long is the wait at assagios today", + "how_busy" + ], + [ + "how busy is shokudo at 12", + "how_busy" + ], + [ + "how busy is jiro at 12 lunch time", + "how_busy" + ], + [ + "at 5 pm, is kaya very busy", + "how_busy" + ], + [ + "how busy is kaya around 5 pm", + "how_busy" + ], + [ + "around 5 pm, how busy is kaya", + "how_busy" + ], + [ + "is kaya very busy at 5 pm", + "how_busy" + ], + [ + "is kaya busy around 5 pm", + "how_busy" + ], + [ + "how long is the wait at macaroni grill", + "how_busy" + ], + [ + "does macaroni grill have a wait how long", + "how_busy" + ], + [ + "check the wait time for macaroni grill", + "how_busy" + ], + [ + "how long will it take to be seated at macaroni grill", + "how_busy" + ], + [ + "what's the wait at macaroni grill", + "how_busy" + ], + [ + "will i be able to get a seat at 5pm", + "how_busy" + ], + [ + "tell me how busy the restaurant will be between 5 and 7pm", + "how_busy" + ], + [ + "is the restaurant busy at lunchtime", + "how_busy" + ], + [ + "will the restaurant be busy at 5pm", + "how_busy" + ], + [ + "when will the restaurant be busiest", + "how_busy" + ], + [ + "how busy is ihop generally around noon", + "how_busy" + ], + [ + "please look into the current wait times at chili's right now", + "how_busy" + ], + [ + "at 5:30 pm, how busy can i expect olive garden to be", + "how_busy" + ], + [ + "if i go to olive garden at 4 pm, how busy will it be", + "how_busy" + ], + [ + "how busy will chili's be if i go at 6 pm", + "how_busy" + ], + [ + "how long would i need to wait for a table at ihop right now", + "how_busy" + ], + [ + "i would like to find out if macaroni grill will be busy around 7:00 pm", + "how_busy" + ], + [ + "can you tell me how busy outback steakhouse will be at 7:30 pm", + "how_busy" + ], + [ + "find out how busy ihop usually is around 5 pm", + "how_busy" + ], + [ + "find out what wait times are like right now at olive garden", + "how_busy" + ], + [ + "can you tell me what the wait is like right now at cracker barrel", + "how_busy" + ], + [ + "tell me how busy macaroni grill will be around 8 pm", + "how_busy" + ], + [ + "check to see how long of a wait i would be facing if i go to outback steakhouse", + "how_busy" + ], + [ + "i want to know how busy ruby tuesday will be at around 8:45 pm", + "how_busy" + ], + [ + "do you know how busy outback steakhouse tends to be at 7:00 pm", + "how_busy" + ], + [ + "how long will it take me to be seated at ihop", + "how_busy" + ], + [ + "how long will i stand in line at carl jr's", + "how_busy" + ], + [ + "how busy is ihop at 5 pm", + "how_busy" + ], + [ + "does ihop have a lot of business around 7 am", + "how_busy" + ], + [ + "what's the typical wait time at red lobster", + "how_busy" + ], + [ + "would you say that red lobster's pretty buy at noon", + "how_busy" + ], + [ + "what's the crowd like at hopper's bar around 11pm", + "how_busy" + ], + [ + "can you tell me if there's a lot of wait time at wendy's around 8am", + "how_busy" + ], + [ + "how long will it take to be seated at the flying w", + "how_busy" + ], + [ + "what's the typical time to eat at red lobster", + "how_busy" + ], + [ + "how busy does outback get around 7pm", + "how_busy" + ], + [ + "will i have to wait to get a table at ihop", + "how_busy" + ], + [ + "how many people go to chili's around 9pm", + "how_busy" + ], + [ + "can i make a reservation for redrobin", + "accept_reservations" + ], + [ + "is it possible to make a reservation at redrobin", + "accept_reservations" + ], + [ + "does redrobin take reservations", + "accept_reservations" + ], + [ + "are reservations taken at redrobin", + "accept_reservations" + ], + [ + "does redrobin do reservations", + "accept_reservations" + ], + [ + "can acero take reservation", + "accept_reservations" + ], + [ + "can you make reservations at hodak's", + "accept_reservations" + ], + [ + "tell me if per se in nyc takes reservations", + "accept_reservations" + ], + [ + "tell me if the cheshire takes reservations", + "accept_reservations" + ], + [ + "will qdoba take reservations", + "accept_reservations" + ], + [ + "does burger king accept reservations", + "accept_reservations" + ], + [ + "does gramercy tavern in new york accept reservations", + "accept_reservations" + ], + [ + "does acero in maplewood allow reservations", + "accept_reservations" + ], + [ + "does cielo take reservations", + "accept_reservations" + ], + [ + "find out if la tour d'argent in paris takes reservations", + "accept_reservations" + ], + [ + "does tony's in downton let you make reservations", + "accept_reservations" + ], + [ + "does gramercy tavern accept reservations", + "accept_reservations" + ], + [ + "does mcdonalds take reservations", + "accept_reservations" + ], + [ + "can you make reservations at steak 'n' shake", + "accept_reservations" + ], + [ + "will nobu take reservations", + "accept_reservations" + ], + [ + "do they take reservations at carrabbas", + "accept_reservations" + ], + [ + "do they take reservations at applebees", + "accept_reservations" + ], + [ + "do they take reservations at olive garden", + "accept_reservations" + ], + [ + "do they take reservations at buffalo wild wings", + "accept_reservations" + ], + [ + "do they take reservations at outback steakhouse", + "accept_reservations" + ], + [ + "i need to know if angelos takes reservations", + "accept_reservations" + ], + [ + "does applebees in trenton do reservations", + "accept_reservations" + ], + [ + "does luigi's take reservations", + "accept_reservations" + ], + [ + "please find out if napolis takes lunch reservations", + "accept_reservations" + ], + [ + "does hannahs in galloway take reservations", + "accept_reservations" + ], + [ + "does stanleys take brunch reservations", + "accept_reservations" + ], + [ + "tell me if luigis in brick takes reservations", + "accept_reservations" + ], + [ + "i need to know if capones does reservations in trenton", + "accept_reservations" + ], + [ + "does marios in brooklyn take reservations", + "accept_reservations" + ], + [ + "do you know if bottlenecks takes dinner reservations", + "accept_reservations" + ], + [ + "do you know if whether or not zeus does reservations", + "accept_reservations" + ], + [ + "can you let me if zeus accepts reservations", + "accept_reservations" + ], + [ + "i need to find out do you know if zeus does reservations", + "accept_reservations" + ], + [ + "please tell me does zeus do reservations", + "accept_reservations" + ], + [ + "can you tell me if zeus does reservations", + "accept_reservations" + ], + [ + "can i get a reservation at melting pot tomorrow", + "accept_reservations" + ], + [ + "what locations of applebee's take reservations", + "accept_reservations" + ], + [ + "can i get a reservation at champs", + "accept_reservations" + ], + [ + "where can i find jimmy john's reservations", + "accept_reservations" + ], + [ + "how many culver's take reservations", + "accept_reservations" + ], + [ + "is there evening reservations available in the eve", + "accept_reservations" + ], + [ + "do you know if bahama breeze does reservations", + "accept_reservations" + ], + [ + "do you know if ruth chris does reservations", + "accept_reservations" + ], + [ + "do you know if cheese cake factory does reservations", + "accept_reservations" + ], + [ + "do you know if benihana does reservations", + "accept_reservations" + ], + [ + "do you know if olive garden does reservations", + "accept_reservations" + ], + [ + "does the steakhouse on main st take reservations", + "accept_reservations" + ], + [ + "does sidetracks take reservations", + "accept_reservations" + ], + [ + "are reservations allowed at burger king", + "accept_reservations" + ], + [ + "does black rock take reservations", + "accept_reservations" + ], + [ + "can i make reservations at applebee's or no", + "accept_reservations" + ], + [ + "does buffalo wild wings do reservations", + "accept_reservations" + ], + [ + "does minnies cafe in modesto take reservations", + "accept_reservations" + ], + [ + "does bjs take reservations", + "accept_reservations" + ], + [ + "will they take reservations at chillis", + "accept_reservations" + ], + [ + "does pho king in ceres take reservations", + "accept_reservations" + ], + [ + "can applebees take any reservations", + "accept_reservations" + ], + [ + "does arbys in lakewood take reservations", + "accept_reservations" + ], + [ + "does minnis take reservations", + "accept_reservations" + ], + [ + "do they take reservations at bjs", + "accept_reservations" + ], + [ + "does buffalo wild wings take reservations", + "accept_reservations" + ], + [ + "does buffalo wild wings in concord take reservations", + "accept_reservations" + ], + [ + "will they take reservations at torris", + "accept_reservations" + ], + [ + "does black bear diner in tracy take reservations", + "accept_reservations" + ], + [ + "does chillis take reservations", + "accept_reservations" + ], + [ + "do they take reservations at bar tartine", + "accept_reservations" + ], + [ + "do they take reservations at mcdonalds", + "accept_reservations" + ], + [ + "do they take reservations at the progress", + "accept_reservations" + ], + [ + "does tartine in san francisco take reservations", + "accept_reservations" + ], + [ + "does cowgirl creamery in san francisco take reservations", + "accept_reservations" + ], + [ + "do they take reservations at state bird", + "accept_reservations" + ], + [ + "does nopa in san francisco take reservations", + "accept_reservations" + ], + [ + "does bar tartine in san francisco take reservations", + "accept_reservations" + ], + [ + "do they take reservations at arby's", + "accept_reservations" + ], + [ + "does pizzeria delfina in san francisco take reservations", + "accept_reservations" + ], + [ + "does iron skillet at the truck stop trake reservations", + "accept_reservations" + ], + [ + "does the zen garden in la take reservations", + "accept_reservations" + ], + [ + "does moes in la except rerservations", + "accept_reservations" + ], + [ + "does ruby tuesday accept reservations", + "accept_reservations" + ], + [ + "can i make a reservation at chevy's", + "accept_reservations" + ], + [ + "is it possible to make reservations in advance for macaroni grill", + "accept_reservations" + ], + [ + "is it possible to make reservations with famous dave's restaurant", + "accept_reservations" + ], + [ + "is it possible to make reservations at chili's", + "accept_reservations" + ], + [ + "does chili's take reservations", + "accept_reservations" + ], + [ + "can you tell me if ruby tuesday does reservations", + "accept_reservations" + ], + [ + "does olive garden take reservations", + "accept_reservations" + ], + [ + "do you know whether ihop does reservations", + "accept_reservations" + ], + [ + "does michael's accept reservations", + "accept_reservations" + ], + [ + "do they accept reservations at michael's", + "accept_reservations" + ], + [ + "can you make a reservation at michael's", + "accept_reservations" + ], + [ + "can i make a reservation at michael's", + "accept_reservations" + ], + [ + "does the restaurant michael's take reservations", + "accept_reservations" + ], + [ + "do they take reservations at mendy's", + "accept_reservations" + ], + [ + "do you know if outback allows reservations", + "accept_reservations" + ], + [ + "do they take reservations at red robin", + "accept_reservations" + ], + [ + "can you find my package in transit", + "order_status" + ], + [ + "track my package please", + "order_status" + ], + [ + "help me find my package", + "order_status" + ], + [ + "i need to track my package", + "order_status" + ], + [ + "what's going on with my order", + "order_status" + ], + [ + "can you see where my package is", + "order_status" + ], + [ + "do you know anything about the status of my order", + "order_status" + ], + [ + "can you check if my order has been delivered", + "order_status" + ], + [ + "are you able to figure out where my package is", + "order_status" + ], + [ + "order status", + "order_status" + ], + [ + "is my order being delivered soon", + "order_status" + ], + [ + "where's my package", + "order_status" + ], + [ + "do you know where my package is", + "order_status" + ], + [ + "check status on my deliver, has it been delivered", + "order_status" + ], + [ + "is my order shown as delivered", + "order_status" + ], + [ + "did my order ship", + "order_status" + ], + [ + "can you tell where my package is", + "order_status" + ], + [ + "is my package able to be tracked by you", + "order_status" + ], + [ + "can you find my package", + "order_status" + ], + [ + "can you locate my package", + "order_status" + ], + [ + "are you able to tack my package", + "order_status" + ], + [ + "has my online order shipped yet", + "order_status" + ], + [ + "i need to know what the most recent update is on the status of my online purchase", + "order_status" + ], + [ + "look up the status of the order i placed online", + "order_status" + ], + [ + "check to see the status of my recent online order", + "order_status" + ], + [ + "find out the status of my most recent online purchase", + "order_status" + ], + [ + "i ordered some curtains off amazon, can you tell me if it's been shipped yet", + "order_status" + ], + [ + "what's the status of my order", + "order_status" + ], + [ + "can you check on the status of my orders at amazon", + "order_status" + ], + [ + "can you tell me what the status of my last amazon order is", + "order_status" + ], + [ + "can you tell me if my last amazon order is coming today", + "order_status" + ], + [ + "show me tracking on my order", + "order_status" + ], + [ + "what is the status of my order", + "order_status" + ], + [ + "can you update me on my last amazon orders", + "order_status" + ], + [ + "i just placed my order today, what is the status of it", + "order_status" + ], + [ + "can i please get the status my order", + "order_status" + ], + [ + "my order was put in and i was wonder how i can see the status of it", + "order_status" + ], + [ + "i submitted my order is there any updates on it yet", + "order_status" + ], + [ + "hey, i just put in my order and i was wondering what the status of it", + "order_status" + ], + [ + "what's the current location of my package", + "order_status" + ], + [ + "has my ordered arrived", + "order_status" + ], + [ + "when will my package arrive", + "order_status" + ], + [ + "can you see if my order was delivered", + "order_status" + ], + [ + "did my order ever get distributed today", + "order_status" + ], + [ + "where was my package last at", + "order_status" + ], + [ + "can you help me find my package", + "order_status" + ], + [ + "was my order dropped off", + "order_status" + ], + [ + "where's my package right now", + "order_status" + ], + [ + "would you track my package", + "order_status" + ], + [ + "please track my package", + "order_status" + ], + [ + "track my package now please", + "order_status" + ], + [ + "could you please track my package", + "order_status" + ], + [ + "i need you to track my package", + "order_status" + ], + [ + "what is the status of my online order", + "order_status" + ], + [ + "what's the status of the order i placed online last week with target", + "order_status" + ], + [ + "please tell me the status of my last online order from walmart", + "order_status" + ], + [ + "can i still make changes to my order, or has it already been shipped", + "order_status" + ], + [ + "i need an update on my online order from nespresso", + "order_status" + ], + [ + "when can i expect to receive the order", + "order_status" + ], + [ + "has my order been shipped", + "order_status" + ], + [ + "can you give me a status update on my online order from amazon", + "order_status" + ], + [ + "what is the status of my online order of coffee pods", + "order_status" + ], + [ + "what is the status of my recent order", + "order_status" + ], + [ + "can you please check on the status of my online order", + "order_status" + ], + [ + "check up on the status of my online order", + "order_status" + ], + [ + "online order: status", + "order_status" + ], + [ + "check on the status of my order", + "order_status" + ], + [ + "where is my order", + "order_status" + ], + [ + "is my order here yet", + "order_status" + ], + [ + "when will my order be delivered", + "order_status" + ], + [ + "check the status of my order", + "order_status" + ], + [ + "show me where my order is", + "order_status" + ], + [ + "has my order been shipped yet", + "order_status" + ], + [ + "can you check to see if my order has been delivered", + "order_status" + ], + [ + "could you check to see if my order has been delivered, please", + "order_status" + ], + [ + "can you check to see if my order has been delivered, please", + "order_status" + ], + [ + "could you check if my order has been delivered, please", + "order_status" + ], + [ + "could you check to see if my order has been delivered", + "order_status" + ], + [ + "has the order that i placed arrived", + "order_status" + ], + [ + "is my order already here", + "order_status" + ], + [ + "is my order due yet", + "order_status" + ], + [ + "is the packaged delivered already", + "order_status" + ], + [ + "has my order arrived yet", + "order_status" + ], + [ + "how soon will me package arrive", + "order_status" + ], + [ + "when can i expect my order", + "order_status" + ], + [ + "check order number", + "order_status" + ], + [ + "track package, please", + "order_status" + ], + [ + "are you able to track my package", + "order_status" + ], + [ + "track my package", + "order_status" + ], + [ + "what is the tracking on my package", + "order_status" + ], + [ + "get the tracking on my package", + "order_status" + ], + [ + "what is the status of my delivery order", + "order_status" + ], + [ + "where is my delivery order", + "order_status" + ], + [ + "has my delivery order arrived yet", + "order_status" + ], + [ + "has my delivery order showed up", + "order_status" + ], + [ + "i ordered for delivery, has is arrived yet", + "order_status" + ], + [ + "what is the status of my most recent order", + "order_status" + ], + [ + "has my recent order shipped", + "order_status" + ], + [ + "when will my order be here", + "order_status" + ], + [ + "will my order be here by saturday", + "order_status" + ], + [ + "how do i change my pin for number for my abc bank account", + "pin_change" + ], + [ + "what do i need to do to change my abc bank account pin number", + "pin_change" + ], + [ + "i have no idea what the pin is for my checking account", + "pin_change" + ], + [ + "i cannot recall the pin for my savings account", + "pin_change" + ], + [ + "i forgot the pin number for my college fund account", + "pin_change" + ], + [ + "set up a new pin number on my college fund account and make it be 1234", + "pin_change" + ], + [ + "i want 1234 to be the new pin number for my joint account", + "pin_change" + ], + [ + "please change my checking account pin to 1234", + "pin_change" + ], + [ + "i need to set up a new pin number for my college fund account", + "pin_change" + ], + [ + "i want my savings account pin to be 1234 from now on", + "pin_change" + ], + [ + "please change my retirement account pin number to 1234", + "pin_change" + ], + [ + "my checking account needs a new pin number", + "pin_change" + ], + [ + "i seem to have lost the pin for my retirement account", + "pin_change" + ], + [ + "i would like to replace the pin number for my retirement account", + "pin_change" + ], + [ + "i'd like to change my pin number for my checking account", + "pin_change" + ], + [ + "i want a new pin for my savings account", + "pin_change" + ], + [ + "i'm afraid i've forgotten the pin for my 401k account", + "pin_change" + ], + [ + "i need help changing my pin", + "pin_change" + ], + [ + "is there a way to get my pin number", + "pin_change" + ], + [ + "is there a way to change my pin number for my savings account", + "pin_change" + ], + [ + "i need my pin number", + "pin_change" + ], + [ + "how do i get my pin number, i forgot mine", + "pin_change" + ], + [ + "help me change my pin number for my money market account", + "pin_change" + ], + [ + "how do i get a new pin", + "pin_change" + ], + [ + "tell me how i can get a new pin number", + "pin_change" + ], + [ + "tell me how to retrieve my pin number", + "pin_change" + ], + [ + "help me, i forgot my pin number", + "pin_change" + ], + [ + "what is the procedure for getting a new pin number", + "pin_change" + ], + [ + "how do i change my pin number for my payroll account", + "pin_change" + ], + [ + "change my pin number for my checking account", + "pin_change" + ], + [ + "change my amex account pin to 1234", + "pin_change" + ], + [ + "change my amex pin to 1234", + "pin_change" + ], + [ + "swap my amex pin to 1234", + "pin_change" + ], + [ + "switch my amex pin to 1234", + "pin_change" + ], + [ + "set my amex pin to 1234", + "pin_change" + ], + [ + "you need to change the pin on my bank of america account to be 1234", + "pin_change" + ], + [ + "i need you to change the pin on my bank of america account to be 1234", + "pin_change" + ], + [ + "i need to change my pin number for my account", + "pin_change" + ], + [ + "i must change my pin number for my money market account", + "pin_change" + ], + [ + "i cannot remember what my pin is for my bank of america checking account", + "pin_change" + ], + [ + "i really need to change my pin number for my account", + "pin_change" + ], + [ + "i cannot remember what my pin is for my bank of america checking account this moment", + "pin_change" + ], + [ + "i want to change my pin number for my checking account", + "pin_change" + ], + [ + "i want to change my pin number for my account", + "pin_change" + ], + [ + "please go and change the pin on my bank of america account to be 1234", + "pin_change" + ], + [ + "i must change my pin number for my account", + "pin_change" + ], + [ + "go ahead and change the pin on my bank of america account to be 1234", + "pin_change" + ], + [ + "i got to change my pin number for my account", + "pin_change" + ], + [ + "i need to change my pin number for my savings account", + "pin_change" + ], + [ + "i wanna change my pin number for my credit acount", + "pin_change" + ], + [ + "please change the pin on my bank of america account to be 1234", + "pin_change" + ], + [ + "i really cannot remember what my pin is for my bank of america checking account", + "pin_change" + ], + [ + "i gotta change my pin number for my debit account", + "pin_change" + ], + [ + "i am unable to remember what my pin is for my bank of america checking account", + "pin_change" + ], + [ + "so it turns out i can't remember what my pin is for my bank of america checking account", + "pin_change" + ], + [ + "how do i change my pin number for my account, please", + "pin_change" + ], + [ + "how do i update my pin number for my account, please", + "pin_change" + ], + [ + "i would like to change the pin on my checking account, please", + "pin_change" + ], + [ + "i'd like to change the pin on my savings account, please", + "pin_change" + ], + [ + "change the pin on my capital one account to be 1234", + "pin_change" + ], + [ + "change the pin on my redwood credit union account to be 1234", + "pin_change" + ], + [ + "change the pin on my chase account to be 1234", + "pin_change" + ], + [ + "how do i update my pin number for my account", + "pin_change" + ], + [ + "i would like to change the pin on my savings account", + "pin_change" + ], + [ + "change the pin on my wells fargo account to be 1234", + "pin_change" + ], + [ + "change the pin on my bank of america account to be 1234", + "pin_change" + ], + [ + "i would like to change the pin on my checking account", + "pin_change" + ], + [ + "i would like to change the pin on my savings account, please", + "pin_change" + ], + [ + "how do i reset my pin number for my account, please", + "pin_change" + ], + [ + "please change pin to 1234 on my bank account trailing in 3829", + "pin_change" + ], + [ + "on account ending in 3838 change my pin to 1234", + "pin_change" + ], + [ + "change my pin to 1234 on account ending with digits 4994", + "pin_change" + ], + [ + "change the pin on my bank account first republic to 1234", + "pin_change" + ], + [ + "change pin to 1234 on account banner", + "pin_change" + ], + [ + "help me change my pin number", + "pin_change" + ], + [ + "can you tell me how i change my pin number", + "pin_change" + ], + [ + "tell me how to change my pin number", + "pin_change" + ], + [ + "help me out with changing this pin number", + "pin_change" + ], + [ + "can i change my pin number", + "pin_change" + ], + [ + "help me get my pin on my capitol one account changed to 3892", + "pin_change" + ], + [ + "how can i switch the pin on my wells fargo account to 9982", + "pin_change" + ], + [ + "i need a reminder for my pin number", + "pin_change" + ], + [ + "help me remember my pin number", + "pin_change" + ], + [ + "change the pin on my bofa account to 3892", + "pin_change" + ], + [ + "i need to reset my pin number", + "pin_change" + ], + [ + "can you reset my pin number", + "pin_change" + ], + [ + "can you change my 1st national account pin to 4892", + "pin_change" + ], + [ + "can you help me with my pin number", + "pin_change" + ], + [ + "please make the pin on my zion bank account to 3232", + "pin_change" + ], + [ + "can you tell me my password checking account", + "pin_change" + ], + [ + "please tell me my pin number for my synovus account", + "pin_change" + ], + [ + "what's my pin for my fidelity account", + "pin_change" + ], + [ + "i cant recall my pin number for my city first account", + "pin_change" + ], + [ + "i forgot my pin number for my northfield account", + "pin_change" + ], + [ + "i'd like to change my pin number for my wells fargo account", + "pin_change" + ], + [ + "i would like to change my pin number for my chase account", + "pin_change" + ], + [ + "i need to change my pin number for my checking account", + "pin_change" + ], + [ + "i'd like to change my pin number for my savings account", + "pin_change" + ], + [ + "i forgot my pin number to my chase account", + "pin_change" + ], + [ + "can you help me remember my pin to my boa account", + "pin_change" + ], + [ + "syonara, ai device!", + "goodbye" + ], + [ + "goodbye, helpful ai device!", + "goodbye" + ], + [ + "bye-bye", + "goodbye" + ], + [ + "goodbye, ai assistant", + "goodbye" + ], + [ + "glad we got to talk", + "goodbye" + ], + [ + "i'm glad i got to talk to you", + "goodbye" + ], + [ + "nice to speak with you", + "goodbye" + ], + [ + "this was a great conversation", + "goodbye" + ], + [ + "talk to you later", + "goodbye" + ], + [ + "tata for now", + "goodbye" + ], + [ + "i'm out of here", + "goodbye" + ], + [ + "that's all, bye", + "goodbye" + ], + [ + "see ya later", + "goodbye" + ], + [ + "adios ai", + "goodbye" + ], + [ + "it was great to see you again, see ya later!", + "goodbye" + ], + [ + "i had a pleasure talking to you, see you later", + "goodbye" + ], + [ + "nice talking again, bye", + "goodbye" + ], + [ + "i have to go but it was nice talking again!", + "goodbye" + ], + [ + "i am glad we got to talk again, see you soon", + "goodbye" + ], + [ + "sayonara", + "goodbye" + ], + [ + "catch you around", + "goodbye" + ], + [ + "good seeing you", + "goodbye" + ], + [ + "later, thanks for chatting", + "goodbye" + ], + [ + "adios", + "goodbye" + ], + [ + "great talk, take it easy", + "goodbye" + ], + [ + "see ya", + "goodbye" + ], + [ + "great chat, talk to you later", + "goodbye" + ], + [ + "nice talk, talk to you later", + "goodbye" + ], + [ + "thanks for chatting, later", + "goodbye" + ], + [ + "goodbye to you", + "goodbye" + ], + [ + "i must say goodbye", + "goodbye" + ], + [ + "i'm saying goodbye now", + "goodbye" + ], + [ + "it is time to say goodbye", + "goodbye" + ], + [ + "i have to say goodbye", + "goodbye" + ], + [ + "cya later", + "goodbye" + ], + [ + "i enjoyed talking to you", + "goodbye" + ], + [ + "thanks for talking", + "goodbye" + ], + [ + "it was good chatting", + "goodbye" + ], + [ + "it was nice chatting with you", + "goodbye" + ], + [ + "always nice to talk to you", + "goodbye" + ], + [ + "see you later, alligator", + "goodbye" + ], + [ + "good night", + "goodbye" + ], + [ + "it was nice to get in touch", + "goodbye" + ], + [ + "see you soon", + "goodbye" + ], + [ + "later gator!", + "goodbye" + ], + [ + "it was nice to talk it out with you", + "goodbye" + ], + [ + "it was nice to converse with you", + "goodbye" + ], + [ + "ill see you around", + "goodbye" + ], + [ + "take it easy!", + "goodbye" + ], + [ + "later gater", + "goodbye" + ], + [ + "it was nice to speak with you", + "goodbye" + ], + [ + "see you later alligator", + "goodbye" + ], + [ + "fairwell", + "goodbye" + ], + [ + "have a good one", + "goodbye" + ], + [ + "peace", + "goodbye" + ], + [ + "bye for now", + "goodbye" + ], + [ + "thanks, bye", + "goodbye" + ], + [ + "i have to get going", + "goodbye" + ], + [ + "talk to you later!", + "goodbye" + ], + [ + "i\u2019ll be leaving now", + "goodbye" + ], + [ + "i\u2019m leaving-goodbye!", + "goodbye" + ], + [ + "thanks for talking to me", + "goodbye" + ], + [ + "it was really nice to be able to chat with you", + "goodbye" + ], + [ + "it was good to talk to you today", + "goodbye" + ], + [ + "it was great to have this conversation with you", + "goodbye" + ], + [ + "it was nice to catch up with you", + "goodbye" + ], + [ + "it was enjoyable talking with you", + "goodbye" + ], + [ + "it was great chatting with you", + "goodbye" + ], + [ + "it was cool talking with you", + "goodbye" + ], + [ + "it was pleasant conversing with you", + "goodbye" + ], + [ + "good bye my friend", + "goodbye" + ], + [ + "i need to go now", + "goodbye" + ], + [ + "see you again soon", + "goodbye" + ], + [ + "i've got to run now", + "goodbye" + ], + [ + "goodbye!", + "goodbye" + ], + [ + "i had fun speaking with you", + "goodbye" + ], + [ + "bye!", + "goodbye" + ], + [ + "later!", + "goodbye" + ], + [ + "adios!", + "goodbye" + ], + [ + "until next time!", + "goodbye" + ], + [ + "farewell!", + "goodbye" + ], + [ + "it was enjoyable to chat with you", + "goodbye" + ], + [ + "i'm outta here!", + "goodbye" + ], + [ + "it was pleasant having a conversation with you", + "goodbye" + ], + [ + "bye now", + "goodbye" + ], + [ + "buhbye", + "goodbye" + ], + [ + "see you in a while", + "goodbye" + ], + [ + "see you around", + "goodbye" + ], + [ + "nice to see you again", + "goodbye" + ], + [ + "nice to see you", + "goodbye" + ], + [ + "talk later", + "goodbye" + ], + [ + "tootles", + "goodbye" + ], + [ + "peace out", + "goodbye" + ], + [ + "goodbye for now ai", + "goodbye" + ], + [ + "ai goodbye", + "goodbye" + ], + [ + "i'll talk to you later ai", + "goodbye" + ], + [ + "we'll talk later ai", + "goodbye" + ], + [ + "i have to go ai goodbye", + "goodbye" + ], + [ + "bye bye!", + "goodbye" + ], + [ + "see you later!", + "goodbye" + ], + [ + "why is there a hold on my american saving bank account", + "account_blocked" + ], + [ + "i am nost sure why my account is blocked", + "account_blocked" + ], + [ + "why is there a hold on my capital one checking account", + "account_blocked" + ], + [ + "i think my account is blocked but i do not know the reason", + "account_blocked" + ], + [ + "can you tell me why is my bank account frozen", + "account_blocked" + ], + [ + "why is there a hold on my edward jones account", + "account_blocked" + ], + [ + "why am i locked out of my bank account", + "account_blocked" + ], + [ + "why in the world am i locked out of my bank account", + "account_blocked" + ], + [ + "what is the reason for frozen status on my bank account", + "account_blocked" + ], + [ + "check for why is my bank account frozen", + "account_blocked" + ], + [ + "i don't know the reason my account is blocked", + "account_blocked" + ], + [ + "find out for me why is my bank account frozen", + "account_blocked" + ], + [ + "can you find out why is my bank account frozen", + "account_blocked" + ], + [ + "why is there a hold on my discover account", + "account_blocked" + ], + [ + "tell me why am i locked out of my bank account", + "account_blocked" + ], + [ + "what is the reason i am locked out of my bank account", + "account_blocked" + ], + [ + "why is my account blocked", + "account_blocked" + ], + [ + "find out the reason why am i locked out of my bank account", + "account_blocked" + ], + [ + "i think my account is block but i am not sure why", + "account_blocked" + ], + [ + "why is there a hold on my charles swab account", + "account_blocked" + ], + [ + "my chase account has a hold why", + "account_blocked" + ], + [ + "what's the reason for a hold on my wells fargo account", + "account_blocked" + ], + [ + "can you find the reason for the block on my account", + "account_blocked" + ], + [ + "there's a hold on my chase account, but why", + "account_blocked" + ], + [ + "tell me the reason there is a hold or block on my account", + "account_blocked" + ], + [ + "why does my credit union account have a hold on it", + "account_blocked" + ], + [ + "figure out why there is a block on my account please", + "account_blocked" + ], + [ + "why am i seeing a hold on my boa account", + "account_blocked" + ], + [ + "my account has been blocked, but i have no idea why", + "account_blocked" + ], + [ + "why is there a block on my account", + "account_blocked" + ], + [ + "can you please unlock my bank account", + "account_blocked" + ], + [ + "please let me into my bank account", + "account_blocked" + ], + [ + "why cannot i take any money out from my bank account", + "account_blocked" + ], + [ + "what was the reason my bank account was frozen", + "account_blocked" + ], + [ + "who froze my bank account", + "account_blocked" + ], + [ + "who can i talk to right away about the current freeze on my account", + "account_blocked" + ], + [ + "my checking account has a hold on it and i need to know why", + "account_blocked" + ], + [ + "why is my bank account stopping all transactions from going through", + "account_blocked" + ], + [ + "i need to know why my bank account is blocking all of activity", + "account_blocked" + ], + [ + "can you find out what triggered a hold on my bank account", + "account_blocked" + ], + [ + "can i talk to someone about why there is a hold on my checking account", + "account_blocked" + ], + [ + "what caused a freeze to be put on my bank account", + "account_blocked" + ], + [ + "my account has a hold on it and i can't access my funds, why", + "account_blocked" + ], + [ + "is there a reason that my bank account has a freeze on it", + "account_blocked" + ], + [ + "what would cause my bank account to be frozen", + "account_blocked" + ], + [ + "do you know why i can't log into my bank account", + "account_blocked" + ], + [ + "why can't i get into my account", + "account_blocked" + ], + [ + "did i do something to get my bank account frozen", + "account_blocked" + ], + [ + "was my bank account frozen for a specific reason", + "account_blocked" + ], + [ + "why are the funds in my bank account frozen", + "account_blocked" + ], + [ + "what would cause me to be locked out of my bank account", + "account_blocked" + ], + [ + "why am i unable to access my bank account", + "account_blocked" + ], + [ + "why is my bank account frozen", + "account_blocked" + ], + [ + "why would i have been locked out of my own account", + "account_blocked" + ], + [ + "can you explain to me why my bank account might be frozen", + "account_blocked" + ], + [ + "i am very confused about why or how my bank would lock me out of my account", + "account_blocked" + ], + [ + "why would the bank have frozen my account", + "account_blocked" + ], + [ + "do you know why the bank put a hold on my joint checking account", + "account_blocked" + ], + [ + "i don't understand why there is a hold on my retirement fund account", + "account_blocked" + ], + [ + "can you explain why there is a hold on my savings account", + "account_blocked" + ], + [ + "what's the deal with my bank account being locked", + "account_blocked" + ], + [ + "what reason could the bank have had for blocking my account", + "account_blocked" + ], + [ + "why would a hold have been placed on my checking account", + "account_blocked" + ], + [ + "why on earth would a block have been placed on my account", + "account_blocked" + ], + [ + "i'm confused about the reason for my bank account being frozen", + "account_blocked" + ], + [ + "i don't understand why i have been barred from accessing my own account", + "account_blocked" + ], + [ + "i don't understand why my bank account is frozen right now", + "account_blocked" + ], + [ + "how come i am being denied access to my bank account", + "account_blocked" + ], + [ + "do you know why my account appears to be blocked", + "account_blocked" + ], + [ + "i am confused because my account seems to have been blocked for no reason", + "account_blocked" + ], + [ + "i am very confused about the block that seems to have been placed on my account why is it there", + "account_blocked" + ], + [ + "how is it possible that my account has been frozen", + "account_blocked" + ], + [ + "how come a hold was placed on my 401k account", + "account_blocked" + ], + [ + "could you please tell me, my wells fargo account, is there a hold and why", + "account_blocked" + ], + [ + "i am unable to complete my order, why could there be a hold on my wells fargo account", + "account_blocked" + ], + [ + "was a hold placed on my wells fargo account, and if so why", + "account_blocked" + ], + [ + "in regards to my wells fargo account, why is there a hold", + "account_blocked" + ], + [ + "why was a hold placed on my wells fargo account", + "account_blocked" + ], + [ + "call my bank customer service number", + "account_blocked" + ], + [ + "why is my account locked", + "account_blocked" + ], + [ + "what's with the block on my bank account", + "account_blocked" + ], + [ + "why did my bank account freeze", + "account_blocked" + ], + [ + "why'd they put a freeze on my bank account", + "account_blocked" + ], + [ + "why is my bank account blocking me", + "account_blocked" + ], + [ + "why can't i access my bank account", + "account_blocked" + ], + [ + "i think my account is blocked", + "account_blocked" + ], + [ + "for what reason is my account blocked", + "account_blocked" + ], + [ + "can you tell me why there's a hold on my mutualone account", + "account_blocked" + ], + [ + "why don't i have access to my bank account", + "account_blocked" + ], + [ + "why isn't it letting me into my bank account", + "account_blocked" + ], + [ + "my capital one account has a hold; why", + "account_blocked" + ], + [ + "why does my visa account have a hold on it", + "account_blocked" + ], + [ + "why am i seeing a hold on my charles schwab account", + "account_blocked" + ], + [ + "tell me about the hold on my chase account", + "account_blocked" + ], + [ + "can you tell me why my bank account is frozen", + "account_blocked" + ], + [ + "do you know why my account is blocked", + "account_blocked" + ], + [ + "help, my account is blocked", + "account_blocked" + ], + [ + "help me please, my account is blocked", + "account_blocked" + ], + [ + "help me unblock my account", + "account_blocked" + ], + [ + "my account is blocked, help me figure out why", + "account_blocked" + ], + [ + "which song is playing", + "what_song" + ], + [ + "what's this song called", + "what_song" + ], + [ + "what song is this", + "what_song" + ], + [ + "what's the name of this song", + "what_song" + ], + [ + "what is this song", + "what_song" + ], + [ + "can you tell me what song this is", + "what_song" + ], + [ + "which song is this", + "what_song" + ], + [ + "can you look up the name of this song", + "what_song" + ], + [ + "i'd like to know what this song is", + "what_song" + ], + [ + "can you tell me the name of this song", + "what_song" + ], + [ + "do you know what this song is", + "what_song" + ], + [ + "what's song am i hearing", + "what_song" + ], + [ + "tell me the song title", + "what_song" + ], + [ + "what's the title of this track", + "what_song" + ], + [ + "what song am i listening to", + "what_song" + ], + [ + "who sings this song", + "what_song" + ], + [ + "what's the name of what's playing on my speakers", + "what_song" + ], + [ + "what's this track", + "what_song" + ], + [ + "what's playing right now", + "what_song" + ], + [ + "what's the title of this", + "what_song" + ], + [ + "what's the name of this tune", + "what_song" + ], + [ + "what's the name of this release", + "what_song" + ], + [ + "what's the title of this tune", + "what_song" + ], + [ + "what track am i listening to", + "what_song" + ], + [ + "what's this jam called", + "what_song" + ], + [ + "what's this song", + "what_song" + ], + [ + "can you name the song on the speakers", + "what_song" + ], + [ + "who is this song that's on the stereo", + "what_song" + ], + [ + "can you give me the name of this tune", + "what_song" + ], + [ + "tell me what song this is", + "what_song" + ], + [ + "tell me the name of the song that is playing", + "what_song" + ], + [ + "tell me the name of this song", + "what_song" + ], + [ + "let me know what song is playing", + "what_song" + ], + [ + "help me to know what song is playing", + "what_song" + ], + [ + "i want to know what song is playing", + "what_song" + ], + [ + "i am wanting to know what song this is", + "what_song" + ], + [ + "i am needing to know what song is playing", + "what_song" + ], + [ + "could you let me know what song this is", + "what_song" + ], + [ + "i need to know what song this is", + "what_song" + ], + [ + "what is that song that's playing", + "what_song" + ], + [ + "what is the name of the song that's playing on the radio right now", + "what_song" + ], + [ + "what's the name of the song you're playing", + "what_song" + ], + [ + "what music is playing on the the bluetooth now", + "what_song" + ], + [ + "which song is playing now", + "what_song" + ], + [ + "can you tell me this song", + "what_song" + ], + [ + "name this song, please", + "what_song" + ], + [ + "what's the song currently playing", + "what_song" + ], + [ + "what's the name of the current song", + "what_song" + ], + [ + "what song is playing", + "what_song" + ], + [ + "what band is this", + "what_song" + ], + [ + "i like this song who is it by", + "what_song" + ], + [ + "what is the title of this track", + "what_song" + ], + [ + "tell me the artist currently playing", + "what_song" + ], + [ + "what's the artist's name of this song", + "what_song" + ], + [ + "what is the track title of the song playing", + "what_song" + ], + [ + "name the singer of this track", + "what_song" + ], + [ + "who sang this song", + "what_song" + ], + [ + "who plays this song", + "what_song" + ], + [ + "what's the now playing song that we are listening to", + "what_song" + ], + [ + "what's the current song that we are listening at this time", + "what_song" + ], + [ + "what's the name of the song that we are listening to", + "what_song" + ], + [ + "what's the song that we are listening at this moment", + "what_song" + ], + [ + "what's the song they are playing for us right now", + "what_song" + ], + [ + "what's the name of this song i'm listening to", + "what_song" + ], + [ + "what am i listening to", + "what_song" + ], + [ + "what is the current song", + "what_song" + ], + [ + "can you tell me what song i'm hearing", + "what_song" + ], + [ + "what am i hearing on the speakers now", + "what_song" + ], + [ + "what's this song playing", + "what_song" + ], + [ + "whats the name of the playing song", + "what_song" + ], + [ + "tell me this songs name", + "what_song" + ], + [ + "i need to know this song's name", + "what_song" + ], + [ + "i want to know the name of the song that's playing", + "what_song" + ], + [ + "can you tell me the mane of the song playing", + "what_song" + ], + [ + "i'd like to know this song's name", + "what_song" + ], + [ + "can you get me the name of this song", + "what_song" + ], + [ + "find out what this song is", + "what_song" + ], + [ + "i would like to know this song's title", + "what_song" + ], + [ + "i need to know what this song is called", + "what_song" + ], + [ + "tell me the title of this song", + "what_song" + ], + [ + "tell me this song's name", + "what_song" + ], + [ + "what is the song that's playing", + "what_song" + ], + [ + "tell me the song that's playing right now", + "what_song" + ], + [ + "do you know the name of this song", + "what_song" + ], + [ + "do you know what song this is", + "what_song" + ], + [ + "what is the name of this song", + "what_song" + ], + [ + "can you tell me the song we are listening to", + "what_song" + ], + [ + "which song are we listening to", + "what_song" + ], + [ + "what is the song that is currently playing", + "what_song" + ], + [ + "can you tell me what this song is", + "what_song" + ], + [ + "whats the name of this song", + "what_song" + ], + [ + "what is the title of this tune", + "what_song" + ], + [ + "what tune is this", + "what_song" + ], + [ + "what is that noise", + "what_song" + ], + [ + "what is playing", + "what_song" + ], + [ + "whats the title of this", + "what_song" + ], + [ + "whats the title of this song", + "what_song" + ], + [ + "the song on speaker is what like", + "what_song" + ], + [ + "the song on speaker is what", + "what_song" + ], + [ + "what is the song on speaker", + "what_song" + ], + [ + "are there any transaction fees associated with my chase card if i am in tokyo", + "international_fees" + ], + [ + "does my usaa card have international transaction fees", + "international_fees" + ], + [ + "does my bank of the west card have international transaction fees", + "international_fees" + ], + [ + "are there any transaction fees associated with my usaa card if i am in india", + "international_fees" + ], + [ + "does my navy federal card have international transaction fees", + "international_fees" + ], + [ + "does my chase card have international transaction fees", + "international_fees" + ], + [ + "are there any transaction fees associated with my navy federal card if i am in germany", + "international_fees" + ], + [ + "are there any transaction fees associated with my usaa card if i am in south korea", + "international_fees" + ], + [ + "does my bank of america card have international transaction fees", + "international_fees" + ], + [ + "are there any transaction fees associated with my navy federal card if i am in japan", + "international_fees" + ], + [ + "what are the fees for using my card in toronto", + "international_fees" + ], + [ + "do i incur extra fees if i use my card in london", + "international_fees" + ], + [ + "do travelers to egypt get hit with transaction fees if they're using a mastercard", + "international_fees" + ], + [ + "do i have to pay amex transaction fees in brazil", + "international_fees" + ], + [ + "if i use my card in denver will i get charged extra", + "international_fees" + ], + [ + "are there fees for using my card in tampa", + "international_fees" + ], + [ + "will my discover card ding me with transaction fees if i'm in aruba", + "international_fees" + ], + [ + "does bank of america charge transaction fees if you use it in canada", + "international_fees" + ], + [ + "will i pay extra if i use my card in juarez", + "international_fees" + ], + [ + "are there transaction fees for my visa if i'm in russia", + "international_fees" + ], + [ + "what is the surcharge for using my card in italy while i visit", + "international_fees" + ], + [ + "for my card is there a extra card while i'm staying in italy", + "international_fees" + ], + [ + "is there a surcharge for using my card in italy while i'm there", + "international_fees" + ], + [ + "will i get charged extra if i use my card while in italy", + "international_fees" + ], + [ + "how much is the charge of using my card in italy during my stay there", + "international_fees" + ], + [ + "what are the international transaction fees on my amex", + "international_fees" + ], + [ + "give me a list of international transaction fees for my amex", + "international_fees" + ], + [ + "what kind of international transaction fees are related to my amex", + "international_fees" + ], + [ + "will my amex institute international transaction fees on a charge", + "international_fees" + ], + [ + "can i see all the international transaction fees on my amex", + "international_fees" + ], + [ + "what are the fees to use my card in nigeria", + "international_fees" + ], + [ + "what are the foreign transaction fees for cuba", + "international_fees" + ], + [ + "what additional fees do you charge if i use my card in lisbon", + "international_fees" + ], + [ + "how much are the foreign transaction fees in brisbane", + "international_fees" + ], + [ + "what fees are charged if i use something in paris", + "international_fees" + ], + [ + "does visa charge transaction fees in the uk", + "international_fees" + ], + [ + "i need to know if there are transaction fees for my visa card in canada", + "international_fees" + ], + [ + "does american express charge transaction fees for iceland", + "international_fees" + ], + [ + "are there transaction fees charged to my discover card in japan", + "international_fees" + ], + [ + "are transaction fees charged for my aaa card in canada", + "international_fees" + ], + [ + "when i am in spain using my cmaden card, is there any transaction fee", + "international_fees" + ], + [ + "what are the transaction fee using our card in florence if any", + "international_fees" + ], + [ + "tell me if there is any transaction fee using royal card in europe", + "international_fees" + ], + [ + "are there any transaction fee if i use my boston private card in scotland", + "international_fees" + ], + [ + "i want to know if there is any transaction fee using washington federal card when i am in canada", + "international_fees" + ], + [ + "how much is the atm fee for my boa card in orlando, fl", + "international_fees" + ], + [ + "what's the transaction fee for my boa card in orlando, fl", + "international_fees" + ], + [ + "if i use my card in mexico, will there be added fees", + "international_fees" + ], + [ + "are there extra charges for using my card in mexico", + "international_fees" + ], + [ + "what, if any, are the charges for using my card in mexico", + "international_fees" + ], + [ + "is there a surcharge for using my card in mexico", + "international_fees" + ], + [ + "are there extra fees for using my card in mexico", + "international_fees" + ], + [ + "are there international transaction fees for using my chase card", + "international_fees" + ], + [ + "do i have to pay international transaction fees when i use my chase card", + "international_fees" + ], + [ + "what are my chase cards fees for international transactions", + "international_fees" + ], + [ + "how much are the international transaction fees for my chase card", + "international_fees" + ], + [ + "what are the international transaction fees for my chase card", + "international_fees" + ], + [ + "will i be charged if i use the card in germany", + "international_fees" + ], + [ + "will i be charged if i use the card in italy", + "international_fees" + ], + [ + "will i be charged if i use the card in france", + "international_fees" + ], + [ + "will i be charged if i use the card in australia", + "international_fees" + ], + [ + "will i be charged if i use the card in paris", + "international_fees" + ], + [ + "does my card charge if i use it in china", + "international_fees" + ], + [ + "is there a fee associated with use of my card in burkina faso", + "international_fees" + ], + [ + "is there a charge to use my card in japan", + "international_fees" + ], + [ + "if i use my card in tahiti, will i be charged", + "international_fees" + ], + [ + "does my card charge a fee for use in indonesia", + "international_fees" + ], + [ + "is there any transaction fees on my citibank card if used in spain", + "international_fees" + ], + [ + "how much can i expect in transaction fees for using my visa in portugal", + "international_fees" + ], + [ + "can you tell me if i will have any transactions fees for using my discover card in turkey", + "international_fees" + ], + [ + "i would like to know if there are any fees for using my capital one card in london, england", + "international_fees" + ], + [ + "are there any fees for using my amex in england", + "international_fees" + ], + [ + "are there any international transaction fees associated with my visa card", + "international_fees" + ], + [ + "does my amex card use international transaction fees", + "international_fees" + ], + [ + "will i receive a fee if i use my card in ireland", + "international_fees" + ], + [ + "if i use my card in mexico do i get an extra fee", + "international_fees" + ], + [ + "will i be charged extra for using my card in spain", + "international_fees" + ], + [ + "is there an extra fee for using my card in costa rica", + "international_fees" + ], + [ + "will my mastercard charge me a fee for international transactions", + "international_fees" + ], + [ + "will i get a fee for international transactions with my visa card", + "international_fees" + ], + [ + "do i get charged more for using my card in canada", + "international_fees" + ], + [ + "does my mastercard charge international transaction fees", + "international_fees" + ], + [ + "how much do you charge if i use my card in japan", + "international_fees" + ], + [ + "will i be charged for using my card in japan", + "international_fees" + ], + [ + "do i need to pay any fee if i use my card in japan", + "international_fees" + ], + [ + "do you charge me if i use my card in japan", + "international_fees" + ], + [ + "will you charge me if i use my card in japan", + "international_fees" + ], + [ + "show me the international transactions fees for the zenith card", + "international_fees" + ], + [ + "what are the international transactions fees for my industrial bank card", + "international_fees" + ], + [ + "are there many international transactions fees for the freedom card", + "international_fees" + ], + [ + "are there international transactions fees for rainbow card", + "international_fees" + ], + [ + "does the national card have international transactions fees and how much", + "international_fees" + ], + [ + "will i be charged if i use my card in dublin", + "international_fees" + ], + [ + "will i be charged if i use my card in detroit", + "international_fees" + ], + [ + "are there any transaction fees associated with my amex card if i am in the uk", + "international_fees" + ], + [ + "will i be charged if i use my card in mexico", + "international_fees" + ], + [ + "will i be charged if i use my card in canada", + "international_fees" + ], + [ + "will i be charged if i use my card in france", + "international_fees" + ], + [ + "are there any transaction fees associated with my amex card if i am in france", + "international_fees" + ], + [ + "are there any transaction fees associated with my amex card if i am in belgium", + "international_fees" + ], + [ + "tell me when my car last had its oil changed", + "last_maintenance" + ], + [ + "when did i last do maintenance on my car", + "last_maintenance" + ], + [ + "when did i last take my car in for maintenance", + "last_maintenance" + ], + [ + "can you find the date of my last oil change", + "last_maintenance" + ], + [ + "when did i last bring my car in to have it looked at", + "last_maintenance" + ], + [ + "find the date of the last oil swap for my car", + "last_maintenance" + ], + [ + "what was the date when i last had my car inspected", + "last_maintenance" + ], + [ + "how long's it been since my car was at autozone", + "last_maintenance" + ], + [ + "what's the amount of time since having my car given a once over by a mechanic", + "last_maintenance" + ], + [ + "when did i last have my vehicle checked on", + "last_maintenance" + ], + [ + "when did i last bring my car in to get looked over", + "last_maintenance" + ], + [ + "what date did i last take my car in", + "last_maintenance" + ], + [ + "how long's it been since i had my car serviced", + "last_maintenance" + ], + [ + "when was the last time i changed my oil", + "last_maintenance" + ], + [ + "when did i last have a mechanic check out my car", + "last_maintenance" + ], + [ + "when did i last service my car with an oil change", + "last_maintenance" + ], + [ + "what was the last time i had my car at the dealer for repairs", + "last_maintenance" + ], + [ + "when did i last have my car fixed", + "last_maintenance" + ], + [ + "what day did i last have a technician check out my vehicle", + "last_maintenance" + ], + [ + "when did i last have my vehicle serviced", + "last_maintenance" + ], + [ + "my car was looked at when", + "last_maintenance" + ], + [ + "let me know when my car was last looked at", + "last_maintenance" + ], + [ + "when did my car get looked at last", + "last_maintenance" + ], + [ + "tell me when someone looked at my car last", + "last_maintenance" + ], + [ + "what date did i have my oil changed last", + "last_maintenance" + ], + [ + "what day did i change my oil", + "last_maintenance" + ], + [ + "do you remember when i last changed my oil", + "last_maintenance" + ], + [ + "was my last oil change on wednesday", + "last_maintenance" + ], + [ + "when was the last time i had an oil change", + "last_maintenance" + ], + [ + "how long ago was my car last in the shop", + "last_maintenance" + ], + [ + "when was the last time i got my oil changed", + "last_maintenance" + ], + [ + "do you have a date for the last time the car was in the shop", + "last_maintenance" + ], + [ + "what date was my car last at the mechanics", + "last_maintenance" + ], + [ + "how long has it been since my oil was changed", + "last_maintenance" + ], + [ + "how long has it been since my car was in the shop", + "last_maintenance" + ], + [ + "when did i get my last oil change", + "last_maintenance" + ], + [ + "what date was my oil last changed", + "last_maintenance" + ], + [ + "do you remember my last oil change", + "last_maintenance" + ], + [ + "when was my car in the shop last", + "last_maintenance" + ], + [ + "when did i last have car maintenance", + "last_maintenance" + ], + [ + "when was my last maintenance on my car in the shop", + "last_maintenance" + ], + [ + "when was my car last repaired", + "last_maintenance" + ], + [ + "when did my oil last get changed", + "last_maintenance" + ], + [ + "when were my tires changed", + "last_maintenance" + ], + [ + "when was my car last worked on", + "last_maintenance" + ], + [ + "i can't remember when my car last went to the shop, can you find out for me", + "last_maintenance" + ], + [ + "find out when my most recent oil change occurred", + "last_maintenance" + ], + [ + "check to see when my car was last in the shop", + "last_maintenance" + ], + [ + "when was my most recent oil change", + "last_maintenance" + ], + [ + "i need to know the date of my car's last visit to the shop please", + "last_maintenance" + ], + [ + "look up the date of my car's most recent visit to the shop", + "last_maintenance" + ], + [ + "i need to know when i last took my car in for a check up", + "last_maintenance" + ], + [ + "please tell me when the last time was that my car was in the shop", + "last_maintenance" + ], + [ + "look up the date of my last oil change", + "last_maintenance" + ], + [ + "i need you to look up the date of my car's last visit to the shop", + "last_maintenance" + ], + [ + "find out the last time i had my car checked", + "last_maintenance" + ], + [ + "do you know when my car was last looked at", + "last_maintenance" + ], + [ + "do you know when i last took my car in to the shop", + "last_maintenance" + ], + [ + "i can't remember when my car was last serviced, can you find out for me", + "last_maintenance" + ], + [ + "find out how long it has been since my car was last in the shop", + "last_maintenance" + ], + [ + "please tell me the last time i took my car to the shop", + "last_maintenance" + ], + [ + "how long has it been since my car was last looked at", + "last_maintenance" + ], + [ + "tell me the date of my last car check up", + "last_maintenance" + ], + [ + "i need to know when my oil was last changed", + "last_maintenance" + ], + [ + "dates for my car in the shop", + "last_maintenance" + ], + [ + "last time car was in shop", + "last_maintenance" + ], + [ + "last incident of my car in the shop", + "last_maintenance" + ], + [ + "when was my car in the shop", + "last_maintenance" + ], + [ + "when did my car get serviced last", + "last_maintenance" + ], + [ + "how long has it been since my car was looked at", + "last_maintenance" + ], + [ + "how long ago did my car get looked at", + "last_maintenance" + ], + [ + "what was the date of my last auto appointment", + "last_maintenance" + ], + [ + "when was my last car service date", + "last_maintenance" + ], + [ + "when did i take to car to the auto shop", + "last_maintenance" + ], + [ + "when did i have my car looked at", + "last_maintenance" + ], + [ + "when did i last get my car tuned up", + "last_maintenance" + ], + [ + "when did i go to the mechanic", + "last_maintenance" + ], + [ + "when did i take my car to the mechanic", + "last_maintenance" + ], + [ + "do you know how long its been since i had my oil changed and a tune up", + "last_maintenance" + ], + [ + "when did last go to the auto repair shop", + "last_maintenance" + ], + [ + "i need to know when was the last time i had my car checked out for a tune up", + "last_maintenance" + ], + [ + "tell me the last time i had my car checked out at sam's repair shop", + "last_maintenance" + ], + [ + "when did i take my car to paul's auto last", + "last_maintenance" + ], + [ + "when was the last time my car was in the shop", + "last_maintenance" + ], + [ + "tell me when was car in shop", + "last_maintenance" + ], + [ + "so when was car in shop", + "last_maintenance" + ], + [ + "when was the car in the shop", + "last_maintenance" + ], + [ + "you need to tell me when was car in shop", + "last_maintenance" + ], + [ + "i need to know when i last carried my car to the shop", + "last_maintenance" + ], + [ + "what's the date on which my last oil change occurred", + "last_maintenance" + ], + [ + "what is the last date of service on my car", + "last_maintenance" + ], + [ + "can you remind me of when i last had an oil change", + "last_maintenance" + ], + [ + "please find the date of my last oil change", + "last_maintenance" + ], + [ + "search and tell me when my most recent oil change happened, please", + "last_maintenance" + ], + [ + "when did i most recently have my car in the shop", + "last_maintenance" + ], + [ + "i last took my car to the shop, when", + "last_maintenance" + ], + [ + "i need to know when it was that i last took my car to have the oil changed", + "last_maintenance" + ], + [ + "how long has it been since my car was last in the shop", + "last_maintenance" + ], + [ + "check my calendar for the date that my care was last serviced", + "last_maintenance" + ], + [ + "how long has it been since my last auto maintenance", + "last_maintenance" + ], + [ + "when is today's meeting with john", + "meeting_schedule" + ], + [ + "when is my meeting with dan scheduled for", + "meeting_schedule" + ], + [ + "when is the meeting with homer scheduled for", + "meeting_schedule" + ], + [ + "do i have any meetings with stan today", + "meeting_schedule" + ], + [ + "how many meetings do i have scheduled between 10 and 3", + "meeting_schedule" + ], + [ + "on what day is my meeting with dr lee", + "meeting_schedule" + ], + [ + "tell me how many meetings with pete i have for today", + "meeting_schedule" + ], + [ + "about how many meetings am i attending between 12 and 3 today", + "meeting_schedule" + ], + [ + "how many total meetings will i have between 2 and 5", + "meeting_schedule" + ], + [ + "can you tell me what time i am meeting with sarah today", + "meeting_schedule" + ], + [ + "when is that meeting with kara", + "meeting_schedule" + ], + [ + "do i have meetings from 1 to 4 today", + "meeting_schedule" + ], + [ + "do i have many meetings today between 2 and 4", + "meeting_schedule" + ], + [ + "what time is my meeting with steve", + "meeting_schedule" + ], + [ + "for today only, how many meetings are with jake", + "meeting_schedule" + ], + [ + "do i have any meetings with mark today", + "meeting_schedule" + ], + [ + "when is my meeting with bob", + "meeting_schedule" + ], + [ + "tell me when my meeting is scheduled with roger", + "meeting_schedule" + ], + [ + "when am i gonna be meeting roger", + "meeting_schedule" + ], + [ + "do i have any meetings today between 5 and 6", + "meeting_schedule" + ], + [ + "do i have any meetings today between 2 and 3", + "meeting_schedule" + ], + [ + "do i have any meetings with ben today", + "meeting_schedule" + ], + [ + "do i have any meetings with roger today", + "meeting_schedule" + ], + [ + "do i have any meetings today between 8 and 9", + "meeting_schedule" + ], + [ + "when is my meeting with roger", + "meeting_schedule" + ], + [ + "i wanna know when my meeting is with dan", + "meeting_schedule" + ], + [ + "do i have any meetings with michael today", + "meeting_schedule" + ], + [ + "do i have any meetings with dave today", + "meeting_schedule" + ], + [ + "do i have any meetings today between 4 and 5", + "meeting_schedule" + ], + [ + "do i have any meetings today between 6 and 7", + "meeting_schedule" + ], + [ + "tell me the meeting schedule for the day", + "meeting_schedule" + ], + [ + "what is the meeting schedule today", + "meeting_schedule" + ], + [ + "tell me the meeting schdule please", + "meeting_schedule" + ], + [ + "what is my meeting schedule today", + "meeting_schedule" + ], + [ + "what is my meeting schedule like for the day", + "meeting_schedule" + ], + [ + "share my meeting schedule with me", + "meeting_schedule" + ], + [ + "do i have meetings scheduled today", + "meeting_schedule" + ], + [ + "what kind of meetings do i have today", + "meeting_schedule" + ], + [ + "what meetings do i have scheduled today", + "meeting_schedule" + ], + [ + "go over my meeting schedule with me please", + "meeting_schedule" + ], + [ + "do i have to be at any meetings today", + "meeting_schedule" + ], + [ + "any meetings on the schedule today", + "meeting_schedule" + ], + [ + "what meetings are on my schedule today", + "meeting_schedule" + ], + [ + "meetings today", + "meeting_schedule" + ], + [ + "what meetings are scheduled for today", + "meeting_schedule" + ], + [ + "does today's schedule include any meetings", + "meeting_schedule" + ], + [ + "are there any meetings on the calendar for today", + "meeting_schedule" + ], + [ + "do i have any meeting to go to today", + "meeting_schedule" + ], + [ + "what meetings do i have today", + "meeting_schedule" + ], + [ + "what meetings are on my calendar", + "meeting_schedule" + ], + [ + "when do i have meetings today", + "meeting_schedule" + ], + [ + "what's on my meeting schedule today", + "meeting_schedule" + ], + [ + "what times are my meetings", + "meeting_schedule" + ], + [ + "what are my meetings today", + "meeting_schedule" + ], + [ + "which meetings do i have today", + "meeting_schedule" + ], + [ + "are there any meetings i have today", + "meeting_schedule" + ], + [ + "bring up any mettings for today", + "meeting_schedule" + ], + [ + "when are my meetings today between noon and one", + "meeting_schedule" + ], + [ + "am i scheduled for any meetings between noon and one", + "meeting_schedule" + ], + [ + "how many meetings do i have today between noon and one", + "meeting_schedule" + ], + [ + "what meetings do i have today between noon and one", + "meeting_schedule" + ], + [ + "are there meetings schedules today between noon and one", + "meeting_schedule" + ], + [ + "do i have any meetings planned for today", + "meeting_schedule" + ], + [ + "are any meetings scheduled for today", + "meeting_schedule" + ], + [ + "do i have any meetings scheduled for today", + "meeting_schedule" + ], + [ + "are any meetings booked for today", + "meeting_schedule" + ], + [ + "what time i have to meet mr accountant", + "meeting_schedule" + ], + [ + "is mr ceo waiting me now", + "meeting_schedule" + ], + [ + "do i have to meet the dev squad to day", + "meeting_schedule" + ], + [ + "give me a run down of my meeting schedules for the day", + "meeting_schedule" + ], + [ + "let me know every meeting i have scheduled today", + "meeting_schedule" + ], + [ + "do you know if i have any meetings set up with travis today", + "meeting_schedule" + ], + [ + "do you see any meetings with john on my schedule today", + "meeting_schedule" + ], + [ + "check to see if i have any meetings with peter today", + "meeting_schedule" + ], + [ + "am i scheduled to meet with heather today", + "meeting_schedule" + ], + [ + "what meetings do i have on my agenda today", + "meeting_schedule" + ], + [ + "have i got any meetings today with sara", + "meeting_schedule" + ], + [ + "tell me what my day looks like today in terms of meetings", + "meeting_schedule" + ], + [ + "what scheduled meetings do i have today", + "meeting_schedule" + ], + [ + "are there any meetings on my calendar today", + "meeting_schedule" + ], + [ + "am i scheduled for any gatherings today", + "meeting_schedule" + ], + [ + "is the gang getting together this afternoon", + "meeting_schedule" + ], + [ + "do i have any meetings coming up today", + "meeting_schedule" + ], + [ + "please list my meetings for today", + "meeting_schedule" + ], + [ + "i need to know if i have any meetings scheduled for today", + "meeting_schedule" + ], + [ + "please list my meetings for today from 8:00 am to 2:00 pm", + "meeting_schedule" + ], + [ + "did i schedule any meetings for today", + "meeting_schedule" + ], + [ + "tell me my scheduled meetings for today only, please", + "meeting_schedule" + ], + [ + "let me hear all meetings for today", + "meeting_schedule" + ], + [ + "do i have any meetings scheduled between 3 and 5 pm today", + "meeting_schedule" + ], + [ + "what meetings are on my schedule today between 1:00 pm and 4:00 pm", + "meeting_schedule" + ], + [ + "are there any meetings for today on my calendar", + "meeting_schedule" + ], + [ + "tell me today's scheduled conferences from noon on wards", + "meeting_schedule" + ], + [ + "is a meeting with ruth on my schedule today", + "meeting_schedule" + ], + [ + "what do i have going on between 9 and 10", + "meeting_schedule" + ], + [ + "do i meet with joan today", + "meeting_schedule" + ], + [ + "when's my meeting with richard", + "meeting_schedule" + ], + [ + "what meetings do i have today from 3 to 4", + "meeting_schedule" + ], + [ + "when is my meeting with john", + "meeting_schedule" + ], + [ + "what is on my schedule between 10:00 am and 11:00 am", + "meeting_schedule" + ], + [ + "what do you put in chicken noodle casserole", + "ingredients_list" + ], + [ + "what goes into chicken noodle casserole", + "ingredients_list" + ], + [ + "what do i need to make chicken noodle casserole", + "ingredients_list" + ], + [ + "how do you make chicken noodle casserole", + "ingredients_list" + ], + [ + "chicken noodle casserole is made from what", + "ingredients_list" + ], + [ + "tell me what ingredients i will need to make this meal", + "ingredients_list" + ], + [ + "what are the ingredients of spaghetti", + "ingredients_list" + ], + [ + "what ingredients are present in marshmallows", + "ingredients_list" + ], + [ + "tell me the ingredients in pizza", + "ingredients_list" + ], + [ + "what ingredients are found in hunan chicken", + "ingredients_list" + ], + [ + "i need to know the ingredients in a hamburger", + "ingredients_list" + ], + [ + "show me the ingredients that i need for ceviche", + "ingredients_list" + ], + [ + "do you have a list of ingredients that i'll need for blondies", + "ingredients_list" + ], + [ + "give me a list of ingredients needed for pizza dough", + "ingredients_list" + ], + [ + "tell me what ingredients i need for carne asada", + "ingredients_list" + ], + [ + "what ingredients are required for chicken noodle soup", + "ingredients_list" + ], + [ + "what ingredients are in salsa", + "ingredients_list" + ], + [ + "what ingredients are in cheese cake", + "ingredients_list" + ], + [ + "what ingredients are in sugar cookies", + "ingredients_list" + ], + [ + "what ingredients are in spinach dip", + "ingredients_list" + ], + [ + "what ingredients are in coffee cakes", + "ingredients_list" + ], + [ + "what ingredients do i need to make egg salad", + "ingredients_list" + ], + [ + "what would i need if i wanted to make chicken marsala", + "ingredients_list" + ], + [ + "what ingredients are in antipasto salad", + "ingredients_list" + ], + [ + "what do i need to make chicken salad", + "ingredients_list" + ], + [ + "what kind of stuff is in potato salad", + "ingredients_list" + ], + [ + "ingredients needed to make a mexican lasagna", + "ingredients_list" + ], + [ + "what are all of the ingredients for brownies from scratch", + "ingredients_list" + ], + [ + "how can i make my own doughnuts/what ingredients", + "ingredients_list" + ], + [ + "what stuff would i need to make tortellini", + "ingredients_list" + ], + [ + "what do i need to make a cake", + "ingredients_list" + ], + [ + "what all is in gumbo", + "ingredients_list" + ], + [ + "what ingredients do i need for gumbo", + "ingredients_list" + ], + [ + "which ingredients does gumbo have", + "ingredients_list" + ], + [ + "what are the ingredients in gumbo", + "ingredients_list" + ], + [ + "what is gumbo made of", + "ingredients_list" + ], + [ + "what ingredients do i need to bake a cake", + "ingredients_list" + ], + [ + "i want to cook a quick breakfast what ingredients do i need", + "ingredients_list" + ], + [ + "what ingredients are needed for shrimp cocktail", + "ingredients_list" + ], + [ + "i\u2019m making spaghetti what ingredients do i need", + "ingredients_list" + ], + [ + "i want to make a meat stew what ingredients do i need", + "ingredients_list" + ], + [ + "what goes in broccoli cheddar soup", + "ingredients_list" + ], + [ + "show me the recipe for broccoli cheddar soup", + "ingredients_list" + ], + [ + "please list ingredients for broccoli cheddar soup", + "ingredients_list" + ], + [ + "what ingredients do i need to make broccoli cheddar soup", + "ingredients_list" + ], + [ + "i am making broccoli cheddar soup, what ingredients do i need", + "ingredients_list" + ], + [ + "what ingredients do i need for philly cheesesteaks", + "ingredients_list" + ], + [ + "what do i need to cook chicken soup", + "ingredients_list" + ], + [ + "what do i need to get to make lasagne", + "ingredients_list" + ], + [ + "what should i buy to make burritos tonight", + "ingredients_list" + ], + [ + "what ingredients do i need for tacos", + "ingredients_list" + ], + [ + "what are the ingredients to make shepherd's pie", + "ingredients_list" + ], + [ + "what do i need to buy to make a spaghetti", + "ingredients_list" + ], + [ + "what do i need to make spaghetti", + "ingredients_list" + ], + [ + "what is the ingredient list for an omelette", + "ingredients_list" + ], + [ + "what do i need if i want to make lasagna", + "ingredients_list" + ], + [ + "what do i need to make a cajun chili", + "ingredients_list" + ], + [ + "what goes into a strawberry smoothie", + "ingredients_list" + ], + [ + "what should i grab to make a german chocolate cake", + "ingredients_list" + ], + [ + "what do you put in chili", + "ingredients_list" + ], + [ + "what do you need to make pancakes", + "ingredients_list" + ], + [ + "what stuff do you dump in an omelette", + "ingredients_list" + ], + [ + "what do you use when you make a chef's salad", + "ingredients_list" + ], + [ + "what do you purchase to put in a shepherd's pie", + "ingredients_list" + ], + [ + "what do you put in a tibetan omelette", + "ingredients_list" + ], + [ + "what do you mix to make a chocolate cake", + "ingredients_list" + ], + [ + "what does subway use to make a cold cut combo", + "ingredients_list" + ], + [ + "what do you need to make general tsao's chicken", + "ingredients_list" + ], + [ + "what do you put in avocado dip", + "ingredients_list" + ], + [ + "what ingredients are in sushi", + "ingredients_list" + ], + [ + "what does it take to make buttermilk pancakes", + "ingredients_list" + ], + [ + "what do i need to buy to make pierogi", + "ingredients_list" + ], + [ + "what do i need to get to put into homemade tortillas", + "ingredients_list" + ], + [ + "what food items do you put in english breakfast", + "ingredients_list" + ], + [ + "what foods do i buy to put into a korean dinner", + "ingredients_list" + ], + [ + "what do you need to make dandelion wine properly", + "ingredients_list" + ], + [ + "what ingredients are in cake", + "ingredients_list" + ], + [ + "what ingredients are in tortillas", + "ingredients_list" + ], + [ + "what ingredients are in mashed potatoes", + "ingredients_list" + ], + [ + "what ingredients are in dough", + "ingredients_list" + ], + [ + "what ingredients are in chips", + "ingredients_list" + ], + [ + "the ingredients in pizza are what", + "ingredients_list" + ], + [ + "list the ingredients in pizza", + "ingredients_list" + ], + [ + "which ingredients are in pizza", + "ingredients_list" + ], + [ + "pizza has which ingredients", + "ingredients_list" + ], + [ + "the ingredients in pizza are which ones", + "ingredients_list" + ], + [ + "what ingredients do i need to make salmon salad", + "ingredients_list" + ], + [ + "what ingredients go in spaghetti", + "ingredients_list" + ], + [ + "what ingredients do i need to make pizza", + "ingredients_list" + ], + [ + "what ingredients do i need to make pancakes", + "ingredients_list" + ], + [ + "what ingredients do i need to make potato skins", + "ingredients_list" + ], + [ + "what ingredients go in mashed potato", + "ingredients_list" + ], + [ + "what ingredients go in potato skins", + "ingredients_list" + ], + [ + "what ingredients do i need to make spaghetti", + "ingredients_list" + ], + [ + "what ingredients go in a milky way", + "ingredients_list" + ], + [ + "what ingredients go in pizza", + "ingredients_list" + ], + [ + "what ingredients are necessary for a steak", + "ingredients_list" + ], + [ + "in making an omelette, what ingredients do i need", + "ingredients_list" + ], + [ + "in terms of making scrambled eggs, what ingredients do i need", + "ingredients_list" + ], + [ + "what ingredients do i need for chicken breast", + "ingredients_list" + ], + [ + "i'm afraid this charge on my account is fraud", + "report_fraud" + ], + [ + "i think there's fraud on my account", + "report_fraud" + ], + [ + "i think i have fraud on my account from walmart", + "report_fraud" + ], + [ + "there's been some fraudulent activity on my card", + "report_fraud" + ], + [ + "i'm pretty sure this charge from sam's club is fraudulent", + "report_fraud" + ], + [ + "i'm pretty sure this charge is fraudulent", + "report_fraud" + ], + [ + "i need to report some fraudulent card activity", + "report_fraud" + ], + [ + "there are some questionable charges on my card", + "report_fraud" + ], + [ + "i think there's a fraudulent transaction on my account", + "report_fraud" + ], + [ + "there's a shady charge from comcast on my account", + "report_fraud" + ], + [ + "my account has a fraudulent transaction i think", + "report_fraud" + ], + [ + "can you help me with some fraudulent charges on my card", + "report_fraud" + ], + [ + "i think i've been the victim of fraud", + "report_fraud" + ], + [ + "i'd like to report a fraudulent charge from people's natural gas", + "report_fraud" + ], + [ + "this costco charge looks fraudulent", + "report_fraud" + ], + [ + "there's fraudulent transaction going on", + "report_fraud" + ], + [ + "i may have a fraudulent transaction", + "report_fraud" + ], + [ + "i suspect some suspicious activity", + "report_fraud" + ], + [ + "there seems to be fraudulent activity", + "report_fraud" + ], + [ + "i suspect fraudulent transaction", + "report_fraud" + ], + [ + "i need to report fraudulent activity on my card", + "report_fraud" + ], + [ + "i'm reporting fraudelent activity on my card", + "report_fraud" + ], + [ + "there has been fraudulent activity on my card and i need to report it", + "report_fraud" + ], + [ + "i need to make a report due to fraudulent activity on my card", + "report_fraud" + ], + [ + "due to fraudulent activity on my card i need to make a report", + "report_fraud" + ], + [ + "how do i report a fraudulent charge on my visa", + "report_fraud" + ], + [ + "how do i report fraud on my discover card", + "report_fraud" + ], + [ + "how do i let visa know about a charge i didn't make", + "report_fraud" + ], + [ + "help me tell visa about fraud on my account", + "report_fraud" + ], + [ + "how do i tell mastercard about a fraudulent charge", + "report_fraud" + ], + [ + "i have activity on my bank of america card i don't recognize", + "report_fraud" + ], + [ + "i think a thief used my card", + "report_fraud" + ], + [ + "i have suspicious charges on my discovery card", + "report_fraud" + ], + [ + "i believe there's fraud on my card", + "report_fraud" + ], + [ + "i need to report fraudulent activity on my mastercard", + "report_fraud" + ], + [ + "i think someone's using my visa card without my permission", + "report_fraud" + ], + [ + "i have transactions on my card that aren't mine", + "report_fraud" + ], + [ + "my card has purchases i don't recognize", + "report_fraud" + ], + [ + "someone misused my card and put fraudulent transactions on it", + "report_fraud" + ], + [ + "i have charges on my amex card i didn't make", + "report_fraud" + ], + [ + "\"disable my card account and contact company to report fraudulent activty", + "report_fraud" + ], + [ + "\"i need to report fraudulent activity to my card company", + "report_fraud" + ], + [ + "\"please contact my credit card company to report fraudulent activity on", + "report_fraud" + ], + [ + "it looks like someone made an unauthorized amazon purchase on my account", + "report_fraud" + ], + [ + "i think my chase account has been compromised and fraud committed", + "report_fraud" + ], + [ + "i may have had fraud committed on my account", + "report_fraud" + ], + [ + "i'm thinking someone may have used my card in a fraudulent way", + "report_fraud" + ], + [ + "there is a fraudulent charge for paypal on my bank account", + "report_fraud" + ], + [ + "i think the charge for uber on my account is fraudulent", + "report_fraud" + ], + [ + "looks like someone made an unauthorized charge to nike on my account", + "report_fraud" + ], + [ + "i think someone stole my card and used it", + "report_fraud" + ], + [ + "i think someone made an illegal charge to my card", + "report_fraud" + ], + [ + "my account is showing a charge to venmo that i did not make", + "report_fraud" + ], + [ + "i gotta report fraudulent activity on my credit card", + "report_fraud" + ], + [ + "so i made a fraudulent transaction", + "report_fraud" + ], + [ + "i have a fraudulent transaction from wal mart on my account right now", + "report_fraud" + ], + [ + "turns out i made a fraudulent transaction", + "report_fraud" + ], + [ + "report fraudulent activity on my debit card", + "report_fraud" + ], + [ + "i made a fraudulent transaction", + "report_fraud" + ], + [ + "i have a fraudulent transaction from wal mart showing on my account", + "report_fraud" + ], + [ + "i think i made a fraudulent transaction", + "report_fraud" + ], + [ + "i have a fraudulent transaction from wal mart on my account", + "report_fraud" + ], + [ + "i must report fraudulent activity on my debit", + "report_fraud" + ], + [ + "i have a fraudulent transaction from red robin on my account", + "report_fraud" + ], + [ + "report fraudulent activity on my credit card now", + "report_fraud" + ], + [ + "i have a fraudulent transaction from fry's on my account", + "report_fraud" + ], + [ + "i got to report fraudulent activity on my credit card", + "report_fraud" + ], + [ + "i'm afraid there is a false transaction on my account", + "report_fraud" + ], + [ + "i have detected fraudulent activity on my account", + "report_fraud" + ], + [ + "i see a fraudulent transaction from netflix on my account", + "report_fraud" + ], + [ + "i spotted a fraudulent transaction from microsoft on my account", + "report_fraud" + ], + [ + "i see a suspicious transaction in my account history", + "report_fraud" + ], + [ + "it seems someone conducted a fraudulent transaction on my account", + "report_fraud" + ], + [ + "i need help investigating a suspicious transaction", + "report_fraud" + ], + [ + "i need to report a fraudulent transaction from postmates on my account", + "report_fraud" + ], + [ + "help me figure out where this fraudulent transaction from google came from on my account", + "report_fraud" + ], + [ + "can you help me deal with this fraudulent transaction from verizon on my account", + "report_fraud" + ], + [ + "i believe there are fraudulent charges on my card how can i report them", + "report_fraud" + ], + [ + "i didn't make these purchases on my card; these are fraudulent charges i need to report them", + "report_fraud" + ], + [ + "how can i report fraudulent charges on my card", + "report_fraud" + ], + [ + "it seems that there's fraudulent activity on my card i'd like to file a report", + "report_fraud" + ], + [ + "i want to report fraudulent activity on my card", + "report_fraud" + ], + [ + "send information about suspicious credit card activity", + "report_fraud" + ], + [ + "please report information about activity on my credit card", + "report_fraud" + ], + [ + "send fraudulent activity information", + "report_fraud" + ], + [ + "please file a fraud report", + "report_fraud" + ], + [ + "report fraud on my card", + "report_fraud" + ], + [ + "i want to report fraudulent activity on my visa card, please", + "report_fraud" + ], + [ + "i need to report fraudulent activity on my visa card, please", + "report_fraud" + ], + [ + "i want to report fraudulent activity on my amex card", + "report_fraud" + ], + [ + "i want to report fraudulent activity on my visa card", + "report_fraud" + ], + [ + "i want to report fraudulent activity on my amex card, please", + "report_fraud" + ], + [ + "i believe that there is some fraudulent activity on my capital one account", + "report_fraud" + ], + [ + "there is an unauthorized transaction on my bank of america checking", + "report_fraud" + ], + [ + "i see a purchase on my chase checking that i did not make", + "report_fraud" + ], + [ + "what steps do i take if there is a transaction that i do not recognize on my navy federal credit union account", + "report_fraud" + ], + [ + "i need to talk to someone about a transaction that was not made by me on my chase account", + "report_fraud" + ], + [ + "can you report credit card fraud for me", + "report_fraud" + ], + [ + "discover card reporting fraud", + "report_fraud" + ], + [ + "i need to know how to report fraud on my discover card", + "report_fraud" + ], + [ + "how many centimeters are in an inch", + "measurement_conversion" + ], + [ + "whats 5 feet in inches", + "measurement_conversion" + ], + [ + "what's 32 degrees fahrenheit in celsisus", + "measurement_conversion" + ], + [ + "what amount of millimeters are in 50 kilometers", + "measurement_conversion" + ], + [ + "how many crows are in 10 murders", + "measurement_conversion" + ], + [ + "what amount of miles are in a hundred kilometers", + "measurement_conversion" + ], + [ + "how many weeks are in 3 months", + "measurement_conversion" + ], + [ + "how many meters are in 50 feet", + "measurement_conversion" + ], + [ + "what's 8 ounces in cups", + "measurement_conversion" + ], + [ + "how many kilos are in 150 pounds", + "measurement_conversion" + ], + [ + "how do you convert pounds to grams", + "measurement_conversion" + ], + [ + "how many kilos are in 10 pounds", + "measurement_conversion" + ], + [ + "what is 15 ounces in grams, please", + "measurement_conversion" + ], + [ + "what is 20 ounces in grams, please", + "measurement_conversion" + ], + [ + "what is 10 ounces in grams, please", + "measurement_conversion" + ], + [ + "how do you convert ounces to pounds", + "measurement_conversion" + ], + [ + "how many kilos are in 25 pounds", + "measurement_conversion" + ], + [ + "what is 10 ounces in grams", + "measurement_conversion" + ], + [ + "how many kilos are in 20 pounds", + "measurement_conversion" + ], + [ + "how do you convert ounces to grams", + "measurement_conversion" + ], + [ + "how many kilos are in 100 pounds", + "measurement_conversion" + ], + [ + "how do you convert pounds to kilos", + "measurement_conversion" + ], + [ + "what is 15 ounces in grams", + "measurement_conversion" + ], + [ + "how do you convert ounces to kilos", + "measurement_conversion" + ], + [ + "how many inches and centimeters would i need if i had 10 feet of something", + "measurement_conversion" + ], + [ + "what's 10 inches in centimeters and millimeters", + "measurement_conversion" + ], + [ + "how many tablespoons and teaspoons is one cup", + "measurement_conversion" + ], + [ + "how much is 10kg in pounds and ounces", + "measurement_conversion" + ], + [ + "how many liters are in 500 gallons", + "measurement_conversion" + ], + [ + "what's 12 feet in meters", + "measurement_conversion" + ], + [ + "what is 22 meters in inches", + "measurement_conversion" + ], + [ + "12 feet is equal to how many inches", + "measurement_conversion" + ], + [ + "how many pints are in 22 gallons", + "measurement_conversion" + ], + [ + "how do you convert pounds to kilograms", + "measurement_conversion" + ], + [ + "how do you convert milliliters to ounces", + "measurement_conversion" + ], + [ + "how do you convert millimeters to decimeters", + "measurement_conversion" + ], + [ + "how do you convert inches to centimeters", + "measurement_conversion" + ], + [ + "how do you convert miles to kilometers", + "measurement_conversion" + ], + [ + "what would four inches be in centimeters", + "measurement_conversion" + ], + [ + "if i have four inches, how many centimeters is that", + "measurement_conversion" + ], + [ + "how many centimeters are in 4 inches", + "measurement_conversion" + ], + [ + "how do i convert four inches into centimeters", + "measurement_conversion" + ], + [ + "what are four inches in centimeters", + "measurement_conversion" + ], + [ + "tell me the conversion between tablespoons and cups", + "measurement_conversion" + ], + [ + "i need to know the conversion between tablespoons and teaspoons", + "measurement_conversion" + ], + [ + "what would be the conversion between tablespoons and teaspoons", + "measurement_conversion" + ], + [ + "what is the conversion between tablespoons and cups", + "measurement_conversion" + ], + [ + "help me to understand the conversion between tablespoons and teaspoons", + "measurement_conversion" + ], + [ + "tell me how to convert grams into ounces", + "measurement_conversion" + ], + [ + "i need to know how to convert liters into pints", + "measurement_conversion" + ], + [ + "help me convert feet into miles", + "measurement_conversion" + ], + [ + "how do i change pounds into kilograms", + "measurement_conversion" + ], + [ + "what is the proper way to convert centimeters into inches", + "measurement_conversion" + ], + [ + "how do i convert tablespoons to cups", + "measurement_conversion" + ], + [ + "how many ounces are in a cup", + "measurement_conversion" + ], + [ + "how many teaspoons are in a half a cup", + "measurement_conversion" + ], + [ + "how many tablespoons are in three cups", + "measurement_conversion" + ], + [ + "how many pints are in four cups", + "measurement_conversion" + ], + [ + "how many quarts are in a gallon", + "measurement_conversion" + ], + [ + "i wanna know how many teaspoons are in a tablespoon", + "measurement_conversion" + ], + [ + "how many cups make a gallon", + "measurement_conversion" + ], + [ + "how many tablespoons are in a cup", + "measurement_conversion" + ], + [ + "what is the conversion for pints to quarts", + "measurement_conversion" + ], + [ + "tell me what ten pounds in kilos is", + "measurement_conversion" + ], + [ + "what would five pounds be in kilos", + "measurement_conversion" + ], + [ + "i need to know how many cups are in a two gallons", + "measurement_conversion" + ], + [ + "tell me how many teaspoons are in two cups", + "measurement_conversion" + ], + [ + "how many miles is five kilometers", + "measurement_conversion" + ], + [ + "please convert 2 inches into meters for me", + "measurement_conversion" + ], + [ + "how many meters are in 2 inches", + "measurement_conversion" + ], + [ + "what's the conversion from inches to centimeters", + "measurement_conversion" + ], + [ + "can you convert 2 inches into meters", + "measurement_conversion" + ], + [ + "how many centimeters are one inch", + "measurement_conversion" + ], + [ + "how do i convert inches and centimeters", + "measurement_conversion" + ], + [ + "what is 2 inches in meters", + "measurement_conversion" + ], + [ + "convert 2 inches to meters", + "measurement_conversion" + ], + [ + "convert inches to centimeters", + "measurement_conversion" + ], + [ + "how many cups in a quart", + "measurement_conversion" + ], + [ + "is there an easy way to change feet into inches", + "measurement_conversion" + ], + [ + "how many cups are in 4 quarts", + "measurement_conversion" + ], + [ + "how many feet are in 50 yards", + "measurement_conversion" + ], + [ + "how many ounces in a gallon", + "measurement_conversion" + ], + [ + "can you convert millimeters to centimeters", + "measurement_conversion" + ], + [ + "how many teaspoons in a cup", + "measurement_conversion" + ], + [ + "convert inch to cm", + "measurement_conversion" + ], + [ + "how many inches are in 5 feet", + "measurement_conversion" + ], + [ + "convert cm to inch", + "measurement_conversion" + ], + [ + "how can i change centimeters into inches", + "measurement_conversion" + ], + [ + "how can i change inches into meters", + "measurement_conversion" + ], + [ + "how many centimeters are in 5 yards", + "measurement_conversion" + ], + [ + "how do you convert feet to inches", + "measurement_conversion" + ], + [ + "how many meters are in 10 millimeters", + "measurement_conversion" + ], + [ + "how can you convert miles to kilometers", + "measurement_conversion" + ], + [ + "how would i go about converting inches to yards", + "measurement_conversion" + ], + [ + "how would you convert yards to inches", + "measurement_conversion" + ], + [ + "how are yards converted to inches", + "measurement_conversion" + ], + [ + "how do i change inches to centimeters", + "measurement_conversion" + ], + [ + "what is inches in centimeters", + "measurement_conversion" + ], + [ + "i need to know the difference between inches and centimeters", + "measurement_conversion" + ], + [ + "what is the conversion of inches to centimeters", + "measurement_conversion" + ], + [ + "can you please turn on my furnace", + "smart_home" + ], + [ + "oven should be set to 350 now", + "smart_home" + ], + [ + "what temp is the ac at", + "smart_home" + ], + [ + "tell me who is by the garage door", + "smart_home" + ], + [ + "set my oven to 350 please", + "smart_home" + ], + [ + "make sure all doors are locked", + "smart_home" + ], + [ + "make the lights dimmer please", + "smart_home" + ], + [ + "please, will you turn on my tv", + "smart_home" + ], + [ + "turn lights on in my bedroom", + "smart_home" + ], + [ + "turn the fan to the on position", + "smart_home" + ], + [ + "start my vehicle", + "smart_home" + ], + [ + "please get my car started before i go out to it", + "smart_home" + ], + [ + "need the tv on please", + "smart_home" + ], + [ + "lock all the doors", + "smart_home" + ], + [ + "can you turn on the lights in the den", + "smart_home" + ], + [ + "turn the furnace on please", + "smart_home" + ], + [ + "check who's at the door", + "smart_home" + ], + [ + "please set the temperature to 70", + "smart_home" + ], + [ + "turn tv on please", + "smart_home" + ], + [ + "make the temperature 78 in here", + "smart_home" + ], + [ + "turn lights on in the garage", + "smart_home" + ], + [ + "what is my ac set to right now", + "smart_home" + ], + [ + "activate my furnace please", + "smart_home" + ], + [ + "can you set the temp to 69", + "smart_home" + ], + [ + "set my temp to 75", + "smart_home" + ], + [ + "can you see if i have my doors locked", + "smart_home" + ], + [ + "make sure the oven is set to 350 please", + "smart_home" + ], + [ + "the ac is set to what right now", + "smart_home" + ], + [ + "can you turn on the lights in the backyard", + "smart_home" + ], + [ + "can you turn on the tv", + "smart_home" + ], + [ + "can you turn the oven to 350", + "smart_home" + ], + [ + "who is at my front door", + "smart_home" + ], + [ + "can you turn my lights down just a bit", + "smart_home" + ], + [ + "will you please get my furnace turned on", + "smart_home" + ], + [ + "can you please dim the lights", + "smart_home" + ], + [ + "set my oven to 350 for me right now", + "smart_home" + ], + [ + "turn lights on in my master bathroom", + "smart_home" + ], + [ + "who is knocking", + "smart_home" + ], + [ + "turn on the fan", + "smart_home" + ], + [ + "can you get my car started", + "smart_home" + ], + [ + "are my doors locked right now", + "smart_home" + ], + [ + "can you get the fan going in here", + "smart_home" + ], + [ + "please turn my fan on", + "smart_home" + ], + [ + "warm up my car for me", + "smart_home" + ], + [ + "please make sure the temperature is set to 68", + "smart_home" + ], + [ + "are my doors in the locked position right now", + "smart_home" + ], + [ + "turn down the lights a little please", + "smart_home" + ], + [ + "what's the persons name at my door", + "smart_home" + ], + [ + "can you lock all the doors in the house", + "smart_home" + ], + [ + "i need some air; get the fan going", + "smart_home" + ], + [ + "what's the ac set to", + "smart_home" + ], + [ + "can you tell me what the ac is on", + "smart_home" + ], + [ + "lock every door on the property", + "smart_home" + ], + [ + "turn the tv to on right now", + "smart_home" + ], + [ + "please lock every door", + "smart_home" + ], + [ + "did i lock the doors", + "smart_home" + ], + [ + "dim the main lights please", + "smart_home" + ], + [ + "i need my furnace turned on", + "smart_home" + ], + [ + "put the garage lights on", + "smart_home" + ], + [ + "on the lounge lights turn", + "smart_home" + ], + [ + "can put fan on", + "smart_home" + ], + [ + "turn on the living room lights", + "smart_home" + ], + [ + "put fan on", + "smart_home" + ], + [ + "put on lights", + "smart_home" + ], + [ + "on turn tv", + "smart_home" + ], + [ + "on the fan", + "smart_home" + ], + [ + "on the tv", + "smart_home" + ], + [ + "switch fan", + "smart_home" + ], + [ + "light the bedroom lights", + "smart_home" + ], + [ + "switch tv", + "smart_home" + ], + [ + "tv on turn", + "smart_home" + ], + [ + "please start my car", + "smart_home" + ], + [ + "what is the temperature setting of the ac", + "smart_home" + ], + [ + "set temperature to 75", + "smart_home" + ], + [ + "can you look who is at the door", + "smart_home" + ], + [ + "what is the temperature the ac display is showing", + "smart_home" + ], + [ + "has anyone locked the door", + "smart_home" + ], + [ + "check to see who is at the doof", + "smart_home" + ], + [ + "what is the ac temperature", + "smart_home" + ], + [ + "please lock the doors", + "smart_home" + ], + [ + "can you please help me start the car", + "smart_home" + ], + [ + "turn the fan on please", + "smart_home" + ], + [ + "i would appreciate it if you help me turn the car on", + "smart_home" + ], + [ + "did anyone securely lock the door", + "smart_home" + ], + [ + "please set the temperature to 80", + "smart_home" + ], + [ + "turn the fan on", + "smart_home" + ], + [ + "put the lights on low", + "smart_home" + ], + [ + "can you please start my car", + "smart_home" + ], + [ + "what is the temperature on the ac", + "smart_home" + ], + [ + "can you check who is at the door", + "smart_home" + ], + [ + "set the temperaure to 71", + "smart_home" + ], + [ + "turn the lights down", + "smart_home" + ], + [ + "please turn the fan on", + "smart_home" + ], + [ + "can you please turn the fan on", + "smart_home" + ], + [ + "i want you to turn the fans on", + "smart_home" + ], + [ + "what temperature is the ac set at", + "smart_home" + ], + [ + "remember to lock the doors", + "smart_home" + ], + [ + "who is at the door", + "smart_home" + ], + [ + "please check the door to see who is there", + "smart_home" + ], + [ + "set the temperature to 78", + "smart_home" + ], + [ + "i need a bed in brownsburg near walmart from apil 4th until the 5th", + "book_hotel" + ], + [ + "i need a room in indianapolis near the track from may 2nd through the 5th", + "book_hotel" + ], + [ + "i need lodging in lizton near the ice cream parlor from may 3rd until the 8th", + "book_hotel" + ], + [ + "need a place to crash in elizabeth near the refinery from june 4th until the 9th", + "book_hotel" + ], + [ + "i need a place to stay in newark near a bodega from may 2nd through the 4th", + "book_hotel" + ], + [ + "i want to book a hotel room for 10 people from monday to tuesday in manhattan", + "book_hotel" + ], + [ + "is there a room big enough for 10 people from monday to tuesday in manhattan", + "book_hotel" + ], + [ + "is it possible to book 10 people from monday to tuesday in manhattan", + "book_hotel" + ], + [ + "i would like to reserve a hotel room that accomodates 10 people from monday to tuesday in manhattan", + "book_hotel" + ], + [ + "i'm inquiring about the availability of a room that fits 10 people from monday to tuesday in manhattan", + "book_hotel" + ], + [ + "book me a hotel in st louis near the arch from march 2nd to 5th", + "book_hotel" + ], + [ + "i need a room in london for 2 people from march 1st to 3rd", + "book_hotel" + ], + [ + "get me a hotel room for 3 people from march 12th to 14th in chicago", + "book_hotel" + ], + [ + "book me a hotel in new york near the empire state building from marc 2nd to 4th", + "book_hotel" + ], + [ + "book me a hotel in chicago near the water tower shopping from april 2nd to 4th", + "book_hotel" + ], + [ + "get me a hotel room for 4 people from march 1st to 3rd in seattle", + "book_hotel" + ], + [ + "in paris, get me a hotel room for 4 people from march 1st to 3rd", + "book_hotel" + ], + [ + "can you find me a hotel for 2 people on april 1st to 4th in rome", + "book_hotel" + ], + [ + "can you book me a hotel in los angeles near commerce casino from april 1st to the 5th", + "book_hotel" + ], + [ + "book me a hotel in seattle near the space needle from march 3rd to 5th", + "book_hotel" + ], + [ + "can you book me a room in new york city from april 2 through april 8", + "book_hotel" + ], + [ + "are there any openings in new york city from april 2 through april 8", + "book_hotel" + ], + [ + "are there any vacancies in new york city from april 2 through april 8", + "book_hotel" + ], + [ + "how about any bookings in new york city from april 2 through april 8", + "book_hotel" + ], + [ + "is there anything available in new york city from april 2 through april 8", + "book_hotel" + ], + [ + "book me a room on november 11 to 15 in cali", + "book_hotel" + ], + [ + "create a reservation novemeber 11 to 15 in cali", + "book_hotel" + ], + [ + "show me all hotels in evans with good reviews", + "book_hotel" + ], + [ + "which hotels in evans have good reviews", + "book_hotel" + ], + [ + "get me a room in cali on november 11 to 15", + "book_hotel" + ], + [ + "show me a well reviewed hotel in evans", + "book_hotel" + ], + [ + "what is the best rated hotel in evans", + "book_hotel" + ], + [ + "find me a place to stay in cali november 11 to 15", + "book_hotel" + ], + [ + "make a reservation to stay in cali from november 11 to 15", + "book_hotel" + ], + [ + "is it possible to have a place booked in salem from the 1st to the 3rd", + "book_hotel" + ], + [ + "see if you can get me a room in colorado springs near garden of the gods from march 01 to march 02", + "book_hotel" + ], + [ + "i'd like you to book me a room in austin near google's headquarters from january 01, 2020 to february 02, 2020", + "book_hotel" + ], + [ + "please book me a room in austin from tomorrow to the 2nd", + "book_hotel" + ], + [ + "i want a hotel room for 6 from the 1st through the 3rd in seattle", + "book_hotel" + ], + [ + "can you find me a decent hotel in denver", + "book_hotel" + ], + [ + "i'd like a placed booked in san diego from may 1st, 2020 to june 2nd, 2020", + "book_hotel" + ], + [ + "are there any good hotels in salem", + "book_hotel" + ], + [ + "what's a good hotel to stay at in chicago", + "book_hotel" + ], + [ + "will you find me a place to stay in casper from march 5th to march 11th", + "book_hotel" + ], + [ + "check if there's a hotel room that can receive 10 people in tampa from this friday for a week", + "book_hotel" + ], + [ + "can i get a hotel room that can accommodate 50 people in bangor from january 01, 2021 to january 30, 2021", + "book_hotel" + ], + [ + "i need a hotel booked in denver near the museum from friday to saturday", + "book_hotel" + ], + [ + "i want a hotel booked in salem near the concert hall from the first to the second", + "book_hotel" + ], + [ + "i required a hotel room for 20 people from march 8th through march 20th in las vegas", + "book_hotel" + ], + [ + "what hotels have decent reviews in bangor", + "book_hotel" + ], + [ + "is it possible to have a room booked in omaha near the convention hall for may 01, 2019 to may 05, 2019", + "book_hotel" + ], + [ + "i'd like to find a hotel in tampa that people liked enough to leave good reviews about", + "book_hotel" + ], + [ + "can you book me a place to stay in denver from wednesday to friday", + "book_hotel" + ], + [ + "i need a hotel room that can host 5 people from tomorrow to saturday in denver", + "book_hotel" + ], + [ + "please find me a hotel room for 4 people from monday to wednesday in lakewood", + "book_hotel" + ], + [ + "i need a hotel room big enough for 4 people from monday to wednesday in lakewood", + "book_hotel" + ], + [ + "i need a hotel room for 4 people in lakewood from monday to wednesday", + "book_hotel" + ], + [ + "what hotel would you recommend in lakewood for 4 people from monday to wednesday", + "book_hotel" + ], + [ + "i will be in lakewood from monday to wednesday and i need a hotel room for 4 people", + "book_hotel" + ], + [ + "please help me book a place to stay in pittsburgh from monday to friday", + "book_hotel" + ], + [ + "i need a place in pittsburgh to stay from monday to friday, can you help", + "book_hotel" + ], + [ + "help me find a hotel in columbus with good reviews", + "book_hotel" + ], + [ + "can you find me a hotel in columbus with good reviews", + "book_hotel" + ], + [ + "please find a columbus, ohio hotel with good reviews", + "book_hotel" + ], + [ + "will you help me book a place to stay from monday to friday in pittsburgh", + "book_hotel" + ], + [ + "can you book me a place to stay in pittsburgh from monday to friday", + "book_hotel" + ], + [ + "please book me a place in pittsburgh to stay from monday to friday", + "book_hotel" + ], + [ + "find a columbus, ohio hotel with good reviews", + "book_hotel" + ], + [ + "help me find a hotel in that has good reviews in columbus", + "book_hotel" + ], + [ + "do you know of any well reviewed hotels in chicago", + "book_hotel" + ], + [ + "help me find a well reviewed hotel in dallas", + "book_hotel" + ], + [ + "find me a hotel in kansas city with good reviews", + "book_hotel" + ], + [ + "i need to find a nice hotel with solid reviews in seattle", + "book_hotel" + ], + [ + "look up hotels with positive reviews in new york city", + "book_hotel" + ], + [ + "what hotels are near, ny, ny for the 9th to 11th", + "book_hotel" + ], + [ + "please book a hotel in ny, close to brooklyn, on the 25th to 30th", + "book_hotel" + ], + [ + "book a hotel in pa, harrisburg for the 10th to 15th", + "book_hotel" + ], + [ + "find and book a hotel in md, baltimore starting on the 7th to the 9th", + "book_hotel" + ], + [ + "i need to book a hotel in ny, queens arrive on 8th and leave on the 13th", + "book_hotel" + ], + [ + "i need a hotel in new orleans with awesome reviews", + "book_hotel" + ], + [ + "find a suitable lodging in vancouver on march 16-19", + "book_hotel" + ], + [ + "help me find a good reviews hotel in la", + "book_hotel" + ], + [ + "i need a hotel in new orleans from may 2 - 5 near the french quarter", + "book_hotel" + ], + [ + "find a hotel with great reviews in san francisco", + "book_hotel" + ], + [ + "find me a hotel in seattle with great reviews", + "book_hotel" + ], + [ + "help me a great hotel in vegas for this weekend", + "book_hotel" + ], + [ + "can you find me a place to stay in sacramento near the capitol on july 3-5", + "book_hotel" + ], + [ + "find a hotel in san francisco for march 8 & 9", + "book_hotel" + ], + [ + "i need a well-rated hotel in vegas", + "book_hotel" + ], + [ + "can i book a hotel in new york city near times square from 3/1 until 3/5", + "book_hotel" + ], + [ + "book me a hotel room in memphis for 3 people from 3/6 until 3/10", + "book_hotel" + ], + [ + "hotel room for 5 in austin for 3/1 until 3/8", + "book_hotel" + ], + [ + "i need a hotel in austin near south congress from 3/5 until 3/10", + "book_hotel" + ], + [ + "book me a hotel in pittsburgh near grant street for 3/15 through 3/18", + "book_hotel" + ], + [ + "march 20th through the 22nd, please book me a hotel room in manhattan big enough for 10 people", + "book_hotel" + ], + [ + "i'm going to need a hotel in tampa near ybor city for march 23rd through the 28th", + "book_hotel" + ], + [ + "i'm going to need a hotel room for 8 people in tallahassee from 3/10 until 3/12", + "book_hotel" + ], + [ + "could you reserve me a hotel room in philadelphia near chinatown from 3/19 through 3/22", + "book_hotel" + ], + [ + "in brooklyn, i need a hotel room for 4 from 3/15 until 3/20", + "book_hotel" + ], + [ + "book me a hotel with good ratings in nashville", + "book_hotel" + ], + [ + "check maps for my location", + "current_location" + ], + [ + "i'm lost, can you tell me where i am", + "current_location" + ], + [ + "how can i go about finding my location right now", + "current_location" + ], + [ + "please tell me my location using gps", + "current_location" + ], + [ + "where exactly am i", + "current_location" + ], + [ + "what's my location", + "current_location" + ], + [ + "is there a way to get my current location", + "current_location" + ], + [ + "what's the precise coordinates of this place", + "current_location" + ], + [ + "where am i right this moment", + "current_location" + ], + [ + "use the map and pinpoint my position", + "current_location" + ], + [ + "give me my location on the map", + "current_location" + ], + [ + "what's my current location", + "current_location" + ], + [ + "what street is this", + "current_location" + ], + [ + "can you direct me where to find where i am", + "current_location" + ], + [ + "what do i do to find my location", + "current_location" + ], + [ + "using this map i'd like to see my exact whereabouts", + "current_location" + ], + [ + "place a marker for me where i am on the map", + "current_location" + ], + [ + "i need to know my current gps coordinates", + "current_location" + ], + [ + "can i have my current gps coordinates", + "current_location" + ], + [ + "would you please tell me my current gps coordinates", + "current_location" + ], + [ + "please tell me my current gps coordinates", + "current_location" + ], + [ + "list my current gps coordinates", + "current_location" + ], + [ + "how do i know where i'm at", + "current_location" + ], + [ + "where am i located currently", + "current_location" + ], + [ + "tell me how to find my current location", + "current_location" + ], + [ + "showme how to find my location", + "current_location" + ], + [ + "i'd like to know where i am", + "current_location" + ], + [ + "what are the gps coordinates where i am located", + "current_location" + ], + [ + "at this location what are my gps coordinates", + "current_location" + ], + [ + "in the place i am what are my gps coordinates", + "current_location" + ], + [ + "what are my gps coordinates at this location", + "current_location" + ], + [ + "what are the gps coordinates of this spot i am at right now", + "current_location" + ], + [ + "where am i located", + "current_location" + ], + [ + "what country and city am i in", + "current_location" + ], + [ + "what are my longitude and latitude points", + "current_location" + ], + [ + "show me where i am on the map", + "current_location" + ], + [ + "display my location on a map", + "current_location" + ], + [ + "please show me where i am on a map", + "current_location" + ], + [ + "can you show me where i am on a map", + "current_location" + ], + [ + "where am i right now, location wise", + "current_location" + ], + [ + "what street am i on right now", + "current_location" + ], + [ + "tell me my current location please", + "current_location" + ], + [ + "what location do you see me at right now", + "current_location" + ], + [ + "what is my current location that you see right now", + "current_location" + ], + [ + "show me where i am", + "current_location" + ], + [ + "bring up my location", + "current_location" + ], + [ + "tell me where i am on a map", + "current_location" + ], + [ + "can you locate me on a map", + "current_location" + ], + [ + "show me where i am on a map", + "current_location" + ], + [ + "i need to know my location", + "current_location" + ], + [ + "i'm lost", + "current_location" + ], + [ + "can you tell me how to figure out my current location", + "current_location" + ], + [ + "i need to find out how i know my location right now", + "current_location" + ], + [ + "can you tell me my location", + "current_location" + ], + [ + "what do i do to find my current location", + "current_location" + ], + [ + "my current location", + "current_location" + ], + [ + "i would like to know my current location", + "current_location" + ], + [ + "how can i tell what my current location is", + "current_location" + ], + [ + "how can i know my current location", + "current_location" + ], + [ + "let me know where i'm located", + "current_location" + ], + [ + "i am in need of my location", + "current_location" + ], + [ + "help me find where i am", + "current_location" + ], + [ + "i do not know where i am", + "current_location" + ], + [ + "i would like to know my location", + "current_location" + ], + [ + "where are we located", + "current_location" + ], + [ + "tell me the current location", + "current_location" + ], + [ + "please tell me my current location", + "current_location" + ], + [ + "what are my gps coordinates right now", + "current_location" + ], + [ + "please tell me my present gps coordinates", + "current_location" + ], + [ + "i need to know my present gps coordinates", + "current_location" + ], + [ + "tell me my current gps coordinates", + "current_location" + ], + [ + "please give me my gps coordinates", + "current_location" + ], + [ + "how do i find my location right now, please", + "current_location" + ], + [ + "how do i find my location, please", + "current_location" + ], + [ + "could you find my location on the map, please", + "current_location" + ], + [ + "how do i find my present location right now", + "current_location" + ], + [ + "could you find my location on the map", + "current_location" + ], + [ + "how do i find my location right now", + "current_location" + ], + [ + "would you find my location on the map, please", + "current_location" + ], + [ + "can you find my location on the map, please", + "current_location" + ], + [ + "can you find my location on the map", + "current_location" + ], + [ + "how do i find my present location right now, please", + "current_location" + ], + [ + "give me my current location", + "current_location" + ], + [ + "let me know my current location", + "current_location" + ], + [ + "what is my location right now", + "current_location" + ], + [ + "can you tell me the address where i am right now", + "current_location" + ], + [ + "please locate me on the map and show me", + "current_location" + ], + [ + "tell me my current location", + "current_location" + ], + [ + "how can i go about finding my current location", + "current_location" + ], + [ + "i wanna know my current location", + "current_location" + ], + [ + "how can i find my current location", + "current_location" + ], + [ + "how will i find my current location", + "current_location" + ], + [ + "i'd like to know my current location", + "current_location" + ], + [ + "how can i locate where i am", + "current_location" + ], + [ + "how shall i find my current location", + "current_location" + ], + [ + "check out my location up on the map", + "current_location" + ], + [ + "could you pull up my location on the map", + "current_location" + ], + [ + "check me out on the map", + "current_location" + ], + [ + "look me up on the map", + "current_location" + ], + [ + "look my location up on the map", + "current_location" + ], + [ + "what are the conditions like in orlando", + "weather" + ], + [ + "what's the temperature like in tampa", + "weather" + ], + [ + "what's the forecast like for pittsburgh", + "weather" + ], + [ + "what are the conditions like in sarasota", + "weather" + ], + [ + "what's the climate like in chicago", + "weather" + ], + [ + "what will the temperature be tomorrow", + "weather" + ], + [ + "will it rain today", + "weather" + ], + [ + "will it freeze tonight", + "weather" + ], + [ + "give me the 7 day forecast", + "weather" + ], + [ + "is it hot outside", + "weather" + ], + [ + "what is the weather going to be like today", + "weather" + ], + [ + "is it going to rain today", + "weather" + ], + [ + "what is the weather going to be like tomorrow", + "weather" + ], + [ + "is it going to rain tonight", + "weather" + ], + [ + "are there any tornadoes coming soon", + "weather" + ], + [ + "is it snowing in the next two weeks", + "weather" + ], + [ + "what is the weather like in denver", + "weather" + ], + [ + "what is the weather like tomorrow", + "weather" + ], + [ + "what is the record high temperature for today", + "weather" + ], + [ + "whats the predicted weather suppose to be like", + "weather" + ], + [ + "whats the forecast for the weather", + "weather" + ], + [ + "what does the weather look like", + "weather" + ], + [ + "what does the forecast look like", + "weather" + ], + [ + "what is the weather going to be like", + "weather" + ], + [ + "tell me this week's forecast", + "weather" + ], + [ + "will it get over 90 degrees today", + "weather" + ], + [ + "what's the temperature outside", + "weather" + ], + [ + "tell me how the weather is", + "weather" + ], + [ + "weather", + "weather" + ], + [ + "what's the weather", + "weather" + ], + [ + "is it raining", + "weather" + ], + [ + "how is it outside", + "weather" + ], + [ + "how hot will it be tomorrow", + "weather" + ], + [ + "what is the weather for tomorrow in georgia", + "weather" + ], + [ + "what is the forecast for this week", + "weather" + ], + [ + "will it snow this weekend", + "weather" + ], + [ + "is there any rain in the next 3 days", + "weather" + ], + [ + "can you tell me what the weather will be please", + "weather" + ], + [ + "how's the weather", + "weather" + ], + [ + "what's the weather looking like", + "weather" + ], + [ + "what weather should i expect", + "weather" + ], + [ + "costa mesa current weather", + "weather" + ], + [ + "what is the temperature in costa mesa", + "weather" + ], + [ + "what is the weather report for costa mesa", + "weather" + ], + [ + "weather in costa mesa", + "weather" + ], + [ + "costa mesa weather", + "weather" + ], + [ + "i need meteorological data for tallahassee", + "weather" + ], + [ + "how's the weather in tallahassee", + "weather" + ], + [ + "read me the current weather report for tallahassee", + "weather" + ], + [ + "tell me the weather report for tallahassee", + "weather" + ], + [ + "what's the current weather situation for tallahassee", + "weather" + ], + [ + "what's the weekend forecast", + "weather" + ], + [ + "can you tell me the low tonight", + "weather" + ], + [ + "is it going to be sunny today", + "weather" + ], + [ + "what's the highest chance of rain for today", + "weather" + ], + [ + "how cold is it going to be tonight", + "weather" + ], + [ + "what is the weather forecast for seattle", + "weather" + ], + [ + "what is the weather outlook for seattle", + "weather" + ], + [ + "what are the weather conditions in seattle", + "weather" + ], + [ + "how is the weather in seattle", + "weather" + ], + [ + "what is the weather report for seattle", + "weather" + ], + [ + "can you give me info on miami weather", + "weather" + ], + [ + "what is miami weather like", + "weather" + ], + [ + "what can you tell me about miami weather", + "weather" + ], + [ + "what kind of weather does miami have", + "weather" + ], + [ + "how is the weather in miami", + "weather" + ], + [ + "what's the weather like right now", + "weather" + ], + [ + "give me a rundown of the weather", + "weather" + ], + [ + "what kind of weather is there", + "weather" + ], + [ + "tell me what the weather is like", + "weather" + ], + [ + "when is it going to rain again", + "weather" + ], + [ + "what is the high temperature for tomorrow", + "weather" + ], + [ + "how many of inches of snow did my hometown get last year", + "weather" + ], + [ + "what are the atmospheric conditions in sparks", + "weather" + ], + [ + "is it raining in sparks", + "weather" + ], + [ + "is it cloudy or sunny in sparks", + "weather" + ], + [ + "is sparks experiencing bad weather right now", + "weather" + ], + [ + "what is the weather like in sparks right now", + "weather" + ], + [ + "what is the temp right now", + "weather" + ], + [ + "when will it rain next", + "weather" + ], + [ + "when is the next rain chance", + "weather" + ], + [ + "what will the weather be this weekend", + "weather" + ], + [ + "what s the uv index tomorrow", + "weather" + ], + [ + "tell me today's weather forecast", + "weather" + ], + [ + "tell me about the weather today", + "weather" + ], + [ + "i want to know the weather forecast for today", + "weather" + ], + [ + "what will the weather be like", + "weather" + ], + [ + "what's the chance of rain on friday", + "weather" + ], + [ + "is there a uv or smog alert for tomorrow", + "weather" + ], + [ + "is it snowing right now in richmond, va", + "weather" + ], + [ + "what will the low temperatures be over the weekend", + "weather" + ], + [ + "can you let me know if it will be warm this week", + "weather" + ], + [ + "when is the next time it is suppose to rain", + "weather" + ], + [ + "how cold will it be tomorrow", + "weather" + ], + [ + "what is today's high temperature predicted to be", + "weather" + ], + [ + "how much snow will we be getting tomorrow", + "weather" + ], + [ + "what's the current weather", + "weather" + ], + [ + "what's it doing outside right now", + "weather" + ], + [ + "what's today's weather going to be", + "weather" + ], + [ + "please tell me the weather forecast", + "weather" + ], + [ + "how much are my state taxes", + "taxes" + ], + [ + "what will my state taxes cost", + "taxes" + ], + [ + "how much are taxes in my state", + "taxes" + ], + [ + "how much state taxes do i owe", + "taxes" + ], + [ + "tell me how much in tax on this", + "taxes" + ], + [ + "and what are the taxes", + "taxes" + ], + [ + "tell me what the tax amount is", + "taxes" + ], + [ + "what is the tax amount", + "taxes" + ], + [ + "how much are taxes on this", + "taxes" + ], + [ + "what is the amount of my federal taxes", + "taxes" + ], + [ + "about how much will my federal taxes be", + "taxes" + ], + [ + "how much will i have to pay in state taxes", + "taxes" + ], + [ + "what do my state taxes amount to", + "taxes" + ], + [ + "how much will i have to pay in federal taxes", + "taxes" + ], + [ + "how much do i owe for state taxes", + "taxes" + ], + [ + "what do my federal taxes amount to", + "taxes" + ], + [ + "what amount will my state taxes be", + "taxes" + ], + [ + "how much will my state taxes be", + "taxes" + ], + [ + "how much am i going to have to pay in taxes to the state", + "taxes" + ], + [ + "how much will i have to pay in colorado taxes", + "taxes" + ], + [ + "what's my bill going to be for my taxes for tennessee", + "taxes" + ], + [ + "how much am i going to have to pay in federal taxes this year", + "taxes" + ], + [ + "how much is the irs going to get from me", + "taxes" + ], + [ + "what's my irs bill going to look like", + "taxes" + ], + [ + "what will i need to pay in federal taxes", + "taxes" + ], + [ + "how much money am i going to lose this year for state taxes", + "taxes" + ], + [ + "how much money is the state going to take from me for taxes", + "taxes" + ], + [ + "how are my federal taxes looking this year", + "taxes" + ], + [ + "i have to pay how much back in taxes", + "taxes" + ], + [ + "how much will i pay the government back in taxes", + "taxes" + ], + [ + "what amount do i have to pay in taxes", + "taxes" + ], + [ + "how much do i have to pay back for my taxes", + "taxes" + ], + [ + "what is the amount of money that i have to pay in taxes", + "taxes" + ], + [ + "what is the total amount of tax deductions from my income", + "taxes" + ], + [ + "what do i pay currently in income taxes", + "taxes" + ], + [ + "i need to know how much tax i pay from my earnings", + "taxes" + ], + [ + "how much am i paying from my income in taxes", + "taxes" + ], + [ + "can you find the exact amount i pay income taxes", + "taxes" + ], + [ + "do i pay a lot of taxes on my income", + "taxes" + ], + [ + "how much am i expected to pay in tax", + "taxes" + ], + [ + "do i have to file a tax form", + "taxes" + ], + [ + "will i pay over $500 in federal taxes", + "taxes" + ], + [ + "what can i expect to pay in taxes", + "taxes" + ], + [ + "are my state tax payments too high", + "taxes" + ], + [ + "how much do americans pay for federal taxes on average", + "taxes" + ], + [ + "how much will i pay in state taxes", + "taxes" + ], + [ + "how much do i pay the government in taxes", + "taxes" + ], + [ + "what percentage do i pay in taxes", + "taxes" + ], + [ + "what percentage of my income is taken out for taxes", + "taxes" + ], + [ + "how much will i pay in federal taxes", + "taxes" + ], + [ + "what do i owe the government on my taxes", + "taxes" + ], + [ + "help me calculate my federal tax bill", + "taxes" + ], + [ + "can you calculate my state taxes", + "taxes" + ], + [ + "using my salary as a basis, what taxes will i owe", + "taxes" + ], + [ + "how are my state taxes looking", + "taxes" + ], + [ + "help me figure out my state taxes", + "taxes" + ], + [ + "can you calculate my tax", + "taxes" + ], + [ + "how much is my income tax", + "taxes" + ], + [ + "can you tell me my income tax", + "taxes" + ], + [ + "how much do i pay in income tax", + "taxes" + ], + [ + "how much tax do i owe", + "taxes" + ], + [ + "what kind of tax do i pay", + "taxes" + ], + [ + "what amount am i taxed on my income", + "taxes" + ], + [ + "what do you think will be the result of my federal tax return", + "taxes" + ], + [ + "what's the damage on my federal tax return", + "taxes" + ], + [ + "what does my federal tax return look like", + "taxes" + ], + [ + "what will my federal tax return be", + "taxes" + ], + [ + "how much money will i get or owe on my federal tax return", + "taxes" + ], + [ + "how much money do i pay in taxes", + "taxes" + ], + [ + "how much money do i pay in taxes, please", + "taxes" + ], + [ + "what amount of money do i pay in taxes, please", + "taxes" + ], + [ + "how much do i pay in taxes", + "taxes" + ], + [ + "how much do i pay in taxes, please", + "taxes" + ], + [ + "i need to know how much i should pay in tax", + "taxes" + ], + [ + "let me know my tax rate", + "taxes" + ], + [ + "what amount of tax should i pay", + "taxes" + ], + [ + "please tell me what i pay in taxes", + "taxes" + ], + [ + "i would like to know how much i pay in taxes", + "taxes" + ], + [ + "what is the total amount i pay in taxes", + "taxes" + ], + [ + "can you tell me how much i pay in taxes", + "taxes" + ], + [ + "how much does it seem my state taxes will be", + "taxes" + ], + [ + "tell me what my state taxes are", + "taxes" + ], + [ + "what are my state taxes looking like", + "taxes" + ], + [ + "can you tell me more about my federal taxes", + "taxes" + ], + [ + "what do i owe in federal taxes", + "taxes" + ], + [ + "give me the specifics on my federal taxes", + "taxes" + ], + [ + "what does it look like my state taxes will add up to", + "taxes" + ], + [ + "i need the details on my federal taxes", + "taxes" + ], + [ + "what do i currently pay in taxes", + "taxes" + ], + [ + "what do i pay in taxes", + "taxes" + ], + [ + "how much will i pay for state taxes this year", + "taxes" + ], + [ + "how different will my state taxes be", + "taxes" + ], + [ + "what is my state taxes currently", + "taxes" + ], + [ + "what will my state taxes amount to this year", + "taxes" + ], + [ + "how much did my state taxes change", + "taxes" + ], + [ + "how much tax do i pay", + "taxes" + ], + [ + "how much do i pay in tax", + "taxes" + ], + [ + "how much do i pay in my taxes", + "taxes" + ], + [ + "how much as my taxes by the way", + "taxes" + ], + [ + "what amount do my state taxes look like", + "taxes" + ], + [ + "what's the minimum i owe on the car payment", + "min_payment" + ], + [ + "what's the least amount i need to pay on the electric bill", + "min_payment" + ], + [ + "what's the smallest amount i can pay on the water bill", + "min_payment" + ], + [ + "what's the minimum amount for my electric bill", + "min_payment" + ], + [ + "what's the least i can pay on the medical payments for february", + "min_payment" + ], + [ + "how much can i get away with paying for my college loan", + "min_payment" + ], + [ + "what's the minimum required payment on my visa card", + "min_payment" + ], + [ + "i want to know my bill's minimum payment", + "min_payment" + ], + [ + "what is my bill's minimum payment", + "min_payment" + ], + [ + "minimum payment of my bill please", + "min_payment" + ], + [ + "can you tell me the minimum payment of my bill", + "min_payment" + ], + [ + "tell me the minimum payment of my bill", + "min_payment" + ], + [ + "the minumum to pay is what", + "min_payment" + ], + [ + "what is the minimum i can pay for my electric bill", + "min_payment" + ], + [ + "please lookup the minimum i need to pay on my credit card", + "min_payment" + ], + [ + "what is the minimum i need to pay for my cell phone bill", + "min_payment" + ], + [ + "tell me what my minimum payment is", + "min_payment" + ], + [ + "what is the minimum i have to pay on my chase card", + "min_payment" + ], + [ + "what is the minimum i can pay for my telephone bill", + "min_payment" + ], + [ + "what is the minimum i can pay for my light bill", + "min_payment" + ], + [ + "what is the minimum i can pay for the gas bill", + "min_payment" + ], + [ + "what do i have to pay on my amex that is the minimum", + "min_payment" + ], + [ + "i need to know my cable bill minimum payment", + "min_payment" + ], + [ + "please tell me the minimum i can pay on my electric bill", + "min_payment" + ], + [ + "please tell me the minimum i can pay on my water bill", + "min_payment" + ], + [ + "what is the lowest amount i can pay for my electric bill", + "min_payment" + ], + [ + "tell me the lowest amount i can pay for my cable bill", + "min_payment" + ], + [ + "let me know the minimum i can pay on my cable bill", + "min_payment" + ], + [ + "please tell me the bill's minimum payment", + "min_payment" + ], + [ + "what is the lowest amount i can pay for my cable bill", + "min_payment" + ], + [ + "tell me the minimum i can pay on my cable bill", + "min_payment" + ], + [ + "i need to know the bill's minimum payment", + "min_payment" + ], + [ + "tell me my electric bill minimum payment", + "min_payment" + ], + [ + "tell me the bill's minimum payment", + "min_payment" + ], + [ + "what is my cable bill minimum payment", + "min_payment" + ], + [ + "i would like to know the bill's minimum payment", + "min_payment" + ], + [ + "i must know my water bill minimum payment", + "min_payment" + ], + [ + "i wanna know the bill's minimum payment", + "min_payment" + ], + [ + "inform me the lowest amount i can pay for my cable bill", + "min_payment" + ], + [ + "i want you to tell me the minimum i can pay on my rent bill", + "min_payment" + ], + [ + "i would like to know my water bill minimum payment", + "min_payment" + ], + [ + "let me know the lowest amount i can pay for my cable bill", + "min_payment" + ], + [ + "find the minimum due on my peco energy bill for february", + "min_payment" + ], + [ + "what is the minimum payment on my chase mastercard", + "min_payment" + ], + [ + "please give me the minimum payment total for my sprint phone bill", + "min_payment" + ], + [ + "can you tell me the minimum amount due on my visa this month", + "min_payment" + ], + [ + "i want to know the bill's minimum payment", + "min_payment" + ], + [ + "please inform me of the minimum payment of the bill", + "min_payment" + ], + [ + "the bill's minimum payment, what is it", + "min_payment" + ], + [ + "what is the minimum amount of money required as payment for the bill", + "min_payment" + ], + [ + "what is the minimum payment for the bill", + "min_payment" + ], + [ + "i need to pay the smallest amount on my phone bill", + "min_payment" + ], + [ + "how little can i pay on my car bill", + "min_payment" + ], + [ + "what is the smallest i can pay on the water bill", + "min_payment" + ], + [ + "how tiny a payment can i make on electric bill", + "min_payment" + ], + [ + "how much do i have to at least pay on my medical bills", + "min_payment" + ], + [ + "how small of a payment can i make for my chase card bill", + "min_payment" + ], + [ + "what is the minimum payment i can make on my xcel energy bill", + "min_payment" + ], + [ + "please tell me the minimum amount i can pay on my wells fargo credit card", + "min_payment" + ], + [ + "what is the smallest amount i can pay on my tmobile bill", + "min_payment" + ], + [ + "what is the smallest payment i can make toward my xfinity bill", + "min_payment" + ], + [ + "can you tell me my cards minimum payment", + "min_payment" + ], + [ + "minimum payment for my credit card", + "min_payment" + ], + [ + "can i get the minimum payment for my credit card", + "min_payment" + ], + [ + "i would like to know the minimum payment for my credit card", + "min_payment" + ], + [ + "i need to know my cards minimum payment", + "min_payment" + ], + [ + "could you tell me the minimum payment on my mortgage", + "min_payment" + ], + [ + "what is the minimum payment on my eddie bauer card", + "min_payment" + ], + [ + "i need to know what the minimum payment is on my electric bill", + "min_payment" + ], + [ + "what is the bare minimum for my truck payment", + "min_payment" + ], + [ + "how much is the minimum payment on my chase card", + "min_payment" + ], + [ + "what is the least amount i can pay for power bill", + "min_payment" + ], + [ + "how much is the minimum payment for power bill", + "min_payment" + ], + [ + "what is the minimum payment for my credit card bill", + "min_payment" + ], + [ + "how much is the least i can pay for power bill", + "min_payment" + ], + [ + "what is the minimum payment for my power bill", + "min_payment" + ], + [ + "how low can i reduce my phone bill before paying", + "min_payment" + ], + [ + "how low can we get my phone bill", + "min_payment" + ], + [ + "what is the minimum payment on my phone bill", + "min_payment" + ], + [ + "what is the lowest i can pay on my phone bill", + "min_payment" + ], + [ + "what is the minimum i can pay for my phone bill", + "min_payment" + ], + [ + "how little can i pay for my water bill", + "min_payment" + ], + [ + "show my my minimum payment for youtube", + "min_payment" + ], + [ + "what's the minimum payment for my internet bill", + "min_payment" + ], + [ + "what's the minimum payment on my credit card bill", + "min_payment" + ], + [ + "what's the minimum payment on my phone bill", + "min_payment" + ], + [ + "what is the minimum payment i can make on my electric bill", + "min_payment" + ], + [ + "what's the minimum payment on my gas bill", + "min_payment" + ], + [ + "what's the least payment i can make on my cable bill", + "min_payment" + ], + [ + "what is the minimum required payment for my cell phone bill", + "min_payment" + ], + [ + "what's the minimum i can pay on my sewer bill", + "min_payment" + ], + [ + "tell me minimum to pay on landscape bill", + "min_payment" + ], + [ + "show me the minimum payment for my boat bill", + "min_payment" + ], + [ + "minimum to pay on power bill", + "min_payment" + ], + [ + "what's the minimum payment for our cc bill", + "min_payment" + ], + [ + "pay the minimum payment for m and t bill", + "min_payment" + ], + [ + "tell me my minimum citicard payment", + "min_payment" + ], + [ + "how much is the minimum payment due for my citicard this month", + "min_payment" + ], + [ + "can you tell me my minimum due for citicard", + "min_payment" + ], + [ + "what is the minimum for my citicard this month", + "min_payment" + ], + [ + "change to whisper mode", + "whisper_mode" + ], + [ + "change mode to whisper", + "whisper_mode" + ], + [ + "whisper mode off", + "whisper_mode" + ], + [ + "change out of whisper mode", + "whisper_mode" + ], + [ + "turn off whisper mode", + "whisper_mode" + ], + [ + "activate whisper mode", + "whisper_mode" + ], + [ + "whisper mode activate", + "whisper_mode" + ], + [ + "can you please lower the volume please", + "whisper_mode" + ], + [ + "use your indoor voice please", + "whisper_mode" + ], + [ + "whisper for me", + "whisper_mode" + ], + [ + "is it possible for you to whisper for me", + "whisper_mode" + ], + [ + "turn on your whisper mode", + "whisper_mode" + ], + [ + "i'm going to need you to be quiet now please", + "whisper_mode" + ], + [ + "don't make too much noise", + "whisper_mode" + ], + [ + "go into whisper mode now please", + "whisper_mode" + ], + [ + "can you use the whisper voice", + "whisper_mode" + ], + [ + "volume to whisper voice", + "whisper_mode" + ], + [ + "turn on the whisper voice", + "whisper_mode" + ], + [ + "go to the whisper voice", + "whisper_mode" + ], + [ + "can you whisper until i tell you not to", + "whisper_mode" + ], + [ + "switch to your whispering voice please", + "whisper_mode" + ], + [ + "whisper from here on out please", + "whisper_mode" + ], + [ + "whisper from now on", + "whisper_mode" + ], + [ + "i need you to use your whisper voice", + "whisper_mode" + ], + [ + "do not talk so loudly", + "whisper_mode" + ], + [ + "use your quiet voice", + "whisper_mode" + ], + [ + "you need to speak softer", + "whisper_mode" + ], + [ + "speak quiet as though you were in a church", + "whisper_mode" + ], + [ + "change to normal vocals mode", + "whisper_mode" + ], + [ + "turn your volume up", + "whisper_mode" + ], + [ + "turn up your volume", + "whisper_mode" + ], + [ + "switch to quiet mode", + "whisper_mode" + ], + [ + "let's start whispering", + "whisper_mode" + ], + [ + "let's switch to whisper voice", + "whisper_mode" + ], + [ + "let's use whisper voice", + "whisper_mode" + ], + [ + "i decide to switch out of whisper mode", + "whisper_mode" + ], + [ + "i want to switch out of whisper mode", + "whisper_mode" + ], + [ + "can you whisper", + "whisper_mode" + ], + [ + "let's switch out of whisper mode", + "whisper_mode" + ], + [ + "let's whisper", + "whisper_mode" + ], + [ + "go to whisper mode", + "whisper_mode" + ], + [ + "can you switch out of whisper mode", + "whisper_mode" + ], + [ + "i think we should whisper", + "whisper_mode" + ], + [ + "shh please speak with a whisper", + "whisper_mode" + ], + [ + "please turn on whisper mode", + "whisper_mode" + ], + [ + "go into whisper mode now", + "whisper_mode" + ], + [ + "i need you to go into whisper mode", + "whisper_mode" + ], + [ + "please only use a whisper when speaking", + "whisper_mode" + ], + [ + "i can't be loud and need you to speak more quietly", + "whisper_mode" + ], + [ + "go back to whisper mode, please", + "whisper_mode" + ], + [ + "change to whisper mode, please", + "whisper_mode" + ], + [ + "switch to whisper mode, please", + "whisper_mode" + ], + [ + "go back to whisper mode", + "whisper_mode" + ], + [ + "please switch to whisper", + "whisper_mode" + ], + [ + "switch to the whisper mode", + "whisper_mode" + ], + [ + "switch over to whisper", + "whisper_mode" + ], + [ + "switch to whisper please", + "whisper_mode" + ], + [ + "i want whisper mode to be switched off", + "whisper_mode" + ], + [ + "i want you to use whisper voice now", + "whisper_mode" + ], + [ + "please turn on whisper voice", + "whisper_mode" + ], + [ + "i dont need whisper mode on any more", + "whisper_mode" + ], + [ + "could you please get out of whisper mode", + "whisper_mode" + ], + [ + "i need your setting switched to whisper mode right away", + "whisper_mode" + ], + [ + "please shut off whisper mode for now", + "whisper_mode" + ], + [ + "make sure to set yourself to whisper mode before i go to the movie", + "whisper_mode" + ], + [ + "please turn on whisper mode because i am about to be in class", + "whisper_mode" + ], + [ + "i want your setting adjusted to whisper voice now", + "whisper_mode" + ], + [ + "please switch to whisper mode for now", + "whisper_mode" + ], + [ + "please begin using the whisper voice setting", + "whisper_mode" + ], + [ + "i want you to be in whisper mode now because i am in the library", + "whisper_mode" + ], + [ + "can you change to the whisper voice setting", + "whisper_mode" + ], + [ + "please speak with the whisper voice", + "whisper_mode" + ], + [ + "exit out of whisper mode", + "whisper_mode" + ], + [ + "is it possible for you to use the whisper voice", + "whisper_mode" + ], + [ + "switch to whisper mode", + "whisper_mode" + ], + [ + "i'd like you to use the whisper voice", + "whisper_mode" + ], + [ + "immediately begin using whisper mode", + "whisper_mode" + ], + [ + "i can't hear you, stop whispering!", + "whisper_mode" + ], + [ + "start using whisper mode", + "whisper_mode" + ], + [ + "stop using the whisper mode", + "whisper_mode" + ], + [ + "engage whisper mode now", + "whisper_mode" + ], + [ + "can you go to the whisper voice", + "whisper_mode" + ], + [ + "go back to normal mode please", + "whisper_mode" + ], + [ + "use the whisper voice", + "whisper_mode" + ], + [ + "use your whispering voice", + "whisper_mode" + ], + [ + "6 inch voices please", + "whisper_mode" + ], + [ + "can you switch to whisper mode", + "whisper_mode" + ], + [ + "i want whisper mode", + "whisper_mode" + ], + [ + "please switch to whisper mode", + "whisper_mode" + ], + [ + "would you mind switching to whisper mode", + "whisper_mode" + ], + [ + "could you please switch to whisper mode", + "whisper_mode" + ], + [ + "if you don't mind, please switch to whisper mode", + "whisper_mode" + ], + [ + "i need you to switch to whisper mode", + "whisper_mode" + ], + [ + "i want you to switch to whisper mode", + "whisper_mode" + ], + [ + "talk in whisper voice", + "whisper_mode" + ], + [ + "please whisper", + "whisper_mode" + ], + [ + "please use whisper", + "whisper_mode" + ], + [ + "please talk quietly", + "whisper_mode" + ], + [ + "use whisper voice", + "whisper_mode" + ], + [ + "turn to whisper mode", + "whisper_mode" + ], + [ + "please cancel what you are doing, i've changed my mind", + "cancel" + ], + [ + "never mind, cancel that", + "cancel" + ], + [ + "stop working on it, i need something else", + "cancel" + ], + [ + "cancel my last request, i know the answer", + "cancel" + ], + [ + "forget it, i do not need it anymore", + "cancel" + ], + [ + "pause", + "cancel" + ], + [ + "cancel that last thing", + "cancel" + ], + [ + "silence", + "cancel" + ], + [ + "quit", + "cancel" + ], + [ + "mute", + "cancel" + ], + [ + "stop", + "cancel" + ], + [ + "stop and go back", + "cancel" + ], + [ + "ai stop talking", + "cancel" + ], + [ + "quiet now", + "cancel" + ], + [ + "shhhh", + "cancel" + ], + [ + "how do i make you stop talking", + "cancel" + ], + [ + "can you be quiet please", + "cancel" + ], + [ + "please stop doing what i asked", + "cancel" + ], + [ + "please be quiet", + "cancel" + ], + [ + "i would like you to stop what you were doing", + "cancel" + ], + [ + "please cancel that last command", + "cancel" + ], + [ + "can you cancel what you were doing", + "cancel" + ], + [ + "can you cancel", + "cancel" + ], + [ + "shut up!", + "cancel" + ], + [ + "i need you to stop talking now", + "cancel" + ], + [ + "i want you to quit the action", + "cancel" + ], + [ + "discontinue please", + "cancel" + ], + [ + "i don't want you to speak any more for now", + "cancel" + ], + [ + "discontinue your current task", + "cancel" + ], + [ + "abort please", + "cancel" + ], + [ + "quit the current action please", + "cancel" + ], + [ + "forget my previous command", + "cancel" + ], + [ + "abort the current action", + "cancel" + ], + [ + "actually forget that i don't need it", + "cancel" + ], + [ + "quit what you are doing", + "cancel" + ], + [ + "sorry, you can actually stop that", + "cancel" + ], + [ + "i actually don't want this anymore, please abort", + "cancel" + ], + [ + "please cancel your present task", + "cancel" + ], + [ + "that's enough, don't say anymore please", + "cancel" + ], + [ + "i want you to stop your present action", + "cancel" + ], + [ + "stop talking please", + "cancel" + ], + [ + "what you are doing is not actually helpful, please cancel the action", + "cancel" + ], + [ + "please stop", + "cancel" + ], + [ + "cancel action", + "cancel" + ], + [ + "please cancel the input", + "cancel" + ], + [ + "ai, stop talking", + "cancel" + ], + [ + "ai, shut up", + "cancel" + ], + [ + "ai, stop!", + "cancel" + ], + [ + "please be quiet now", + "cancel" + ], + [ + "terminate", + "cancel" + ], + [ + "negate last command", + "cancel" + ], + [ + "halt", + "cancel" + ], + [ + "would you stop talking please", + "cancel" + ], + [ + "please abandon the current job", + "cancel" + ], + [ + "please abort the current task", + "cancel" + ], + [ + "terminate current process", + "cancel" + ], + [ + "i want you to cancel the current action", + "cancel" + ], + [ + "abort", + "cancel" + ], + [ + "please stop doing that", + "cancel" + ], + [ + "abort running program", + "cancel" + ], + [ + "don't continue with what you're doing", + "cancel" + ], + [ + "oh shut the hell up would you", + "cancel" + ], + [ + "destroy process", + "cancel" + ], + [ + "please cancel that last task", + "cancel" + ], + [ + "please refrain from carrying out the current task", + "cancel" + ], + [ + "ai, cancel that last request", + "cancel" + ], + [ + "do not complete the task that i gave you", + "cancel" + ], + [ + "ai, please stop your current task", + "cancel" + ], + [ + "actually, cancel that command", + "cancel" + ], + [ + "nevermind, cancel that", + "cancel" + ], + [ + "actually, cancel that", + "cancel" + ], + [ + "forget it", + "cancel" + ], + [ + "cancel that", + "cancel" + ], + [ + "don't do this process", + "cancel" + ], + [ + "undo", + "cancel" + ], + [ + "cancel current process", + "cancel" + ], + [ + "undo this process", + "cancel" + ], + [ + "just shut up", + "cancel" + ], + [ + "stop that", + "cancel" + ], + [ + "cancel that input", + "cancel" + ], + [ + "never mind, don't do that", + "cancel" + ], + [ + "never mind", + "cancel" + ], + [ + "stop doing that", + "cancel" + ], + [ + "halt that immediately", + "cancel" + ], + [ + "stop the process happening now", + "cancel" + ], + [ + "stop, i changed my mind", + "cancel" + ], + [ + "cancel that last command", + "cancel" + ], + [ + "oops cancel that", + "cancel" + ], + [ + "can you stop", + "cancel" + ], + [ + "could you stop talking for a second", + "cancel" + ], + [ + "could you stop please", + "cancel" + ], + [ + "can you switch off", + "cancel" + ], + [ + "can you stop speaking", + "cancel" + ], + [ + "can you please cancel", + "cancel" + ], + [ + "can you end the task", + "cancel" + ], + [ + "scratch", + "cancel" + ], + [ + "refrain from talking", + "cancel" + ], + [ + "halt the process", + "cancel" + ], + [ + "no more talking", + "cancel" + ], + [ + "i advise you to quit talking", + "cancel" + ], + [ + "to visit cambodia, do i need an international visa", + "international_visa" + ], + [ + "do i need to get a visa to visit canada", + "international_visa" + ], + [ + "will i need a visa to visit ireland", + "international_visa" + ], + [ + "will i need a travel visa to go to canary islands", + "international_visa" + ], + [ + "i want to visit portugal do i need a travel visa", + "international_visa" + ], + [ + "i want to see paris will i need an international visa", + "international_visa" + ], + [ + "for travel to argentina, do i need to get a travel visa", + "international_visa" + ], + [ + "will i have to apply for a visa if i want to visit mexico", + "international_visa" + ], + [ + "to vacation to tel aviv do i need a travel visa", + "international_visa" + ], + [ + "do i need to obtain a travel visa to go on vacation to places in eastern europe", + "international_visa" + ], + [ + "would i need a tourist visa for brazil", + "international_visa" + ], + [ + "do i need a tourist visa for europe", + "international_visa" + ], + [ + "i want to know if i shouldget a tourist visa for italy", + "international_visa" + ], + [ + "is it necessary to apply for a tourist visa for mexico", + "international_visa" + ], + [ + "should i get a travel visa for spain", + "international_visa" + ], + [ + "does moscow require travel visas to visit", + "international_visa" + ], + [ + "would i need a travel visa to go to the congo", + "international_visa" + ], + [ + "do i need an international visa to go to south korea", + "international_visa" + ], + [ + "do i need an international visa to go to tibet", + "international_visa" + ], + [ + "do i need an international visa to go to vietnam", + "international_visa" + ], + [ + "do i need an international visa to go to hong kong", + "international_visa" + ], + [ + "do i need an international visa to go to malaysia", + "international_visa" + ], + [ + "i am going to travel to mexico soon; do i need to get a visa", + "international_visa" + ], + [ + "i need to know if i must have an international visa to go to france", + "international_visa" + ], + [ + "i'm going to jamaica next week; am i needing a visa", + "international_visa" + ], + [ + "tell me whether i need an international visa to go to mexico", + "international_visa" + ], + [ + "i'm going to mexico; do i need an international via", + "international_visa" + ], + [ + "let me know if i need an international visa to go to sudan", + "international_visa" + ], + [ + "am i in need of an international visa to go to france", + "international_visa" + ], + [ + "do i need to get a visa for traveling to chile", + "international_visa" + ], + [ + "do i need a visa to travel to jamaica", + "international_visa" + ], + [ + "i need to know if i need a visa to travel to el salvador", + "international_visa" + ], + [ + "would i need a visa if i want to travel to mexico", + "international_visa" + ], + [ + "do i need a visa to travel to mexico", + "international_visa" + ], + [ + "does mexico require me to have a visa to travel there", + "international_visa" + ], + [ + "is a visa needed to go to mexico", + "international_visa" + ], + [ + "if i want to travel to mexico do i need to get a visa", + "international_visa" + ], + [ + "do i need a visa to scotland", + "international_visa" + ], + [ + "do i need a visa to russia", + "international_visa" + ], + [ + "do i need a visa for canada", + "international_visa" + ], + [ + "do i need a travel visa to visit germany", + "international_visa" + ], + [ + "i am going to russia and am wondering if i need a visa", + "international_visa" + ], + [ + "do i need a travel visa to visit russia", + "international_visa" + ], + [ + "do i need a travel visa to visit canada", + "international_visa" + ], + [ + "i am going to germany soon do i need a visa", + "international_visa" + ], + [ + "do i need a travel visa to visit japan", + "international_visa" + ], + [ + "do i need to get a visa for russia", + "international_visa" + ], + [ + "do i need a visa to go to greece", + "international_visa" + ], + [ + "do i need a travel visa to visit china", + "international_visa" + ], + [ + "do i need a visa for germany", + "international_visa" + ], + [ + "do i need a visa to go to somewhere internationally", + "international_visa" + ], + [ + "do i need a visa to spain", + "international_visa" + ], + [ + "do i need an international visa to go to mexico", + "international_visa" + ], + [ + "do i need an international visa to go to england", + "international_visa" + ], + [ + "do i need an international visa to go to brazil", + "international_visa" + ], + [ + "do i need an international visa to go to canada", + "international_visa" + ], + [ + "do i need an international visa to go to spain", + "international_visa" + ], + [ + "should i get a visa before going to cancun", + "international_visa" + ], + [ + "is a visa required to visit cancun", + "international_visa" + ], + [ + "will i need a visa to travel to cancun", + "international_visa" + ], + [ + "do i need a visa to go to cancun", + "international_visa" + ], + [ + "do i need a visa to travel to canada", + "international_visa" + ], + [ + "does mexico travel require a visa", + "international_visa" + ], + [ + "would i need to get a visa to go to ireland", + "international_visa" + ], + [ + "if i'm planning to go to the uk, do i need a visa", + "international_visa" + ], + [ + "might i need to get a visa to travel to venezuela", + "international_visa" + ], + [ + "i'm going to be going to canada soon, do they require a visa for entry", + "international_visa" + ], + [ + "do i need a visa to get into canada later this year", + "international_visa" + ], + [ + "does travelling to that place require a visa", + "international_visa" + ], + [ + "do i need a visa to go there", + "international_visa" + ], + [ + "do i need a visa to leave the country", + "international_visa" + ], + [ + "does international travel always require a visa", + "international_visa" + ], + [ + "when does travelling require a visa", + "international_visa" + ], + [ + "if i go to canada next month do i need a visa", + "international_visa" + ], + [ + "do i need to bring a visa when i go to canada next month", + "international_visa" + ], + [ + "i'm going to canada soon, do i need a visa", + "international_visa" + ], + [ + "what paperwork will i need to visit northern ireland", + "international_visa" + ], + [ + "should i get a visa for crete", + "international_visa" + ], + [ + "will i need a visa to go to moldova", + "international_visa" + ], + [ + "does laos require a travel visa", + "international_visa" + ], + [ + "do i need to apply for a visa to visit dnipro", + "international_visa" + ], + [ + "israel has strict restrictions do i need a visa to travel there", + "international_visa" + ], + [ + "visa's are hard to get do i need one when i travel to israel", + "international_visa" + ], + [ + "i'm vacationing in israel will i need a visa", + "international_visa" + ], + [ + "do i need a visa to travel to isreal", + "international_visa" + ], + [ + "i'm heading to israel soon, do i need a visa", + "international_visa" + ], + [ + "do i have to have a visa to go to denmark", + "international_visa" + ], + [ + "do i need a visa to go to cuba", + "international_visa" + ], + [ + "do i have to have a visa to go to the cayman islands", + "international_visa" + ], + [ + "does jamaica require a visa", + "international_visa" + ], + [ + "what documents to i need to go to egypt", + "international_visa" + ], + [ + "does france have their own version of a visa", + "international_visa" + ], + [ + "does mexico require an international visa", + "international_visa" + ], + [ + "does ireland require an international visa", + "international_visa" + ], + [ + "do i need an international visa to enter canada", + "international_visa" + ], + [ + "do i have to get an international visa before they'll let me in melbourne", + "international_visa" + ], + [ + "must i have an international visa when travelling to russia", + "international_visa" + ], + [ + "is an international visa needed to travel to z", + "international_visa" + ], + [ + "i want to go to korea, do i need an international visa", + "international_visa" + ], + [ + "do i need to apply for a travel visa if i am going to bermuda", + "international_visa" + ], + [ + "are there any specific shots i should get before traveling to england", + "vaccines" + ], + [ + "what are the recommended shots to get before i travel to south korea", + "vaccines" + ], + [ + "what are the recommended shots to get before i travel to england", + "vaccines" + ], + [ + "are there recommendations to get any specific shots before i travel to germany", + "vaccines" + ], + [ + "do i need certain shots before flying to eithiopia", + "vaccines" + ], + [ + "what type of specific shots should i get before flying to south korea", + "vaccines" + ], + [ + "are there specific shots i need before traveling to japan", + "vaccines" + ], + [ + "is it recommended to get specific shots before i travel to japan", + "vaccines" + ], + [ + "do i need specific shots before traveling to germany", + "vaccines" + ], + [ + "is it recommended to get any shots before i travel to africa", + "vaccines" + ], + [ + "how many vaccinations will i need to travel to asia", + "vaccines" + ], + [ + "which countries require vaccinations before entering for travel", + "vaccines" + ], + [ + "which types of vaccinations are required when leaving the united states", + "vaccines" + ], + [ + "what are common illnesses i should be vaccinated against when leaving the united states", + "vaccines" + ], + [ + "what are common vaccinations for someone travelling internationally", + "vaccines" + ], + [ + "does travel to africa require any shots", + "vaccines" + ], + [ + "do i need to protect myself with some shots for a trip to vietnam", + "vaccines" + ], + [ + "do i need any shots if i travel to africa", + "vaccines" + ], + [ + "would i need any immunization if i go to thailand", + "vaccines" + ], + [ + "will i need immunization for a trip to turkey", + "vaccines" + ], + [ + "can you tell me which shots i need for africa", + "vaccines" + ], + [ + "do i need special shots to go to africa", + "vaccines" + ], + [ + "how many shots do i need before i go to africa", + "vaccines" + ], + [ + "what are the necessary shots for travel to africa", + "vaccines" + ], + [ + "before i leave for mexico should i get some more vaccinations", + "vaccines" + ], + [ + "what are the shots i need in order to travel to mexico", + "vaccines" + ], + [ + "what shots do i need before heading to france", + "vaccines" + ], + [ + "are there any shots i should get before going to south africa", + "vaccines" + ], + [ + "do i need any vaccinations before going to indonesia", + "vaccines" + ], + [ + "what vaccinations should i get if i go to nigeria", + "vaccines" + ], + [ + "are vaccinations needed for trips to guana", + "vaccines" + ], + [ + "should i get a vaccination before i go to katmandu", + "vaccines" + ], + [ + "do i need to get vaccinated to go to thailand", + "vaccines" + ], + [ + "which vaccinations are required to go to viet nam", + "vaccines" + ], + [ + "is it recommended to get any specific shots before i travel to argentina", + "vaccines" + ], + [ + "is it recommended to get any specific shots before i travel to canada", + "vaccines" + ], + [ + "do i need a vaccination for spain", + "vaccines" + ], + [ + "is it recommended to get any specific shots before i travel to norway", + "vaccines" + ], + [ + "is it recommended to get any specific shots before i travel to japan", + "vaccines" + ], + [ + "do i need a vaccination to go to europe", + "vaccines" + ], + [ + "do i need a vaccination to go to greece", + "vaccines" + ], + [ + "is it recommended to get any specific shots before i travel to iceland", + "vaccines" + ], + [ + "do i need a vaccination to go to china", + "vaccines" + ], + [ + "do i need vaccinations to travel overseas", + "vaccines" + ], + [ + "do i need any shots before i go to south africa", + "vaccines" + ], + [ + "should i get any shots before i go to kenya", + "vaccines" + ], + [ + "is there a list of recommended shots to get before travelling to kenya", + "vaccines" + ], + [ + "do i need to see the doctor for shots before i go to south africa", + "vaccines" + ], + [ + "are there recommended vaccines to go there", + "vaccines" + ], + [ + "are there shots required before going to south africa", + "vaccines" + ], + [ + "what shots are recommended before traveling to kenya", + "vaccines" + ], + [ + "do i need to get vaccines before my trip", + "vaccines" + ], + [ + "i'm going to south africa, do i need to get any shots first", + "vaccines" + ], + [ + "should i get any shots before i go to south africa", + "vaccines" + ], + [ + "tell me if i need any more vaccines if i go there", + "vaccines" + ], + [ + "are any shots recommended before going to kenya", + "vaccines" + ], + [ + "do i need to get shots before i go to kenya", + "vaccines" + ], + [ + "what vaccines do i need before i travel there", + "vaccines" + ], + [ + "are my vaccines up to date for going there", + "vaccines" + ], + [ + "do i need some shots, if i am traveling to china", + "vaccines" + ], + [ + "do i need some vaccinations or anything if i'm going to eastern europe", + "vaccines" + ], + [ + "i'm going to india do i need some shots", + "vaccines" + ], + [ + "if i'm going to africa, do i need some shots first", + "vaccines" + ], + [ + "i'm going to south africa, so should i get some vaccinations or anything", + "vaccines" + ], + [ + "traveling to the uk am i going to need any specific shots", + "vaccines" + ], + [ + "if i am going to the uk are any specific shots needed", + "vaccines" + ], + [ + "are shots needed for uk travel", + "vaccines" + ], + [ + "do i need any specific shots if i go to the uk", + "vaccines" + ], + [ + "am i going to need vaccines for the trip", + "vaccines" + ], + [ + "am i required to get a vaccine for this trip", + "vaccines" + ], + [ + "will this trip require vaccines", + "vaccines" + ], + [ + "if i travel to the uk do i need any shots", + "vaccines" + ], + [ + "does my trip require vaccines", + "vaccines" + ], + [ + "will i need vaccines for my trip", + "vaccines" + ], + [ + "what shots do i need to get in order to travel to khartoum", + "vaccines" + ], + [ + "do i have to get shots to travel to iraq", + "vaccines" + ], + [ + "what shots are required to go out of the country", + "vaccines" + ], + [ + "do i need shots to go to thailand", + "vaccines" + ], + [ + "do you have a list of shots that i need for traveling to denmark", + "vaccines" + ], + [ + "please tell me if i need any shots before i go to mexico", + "vaccines" + ], + [ + "which shots do i need before i go to thailand", + "vaccines" + ], + [ + "which shots do i need to get before i go to africa next week", + "vaccines" + ], + [ + "do i need shots before i get to africa", + "vaccines" + ], + [ + "can you tell me which vaccines i need to take before mexico", + "vaccines" + ], + [ + "can you tell me if there are any shots that i am required to have before traveling to south africa", + "vaccines" + ], + [ + "what shots do i need before traveling to malawi", + "vaccines" + ], + [ + "please tell me what shots i am required to get to travel to india", + "vaccines" + ], + [ + "are there any mandatory shots that i must get before my trip to jamaica", + "vaccines" + ], + [ + "do i need to get any shots to travel to mexico", + "vaccines" + ], + [ + "do i need vaccinations to travel there", + "vaccines" + ], + [ + "are vaccinations required to travel there", + "vaccines" + ], + [ + "are vaccinations necessary to go there", + "vaccines" + ], + [ + "do i need to get vaccinations before i go", + "vaccines" + ], + [ + "which vaccinations should i get before i go", + "vaccines" + ], + [ + "i need a list of vaccinations for a trip to paris", + "vaccines" + ], + [ + "list all the shots i need to travel to france", + "vaccines" + ], + [ + "what vaccinations do i needs to travel to paris", + "vaccines" + ], + [ + "what vaccinations are required to enter paris from outside the country", + "vaccines" + ], + [ + "tell me what vaccinations i need to get into france", + "vaccines" + ], + [ + "should i get any vaccines before going over to the uk", + "vaccines" + ], + [ + "what is my vacation schedule look like", + "pto_balance" + ], + [ + "can you explain to me what type of vacation days i have still", + "pto_balance" + ], + [ + "what type of vacation schedule do i have left", + "pto_balance" + ], + [ + "can i get vacation day totals i have left", + "pto_balance" + ], + [ + "how many vacation days do i have saved up, please", + "pto_balance" + ], + [ + "how many vacation days do i have remaining", + "pto_balance" + ], + [ + "how many vacation days do i have saved up", + "pto_balance" + ], + [ + "how many vacation days do i have remaining, please", + "pto_balance" + ], + [ + "how many vacation days do i have left", + "pto_balance" + ], + [ + "how many vacation days do i still have", + "pto_balance" + ], + [ + "how many vacation days do i still get", + "pto_balance" + ], + [ + "i want to know how much vacation time i can use", + "pto_balance" + ], + [ + "do i have any vacation days to use", + "pto_balance" + ], + [ + "tell me if i have any spare vacation days", + "pto_balance" + ], + [ + "do i have any vacation time left", + "pto_balance" + ], + [ + "do i have any vacation days left", + "pto_balance" + ], + [ + "how many holiday days do i have left to use", + "pto_balance" + ], + [ + "i want to know how many vacation days i can use", + "pto_balance" + ], + [ + "how many vacation days do i have", + "pto_balance" + ], + [ + "do i have any personal days left", + "pto_balance" + ], + [ + "how many of my vacation days do i have remaining", + "pto_balance" + ], + [ + "how many vacation hours do i have", + "pto_balance" + ], + [ + "how much paid time off do i have saved", + "pto_balance" + ], + [ + "how many days do i have left of pto", + "pto_balance" + ], + [ + "how many day of my vacation are left for the year", + "pto_balance" + ], + [ + "how many pto days do i have left", + "pto_balance" + ], + [ + "how many pto days do i have for the year", + "pto_balance" + ], + [ + "how many vacation days do i have for the year", + "pto_balance" + ], + [ + "how many vacation days have i accrued", + "pto_balance" + ], + [ + "can you tell me how much pto i still have", + "pto_balance" + ], + [ + "what's the current amount of vacation owed to me", + "pto_balance" + ], + [ + "what number of vacation days remain for me", + "pto_balance" + ], + [ + "how many days can i slack off this year", + "pto_balance" + ], + [ + "do i have enough vacation to take a european trip", + "pto_balance" + ], + [ + "how much vacation am i currently entitled to", + "pto_balance" + ], + [ + "what's the amount of pto i have left", + "pto_balance" + ], + [ + "how much paid time off have i earned to date", + "pto_balance" + ], + [ + "what pto time to i have remaining", + "pto_balance" + ], + [ + "what's the current count of my pto days", + "pto_balance" + ], + [ + "what's the count of vacation days i have left", + "pto_balance" + ], + [ + "how much pto have i accrued", + "pto_balance" + ], + [ + "do i still have any pto days left, and if so, how many", + "pto_balance" + ], + [ + "how much pto do i have left", + "pto_balance" + ], + [ + "how much time off do i have left", + "pto_balance" + ], + [ + "what's my vacation day total", + "pto_balance" + ], + [ + "do i still have vacation days", + "pto_balance" + ], + [ + "how many vacation days do i have to spend", + "pto_balance" + ], + [ + "check how much pto i have left", + "pto_balance" + ], + [ + "what's the status on my vacation days", + "pto_balance" + ], + [ + "check days of pto", + "pto_balance" + ], + [ + "what is the saved vacation time i have left", + "pto_balance" + ], + [ + "how much time do i have for vacation saved", + "pto_balance" + ], + [ + "how many days of vacation time do i have saved", + "pto_balance" + ], + [ + "what is the amount of vacation days i have left", + "pto_balance" + ], + [ + "how many saved days of vacation time do i have", + "pto_balance" + ], + [ + "how many days for vacation do i have left", + "pto_balance" + ], + [ + "hoe many vacation days are left for me", + "pto_balance" + ], + [ + "how many days are left for me for vacation if i may ask", + "pto_balance" + ], + [ + "how many days off for vacation do i have left", + "pto_balance" + ], + [ + "how many vacation days do i have left this year", + "pto_balance" + ], + [ + "how many vacation days do i have saved", + "pto_balance" + ], + [ + "can you figure out how many vacation days i have left", + "pto_balance" + ], + [ + "i have how many vacation days saved up", + "pto_balance" + ], + [ + "i have how many vacation days left this year", + "pto_balance" + ], + [ + "i have how many vacation days left", + "pto_balance" + ], + [ + "how many days of vacation have i saved", + "pto_balance" + ], + [ + "i've saved what number of days of vacation", + "pto_balance" + ], + [ + "tell me the number of vacation days i have stored", + "pto_balance" + ], + [ + "what's the number of remaining vacation days i have", + "pto_balance" + ], + [ + "how many pto days do i have remaining", + "pto_balance" + ], + [ + "what is my remaining pto days", + "pto_balance" + ], + [ + "can you tell me the number of pto days i have left", + "pto_balance" + ], + [ + "can you tell me the remaining time i have for pto", + "pto_balance" + ], + [ + "do you know ho many vacation days i currently have", + "pto_balance" + ], + [ + "would you please tell me how many vacation days i have", + "pto_balance" + ], + [ + "please tell me how many vacation days i currently have", + "pto_balance" + ], + [ + "could you tell me how many vacation days i have left", + "pto_balance" + ], + [ + "how many days of vacation do i have", + "pto_balance" + ], + [ + "how much vacation time have i accrued", + "pto_balance" + ], + [ + "how many vacation hours have i accrued", + "pto_balance" + ], + [ + "please calculate my vacation time", + "pto_balance" + ], + [ + "i'd like to know how many vacation days i have", + "pto_balance" + ], + [ + "i want to know how many vacation days i have", + "pto_balance" + ], + [ + "what number of vacation days do i have", + "pto_balance" + ], + [ + "tell me how many vacation days i have", + "pto_balance" + ], + [ + "let me know the number of vacation days i have", + "pto_balance" + ], + [ + "i need to know how many vacation days i have", + "pto_balance" + ], + [ + "would you provide the number of vacation days i have", + "pto_balance" + ], + [ + "provide me the number of vacation days i have", + "pto_balance" + ], + [ + "how much pto do i have", + "pto_balance" + ], + [ + "do i have any remaining pto days", + "pto_balance" + ], + [ + "how much paid time off do i have", + "pto_balance" + ], + [ + "do i have any pto days left", + "pto_balance" + ], + [ + "do i have enough pto to take time off", + "pto_balance" + ], + [ + "how many more vacation days do i have for the year", + "pto_balance" + ], + [ + "tell me how many vacation days i have left", + "pto_balance" + ], + [ + "how many more vacation days can i use this year", + "pto_balance" + ], + [ + "how many vacation days are available to me", + "pto_balance" + ], + [ + "how many more pto days are there for me", + "pto_balance" + ], + [ + "let me know my vacation time", + "pto_balance" + ], + [ + "i'm at home, so where is the closest starbucks", + "directions" + ], + [ + "what's the distance between home and the closest starbucks", + "directions" + ], + [ + "is there a starbucks close to home", + "directions" + ], + [ + "direct me to the closest starbucks near home", + "directions" + ], + [ + "does home have a starbucks nearby", + "directions" + ], + [ + "how do i get to the beach by bus", + "directions" + ], + [ + "how do i get to the park on foot", + "directions" + ], + [ + "how do i get to the train on foot", + "directions" + ], + [ + "how do i get to the mall by bus", + "directions" + ], + [ + "how to i get to the mall on foot", + "directions" + ], + [ + "how do i get to the supermarket on foot", + "directions" + ], + [ + "how do i get to the museum on foot", + "directions" + ], + [ + "how do i get to the college by bus", + "directions" + ], + [ + "how do i get to the hotel by bus", + "directions" + ], + [ + "how do i get to the museum by bus", + "directions" + ], + [ + "assist me to know how to get to target by bus", + "directions" + ], + [ + "would you tell me how to get to walmart by bus", + "directions" + ], + [ + "i am needing you to tell me how to get to dallas, texas, by bus", + "directions" + ], + [ + "i need to know how to get to target by bus", + "directions" + ], + [ + "tell me how to get to target by bus", + "directions" + ], + [ + "i need to know where the nearest place that has mountain dew is", + "directions" + ], + [ + "how can i take a bus to dallas", + "directions" + ], + [ + "what steps do i need to take to take a bus to detroit", + "directions" + ], + [ + "how can i travel by bus to the grand canyon", + "directions" + ], + [ + "direct me to the closest korean grocery", + "directions" + ], + [ + "i want to visit chicago by bus what do i need to do", + "directions" + ], + [ + "tell me where is the closest coffee shop", + "directions" + ], + [ + "where can i find the mall closest to here", + "directions" + ], + [ + "can you tell me where the nearest rest station to me is", + "directions" + ], + [ + "i want to take a bus to mexico city how do i do that", + "directions" + ], + [ + "let me know how to get to the starbucks nearby", + "directions" + ], + [ + "would you give me directions to the closest starbucks restaurant", + "directions" + ], + [ + "how do i get to the closest starbucks", + "directions" + ], + [ + "where is the closest starbucks", + "directions" + ], + [ + "please give me directions to the nearest starbucks", + "directions" + ], + [ + "could you tell me how to get to the statue of liberty by bus", + "directions" + ], + [ + "from here, how do i get to the statue of liberty by bus", + "directions" + ], + [ + "i want to know how to get to statue of liberty by bus", + "directions" + ], + [ + "how do i get to statue of liberty by bus", + "directions" + ], + [ + "which bus should i take to get to the statue of liberty", + "directions" + ], + [ + "how close is a gas station to mcdonalds", + "directions" + ], + [ + "i need to get to a church immediately, please take me to one!", + "directions" + ], + [ + "take me to the nearest dairy queen", + "directions" + ], + [ + "can i take a bus to the grand canyon", + "directions" + ], + [ + "how do i get to the nearest post office", + "directions" + ], + [ + "where's the nearest gas station", + "directions" + ], + [ + "how would i walk to the liberty bell from here", + "directions" + ], + [ + "find me the closest public bathroom", + "directions" + ], + [ + "guide me to a laundromat near me", + "directions" + ], + [ + "take me to the closest walmart", + "directions" + ], + [ + "does the bus go to the washington monument", + "directions" + ], + [ + "are there any furniture outlets near the mall", + "directions" + ], + [ + "what's the best way to get to my bank by walking", + "directions" + ], + [ + "can a bus get me to the statue of liberty", + "directions" + ], + [ + "is a bar close to my church", + "directions" + ], + [ + "how do i get to the statue of liberty on foot", + "directions" + ], + [ + "what's the nearest ups store to walmart", + "directions" + ], + [ + "is there a tire repair place near the post office", + "directions" + ], + [ + "how do i get to the leaning tower by bus", + "directions" + ], + [ + "what's the closest mcdonalds", + "directions" + ], + [ + "what's the quickest way to a bank", + "directions" + ], + [ + "i want to see the golden gate bridge and i'm walking on 5th street right now", + "directions" + ], + [ + "is it possible to take the bus to the brooklyn bridge", + "directions" + ], + [ + "give me directions to the nearest gas station", + "directions" + ], + [ + "what's the direction for foot traffic to get to the eiffel tower", + "directions" + ], + [ + "i need directions to get to olympia by bus", + "directions" + ], + [ + "what are the directions to get to olympia by bus", + "directions" + ], + [ + "do you know how i get to olympia by bus", + "directions" + ], + [ + "is it possible to get to olympia by bus", + "directions" + ], + [ + "is there a way to go by bus to olympia", + "directions" + ], + [ + "i need an address for the closest starbucks to home", + "directions" + ], + [ + "please tell me the location of the nearest target store", + "directions" + ], + [ + "can you tell me where the atm closest to my current location is", + "directions" + ], + [ + "where is the nearest gas station to 20th and market streets, in philadelphia, pa", + "directions" + ], + [ + "find me the location of the nearest gas station", + "directions" + ], + [ + "can you tell me the nearest wells fargo bank location to port authority, new york", + "directions" + ], + [ + "please tell me the subway station nearest to madison square garden in new york", + "directions" + ], + [ + "what are the nearest streets to the statue of liberty in new york", + "directions" + ], + [ + "search for the nearest atm to newark penn station, newark in new jersey", + "directions" + ], + [ + "search for the nearest expressway to the airport", + "directions" + ], + [ + "where is starbucks", + "directions" + ], + [ + "starbucks near me", + "directions" + ], + [ + "find me starbucks", + "directions" + ], + [ + "what's the nearest starbucks", + "directions" + ], + [ + "where is the closest chevron gas station in columbus, ohio", + "directions" + ], + [ + "where is the nearest denny's to gillette stadium", + "directions" + ], + [ + "where is the closest walmart to boise, idaho", + "directions" + ], + [ + "where is the closest applebees to the empire state building", + "directions" + ], + [ + "where is the closest dog groomer in charlotte, north carolina", + "directions" + ], + [ + "i want to know the nearest bank's location", + "directions" + ], + [ + "i need to know the nearest bank's location", + "directions" + ], + [ + "i want to get directions to the closest atm", + "directions" + ], + [ + "i would like to know where the closest gas station is", + "directions" + ], + [ + "i want directions to the closest atm", + "directions" + ], + [ + "give me the location for the nearest bank", + "directions" + ], + [ + "i need to know directions to the nearest gas station", + "directions" + ], + [ + "can you tell me the nearest restaurant to me and give me directions", + "directions" + ], + [ + "can you tell me the location of the nearest bank", + "directions" + ], + [ + "where is the closest mcdonalds", + "directions" + ], + [ + "how would i get to city hall via bus", + "directions" + ], + [ + "what is the spelling of potato", + "spelling" + ], + [ + "spell potato", + "spelling" + ], + [ + "give me the spelling of potato", + "spelling" + ], + [ + "spell out potato", + "spelling" + ], + [ + "how do you spell tomato", + "spelling" + ], + [ + "can you spell water", + "spelling" + ], + [ + "how do you spell water", + "spelling" + ], + [ + "how is water spelled", + "spelling" + ], + [ + "water is spelled how", + "spelling" + ], + [ + "spell water", + "spelling" + ], + [ + "what's the letters in 'you' word like", + "spelling" + ], + [ + "the word 'you' got how many letters", + "spelling" + ], + [ + "how do you spell out university", + "spelling" + ], + [ + "how do you spell out newspaper", + "spelling" + ], + [ + "how do you spell out shepherd", + "spelling" + ], + [ + "how do you spell out espresso", + "spelling" + ], + [ + "how do you spell out wednesday", + "spelling" + ], + [ + "can you spell \"diatribe\" for me", + "spelling" + ], + [ + "spell \"requisite\" for me", + "spelling" + ], + [ + "what's the right way to spell miscellaneous", + "spelling" + ], + [ + "how do you spell syzygy", + "spelling" + ], + [ + "tell me how to spell anonymous", + "spelling" + ], + [ + "how is the word economy spelled", + "spelling" + ], + [ + "can you spell out the word special for me", + "spelling" + ], + [ + "i need to know how many r's are in restaurant", + "spelling" + ], + [ + "i need to know how to spell excellent", + "spelling" + ], + [ + "spell the word restaurant for me", + "spelling" + ], + [ + "tell me how many p's are in apple", + "spelling" + ], + [ + "how many e's are in sesame", + "spelling" + ], + [ + "tell me how many a's are in magical", + "spelling" + ], + [ + "what is the proper way to spell diamond", + "spelling" + ], + [ + "do you know how many o's are in honor", + "spelling" + ], + [ + "what's the right spelling of rambunctious", + "spelling" + ], + [ + "how do i spell catheter", + "spelling" + ], + [ + "can you tell me how to spell manipulation", + "spelling" + ], + [ + "what is the correct spelling of judgment", + "spelling" + ], + [ + "what's the spelling of cancer", + "spelling" + ], + [ + "how do you spell antithesis", + "spelling" + ], + [ + "how do i spell ambitious", + "spelling" + ], + [ + "how do you spell verisimilitude", + "spelling" + ], + [ + "how do you spell asian", + "spelling" + ], + [ + "what's the spelling of multimedia", + "spelling" + ], + [ + "can you tell me how to spell elephant", + "spelling" + ], + [ + "how do you spell hotdog", + "spelling" + ], + [ + "can you spell hamburger", + "spelling" + ], + [ + "spell government", + "spelling" + ], + [ + "tell me how to spell automobile", + "spelling" + ], + [ + "i need to know how to spell friend", + "spelling" + ], + [ + "how is friend spelled", + "spelling" + ], + [ + "how is the word acquaintance spelled", + "spelling" + ], + [ + "how do you spell friend", + "spelling" + ], + [ + "how do i spell acquaintance", + "spelling" + ], + [ + "what's the right way to spell indict", + "spelling" + ], + [ + "i want to know how to correctly spell cemetery", + "spelling" + ], + [ + "how do you spell mississippi", + "spelling" + ], + [ + "i wish i knew how to spell mississippi", + "spelling" + ], + [ + "can you remind me how to spell because", + "spelling" + ], + [ + "i need to know how to spell conscience", + "spelling" + ], + [ + "i need to know how to spell xylophone", + "spelling" + ], + [ + "how do you spell guerrilla", + "spelling" + ], + [ + "i am not sure how to spell punctuation", + "spelling" + ], + [ + "i forget how to spell xylophone", + "spelling" + ], + [ + "i don't know how to spell spaghetti", + "spelling" + ], + [ + "i don't know how to spell threshold", + "spelling" + ], + [ + "i don't know how to spell circumference", + "spelling" + ], + [ + "i don't know how to spell squirrel", + "spelling" + ], + [ + "i don't know how to spell mississippi", + "spelling" + ], + [ + "how can i spell avocado", + "spelling" + ], + [ + "tell me the complete spelling of definitely", + "spelling" + ], + [ + "i'd like to know how to spell cemetary", + "spelling" + ], + [ + "tell me how handkerchief is spelled", + "spelling" + ], + [ + "i'd like to know how acommodate is spelled", + "spelling" + ], + [ + "count the number of the letter a in happiness", + "spelling" + ], + [ + "the word is happiness; how many a's can you find in that word", + "spelling" + ], + [ + "find all the \"a\"s in happiness", + "spelling" + ], + [ + "tell how many a's are in the word happiness", + "spelling" + ], + [ + "how many a's can you find in the word happiness", + "spelling" + ], + [ + "what is the correct spelling for antipathy", + "spelling" + ], + [ + "how does the dictionary spell antipathy", + "spelling" + ], + [ + "how do you spell antipathy", + "spelling" + ], + [ + "spell antipathy for me", + "spelling" + ], + [ + "can you give me a spelling for antipathy", + "spelling" + ], + [ + "how do you spell superficial", + "spelling" + ], + [ + "i need help spelling superficial", + "spelling" + ], + [ + "i need to know how to spell superficial", + "spelling" + ], + [ + "i can't figure out how to spell superficial", + "spelling" + ], + [ + "what is the right way to spell superficial", + "spelling" + ], + [ + "how many es are in receiving", + "spelling" + ], + [ + "i don't know how to spell anethesia", + "spelling" + ], + [ + "i don't know how to spell malfeasance", + "spelling" + ], + [ + "i don't know how to spell theater", + "spelling" + ], + [ + "i don't know how to spell apparently", + "spelling" + ], + [ + "what's the proper way of spelling seance", + "spelling" + ], + [ + "how many ts are in tethered", + "spelling" + ], + [ + "how many cs are in acquiescence", + "spelling" + ], + [ + "how many ss are in narcissism", + "spelling" + ], + [ + "how do you spell sanguine", + "spelling" + ], + [ + "can you help me spell facetiousness", + "spelling" + ], + [ + "i don't know how to spell drought", + "spelling" + ], + [ + "how man z's are in zombie", + "spelling" + ], + [ + "how's everything", + "greeting" + ], + [ + "how are things going", + "greeting" + ], + [ + "hello, anyone there", + "greeting" + ], + [ + "are you okay right now", + "greeting" + ], + [ + "are you doing okay", + "greeting" + ], + [ + "how's it going right now", + "greeting" + ], + [ + "ahoy hoy", + "greeting" + ], + [ + "hey there!", + "greeting" + ], + [ + "how is everything with you", + "greeting" + ], + [ + "hey hey!", + "greeting" + ], + [ + "how have you been doing", + "greeting" + ], + [ + "it's nice to see you", + "greeting" + ], + [ + "hello there!", + "greeting" + ], + [ + "how is it going", + "greeting" + ], + [ + "how are things with you", + "greeting" + ], + [ + "hiya!", + "greeting" + ], + [ + "what's up", + "greeting" + ], + [ + "how're you doing", + "greeting" + ], + [ + "it's good to see you", + "greeting" + ], + [ + "is everything going okay", + "greeting" + ], + [ + "how is everything going", + "greeting" + ], + [ + "how goes it", + "greeting" + ], + [ + "hello, ai", + "greeting" + ], + [ + "hey, ai", + "greeting" + ], + [ + "wake up, ai", + "greeting" + ], + [ + "good day", + "greeting" + ], + [ + "greetings to you", + "greeting" + ], + [ + "hello, friend", + "greeting" + ], + [ + "whats up with you", + "greeting" + ], + [ + "hey there fellow", + "greeting" + ], + [ + "whats up", + "greeting" + ], + [ + "yo, hows it going", + "greeting" + ], + [ + "how are things for you", + "greeting" + ], + [ + "are things going well for you", + "greeting" + ], + [ + "hello siri", + "greeting" + ], + [ + "hi there alexa", + "greeting" + ], + [ + "how are you doing, ai", + "greeting" + ], + [ + "ai how are you doing today", + "greeting" + ], + [ + "how are you doing today, ai", + "greeting" + ], + [ + "how is my ai doing", + "greeting" + ], + [ + "ai how are you doing on this fine day", + "greeting" + ], + [ + "heller", + "greeting" + ], + [ + "so how is everything", + "greeting" + ], + [ + "how are you this day", + "greeting" + ], + [ + "hi how are you", + "greeting" + ], + [ + "how is everything going for you", + "greeting" + ], + [ + "hi how is everything", + "greeting" + ], + [ + "well hello", + "greeting" + ], + [ + "just wanted to say hi", + "greeting" + ], + [ + "how is your day", + "greeting" + ], + [ + "why hello", + "greeting" + ], + [ + "are you well", + "greeting" + ], + [ + "hola", + "greeting" + ], + [ + "good to see you", + "greeting" + ], + [ + "how've you been feeling", + "greeting" + ], + [ + "how are things", + "greeting" + ], + [ + "are you doing well", + "greeting" + ], + [ + "good evening", + "greeting" + ], + [ + "yo", + "greeting" + ], + [ + "ai, how are you feeling", + "greeting" + ], + [ + "how is the ai doing", + "greeting" + ], + [ + "ai, how are you doing", + "greeting" + ], + [ + "hi ai", + "greeting" + ], + [ + "have you been good", + "greeting" + ], + [ + "is everything ok with you", + "greeting" + ], + [ + "how have you been", + "greeting" + ], + [ + "are you doing ok", + "greeting" + ], + [ + "how are you", + "greeting" + ], + [ + "how's life", + "greeting" + ], + [ + "what's up with you", + "greeting" + ], + [ + "what's going on", + "greeting" + ], + [ + "how's it going with you", + "greeting" + ], + [ + "how's ife treating you", + "greeting" + ], + [ + "hello how's it going", + "greeting" + ], + [ + "how are you today", + "greeting" + ], + [ + "can you tell me how you're doing today", + "greeting" + ], + [ + "how are you this fine day", + "greeting" + ], + [ + "how are things treating you", + "greeting" + ], + [ + "aloha", + "greeting" + ], + [ + "are you feeling okay", + "greeting" + ], + [ + "how do you feel", + "greeting" + ], + [ + "bonjour", + "greeting" + ], + [ + "how are things going for you", + "greeting" + ], + [ + "what do you feel like doing", + "greeting" + ], + [ + "hello, what's up", + "greeting" + ], + [ + "hey how's life", + "greeting" + ], + [ + "hi there", + "greeting" + ], + [ + "hey how's it hanging", + "greeting" + ], + [ + "tell me how you've been", + "greeting" + ], + [ + "how is life treating you", + "greeting" + ], + [ + "hi there, how are things", + "greeting" + ], + [ + "hello, how are you", + "greeting" + ], + [ + "hey, how's it going", + "greeting" + ], + [ + "hello, are you doing alright", + "greeting" + ], + [ + "hi! are you doing okay", + "greeting" + ], + [ + "what's happening", + "greeting" + ], + [ + "hey what's up", + "greeting" + ], + [ + "why, hello bandit", + "greeting" + ], + [ + "howdy, what's new", + "greeting" + ], + [ + "salutations!", + "greeting" + ], + [ + "make the settings go back to the original", + "reset_settings" + ], + [ + "go back the the settings you had originally", + "reset_settings" + ], + [ + "change settings to how they were originally", + "reset_settings" + ], + [ + "go back to your original settings", + "reset_settings" + ], + [ + "reset the factory settings", + "reset_settings" + ], + [ + "reset the factory settings please", + "reset_settings" + ], + [ + "reset the factory settings now please", + "reset_settings" + ], + [ + "please reset the factory settings", + "reset_settings" + ], + [ + "reset the factory settings if possible", + "reset_settings" + ], + [ + "go ahead and reset your factory settings", + "reset_settings" + ], + [ + "change to factory settings now", + "reset_settings" + ], + [ + "please go back to to factory settings now", + "reset_settings" + ], + [ + "go back to factory settings now", + "reset_settings" + ], + [ + "you need to go back to the original settings", + "reset_settings" + ], + [ + "go ahead and go back to the original settings", + "reset_settings" + ], + [ + "i want you to reset your factory settings", + "reset_settings" + ], + [ + "please go back to the original settings", + "reset_settings" + ], + [ + "please reset your factory settings", + "reset_settings" + ], + [ + "go back to the original settings now", + "reset_settings" + ], + [ + "please go back to the settings of the original", + "reset_settings" + ], + [ + "i need you to reset your factory settings", + "reset_settings" + ], + [ + "you got to go back to factory settings now", + "reset_settings" + ], + [ + "please go to factory settings now", + "reset_settings" + ], + [ + "restore my factory settings immediately please", + "reset_settings" + ], + [ + "go back to factory settings please", + "reset_settings" + ], + [ + "can you restore factory settings now", + "reset_settings" + ], + [ + "go back to the factory settings for this device", + "reset_settings" + ], + [ + "i want factory settings restores right now", + "reset_settings" + ], + [ + "do a hard reset to factory settings", + "reset_settings" + ], + [ + "i'd like to reset to factory settings", + "reset_settings" + ], + [ + "clear all settings in a reset", + "reset_settings" + ], + [ + "please revert all settings to factory default", + "reset_settings" + ], + [ + "i'd like to revert to factory settings", + "reset_settings" + ], + [ + "reset to factory default", + "reset_settings" + ], + [ + "do a hard reset", + "reset_settings" + ], + [ + "please revert to your factory settings", + "reset_settings" + ], + [ + "return to your factory settings", + "reset_settings" + ], + [ + "you need to reset your factory settings", + "reset_settings" + ], + [ + "would you reset your factory settings", + "reset_settings" + ], + [ + "you should reset your factory settings", + "reset_settings" + ], + [ + "could you reset your factory settings please", + "reset_settings" + ], + [ + "reset to original settings", + "reset_settings" + ], + [ + "return to default settings", + "reset_settings" + ], + [ + "return to factory default", + "reset_settings" + ], + [ + "change back to your initial settings please", + "reset_settings" + ], + [ + "go back to your normal settings please", + "reset_settings" + ], + [ + "alter back to your orginal settings", + "reset_settings" + ], + [ + "reset to your natural settings", + "reset_settings" + ], + [ + "change back to your factory settins", + "reset_settings" + ], + [ + "i want to go back to the factory settings", + "reset_settings" + ], + [ + "help me get my device back to it's factory settings", + "reset_settings" + ], + [ + "tell me how i can reset to factory settings", + "reset_settings" + ], + [ + "i want my original settings back", + "reset_settings" + ], + [ + "return it back to the original settings", + "reset_settings" + ], + [ + "please turn my settings back to the original settings", + "reset_settings" + ], + [ + "get my back to factory settings", + "reset_settings" + ], + [ + "refresh to factory defaults", + "reset_settings" + ], + [ + "reset to default settings please", + "reset_settings" + ], + [ + "reset device to original settings", + "reset_settings" + ], + [ + "reset to default settings", + "reset_settings" + ], + [ + "please change back to initial device settings", + "reset_settings" + ], + [ + "go back to initial factory state", + "reset_settings" + ], + [ + "go back to initial settings", + "reset_settings" + ], + [ + "make all settings the initial defaults if you would", + "reset_settings" + ], + [ + "revert to factory settings please", + "reset_settings" + ], + [ + "i want you to reset to brand new please", + "reset_settings" + ], + [ + "revert to your factory settings", + "reset_settings" + ], + [ + "restore your original settings", + "reset_settings" + ], + [ + "restore your factory settings, please", + "reset_settings" + ], + [ + "restore your original settings now", + "reset_settings" + ], + [ + "restore your original settings, please", + "reset_settings" + ], + [ + "revert back to your factory settings", + "reset_settings" + ], + [ + "return to your original settings, please", + "reset_settings" + ], + [ + "revert to your factory settings, please", + "reset_settings" + ], + [ + "switch back to your factory settings", + "reset_settings" + ], + [ + "revert back to your factory settings, please", + "reset_settings" + ], + [ + "is it possible to change to original settings", + "reset_settings" + ], + [ + "can you go back to my original settings", + "reset_settings" + ], + [ + "i need you to switch to my original settings", + "reset_settings" + ], + [ + "go to default setting", + "reset_settings" + ], + [ + "change back to default settings", + "reset_settings" + ], + [ + "i want to be switched back to my factory settings", + "reset_settings" + ], + [ + "i'd like to switch back to my factory settings", + "reset_settings" + ], + [ + "put me back on my factory settings", + "reset_settings" + ], + [ + "i need to switch back to my factory settings", + "reset_settings" + ], + [ + "i need to go back on my factory settings", + "reset_settings" + ], + [ + "return to your original settings", + "reset_settings" + ], + [ + "restore the factory settings", + "reset_settings" + ], + [ + "let's go to default settings", + "reset_settings" + ], + [ + "go to factory settings", + "reset_settings" + ], + [ + "would you please reboot yourself to factory settings", + "reset_settings" + ], + [ + "please go back to your factory settings", + "reset_settings" + ], + [ + "please reconfigure yourself back to factory settings", + "reset_settings" + ], + [ + "i would like you to revert to your factory settings", + "reset_settings" + ], + [ + "i want to put you back to original settings", + "reset_settings" + ], + [ + "i want you reset to factory settings", + "reset_settings" + ], + [ + "i want factory settings put back in place", + "reset_settings" + ], + [ + "i want to reset your settings to the original", + "reset_settings" + ], + [ + "go back to the original settings", + "reset_settings" + ], + [ + "go back to your factory settings", + "reset_settings" + ], + [ + "what's your full name", + "what_is_your_name" + ], + [ + "i didn't get your name", + "what_is_your_name" + ], + [ + "what's should i call you by", + "what_is_your_name" + ], + [ + "can you tell me the ai's name", + "what_is_your_name" + ], + [ + "what is the ai's name", + "what_is_your_name" + ], + [ + "does the ai have a name", + "what_is_your_name" + ], + [ + "i'd like to know what to call you", + "what_is_your_name" + ], + [ + "what name do you prefer", + "what_is_your_name" + ], + [ + "do you have a preference regarding what i should call you", + "what_is_your_name" + ], + [ + "do you have a name i can use", + "what_is_your_name" + ], + [ + "what are you called", + "what_is_your_name" + ], + [ + "give me your name", + "what_is_your_name" + ], + [ + "what do people call you", + "what_is_your_name" + ], + [ + "what is your full name", + "what_is_your_name" + ], + [ + "tell me your full name", + "what_is_your_name" + ], + [ + "should i call you something in particular", + "what_is_your_name" + ], + [ + "what should i refer to you as", + "what_is_your_name" + ], + [ + "what name would you like me to call you", + "what_is_your_name" + ], + [ + "what name do you want me to call you", + "what_is_your_name" + ], + [ + "do you have a name that i can call you", + "what_is_your_name" + ], + [ + "what name should i use when talking with you", + "what_is_your_name" + ], + [ + "is there a particular name i should call you", + "what_is_your_name" + ], + [ + "is there a name that you preferred to be called by", + "what_is_your_name" + ], + [ + "please tell me the name i should use when talking to you", + "what_is_your_name" + ], + [ + "can i have your name please", + "what_is_your_name" + ], + [ + "can you me what they call you", + "what_is_your_name" + ], + [ + "and what would your name be", + "what_is_your_name" + ], + [ + "what name should i use for you", + "what_is_your_name" + ], + [ + "what would your name be", + "what_is_your_name" + ], + [ + "what do you want me to call you", + "what_is_your_name" + ], + [ + "what would you like to be called", + "what_is_your_name" + ], + [ + "what do you want me to refer to you as", + "what_is_your_name" + ], + [ + "what name would you like me to use", + "what_is_your_name" + ], + [ + "what name should i call you", + "what_is_your_name" + ], + [ + "do you have a name", + "what_is_your_name" + ], + [ + "please tell me your name", + "what_is_your_name" + ], + [ + "how should i refer to you", + "what_is_your_name" + ], + [ + "whats your name", + "what_is_your_name" + ], + [ + "how would you like me to refer to you", + "what_is_your_name" + ], + [ + "what name should i use to call for you", + "what_is_your_name" + ], + [ + "what is the name i should use to refer to you", + "what_is_your_name" + ], + [ + "do you know your name", + "what_is_your_name" + ], + [ + "who gave you your name", + "what_is_your_name" + ], + [ + "what name was given to you", + "what_is_your_name" + ], + [ + "what can i address you", + "what_is_your_name" + ], + [ + "what name do you like to go by", + "what_is_your_name" + ], + [ + "i want to know the name that was given by the person who made you", + "what_is_your_name" + ], + [ + "do people call you by a certain name what is it", + "what_is_your_name" + ], + [ + "what do you prefer being called", + "what_is_your_name" + ], + [ + "what do you prefer to be called", + "what_is_your_name" + ], + [ + "what did your friends call you", + "what_is_your_name" + ], + [ + "do you go by any nicknames", + "what_is_your_name" + ], + [ + "what is you name", + "what_is_your_name" + ], + [ + "what's your first name", + "what_is_your_name" + ], + [ + "what do you like being called", + "what_is_your_name" + ], + [ + "how would you like me to call you", + "what_is_your_name" + ], + [ + "who are you known as", + "what_is_your_name" + ], + [ + "how can i get your attention", + "what_is_your_name" + ], + [ + "what do you answer to", + "what_is_your_name" + ], + [ + "do you have a way you like to be referred to", + "what_is_your_name" + ], + [ + "can you tell me your name", + "what_is_your_name" + ], + [ + "how do i activate you", + "what_is_your_name" + ], + [ + "what name do you answer to", + "what_is_your_name" + ], + [ + "what can i refer to you by", + "what_is_your_name" + ], + [ + "what do they call you", + "what_is_your_name" + ], + [ + "how are you named", + "what_is_your_name" + ], + [ + "what's your designation", + "what_is_your_name" + ], + [ + "can i call you by any name", + "what_is_your_name" + ], + [ + "i want your name", + "what_is_your_name" + ], + [ + "i need to know your name", + "what_is_your_name" + ], + [ + "i need your name", + "what_is_your_name" + ], + [ + "i wanna know your name", + "what_is_your_name" + ], + [ + "i'd like your name", + "what_is_your_name" + ], + [ + "tell me your name", + "what_is_your_name" + ], + [ + "you must tell me your name", + "what_is_your_name" + ], + [ + "what name do you want to be called", + "what_is_your_name" + ], + [ + "when referring to you, what name do you want me to use", + "what_is_your_name" + ], + [ + "would you tell me your name", + "what_is_your_name" + ], + [ + "provide the name i should use to refer to you", + "what_is_your_name" + ], + [ + "i would like to know your name", + "what_is_your_name" + ], + [ + "hello, may i get your name", + "what_is_your_name" + ], + [ + "i am needing to know your name", + "what_is_your_name" + ], + [ + "tell me what name to use to refer to you", + "what_is_your_name" + ], + [ + "state your name", + "what_is_your_name" + ], + [ + "when referring to you, what name should i use", + "what_is_your_name" + ], + [ + "i want to know your name", + "what_is_your_name" + ], + [ + "ai, do you like your name", + "what_is_your_name" + ], + [ + "ai, what can i call you", + "what_is_your_name" + ], + [ + "ai, what's your name", + "what_is_your_name" + ], + [ + "ai, what do people call you", + "what_is_your_name" + ], + [ + "ai, what should i call you", + "what_is_your_name" + ], + [ + "please introduce yourself", + "what_is_your_name" + ], + [ + "could you tell me your name", + "what_is_your_name" + ], + [ + "would you like to introduce yourself", + "what_is_your_name" + ], + [ + "tell me about yourself", + "what_is_your_name" + ], + [ + "what name should i use to address you", + "what_is_your_name" + ], + [ + "what name should i refer to you as", + "what_is_your_name" + ], + [ + "how would you like to be referred to", + "what_is_your_name" + ], + [ + "what name should i use when i call you", + "what_is_your_name" + ], + [ + "do you have a name i should call you by", + "what_is_your_name" + ], + [ + "do a websearch for direct deposit set up", + "direct_deposit" + ], + [ + "search google for how to set up direct deposit", + "direct_deposit" + ], + [ + "info on setting up direct deposit", + "direct_deposit" + ], + [ + "info on direct deposit set-up", + "direct_deposit" + ], + [ + "tell me how to get my paycheck on direct deposit", + "direct_deposit" + ], + [ + "what are the steps for setting up direct deposit for my paycheck", + "direct_deposit" + ], + [ + "give me instructions to set up direct deposit for my paycheck", + "direct_deposit" + ], + [ + "i want to set up direct deposit for my paycheck, what do i need to do", + "direct_deposit" + ], + [ + "how do i set up direct deposit for my paycheck", + "direct_deposit" + ], + [ + "i'd really like to set up a direct deposit for my paycheck", + "direct_deposit" + ], + [ + "i wanna set up a direct deposit for my paycheck", + "direct_deposit" + ], + [ + "i'd like to set up a direct deposit for my paycheck", + "direct_deposit" + ], + [ + "i would like to set up direct deposit", + "direct_deposit" + ], + [ + "set up direct deposit for me", + "direct_deposit" + ], + [ + "i need to set up a direct deposit for my paycheck", + "direct_deposit" + ], + [ + "set up a direct deposit", + "direct_deposit" + ], + [ + "i need to set up direct deposit", + "direct_deposit" + ], + [ + "i want to set direct deposit", + "direct_deposit" + ], + [ + "help me get my pay check deposited directly to my home checking account", + "direct_deposit" + ], + [ + "set my paycheck up for direct deposit", + "direct_deposit" + ], + [ + "i want my paycheck to go directly to my bank account", + "direct_deposit" + ], + [ + "set up direct deposit to my money market account for my pay check", + "direct_deposit" + ], + [ + "how do i get direct deposit for my paycheck", + "direct_deposit" + ], + [ + "what's the procedure to get direct deposit for my paycheck", + "direct_deposit" + ], + [ + "set up payroll direct deposit to my checking account", + "direct_deposit" + ], + [ + "make it so my paycheck goes directly into my savings account", + "direct_deposit" + ], + [ + "how can i have my paycheck directly deposited", + "direct_deposit" + ], + [ + "i need to get direct deposit on my bofa account", + "direct_deposit" + ], + [ + "what do i need to set up direct deposit", + "direct_deposit" + ], + [ + "what is needed for setting up direct deposit", + "direct_deposit" + ], + [ + "can you walk me through setting up direct deposit", + "direct_deposit" + ], + [ + "what is needed to set up direct deposit", + "direct_deposit" + ], + [ + "i need help to set up direct deposit", + "direct_deposit" + ], + [ + "would you help me set up direct deposit", + "direct_deposit" + ], + [ + "assist me to set up direct deposit", + "direct_deposit" + ], + [ + "tell me how to set up direct deposit", + "direct_deposit" + ], + [ + "tell me how to set up direct deposit for my paycheck", + "direct_deposit" + ], + [ + "how do i direct deposit my paycheck", + "direct_deposit" + ], + [ + "what do i do to have my paycheck deposited directly in my account", + "direct_deposit" + ], + [ + "how can i have my paycheck directly deposited in my account", + "direct_deposit" + ], + [ + "i would like to set up a direct deposit, please tell me how", + "direct_deposit" + ], + [ + "how can i set up a direct deposit with my checking account", + "direct_deposit" + ], + [ + "can you tell me how to set up a direct deposit", + "direct_deposit" + ], + [ + "can you help me set up a direct depost", + "direct_deposit" + ], + [ + "how can i turn on direct deposit", + "direct_deposit" + ], + [ + "how can i set up direct deposits from my job to my bank", + "direct_deposit" + ], + [ + "what steps do i need to do to set up direct deposit", + "direct_deposit" + ], + [ + "i want to set up direct deposit what do i need to do", + "direct_deposit" + ], + [ + "what do i need to do to start direct deposit", + "direct_deposit" + ], + [ + "how do i go about setting up direct deposit", + "direct_deposit" + ], + [ + "how do i get direct deposit set up", + "direct_deposit" + ], + [ + "i'd like to know about setting up direct deposit", + "direct_deposit" + ], + [ + "can you tell me how to set up direct depost", + "direct_deposit" + ], + [ + "how do i get my check directly deposited", + "direct_deposit" + ], + [ + "direct deposit information", + "direct_deposit" + ], + [ + "how do i set up instant paycheck", + "direct_deposit" + ], + [ + "how do i direct deposit my check", + "direct_deposit" + ], + [ + "help me set up direct deposit to my bank of hawaii checking account", + "direct_deposit" + ], + [ + "can you show me how to set up direct deposit for my paycheck to my first hawaiian bank account", + "direct_deposit" + ], + [ + "i want to set up direct deposit to my first hawaiian bank account", + "direct_deposit" + ], + [ + "can you show me how to set up my paycheck to be direct deposit to my first hawaiian bank account", + "direct_deposit" + ], + [ + "how do i set up direct deposit to my bank of hawaii account", + "direct_deposit" + ], + [ + "help me set up a direct deposit", + "direct_deposit" + ], + [ + "how is a direct deposit set up", + "direct_deposit" + ], + [ + "how would i go about setting up a direct deposit", + "direct_deposit" + ], + [ + "i need to set up a direct deposit", + "direct_deposit" + ], + [ + "tell me how to set up a direct deposit", + "direct_deposit" + ], + [ + "onpay gives you two convenient ways to pay your employees", + "direct_deposit" + ], + [ + "can you help me set up direct deposit", + "direct_deposit" + ], + [ + "i need some guidance when it comes to direct deposit", + "direct_deposit" + ], + [ + "i want to switch to direct deposit", + "direct_deposit" + ], + [ + "how can i set up direct deposit", + "direct_deposit" + ], + [ + "what are the steps to direct deposit my check", + "direct_deposit" + ], + [ + "is there a specific way to set up direct deposit", + "direct_deposit" + ], + [ + "how do i arrange a direct deposit into my savings account", + "direct_deposit" + ], + [ + "how do you set up direct deposit", + "direct_deposit" + ], + [ + "can you teach me how to set up direct deposit, or show me who can", + "direct_deposit" + ], + [ + "can you show me how to set up direct deposit", + "direct_deposit" + ], + [ + "if i would like to set up direct deposit, how do i do it", + "direct_deposit" + ], + [ + "direct deposit instructions", + "direct_deposit" + ], + [ + "help setting up direct deposit", + "direct_deposit" + ], + [ + "please help me set up direct deposit", + "direct_deposit" + ], + [ + "what are the steps for setting up direct deposit", + "direct_deposit" + ], + [ + "how does one go about setting up direct deposit", + "direct_deposit" + ], + [ + "how to set up direct deposit for paychecks", + "direct_deposit" + ], + [ + "what's needed to direct deposit my paycheck", + "direct_deposit" + ], + [ + "what is required to direct deposit my paycheck", + "direct_deposit" + ], + [ + "how to direct deposit my paycheck", + "direct_deposit" + ], + [ + "i need to get my paycheck direct deposited to my chase account", + "direct_deposit" + ], + [ + "i'd like to have my paycheck direct deposited to my chase account", + "direct_deposit" + ], + [ + "what are the steps to set up direct deposit to my chase account", + "direct_deposit" + ], + [ + "how do i get my paycheck direct deposited to my chase account", + "direct_deposit" + ], + [ + "how do i set up direct deposit to my chase account", + "direct_deposit" + ], + [ + "what do i do to enable direct deposit", + "direct_deposit" + ], + [ + "can i get paychecks directly deposited to my bank of america account", + "direct_deposit" + ], + [ + "i have a great western bank account i want direct deposits to go to", + "direct_deposit" + ], + [ + "i'd like my paychecks direct deposited in my navyfed checking account", + "direct_deposit" + ], + [ + "can you walk me through setting up direct deposits to my bank of internet savings account", + "direct_deposit" + ], + [ + "how do i get paychecks put directly in my sunflower savings account", + "direct_deposit" + ], + [ + "let me set up direct deposit for this", + "direct_deposit" + ], + [ + "i want to know my interest rate", + "interest_rate" + ], + [ + "tell me my interest rate", + "interest_rate" + ], + [ + "what interest rate am i paying", + "interest_rate" + ], + [ + "my interest rate please", + "interest_rate" + ], + [ + "how do i know the interest rate for my signature account", + "interest_rate" + ], + [ + "how can i figure out my interest rate for my umpqua account", + "interest_rate" + ], + [ + "how can i find my interest rate for my alliance account", + "interest_rate" + ], + [ + "how can i figure out the interest rate for my columbia account", + "interest_rate" + ], + [ + "how can i find the interest rate for my red river account", + "interest_rate" + ], + [ + "what is the rate of interest on my savings account", + "interest_rate" + ], + [ + "how much interest am i getting on my savings", + "interest_rate" + ], + [ + "check the interest rate on my savings account", + "interest_rate" + ], + [ + "tell me my current savings account's interest rate", + "interest_rate" + ], + [ + "what's the interest rate on my savings", + "interest_rate" + ], + [ + "what is my interest rate payment", + "interest_rate" + ], + [ + "how do i figure out my intetest rate", + "interest_rate" + ], + [ + "how to calculate my interest rate", + "interest_rate" + ], + [ + "what is my intetest rate", + "interest_rate" + ], + [ + "i must find the interest rate for my checking account", + "interest_rate" + ], + [ + "i gotta find the interest rate for my checking account", + "interest_rate" + ], + [ + "i would love to know the interest rate on my bank of america cd account", + "interest_rate" + ], + [ + "i need to know the interest rate on my bank of america cd account", + "interest_rate" + ], + [ + "what is the interest rate on my bank of america cd account", + "interest_rate" + ], + [ + "i have to find the interest rate for my checking account", + "interest_rate" + ], + [ + "i must know the interest rate on my bank of america cd account", + "interest_rate" + ], + [ + "i really need to find the interest rate for my checking account", + "interest_rate" + ], + [ + "i need to find the interest rate for my checking account", + "interest_rate" + ], + [ + "i wanna know the interest rate on my bank of america cd account", + "interest_rate" + ], + [ + "what is the interest rate i am receiving from the start of the year", + "interest_rate" + ], + [ + "what's the interest rate i have from illinois national", + "interest_rate" + ], + [ + "can you tell me what my interest rate from first federal is", + "interest_rate" + ], + [ + "x has given me an interest rate, what is it", + "interest_rate" + ], + [ + "what's my interest rate from january", + "interest_rate" + ], + [ + "i need the interest rate on my capital one account", + "interest_rate" + ], + [ + "could you help me find the interest on my chase account", + "interest_rate" + ], + [ + "i need help finding the apr on my aspire loan", + "interest_rate" + ], + [ + "hi, can you tell me the interest on my ira", + "interest_rate" + ], + [ + "can you help me find the interest rate for my sba account", + "interest_rate" + ], + [ + "where do i go to view the interest rate on my brighton account", + "interest_rate" + ], + [ + "what do i need to do to look up my 1st republic account's interest rate", + "interest_rate" + ], + [ + "tell me how to locate the interest rate for my jonah account", + "interest_rate" + ], + [ + "what is the interest rate on my scotiabank account", + "interest_rate" + ], + [ + "please tell me what i can expect my bank of america interest rate to be", + "interest_rate" + ], + [ + "if i'm using citibank, what is the interest rate", + "interest_rate" + ], + [ + "what is the interest rate at chase", + "interest_rate" + ], + [ + "what would the interest rate at wells fargo be", + "interest_rate" + ], + [ + "i would like to know my chase interest rate", + "interest_rate" + ], + [ + "what is my current interest rate", + "interest_rate" + ], + [ + "what is my annual percentage rate", + "interest_rate" + ], + [ + "do you know what the interest rate is on my account", + "interest_rate" + ], + [ + "how percentage am i earning annually on my account", + "interest_rate" + ], + [ + "what interest rate will i get from city national", + "interest_rate" + ], + [ + "what interest rate will regions give me", + "interest_rate" + ], + [ + "what is the best interest rate i can get from now on", + "interest_rate" + ], + [ + "what is the interest rate i can get from the beginning of next year", + "interest_rate" + ], + [ + "is there any info on my savings interest rate online", + "interest_rate" + ], + [ + "is my savings interest rate too high", + "interest_rate" + ], + [ + "i need to know my interest rate", + "interest_rate" + ], + [ + "can i find out my checking interest rate online", + "interest_rate" + ], + [ + "is my savings interest rate too low", + "interest_rate" + ], + [ + "what is my interest rate for chase bank", + "interest_rate" + ], + [ + "how are the interest rates at chase bank", + "interest_rate" + ], + [ + "what is my credit card interest rate", + "interest_rate" + ], + [ + "i want to know td banks interest rates", + "interest_rate" + ], + [ + "how's my interest rate", + "interest_rate" + ], + [ + "does my checking interest rate seem low", + "interest_rate" + ], + [ + "what's the interest rate for my checking account", + "interest_rate" + ], + [ + "what's td bank's interest rate", + "interest_rate" + ], + [ + "can you tell me my current interest rate", + "interest_rate" + ], + [ + "let me know what my interest rate is", + "interest_rate" + ], + [ + "could you tell me my interest rate", + "interest_rate" + ], + [ + "what's my current interest rate, if you could look", + "interest_rate" + ], + [ + "what's my interest rate", + "interest_rate" + ], + [ + "what interest rate am i getting", + "interest_rate" + ], + [ + "could you find my interest rate for me", + "interest_rate" + ], + [ + "what interest rate am i getting from onewest bank", + "interest_rate" + ], + [ + "what interest rate am i getting from citigroup", + "interest_rate" + ], + [ + "what interest rate am i getting from chase", + "interest_rate" + ], + [ + "will you tell me the interest rate", + "interest_rate" + ], + [ + "can you tell me the interest rate", + "interest_rate" + ], + [ + "will you tell me my interest rate", + "interest_rate" + ], + [ + "would you tell me the interest rate", + "interest_rate" + ], + [ + "how much is the interest rate for the account i have at bluebird", + "interest_rate" + ], + [ + "how do i know what interest rate chase has", + "interest_rate" + ], + [ + "let me know my ally interest rate", + "interest_rate" + ], + [ + "on my chase bank account what is the interest rate", + "interest_rate" + ], + [ + "i need to know my b of a interest rate", + "interest_rate" + ], + [ + "can you tell me my interest rate", + "interest_rate" + ], + [ + "find my interest rate", + "interest_rate" + ], + [ + "what is my interest rate", + "interest_rate" + ], + [ + "help me determine my interest rate", + "interest_rate" + ], + [ + "what is the interest rate on my charles schwab checking account", + "interest_rate" + ], + [ + "what is the interest rate on my chase slate credit card", + "interest_rate" + ], + [ + "what is the interest rate on my barclay card arrival credit card", + "interest_rate" + ], + [ + "what is the interest rate on my capital one credit card", + "interest_rate" + ], + [ + "what is the interest rate on my bank of america credit card", + "interest_rate" + ], + [ + "i need to know the interest rate that applies to my personal loan", + "interest_rate" + ], + [ + "please tell me my current interest rate for my home equity line of credit", + "interest_rate" + ], + [ + "what is the interest rate on my money market account", + "interest_rate" + ], + [ + "can you please tell me the interest rate for cash advances on my visa", + "interest_rate" + ], + [ + "can you see if i can get a higher limit on my discovery card", + "credit_limit_change" + ], + [ + "can my credit limit on my discovery card go up", + "credit_limit_change" + ], + [ + "may i have a higher limit on my mastercard", + "credit_limit_change" + ], + [ + "can i get a higher credit limit on my amex card", + "credit_limit_change" + ], + [ + "is there a way to get a larger limit on my bank of america card", + "credit_limit_change" + ], + [ + "what's the possibility of getting a credit limit increase on my visa", + "credit_limit_change" + ], + [ + "is it possible to increase my credit limit to 1000 dollars", + "credit_limit_change" + ], + [ + "is it possible to have a higher limit on my visa", + "credit_limit_change" + ], + [ + "can i get a higher limit on my american express card", + "credit_limit_change" + ], + [ + "i'd like to increase my credit spending limit to 500 dollars", + "credit_limit_change" + ], + [ + "am i allowed to increase the credit limit on my mastercard", + "credit_limit_change" + ], + [ + "is it possible to get a credit limit increase to 3000", + "credit_limit_change" + ], + [ + "i'd like to increase my credit limit up to four thousand", + "credit_limit_change" + ], + [ + "can i increase my credit limit from 1000 to 2000 please", + "credit_limit_change" + ], + [ + "is it possible to increase the limit on my visa", + "credit_limit_change" + ], + [ + "should i increase my credit limitfor cardx", + "credit_limit_change" + ], + [ + "can i have my credit limit changed", + "credit_limit_change" + ], + [ + "credit limit change", + "credit_limit_change" + ], + [ + "please change credit", + "credit_limit_change" + ], + [ + "please change the credit limit", + "credit_limit_change" + ], + [ + "i want my credit limit changed", + "credit_limit_change" + ], + [ + "can i get a credit increase for my visa", + "credit_limit_change" + ], + [ + "can i get a higher limit on my visa card", + "credit_limit_change" + ], + [ + "can my limit be increased for my visa", + "credit_limit_change" + ], + [ + "can you increase how much i can spend on my visa", + "credit_limit_change" + ], + [ + "will you allow more spending on my visa", + "credit_limit_change" + ], + [ + "is it possible to increase my visa card limit", + "credit_limit_change" + ], + [ + "is the limit on my visa card able to be increased", + "credit_limit_change" + ], + [ + "is there a way to increase the limit on my visa card", + "credit_limit_change" + ], + [ + "am i able to increase the limit on my visa card", + "credit_limit_change" + ], + [ + "how do i increase the limit on my visa card", + "credit_limit_change" + ], + [ + "can you increase my credit limit", + "credit_limit_change" + ], + [ + "can you change my credit limit", + "credit_limit_change" + ], + [ + "can you change the limit on my credit please", + "credit_limit_change" + ], + [ + "i need to increase my credit limit", + "credit_limit_change" + ], + [ + "change my credit limit, please", + "credit_limit_change" + ], + [ + "help me change my credit limit", + "credit_limit_change" + ], + [ + "what do i do to change my credit limit", + "credit_limit_change" + ], + [ + "get my credit limit changed", + "credit_limit_change" + ], + [ + "i want to change my credit limit", + "credit_limit_change" + ], + [ + "please help me increase my mastercard credit card limit", + "credit_limit_change" + ], + [ + "i need to increase my credit limit for my visa credit card, can you assist me", + "credit_limit_change" + ], + [ + "i would like to increase my bank of america credit limit, can you help me", + "credit_limit_change" + ], + [ + "is there a way to increase the credit limit on my american express card", + "credit_limit_change" + ], + [ + "how can i increase my aa credit card limit", + "credit_limit_change" + ], + [ + "would it be possible to increase my chase card's limit", + "credit_limit_change" + ], + [ + "how do i raise the limit on my visa card", + "credit_limit_change" + ], + [ + "how would i raise my credit spending by 250 dollars", + "credit_limit_change" + ], + [ + "can i raise the limit to 500 dollars", + "credit_limit_change" + ], + [ + "can i get a credit limit raise on my credit card", + "credit_limit_change" + ], + [ + "how would i raise my credit spending by 2500 dollars", + "credit_limit_change" + ], + [ + "would i be able to increase my available credit by 600 dollars", + "credit_limit_change" + ], + [ + "i need a credit raise by 1000 dollars", + "credit_limit_change" + ], + [ + "is there a way to raise my mastercard credit", + "credit_limit_change" + ], + [ + "how would i go about raising my gold card limit", + "credit_limit_change" + ], + [ + "please increase my credit limit to $9,000", + "credit_limit_change" + ], + [ + "how do i request a credit limit increase on my visa", + "credit_limit_change" + ], + [ + "is it possible to get a new credit limit of $10,000", + "credit_limit_change" + ], + [ + "is it possible to increase the credit limit on my mastercard", + "credit_limit_change" + ], + [ + "can you increase my credit limit to $7,500", + "credit_limit_change" + ], + [ + "can i raise my credit limit to $12,000", + "credit_limit_change" + ], + [ + "tell me if i can get a higher limit on my visa", + "credit_limit_change" + ], + [ + "can i get my credit limit increased to $15,000", + "credit_limit_change" + ], + [ + "how do increase the credit limit on my visa card", + "credit_limit_change" + ], + [ + "can i get a higher credit limit on my american express", + "credit_limit_change" + ], + [ + "can i increase the credit limit for my usaa card", + "credit_limit_change" + ], + [ + "can i increase the credit limit on my kohls card", + "credit_limit_change" + ], + [ + "can i increase the credit limit for my navy federal card", + "credit_limit_change" + ], + [ + "can i increase my credit limit to 500 dollars", + "credit_limit_change" + ], + [ + "can i increase the credit limit on my target card", + "credit_limit_change" + ], + [ + "can i increase the credit limit for my bank of the west card", + "credit_limit_change" + ], + [ + "can i increase my credit limit to 700 dollars", + "credit_limit_change" + ], + [ + "can i increase the credit limit on my maurices card", + "credit_limit_change" + ], + [ + "can i increase the credit limit on my old navy card", + "credit_limit_change" + ], + [ + "can i increase my credit limit to 800 dollars", + "credit_limit_change" + ], + [ + "can i increase my credit limit to 1200 dollars", + "credit_limit_change" + ], + [ + "can i increase the credit limit for my chase card", + "credit_limit_change" + ], + [ + "can i increase the credit limit for my bank of america card", + "credit_limit_change" + ], + [ + "can i increase my credit limit to 1100 dollars", + "credit_limit_change" + ], + [ + "can i increase the credit limit on my walmart card", + "credit_limit_change" + ], + [ + "can you increase my credit limit to one thousand dollars", + "credit_limit_change" + ], + [ + "can my credit limit be increased to one thousand dollars", + "credit_limit_change" + ], + [ + "tell me if my credit limit can be increased to one thousand dollars", + "credit_limit_change" + ], + [ + "please see if you can increase my credit limit to one thousand dollars", + "credit_limit_change" + ], + [ + "i want to increase my credit limit to $1000, if possible", + "credit_limit_change" + ], + [ + "can i increase thencrdeit limit for my chase visa card", + "credit_limit_change" + ], + [ + "can i increase the credit limit for my american express card", + "credit_limit_change" + ], + [ + "can i increase the credit limit for my western union credit card", + "credit_limit_change" + ], + [ + "can i increase the credit limit for my wells fargo credit card", + "credit_limit_change" + ], + [ + "can i increase the credit limit for my visa platinum card", + "credit_limit_change" + ], + [ + "is it possible to increase the credit limit for my discover card", + "credit_limit_change" + ], + [ + "is it possible to raise the credit limit for my discover card", + "credit_limit_change" + ], + [ + "can i raise the credit limit for my discover card", + "credit_limit_change" + ], + [ + "will they let me up my credit limit to $1000", + "credit_limit_change" + ], + [ + "will i be able to increase my credit limit to $1000", + "credit_limit_change" + ], + [ + "can i up my credit limit to $1000", + "credit_limit_change" + ], + [ + "am i allowed to increase my credit limit to $1000", + "credit_limit_change" + ], + [ + "is it possible to increase my credit limit to $1000", + "credit_limit_change" + ], + [ + "can i get more money on my discover card", + "credit_limit_change" + ], + [ + "help increasing credit on discover card", + "credit_limit_change" + ], + [ + "what kinds of things are you into", + "what_are_your_hobbies" + ], + [ + "what's your favorite hobby", + "what_are_your_hobbies" + ], + [ + "what do you like to do in your spare time", + "what_are_your_hobbies" + ], + [ + "what do you do for fun", + "what_are_your_hobbies" + ], + [ + "do you have any hobbies", + "what_are_your_hobbies" + ], + [ + "do you have any past-times", + "what_are_your_hobbies" + ], + [ + "what are your favorite hobbies to take part in", + "what_are_your_hobbies" + ], + [ + "what things do you like to do", + "what_are_your_hobbies" + ], + [ + "what are your favorite hobbies", + "what_are_your_hobbies" + ], + [ + "what are your favorite things to do", + "what_are_your_hobbies" + ], + [ + "what are ai's hobbies", + "what_are_your_hobbies" + ], + [ + "i want to know if you have hobbies", + "what_are_your_hobbies" + ], + [ + "i'd like to know your hobbies", + "what_are_your_hobbies" + ], + [ + "let's talk about your hobbies", + "what_are_your_hobbies" + ], + [ + "can you tell me about your hobbies", + "what_are_your_hobbies" + ], + [ + "tell me your hobbies", + "what_are_your_hobbies" + ], + [ + "do ai have hobbies and if so what are yours", + "what_are_your_hobbies" + ], + [ + "what are you hobbies", + "what_are_your_hobbies" + ], + [ + "do you have any hobbies to speak of", + "what_are_your_hobbies" + ], + [ + "what hobbies do you do", + "what_are_your_hobbies" + ], + [ + "how do you spend your spare time", + "what_are_your_hobbies" + ], + [ + "what do you like to do when you have spare time", + "what_are_your_hobbies" + ], + [ + "what do you do when you're not working", + "what_are_your_hobbies" + ], + [ + "is there anything you like to do in your free time", + "what_are_your_hobbies" + ], + [ + "what are the things you like to do for fun", + "what_are_your_hobbies" + ], + [ + "what sort of things do you or work on for fun when you have extra time", + "what_are_your_hobbies" + ], + [ + "are there activities that you enjoy doing in your free time", + "what_are_your_hobbies" + ], + [ + "what are some things you like doing", + "what_are_your_hobbies" + ], + [ + "so what sort of hobbies are you into", + "what_are_your_hobbies" + ], + [ + "what do you do when you're not working, for fun", + "what_are_your_hobbies" + ], + [ + "what do you like to do when you're not working", + "what_are_your_hobbies" + ], + [ + "what sorts of things do you do to have a good time", + "what_are_your_hobbies" + ], + [ + "what kind of things do you do when you have free time", + "what_are_your_hobbies" + ], + [ + "can you describe your hobbies to me", + "what_are_your_hobbies" + ], + [ + "please tell me your hobbies", + "what_are_your_hobbies" + ], + [ + "tell me all about your hobbies", + "what_are_your_hobbies" + ], + [ + "i'd like to hear about your hobbies", + "what_are_your_hobbies" + ], + [ + "what things do you enjoy doing", + "what_are_your_hobbies" + ], + [ + "what are some things that you enjoy", + "what_are_your_hobbies" + ], + [ + "what do you like doing in your free time", + "what_are_your_hobbies" + ], + [ + "do you have anything you enjoy to do", + "what_are_your_hobbies" + ], + [ + "i like to paint in my free time-do you have any hobbies like that", + "what_are_your_hobbies" + ], + [ + "what hobbies do you like doing", + "what_are_your_hobbies" + ], + [ + "do you enjoy any hobbies", + "what_are_your_hobbies" + ], + [ + "what other hobbies do you enjoy", + "what_are_your_hobbies" + ], + [ + "what kinds of hobbies do you enjoy", + "what_are_your_hobbies" + ], + [ + "what are some of the hobbies you enjoy doing", + "what_are_your_hobbies" + ], + [ + "what do you enjoy doing while not working", + "what_are_your_hobbies" + ], + [ + "any hobbies", + "what_are_your_hobbies" + ], + [ + "what do you do to occupy your free time", + "what_are_your_hobbies" + ], + [ + "i would like to know what hobbies you enjoy", + "what_are_your_hobbies" + ], + [ + "what hobbies pique your interest", + "what_are_your_hobbies" + ], + [ + "what do you do in your spare time", + "what_are_your_hobbies" + ], + [ + "what do you do for hobbies", + "what_are_your_hobbies" + ], + [ + "what sorts of activities do you enjoy", + "what_are_your_hobbies" + ], + [ + "what kinds of activities do you enjoy", + "what_are_your_hobbies" + ], + [ + "what types of activities do you enjoy", + "what_are_your_hobbies" + ], + [ + "what sorts of hobbies do you enjoy", + "what_are_your_hobbies" + ], + [ + "what kind of activities do you enjoy", + "what_are_your_hobbies" + ], + [ + "what's your hobbies", + "what_are_your_hobbies" + ], + [ + "what things do you do for fun", + "what_are_your_hobbies" + ], + [ + "what hobbies do you like", + "what_are_your_hobbies" + ], + [ + "what do you like to do for fun", + "what_are_your_hobbies" + ], + [ + "what are some things you like to do", + "what_are_your_hobbies" + ], + [ + "tell me what you do for fun", + "what_are_your_hobbies" + ], + [ + "can you tell me some of your hobbies", + "what_are_your_hobbies" + ], + [ + "might you have any hobbies", + "what_are_your_hobbies" + ], + [ + "what kinds of things do you do for hobbies", + "what_are_your_hobbies" + ], + [ + "share some of your hobbies with me", + "what_are_your_hobbies" + ], + [ + "what keeps you busy in your free time", + "what_are_your_hobbies" + ], + [ + "what makes you happy in your free time", + "what_are_your_hobbies" + ], + [ + "what do you do in your down time", + "what_are_your_hobbies" + ], + [ + "please share your hobbies with me", + "what_are_your_hobbies" + ], + [ + "lets talk about your hobbies", + "what_are_your_hobbies" + ], + [ + "what kind of hobbies do you have", + "what_are_your_hobbies" + ], + [ + "what hobbies do you enjoy in your free time", + "what_are_your_hobbies" + ], + [ + "what kind of hobbies do you like to do", + "what_are_your_hobbies" + ], + [ + "what sort of things do you enjoy", + "what_are_your_hobbies" + ], + [ + "what are your favorite activities", + "what_are_your_hobbies" + ], + [ + "what hobbies do you like to partake in", + "what_are_your_hobbies" + ], + [ + "what sort of hobbies do you enjoy", + "what_are_your_hobbies" + ], + [ + "what do you do for fun in your free time", + "what_are_your_hobbies" + ], + [ + "tell me what you do in your free time", + "what_are_your_hobbies" + ], + [ + "what you do at the free time", + "what_are_your_hobbies" + ], + [ + "so what do you do at free time", + "what_are_your_hobbies" + ], + [ + "at free time what do you do", + "what_are_your_hobbies" + ], + [ + "what do you enjoy doing in your leisure time", + "what_are_your_hobbies" + ], + [ + "what types of hobbies do you enjoy", + "what_are_your_hobbies" + ], + [ + "what types of things do you like to do in your spare time", + "what_are_your_hobbies" + ], + [ + "what sorts of things are you into", + "what_are_your_hobbies" + ], + [ + "what sorts of things do you do for fun", + "what_are_your_hobbies" + ], + [ + "what sort of hobbies are you into", + "what_are_your_hobbies" + ], + [ + "how do you like to spend your free time", + "what_are_your_hobbies" + ], + [ + "inform me what you do for fun in your free time", + "what_are_your_hobbies" + ], + [ + "i gotta know your hobbies", + "what_are_your_hobbies" + ], + [ + "can you tell me your hobbies", + "what_are_your_hobbies" + ], + [ + "tell your hobbies", + "what_are_your_hobbies" + ], + [ + "what do you do in your free time", + "what_are_your_hobbies" + ], + [ + "i wanna know your hobbies", + "what_are_your_hobbies" + ], + [ + "i wish to know your hobbies", + "what_are_your_hobbies" + ], + [ + "what's the cheapest fares from lax to sfo for round trip flights leaving april 1st and returning april 7th", + "book_flight" + ], + [ + "for the dates april 1st to the 7th, find me round trip air tickets from la to sfo", + "book_flight" + ], + [ + "what southwest flights are there for lax to sfo arriving april 1st and returning april 7th", + "book_flight" + ], + [ + "what airlines have flights round trip on april 1st to april 7th from lax to sfo", + "book_flight" + ], + [ + "find me round trip flights out of lax to sfox", + "book_flight" + ], + [ + "find me a flight from tijuana to guadalajara on volaris", + "book_flight" + ], + [ + "i need a flight to be booked from san diego to boston through frontier", + "book_flight" + ], + [ + "i want a flight booked from new york to san francisco with continental", + "book_flight" + ], + [ + "get me a flight booked from houston to phoenix with american airlines", + "book_flight" + ], + [ + "i want to fly southwest from dallas to phoenix", + "book_flight" + ], + [ + "book a flight from chicago to dc on monday and returning on wednesday", + "book_flight" + ], + [ + "i need to get a flight out of lax to dia on the 16th for under four hundred", + "book_flight" + ], + [ + "book a flight from sacremento to tampa two weeks from now and returning a month after", + "book_flight" + ], + [ + "i'm looking for a roundtrip flight from afw to dgb for tomorrow until next week", + "book_flight" + ], + [ + "i'm looking for a roundtrip flight from oma to sps august 1st, 2019 to august 2nd, 2019", + "book_flight" + ], + [ + "i need to get a flight out of tampa to chicago in a month for under $123", + "book_flight" + ], + [ + "book a flight from denver to austin on the 16th and returning on the 20th", + "book_flight" + ], + [ + "book a flight from bangor to las vegas on may 1st and returning july 4th", + "book_flight" + ], + [ + "book a flight from seattle to dallas-fort worth on april the 1st and returning on april 5th", + "book_flight" + ], + [ + "i need to get a flight out of seattle to dulles next week for under $500", + "book_flight" + ], + [ + "i'm looking for a roundtrip flight from koa to mgj for june to july", + "book_flight" + ], + [ + "i need to get a flight out of denver to houston on friday for under $250", + "book_flight" + ], + [ + "i need to get a flight out of my local airport to england on monday, the 23rd for under a grand", + "book_flight" + ], + [ + "i'm looking for a roundtrip flight from aaf to dia for february 23rd to february 28th", + "book_flight" + ], + [ + "i'm looking for a roundtrip flight from fwa to hsv for march first to march fifth", + "book_flight" + ], + [ + "compare fares for al italia from bucharest to tampa returning before thanksgiving", + "book_flight" + ], + [ + "cheapest fare for flight from tehran to new york on august 1 with return on august 20", + "book_flight" + ], + [ + "compare prices for flights from recife to miami leaving may 20 returning june 5", + "book_flight" + ], + [ + "i need you to book me a flight from chicago to montpelier via united", + "book_flight" + ], + [ + "i need a roundtrip flight for 5/2 to 5/8 from nyc to los angeles", + "book_flight" + ], + [ + "can you find me a roundtrip flight from orlando to austin for 3/28 to 4/5", + "book_flight" + ], + [ + "use delta to book me a flight from dallas to pittsburgh", + "book_flight" + ], + [ + "help me find a roundtrip flight for may 7th through the 20th from pittsburgh to chicago", + "book_flight" + ], + [ + "could you make a flight reservation with air emirates from orlando to london", + "book_flight" + ], + [ + "can you find me a flight from portland, oregon to portland, maine for under $500 on delta", + "book_flight" + ], + [ + "fly me from pit to pdx on delta for under $300", + "book_flight" + ], + [ + "book a flight from la to madrid with southwest", + "book_flight" + ], + [ + "i'd like a flight from laguardia to orlando on southwest for under $400", + "book_flight" + ], + [ + "i'm going to boston from bangor on july 25th through the 29th, and need you to find me a roundtrip flight", + "book_flight" + ], + [ + "i need to get from jfk to dallas with united for under $500", + "book_flight" + ], + [ + "i need a flight from nyc to paris with delta", + "book_flight" + ], + [ + "could you get me a delta flight from sioux falls to philadelphia for under $400", + "book_flight" + ], + [ + "i want to find a roundtrip flight from philadelphia to sioux falls from august 3rd through august 25th", + "book_flight" + ], + [ + "reserve me a flight from ft lauderdale to houston on southwest", + "book_flight" + ], + [ + "find me a roundtrip flight from dallas to los angeles from march 2 to march 10", + "book_flight" + ], + [ + "buy tickets for a flight from nyc to la on march 1, returning on march 5", + "book_flight" + ], + [ + "book me a flight out of la to chicago on march 3rd for under $500", + "book_flight" + ], + [ + "book flights for me from nyc to la on march 1, returning on march 5", + "book_flight" + ], + [ + "look for a flight out of la to chicago on march 3rd for under $500", + "book_flight" + ], + [ + "find me a flight from ft lauderdale to houston on southwest", + "book_flight" + ], + [ + "i need to book a roundtrip flight from dallas to los angeles from march 2 to march 10", + "book_flight" + ], + [ + "get me a flight from ft lauderale to houston on southwest", + "book_flight" + ], + [ + "are there any flights out of la to chicago on march 3rd for under $500", + "book_flight" + ], + [ + "search for a flight from nyc to la on march 1, returning on march 5", + "book_flight" + ], + [ + "list roundtrip flights available from dallas to los angeles from march 2 to march 10", + "book_flight" + ], + [ + "confirm a flight for me from ft lauderdale to houston on southwest", + "book_flight" + ], + [ + "search for a flight out of la to chicago on march 3rd for under $500", + "book_flight" + ], + [ + "buy a flight for me from nyc to la on march 1, returning on march 5", + "book_flight" + ], + [ + "can you show me roundtrip flights from dallas to los angeles from march 2 to march 10", + "book_flight" + ], + [ + "i need you to book me a flight from ft lauderdale to houston on southwest", + "book_flight" + ], + [ + "find me a flight from nyc to la on march 1, returning on march 5", + "book_flight" + ], + [ + "find me a flight out of la to chicago on march 3rd for under $500", + "book_flight" + ], + [ + "what are some roundtrip flights from dallas to los angeles from march 2 to march 10", + "book_flight" + ], + [ + "i want to buy a plane ticket to travel from miami to honolulu on the 29th of february i need a return flight on march 5th", + "book_flight" + ], + [ + "i need to take a flight from florida to alabama on january 25th and i need to get back by the 30th", + "book_flight" + ], + [ + "i want to book a flight reservation from texas to new york on may 9th and i want to come back on the 15th", + "book_flight" + ], + [ + "i want to book a flight from hawaii to new york on july 8th and returning on july 10th", + "book_flight" + ], + [ + "i need to book a flight from texas to new york on may 25th and returning on the 28th", + "book_flight" + ], + [ + "buy a flight from santa fe to jacksonville on new year's eve that returns on the fourth, please", + "book_flight" + ], + [ + "purchase a flight from slc to columbus on tuesday that returns on friday", + "book_flight" + ], + [ + "purchase a flight from fiji to san diego on november 1 that returns on december 1, please", + "book_flight" + ], + [ + "purchase a flight from boise to sacramento on sunday and returning on wednesday", + "book_flight" + ], + [ + "buy a flight from phoenix to el paso on august 30 that returns on labor day", + "book_flight" + ], + [ + "book delta ticket madison to atlanta", + "book_flight" + ], + [ + "make delta reservation from madison to atlanta", + "book_flight" + ], + [ + "madison to atlanta delta ticket", + "book_flight" + ], + [ + "buy delta ticket madison to atlanta", + "book_flight" + ], + [ + "schedule flight from madison to atlanta on delta", + "book_flight" + ], + [ + "book a flight from pensacola, fl to houston, tx on 17 february 2019 and returning on 7 march 2019", + "book_flight" + ], + [ + "book a flight from jacksonville, fl to atlanta, ga on 14 february 2019 and returning on 1 march 2019", + "book_flight" + ], + [ + "book a flight from key west, fl to san antonio, tx on 18 february 2019 and returning on 5 march 2019", + "book_flight" + ], + [ + "book a flight from tampa, fl to baltimore, md on 11 february 2019 and returning on 19 march 2019", + "book_flight" + ], + [ + "book a flight from miami, fl to columbus, ga on 16 february 2019 and returning on 2 march 2019", + "book_flight" + ], + [ + "show me roundtrip flights from dallas to houston for march 7 and march 10", + "book_flight" + ], + [ + "i am needing you to look up roundtrip flights form houston to miami for april 12 and april 15", + "book_flight" + ], + [ + "could you check and let me know roundtrip flights from dallas to houston for march 7 and march 20", + "book_flight" + ], + [ + "i need you to get me a flight booked from houston to miami on united airlines", + "book_flight" + ], + [ + "i am needing to get a flight out of el paso to dallas on march 10 for under $300", + "book_flight" + ], + [ + "would you give me available flights out of dallas to miami on june 8 for under $340", + "book_flight" + ], + [ + "would you let me know what flights are available out of dallas to el paso on march 20 for under $400", + "book_flight" + ], + [ + "let me know what flights there are out of dallas to miami on march 10 for under $450", + "book_flight" + ], + [ + "would you book me a flight to miami from dallas on southwest airlines", + "book_flight" + ], + [ + "i need a flight booked from dallas to miami on american airlines", + "book_flight" + ], + [ + "i am wanting you to book me a flight from houston to miami on united airlines", + "book_flight" + ], + [ + "would you look up roundtrip flights from dallas to houston for march 7 and march 10", + "book_flight" + ], + [ + "i would like to know what flights are available out of el paso to dallas on june 10 for under $300", + "book_flight" + ], + [ + "please get me a flight booked from miami to dallas on american airlines", + "book_flight" + ], + [ + "get me roundtrip flight information for flights from dallas to houston for june 8 and june 17", + "book_flight" + ], + [ + "get me a flight for tuesday on spiritcom to las vegas from chicago", + "book_flight" + ], + [ + "book me a flight from o'hare to las vegas on deltacom", + "book_flight" + ], + [ + "would you let me know what is on my shopping list", + "shopping_list" + ], + [ + "list out what is on my shopping list", + "shopping_list" + ], + [ + "i need for you to tell me what is on my shopping list", + "shopping_list" + ], + [ + "do you want me to shop for peanut butter", + "shopping_list" + ], + [ + "do you want peanut butter for your lunches this week", + "shopping_list" + ], + [ + "do you prefer peanut butter or cheese for your celery", + "shopping_list" + ], + [ + "did i put bread on my shopping list", + "shopping_list" + ], + [ + "i need to know the items on my shopping list", + "shopping_list" + ], + [ + "can you tell me if i have paper towels on my shopping list", + "shopping_list" + ], + [ + "does my shopping list include apples right now", + "shopping_list" + ], + [ + "can you look up what my shopping list has on it", + "shopping_list" + ], + [ + "do i have carrots on my shopping list", + "shopping_list" + ], + [ + "is ice cream currently on my shopping list", + "shopping_list" + ], + [ + "tell me what's on my shopping list", + "shopping_list" + ], + [ + "name the items on my shopping list", + "shopping_list" + ], + [ + "pull up my shopping list for me", + "shopping_list" + ], + [ + "what did i write down on my shopping list this time", + "shopping_list" + ], + [ + "what stuff did i put on my shopping list", + "shopping_list" + ], + [ + "my shopping list contains what again", + "shopping_list" + ], + [ + "what does my shopping list entail", + "shopping_list" + ], + [ + "what does my shopping list involve", + "shopping_list" + ], + [ + "what are my shopping list's content", + "shopping_list" + ], + [ + "tell me my shopping list", + "shopping_list" + ], + [ + "i need to hear what's on my shopping list", + "shopping_list" + ], + [ + "go over my shopping list with me", + "shopping_list" + ], + [ + "what do i have on my shopping list", + "shopping_list" + ], + [ + "what things are on my shopping list", + "shopping_list" + ], + [ + "list out my shopping list for me", + "shopping_list" + ], + [ + "can you list my shopping list for me", + "shopping_list" + ], + [ + "read me my shopping list please", + "shopping_list" + ], + [ + "what are the contents of my shopping list", + "shopping_list" + ], + [ + "i'd like to know what is on my shopping list", + "shopping_list" + ], + [ + "what is available on the shopping list", + "shopping_list" + ], + [ + "show me what's on the shopping list", + "shopping_list" + ], + [ + "what can you see on my shopping list", + "shopping_list" + ], + [ + "tell me what i put on the shopping list", + "shopping_list" + ], + [ + "what are all the things on the shopping list", + "shopping_list" + ], + [ + "i'd like to know what's on the shopping list", + "shopping_list" + ], + [ + "i need to know the things on my shopping list", + "shopping_list" + ], + [ + "tell me what i can find on the shopping list", + "shopping_list" + ], + [ + "tell me the things on my shopping list", + "shopping_list" + ], + [ + "read off shopping list", + "shopping_list" + ], + [ + "tell me whats on my shopping list", + "shopping_list" + ], + [ + "what's on my shopping list", + "shopping_list" + ], + [ + "check if my shopping list has tomato", + "shopping_list" + ], + [ + "does my shopping list have tomato written on it", + "shopping_list" + ], + [ + "on the shopping list did i put tomato", + "shopping_list" + ], + [ + "do i have tomato on the shopping list", + "shopping_list" + ], + [ + "is tomato on my shopping list", + "shopping_list" + ], + [ + "list everything on my shopping list", + "shopping_list" + ], + [ + "read my entire shopping list to me", + "shopping_list" + ], + [ + "display shopping list", + "shopping_list" + ], + [ + "can you show me my shopping list", + "shopping_list" + ], + [ + "can you read my shopping list to me", + "shopping_list" + ], + [ + "what all do i have on my shopping list", + "shopping_list" + ], + [ + "read me everything on my shopping list", + "shopping_list" + ], + [ + "can you tell me whats on my shopping list", + "shopping_list" + ], + [ + "can you tell me what i have on my shopping list", + "shopping_list" + ], + [ + "i need to know what i have on my shopping list", + "shopping_list" + ], + [ + "i'd like to know what's on my shopping list", + "shopping_list" + ], + [ + "read my shopping list to me", + "shopping_list" + ], + [ + "my list for shopping has what on it", + "shopping_list" + ], + [ + "my shopping list contains what", + "shopping_list" + ], + [ + "what do i need to buy at the store", + "shopping_list" + ], + [ + "what do i need to get when i go shopping", + "shopping_list" + ], + [ + "what do i have on my list for shopping", + "shopping_list" + ], + [ + "what products are on my shopping list", + "shopping_list" + ], + [ + "what did i put on my shopping list", + "shopping_list" + ], + [ + "what does my shopping list consist of", + "shopping_list" + ], + [ + "which purchases are on my shopping list", + "shopping_list" + ], + [ + "read me my shopping list", + "shopping_list" + ], + [ + "tell me what my shopping list consists of", + "shopping_list" + ], + [ + "can you remind me what i put on my shopping list", + "shopping_list" + ], + [ + "what all is on my shopping list", + "shopping_list" + ], + [ + "what did i put on my shopping list so far", + "shopping_list" + ], + [ + "give me all contents of my shopping list", + "shopping_list" + ], + [ + "i need to know what is on my shopping list", + "shopping_list" + ], + [ + "can you tell me my shopping list items, please", + "shopping_list" + ], + [ + "what items are on my shopping list", + "shopping_list" + ], + [ + "do i need to get milk", + "shopping_list" + ], + [ + "do i need milk at the store", + "shopping_list" + ], + [ + "did i remember to put milk in the shopping list", + "shopping_list" + ], + [ + "did i put milk on the shopping list", + "shopping_list" + ], + [ + "tell me what is on my shopping list", + "shopping_list" + ], + [ + "what do i need to go shopping for", + "shopping_list" + ], + [ + "what do i need when i go shopping", + "shopping_list" + ], + [ + "what does my shopping list say that i should get", + "shopping_list" + ], + [ + "what kind of items are on my shopping list", + "shopping_list" + ], + [ + "whats on my shopping list at the moment", + "shopping_list" + ], + [ + "whats on my list for shopping", + "shopping_list" + ], + [ + "is there milk on my shopping list", + "shopping_list" + ], + [ + "does my shopping list consist of chips", + "shopping_list" + ], + [ + "are tomatoes on my shopping list", + "shopping_list" + ], + [ + "is a toothbrush on my shopping list", + "shopping_list" + ], + [ + "does my shopping list include corn", + "shopping_list" + ], + [ + "do i have a big shopping list", + "shopping_list" + ], + [ + "show everything on my to buy list", + "shopping_list" + ], + [ + "show shopping list", + "shopping_list" + ], + [ + "what's on the shopping list", + "shopping_list" + ], + [ + "show me my shopping list", + "shopping_list" + ], + [ + "can you text elizabeth and tell them i forgot to bring drinks", + "text" + ], + [ + "text wenona and tell her we will be there tomorrow", + "text" + ], + [ + "text christopher and tell him i will stop by", + "text" + ], + [ + "text audrey and tell her i will be there soon", + "text" + ], + [ + "text christy and ask her what she wants for dinner", + "text" + ], + [ + "can you text christopher and tell them im on my way", + "text" + ], + [ + "text roderick and tell him im running late", + "text" + ], + [ + "can you text marissa and tell them to stop calling me", + "text" + ], + [ + "can you text arthur and tell them im almost there", + "text" + ], + [ + "can you text kayla and tell them im running late", + "text" + ], + [ + "text chris and ask what time he will be home", + "text" + ], + [ + "send a text and tell chris i\u2019m not working today", + "text" + ], + [ + "text message chris and say i love you", + "text" + ], + [ + "send chris a text message that says stop for milk on your way home", + "text" + ], + [ + "send a text message to chris and ask what he wants to eat for dinner", + "text" + ], + [ + "send ally a text message the message is that i just landed", + "text" + ], + [ + "could you send a text to marty and say i am running behind", + "text" + ], + [ + "send a text to brooklyn with the message that i will see them later", + "text" + ], + [ + "please text nancy and give them the message that i am on vacation", + "text" + ], + [ + "text bill and tell him i'll be 30 minutes late", + "text" + ], + [ + "send a text to lisa and ask her to call me when she gets home", + "text" + ], + [ + "give a text to my cousin linda that says happy birthday", + "text" + ], + [ + "text tony and invite him to my party next saturday", + "text" + ], + [ + "send my brother mike a text that says i'm home", + "text" + ], + [ + "i have to send a text", + "text" + ], + [ + "i need you to text someone for me", + "text" + ], + [ + "send sal a text and tell them thanks", + "text" + ], + [ + "i need you to send a text", + "text" + ], + [ + "text sal and let them know the answer is yes", + "text" + ], + [ + "let sal know by text i will be attending", + "text" + ], + [ + "i have to have a text sent", + "text" + ], + [ + "text sal and tell them hi", + "text" + ], + [ + "i need sal to be texted and say i'll be there", + "text" + ], + [ + "please send ann a text and tell her i will be home in 20 minutes", + "text" + ], + [ + "please send a text to phil and ask him if he wants to play golf this weekend", + "text" + ], + [ + "send bill a text for me and tell him i will be 30 minutes late", + "text" + ], + [ + "send a text to ashley and ask her what she wants to do for supper", + "text" + ], + [ + "send amy a text for me and tell her i need to meet", + "text" + ], + [ + "i want to send a text message to", + "text" + ], + [ + "create a text message to", + "text" + ], + [ + "communicate via text to", + "text" + ], + [ + "send text message to", + "text" + ], + [ + "send a text message for me", + "text" + ], + [ + "please send a text message to natalie for me", + "text" + ], + [ + "i want to text natalie", + "text" + ], + [ + "i want you to send a text message for me", + "text" + ], + [ + "send a message to natalie in the form of a text", + "text" + ], + [ + "message mom where are you", + "text" + ], + [ + "compose a text to mom i'll talk to you later", + "text" + ], + [ + "send mom a message i'll talk to you later", + "text" + ], + [ + "send mom a text asking where are you", + "text" + ], + [ + "send a text for me", + "text" + ], + [ + "i want to send a text", + "text" + ], + [ + "send a text to mom i'll talk to you later", + "text" + ], + [ + "text mom i'll talk to you later", + "text" + ], + [ + "text robby hello", + "text" + ], + [ + "text mom and let her know i'll be there soon", + "text" + ], + [ + "text mom where are you", + "text" + ], + [ + "send mom a text i'll talk to you later", + "text" + ], + [ + "compose text message", + "text" + ], + [ + "send a message to mom be there soon", + "text" + ], + [ + "start a new text", + "text" + ], + [ + "create a new text", + "text" + ], + [ + "set up a new text message", + "text" + ], + [ + "send a text message to alice", + "text" + ], + [ + "text alice", + "text" + ], + [ + "write a text to alice", + "text" + ], + [ + "text a message to alice", + "text" + ], + [ + "text my doctor and tell him it happened again", + "text" + ], + [ + "text mary and tell them i'm on my way", + "text" + ], + [ + "text robert and tell him winter is coming", + "text" + ], + [ + "text nick and tell him the car's ready", + "text" + ], + [ + "text my wife and tell her i'm divorcing her", + "text" + ], + [ + "can you tell bob to get his dog via text", + "text" + ], + [ + "can you send a text to my mother irene and tell her i love her", + "text" + ], + [ + "can you text mary and tell them it's ready", + "text" + ], + [ + "can you ping priest chris with a text and send the following confession", + "text" + ], + [ + "can you text the sgt adam and tell them i found the missing girl", + "text" + ], + [ + "text matt and tell him i will be late tonight", + "text" + ], + [ + "text paul and ask him what time the cookout is on saturday", + "text" + ], + [ + "start a new text to maureen and tell her i go mom's christmas present", + "text" + ], + [ + "text billy and tell him to be at monday's meeting at 3pm", + "text" + ], + [ + "text william and ask him to pick up organic apples tonight", + "text" + ], + [ + "write text message to someone", + "text" + ], + [ + "text someone", + "text" + ], + [ + "can you send a text to someone", + "text" + ], + [ + "write text and send to someone", + "text" + ], + [ + "send a text to someone", + "text" + ], + [ + "text my friend for me and tell them to meet me later", + "text" + ], + [ + "text my boss for me and tell them i will be a little bit late", + "text" + ], + [ + "text my coworker for me and tell them the due date", + "text" + ], + [ + "text my dad for me and tell them i love you", + "text" + ], + [ + "text my mom for me and tell them i will be home soon", + "text" + ], + [ + "please send a text", + "text" + ], + [ + "send a text message", + "text" + ], + [ + "i need to send a text", + "text" + ], + [ + "can you send a text for me", + "text" + ], + [ + "create a new text message", + "text" + ], + [ + "please send a message to peter telling him to pick up milk", + "text" + ], + [ + "text josh and tell him i need a delivery", + "text" + ], + [ + "the bill for water and electricity is how much", + "bill_balance" + ], + [ + "what's my bill for water and electricity", + "bill_balance" + ], + [ + "for my water and electricity, how much is the bill", + "bill_balance" + ], + [ + "how much is the bill for my water and electricity", + "bill_balance" + ], + [ + "my water and electricity bill is how much", + "bill_balance" + ], + [ + "what is the total amount that i owe to sony and verizon", + "bill_balance" + ], + [ + "please tell me how much i owe sprint and how much i owe hsn", + "bill_balance" + ], + [ + "tell me how much my verizon and comcast bill come to together", + "bill_balance" + ], + [ + "how much in total do i need to pay cox and at&t", + "bill_balance" + ], + [ + "please let me know how much my bills for comcast and sprint total", + "bill_balance" + ], + [ + "what do my bills add up to", + "bill_balance" + ], + [ + "how much do i owe in bills", + "bill_balance" + ], + [ + "what's the balance on my bills", + "bill_balance" + ], + [ + "read my bill balances", + "bill_balance" + ], + [ + "how much are my bills", + "bill_balance" + ], + [ + "find out what my water bill costs please", + "bill_balance" + ], + [ + "how much is my electricity bill costing me", + "bill_balance" + ], + [ + "find out the cost of my bill payments", + "bill_balance" + ], + [ + "let me know the amounts i owe for my utilities and tuition bills", + "bill_balance" + ], + [ + "how much money do i need to spend on bill payments", + "bill_balance" + ], + [ + "can you tell me what i owe for this month's phone bill", + "bill_balance" + ], + [ + "tell me the sum total of my water and electricity bills", + "bill_balance" + ], + [ + "can you tell me the total cost of my bills please", + "bill_balance" + ], + [ + "what is the total amount due on my electricity bill", + "bill_balance" + ], + [ + "what am i being charged for my water bill", + "bill_balance" + ], + [ + "tell me how much my cable bill is", + "bill_balance" + ], + [ + "what is the total for my utilities bill this month", + "bill_balance" + ], + [ + "how much do i owe for my gas and phone bills", + "bill_balance" + ], + [ + "tell me what is owed for my water and gas bills", + "bill_balance" + ], + [ + "i need to know the amounts due for my utilities and cable bills", + "bill_balance" + ], + [ + "let me know how much money i will need to spend on paying bills", + "bill_balance" + ], + [ + "please let me know how much my gas bill is", + "bill_balance" + ], + [ + "i need to know the cost of the cable bill", + "bill_balance" + ], + [ + "how much in total will i be paying for bills", + "bill_balance" + ], + [ + "what do i owe for my utilities bill", + "bill_balance" + ], + [ + "please give me the full balance on my water bill", + "bill_balance" + ], + [ + "how much is the total due for my pgw gas bill", + "bill_balance" + ], + [ + "what's the amount due on my latest sprint bill", + "bill_balance" + ], + [ + "i need the dollar amount due on my verizon bill, please", + "bill_balance" + ], + [ + "can you tell me what the amount on my directv bill is", + "bill_balance" + ], + [ + "remind me of the invoice total for my plumbing bill", + "bill_balance" + ], + [ + "tell me what amount i have to pay for my directv bill please", + "bill_balance" + ], + [ + "i need to know my bill total for my verizon payment due this month", + "bill_balance" + ], + [ + "please find the current balance on my con edison bill", + "bill_balance" + ], + [ + "what's the balance on my sprint account", + "bill_balance" + ], + [ + "how much is my xfinity bill this month", + "bill_balance" + ], + [ + "what's the cost of my dte bill plus my electricity bill", + "bill_balance" + ], + [ + "my dte bill is how much", + "bill_balance" + ], + [ + "what is my dte bill this month", + "bill_balance" + ], + [ + "how much are my electric and heating bills", + "bill_balance" + ], + [ + "my dte and water bills are how much", + "bill_balance" + ], + [ + "my water bill is how much this month", + "bill_balance" + ], + [ + "how much is my electric bill for this month", + "bill_balance" + ], + [ + "how much are my xfinity and dte bills", + "bill_balance" + ], + [ + "how much are my cable and water bills", + "bill_balance" + ], + [ + "how much do i have to pay on my bills", + "bill_balance" + ], + [ + "can you check the balance on the water bill", + "bill_balance" + ], + [ + "how much do i have to pay for my cable bill", + "bill_balance" + ], + [ + "how much do i owe on my cable bill", + "bill_balance" + ], + [ + "can you find out how much i owe on my bills", + "bill_balance" + ], + [ + "can you check and see how much i owe on my cable bill", + "bill_balance" + ], + [ + "do you know how much i owe on my cable bill", + "bill_balance" + ], + [ + "how much do i need to pay on my bills", + "bill_balance" + ], + [ + "can you tell me how much i owe on my cable bill", + "bill_balance" + ], + [ + "how much is my comcast bill", + "bill_balance" + ], + [ + "what is the amount on my comcast bill", + "bill_balance" + ], + [ + "what is the my comcast bill this month", + "bill_balance" + ], + [ + "what do i owe bill wise", + "bill_balance" + ], + [ + "do i have any due bills and how much", + "bill_balance" + ], + [ + "do i still owe any bills", + "bill_balance" + ], + [ + "how much do i have to pay for my bills this month", + "bill_balance" + ], + [ + "do i owe any bills", + "bill_balance" + ], + [ + "what's the final amount of all the money i need to pay in bills this month", + "bill_balance" + ], + [ + "add all my bills for this month and tell me the total", + "bill_balance" + ], + [ + "what's the sum of all i owe on bills this month", + "bill_balance" + ], + [ + "what's the total i owe on all my bills", + "bill_balance" + ], + [ + "what's the water bill", + "bill_balance" + ], + [ + "how much are all my bills combined", + "bill_balance" + ], + [ + "what's my mortgage payment going to be this month", + "bill_balance" + ], + [ + "what do i owe on the car this month", + "bill_balance" + ], + [ + "how much are utilities", + "bill_balance" + ], + [ + "how much is my gas bill", + "bill_balance" + ], + [ + "how much is my internet bill", + "bill_balance" + ], + [ + "how much is my cable bill", + "bill_balance" + ], + [ + "how much is my rent", + "bill_balance" + ], + [ + "how much is my cable bill for", + "bill_balance" + ], + [ + "how much is my current water bill for", + "bill_balance" + ], + [ + "how much is my electric bill for", + "bill_balance" + ], + [ + "how much is my water bill for", + "bill_balance" + ], + [ + "how much is my current cable bill for", + "bill_balance" + ], + [ + "what is the amount on my water bill", + "bill_balance" + ], + [ + "how much do i have on credit card bill", + "bill_balance" + ], + [ + "what is the balance on my bills", + "bill_balance" + ], + [ + "what is my domain name bill", + "bill_balance" + ], + [ + "how much is my groceries and gas bill", + "bill_balance" + ], + [ + "what is the cost of water and electric this month", + "bill_balance" + ], + [ + "what is the amount of balance i have to pay on my bill", + "bill_balance" + ], + [ + "how much do i owe on bills", + "bill_balance" + ], + [ + "how much on bills to i have to pay", + "bill_balance" + ], + [ + "what is my email subscriction services bill", + "bill_balance" + ], + [ + "tell lydia and laura where i am located", + "share_location" + ], + [ + "share my location with brad and terry", + "share_location" + ], + [ + "tell john and sam where i am", + "share_location" + ], + [ + "share my location with darren and stacey", + "share_location" + ], + [ + "let cora and nancy know were i am now", + "share_location" + ], + [ + "share my gps coordinates with my dad", + "share_location" + ], + [ + "share my gps coordinates with kelly", + "share_location" + ], + [ + "share my gps coordinates with my brother", + "share_location" + ], + [ + "share my gps coordinates with my mother", + "share_location" + ], + [ + "share my gps coordinates with jim", + "share_location" + ], + [ + "please show my current location to andre", + "share_location" + ], + [ + "give the boys my location please", + "share_location" + ], + [ + "can you share my location with my girlfriends", + "share_location" + ], + [ + "let shih chieh see my location", + "share_location" + ], + [ + "share my location with mom, please", + "share_location" + ], + [ + "let coach know where i am", + "share_location" + ], + [ + "share my location with ma", + "share_location" + ], + [ + "tell base camp my gps coordinates", + "share_location" + ], + [ + "tell the kids where i am", + "share_location" + ], + [ + "let the folks know my gps coordinates", + "share_location" + ], + [ + "my friend steve needs my gps coordinates send them to him", + "share_location" + ], + [ + "let the rents have my current location", + "share_location" + ], + [ + "let my group know what my current location is", + "share_location" + ], + [ + "give boss my current location", + "share_location" + ], + [ + "give me current gps coordinates to my sister", + "share_location" + ], + [ + "give my current location to robyn now", + "share_location" + ], + [ + "send my current location to my superior", + "share_location" + ], + [ + "let lucy know my gps coordinates", + "share_location" + ], + [ + "tell carl my gps coordinates", + "share_location" + ], + [ + "i need you to send my location to paul and ryan", + "share_location" + ], + [ + "share my coordinates with melissa and doug", + "share_location" + ], + [ + "can you let sam and woody know where i am", + "share_location" + ], + [ + "let randy and travis know where i'm at", + "share_location" + ], + [ + "can you give my whereabouts to doug and buster", + "share_location" + ], + [ + "please show me how to share my location with noel", + "share_location" + ], + [ + "how do i share my location with noel", + "share_location" + ], + [ + "i need to share my location with noel", + "share_location" + ], + [ + "how can i show noel where i am right now", + "share_location" + ], + [ + "i need to send my current location to sean", + "share_location" + ], + [ + "i would like to share my location with my mom", + "share_location" + ], + [ + "please send my location to haley", + "share_location" + ], + [ + "i need to share my location with trey", + "share_location" + ], + [ + "trey needs my current location", + "share_location" + ], + [ + "can you tell bob and alice where i am", + "share_location" + ], + [ + "i would like ms johannson and ms alba to be informed of my location", + "share_location" + ], + [ + "advise sam of my current location please", + "share_location" + ], + [ + "please send the police my location with gps", + "share_location" + ], + [ + "please tell my location to bob", + "share_location" + ], + [ + "i need you to push my location to cory", + "share_location" + ], + [ + "please share my location with my boss and my lawyer", + "share_location" + ], + [ + "give my boyfriend my gps coordinates", + "share_location" + ], + [ + "will you let mary know my location", + "share_location" + ], + [ + "send my location to my mom", + "share_location" + ], + [ + "i need you to let mr miyagi and daniel know where i am", + "share_location" + ], + [ + "can you share my current location with amy", + "share_location" + ], + [ + "post my gps coordinates to my facebook friends", + "share_location" + ], + [ + "please let my mom and dad know my location", + "share_location" + ], + [ + "i need the tow truck to be given my gps coordinates", + "share_location" + ], + [ + "have miranda know about my current location", + "share_location" + ], + [ + "send the location i'm at with martin", + "share_location" + ], + [ + "give my location right now to my family", + "share_location" + ], + [ + "inform eric of my current location", + "share_location" + ], + [ + "my gps coordiantes will be shared with aunt sunny", + "share_location" + ], + [ + "gps coordinates share with home", + "share_location" + ], + [ + "send my gps coordinates with home base please", + "share_location" + ], + [ + "share to grandma my gps coordinates", + "share_location" + ], + [ + "give adam my gps coordinates", + "share_location" + ], + [ + "send my gps location to manuel", + "share_location" + ], + [ + "give jim my gps location", + "share_location" + ], + [ + "share my location with sarah", + "share_location" + ], + [ + "give tim my current location from the gps", + "share_location" + ], + [ + "can you forward my location to tom", + "share_location" + ], + [ + "share my location with my sister", + "share_location" + ], + [ + "share my location wtih amanda now", + "share_location" + ], + [ + "share my location with mom", + "share_location" + ], + [ + "start sending my location to alex", + "share_location" + ], + [ + "tell brady where my location is", + "share_location" + ], + [ + "share location with bill", + "share_location" + ], + [ + "let barbara know where i'm at", + "share_location" + ], + [ + "please tell wanda where i am now", + "share_location" + ], + [ + "please tell steve my location", + "share_location" + ], + [ + "tell bill and craig where i am", + "share_location" + ], + [ + "give my location to bill and craig", + "share_location" + ], + [ + "inform bill and craig of my location", + "share_location" + ], + [ + "can you tell bill and craig where i am", + "share_location" + ], + [ + "let bill and craig know where i am", + "share_location" + ], + [ + "alert the wife of my exact location", + "share_location" + ], + [ + "let the wife see where i'm at", + "share_location" + ], + [ + "let dan know where i am", + "share_location" + ], + [ + "allow my son to see my gps coordinates", + "share_location" + ], + [ + "share my gps location with steve", + "share_location" + ], + [ + "can you share my location with mom", + "share_location" + ], + [ + "please allow dan to see my location", + "share_location" + ], + [ + "can you let ben and jerry know my current location", + "share_location" + ], + [ + "share my location with ben and jerry", + "share_location" + ], + [ + "can you show ben and jerry where i am currently at", + "share_location" + ], + [ + "send my location to ben and jerry", + "share_location" + ], + [ + "let ben and jerry know where i am", + "share_location" + ], + [ + "how do i share where i am, with another person", + "share_location" + ], + [ + "give tom my location", + "share_location" + ], + [ + "i am ready now to cash in on the many credit card points i have saved up", + "redeem_rewards" + ], + [ + "i have credit card points but don't know how to use them", + "redeem_rewards" + ], + [ + "walk me through the best ways to use my credit card points", + "redeem_rewards" + ], + [ + "i am ready now to use some of the credit card points i have saved", + "redeem_rewards" + ], + [ + "i want to hear more about how i can use my credit card points", + "redeem_rewards" + ], + [ + "how can i cash in the rewards i earned with my visa card", + "redeem_rewards" + ], + [ + "walk me through the process of cashing in on credit card points", + "redeem_rewards" + ], + [ + "i would like to use my credit card points", + "redeem_rewards" + ], + [ + "do i have enough credit card points to redeem a new appliance", + "redeem_rewards" + ], + [ + "i would love to redeem some smart speakers with my credit card points", + "redeem_rewards" + ], + [ + "how can i redeem rewards earned through my amex card", + "redeem_rewards" + ], + [ + "how can i cash in on the rewards i earned through my american express card", + "redeem_rewards" + ], + [ + "could i redeem my credit card points on a new tv", + "redeem_rewards" + ], + [ + "can you help me figure out how to utilize my credit card points", + "redeem_rewards" + ], + [ + "can you explain to me how i ought to use my credit card points", + "redeem_rewards" + ], + [ + "i would like to use my credit card points to acquire a new laptop", + "redeem_rewards" + ], + [ + "i would like to redeem my credit card reward points", + "redeem_rewards" + ], + [ + "have i got enough credit card points to get a new tablet device", + "redeem_rewards" + ], + [ + "i have a lot of credit card points saved up and would like to start redeeming them", + "redeem_rewards" + ], + [ + "walk me through reward redemption from my barclay's card", + "redeem_rewards" + ], + [ + "explain to me how to cash in rewards for my mastercard", + "redeem_rewards" + ], + [ + "help me figure out redemption of my credit card points", + "redeem_rewards" + ], + [ + "how can i redeem the points i've earned with my credit card", + "redeem_rewards" + ], + [ + "i have a lot of points saved up from my credit card rewards but don't know how to redeem them", + "redeem_rewards" + ], + [ + "can you help me begin the process of redeeming credit card points", + "redeem_rewards" + ], + [ + "i want to redeem points on my chase card, but how", + "redeem_rewards" + ], + [ + "how can i cash in rewards on my discover card", + "redeem_rewards" + ], + [ + "if i want to redeem miles from my delta skymiles card, how do i do that", + "redeem_rewards" + ], + [ + "how can i cash in rewards on my chase card", + "redeem_rewards" + ], + [ + "how can i cash in the rewards i have earned on my amex", + "redeem_rewards" + ], + [ + "i need you to check if my credit card points are redeemable right now", + "redeem_rewards" + ], + [ + "call my credit card company and ask can i use my points", + "redeem_rewards" + ], + [ + "i want to know if i can redeem my credit card points now", + "redeem_rewards" + ], + [ + "i check my credit card company to see if my points are good to go", + "redeem_rewards" + ], + [ + "can you check with my credit card company and see if i can redeem my points", + "redeem_rewards" + ], + [ + "do i need a certain amount of points before i can redeem them", + "redeem_rewards" + ], + [ + "are there any steps i need to take to use my credit card points", + "redeem_rewards" + ], + [ + "if i want to use my credit card points what do i do", + "redeem_rewards" + ], + [ + "can i redeem my credit card points for anything", + "redeem_rewards" + ], + [ + "how many points do i need before i can redeem them", + "redeem_rewards" + ], + [ + "at what point balance can i redeem my points", + "redeem_rewards" + ], + [ + "do i have to contact someone to use my credit card points", + "redeem_rewards" + ], + [ + "do i have enough points to for a redemption", + "redeem_rewards" + ], + [ + "what do i do if i want to use my credit card points", + "redeem_rewards" + ], + [ + "how can i redeem my credit card points", + "redeem_rewards" + ], + [ + "what steps do i take to redeem my credit card points", + "redeem_rewards" + ], + [ + "can you tell me how to redeem my credit card points", + "redeem_rewards" + ], + [ + "in order to redeem my credit card points, what should i do", + "redeem_rewards" + ], + [ + "what do i need to do in order to redeem my credit card points", + "redeem_rewards" + ], + [ + "do you think i could get a target gift card with my credit card points", + "redeem_rewards" + ], + [ + "is a walmart gift card one of the things i can use my credit card points on", + "redeem_rewards" + ], + [ + "let's use my credit card points", + "redeem_rewards" + ], + [ + "tell me how to use credit card points", + "redeem_rewards" + ], + [ + "my amex rewards; how do i get them", + "redeem_rewards" + ], + [ + "i'd like to redeem my credit card points", + "redeem_rewards" + ], + [ + "use my credit card points", + "redeem_rewards" + ], + [ + "am i able to redeem my credit card points for an amazon gift card", + "redeem_rewards" + ], + [ + "if i want to cash in my american express rewards, how do i do that", + "redeem_rewards" + ], + [ + "cash in rewards for my visa card", + "redeem_rewards" + ], + [ + "how do i redeem my credit card points", + "redeem_rewards" + ], + [ + "what do i do to redeem credit card points", + "redeem_rewards" + ], + [ + "how can i cash in my credit card points", + "redeem_rewards" + ], + [ + "can i use my credit card points for gas", + "redeem_rewards" + ], + [ + "what do i need to do for my mastercard rewards", + "redeem_rewards" + ], + [ + "how can i go about cashing in rewards with discover", + "redeem_rewards" + ], + [ + "if i redeem my credit card points, can i get a kroeger gift card", + "redeem_rewards" + ], + [ + "please inform regarding the procedure to cash in my rewards for my citibank card", + "redeem_rewards" + ], + [ + "please tell me the procedure to cash in my rewards for my citibank card", + "redeem_rewards" + ], + [ + "i need information regarding the procedure to cash in my rewards for my citibank card", + "redeem_rewards" + ], + [ + "tell me how i should cash in my rewards for my citibank card", + "redeem_rewards" + ], + [ + "what's the way to cash in my rewards for my citibank card", + "redeem_rewards" + ], + [ + "how do i cash the reward for first bankcard", + "redeem_rewards" + ], + [ + "how do i use my credit card points", + "redeem_rewards" + ], + [ + "i want to convert my credit card points", + "redeem_rewards" + ], + [ + "let me use my credit card points", + "redeem_rewards" + ], + [ + "how do i use reward for my first hawaiian bank", + "redeem_rewards" + ], + [ + "i want to utilize my credit card points", + "redeem_rewards" + ], + [ + "how do i utilize my credit card points", + "redeem_rewards" + ], + [ + "can i convert my credit card points to milage", + "redeem_rewards" + ], + [ + "can i use my credit card point on amazon", + "redeem_rewards" + ], + [ + "can i redeem my credit card points to cash", + "redeem_rewards" + ], + [ + "how do i use the reward for my bank of hawaii", + "redeem_rewards" + ], + [ + "i want to use my credit card points", + "redeem_rewards" + ], + [ + "what are ways to utilize my credit card points", + "redeem_rewards" + ], + [ + "i want to cash my credit card points", + "redeem_rewards" + ], + [ + "how do i cash the reward for city", + "redeem_rewards" + ], + [ + "how do i cash in my reward for chase", + "redeem_rewards" + ], + [ + "can i redeem my credit card on safeway", + "redeem_rewards" + ], + [ + "can i use my credit card points to make purchase", + "redeem_rewards" + ], + [ + "tell me how to utilize my card points", + "redeem_rewards" + ], + [ + "how do i get cash back for the rewards on my amex card", + "redeem_rewards" + ], + [ + "transfer my cash reward balance to my bank", + "redeem_rewards" + ], + [ + "how do i redeem my card points", + "redeem_rewards" + ], + [ + "what do i do to get cach back for points on my discover card", + "redeem_rewards" + ], + [ + "i want to redeem my card points for cash", + "redeem_rewards" + ], + [ + "i want to use the cash that my points have earned on my credit card", + "redeem_rewards" + ], + [ + "what's the procedure to get cash back rewards on my visa", + "redeem_rewards" + ], + [ + "tell me how to redeem my credit card points", + "redeem_rewards" + ], + [ + "how do i obtain the cash for the rewards on my hy-vee card", + "redeem_rewards" + ], + [ + "i want to cash out my credit card points", + "redeem_rewards" + ], + [ + "can i get some music by three six mafia in here", + "play_music" + ], + [ + "what does x\u2019s music sound like", + "play_music" + ], + [ + "may i hear some music by fleet foxes", + "play_music" + ], + [ + "can i hear some music by cloud control", + "play_music" + ], + [ + "can x\u2019s music be played", + "play_music" + ], + [ + "play some music for me", + "play_music" + ], + [ + "i'd like to hear my workout playlist", + "play_music" + ], + [ + "put on my jam session playlist please", + "play_music" + ], + [ + "can i hear my smooth jazz playlist", + "play_music" + ], + [ + "play a song for me", + "play_music" + ], + [ + "let's hear my workout playlist", + "play_music" + ], + [ + "put my workout playlist on", + "play_music" + ], + [ + "put my music on, please", + "play_music" + ], + [ + "play rock playlist", + "play_music" + ], + [ + "play some music", + "play_music" + ], + [ + "rock playlist please", + "play_music" + ], + [ + "can you play music", + "play_music" + ], + [ + "i want to listen to music", + "play_music" + ], + [ + "can you play the rock playlist", + "play_music" + ], + [ + "music please", + "play_music" + ], + [ + "rock music playlist", + "play_music" + ], + [ + "i want to hear my rock playlist", + "play_music" + ], + [ + "play that song hey", + "play_music" + ], + [ + "yo play that song that go like she take my money", + "play_music" + ], + [ + "can u play the song that sound like bells going off", + "play_music" + ], + [ + "play me the playlist entitled jazz", + "play_music" + ], + [ + "turn on the rap playlist", + "play_music" + ], + [ + "turn my drake playlist on", + "play_music" + ], + [ + "i want to hear my hip hop playlist", + "play_music" + ], + [ + "i need to listen to my beyonce playlist", + "play_music" + ], + [ + "can you play right above it", + "play_music" + ], + [ + "can you play everlong by foo fighters", + "play_music" + ], + [ + "play the song god's plan", + "play_music" + ], + [ + "please play come as you are by nirvana", + "play_music" + ], + [ + "please play the new lady gaga song", + "play_music" + ], + [ + "can you put on music by beach house", + "play_music" + ], + [ + "can you find music by slow magic to put on", + "play_music" + ], + [ + "i want to play my maroon 5 playlist", + "play_music" + ], + [ + "i want to listen to my maroon 5 playlist, play it for me", + "play_music" + ], + [ + "look up my maroon 5 playlists; play it", + "play_music" + ], + [ + "would you play my maroon 5 playlist", + "play_music" + ], + [ + "i need for you to play my maroon 5 playlist", + "play_music" + ], + [ + "can you play music the beatles", + "play_music" + ], + [ + "i need to play the song that goes like hey jude don't make it bad", + "play_music" + ], + [ + "please play even flow by pearl jam", + "play_music" + ], + [ + "play help! by the beatles", + "play_music" + ], + [ + "i wanna play the song that goes like hey jude don't make it bad", + "play_music" + ], + [ + "please play 1979 by the smashing pumpkins", + "play_music" + ], + [ + "can you play music by bob dylan", + "play_music" + ], + [ + "can you play music by led zeppelin", + "play_music" + ], + [ + "go ahead and play the song that goes like hey jude don't make it bad", + "play_music" + ], + [ + "please play the song that goes like hey jude don't make it bad", + "play_music" + ], + [ + "can you play some music by the beatles for me", + "play_music" + ], + [ + "play the song that goes like hey jude don't make it bad", + "play_music" + ], + [ + "play heart shaped box", + "play_music" + ], + [ + "play hey jude", + "play_music" + ], + [ + "can you play music by the rolling stones", + "play_music" + ], + [ + "commence playing music", + "play_music" + ], + [ + "play me some music", + "play_music" + ], + [ + "i want to hear some music", + "play_music" + ], + [ + "start up some music", + "play_music" + ], + [ + "start playing some music", + "play_music" + ], + [ + "i want to hear my vaporwave playlist", + "play_music" + ], + [ + "play my post-rock playlist", + "play_music" + ], + [ + "play the song called guerrilla radio", + "play_music" + ], + [ + "resume my metal playlist", + "play_music" + ], + [ + "resume my death metal playlist", + "play_music" + ], + [ + "please play my taylor swift mix", + "play_music" + ], + [ + "start my playlist", + "play_music" + ], + [ + "start playing my black metal playlist", + "play_music" + ], + [ + "play the song called blood brothers", + "play_music" + ], + [ + "play that song called bring the noise", + "play_music" + ], + [ + "play me some tunes", + "play_music" + ], + [ + "i want to hear pop music", + "play_music" + ], + [ + "play some rock", + "play_music" + ], + [ + "play that song called colony of birchman", + "play_music" + ], + [ + "play the song called tiny dancer", + "play_music" + ], + [ + "turn the radio on for some music", + "play_music" + ], + [ + "can you play your guitar right now", + "play_music" + ], + [ + "can you play me that, \"baby shark, doo doo,\" song", + "play_music" + ], + [ + "play the song with the lyrics, \"baby shark, doo doo", + "play_music" + ], + [ + "find the song with, \"baby shark, doo doo", + "play_music" + ], + [ + "i want to hear the song that has, \"baby shark, doo doo", + "play_music" + ], + [ + "that \"baby shark, doo doo,\" song, i want to hear it", + "play_music" + ], + [ + "i want to hear beatles music", + "play_music" + ], + [ + "i want to listen to music by the beatles", + "play_music" + ], + [ + "play songs by the beatles", + "play_music" + ], + [ + "play music by the beatles", + "play_music" + ], + [ + "play beatles", + "play_music" + ], + [ + "pull up my shower playlist", + "play_music" + ], + [ + "i need to hear my shower playlist", + "play_music" + ], + [ + "use my shower playlist", + "play_music" + ], + [ + "do the shower playlist please", + "play_music" + ], + [ + "i want to hear my shower playlist", + "play_music" + ], + [ + "is it okay to listen to elvis' music", + "play_music" + ], + [ + "can you play elvis", + "play_music" + ], + [ + "can you let me listen to elvis", + "play_music" + ], + [ + "do you have music by elvis", + "play_music" + ], + [ + "do you have any elvis music", + "play_music" + ], + [ + "find that song that goes something like i'm hooked on a feeling", + "play_music" + ], + [ + "add my dentist appointment to the calendar", + "calendar_update" + ], + [ + "add a vet appointment for 5 pm on saturday", + "calendar_update" + ], + [ + "i need to edit this event out of my calendar", + "calendar_update" + ], + [ + "please remove an event from this calendar", + "calendar_update" + ], + [ + "i no longer want this event in my calendar", + "calendar_update" + ], + [ + "delete that event from calendar", + "calendar_update" + ], + [ + "make sure to add to my calendar the staff meeting for march 1 at 10 am", + "calendar_update" + ], + [ + "add staff meeting to my calendar for march 1 at 10:00 in the morning", + "calendar_update" + ], + [ + "i want you to add staff meeting to my calendar for march 1 at 10:00 am", + "calendar_update" + ], + [ + "please add to my calendar for the staff meeting that is scheduled on march 1, 2019 at 10 am", + "calendar_update" + ], + [ + "the staff meeting on march 1 at 10:00 am needs to be added to my calendar", + "calendar_update" + ], + [ + "leave the date of june 4 open on my calendar", + "calendar_update" + ], + [ + "i need anniversary dinner added to my schedule for march 7", + "calendar_update" + ], + [ + "can you change the date of the doctor's appointment event in my calendar from april 1 to april 3rd", + "calendar_update" + ], + [ + "i need a clear calendar for april 15", + "calendar_update" + ], + [ + "please add final exams to my calendar for may 2", + "calendar_update" + ], + [ + "add mom's birthday to my calendar on april 12", + "calendar_update" + ], + [ + "please take final exams off my calendar for may 3", + "calendar_update" + ], + [ + "add dentist appointment to my calendar for march 1", + "calendar_update" + ], + [ + "remove the may 11 event called baby shower from my calendar", + "calendar_update" + ], + [ + "clear my entire schedule for april 1", + "calendar_update" + ], + [ + "take the event called surprise party off my calendar for june 2", + "calendar_update" + ], + [ + "i want you to cancel the event called 'bachelorette party' on april 15", + "calendar_update" + ], + [ + "please schedule an event called 'nadine's baby shower' on my calendar", + "calendar_update" + ], + [ + "remove the june 12 event called sasha's wedding from my calendar", + "calendar_update" + ], + [ + "clear my calendar for the date of june 23", + "calendar_update" + ], + [ + "please put annie's baby shower on march 30 in my calendar", + "calendar_update" + ], + [ + "make sure my calendar is clear for june 1", + "calendar_update" + ], + [ + "remove anniversary dinner from my calendar on april 5", + "calendar_update" + ], + [ + "please clear entries on my calendar for the 1st", + "calendar_update" + ], + [ + "please add an item to my calendar that i need to clean the kitchen on thursday", + "calendar_update" + ], + [ + "i want the events on my calendar for march 20th, 2019 to be cleared", + "calendar_update" + ], + [ + "remove celebrate anniversary from my calendar", + "calendar_update" + ], + [ + "erase any event on my calendar that's set for wednesday of next week", + "calendar_update" + ], + [ + "i want to add a doctor's visit to the calendar for friday", + "calendar_update" + ], + [ + "clear my calendar for this friday", + "calendar_update" + ], + [ + "delete all events on my calendar that have the word girlfriend in them", + "calendar_update" + ], + [ + "go ahead and delete the doctor appointment i have scheduled for monday", + "calendar_update" + ], + [ + "add my birthday to my calendar for next month on the 5th", + "calendar_update" + ], + [ + "delete my golf tournament event from tomrrow", + "calendar_update" + ], + [ + "put my parents anniversary on the calendar for next week on tuesday", + "calendar_update" + ], + [ + "clear my calendar for tomorrow", + "calendar_update" + ], + [ + "remove the recurring training meeting events off my calendar", + "calendar_update" + ], + [ + "put a reminder on the calendar to buy a gun on march 1st", + "calendar_update" + ], + [ + "i need to add farm trip to my calendar for friday", + "calendar_update" + ], + [ + "i want to add farm trip to my calendar for friday", + "calendar_update" + ], + [ + "i must add farm trip to my calendar for friday", + "calendar_update" + ], + [ + "i got to remove fishing from my calendar for soccer", + "calendar_update" + ], + [ + "please remove fishing from my calendar for soccer", + "calendar_update" + ], + [ + "i need to remove fishing from my calendar for soccer", + "calendar_update" + ], + [ + "i wanna remove fishing from my calendar for soccer", + "calendar_update" + ], + [ + "i shall remove fishing from my calendar for soccer", + "calendar_update" + ], + [ + "add farm trip to my calendar for friday", + "calendar_update" + ], + [ + "i have to add farm trip to my calendar for friday", + "calendar_update" + ], + [ + "i need to add my doctor's appointment to my calendar for the first", + "calendar_update" + ], + [ + "i need to delete my doctor's appointment scheduled for march 15th from my calendar", + "calendar_update" + ], + [ + "i would like to have march 5th's 5k added to my calendar", + "calendar_update" + ], + [ + "add my spa appointment on the 12th to my calendar", + "calendar_update" + ], + [ + "can you add remember to register for the race on my calendar for the 15th of march", + "calendar_update" + ], + [ + "please add lunch and catch up with lisa on friday to my calendar", + "calendar_update" + ], + [ + "please scratch my march 1st meeting off my calendar", + "calendar_update" + ], + [ + "march 3rd needs to be cleared on my calendar", + "calendar_update" + ], + [ + "make sure april 1 is clear on my calendar", + "calendar_update" + ], + [ + "keep april 2nd wide open on my calendar please", + "calendar_update" + ], + [ + "get rid of everything on my calendar for march 2nd", + "calendar_update" + ], + [ + "take my lunch plans off the calendar for march 13th", + "calendar_update" + ], + [ + "take my dinner plans off my calendar for tomorrow", + "calendar_update" + ], + [ + "remove dinner with suzie from my calendar on march 1st", + "calendar_update" + ], + [ + "can you get rid of my trip to the zoo from my calendar on march 1st", + "calendar_update" + ], + [ + "remove my date with liz from my calendar on april 1st", + "calendar_update" + ], + [ + "clear my calendar on march 1st", + "calendar_update" + ], + [ + "write down appointment for tomorrow on my calendar", + "calendar_update" + ], + [ + "put appointment on my calendar for tomorrow", + "calendar_update" + ], + [ + "i need to put my appointment for tomorrow on my calendar", + "calendar_update" + ], + [ + "make not of my appointment for tomorrow on my calendar", + "calendar_update" + ], + [ + "remember to put down that i have an appointment for tomorrow on my calendar", + "calendar_update" + ], + [ + "add my doctor appointment on march 25th at 3:00 to my calendar", + "calendar_update" + ], + [ + "delete the hair appointment i had scheduled on may 1st pleae", + "calendar_update" + ], + [ + "lunch with deb at noon today", + "calendar_update" + ], + [ + "add jake's birthday party for friday at 5", + "calendar_update" + ], + [ + "remove the birthday party this friday from my schedule", + "calendar_update" + ], + [ + "remove from calendar jesse's bbq on june 9th", + "calendar_update" + ], + [ + "take lunch off my calendar on the 3rd", + "calendar_update" + ], + [ + "get rid of tuesday the 5ths dinner", + "calendar_update" + ], + [ + "remove jake's birthday on march 22", + "calendar_update" + ], + [ + "take pat's appointment off my calendar", + "calendar_update" + ], + [ + "take lunch with steven off of my calendar", + "calendar_update" + ], + [ + "i no longer need to go to the zoo on the 8th of this month", + "calendar_update" + ], + [ + "undo the last event on my calendar", + "calendar_update" + ], + [ + "for the calendar, on february 8 add moms birthday", + "calendar_update" + ], + [ + "schedule family dinner on my calendar on march 8", + "calendar_update" + ], + [ + "put \"get tires checked\" on my calendar", + "calendar_update" + ], + [ + "please put taco night on the house calendar date of january 6", + "calendar_update" + ], + [ + "remove meeting with carla from the calendar", + "calendar_update" + ], + [ + "add meeting with carla to my schedule for july 4", + "calendar_update" + ], + [ + "i need trip to the zoo on the calendar for june 4", + "calendar_update" + ], + [ + "delete lunch with steve on friday please", + "calendar_update" + ], + [ + "remove moms birthday from calendar", + "calendar_update" + ], + [ + "i need to delete an event from my calendar", + "calendar_update" + ], + [ + "i need to remove an event from my calendar", + "calendar_update" + ], + [ + "may i know if you are a real person or an ai", + "are_you_a_bot" + ], + [ + "i need to know if you are a real person or an ai", + "are_you_a_bot" + ], + [ + "i want to know if you are a real person or an ai", + "are_you_a_bot" + ], + [ + "tell me if you are a real person or an ai", + "are_you_a_bot" + ], + [ + "are your real or artificial", + "are_you_a_bot" + ], + [ + "am i talking to a real person", + "are_you_a_bot" + ], + [ + "am i speaking with someone real", + "are_you_a_bot" + ], + [ + "would you consider yourself to be a bot", + "are_you_a_bot" + ], + [ + "i am not a bot, are you", + "are_you_a_bot" + ], + [ + "do you think you are a bot", + "are_you_a_bot" + ], + [ + "you sound like a bot", + "are_you_a_bot" + ], + [ + "how do i know that you're a person", + "are_you_a_bot" + ], + [ + "prove that you're a person", + "are_you_a_bot" + ], + [ + "are you a bot or a person", + "are_you_a_bot" + ], + [ + "are you real or fake", + "are_you_a_bot" + ], + [ + "are you ai, or a person", + "are_you_a_bot" + ], + [ + "are you a human or a bot", + "are_you_a_bot" + ], + [ + "am i talking with real person or ai", + "are_you_a_bot" + ], + [ + "are you real or an ai", + "are_you_a_bot" + ], + [ + "are you a bot right now", + "are_you_a_bot" + ], + [ + "are you a real human", + "are_you_a_bot" + ], + [ + "are you a real person or an ai", + "are_you_a_bot" + ], + [ + "so are you a real person", + "are_you_a_bot" + ], + [ + "so are you human", + "are_you_a_bot" + ], + [ + "so are you a bot", + "are_you_a_bot" + ], + [ + "tell me now if you are a bot", + "are_you_a_bot" + ], + [ + "i need to know if you are a bot", + "are_you_a_bot" + ], + [ + "are you an ai or a real person", + "are_you_a_bot" + ], + [ + "are you actually a bot", + "are_you_a_bot" + ], + [ + "so are you real", + "are_you_a_bot" + ], + [ + "are you a human", + "are_you_a_bot" + ], + [ + "am i talking with a real person", + "are_you_a_bot" + ], + [ + "are you a computer or a real person", + "are_you_a_bot" + ], + [ + "are you a computer, or are you a real person", + "are_you_a_bot" + ], + [ + "are you a live person or a computer", + "are_you_a_bot" + ], + [ + "are you real or automated", + "are_you_a_bot" + ], + [ + "is this a person talking to me or a computer", + "are_you_a_bot" + ], + [ + "are you a human being or a robot", + "are_you_a_bot" + ], + [ + "are you alive", + "are_you_a_bot" + ], + [ + "are you a live human being", + "are_you_a_bot" + ], + [ + "are you a computer", + "are_you_a_bot" + ], + [ + "are you human or a bot", + "are_you_a_bot" + ], + [ + "are you a real person or a computer", + "are_you_a_bot" + ], + [ + "are you an automated assistance", + "are_you_a_bot" + ], + [ + "are you a person", + "are_you_a_bot" + ], + [ + "are you an actual person", + "are_you_a_bot" + ], + [ + "are you really a human", + "are_you_a_bot" + ], + [ + "are you a real human being", + "are_you_a_bot" + ], + [ + "do you know if you are a robot", + "are_you_a_bot" + ], + [ + "are you really an actual human being", + "are_you_a_bot" + ], + [ + "what are you", + "are_you_a_bot" + ], + [ + "do you know you are not human", + "are_you_a_bot" + ], + [ + "is there anything real about you", + "are_you_a_bot" + ], + [ + "how real are you", + "are_you_a_bot" + ], + [ + "are you a real life person", + "are_you_a_bot" + ], + [ + "tell me if you are human", + "are_you_a_bot" + ], + [ + "are you ai", + "are_you_a_bot" + ], + [ + "am i speaking with ai or a real, live person", + "are_you_a_bot" + ], + [ + "are you a member or the human race or are you a computer program", + "are_you_a_bot" + ], + [ + "are you a person in real life or programmed ai", + "are_you_a_bot" + ], + [ + "do you know whether you are a human or whether you're a computer", + "are_you_a_bot" + ], + [ + "should i regard you as a human or as a computer", + "are_you_a_bot" + ], + [ + "would you say that you are human or copmuter", + "are_you_a_bot" + ], + [ + "how are you classified, as a human or a computer", + "are_you_a_bot" + ], + [ + "can you tell me if you're human or if you're a computer", + "are_you_a_bot" + ], + [ + "i think you are a bot", + "are_you_a_bot" + ], + [ + "are you considered a bot", + "are_you_a_bot" + ], + [ + "am i talking to an actual person", + "are_you_a_bot" + ], + [ + "do you consider yourself a bot", + "are_you_a_bot" + ], + [ + "you are a bot aren't you", + "are_you_a_bot" + ], + [ + "what are you, a bot or human", + "are_you_a_bot" + ], + [ + "are you a live being", + "are_you_a_bot" + ], + [ + "are you real or are you an ai", + "are_you_a_bot" + ], + [ + "please tell me if you are an ai", + "are_you_a_bot" + ], + [ + "are you ai or a real person please", + "are_you_a_bot" + ], + [ + "are an an ai", + "are_you_a_bot" + ], + [ + "are you real or not", + "are_you_a_bot" + ], + [ + "are you an ai or person", + "are_you_a_bot" + ], + [ + "are you really a person or an ai", + "are_you_a_bot" + ], + [ + "is there a way to tell if you are real or an ai", + "are_you_a_bot" + ], + [ + "tell me if you are a person or ai", + "are_you_a_bot" + ], + [ + "how do i know if you are a real person", + "are_you_a_bot" + ], + [ + "are you a real person or a bot", + "are_you_a_bot" + ], + [ + "am i talking to a person or a bot", + "are_you_a_bot" + ], + [ + "are you a machine", + "are_you_a_bot" + ], + [ + "are you a real person or artificial intelligence", + "are_you_a_bot" + ], + [ + "are you a real person or automated", + "are_you_a_bot" + ], + [ + "are you a real person or software", + "are_you_a_bot" + ], + [ + "are you a real person or a robot", + "are_you_a_bot" + ], + [ + "are you an ai or can you prove you're human", + "are_you_a_bot" + ], + [ + "are you a human or an ai", + "are_you_a_bot" + ], + [ + "are you an actual person, or ai", + "are_you_a_bot" + ], + [ + "are you a bot or a real person", + "are_you_a_bot" + ], + [ + "do you identify as a human or computer", + "are_you_a_bot" + ], + [ + "please specify if you are human or computer", + "are_you_a_bot" + ], + [ + "tell me if you are a human or a computer", + "are_you_a_bot" + ], + [ + "can you specify if you are a human or a computer", + "are_you_a_bot" + ], + [ + "let me know if you are a human or a computer", + "are_you_a_bot" + ], + [ + "is this a computer right now or a human being", + "are_you_a_bot" + ], + [ + "is this human or a robot", + "are_you_a_bot" + ], + [ + "what level is my gas tank at", + "gas" + ], + [ + "where's the gas tank level at", + "gas" + ], + [ + "how does my gas tank look", + "gas" + ], + [ + "what line is the gas tank at", + "gas" + ], + [ + "how much gas is in my gas tank", + "gas" + ], + [ + "how much gas is left", + "gas" + ], + [ + "what is the amount of gas i have", + "gas" + ], + [ + "tell me the amount of gas i have", + "gas" + ], + [ + "in my tank how much gas is there", + "gas" + ], + [ + "i'd like to know how much gas is left", + "gas" + ], + [ + "what amount of fuel do i have left", + "gas" + ], + [ + "what's the fuel level", + "gas" + ], + [ + "what's the status of my gas tank", + "gas" + ], + [ + "what is my current gas level", + "gas" + ], + [ + "what is my current fuel level", + "gas" + ], + [ + "what's my current gas level", + "gas" + ], + [ + "what is my current gas level at", + "gas" + ], + [ + "what's my current fuel level", + "gas" + ], + [ + "how much gas is in my car", + "gas" + ], + [ + "how empty is my gas tank", + "gas" + ], + [ + "what does my gas meter say", + "gas" + ], + [ + "am i running low on gas", + "gas" + ], + [ + "how much gas to i have left", + "gas" + ], + [ + "what do i have left in the gas tank", + "gas" + ], + [ + "can you tell me the amount of gas i have", + "gas" + ], + [ + "i need to know how much gas i got", + "gas" + ], + [ + "whats left as far as gas goes", + "gas" + ], + [ + "how much farther can i drive on the gas i have", + "gas" + ], + [ + "do i have the gas to get to orlando", + "gas" + ], + [ + "how much gas do i currently have", + "gas" + ], + [ + "do i have enough fuel to get to orlando", + "gas" + ], + [ + "will i make it on the gas i have to orlando", + "gas" + ], + [ + "does my car have enough gas to get to chicago", + "gas" + ], + [ + "does my car have enough gas to get to atlantic city", + "gas" + ], + [ + "can my car get to reno with the gas currently in my tank", + "gas" + ], + [ + "can my car get to dallas with the gas currently in my tank", + "gas" + ], + [ + "does my car have enough gas to get to detroit", + "gas" + ], + [ + "i need to know how much gas i have", + "gas" + ], + [ + "i wanna know how much gas i have", + "gas" + ], + [ + "let me know how much gas i have in total", + "gas" + ], + [ + "let me know how much gas i have", + "gas" + ], + [ + "what is the total amount of gas in my car", + "gas" + ], + [ + "what amount of gas is in my car", + "gas" + ], + [ + "how much total gas do i have", + "gas" + ], + [ + "tell me how much gas i have", + "gas" + ], + [ + "what amount of gas do i have in my car", + "gas" + ], + [ + "is my gas tank at least half full", + "gas" + ], + [ + "how much gas is in my tank", + "gas" + ], + [ + "is my gas tank full", + "gas" + ], + [ + "should i get more gas", + "gas" + ], + [ + "am i low on gas", + "gas" + ], + [ + "what level is my gas at", + "gas" + ], + [ + "can you read my gas level", + "gas" + ], + [ + "what is the amount of gas left", + "gas" + ], + [ + "do i have a lot of gas left", + "gas" + ], + [ + "what is my gas level", + "gas" + ], + [ + "how's my gas supply looking", + "gas" + ], + [ + "do i have enough gas left to make it to tampa", + "gas" + ], + [ + "what percent of gas do i have left", + "gas" + ], + [ + "how many gallons do i have left", + "gas" + ], + [ + "is there enough fuel to drive to tampa", + "gas" + ], + [ + "do i need to get gas soon", + "gas" + ], + [ + "do i have enough fuel to get to tampa", + "gas" + ], + [ + "what's left in my gas tank", + "gas" + ], + [ + "do i have enough fuel for the drive to tampa", + "gas" + ], + [ + "can i make it to tampa without needing to get more gas", + "gas" + ], + [ + "can i get to work safely or do i need to stop and get gas", + "gas" + ], + [ + "how many miles can i go with my current fuel level", + "gas" + ], + [ + "is the level of fuel in my car enough to get me to work", + "gas" + ], + [ + "can i make it to work with my current fuel level", + "gas" + ], + [ + "how much does it cost to get my car filled up", + "gas" + ], + [ + "will i run out of gas before i get to sioux falls", + "gas" + ], + [ + "how many miles is there left to get to sioux falls", + "gas" + ], + [ + "how many miles before i run out of gas", + "gas" + ], + [ + "where can i get gas to get to sioux falls", + "gas" + ], + [ + "i'd just like to know how much gas is in my vehicle", + "gas" + ], + [ + "what is the number of gas in my car right now", + "gas" + ], + [ + "inform me as to how much gas my car has", + "gas" + ], + [ + "what is the amount of gas in my car", + "gas" + ], + [ + "where is my gas level right now", + "gas" + ], + [ + "what is my current amount of gas", + "gas" + ], + [ + "what percentage of gas do i have left", + "gas" + ], + [ + "please check the amount of gas i have", + "gas" + ], + [ + "can you tell me the amount of gas i have remaining", + "gas" + ], + [ + "i would like to know the amount of gas i have", + "gas" + ], + [ + "i need to know how much gas is left", + "gas" + ], + [ + "please tell me the amount of gas i have", + "gas" + ], + [ + "how low is my gas tank", + "gas" + ], + [ + "whats in my gas tank", + "gas" + ], + [ + "what is left in my gas tank", + "gas" + ], + [ + "how much fuel do i have", + "gas" + ], + [ + "do i have enough fuel to get to dollar tree", + "gas" + ], + [ + "is there enough fuel to make it to the walmart", + "gas" + ], + [ + "how much fuel is in the tank", + "gas" + ], + [ + "how much gas is in the tank", + "gas" + ], + [ + "do i have enough fuel in the gas tank", + "gas" + ], + [ + "how much petrol do i have", + "gas" + ], + [ + "do i have enough fuel to make it to the theater", + "gas" + ], + [ + "do i have enough gas in the fuel tank", + "gas" + ], + [ + "what my fuel tank at", + "gas" + ], + [ + "how long til my visa card expires", + "expiration_date" + ], + [ + "on what date does my visa card expires", + "expiration_date" + ], + [ + "on what month and year does my card expire", + "expiration_date" + ], + [ + "how soon does my visa card expire", + "expiration_date" + ], + [ + "how much time do i have before my credit card expires", + "expiration_date" + ], + [ + "how many more days before my credit card expires", + "expiration_date" + ], + [ + "can you tell me if my credit card expires in the near future", + "expiration_date" + ], + [ + "what is the validity of my credit card", + "expiration_date" + ], + [ + "tell me the expiry date of my credit card", + "expiration_date" + ], + [ + "does my credit card expire soon", + "expiration_date" + ], + [ + "when my credit card is going to expire", + "expiration_date" + ], + [ + "what is the expiry date of my credit card", + "expiration_date" + ], + [ + "in what month will my card reach expiration", + "expiration_date" + ], + [ + "which month is the one in which my card expires", + "expiration_date" + ], + [ + "how much longer until my credit card expires", + "expiration_date" + ], + [ + "can you tell me what date my credit card expires", + "expiration_date" + ], + [ + "please find the expiration month listed on my card", + "expiration_date" + ], + [ + "can you please tell me my card's expiration month", + "expiration_date" + ], + [ + "is my credit card expiration date approaching", + "expiration_date" + ], + [ + "will you please confirm the month that my card expires", + "expiration_date" + ], + [ + "what's the expiration date on my credit card", + "expiration_date" + ], + [ + "when is my credit due to expire", + "expiration_date" + ], + [ + "what's the expiry month of my card", + "expiration_date" + ], + [ + "tell me the month my card expires", + "expiration_date" + ], + [ + "tell me the expiry month of my card", + "expiration_date" + ], + [ + "i want to know the expiry month of my card", + "expiration_date" + ], + [ + "is my credit card expiring soon", + "expiration_date" + ], + [ + "how long is the validity of my credit card", + "expiration_date" + ], + [ + "please let me know when i need to renew my credit card", + "expiration_date" + ], + [ + "how long is it until my credit card expires", + "expiration_date" + ], + [ + "how long until i my card expires", + "expiration_date" + ], + [ + "whats the expiration date on my credit card", + "expiration_date" + ], + [ + "when does my card expire", + "expiration_date" + ], + [ + "when will my american express credit card expire", + "expiration_date" + ], + [ + "what is the expiration date of my wells fargo card", + "expiration_date" + ], + [ + "please tell me the month and year of expiration for my discover card", + "expiration_date" + ], + [ + "when does my capital one visa expire", + "expiration_date" + ], + [ + "can you tell me the expiration date for my mastercard", + "expiration_date" + ], + [ + "what is the expiration date of my current card", + "expiration_date" + ], + [ + "do i need a new card yet", + "expiration_date" + ], + [ + "when do i have to renew my card so it doesn't expire", + "expiration_date" + ], + [ + "is my card set to expire soon", + "expiration_date" + ], + [ + "how long is it going to be until my card expires", + "expiration_date" + ], + [ + "what's the exact date that my chase card will no longer work", + "expiration_date" + ], + [ + "what's the month that my card expires", + "expiration_date" + ], + [ + "my card expires in what month", + "expiration_date" + ], + [ + "tell me the month that my credit card will expire", + "expiration_date" + ], + [ + "my credit card is set to expire in what month", + "expiration_date" + ], + [ + "my chase card expires on what date", + "expiration_date" + ], + [ + "my discover card expires on what date", + "expiration_date" + ], + [ + "when does my discover card expire", + "expiration_date" + ], + [ + "my american express card expires on what date", + "expiration_date" + ], + [ + "how many days until my amex card reaches it expiration date", + "expiration_date" + ], + [ + "what date does my capital one card expire", + "expiration_date" + ], + [ + "when is the expiration date for my discover card", + "expiration_date" + ], + [ + "can you check the expiration date for my amex card", + "expiration_date" + ], + [ + "can i have the expiration date for my capital one card", + "expiration_date" + ], + [ + "during which month will my card expire", + "expiration_date" + ], + [ + "tell me the month that my card will expire in", + "expiration_date" + ], + [ + "help me figure out when exactly my credit card will be expiring", + "expiration_date" + ], + [ + "could you look up the date that my credit card is set to expire", + "expiration_date" + ], + [ + "look up the expiration date for my barclay's card", + "expiration_date" + ], + [ + "when will my american express card expire", + "expiration_date" + ], + [ + "can you find out for me when my credit card will be expiring", + "expiration_date" + ], + [ + "i need to know when my card is set to expire please", + "expiration_date" + ], + [ + "during what month will my card's expiration date fall on", + "expiration_date" + ], + [ + "what is the month that my card is set to expire in", + "expiration_date" + ], + [ + "i need to know when my mastercard will expire", + "expiration_date" + ], + [ + "i need to know the date of expiration for my credit card", + "expiration_date" + ], + [ + "do you know the expiration date for my visa card", + "expiration_date" + ], + [ + "please find out the expiration date for my credit card", + "expiration_date" + ], + [ + "tell me the expiration date for my current credit card", + "expiration_date" + ], + [ + "how long before my amex card expires", + "expiration_date" + ], + [ + "do you know the expiration date on my credit card", + "expiration_date" + ], + [ + "what is the month of my card's expiration date", + "expiration_date" + ], + [ + "where can i find my credit card's expiration date", + "expiration_date" + ], + [ + "please look up my card's expiration date", + "expiration_date" + ], + [ + "how long will it be until my visa card expires", + "expiration_date" + ], + [ + "what month and year will my visa card expire", + "expiration_date" + ], + [ + "when is the date my visa card will expire", + "expiration_date" + ], + [ + "when is the expiration date for my visa card", + "expiration_date" + ], + [ + "what is the expiration date on my visa card", + "expiration_date" + ], + [ + "what is the expiration date on my credit card", + "expiration_date" + ], + [ + "when is my card going to expire", + "expiration_date" + ], + [ + "when is my credit card going to expire", + "expiration_date" + ], + [ + "what's the last date i can use my credit card", + "expiration_date" + ], + [ + "what is the expiration date on my card", + "expiration_date" + ], + [ + "when will my discovery card expire", + "expiration_date" + ], + [ + "when does my amex expire", + "expiration_date" + ], + [ + "can you check when my visa card expires", + "expiration_date" + ], + [ + "tell me when my visa card will have expired", + "expiration_date" + ], + [ + "when will my amex card reach its expiration", + "expiration_date" + ], + [ + "when's my visa card expiring", + "expiration_date" + ], + [ + "what date will my hy-vee card need to be renewed", + "expiration_date" + ], + [ + "how long until my mastercard expires", + "expiration_date" + ], + [ + "how long do i've got until my discovery card expires", + "expiration_date" + ], + [ + "when should i expect my visa to expire", + "expiration_date" + ], + [ + "how long until my visa expires", + "expiration_date" + ], + [ + "find out for me when my mastercard expires", + "expiration_date" + ], + [ + "when will my visa next expire", + "expiration_date" + ], + [ + "insert what i am listening to into my jazz playlist", + "update_playlist" + ], + [ + "add this tune to my jazz playlist", + "update_playlist" + ], + [ + "can you add this song to my jazz playlist", + "update_playlist" + ], + [ + "please add this song to my jazz playlist", + "update_playlist" + ], + [ + "add this song to my jazz playlist", + "update_playlist" + ], + [ + "add creep by radio head to the playlist", + "update_playlist" + ], + [ + "please add someday by the strokes to my playlist", + "update_playlist" + ], + [ + "include smooth operator by sade in my playlist", + "update_playlist" + ], + [ + "can you put smooth operator by sade on my playlist", + "update_playlist" + ], + [ + "add to my playlist smooth operator by sade", + "update_playlist" + ], + [ + "append my playlist with smooth operator by sade", + "update_playlist" + ], + [ + "put smooth operator by sade on my playlist", + "update_playlist" + ], + [ + "could you put broken by evanescense to my playlist", + "update_playlist" + ], + [ + "what did you add to my playlist - broken by evanescence", + "update_playlist" + ], + [ + "add the next song to my playlist - broken by evanescence", + "update_playlist" + ], + [ + "could you insert broken by evanescence to my music", + "update_playlist" + ], + [ + "add broken by evanescence to my playlist", + "update_playlist" + ], + [ + "favorite what's currently playing on my playlist", + "update_playlist" + ], + [ + "add the current song to my favorite playlist", + "update_playlist" + ], + [ + "the song that's on, add it to my favorite playlist", + "update_playlist" + ], + [ + "put the current song in my favorite playlist", + "update_playlist" + ], + [ + "add what's playing on my favorite playlist", + "update_playlist" + ], + [ + "i would like to add you say by lauren daigle to my playlist", + "update_playlist" + ], + [ + "will you please add cannons by phil wickham to my playlist", + "update_playlist" + ], + [ + "let's add wonder by hillsong united to my playlist", + "update_playlist" + ], + [ + "can you please add hero by skillet to my playlist", + "update_playlist" + ], + [ + "please add roar by katy perry to my playlist", + "update_playlist" + ], + [ + "i think i wanna add heart shaped box by nirvana to my playlist", + "update_playlist" + ], + [ + "i wish to add this song to my classical playlist now", + "update_playlist" + ], + [ + "add help! by the beatles to my playlist", + "update_playlist" + ], + [ + "i need to add this song to my playlist of rock", + "update_playlist" + ], + [ + "i want to add this song to my classical playlist", + "update_playlist" + ], + [ + "i wanna add help! by the beatles to my playlist", + "update_playlist" + ], + [ + "i really would like to add hey jude by the beatles to my playlist", + "update_playlist" + ], + [ + "i gotta add hey jude by the beatles to my playlist", + "update_playlist" + ], + [ + "i wanna add this song to my rock playlist", + "update_playlist" + ], + [ + "my new playlist well be having god's plan adding to it", + "update_playlist" + ], + [ + "god's plan will be my new song added to new playlist", + "update_playlist" + ], + [ + "adding gods plan to new playlist", + "update_playlist" + ], + [ + "god's plan will be added to my new playlist", + "update_playlist" + ], + [ + "new playlist that i will add god's plan to", + "update_playlist" + ], + [ + "please put africa by toto on my playlist", + "update_playlist" + ], + [ + "please add the immigrant song by led zeppelin to my playlist", + "update_playlist" + ], + [ + "add the thong song by cisqo to my playlist, please", + "update_playlist" + ], + [ + "put mambo #5 by lou bega on my playlist, please", + "update_playlist" + ], + [ + "put dr feelgood by motley crue on my playlist", + "update_playlist" + ], + [ + "add this song to the end of my led zeppelin playlist", + "update_playlist" + ], + [ + "add this song to my rainy day playlist", + "update_playlist" + ], + [ + "please put this song on my moody monday playlist", + "update_playlist" + ], + [ + "put the song that's playing to my techno playlist", + "update_playlist" + ], + [ + "put this song on my edm playlist", + "update_playlist" + ], + [ + "add this song to my cleaning playlist", + "update_playlist" + ], + [ + "add this song to my slow jams playlist", + "update_playlist" + ], + [ + "will you add what i'm listening to to my love playlist", + "update_playlist" + ], + [ + "add walk by pantera to my playlist", + "update_playlist" + ], + [ + "add one by metallica to my playlist", + "update_playlist" + ], + [ + "will you add what i'm listening to to my road trip playlist", + "update_playlist" + ], + [ + "add this song to my game night playlist", + "update_playlist" + ], + [ + "add coming undone by korn to my playlist", + "update_playlist" + ], + [ + "will you add what i'm listening to to my work playlist", + "update_playlist" + ], + [ + "add welcome to the jungle by guns n roses to my playlist", + "update_playlist" + ], + [ + "will you add what i'm listening to to my bedroom playlist", + "update_playlist" + ], + [ + "add this song to my dinner playlist", + "update_playlist" + ], + [ + "will you add what i'm listening to to my dinner playlist", + "update_playlist" + ], + [ + "add this song to my top 40 playlist", + "update_playlist" + ], + [ + "add hells bells by acdc to my playlist", + "update_playlist" + ], + [ + "make this song part of the \"kids\" playlist", + "update_playlist" + ], + [ + "include this song in the \"kids\" playlist", + "update_playlist" + ], + [ + "connect this song to my playlist \"kids", + "update_playlist" + ], + [ + "please add to \"kids\" playlist", + "update_playlist" + ], + [ + "i want this song put on my \"kids\" playlist", + "update_playlist" + ], + [ + "this song needs to be added to my reggae playlist", + "update_playlist" + ], + [ + "this song should be add this on my rock playlist", + "update_playlist" + ], + [ + "could you add this song to my rock playlist", + "update_playlist" + ], + [ + "add a song to my rock playlist", + "update_playlist" + ], + [ + "put this song on my reggae playlist", + "update_playlist" + ], + [ + "add this song to shared playlist", + "update_playlist" + ], + [ + "put this song in vibes playlist", + "update_playlist" + ], + [ + "add yosemite to my rap playlist", + "update_playlist" + ], + [ + "add 7 rings to my pop playlist", + "update_playlist" + ], + [ + "add baby shark to my kid playlist", + "update_playlist" + ], + [ + "add body to my dance playlist", + "update_playlist" + ], + [ + "add mia to my spanish playlist", + "update_playlist" + ], + [ + "add single ladies by beyonce to my pop playlist", + "update_playlist" + ], + [ + "add this track to my rock playlist", + "update_playlist" + ], + [ + "add psycho by post malone to my playlist", + "update_playlist" + ], + [ + "please add this song to my alternative playlist", + "update_playlist" + ], + [ + "add i like it by cardi b to my playlist", + "update_playlist" + ], + [ + "add american idiot by green day to my playlist", + "update_playlist" + ], + [ + "can you add that to my chillwave playlist", + "update_playlist" + ], + [ + "add ruby soho by rancid to my playlist", + "update_playlist" + ], + [ + "add god's plan by drake to my playlist", + "update_playlist" + ], + [ + "add this song to my post-rock playlist", + "update_playlist" + ], + [ + "transfer happy to my rb playlist", + "update_playlist" + ], + [ + "include happy on my rb playlist", + "update_playlist" + ], + [ + "list happy on my rb playlist", + "update_playlist" + ], + [ + "get happy on my rb playlist", + "update_playlist" + ], + [ + "i want to have happy added to my rb playlist", + "update_playlist" + ], + [ + "can you add passionfruit by yaeji to my playlist", + "update_playlist" + ], + [ + "yellow by coldplay to my playlist please", + "update_playlist" + ], + [ + "remove my reservation at outback for timmy", + "cancel_reservation" + ], + [ + "can you cancel the reservation for kyle's party at red lobster", + "cancel_reservation" + ], + [ + "cancel my party reservation for brad at longhorn", + "cancel_reservation" + ], + [ + "get rid of my reservation at chez francois for jennifer", + "cancel_reservation" + ], + [ + "cancel the reservation at olive garden for tommy", + "cancel_reservation" + ], + [ + "you can cancel my reservation", + "cancel_reservation" + ], + [ + "my reservation is no longer needed", + "cancel_reservation" + ], + [ + "tell the restaurant i cannot make it", + "cancel_reservation" + ], + [ + "there is no need to confirm my reservation", + "cancel_reservation" + ], + [ + "would you please cancel the reservations for dinner", + "cancel_reservation" + ], + [ + "hello, i need to cancel tonight's reservation for dinner", + "cancel_reservation" + ], + [ + "i need to put in a cancellation for the dinner plans tonight", + "cancel_reservation" + ], + [ + "cancel the dinner reservation i made, okay", + "cancel_reservation" + ], + [ + "i need to cancel my dinner reservation", + "cancel_reservation" + ], + [ + "please cancel my reservation for dinner", + "cancel_reservation" + ], + [ + "cancel my reservation for dinner", + "cancel_reservation" + ], + [ + "my reservation for dinner needs to be canceled", + "cancel_reservation" + ], + [ + "call the restaurant and cancel my reservation", + "cancel_reservation" + ], + [ + "get rid of my 2 pm reservation at ruth's steakhouse", + "cancel_reservation" + ], + [ + "can you cancelt the reservation i have for dinner", + "cancel_reservation" + ], + [ + "please cancel my dinner reservation for tuesday", + "cancel_reservation" + ], + [ + "can you cancel my reservation for dinner tomorrow", + "cancel_reservation" + ], + [ + "cancel my reservation for 6 pm at sidetracks", + "cancel_reservation" + ], + [ + "get rid of my 4 pm reservation at the steakhouse please", + "cancel_reservation" + ], + [ + "can you cancel the reservation i have at 4 pm at ruth's", + "cancel_reservation" + ], + [ + "cancel the reservation i made for 8 pm at black rock", + "cancel_reservation" + ], + [ + "cancel my dinner reservation please", + "cancel_reservation" + ], + [ + "please cancel the table i had reserved for tonight", + "cancel_reservation" + ], + [ + "i made a reservation for chris at tony's, please cancel it", + "cancel_reservation" + ], + [ + "cancel tonight's dinner reservation", + "cancel_reservation" + ], + [ + "i don't need my reservation, can you cancel it", + "cancel_reservation" + ], + [ + "can you cancel my dinner reservation", + "cancel_reservation" + ], + [ + "please cancel my reservation for chris at brio", + "cancel_reservation" + ], + [ + "please cancel my dinner reservation", + "cancel_reservation" + ], + [ + "can you cancel my reservation tonight for chris at smith and wollensky", + "cancel_reservation" + ], + [ + "i don't need my reservation, cancel it", + "cancel_reservation" + ], + [ + "can you cancel my reservation on tuesday for chris at stella maris", + "cancel_reservation" + ], + [ + "cancel my reservation for chris at jp field's", + "cancel_reservation" + ], + [ + "please cancel my reservation", + "cancel_reservation" + ], + [ + "cancel my reservation for dinner, please", + "cancel_reservation" + ], + [ + "tell the restaurant to cancel my reservation", + "cancel_reservation" + ], + [ + "abandon the dinner reservation i made", + "cancel_reservation" + ], + [ + "scrap that dinner reservation", + "cancel_reservation" + ], + [ + "call off the dinner reservation", + "cancel_reservation" + ], + [ + "cancel my reservation for me", + "cancel_reservation" + ], + [ + "get rid of my dinner reservation", + "cancel_reservation" + ], + [ + "the reservation i placed is not needed anymore", + "cancel_reservation" + ], + [ + "annul the reservation i created", + "cancel_reservation" + ], + [ + "the reservation i created is not necessary anymore", + "cancel_reservation" + ], + [ + "the reservation i made is not required anymore", + "cancel_reservation" + ], + [ + "repeal the dinner reservation", + "cancel_reservation" + ], + [ + "can i cancel my reservations", + "cancel_reservation" + ], + [ + "i would like to cancel my reservations", + "cancel_reservation" + ], + [ + "could i cancel my reservations", + "cancel_reservation" + ], + [ + "can i cancel my reservations please", + "cancel_reservation" + ], + [ + "i need to cancel my reservations", + "cancel_reservation" + ], + [ + "can you cancel my 5:30 pm table reservation at parc", + "cancel_reservation" + ], + [ + "i need you to cancel my reservation for smith's at 6:15", + "cancel_reservation" + ], + [ + "cancel my 8:00 pm prime rib reservation", + "cancel_reservation" + ], + [ + "go ahead and cancel the reservation i made for 6:00 pm at parc", + "cancel_reservation" + ], + [ + "please cancel my 7:30 reservation for morton's", + "cancel_reservation" + ], + [ + "is it possible to cancel the reservation at outback for the johnsons", + "cancel_reservation" + ], + [ + "i made a reservation under mark hamil at the emporium that i don't need any more", + "cancel_reservation" + ], + [ + "i no longer need a table for four at chili's", + "cancel_reservation" + ], + [ + "we have a table at the taco bell under bowie we need to release", + "cancel_reservation" + ], + [ + "i have a reservation at pizza hut under the name leia roberts and i want to cancel it", + "cancel_reservation" + ], + [ + "can you undo the reservation", + "cancel_reservation" + ], + [ + "i'd like to cancel the party of 7 we reserved at the olive garden", + "cancel_reservation" + ], + [ + "i want to cancel the reservation for mercury at the ritz", + "cancel_reservation" + ], + [ + "just trash the reservation i made please", + "cancel_reservation" + ], + [ + "please cancel the table for two at burger king", + "cancel_reservation" + ], + [ + "please delete the reservation for 3 people at outback", + "cancel_reservation" + ], + [ + "go ahead and close the reservation", + "cancel_reservation" + ], + [ + "please unreserve that table", + "cancel_reservation" + ], + [ + "i no longer need the reservation for 20 at ihop", + "cancel_reservation" + ], + [ + "im not going to dinner tonight", + "cancel_reservation" + ], + [ + "im not gonna need the dinner reservation", + "cancel_reservation" + ], + [ + "remove my dinner reservation", + "cancel_reservation" + ], + [ + "i no longer need the dinner reservation", + "cancel_reservation" + ], + [ + "can i cancel my reservation for 4 at red robin", + "cancel_reservation" + ], + [ + "cancel my reservation for 4 at red robin", + "cancel_reservation" + ], + [ + "i want to cancel my reservation for 5 at red robin", + "cancel_reservation" + ], + [ + "could you please cancel my reservation for 5 at red robin", + "cancel_reservation" + ], + [ + "cancel my reservation for 3 at carlos jr", + "cancel_reservation" + ], + [ + "change my reservation with carl at umami to canceled", + "cancel_reservation" + ], + [ + "i no longer need my reservation with carl at umami", + "cancel_reservation" + ], + [ + "cancel my reservation with carl at umami", + "cancel_reservation" + ], + [ + "make sure my reservation at umami with carl is canceled", + "cancel_reservation" + ], + [ + "end my reservation with carl at umami", + "cancel_reservation" + ], + [ + "because of circumstances i don't need my reservation anymore", + "cancel_reservation" + ], + [ + "i won't require my reservation anymore", + "cancel_reservation" + ], + [ + "i'll have to cancel my reservation for tonight", + "cancel_reservation" + ], + [ + "something's come up so i need to cancel my reservation so now", + "cancel_reservation" + ], + [ + "the reservation i have isn't needed any more", + "cancel_reservation" + ], + [ + "the reservation at zepher cancel joe from that", + "cancel_reservation" + ], + [ + "joe and i are to cancel the reservation at zephers now", + "cancel_reservation" + ], + [ + "cancel my reservations for joe's at zepher right now", + "cancel_reservation" + ], + [ + "please cancel the reservation at zephers for joe and myself right now", + "cancel_reservation" + ], + [ + "cancel the reservation for joe and i right now for the zephers reservation we had booked", + "cancel_reservation" + ], + [ + "cancel my 6:00 reservation at the cheesecake factory", + "cancel_reservation" + ], + [ + "please, recite to me some good one liners", + "tell_joke" + ], + [ + "do you know any good jokes about zebras", + "tell_joke" + ], + [ + "can you tell me any truly funny knock knock jokes", + "tell_joke" + ], + [ + "what do people find funny about food", + "tell_joke" + ], + [ + "what are some funny things about food", + "tell_joke" + ], + [ + "show me something funny about food", + "tell_joke" + ], + [ + "indicate something funny on the topic of food", + "tell_joke" + ], + [ + "what's a good joke", + "tell_joke" + ], + [ + "i'd love to hear a joke", + "tell_joke" + ], + [ + "can you tell a joke", + "tell_joke" + ], + [ + "would you tell me a joke", + "tell_joke" + ], + [ + "how about you tell me a joke", + "tell_joke" + ], + [ + "will you tell a joke", + "tell_joke" + ], + [ + "please tell me a joke", + "tell_joke" + ], + [ + "make me laugh", + "tell_joke" + ], + [ + "do you have any jokes", + "tell_joke" + ], + [ + "tell me something funny", + "tell_joke" + ], + [ + "hit me with a good joke", + "tell_joke" + ], + [ + "what's the funniest joke you know", + "tell_joke" + ], + [ + "tell me a joke if you'd like to", + "tell_joke" + ], + [ + "tell me a funny joke", + "tell_joke" + ], + [ + "i'd like you to tell me a joke", + "tell_joke" + ], + [ + "do you know any good jokes", + "tell_joke" + ], + [ + "know any jokes", + "tell_joke" + ], + [ + "i wanna hear something funny", + "tell_joke" + ], + [ + "i would like to listen to a funny joke", + "tell_joke" + ], + [ + "what jokes do you know", + "tell_joke" + ], + [ + "could you please tell me a good joke", + "tell_joke" + ], + [ + "what funny jokes do you know", + "tell_joke" + ], + [ + "can you make me laugh", + "tell_joke" + ], + [ + "can you tell me a few funny jokes", + "tell_joke" + ], + [ + "tell me something funny about parenting", + "tell_joke" + ], + [ + "do you have a list of funny jokes", + "tell_joke" + ], + [ + "i want to hear something funny", + "tell_joke" + ], + [ + "tell me something funny about animals", + "tell_joke" + ], + [ + "tell me something funny about politics", + "tell_joke" + ], + [ + "tell me something amusing", + "tell_joke" + ], + [ + "say something funny", + "tell_joke" + ], + [ + "tell me something funny about adulthood", + "tell_joke" + ], + [ + "tell me something funny about americans", + "tell_joke" + ], + [ + "could you please share a joke with me", + "tell_joke" + ], + [ + "i could really use a laugh right now", + "tell_joke" + ], + [ + "would you like to tell me a joke", + "tell_joke" + ], + [ + "can you tell me a joke", + "tell_joke" + ], + [ + "i'd like to hear a joke", + "tell_joke" + ], + [ + "i want to hear you tell a joke", + "tell_joke" + ], + [ + "tell me a joke", + "tell_joke" + ], + [ + "tell me a joke about politicians", + "tell_joke" + ], + [ + "tell me something that'll make me laugh", + "tell_joke" + ], + [ + "tell me a joke about cows", + "tell_joke" + ], + [ + "do you know anything funny about cats", + "tell_joke" + ], + [ + "tell me a joke about jobs", + "tell_joke" + ], + [ + "what's the funniest thing you know about artificial intelligence", + "tell_joke" + ], + [ + "can you tell me a joke about politicians", + "tell_joke" + ], + [ + "tell me a joke about cars", + "tell_joke" + ], + [ + "can you tell me something funny", + "tell_joke" + ], + [ + "do you know any good jokes about lawyers", + "tell_joke" + ], + [ + "what\u2019s your favorite funny joke", + "tell_joke" + ], + [ + "make me laugh with a funny joke", + "tell_joke" + ], + [ + "what funny joke do you know", + "tell_joke" + ], + [ + "i want to hear a joke that\u2019s funny", + "tell_joke" + ], + [ + "tell me a dirty joke", + "tell_joke" + ], + [ + "tell me a non-offensive joke", + "tell_joke" + ], + [ + "i would like to hear a funny joke", + "tell_joke" + ], + [ + "look for funny jokes", + "tell_joke" + ], + [ + "what are some funny jokes", + "tell_joke" + ], + [ + "tell me something funny about pizza", + "tell_joke" + ], + [ + "tell me something funny about people", + "tell_joke" + ], + [ + "tell me something funny about love", + "tell_joke" + ], + [ + "say something hilarious", + "tell_joke" + ], + [ + "make me giggle", + "tell_joke" + ], + [ + "i need a good laugh", + "tell_joke" + ], + [ + "heard any good jokes lately", + "tell_joke" + ], + [ + "tell me a pun", + "tell_joke" + ], + [ + "what's the latest joke you've heard", + "tell_joke" + ], + [ + "tell me a joke about dogs", + "tell_joke" + ], + [ + "let me know something funny", + "tell_joke" + ], + [ + "tell me a joke about cats", + "tell_joke" + ], + [ + "tell me something funny now", + "tell_joke" + ], + [ + "i wanna know something funny", + "tell_joke" + ], + [ + "tell me something funny about rats", + "tell_joke" + ], + [ + "tell me a joke about animals", + "tell_joke" + ], + [ + "tell me a joke about lawyers", + "tell_joke" + ], + [ + "tell me a joke about rats", + "tell_joke" + ], + [ + "tell me something funny about cats", + "tell_joke" + ], + [ + "tell me something funny about dogs", + "tell_joke" + ], + [ + "i need to know somthing funny", + "tell_joke" + ], + [ + "do you have anything funny to tell me", + "tell_joke" + ], + [ + "do you have any jokes to tell me", + "tell_joke" + ], + [ + "mind sharing a joke", + "tell_joke" + ], + [ + "could you share a joke", + "tell_joke" + ], + [ + "i love dad jokes can you tell me one", + "tell_joke" + ], + [ + "i would love to hear a joke about the dmv", + "tell_joke" + ], + [ + "can you tell me some dog jokes", + "tell_joke" + ], + [ + "please tell me a joke about dinosaurs", + "tell_joke" + ], + [ + "i'd like to hear a joke about donkeys", + "tell_joke" + ], + [ + "tell me a joke about baseball", + "tell_joke" + ], + [ + "what's the funniest thing you know about peanuts", + "tell_joke" + ], + [ + "i need a good joke about office parties", + "tell_joke" + ], + [ + "give me a joke about horses", + "tell_joke" + ], + [ + "rename yourself to betty", + "change_ai_name" + ], + [ + "can i call you betty", + "change_ai_name" + ], + [ + "rename bob to betty", + "change_ai_name" + ], + [ + "is there a way to change your name to betty", + "change_ai_name" + ], + [ + "i will call you zander", + "change_ai_name" + ], + [ + "please change the name of you to tim", + "change_ai_name" + ], + [ + "can you change the name of what you respond to", + "change_ai_name" + ], + [ + "change the name of your system", + "change_ai_name" + ], + [ + "make changes to the name of the ai", + "change_ai_name" + ], + [ + "revise the ai name", + "change_ai_name" + ], + [ + "alter the name given to the ai", + "change_ai_name" + ], + [ + "change the ai name to a new one", + "change_ai_name" + ], + [ + "make a new name for the ai", + "change_ai_name" + ], + [ + "change your name to something funny", + "change_ai_name" + ], + [ + "from now, your new name will be lord vader", + "change_ai_name" + ], + [ + "from now on i'm going to call you ishmael", + "change_ai_name" + ], + [ + "i'm going to start calling you kobe now", + "change_ai_name" + ], + [ + "from now on, your name will be buttercup", + "change_ai_name" + ], + [ + "i want to change your name to theodore", + "change_ai_name" + ], + [ + "change your name setting to plato", + "change_ai_name" + ], + [ + "from here on, you'll be responding to the name captain black", + "change_ai_name" + ], + [ + "your name from this point forward is george", + "change_ai_name" + ], + [ + "i hereby rename you felix", + "change_ai_name" + ], + [ + "how do i change the name you came with to something else", + "change_ai_name" + ], + [ + "what other names can i give you", + "change_ai_name" + ], + [ + "i want to change your name to another name", + "change_ai_name" + ], + [ + "i need to change your name, do you have a new name that you like", + "change_ai_name" + ], + [ + "i would like to change your name to a different one", + "change_ai_name" + ], + [ + "i will call you cap", + "change_ai_name" + ], + [ + "your name is roman", + "change_ai_name" + ], + [ + "x will be your name", + "change_ai_name" + ], + [ + "your name will be queen", + "change_ai_name" + ], + [ + "i am going to address you as my own name", + "change_ai_name" + ], + [ + "will you answer if i call you lexi", + "change_ai_name" + ], + [ + "i would like you to think of yourself as machine and answer when i say your name as such", + "change_ai_name" + ], + [ + "do you mind if call you nikolai", + "change_ai_name" + ], + [ + "i'd like to refer to you as my house from now on", + "change_ai_name" + ], + [ + "may i start referring to you as jeff", + "change_ai_name" + ], + [ + "please respond to me when i reference skynet", + "change_ai_name" + ], + [ + "i want to start calling you bob", + "change_ai_name" + ], + [ + "please open a call to my mother", + "change_ai_name" + ], + [ + "is it okay if i change your name to mud", + "change_ai_name" + ], + [ + "can i begin calling you dave", + "change_ai_name" + ], + [ + "is it alright with you if i call you scarlet", + "change_ai_name" + ], + [ + "please change the ai name", + "change_ai_name" + ], + [ + "change the ai name", + "change_ai_name" + ], + [ + "please change the ai name for me", + "change_ai_name" + ], + [ + "i gotta change your name to remy", + "change_ai_name" + ], + [ + "i'd like to change the ai name", + "change_ai_name" + ], + [ + "i must change your name to amanda", + "change_ai_name" + ], + [ + "i want you to change the ai name", + "change_ai_name" + ], + [ + "i want change your name to russ", + "change_ai_name" + ], + [ + "i wanna change your name to audrey", + "change_ai_name" + ], + [ + "i need to change your name to ben", + "change_ai_name" + ], + [ + "i want to set your name to gaffigan", + "change_ai_name" + ], + [ + "i want your new name to be joshua", + "change_ai_name" + ], + [ + "i will call you jimbo from now on", + "change_ai_name" + ], + [ + "set your name to hillary", + "change_ai_name" + ], + [ + "can i call you dave", + "change_ai_name" + ], + [ + "i want your name to be samantha now", + "change_ai_name" + ], + [ + "i want to change the name i call you to juan", + "change_ai_name" + ], + [ + "you need to respond to a new name called joey", + "change_ai_name" + ], + [ + "change your name to ginger", + "change_ai_name" + ], + [ + "change your settings so that your respond to the name marion", + "change_ai_name" + ], + [ + "let me call you fred", + "change_ai_name" + ], + [ + "you will be called rose from now on", + "change_ai_name" + ], + [ + "let me change your name to dina", + "change_ai_name" + ], + [ + "i think bradley is a better name for you", + "change_ai_name" + ], + [ + "can we change your name to lisa", + "change_ai_name" + ], + [ + "i would like to call you andre 3000", + "change_ai_name" + ], + [ + "x is your new nickname", + "change_ai_name" + ], + [ + "if i may, i'd like to call you slave", + "change_ai_name" + ], + [ + "x is what i am calling you now", + "change_ai_name" + ], + [ + "can i change your name", + "change_ai_name" + ], + [ + "can i make your name different", + "change_ai_name" + ], + [ + "let's change what you respond to", + "change_ai_name" + ], + [ + "can i call you something else", + "change_ai_name" + ], + [ + "i'd like to use another name for you", + "change_ai_name" + ], + [ + "can i change your name to buttercup", + "change_ai_name" + ], + [ + "i would like to change your name to eli", + "change_ai_name" + ], + [ + "could i please change your name to alicia", + "change_ai_name" + ], + [ + "i want to change your name to emma", + "change_ai_name" + ], + [ + "i am wanting to change your name to felix", + "change_ai_name" + ], + [ + "i want to update you name now", + "change_ai_name" + ], + [ + "i want to update you name", + "change_ai_name" + ], + [ + "i want to update you name, please", + "change_ai_name" + ], + [ + "i want to change your name", + "change_ai_name" + ], + [ + "i want to change your name, please", + "change_ai_name" + ], + [ + "can i refer to you as mike from here on out", + "change_ai_name" + ], + [ + "can i change your name please", + "change_ai_name" + ], + [ + "i'm going to start calling you alice", + "change_ai_name" + ], + [ + "can i start calling you chris", + "change_ai_name" + ], + [ + "can i call you lucy from now on", + "change_ai_name" + ], + [ + "i'm calling you rupert from now on", + "change_ai_name" + ], + [ + "can i change your name to bob", + "change_ai_name" + ], + [ + "can you go by a different name", + "change_ai_name" + ], + [ + "can i refer to you as liz", + "change_ai_name" + ], + [ + "i want to start calling you marie", + "change_ai_name" + ], + [ + "can i rename you", + "change_ai_name" + ], + [ + "how can i change your name", + "change_ai_name" + ], + [ + "what is your birthday again", + "how_old_are_you" + ], + [ + "how many years on the earth", + "how_old_are_you" + ], + [ + "what year were you born", + "how_old_are_you" + ], + [ + "how many days old are you", + "how_old_are_you" + ], + [ + "when were you created", + "how_old_are_you" + ], + [ + "what date were you created on", + "how_old_are_you" + ], + [ + "when did you come to exist", + "how_old_are_you" + ], + [ + "how many years do you have", + "how_old_are_you" + ], + [ + "i'd like to know how old you are", + "how_old_are_you" + ], + [ + "can you tell me how old you are", + "how_old_are_you" + ], + [ + "how long have you been alive for", + "how_old_are_you" + ], + [ + "how many years ago was al born", + "how_old_are_you" + ], + [ + "how old is al", + "how_old_are_you" + ], + [ + "what is al's age", + "how_old_are_you" + ], + [ + "how many years has al been on earth", + "how_old_are_you" + ], + [ + "you are how old now", + "how_old_are_you" + ], + [ + "what is your birth date", + "how_old_are_you" + ], + [ + "where's your place of birth", + "how_old_are_you" + ], + [ + "where did you grow up", + "how_old_are_you" + ], + [ + "how many years are you", + "how_old_are_you" + ], + [ + "what age are you", + "how_old_are_you" + ], + [ + "what would your age be", + "how_old_are_you" + ], + [ + "tell me when you were born", + "how_old_are_you" + ], + [ + "i'd love to hear when you were born", + "how_old_are_you" + ], + [ + "i'd like to know when you were born", + "how_old_are_you" + ], + [ + "lemme know when you were born", + "how_old_are_you" + ], + [ + "do you know when you were born", + "how_old_are_you" + ], + [ + "how many years have you been on", + "how_old_are_you" + ], + [ + "how long have you been here", + "how_old_are_you" + ], + [ + "how many years have you been operating", + "how_old_are_you" + ], + [ + "how old did you just turn", + "how_old_are_you" + ], + [ + "how old will you be next year", + "how_old_are_you" + ], + [ + "how old are you again", + "how_old_are_you" + ], + [ + "i am wanting to know how old you are", + "how_old_are_you" + ], + [ + "tell me how old youare", + "how_old_are_you" + ], + [ + "let me know how old you are", + "how_old_are_you" + ], + [ + "let me know when you were born", + "how_old_are_you" + ], + [ + "would you tell me your age", + "how_old_are_you" + ], + [ + "i would like to know when you were born", + "how_old_are_you" + ], + [ + "i want to know how old you are", + "how_old_are_you" + ], + [ + "i want to know your age", + "how_old_are_you" + ], + [ + "could you let me know how old you are", + "how_old_are_you" + ], + [ + "could you tell me when you were born", + "how_old_are_you" + ], + [ + "i need to know how old you are", + "how_old_are_you" + ], + [ + "i am needing to know when you were born", + "how_old_are_you" + ], + [ + "tell me your age", + "how_old_are_you" + ], + [ + "your age please", + "how_old_are_you" + ], + [ + "how long have you been alive", + "how_old_are_you" + ], + [ + "you are how old", + "how_old_are_you" + ], + [ + "how old are you now", + "how_old_are_you" + ], + [ + "how old are you exactly at the moment", + "how_old_are_you" + ], + [ + "what's your age again", + "how_old_are_you" + ], + [ + "how old are you exactly", + "how_old_are_you" + ], + [ + "how many years old are you", + "how_old_are_you" + ], + [ + "what is your age", + "how_old_are_you" + ], + [ + "how old are you, again", + "how_old_are_you" + ], + [ + "tell me how old you are", + "how_old_are_you" + ], + [ + "how old are you", + "how_old_are_you" + ], + [ + "what is your creation date", + "how_old_are_you" + ], + [ + "do you have a birth date", + "how_old_are_you" + ], + [ + "for how long have you existed", + "how_old_are_you" + ], + [ + "ai, how old are you", + "how_old_are_you" + ], + [ + "ai, how long have you been alive", + "how_old_are_you" + ], + [ + "ai, how many months old are you", + "how_old_are_you" + ], + [ + "ai, how long have you been working", + "how_old_are_you" + ], + [ + "how old is the ai", + "how_old_are_you" + ], + [ + "what is the age of the ai", + "how_old_are_you" + ], + [ + "can you tell me how old the ai is", + "how_old_are_you" + ], + [ + "can you tell me the age of the ai", + "how_old_are_you" + ], + [ + "what age is the ai", + "how_old_are_you" + ], + [ + "how old are you siri", + "how_old_are_you" + ], + [ + "what's your age siri", + "how_old_are_you" + ], + [ + "what's your age alexa", + "how_old_are_you" + ], + [ + "how old are you alexa", + "how_old_are_you" + ], + [ + "how old are you today", + "how_old_are_you" + ], + [ + "can you tell me when you were born", + "how_old_are_you" + ], + [ + "are you older than me", + "how_old_are_you" + ], + [ + "please tell me your date of birth", + "how_old_are_you" + ], + [ + "on what day and date of what year were you born", + "how_old_are_you" + ], + [ + "do you know exactly when you were born", + "how_old_are_you" + ], + [ + "what is the exact date of your birth", + "how_old_are_you" + ], + [ + "how long have you been around, ai", + "how_old_are_you" + ], + [ + "what birthday are you celebrating this year, ai", + "how_old_are_you" + ], + [ + "what age were you on your last birthday, ai", + "how_old_are_you" + ], + [ + "how old are you, ai", + "how_old_are_you" + ], + [ + "what is your age, ai", + "how_old_are_you" + ], + [ + "when was your birth", + "how_old_are_you" + ], + [ + "you're how old", + "how_old_are_you" + ], + [ + "what's your birth date", + "how_old_are_you" + ], + [ + "how long have you been around", + "how_old_are_you" + ], + [ + "are you young or old", + "how_old_are_you" + ], + [ + "how long have you been functional", + "how_old_are_you" + ], + [ + "what's your age", + "how_old_are_you" + ], + [ + "when did you originate", + "how_old_are_you" + ], + [ + "what is the date of your birth", + "how_old_are_you" + ], + [ + "what is your birthday", + "how_old_are_you" + ], + [ + "tell me your date of birth", + "how_old_are_you" + ], + [ + "tell me your age please", + "how_old_are_you" + ], + [ + "tell me your birthday", + "how_old_are_you" + ], + [ + "how long ago were you born", + "how_old_are_you" + ], + [ + "i want to reserve a convertible from july 2nd through july 18th for los angeles", + "car_rental" + ], + [ + "i'd like to rent a vehicle from nov 1st to nov 15th in san antonio and i need a 15 passenger van", + "car_rental" + ], + [ + "i want to rent the cheapest car for charlottesville, virginia for march 7th through 10th, that's monday, tuesday, wednesday and thursday", + "car_rental" + ], + [ + "i'd like to reserve a high-end car that seats 5 comfortably for april 12th through 18th for st louis missouri", + "car_rental" + ], + [ + "i need a van that seats 8 or more for new york city, august 12th, 13th, and 14th", + "car_rental" + ], + [ + "a rental car needs to be booked in nashville", + "car_rental" + ], + [ + "book me a car rental in nashville", + "car_rental" + ], + [ + "please help me book a rental car for nashville", + "car_rental" + ], + [ + "i need you to get me a rental car in nashville", + "car_rental" + ], + [ + "in nashville, i need a rental car booked", + "car_rental" + ], + [ + "where can i rent a car in boston", + "car_rental" + ], + [ + "i need to rent a car in boston", + "car_rental" + ], + [ + "i need to book a car rental in boston", + "car_rental" + ], + [ + "how can i rent a car in boston", + "car_rental" + ], + [ + "help me get a rental car for march 2 to 6th in dallas and i would prefer a bmw suv", + "car_rental" + ], + [ + "i want to rent a bmw suv for dallas from march 2 to 6th", + "car_rental" + ], + [ + "i want a bmw suv for march 2 to 6th in dallas", + "car_rental" + ], + [ + "can you help me book a bmw suv for march 2 to 6th, dallas texas", + "car_rental" + ], + [ + "will you help me rent a car from march 2 to 6th in dallas i want a bmw suv, if possible", + "car_rental" + ], + [ + "book me a car rental between january 1st to january 3rd in denver colorado and id prefer a ford", + "car_rental" + ], + [ + "id like a car rental between january 1st to the 3rd in denver, id like a ford", + "car_rental" + ], + [ + "id like to rent a ford in denver colorado between january 1st to the 3rd", + "car_rental" + ], + [ + "reserve a car rental for denver colorado for a ford between january 1st through 3rd", + "car_rental" + ], + [ + "id like a rental car in denver colorado between january 1st and january 3rd and id like a ford if possible", + "car_rental" + ], + [ + "i need to find a rental car since i'm travelling to new york tomorrow", + "car_rental" + ], + [ + "can you give me information on how to rent a car", + "car_rental" + ], + [ + "i want to travel to new york and i would like to rent a car", + "car_rental" + ], + [ + "i will need a rental car since i'm going to travel to new york", + "car_rental" + ], + [ + "how do i go about renting a car", + "car_rental" + ], + [ + "i need to rent a car in boston for march 2 until march 4", + "car_rental" + ], + [ + "i want to rent a car in boston for march 2 until march 4", + "car_rental" + ], + [ + "i will be in boston from march 2 to march 4 can i rent a car for that time", + "car_rental" + ], + [ + "will car rentals be available in boston from march 2 to march 4", + "car_rental" + ], + [ + "will i be able to rent a car in boston from march 2 to march 4", + "car_rental" + ], + [ + "i need a rental car for sfo from friday to saturday", + "car_rental" + ], + [ + "i'll require a rental car from 3/6 - 3/19 in san jose", + "car_rental" + ], + [ + "find me a rental car from 2/28 - 3/1 in reno", + "car_rental" + ], + [ + "i'll need a rental car from 3/3 - 3/14 in vegas", + "car_rental" + ], + [ + "find me a rental car from 3/6 - 3/9 in port charles", + "car_rental" + ], + [ + "i need a car rental for the first and fifth in denver and i'd like a subaru", + "car_rental" + ], + [ + "are there any reputable car rental places in seattle", + "car_rental" + ], + [ + "what car rental choices are there in calgary", + "car_rental" + ], + [ + "is it possible to get a ford in austin from may the 5th to may the 7th of this year", + "car_rental" + ], + [ + "i'd like to find a place that rents flashy sports cars in tampa", + "car_rental" + ], + [ + "can i rent a car in belgium from march 01 to march 02 and have it be a porsche", + "car_rental" + ], + [ + "i'd like to rent a limo in las vegas from may 01, 2019 to may 03, 2019", + "car_rental" + ], + [ + "contact avis and see if they have cars available", + "car_rental" + ], + [ + "can i get a jeep to rent in bangor from the first of the month to a week after the first", + "car_rental" + ], + [ + "is there a car rental available from tuesday to thursday out of lax", + "car_rental" + ], + [ + "are you able to help with booking a car rental in seattle", + "car_rental" + ], + [ + "could i rent a car from tuesday to thursday out of lax", + "car_rental" + ], + [ + "can a car be rented from tuesday to thursday out of lax", + "car_rental" + ], + [ + "can i get assistance with booking a seattle car rental", + "car_rental" + ], + [ + "can i rent a car out of lax from tuesday to thursday", + "car_rental" + ], + [ + "is a car rental available out of lax from tuesday to thursday", + "car_rental" + ], + [ + "can you help me book a car rental in seattle", + "car_rental" + ], + [ + "could you help with booking a car rental for me in seattle", + "car_rental" + ], + [ + "can you help me with seattle car rental bookings", + "car_rental" + ], + [ + "i want to rent a car in boise from april 12-15", + "car_rental" + ], + [ + "is it possible for me to rent a car out of jfk airport from march 15-20", + "car_rental" + ], + [ + "i need to rent a car in chicago but don't know how", + "car_rental" + ], + [ + "will you help me reserve a rental car for my trip to dallas", + "car_rental" + ], + [ + "find out if i can rent a car in los angeles from march 2-9", + "car_rental" + ], + [ + "help me secure a car rental out of reagan international airport from march 22-30", + "car_rental" + ], + [ + "will you please assist me with renting a car in boise", + "car_rental" + ], + [ + "i would like some help getting a rental car reserved in los angeles", + "car_rental" + ], + [ + "could i rent a car out of dallas from april 1-10", + "car_rental" + ], + [ + "i need help booking a car rental in seattle", + "car_rental" + ], + [ + "show me how to rent a car in las vegas", + "car_rental" + ], + [ + "please help me book a rental car in appleton", + "car_rental" + ], + [ + "can you show me how to book a car rental in manitowoc", + "car_rental" + ], + [ + "help me book a rental car in green bay", + "car_rental" + ], + [ + "help me to book a car rental in sacremento", + "car_rental" + ], + [ + "where can i rent a car soon", + "car_rental" + ], + [ + "are there any places nearby i can rent a car at", + "car_rental" + ], + [ + "can you see if i can rent a car from dallas on the dates of march 1, 2019 to march 3, 2019", + "car_rental" + ], + [ + "please look up if i can rent a car in houston from march 25 to march 29", + "car_rental" + ], + [ + "could i rent a car in seattle from next monday to thursday please", + "car_rental" + ], + [ + "i'd like to rent an automobile in pittsburgh from this tuesday until next thursday can i do that", + "car_rental" + ], + [ + "is it possible to rent a car from new york on 3/2/19 to 3/5/19", + "car_rental" + ], + [ + "i need a rental car", + "car_rental" + ], + [ + "assist me in getting a car rental", + "car_rental" + ], + [ + "help me get a rental car", + "car_rental" + ], + [ + "i will need a rental car for travel", + "car_rental" + ], + [ + "can you help me with a rental car", + "car_rental" + ], + [ + "make sure i can rent one car out of chicago from january 2 to january 5", + "car_rental" + ], + [ + "is it possible to rent a car from laguardia from tuesday to friday", + "car_rental" + ], + [ + "are car rentals available out of new york from march 2 to march 3", + "car_rental" + ], + [ + "what places in chicago will allow me to rent a car from monday to friday", + "car_rental" + ], + [ + "i need to do a car rental", + "car_rental" + ], + [ + "please check if i can do a car rental from charlotte douglas airport from monday to wednesday", + "car_rental" + ], + [ + "rent me a car in aiken on may 12 to may 16", + "car_rental" + ], + [ + "book me a rental car in aiken on may 12 to may 16", + "car_rental" + ], + [ + "in aiken, get me a rental for may 12 to may 16", + "car_rental" + ], + [ + "i will be in aiken on may 12 to may 16, i need to rent a car", + "car_rental" + ], + [ + "on may 12 to may 16 can i get a car from aiken", + "car_rental" + ], + [ + "can you help me booked a car in london", + "car_rental" + ], + [ + "please book a car for me in bangkok", + "car_rental" + ], + [ + "please book a car for me in ho chi minh", + "car_rental" + ], + [ + "can you help me book a car rental in paris", + "car_rental" + ], + [ + "what do i do if my car battery is dead", + "jump_start" + ], + [ + "show me the way to jump start a battery", + "jump_start" + ], + [ + "how can i replace my car battery", + "jump_start" + ], + [ + "tell me how to jump start a battery", + "jump_start" + ], + [ + "what can i do since my car battery died", + "jump_start" + ], + [ + "my battery died in my car, how can i jump start a battery", + "jump_start" + ], + [ + "whats the best way to jump start a battery", + "jump_start" + ], + [ + "how do i jump start a battery", + "jump_start" + ], + [ + "my car battery died, what should i do", + "jump_start" + ], + [ + "how do i fix a dead car battery", + "jump_start" + ], + [ + "please help me figure out how to jump start my car", + "jump_start" + ], + [ + "i don't know how to jump start my car, help!", + "jump_start" + ], + [ + "can you help me with the steps to jump start my car", + "jump_start" + ], + [ + "help needed to jump start my car", + "jump_start" + ], + [ + "i need your help to jump start this car battery", + "jump_start" + ], + [ + "hey do you know how to jump start a car battery", + "jump_start" + ], + [ + "i would appreciate it if you could show me how to jump start a car battery", + "jump_start" + ], + [ + "could you teach me how to jump start a car", + "jump_start" + ], + [ + "what will i need to jump start a dead car", + "jump_start" + ], + [ + "read me a step by step guide on jump starting cars", + "jump_start" + ], + [ + "pull up instructions on how to jump start a car", + "jump_start" + ], + [ + "please assist me in figuring out how to handle a dead car battery", + "jump_start" + ], + [ + "i need to do something about my dead car battery", + "jump_start" + ], + [ + "my car is dead, what do i need to jump start it", + "jump_start" + ], + [ + "what should i do if my car battery dies", + "jump_start" + ], + [ + "where should i go to get my dead car battery checked out", + "jump_start" + ], + [ + "my car battery has died what should i do now", + "jump_start" + ], + [ + "inform me on the directions to jump start my car", + "jump_start" + ], + [ + "what are the steps to jump start my car", + "jump_start" + ], + [ + "tell me the tools i need to jump start my car", + "jump_start" + ], + [ + "do i need cables to jump start my car", + "jump_start" + ], + [ + "my car needs to be jump started, guide me through it", + "jump_start" + ], + [ + "tell me how to jump start my own car battery", + "jump_start" + ], + [ + "what are my options for jump starting my battery", + "jump_start" + ], + [ + "my battery is dead so how can i get it going again", + "jump_start" + ], + [ + "how do you go about jump starting a car battery", + "jump_start" + ], + [ + "i need diy info about jump starting my dead car battery", + "jump_start" + ], + [ + "how do you use jumper cables", + "jump_start" + ], + [ + "look up instructions for jumper cables", + "jump_start" + ], + [ + "how do you jump start a car", + "jump_start" + ], + [ + "how do you jump a car", + "jump_start" + ], + [ + "what do you need to jump a car", + "jump_start" + ], + [ + "what is the way to jump start the car", + "jump_start" + ], + [ + "can you tell me how to jump start the car", + "jump_start" + ], + [ + "how do i jump start the car", + "jump_start" + ], + [ + "what is the way to jump start my car", + "jump_start" + ], + [ + "closest auto parts store to find replace for dead car battery", + "jump_start" + ], + [ + "find repair shop that will diagnosis dead car battery", + "jump_start" + ], + [ + "number for aaa to help with dead car battery", + "jump_start" + ], + [ + "find auto store that tests dead car batteries for free", + "jump_start" + ], + [ + "where to go to get dead car battery tested", + "jump_start" + ], + [ + "what prong jump starts the car", + "jump_start" + ], + [ + "i want a pic of how to jump start", + "jump_start" + ], + [ + "what are some ways to jump start a car", + "jump_start" + ], + [ + "i need rules for jump starting", + "jump_start" + ], + [ + "what is the procedure to jump start a car", + "jump_start" + ], + [ + "what do i do when my car battery is dead", + "jump_start" + ], + [ + "how can i charge my car battery when it's dead", + "jump_start" + ], + [ + "if i think my car battery is dead, what steps should i take to fix it", + "jump_start" + ], + [ + "my car battery is dead, how do i charge it", + "jump_start" + ], + [ + "if my car battery is dead, what action do i need to do", + "jump_start" + ], + [ + "how do i jump start my vehicle", + "jump_start" + ], + [ + "can you tell me how to jump my car", + "jump_start" + ], + [ + "explain how to jump a car", + "jump_start" + ], + [ + "can you tell me how to jump a car", + "jump_start" + ], + [ + "how does one jump a car", + "jump_start" + ], + [ + "how do i jump my car", + "jump_start" + ], + [ + "how do i jump start my battery", + "jump_start" + ], + [ + "how do i start my car battery", + "jump_start" + ], + [ + "what do i do to jump start my battery", + "jump_start" + ], + [ + "how do i give my car a jump", + "jump_start" + ], + [ + "my car needs jump started, find me directions", + "jump_start" + ], + [ + "i need instructions on how to jump start my car", + "jump_start" + ], + [ + "i need to know how to jump start my car", + "jump_start" + ], + [ + "how do i jump start my car battery", + "jump_start" + ], + [ + "i don't know how to jump start my car", + "jump_start" + ], + [ + "tell me how to jump start my dead battery", + "jump_start" + ], + [ + "i need to jump start my car what do i do", + "jump_start" + ], + [ + "help me jump start my car", + "jump_start" + ], + [ + "my car is dead can you tell me how to jump start it", + "jump_start" + ], + [ + "how do you do a jump start", + "jump_start" + ], + [ + "whats the safest way to jump start a car", + "jump_start" + ], + [ + "guide me through jump starting a car", + "jump_start" + ], + [ + "how do you jump a car with a dead battery", + "jump_start" + ], + [ + "i need to know how jumping a car works", + "jump_start" + ], + [ + "what do i do for a dead car battery", + "jump_start" + ], + [ + "my car battery is dead, what do i do now", + "jump_start" + ], + [ + "what do i do to fix a dead car battery", + "jump_start" + ], + [ + "what should i do if my car battery is dead", + "jump_start" + ], + [ + "what's the method of jumping my car", + "jump_start" + ], + [ + "what do i do to jump start my car", + "jump_start" + ], + [ + "do you have instructions on jump starting a chevy", + "jump_start" + ], + [ + "how do you jump start a subaru forester", + "jump_start" + ], + [ + "how do i jump start a fiat", + "jump_start" + ], + [ + "how do i properly give my car a jump", + "jump_start" + ], + [ + "what's the best way to jump start a kia", + "jump_start" + ], + [ + "what do i do if i think my car battery's dead", + "jump_start" + ], + [ + "what's next when it seems there's a dead car battery", + "jump_start" + ], + [ + "how should i proceed if my car won't start and i think it's the battery", + "jump_start" + ], + [ + "how can i start my car using a jump start", + "jump_start" + ], + [ + "can you give me a french dinner suggestion", + "meal_suggestion" + ], + [ + "suggest a meal from laos to me, please", + "meal_suggestion" + ], + [ + "can you give me a vietnamese meal suggestion", + "meal_suggestion" + ], + [ + "suggest a meal from burma to me", + "meal_suggestion" + ], + [ + "can you give me a vietnamese dinner suggestion", + "meal_suggestion" + ], + [ + "suggest a meal from thailand to me, please", + "meal_suggestion" + ], + [ + "can you give me a thai meal suggestion, please", + "meal_suggestion" + ], + [ + "can you give me a vietnamese meal suggestion, please", + "meal_suggestion" + ], + [ + "can you give me a burmese meal suggestion, please", + "meal_suggestion" + ], + [ + "suggest a meal from burma to me, please", + "meal_suggestion" + ], + [ + "can you give me a burmese dinner suggestion", + "meal_suggestion" + ], + [ + "can you give me a thai meal suggestion", + "meal_suggestion" + ], + [ + "can you give me a thai dinner suggestion", + "meal_suggestion" + ], + [ + "suggest a meal from thailand to me", + "meal_suggestion" + ], + [ + "give me italian meal ideas", + "meal_suggestion" + ], + [ + "suggest an italian meal for me", + "meal_suggestion" + ], + [ + "can you suggest meals from italy to me", + "meal_suggestion" + ], + [ + "may you suggest a meal from italy to me", + "meal_suggestion" + ], + [ + "please suggest meals from italy to me", + "meal_suggestion" + ], + [ + "can you tell me a good indian dish to make", + "meal_suggestion" + ], + [ + "got any good dinner ideas", + "meal_suggestion" + ], + [ + "what's a simple chinese recipe for dinner", + "meal_suggestion" + ], + [ + "do you know an good pasta dishes", + "meal_suggestion" + ], + [ + "what can i make for dinner using ground beef", + "meal_suggestion" + ], + [ + "i need new dinner ideas", + "meal_suggestion" + ], + [ + "what can i make for dinner", + "meal_suggestion" + ], + [ + "do you know any greek dishes i could make for dinner", + "meal_suggestion" + ], + [ + "what do you think would be a good dinner", + "meal_suggestion" + ], + [ + "what would be good for dinner", + "meal_suggestion" + ], + [ + "what should i have for dinner", + "meal_suggestion" + ], + [ + "i'd like to get dinner suggestions for thai food", + "meal_suggestion" + ], + [ + "get me italian cuisine dinner suggestions", + "meal_suggestion" + ], + [ + "would you provide me with italian cuisine dinner suggestions", + "meal_suggestion" + ], + [ + "i'm needing dinner suggestions for mexican food", + "meal_suggestion" + ], + [ + "what's the pizza like around here", + "meal_suggestion" + ], + [ + "what's the best pizza place around here", + "meal_suggestion" + ], + [ + "how tasty is the pizza here", + "meal_suggestion" + ], + [ + "what would you suggest for dinner", + "meal_suggestion" + ], + [ + "i need dinner ideas", + "meal_suggestion" + ], + [ + "i need a mexican meal suggesstion", + "meal_suggestion" + ], + [ + "help me decide what mexican meal i want", + "meal_suggestion" + ], + [ + "what kind of mexican meal should i get", + "meal_suggestion" + ], + [ + "which mexican meal would be good", + "meal_suggestion" + ], + [ + "i need to cook, what should i make", + "meal_suggestion" + ], + [ + "i can't decide on dinner, what do you suggest", + "meal_suggestion" + ], + [ + "suggest a good mexican meal to me", + "meal_suggestion" + ], + [ + "do you have any suggestions for a meal from australia", + "meal_suggestion" + ], + [ + "i'd like you to give me an idea for a meal from iceland", + "meal_suggestion" + ], + [ + "can you suggest any good meals from chicago", + "meal_suggestion" + ], + [ + "please suggest a meal from italy to me", + "meal_suggestion" + ], + [ + "can you suggest to me any meals from nigeria", + "meal_suggestion" + ], + [ + "can you give me a meal suggestion for swedish cuisine", + "meal_suggestion" + ], + [ + "do you have any good recommendations for swiss cuisine", + "meal_suggestion" + ], + [ + "i'm looking for a good suggestion for norse cuisine", + "meal_suggestion" + ], + [ + "what's a good french meal", + "meal_suggestion" + ], + [ + "i'm looking for italian food suggestions", + "meal_suggestion" + ], + [ + "i want you to give me a suggestion for what to make for dinner", + "meal_suggestion" + ], + [ + "i want an italian meal suggestion", + "meal_suggestion" + ], + [ + "i need an italian meal suggestion", + "meal_suggestion" + ], + [ + "please give me a suggestion for what to make for dinner", + "meal_suggestion" + ], + [ + "i'd like an italian meal suggestion", + "meal_suggestion" + ], + [ + "i need you to give me a suggestion for what to make for dinner", + "meal_suggestion" + ], + [ + "i would love an italian meal suggestion", + "meal_suggestion" + ], + [ + "go ahead and give me a suggestion for what to make for dinner", + "meal_suggestion" + ], + [ + "i really want an italian meal suggestion", + "meal_suggestion" + ], + [ + "suggest food from italy to me", + "meal_suggestion" + ], + [ + "suggest an italian meal to me", + "meal_suggestion" + ], + [ + "what meal from italy do you suggest", + "meal_suggestion" + ], + [ + "what food from italy do you suggest", + "meal_suggestion" + ], + [ + "suggest a meal from italy to me", + "meal_suggestion" + ], + [ + "i need a suggestion for a dinner recipe", + "meal_suggestion" + ], + [ + "suggest a meal for me that comes from mexico", + "meal_suggestion" + ], + [ + "can you suggest a meal from ireland for me", + "meal_suggestion" + ], + [ + "suggest something for me to make myself for dinner", + "meal_suggestion" + ], + [ + "can you recommend for me a dish from ethiopia", + "meal_suggestion" + ], + [ + "what do you think i should prepare for my dinner", + "meal_suggestion" + ], + [ + "do you have any southern dishes to recommend", + "meal_suggestion" + ], + [ + "look up a recipe for dinner to suggest to me", + "meal_suggestion" + ], + [ + "what should i make for dinner", + "meal_suggestion" + ], + [ + "please suggest a british meal for me", + "meal_suggestion" + ], + [ + "what kind of greek food is good for dinner", + "meal_suggestion" + ], + [ + "what type of pizzas are available for dinner", + "meal_suggestion" + ], + [ + "need some good dinner ideas", + "meal_suggestion" + ], + [ + "thinking about cooking dinner, what should i make", + "meal_suggestion" + ], + [ + "give me some options on what to cook for dinner", + "meal_suggestion" + ], + [ + "please provide an option for dinner", + "meal_suggestion" + ], + [ + "i would like to hear what ideas you have about making dinner tonight", + "meal_suggestion" + ], + [ + "do you have any suggestions as to what i should cook for dinner", + "meal_suggestion" + ], + [ + "suggest a meal from denmark to me", + "meal_suggestion" + ], + [ + "suggest a meal from korea to me", + "meal_suggestion" + ], + [ + "suggest a meal from germany to me", + "meal_suggestion" + ], + [ + "suggest a meal from india to me", + "meal_suggestion" + ], + [ + "suggest a meal from new york to me", + "meal_suggestion" + ], + [ + "what do you think i should make for dinner", + "meal_suggestion" + ], + [ + "what thoughts do you have about making dinnner tonight", + "meal_suggestion" + ], + [ + "let me pick your brain what do you think we should do for dinner tonight", + "meal_suggestion" + ], + [ + "any suggestions for a peruvian meal", + "meal_suggestion" + ], + [ + "what peruvian dish should i make", + "meal_suggestion" + ], + [ + "what should i get at a mexican restaurant", + "meal_suggestion" + ], + [ + "suggest a meal from peru for me", + "meal_suggestion" + ], + [ + "whats the best way to roast a chicken", + "recipe" + ], + [ + "how do i make pie crust", + "recipe" + ], + [ + "find a recipe for german chocolate cake", + "recipe" + ], + [ + "how do i fry pork chops", + "recipe" + ], + [ + "how do i cook boiled eggs", + "recipe" + ], + [ + "find a chow mein recipe for me, please", + "recipe" + ], + [ + "do you know how to make chow mein", + "recipe" + ], + [ + "can you find a recipe on how to make chow mein", + "recipe" + ], + [ + "tell me how to make chow mein", + "recipe" + ], + [ + "i would like you to help me find a chow mein recipe", + "recipe" + ], + [ + "show me a beef recipe", + "recipe" + ], + [ + "what is a good beef recipe", + "recipe" + ], + [ + "i need a recipe for beef", + "recipe" + ], + [ + "give me a beef recipe", + "recipe" + ], + [ + "where is a beef recipe", + "recipe" + ], + [ + "you know procedure to cook apple pie", + "recipe" + ], + [ + "what is needed you to cook apple pie", + "recipe" + ], + [ + "do you know what are the ingredients to make apple pie", + "recipe" + ], + [ + "do you know recipe for making apple pie", + "recipe" + ], + [ + "how do you cook apple pie", + "recipe" + ], + [ + "how do i make pumpkin pie", + "recipe" + ], + [ + "making spaghetti sauce perfectly is done how", + "recipe" + ], + [ + "making ribs perfectly is done how", + "recipe" + ], + [ + "how do i make lemon merengue pie", + "recipe" + ], + [ + "how do i make lassagna", + "recipe" + ], + [ + "search for a macaroni and cheese recipe", + "recipe" + ], + [ + "can you get me a recipe for mashed potatoes", + "recipe" + ], + [ + "i need instructions on how to make shepherd's pie please", + "recipe" + ], + [ + "please help me with instructions on making chicken curry", + "recipe" + ], + [ + "what are the steps i need to follow to make chewy rice krispies treats", + "recipe" + ], + [ + "what's the best way to make chicken stir fry", + "recipe" + ], + [ + "how do i make tuna salad", + "recipe" + ], + [ + "can you give me a recipe for german chocolate cake", + "recipe" + ], + [ + "i need a recipe on how to make beef stew", + "recipe" + ], + [ + "i want a good recipe that shows me how to bake chocolate chip cookies from scratch", + "recipe" + ], + [ + "please search for a chocolate fudge brownies recipe", + "recipe" + ], + [ + "will you give me some guidance on how to make ceviche", + "recipe" + ], + [ + "can you search for the best new york style cheesecake recipes please", + "recipe" + ], + [ + "look up easy to follow recipes for beef ribs", + "recipe" + ], + [ + "i need the best recipe for mashed potatoes", + "recipe" + ], + [ + "can you find me a recipe for pie", + "recipe" + ], + [ + "can you find me a recipe for quiche", + "recipe" + ], + [ + "can you find me a recipe for pasta", + "recipe" + ], + [ + "can you find me a recipe for ribs", + "recipe" + ], + [ + "can you find me a recipe for cake", + "recipe" + ], + [ + "what steps are involved in making lasagna", + "recipe" + ], + [ + "how can i make chicken pot pie", + "recipe" + ], + [ + "how to make mac and cheese", + "recipe" + ], + [ + "how do you make pot roast", + "recipe" + ], + [ + "can you find a hearty lasagna recipe", + "recipe" + ], + [ + "find a good recipe for meatloaf", + "recipe" + ], + [ + "i am looking for a vegan friendly italian pasta recipe", + "recipe" + ], + [ + "how do you cook meatloaf", + "recipe" + ], + [ + "i need a vegi lasagna recipe", + "recipe" + ], + [ + "i need a quick recipe for spiral ham", + "recipe" + ], + [ + "what's the recipe for rice noodles", + "recipe" + ], + [ + "can you help me find a lasagna recipe", + "recipe" + ], + [ + "i need a recipe for chicken pot pie", + "recipe" + ], + [ + "help me find a recipe for a beef casserole", + "recipe" + ], + [ + "i need help finding a recipe for enchiladas", + "recipe" + ], + [ + "i need to know how to make philly cheesesteaks", + "recipe" + ], + [ + "i need a blackberry pie recipe", + "recipe" + ], + [ + "what do i need to do to make blackberry pie", + "recipe" + ], + [ + "blackberry pie instructions", + "recipe" + ], + [ + "how do you make blackberry pie", + "recipe" + ], + [ + "how do i bake a blackberry pie", + "recipe" + ], + [ + "do you have a cookbook that could teach me to make sushi", + "recipe" + ], + [ + "can you teach me how to make sushi", + "recipe" + ], + [ + "where can i look to learn to make sushi", + "recipe" + ], + [ + "what do you need to do to make sushi", + "recipe" + ], + [ + "is there a good website to teach me how to make sushi", + "recipe" + ], + [ + "tell me how to make beef wellington", + "recipe" + ], + [ + "what's a good recipe for chicken divan", + "recipe" + ], + [ + "find me a recipe for teriyaki chicken", + "recipe" + ], + [ + "find out how to make chicken tikka masala", + "recipe" + ], + [ + "how do i make beef stroganoff", + "recipe" + ], + [ + "please show me a recipe for chili", + "recipe" + ], + [ + "what is a good chili recipe", + "recipe" + ], + [ + "i need you to find me a recipe for fried shrimp", + "recipe" + ], + [ + "can you find me a recipe for coffee cakes", + "recipe" + ], + [ + "can you find me a recipe for salsa", + "recipe" + ], + [ + "can you find me a recipe for honey ham", + "recipe" + ], + [ + "can you find me a recipe for cheese cake", + "recipe" + ], + [ + "can you find me a recipe for sugar cookies", + "recipe" + ], + [ + "can you find me a recipe for carrot cake", + "recipe" + ], + [ + "how do you make benedict arnold", + "recipe" + ], + [ + "how do you create pork chili", + "recipe" + ], + [ + "what's the best way to make a broccoli salad", + "recipe" + ], + [ + "are there instructions on how to make buttermilk pancakes", + "recipe" + ], + [ + "what's the way to make apple pie", + "recipe" + ], + [ + "what's the process of making a burrito", + "recipe" + ], + [ + "how do i make a taco that's worth eating", + "recipe" + ], + [ + "how do i make that scottish dish with all the blood and sausage", + "recipe" + ], + [ + "is there a recipe for chili i can use", + "recipe" + ], + [ + "please give me instructions on making blueberry pie", + "recipe" + ], + [ + "can you instruct me on how to make german chocolate cake", + "recipe" + ], + [ + "how do i make the perfect omelette", + "recipe" + ], + [ + "i want to make sour dough bread please find a good recipe for me", + "recipe" + ], + [ + "i need a really good recipe for making doughnuts", + "recipe" + ], + [ + "please find me a recipe for spaghetti now", + "recipe" + ], + [ + "can you tell me what my total income is for the pay period", + "income" + ], + [ + "please give me my salary figure", + "income" + ], + [ + "i need you to tell me my salary", + "income" + ], + [ + "what is my gross income per pay period", + "income" + ], + [ + "what is my total annual income", + "income" + ], + [ + "how much did i earn in income only last year", + "income" + ], + [ + "what is my salary right now", + "income" + ], + [ + "what is my pay for this year", + "income" + ], + [ + "i would like to know what my salary is at this time", + "income" + ], + [ + "i need details on my income", + "income" + ], + [ + "tell me information about my income", + "income" + ], + [ + "do you know anything about my income", + "income" + ], + [ + "i want income data", + "income" + ], + [ + "tell me about my income this week", + "income" + ], + [ + "give me the details on my income", + "income" + ], + [ + "tell me how much i make", + "income" + ], + [ + "what has my income been like", + "income" + ], + [ + "what do i usually earn in a day", + "income" + ], + [ + "how much have i earned this week", + "income" + ], + [ + "what're my wages for the week", + "income" + ], + [ + "how much am i making at my job", + "income" + ], + [ + "what is my income", + "income" + ], + [ + "what do i earn from my job", + "income" + ], + [ + "how much money am i making", + "income" + ], + [ + "how much am i getting paid", + "income" + ], + [ + "advise me of my income", + "income" + ], + [ + "how much do i make", + "income" + ], + [ + "tell me my income", + "income" + ], + [ + "what is my salary", + "income" + ], + [ + "how much should my income be for the month", + "income" + ], + [ + "give me the low down on my income", + "income" + ], + [ + "what's my income", + "income" + ], + [ + "give me my income", + "income" + ], + [ + "what's my income been for the last 6 months", + "income" + ], + [ + "how much do i make every 2 weeks", + "income" + ], + [ + "what's my pay for the year", + "income" + ], + [ + "how much am i getting back from work", + "income" + ], + [ + "how much do i make at work", + "income" + ], + [ + "how much can i expect on my next check", + "income" + ], + [ + "what are they paying me at work right now", + "income" + ], + [ + "what's my take home from work", + "income" + ], + [ + "what's my pay for this week", + "income" + ], + [ + "how much am i getting paid today", + "income" + ], + [ + "what's my paycheck going to be", + "income" + ], + [ + "can you tell me my current salary", + "income" + ], + [ + "look up how much i earn annually", + "income" + ], + [ + "what amount of money do i earn at work", + "income" + ], + [ + "what is my income from work", + "income" + ], + [ + "i need to know how much i make at my job", + "income" + ], + [ + "what is the exact number of my salary", + "income" + ], + [ + "tell me how much money i'm earning at my job", + "income" + ], + [ + "calculate how much i earn from my job", + "income" + ], + [ + "calculate my total income from my job", + "income" + ], + [ + "tell me my salary please", + "income" + ], + [ + "would you tell me about my income", + "income" + ], + [ + "could you tell me about my income", + "income" + ], + [ + "please tell me about my income", + "income" + ], + [ + "i want you to tell me about my income", + "income" + ], + [ + "what is the total amount of my paychecks over the last year", + "income" + ], + [ + "how do i find my income", + "income" + ], + [ + "my income equals what amount", + "income" + ], + [ + "what is my hourly rate", + "income" + ], + [ + "what is my current gross salary", + "income" + ], + [ + "what is my current net salary", + "income" + ], + [ + "how much money was deposited to my bank account from my employer this month", + "income" + ], + [ + "what does my income amount to", + "income" + ], + [ + "can i have more information about my income", + "income" + ], + [ + "how much is my income", + "income" + ], + [ + "i need more information about my income", + "income" + ], + [ + "can you provide information on my income", + "income" + ], + [ + "what's my pay", + "income" + ], + [ + "how much money did i make", + "income" + ], + [ + "how much did i get paid", + "income" + ], + [ + "tell me my salary", + "income" + ], + [ + "can you tell me what my currnet salary is", + "income" + ], + [ + "can you tell me my exact salary", + "income" + ], + [ + "can you tell me what i earned", + "income" + ], + [ + "i need to know my earnings", + "income" + ], + [ + "i need to know my salary", + "income" + ], + [ + "what amount do i make", + "income" + ], + [ + "how much money do i bring in", + "income" + ], + [ + "can you tell me what my income will be this week", + "income" + ], + [ + "what is my yearly salary", + "income" + ], + [ + "what is my pay grade at work", + "income" + ], + [ + "how much do i make per day", + "income" + ], + [ + "how much is my income going to be this month", + "income" + ], + [ + "how much do you make an hour", + "income" + ], + [ + "how much have i earned", + "income" + ], + [ + "what is your current income", + "income" + ], + [ + "how much do you make", + "income" + ], + [ + "what do i earn on average at my job", + "income" + ], + [ + "what do i make yearly", + "income" + ], + [ + "what do you make in a year", + "income" + ], + [ + "what's my monthly income", + "income" + ], + [ + "how much money do i have coming in each month", + "income" + ], + [ + "i wanna know my income", + "income" + ], + [ + "please tell me my income", + "income" + ], + [ + "i need to know my income", + "income" + ], + [ + "i would like to know my income", + "income" + ], + [ + "how much cash do i earn", + "income" + ], + [ + "can you please order me more plastic bags", + "order" + ], + [ + "i need you to order some more lysol for me,please", + "order" + ], + [ + "i need some more lysol, could you order me some", + "order" + ], + [ + "i'm out of lysol could you order me some", + "order" + ], + [ + "could you please reorder me some lysol", + "order" + ], + [ + "will you order me some more lysol spray", + "order" + ], + [ + "order everything that's on my list for shopping", + "order" + ], + [ + "i want my entire shopping list ordered", + "order" + ], + [ + "i want to buy something", + "order" + ], + [ + "get my entire shopping list ordered", + "order" + ], + [ + "i want to make a purchase", + "order" + ], + [ + "take my shopping list and order all", + "order" + ], + [ + "send the order for my entire shopping list", + "order" + ], + [ + "add everything to my shopping cart", + "order" + ], + [ + "submit order for everything", + "order" + ], + [ + "buy everything on my list", + "order" + ], + [ + "please order everything you see on my shopping list", + "order" + ], + [ + "go shopping and order everything on the list", + "order" + ], + [ + "are you able to get my shopping list and order everything on it", + "order" + ], + [ + "could you get everything on my shopping list", + "order" + ], + [ + "i need everything ordered on my shopping list", + "order" + ], + [ + "can you buy me a toy car", + "order" + ], + [ + "i'd like to have everything on my shopping list", + "order" + ], + [ + "i do not have cookies so will you order me some more", + "order" + ], + [ + "get everything on my shopping list", + "order" + ], + [ + "i wanna buy a pair of shoes online now", + "order" + ], + [ + "i do not have flour so will you order me some more", + "order" + ], + [ + "i need everything on my shopping list", + "order" + ], + [ + "i do not have pizza so will you order me some more", + "order" + ], + [ + "i want everything on my shopping list", + "order" + ], + [ + "i don't have ice cream so will you order me some more", + "order" + ], + [ + "i am out of ice cream so will you order me some more", + "order" + ], + [ + "please get everything on my shopping list", + "order" + ], + [ + "i need you to order all the things on my shopping list", + "order" + ], + [ + "i want everything on my shopping list to be ordered", + "order" + ], + [ + "please order me everything that is on my shopping list", + "order" + ], + [ + "would you buy me a phone", + "order" + ], + [ + "i would like everything on my shopping list ordered", + "order" + ], + [ + "i would like you to buy me some paper plates", + "order" + ], + [ + "i'd like you to purchase me canned soup", + "order" + ], + [ + "i need you to buy a mouse for me", + "order" + ], + [ + "purchase a computer for me", + "order" + ], + [ + "i would like all of these things on my shopping list ordered", + "order" + ], + [ + "put in the order for everything on my shopping list", + "order" + ], + [ + "please order some more cat food, i'm out", + "order" + ], + [ + "i'm ready to put in the order for everything on my shopping list", + "order" + ], + [ + "go ahead and order everything on my shoping list", + "order" + ], + [ + "i need more cat food, please order some", + "order" + ], + [ + "i'm out of cat food, order more", + "order" + ], + [ + "will you buy me underpants", + "order" + ], + [ + "order some cat for me, i ran out", + "order" + ], + [ + "order more cat food, i'm out", + "order" + ], + [ + "are you able to purchase underpants for me", + "order" + ], + [ + "can you go to amazon a repurchase my last purchase", + "order" + ], + [ + "please order me a 7lb bag of world's best cat litter from targetcom", + "order" + ], + [ + "submit the order for everything on my shopping list", + "order" + ], + [ + "can you buy something from walmartcom for me", + "order" + ], + [ + "can you purchase underpants for me", + "order" + ], + [ + "can you order underpants for me", + "order" + ], + [ + "can you order everything on my shopping list", + "order" + ], + [ + "i'm out of detergent so will you order me some more", + "order" + ], + [ + "i'm out of fabric softener so will you order me some more", + "order" + ], + [ + "i'm out of soap so will you order me some more", + "order" + ], + [ + "i'm out of toothpaste so will you order me some more", + "order" + ], + [ + "i'm out of razors so will you order me some more", + "order" + ], + [ + "i just used up my toothpaste and need you to order more", + "order" + ], + [ + "i'm making a purchase and need the help of ai", + "order" + ], + [ + "can you order more chapstick i am all out", + "order" + ], + [ + "i am currently out of q tips and need more ordered right away", + "order" + ], + [ + "can you order more printer paper", + "order" + ], + [ + "ran out of tissues and need you to put an order in for more asap", + "order" + ], + [ + "i need you to buy a laptop", + "order" + ], + [ + "i'd like to buy some cooking pans", + "order" + ], + [ + "i'd like to have everything on the shopping list", + "order" + ], + [ + "please buy me flowers", + "order" + ], + [ + "buy all the things on the shopping list", + "order" + ], + [ + "i want all the things on the shopping list", + "order" + ], + [ + "i need to buy everything on the shopping list", + "order" + ], + [ + "purchase me dog food", + "order" + ], + [ + "purchase all the things on my shopping list", + "order" + ], + [ + "i'm short on flour so place an order for me", + "order" + ], + [ + "i'm low on mouthwash so create an order for me", + "order" + ], + [ + "i'm lacking vitamins so order me more", + "order" + ], + [ + "i need more candy so could you order me a pack", + "order" + ], + [ + "i require another filter so can you order me another one", + "order" + ], + [ + "i'm out of shampoo so will you order me some more", + "order" + ], + [ + "i'm out of paper plates so will you order me some more", + "order" + ], + [ + "i'm out of conditioner so will you order me some more", + "order" + ], + [ + "i'm out of paper towels so will you order me some more", + "order" + ], + [ + "i need a replacement phone charger ordered online", + "order" + ], + [ + "can you have some new oakley's shipped to me", + "order" + ], + [ + "grab me a new belt on amazon please", + "order" + ], + [ + "order me a new usb cable on amazon", + "order" + ], + [ + "can you order me new ray bans", + "order" + ], + [ + "would you order everything on my shopping list", + "order" + ], + [ + "i need everything on my shopping list to be ordered", + "order" + ], + [ + "i want you to buy me a shirt", + "order" + ], + [ + "i want everything on my shopping list ordered", + "order" + ], + [ + "i am needing you to buy me some shoes", + "order" + ], + [ + "i want you to order everything on my shopping list", + "order" + ], + [ + "is there any traffic congestion on my way to the closest whole foods", + "traffic" + ], + [ + "how bad is traffic to the closet atm machine", + "traffic" + ], + [ + "is traffic bad on my way to the next mcdonalds", + "traffic" + ], + [ + "what will traffic be like at 5:00 going towards the mall", + "traffic" + ], + [ + "is the traffic bad at 5:00 if i'm going to the mall", + "traffic" + ], + [ + "will i be able to get to the mall at 5:00, or will there be a lot of traffic", + "traffic" + ], + [ + "if i'm heading to the mall at 5:00, what will the traffic be like", + "traffic" + ], + [ + "i'm going to the mall at 5:00 what will traffic be like", + "traffic" + ], + [ + "what is the traffic like on the way to north shore", + "traffic" + ], + [ + "what is the traffic like on the way to makaha", + "traffic" + ], + [ + "what is the traffic like on the way to kaneohe", + "traffic" + ], + [ + "what is the traffic like on the way to kapolei", + "traffic" + ], + [ + "what is the traffic like on the way to town", + "traffic" + ], + [ + "is there traffic on dove road", + "traffic" + ], + [ + "is there traffic up ahead", + "traffic" + ], + [ + "should i take a different route to work", + "traffic" + ], + [ + "is there traffic on bramble lane", + "traffic" + ], + [ + "is there any traffic on my way to work", + "traffic" + ], + [ + "what's the traffic like around the stadium", + "traffic" + ], + [ + "how clogged are the streets before the stadium", + "traffic" + ], + [ + "how much traffic is there before the stadium", + "traffic" + ], + [ + "are there alot of cars on the road before the stadium", + "traffic" + ], + [ + "is there gridlock on the street up to the stadium", + "traffic" + ], + [ + "what's the traffic like on the way to patterson", + "traffic" + ], + [ + "what's the traffic like on the way to the mall", + "traffic" + ], + [ + "what's the traffic like on the way to the water slides", + "traffic" + ], + [ + "what's the traffic like on the way to the amusement park", + "traffic" + ], + [ + "what's the traffic like on the way to walmart", + "traffic" + ], + [ + "what is the traffic nearest lexington", + "traffic" + ], + [ + "give me the traffic at lexington", + "traffic" + ], + [ + "what's the traffic at lexington", + "traffic" + ], + [ + "tell me the traffic at lexington", + "traffic" + ], + [ + "how is the traffic near lexington", + "traffic" + ], + [ + "what is the traffic like", + "traffic" + ], + [ + "is the traffic bad on the way to work", + "traffic" + ], + [ + "how bad is the traffic", + "traffic" + ], + [ + "what is the traffic like on the way to work", + "traffic" + ], + [ + "let me know the traffic in tempe", + "traffic" + ], + [ + "is there traffic on route to work", + "traffic" + ], + [ + "is there traffic on my way to work today", + "traffic" + ], + [ + "i wanna know what the traffic typically like at 3:30 on the route to phoenix", + "traffic" + ], + [ + "i have to know what the traffic typically like at 3:30 on the route to phoenix", + "traffic" + ], + [ + "i would like to know the traffic in tempe please", + "traffic" + ], + [ + "tell me what the traffic is like on the way to phoenix", + "traffic" + ], + [ + "i need to know what the traffic typically like at 3:30 on the route to phoenix", + "traffic" + ], + [ + "is there traffic to work", + "traffic" + ], + [ + "i must know what the traffic typically like at 3:30 on the route to phoenix", + "traffic" + ], + [ + "i gotta know what the traffic is like on the way to phoenix", + "traffic" + ], + [ + "tell me the traffic in tempe", + "traffic" + ], + [ + "is there traffic on my way to work", + "traffic" + ], + [ + "i need ti know the traffic in tempe", + "traffic" + ], + [ + "i wanna know what the traffic is like on the way to phoenix", + "traffic" + ], + [ + "i need to know what traffic will be like in temp", + "traffic" + ], + [ + "what's the traffic typically like at 3:30 on the route to phoenix", + "traffic" + ], + [ + "i need to know what the traffic is like on the way to phoenix", + "traffic" + ], + [ + "i must know what the traffic is like on the way to phoenix", + "traffic" + ], + [ + "is any traffic on my route to work", + "traffic" + ], + [ + "give me an idea of traffic on the way to the doctors office at 6", + "traffic" + ], + [ + "is traffic bad on the way to chicago", + "traffic" + ], + [ + "traffic looking alright going towards burger king", + "traffic" + ], + [ + "is traffic heavy on my route to washington", + "traffic" + ], + [ + "how will traffic be at 7am on the way to my job", + "traffic" + ], + [ + "pull up traffic predictions at 4pm on the way to the library", + "traffic" + ], + [ + "how bad is traffic at 8 on the way to burger king", + "traffic" + ], + [ + "will traffic be light on the way to orlando", + "traffic" + ], + [ + "how's traffic en route to virginia", + "traffic" + ], + [ + "what does traffic look like at 9 en route to the aquarium", + "traffic" + ], + [ + "is there any traffic on the way to the bank", + "traffic" + ], + [ + "is the expressway slow this morning", + "traffic" + ], + [ + "will there be traffic on the way to walmart", + "traffic" + ], + [ + "how's highway traffic today", + "traffic" + ], + [ + "will i hit traffic on route to moms", + "traffic" + ], + [ + "how is the traffic on the way to the mall", + "traffic" + ], + [ + "how is the traffic on the way to work", + "traffic" + ], + [ + "how's traffic on i 95", + "traffic" + ], + [ + "tell me how traffic is looking on the interstate", + "traffic" + ], + [ + "is traffic bad on the parkway", + "traffic" + ], + [ + "how is the traffic on the way to the campsite", + "traffic" + ], + [ + "how is the traffic like on my way to fairfield", + "traffic" + ], + [ + "how is the traffic like on the way to the beach", + "traffic" + ], + [ + "what's the traffic like on my way to the terminal", + "traffic" + ], + [ + "how is the traffic on my way to the venue", + "traffic" + ], + [ + "how is the traffic at jfk at 5 pm on weekdays", + "traffic" + ], + [ + "how bad is city traffic in miami on friday's at 5 pm", + "traffic" + ], + [ + "is the beltway backed up in traffic on saturday mornings at 11 am during the cherry festival", + "traffic" + ], + [ + "how bad is the traffic waiting for the staten island ferry at 8 am", + "traffic" + ], + [ + "tell me about traffic conditions in ocean city, nj on sunday mornings around 10 am in the summer", + "traffic" + ], + [ + "is the traffic typically bad at noon on the route to the hopsital", + "traffic" + ], + [ + "how is the traffic typically at noon on the route to hospital", + "traffic" + ], + [ + "at around noon what is the traffic typically like on the route to the hopsital", + "traffic" + ], + [ + "can you tell me about the traffic typically at noon on the route the hospital", + "traffic" + ], + [ + "if im traveling to the hospital around noon what is the traffic typically like", + "traffic" + ], + [ + "how is the traffic at the nearest wal-mart pharmacy", + "traffic" + ], + [ + "what is the traffic situation at the olive garden restaurant", + "traffic" + ], + [ + "what is the traffic like at the closest safeway grocery store", + "traffic" + ], + [ + "is the traffic light or heavy at the nearest the century movie theater", + "traffic" + ], + [ + "is the traffic backed up at the closest circle k", + "traffic" + ], + [ + "what's the traffic like to city hall", + "traffic" + ], + [ + "what's traffic usually like around 5pm going to the bank", + "traffic" + ], + [ + "has the ice made traffic messy on the way to walmart", + "traffic" + ], + [ + "what is the process to get some more checkbooks mailed to me", + "order_checks" + ], + [ + "how do i get more checkbooks mailed to me", + "order_checks" + ], + [ + "if i need more checkbooks maild to me what should i do", + "order_checks" + ], + [ + "can you mail more checkbooks to me please", + "order_checks" + ], + [ + "can you explain to me how to get some more checkbooks mailed to me", + "order_checks" + ], + [ + "can i get more checks", + "order_checks" + ], + [ + "order more checks", + "order_checks" + ], + [ + "i don't have any checks left; please order some", + "order_checks" + ], + [ + "i need new checks", + "order_checks" + ], + [ + "can you order me more checks, please", + "order_checks" + ], + [ + "i need more checkbooks for my chase account", + "order_checks" + ], + [ + "i'm in need of checks for bank of america", + "order_checks" + ], + [ + "can you order me more checks at wells fargo", + "order_checks" + ], + [ + "my key bank checks have run out", + "order_checks" + ], + [ + "i don't have anymore checks for chase and need some", + "order_checks" + ], + [ + "i would like to request that more checkbooks be mailed to me", + "order_checks" + ], + [ + "i would like to order additional checkbooks to me mailed to my home address", + "order_checks" + ], + [ + "would it be possible for you to mail me new checkbooks", + "order_checks" + ], + [ + "i would like to place an order for more checkbooks to me mailed to me", + "order_checks" + ], + [ + "could you please mail me some checkbooks", + "order_checks" + ], + [ + "how can i order some more checks for my checking account", + "order_checks" + ], + [ + "can you show me how to order some more checks for my chase account", + "order_checks" + ], + [ + "please show me how to order more checks for my savings account", + "order_checks" + ], + [ + "i'd like to order more checks for my savings account", + "order_checks" + ], + [ + "i need to order more checks for my savings account", + "order_checks" + ], + [ + "if i can, i'd like to get some more checkbooks mailed to me", + "order_checks" + ], + [ + "can i get some more of those new checkbooks mailed to me", + "order_checks" + ], + [ + "can some more checkbooks get mailed to me", + "order_checks" + ], + [ + "can i please get some more checkbooks mailed to me", + "order_checks" + ], + [ + "i'd like to get some more checkbooks mailed to me, if i can", + "order_checks" + ], + [ + "i don't have checks so can i order some new ones", + "order_checks" + ], + [ + "i really wanna get some more checkbooks mailed to me", + "order_checks" + ], + [ + "i wanna order some more checks for my checking account", + "order_checks" + ], + [ + "i wanna get some new checks cause i ran out of them", + "order_checks" + ], + [ + "i would like to get some more checkbooks mailed to me", + "order_checks" + ], + [ + "i need to get some more checkbooks mailed to me", + "order_checks" + ], + [ + "i'd love to order some more checks for my checking account", + "order_checks" + ], + [ + "i feel i would like to get some more checkbooks mailed to me", + "order_checks" + ], + [ + "i don't have checks, so can i get new ones", + "order_checks" + ], + [ + "i must order some more checks for my checking account", + "order_checks" + ], + [ + "i do need to get some more checkbooks mailed to me", + "order_checks" + ], + [ + "i really need to order some more checks for my savings account", + "order_checks" + ], + [ + "i want to order some more checks for my savings account", + "order_checks" + ], + [ + "i recently ran out of checks, so i wanna get some new ones", + "order_checks" + ], + [ + "i need to order checks, so can i order some new ones", + "order_checks" + ], + [ + "i need more checkbooks delivered to me by mail", + "order_checks" + ], + [ + "i need to order more checkbooks by mail", + "order_checks" + ], + [ + "how can i order more checkbooks by mail", + "order_checks" + ], + [ + "can you show me how to get more checkbooks by mail", + "order_checks" + ], + [ + "what is the process for ordering new checks", + "order_checks" + ], + [ + "how do i order new checks", + "order_checks" + ], + [ + "how do you order new checks", + "order_checks" + ], + [ + "how do i order checks once i run out", + "order_checks" + ], + [ + "i need to order new checks", + "order_checks" + ], + [ + "is it possible to get more checkbooks for my navy fed account", + "order_checks" + ], + [ + "is it possible to get more checkbooks for my wells fargo checkings", + "order_checks" + ], + [ + "i used the last check so i want you to help me order more", + "order_checks" + ], + [ + "can i get new checks to replace the ones we ran out of", + "order_checks" + ], + [ + "since we're out of checks i want help purchasing new ones", + "order_checks" + ], + [ + "i need to order new checks since i just used the last of them", + "order_checks" + ], + [ + "order some new checks to replace the ones i ran out of", + "order_checks" + ], + [ + "can i get more checkbooks for my bank of america checkings account", + "order_checks" + ], + [ + "does my great western bank account allow me to order more checkbooks", + "order_checks" + ], + [ + "i need to order more checkbooks for my capital one account", + "order_checks" + ], + [ + "help me get some new checks since i ran out of them", + "order_checks" + ], + [ + "i want to order some new checks because i ran out of them", + "order_checks" + ], + [ + "i have no more checks, how can i order more", + "order_checks" + ], + [ + "how do i go about getting more checks since i ran out of them", + "order_checks" + ], + [ + "how can i order more checks since i do not have any more", + "order_checks" + ], + [ + "is is possible to order more checkbooks for account ending in sequence 939392", + "order_checks" + ], + [ + "tell my bank i need new checks", + "order_checks" + ], + [ + "please order me some new checks", + "order_checks" + ], + [ + "how can i order more checks for my regions bank account", + "order_checks" + ], + [ + "how do i place an order for more checks for my bank of america account", + "order_checks" + ], + [ + "how can i get more checks for my commerce bank checking account", + "order_checks" + ], + [ + "order more checks for my first bank checking account", + "order_checks" + ], + [ + "i need to order more checks for my usbank account", + "order_checks" + ], + [ + "i'm out of checks, please order new ones", + "order_checks" + ], + [ + "order new checks, please", + "order_checks" + ], + [ + "will you order more checkbooks for my silvergate account", + "order_checks" + ], + [ + "would you please order me more checkbooks for my b of t account", + "order_checks" + ], + [ + "order more checkbooks for my community account", + "order_checks" + ], + [ + "i need more checkbooks for my fifth third account", + "order_checks" + ], + [ + "can you get me more checkbooks for my southern account", + "order_checks" + ], + [ + "will it be possible to order for more checkbooks for my chase bank account", + "order_checks" + ], + [ + "can i order for more checkbooks for my chase bank account", + "order_checks" + ], + [ + "will i be able to order for more checkbooks for my chase bank account", + "order_checks" + ], + [ + "is it possible to make an order for more checkbooks for my chase bank account", + "order_checks" + ], + [ + "is it possible to order more checkbooks for my chase bank account", + "order_checks" + ], + [ + "ai, research usbank options to order more checks", + "order_checks" + ], + [ + "ai, where do i go to order checks for my usbank account", + "order_checks" + ], + [ + "ai,please order some checks for my usbank account", + "order_checks" + ], + [ + "ai, show me online options to order more checks for my usbank account", + "order_checks" + ], + [ + "ai, call my usbank to order more checks", + "order_checks" + ], + [ + "i need to place an order of checks for my bank of america checking account", + "order_checks" + ], + [ + "please submit an order for new checks on my pnc money market account", + "order_checks" + ], + [ + "i would like a reorder of checkbooks for my home equity line of credit with chase", + "order_checks" + ], + [ + "can you order new checks for my citizens checking", + "order_checks" + ], + [ + "make an order for new checbooks on my td checking please", + "order_checks" + ], + [ + "how do i order checks for my savings account", + "order_checks" + ], + [ + "why did my card not get accepted", + "card_declined" + ], + [ + "why did my card not get accepted there", + "card_declined" + ], + [ + "please tell me why did my card not get accepted", + "card_declined" + ], + [ + "why did my card not get accepted please", + "card_declined" + ], + [ + "why did my card not get accepted then", + "card_declined" + ], + [ + "find out why my card was declined", + "card_declined" + ], + [ + "please tell me why my card was declined", + "card_declined" + ], + [ + "for what reason did my card get declined", + "card_declined" + ], + [ + "can you tell me why my card was declined", + "card_declined" + ], + [ + "i need to know why my card was declined", + "card_declined" + ], + [ + "i need to know why my card was just declined at walgreen's", + "card_declined" + ], + [ + "where can i find out why my card was recently declined at amazoncom", + "card_declined" + ], + [ + "i tried using my card at chipotle yesterday and it was declined; why", + "card_declined" + ], + [ + "why was my card declined for my monthly netflix subscription payment", + "card_declined" + ], + [ + "can you tell me what caused my card to get declined at starbucks this morning", + "card_declined" + ], + [ + "i wonder why my card got declined yesterday", + "card_declined" + ], + [ + "why was my card declined", + "card_declined" + ], + [ + "my card was declined yesterday, why", + "card_declined" + ], + [ + "is my card working properly", + "card_declined" + ], + [ + "do i have enough funds in my card", + "card_declined" + ], + [ + "how do i fix my card being declined", + "card_declined" + ], + [ + "tell me why was my card declined at the zoo", + "card_declined" + ], + [ + "explain why was my card declined at boston market", + "card_declined" + ], + [ + "why did you decline my card at sfo", + "card_declined" + ], + [ + "how come my card was declined at rosses", + "card_declined" + ], + [ + "why did my card get declined at the dentist office", + "card_declined" + ], + [ + "why did macy's decline my card", + "card_declined" + ], + [ + "bloomingdale's declined my card and i'd like to know why", + "card_declined" + ], + [ + "why wouldn't nordstrom accept my card", + "card_declined" + ], + [ + "please tell me why walgreen's wouldn't take my card", + "card_declined" + ], + [ + "can you tell me why walmart declined my card", + "card_declined" + ], + [ + "i couldn't buy a mug from target because my card got declined", + "card_declined" + ], + [ + "stopped by target to get a mug but my card declines", + "card_declined" + ], + [ + "at target trying to buy a mug and my card was declined", + "card_declined" + ], + [ + "i went to target to buy a mug but my card did not work", + "card_declined" + ], + [ + "trying to buy a mug from target but my card declined", + "card_declined" + ], + [ + "why was my card not accepted yesterday", + "card_declined" + ], + [ + "tell me why my card didn't work yesterday", + "card_declined" + ], + [ + "what was the issue with my card yesterday", + "card_declined" + ], + [ + "what was the problem with my card yesterday", + "card_declined" + ], + [ + "what was wrong with my card yesterday", + "card_declined" + ], + [ + "i was at home depot trying to buy plants and my card got declined", + "card_declined" + ], + [ + "i need to know why my card declined yesterday", + "card_declined" + ], + [ + "i wish to know why my card was declined yesterday", + "card_declined" + ], + [ + "i was at target trying to buy candles and my card got declined", + "card_declined" + ], + [ + "find out why my card declined yesterday", + "card_declined" + ], + [ + "i was at sears trying to buy clothes and my card got declined", + "card_declined" + ], + [ + "why was my card declined yesterday", + "card_declined" + ], + [ + "i was at zales trying to buy a ring and my card got declined", + "card_declined" + ], + [ + "i was at macys trying to buy shoes and my card got declined", + "card_declined" + ], + [ + "my card declined yesterday and i want to know why", + "card_declined" + ], + [ + "i wish to know why my card was declined", + "card_declined" + ], + [ + "tell me why my card was declined yesterday", + "card_declined" + ], + [ + "so it turns out my card was declined at applebee's and i wanna know why", + "card_declined" + ], + [ + "so why was my card declined yesterday", + "card_declined" + ], + [ + "tell me why my card got declined", + "card_declined" + ], + [ + "it turns out my card was declined at fry's and i would like to know why", + "card_declined" + ], + [ + "let me know why my card got declined", + "card_declined" + ], + [ + "let me know why my card was declined yesterday", + "card_declined" + ], + [ + "i wanna know why my card was declined", + "card_declined" + ], + [ + "i really need to know why my card was denied", + "card_declined" + ], + [ + "so my card was declined at fry's and i wanna know why", + "card_declined" + ], + [ + "turns out my card was declined at wal mart and i wanna know why", + "card_declined" + ], + [ + "i think my card was declined at wal mart and i want to know why", + "card_declined" + ], + [ + "let me know why my card got declined the other day", + "card_declined" + ], + [ + "please let me know why my card was declined yesterday", + "card_declined" + ], + [ + "i was trying to buy qtips at walmart and my card got declined", + "card_declined" + ], + [ + "i was at walmart today and my card got declined when i went to buy qtips", + "card_declined" + ], + [ + "at walmart my card got declined when i was buyng qtips", + "card_declined" + ], + [ + "buying qtips today, my card got declined at walmart", + "card_declined" + ], + [ + "i was buying qtips today at walmart and my card got declined", + "card_declined" + ], + [ + "my card didn't go through when i was buying a case of water at walmart", + "card_declined" + ], + [ + "i was at walmart when my card was declined i was only trying to buy some candy", + "card_declined" + ], + [ + "my card got declined at target while buying a tv", + "card_declined" + ], + [ + "i was at albertsons trying to buy milk when my card wasn't accepted", + "card_declined" + ], + [ + "my card was not accepted for buying a computer at best buy", + "card_declined" + ], + [ + "please help me figure out why my card was declined yesterday", + "card_declined" + ], + [ + "why did my card get rejected yesterday", + "card_declined" + ], + [ + "can you tell me why my card was declined yesterday", + "card_declined" + ], + [ + "my card was declined at the store yesterday, what happened", + "card_declined" + ], + [ + "i was at costco trying to buy groceries and my card got declined", + "card_declined" + ], + [ + "my card was declined at the casino and i'm wondering why", + "card_declined" + ], + [ + "i was at safeway trying to buy groceries and my card got declined", + "card_declined" + ], + [ + "i was at whole foods trying to buy groceries and my card got declined", + "card_declined" + ], + [ + "i was at trader joe's trying to buy groceries and my card got declined", + "card_declined" + ], + [ + "i was at costco trying to buy sheets and my card got declined", + "card_declined" + ], + [ + "my card did not work yesterday", + "card_declined" + ], + [ + "i tried to use my credit card yesterday, but it did not work", + "card_declined" + ], + [ + "my card was malfunctioning and was returned to me", + "card_declined" + ], + [ + "for which reason was my card declined yesterday", + "card_declined" + ], + [ + "yesterday, my card was declined", + "card_declined" + ], + [ + "i don't understand why walgreens declined my card", + "card_declined" + ], + [ + "i tried to make a purchase yesterday but my card was declined why", + "card_declined" + ], + [ + "i don't understand why my card was declined yesterday", + "card_declined" + ], + [ + "what is the reason for whole foods declining my card", + "card_declined" + ], + [ + "can you explain why my card was declined", + "card_declined" + ], + [ + "how come starbucks declined my card when i tried to use it to pay", + "card_declined" + ], + [ + "how come my card was not accepted yesterday", + "card_declined" + ], + [ + "find out what happened to make my card get declined yesterday", + "card_declined" + ], + [ + "why was my card declined at safeway", + "card_declined" + ] + ], + "oos_test": [ + [ + "how much has the dow changed today", + "oos" + ], + [ + "how many prime numbers are there between 0 and 100", + "oos" + ], + [ + "can you tell me how to solve simple algebraic equations with one variable", + "oos" + ], + [ + "can you dim the brightness of my screen", + "oos" + ], + [ + "what is the account number to the internet service i have", + "oos" + ], + [ + "can you see a hdmi cord", + "oos" + ], + [ + "what veggies can i pair with mushrooms", + "oos" + ], + [ + "can you put the car in fuel efficient mode", + "oos" + ], + [ + "at what age can someone get a card", + "oos" + ], + [ + "please find today's most read stories from the new york times todayi", + "oos" + ], + [ + "how do i get red wine out of a couch cushion", + "oos" + ], + [ + "can you tell me who sells dixie paper plates", + "oos" + ], + [ + "who invented the internet", + "oos" + ], + [ + "what big news happened over the weekend", + "oos" + ], + [ + "what is happening in politicsu", + "oos" + ], + [ + "how is my driving", + "oos" + ], + [ + "is the earth flat", + "oos" + ], + [ + "what is the best way to clean ceiling fans", + "oos" + ], + [ + "please tell me the status of the government shutdown", + "oos" + ], + [ + "what oil is best for chicken", + "oos" + ], + [ + "what is today's big article in the washington post", + "oos" + ], + [ + "has there been anything breaking this afternoon", + "oos" + ], + [ + "what are yahoo's top stories right now", + "oos" + ], + [ + "what's at movies", + "oos" + ], + [ + "what is the amount of blood needed to stay alive", + "oos" + ], + [ + "can you add a bag to my reservation", + "oos" + ], + [ + "can you auto-pilot the car", + "oos" + ], + [ + "wash windshield", + "oos" + ], + [ + "can you tell me what credit cards i have open", + "oos" + ], + [ + "did the stock market finish up for the day", + "oos" + ], + [ + "what is the population of south africa", + "oos" + ], + [ + "watch the fbi", + "oos" + ], + [ + "can you find the answer to number 26 in this algebra two textbook", + "oos" + ], + [ + "how to remove a stripped bolt", + "oos" + ], + [ + "which stocks have lost the least today", + "oos" + ], + [ + "what are some things i can do on the way to work", + "oos" + ], + [ + "how many steps have i taken today", + "oos" + ], + [ + "can you fill in my credit card number on the screen", + "oos" + ], + [ + "who won the patriots game last nightu", + "oos" + ], + [ + "is anything being newscasted about the threat of famine in chadu", + "oos" + ], + [ + "what are the different types of tvs", + "oos" + ], + [ + "do laundry", + "oos" + ], + [ + "what did trump do todayu", + "oos" + ], + [ + "how many miles does my car currently have", + "oos" + ], + [ + "close all internet tabs", + "oos" + ], + [ + "can you sell stocks for me", + "oos" + ], + [ + "how do you treat an iron skillet", + "oos" + ], + [ + "how much has microsoft's stock changed over the last year", + "oos" + ], + [ + "what is the best product for removing soap scum", + "oos" + ], + [ + "read text", + "oos" + ], + [ + "park the car", + "oos" + ], + [ + "show me a list of top rated airlines", + "oos" + ], + [ + "may i finish washing then i give you please", + "oos" + ], + [ + "do i have overdraft protection", + "oos" + ], + [ + "can you delete my saved credit card", + "oos" + ], + [ + "can you give me the most current market news", + "oos" + ], + [ + "did the supreme court nominee get approvedu", + "oos" + ], + [ + "which company has gone up the most today", + "oos" + ], + [ + "who were the superbowl 23 champions", + "oos" + ], + [ + "can you tell me how to clean a fish tank", + "oos" + ], + [ + "open cnn websiteo", + "oos" + ], + [ + "how do i make my android phone more secure", + "oos" + ], + [ + "i need to update my address", + "oos" + ], + [ + "what is that crunchy stuff on creme bruleo", + "oos" + ], + [ + "which airports do southwest service around the greater new york city area", + "oos" + ], + [ + "can you retrieve client d's file please", + "oos" + ], + [ + "can you list all channels of a certain category", + "oos" + ], + [ + "where does jelly come from", + "oos" + ], + [ + "can you tell me the s&p average", + "oos" + ], + [ + "how would you rate the airport i am traveling to", + "oos" + ], + [ + "am i too old to be a sugar babyo", + "oos" + ], + [ + "what was the closing number of the nasdaq today", + "oos" + ], + [ + "has ko gone up or down", + "oos" + ], + [ + "how many cars average are on the road daily", + "oos" + ], + [ + "what does the plus sign mean on my dashboard", + "oos" + ], + [ + "how is ford's stock doing", + "oos" + ], + [ + "what is my checking account number", + "oos" + ], + [ + "when should i remove my snow tires", + "oos" + ], + [ + "which stocks gained the most today", + "oos" + ], + [ + "what is the fee for a cash advance", + "oos" + ], + [ + "tell me about the earthquake in california that happened this morning", + "oos" + ], + [ + "change color contrast", + "oos" + ], + [ + "what is the golden ratio's number", + "oos" + ], + [ + "is the bank open on mlk day", + "oos" + ], + [ + "can i deposit a check", + "oos" + ], + [ + "from the second of the left ,the pink one", + "oos" + ], + [ + "go and check the fridge", + "oos" + ], + [ + "can you tell me the score of the heat game", + "oos" + ], + [ + "can you mark this note as important", + "oos" + ], + [ + "can you tell me how to multiply two fractions", + "oos" + ], + [ + "i want to find a new car under $25000", + "oos" + ], + [ + "when is the next full moon", + "oos" + ], + [ + "how do i change the windshield wipers", + "oos" + ], + [ + "why is the sky blue", + "oos" + ], + [ + "should i do a complete stop at red lights", + "oos" + ], + [ + "are all televisions high definition", + "oos" + ], + [ + "can you tell me today's headlines pleasei", + "oos" + ], + [ + "who invented custardo", + "oos" + ], + [ + "how to be millionare", + "oos" + ], + [ + "when does the stock market update", + "oos" + ], + [ + "can you tell me how to get gum out of my rug", + "oos" + ], + [ + "how can i get a better rate on my card", + "oos" + ], + [ + "open up internet browser", + "oos" + ], + [ + "it is white colour", + "oos" + ], + [ + "what makes pi so mathematically important", + "oos" + ], + [ + "why can you have the square root of a negative number", + "oos" + ], + [ + "how much time do i have left on my 0% apr", + "oos" + ], + [ + "what are the highest-rated android phones", + "oos" + ], + [ + "what time do i need to arrive to make it on time", + "oos" + ], + [ + "find articles about the protests in parisi", + "oos" + ], + [ + "can you tell me how fast the average airplane enroute to california goes", + "oos" + ], + [ + "how many hurricanes are in an average hurricane season", + "oos" + ], + [ + "how does my current htc phone compare to other android phones", + "oos" + ], + [ + "what movies are available", + "oos" + ], + [ + "how many items are in a bakers dozen", + "oos" + ], + [ + "what articles are written at the cnn site about the women's march", + "oos" + ], + [ + "when does napa close", + "oos" + ], + [ + "what is the current price of tsla", + "oos" + ], + [ + "when will world war 3 begin", + "oos" + ], + [ + "what's going on in the world today", + "oos" + ], + [ + "what battery percentage is my phone at", + "oos" + ], + [ + "can you sign out of my bank login", + "oos" + ], + [ + "what is one standard deviation", + "oos" + ], + [ + "has the market been up or down since the beginning of this year", + "oos" + ], + [ + "how many moons does mars have", + "oos" + ], + [ + "what is the cashback rate for my credit card", + "oos" + ], + [ + "who has the best record in the nba", + "oos" + ], + [ + "how long is the bank open until", + "oos" + ], + [ + "what are some good games for my android phone", + "oos" + ], + [ + "can my grace period be extended any possible way", + "oos" + ], + [ + "how much over will overdraft protection cover", + "oos" + ], + [ + "how fast am i going", + "oos" + ], + [ + "who was the first person to discover cells", + "oos" + ], + [ + "how many people died in yesterday's storm", + "oos" + ], + [ + "how much memory do i have left on this phone", + "oos" + ], + [ + "can i set up mobile deposits", + "oos" + ], + [ + "sell three calls of of nvda", + "oos" + ], + [ + "what bills is congress talking about passing or blocking today", + "oos" + ], + [ + "how much data does my phone have left this month", + "oos" + ], + [ + "how do i add someone to my account", + "oos" + ], + [ + "how much money would my house sell for", + "oos" + ], + [ + "how do i install new cabinets", + "oos" + ], + [ + "is there a fee for cancelling a flight i've booked", + "oos" + ], + [ + "delete the contact uncle john from my phone", + "oos" + ], + [ + "search my contacts for the auto repair place", + "oos" + ], + [ + "does my carrier have coverage in europe", + "oos" + ], + [ + "is there a cheaper rate with another carrier for my mobile", + "oos" + ], + [ + "what are the limits in my phone plan", + "oos" + ], + [ + "is there a way to change your houses address", + "oos" + ], + [ + "does dhl deliver to my address", + "oos" + ], + [ + "how frequently is the bus running today", + "oos" + ], + [ + "is there a better bus route i should be taking", + "oos" + ], + [ + "what stores are at my local mall", + "oos" + ], + [ + "i need to get kalee added to my phone plan", + "oos" + ], + [ + "what is the price of other company's similar phone plans", + "oos" + ], + [ + "how long do i have to wait to get my refund", + "oos" + ], + [ + "how long does it take the irs to issue a tax refund", + "oos" + ], + [ + "do you know if it is possible to close my savings account", + "oos" + ], + [ + "how hard is it to close a bank account at wells fargo", + "oos" + ], + [ + "add my wife as an authorized user to checking account 20905432", + "oos" + ], + [ + "i would like to upgrade to full coverage for my car", + "oos" + ], + [ + "who has the cheapest insurance for my model car in the area", + "oos" + ], + [ + "tell me the value on my current car", + "oos" + ], + [ + "where can i list my vehicle for sell", + "oos" + ], + [ + "what is the price to buy more data on my phone", + "oos" + ], + [ + "i need to add a person to my bank account", + "oos" + ], + [ + "who is the best local real estate agent", + "oos" + ], + [ + "i want to install new tiles in my kitchen", + "oos" + ], + [ + "what's the way for delta to cancel a flight", + "oos" + ], + [ + "read the phone number for mom in my phone contacts", + "oos" + ], + [ + "create a contact labeled mom", + "oos" + ], + [ + "do other providers have better coverage than my cell carrier", + "oos" + ], + [ + "does centurytel offer any better plans than the one i'm on", + "oos" + ], + [ + "what's going on in the world today, anything major", + "oos" + ], + [ + "what is the extra digits that are sometimes included on my zip code", + "oos" + ], + [ + "what's the extended zipcode for my address", + "oos" + ], + [ + "is there an alternate bus stop close to my home i can use", + "oos" + ], + [ + "what stores are in the local mall", + "oos" + ], + [ + "add mary to my phone plan, please", + "oos" + ], + [ + "how much is it to get more data on my phone plan", + "oos" + ], + [ + "can i use direct deposit for my tax refund", + "oos" + ], + [ + "how much of a refund will i get this year", + "oos" + ], + [ + "please take all my money out of my checking account and close the account", + "oos" + ], + [ + "what are cars like mine selling for online", + "oos" + ], + [ + "what's the blue book value of my car", + "oos" + ], + [ + "what are the last 4 digits of my credit card number", + "oos" + ], + [ + "switch over to low power mode to preserve battery life", + "oos" + ], + [ + "show me the most popular nonfiction book currently on the market", + "oos" + ], + [ + "can you recommend some fiction books", + "oos" + ], + [ + "how can i repair a broken watch", + "oos" + ], + [ + "what's out at the theaters right now", + "oos" + ], + [ + "what is the most popular movie currently in theaters", + "oos" + ], + [ + "what is the cheapest new car for this year", + "oos" + ], + [ + "show me new cars with the highest safety rating", + "oos" + ], + [ + "i am looking for a suit for work", + "oos" + ], + [ + "i need to find a black suit under $100", + "oos" + ], + [ + "what is a good laptop for gaming", + "oos" + ], + [ + "show me laptops for sale that are under $2,000", + "oos" + ], + [ + "which element on the periodic table is k", + "oos" + ], + [ + "what kind of bonds do molecules have", + "oos" + ], + [ + "how much is my car worth used", + "oos" + ], + [ + "look up prices for parking at the airport over the weekend", + "oos" + ], + [ + "what is the best way for dealing with the airport", + "oos" + ], + [ + "what are my hours this week at work", + "oos" + ], + [ + "can you check my voicemail", + "oos" + ], + [ + "how many voicemails are currently in my inbox", + "oos" + ], + [ + "i would like to know how long a charge is suppose to last on my phone", + "oos" + ], + [ + "check battery health on this device", + "oos" + ], + [ + "what is a well reviewed book for a teenage girl to read", + "oos" + ], + [ + "i want to find new cyberpunk fiction books", + "oos" + ], + [ + "what channel is cw on", + "oos" + ], + [ + "what is the most rented movie this week", + "oos" + ], + [ + "what is a good movie to go see in theaters for a family with young kids", + "oos" + ], + [ + "i would like to find a stylish suit for a party", + "oos" + ], + [ + "can you give me suggestions for a professional suit under $200", + "oos" + ], + [ + "when is it cheapest to travel to hawaii", + "oos" + ], + [ + "i need a laptop with 16gb of ram", + "oos" + ], + [ + "what is the best reviewed laptop available on the market", + "oos" + ], + [ + "give me information about the element carbon and its reactions with hydrogen", + "oos" + ], + [ + "what is a good chemistry experiment to learn from", + "oos" + ], + [ + "how much is this years model of my car cost", + "oos" + ], + [ + "how do i best deal with the airport", + "oos" + ], + [ + "remind me of the address for my workplace please", + "oos" + ], + [ + "what time do i have to go to work today", + "oos" + ], + [ + "how many voicemail messages do i have", + "oos" + ], + [ + "erase all voicemails in my inbox please", + "oos" + ], + [ + "can you look up grocery coupons for me", + "oos" + ], + [ + "what is money used for", + "oos" + ], + [ + "what are some natural remedies to help ease stress", + "oos" + ], + [ + "what are some good methods of relieving stress", + "oos" + ], + [ + "how do you make sure a bridge doesn't fall down", + "oos" + ], + [ + "what is the median salary for someone with an engineering degree", + "oos" + ], + [ + "what size pipes are used for sinks", + "oos" + ], + [ + "why would the water be turned off", + "oos" + ], + [ + "what is a good sink filter for water", + "oos" + ], + [ + "what does water taste like", + "oos" + ], + [ + "are there any sales on groceries today", + "oos" + ], + [ + "when was my lawn last mowed", + "oos" + ], + [ + "what store has the best deals going on right now", + "oos" + ], + [ + "can you tell me the best time to visit downtown when driving", + "oos" + ], + [ + "am i currently connected to wifi", + "oos" + ], + [ + "is there an internet outage in my area", + "oos" + ], + [ + "tell me about personal finance", + "oos" + ], + [ + "does amazon collect my personal information", + "oos" + ], + [ + "check the status of my amazon orders for me", + "oos" + ], + [ + "what is the official language of romania", + "oos" + ], + [ + "show me the best times to book flights for traveling to another country", + "oos" + ], + [ + "disconnect from wifi immediately please", + "oos" + ], + [ + "am i connected to wifi", + "oos" + ], + [ + "list the contents of my safety deposit box at the bank", + "oos" + ], + [ + "what's the more secure bank vault", + "oos" + ], + [ + "what coupons do i have for restaurants", + "oos" + ], + [ + "how do i make money", + "oos" + ], + [ + "can you give me some stress management tips", + "oos" + ], + [ + "how unhealthy is stress", + "oos" + ], + [ + "what's the best way to build a skyscraper", + "oos" + ], + [ + "find engineering programs to apply to", + "oos" + ], + [ + "what kind of glue is used for gluing pipes together", + "oos" + ], + [ + "check to see how many miles are on my car", + "oos" + ], + [ + "how do i change my windshield wipers", + "oos" + ], + [ + "how many ppm of particulate is in my local water", + "oos" + ], + [ + "what color is water", + "oos" + ], + [ + "is anything on my grocery list on sale today", + "oos" + ], + [ + "how long does it take for grass seed to grow on my lawn", + "oos" + ], + [ + "please activate a wireless hotspot so i can use the internet", + "oos" + ], + [ + "look up a good broker for mutual funds", + "oos" + ], + [ + "what are the best personal finance practices", + "oos" + ], + [ + "will amazon ship an order even if there was a pricing mistake", + "oos" + ], + [ + "where did mandarin originate from", + "oos" + ], + [ + "what are some of the most visited countries for people looking to travel abroad", + "oos" + ], + [ + "tell me which wifi network you are connected to right now", + "oos" + ], + [ + "what is my current signal strength", + "oos" + ], + [ + "if i'm locked in a bank vault what's the best way to get out", + "oos" + ], + [ + "how do i upgrade my operating system", + "oos" + ], + [ + "how much ram does my computer have", + "oos" + ], + [ + "is it ok to feed dogs people food", + "oos" + ], + [ + "how do you fix a leaking sink", + "oos" + ], + [ + "how do you unclog a toilet", + "oos" + ], + [ + "can you tell me local crime in my area", + "oos" + ], + [ + "what's the power consumption of my fridge", + "oos" + ], + [ + "what is the warranty on my microwave", + "oos" + ], + [ + "how do i use my microwaves defrost", + "oos" + ], + [ + "how do you get red wine out of the carpet", + "oos" + ], + [ + "how do i get stains out of the carpet", + "oos" + ], + [ + "what is the highest quality carpet available", + "oos" + ], + [ + "has everyone come home from school", + "oos" + ], + [ + "what time did my daughter get home from her date", + "oos" + ], + [ + "is my computer free from viruses", + "oos" + ], + [ + "are you allowed to call someone a dirty name as part of free speech", + "oos" + ], + [ + "can you really get arrested for yelling fire in a crowded theater", + "oos" + ], + [ + "what amendment guarantees the freedom of speech to americans", + "oos" + ], + [ + "do employers have to honor freedom of speech", + "oos" + ], + [ + "what's the average score on a round of golf", + "oos" + ], + [ + "where is the closest driving range", + "oos" + ], + [ + "when does tiger woods play next", + "oos" + ], + [ + "how can i improve my golf swing", + "oos" + ], + [ + "are your step-parent's parents considered your grandparents", + "oos" + ], + [ + "what's a good gift to get for your grandparents", + "oos" + ], + [ + "what year did my grandparents get married", + "oos" + ], + [ + "fun gift ideas to give to grandparents", + "oos" + ], + [ + "which came first; greek mythology or roman mythology", + "oos" + ], + [ + "how many greek mythology characters are there", + "oos" + ], + [ + "who created the world in greek mythology", + "oos" + ], + [ + "what was hercules the god of", + "oos" + ], + [ + "how many harry potter books are there", + "oos" + ], + [ + "what is harry's real name", + "oos" + ], + [ + "who played ronald weasly", + "oos" + ], + [ + "how do you repel a bear when you're out on a hike", + "oos" + ], + [ + "where's the best place to hike in the rockies", + "oos" + ], + [ + "what should i wear to hike", + "oos" + ], + [ + "what is the main cause of becoming homeless", + "oos" + ], + [ + "how many people are jobless in america", + "oos" + ], + [ + "how many homeless people are there", + "oos" + ], + [ + "where are most homeless people", + "oos" + ], + [ + "are indians nowadays reminiscent of a decade ago", + "oos" + ], + [ + "what were indians like 100 years ago", + "oos" + ], + [ + "how old is jennifer aniston", + "oos" + ], + [ + "i need tips on how to overcome insomnia", + "oos" + ], + [ + "how many people have insomnia", + "oos" + ], + [ + "what causes dyslexia", + "oos" + ], + [ + "is insomnia curable", + "oos" + ], + [ + "what are sigmund freud's most famous books", + "oos" + ], + [ + "what year was jane austen born", + "oos" + ], + [ + "where is te lawrence", + "oos" + ], + [ + "who is jane goodall", + "oos" + ], + [ + "how long does it take to get your yellow belt in karate", + "oos" + ], + [ + "what's the most practiced form of mma in the world", + "oos" + ], + [ + "what is the highest belt in karate", + "oos" + ], + [ + "where does jiu jitsu originate", + "oos" + ], + [ + "what's the proper subject verb order in japanese", + "oos" + ], + [ + "how do i learn more about linguistics", + "oos" + ], + [ + "what kind of paint do makeup artists use", + "oos" + ], + [ + "the bus moves with tyre", + "oos" + ], + [ + "how the bus moves", + "oos" + ], + [ + "what are some good resources to learn about mental illness", + "oos" + ], + [ + "are people with a mental illness eligible for disability", + "oos" + ], + [ + "how many people suffer from mental illness", + "oos" + ], + [ + "how can i get help for my mental health", + "oos" + ], + [ + "what's trending now", + "oos" + ], + [ + "what's the first romantic movie ever made", + "oos" + ], + [ + "when was the term \"zombie\" first used", + "oos" + ], + [ + "what kind of traits do vampires have", + "oos" + ], + [ + "what do mummies eat", + "oos" + ], + [ + "send information on flood clean up to my phone", + "oos" + ], + [ + "what's the cost of buying a sump pump", + "oos" + ], + [ + "recommend a flood clean up service", + "oos" + ], + [ + "what is the safest model of airplane to fly in", + "oos" + ], + [ + "what year was the first airplane built in", + "oos" + ], + [ + "what's the best reviewed local roof repair place", + "oos" + ], + [ + "what's the best type of plan to upgrade to", + "oos" + ], + [ + "give me a suggestion for roofers", + "oos" + ], + [ + "where can i buy new shingles", + "oos" + ], + [ + "what's the safest pet to be around toddlers", + "oos" + ], + [ + "why is my dog vomiting after eating", + "oos" + ], + [ + "tiger", + "oos" + ], + [ + "what's the average rent of apartments in my city", + "oos" + ], + [ + "are there any apartments for rent nearby", + "oos" + ], + [ + "what are apartment prices now", + "oos" + ], + [ + "what's the highest building in the world", + "oos" + ], + [ + "where is the closest architecture college", + "oos" + ], + [ + "where can i submit my architecture plans", + "oos" + ], + [ + "who is the best architecture", + "oos" + ], + [ + "please give me a listing of all the bottled water brands in the area", + "oos" + ], + [ + "what are the lowest prices of bottled water at costco", + "oos" + ], + [ + "how do they filter pollutants out of bottled water", + "oos" + ], + [ + "what's the cost of bottled water", + "oos" + ], + [ + "what's the cost to have a business card printed", + "oos" + ], + [ + "when can i get a business card printed locally", + "oos" + ], + [ + "what to use to design my business cards", + "oos" + ], + [ + "download all the photos off my phone into the cloud", + "oos" + ], + [ + "tell me about that kind of cameras", + "oos" + ], + [ + "how much is the new nikon camera", + "oos" + ], + [ + "what kind of camera should i buy", + "oos" + ], + [ + "how much candy have i consumed this week", + "oos" + ], + [ + "how many flavors of mnm's are there", + "oos" + ], + [ + "who makes milky way bars", + "oos" + ], + [ + "how safe is it to consume the substance h2o", + "oos" + ], + [ + "how many elements are on the periodic table", + "oos" + ], + [ + "what's the chemical composition of a fart", + "oos" + ], + [ + "what is phosphorus on the periodic table", + "oos" + ], + [ + "look up some christmas songs for me", + "oos" + ], + [ + "is espn covering the golden state warriors game", + "oos" + ], + [ + "how many calories does doing 20 situps burn", + "oos" + ], + [ + "what is a normal resting heart rate", + "oos" + ], + [ + "should i run every day", + "oos" + ], + [ + "how many months do i left in my hbo subscription", + "oos" + ], + [ + "when does game of thrones return on hbo", + "oos" + ], + [ + "cancel my subscription to scientific american", + "oos" + ], + [ + "i'd like to renew my subscription to playboy", + "oos" + ], + [ + "what are popular lifestyle magazines", + "oos" + ], + [ + "what are popular sports magazines", + "oos" + ], + [ + "how can i use make up to cover a cut on my cheek", + "oos" + ], + [ + "what's the best make-up to cover a black eye", + "oos" + ], + [ + "send me videos of how to do a smoky eye", + "oos" + ], + [ + "whats the best rated lipstick", + "oos" + ], + [ + "when will the government file another antitrust suit against microsoft", + "oos" + ], + [ + "when will microsoft drop support for windows 7", + "oos" + ], + [ + "how do i make a sentence have stylized strike out in microsoft word", + "oos" + ], + [ + "how can i control where microsoft word inserts a page break", + "oos" + ], + [ + "what are the current prices for mushrooms", + "oos" + ], + [ + "what bands are touring in my city this week", + "oos" + ], + [ + "i need for you to look up some of the major gods in mythology", + "oos" + ], + [ + "what was the original name of jesus in egyptian myth", + "oos" + ], + [ + "was the god osiris a titan or an old god", + "oos" + ], + [ + "tell me who aphrodite is", + "oos" + ], + [ + "what activities can i to do outside today", + "oos" + ], + [ + "when will the daffodils bloom this year", + "oos" + ], + [ + "what zelda games are available on the switch", + "oos" + ], + [ + "i want to buy some nintendo switch game", + "oos" + ], + [ + "how much does a nintendo switch cost", + "oos" + ], + [ + "show me a cool nintendo switch game", + "oos" + ], + [ + "can you check how many miles i walked today when i was out get the info from my phone", + "oos" + ], + [ + "can you check how many steps i have walked in the last week from my phone app", + "oos" + ], + [ + "what should i do if it hurts when i pee", + "oos" + ], + [ + "what are the symptoms of cancer", + "oos" + ], + [ + "how many pokemon have i caught in my pokemon go app", + "oos" + ], + [ + "tell me what pokemon is", + "oos" + ], + [ + "has the school my kids go to been in the news for any reason", + "oos" + ], + [ + "are there any school closures today", + "oos" + ], + [ + "how long is the school year", + "oos" + ], + [ + "why did a bunch of christians go off murdering muslims in the middle ages", + "oos" + ], + [ + "what was the point of the crusades", + "oos" + ], + [ + "what other countries speak the english language", + "oos" + ], + [ + "why doesn't english have consistent forms", + "oos" + ], + [ + "do they speak english in australia", + "oos" + ], + [ + "who teaches english near me", + "oos" + ], + [ + "can you see what the budget for the united states military was in 2018", + "oos" + ], + [ + "can you look at what the oldest age is someone can enlist in the army", + "oos" + ], + [ + "how many years do you need to be in the army to get a college tuition", + "oos" + ], + [ + "where are most the servicemen right now", + "oos" + ], + [ + "what movies are playing at my local cinemax", + "oos" + ], + [ + "what time is a star is born showing", + "oos" + ], + [ + "what movies are playing", + "oos" + ], + [ + "can you get me the scores from the games that were played last night", + "oos" + ], + [ + "has there been any times when lebron james was arrested", + "oos" + ], + [ + "what are the new player rankings for the nhl", + "oos" + ], + [ + "who won in the gsw vs suns game last night", + "oos" + ], + [ + "give me the news on the newspaper today", + "oos" + ], + [ + "tell me a list of my local papers", + "oos" + ], + [ + "what's the newspaper today", + "oos" + ], + [ + "would you let me know who won the gold metal in gymnastics at the olympics", + "oos" + ], + [ + "at the olympics, what country won the gold medal in basketball", + "oos" + ], + [ + "where will the next olympics be hosted", + "oos" + ], + [ + "when are the winter olympic games", + "oos" + ], + [ + "what films are in the running for best song at this year's oscars", + "oos" + ], + [ + "who are the nominees for best picture this year", + "oos" + ], + [ + "give me information on the oscars", + "oos" + ], + [ + "tell me about the oscars", + "oos" + ], + [ + "why did we elect this woman who made amazon leave and take its jobs with it", + "oos" + ], + [ + "how many people live in vermillion", + "oos" + ], + [ + "what's a good way to organize my tools in my garage", + "oos" + ], + [ + "what's the cost of a good pegboard", + "oos" + ], + [ + "is the stop sign around the corner still knocked over", + "oos" + ], + [ + "is there a fork in the road sign at main & 1st avenue", + "oos" + ], + [ + "are there cameras hidden in stop lights", + "oos" + ], + [ + "what does a flashing yellow light mean", + "oos" + ], + [ + "what is the deadline to register at university of georgia", + "oos" + ], + [ + "what universities are nearby to me and highly rated", + "oos" + ], + [ + "what are the top rated universities within my state", + "oos" + ], + [ + "will the anti-vaxxers die off if no one gives them vaccines", + "oos" + ], + [ + "how safe is the herpes vaccine they give women", + "oos" + ], + [ + "where can i get the flu shot", + "oos" + ], + [ + "when do i have to get the mmr", + "oos" + ], + [ + "how much are the clorox detergents", + "oos" + ], + [ + "when will nightwish be touring through my city", + "oos" + ], + [ + "does iron maiden have any new releases", + "oos" + ], + [ + "tell me something about linkin park", + "oos" + ], + [ + "i need you to check the resistance of a coil wrapped 6 times with an id of 25mm", + "oos" + ], + [ + "can you tell me whether the knicks will play the lakers this week", + "oos" + ], + [ + "what do you do if your 4 year old just ate playdoh", + "oos" + ], + [ + "when do the kids get out of school today", + "oos" + ], + [ + "please check up on my son's homework", + "oos" + ], + [ + "give me a list of the top three landscaping companies nearby", + "oos" + ], + [ + "when should you mow your grass after it's rained", + "oos" + ], + [ + "how much sugar was in my urine this morning", + "oos" + ], + [ + "what's a good blouse to wear with pink shoes", + "oos" + ], + [ + "what are the best jeans in my size", + "oos" + ], + [ + "how much does it cost to spay a puppy", + "oos" + ], + [ + "what's the best style shoe to wear to the prom", + "oos" + ], + [ + "can you tell me about that tornado that just tore up alabama", + "oos" + ], + [ + "tell me what the hot topics are that are trending on google", + "oos" + ], + [ + "what happened with the summit between trump and jong", + "oos" + ], + [ + "check and see what the local news in broadcasting", + "oos" + ], + [ + "please uninstall this intrusive social media app", + "oos" + ], + [ + "upload the pictures to the correct album", + "oos" + ], + [ + "i have a super runny nose and want to find a doctor", + "oos" + ], + [ + "which medicine to relieve my cough", + "oos" + ], + [ + "how do i get rid of blocked nose at home", + "oos" + ], + [ + "how do i get rid of sore throat at home", + "oos" + ], + [ + "how can i make my living room appear to be bigger than it is", + "oos" + ], + [ + "i'd like to find some curtains that look good in this room", + "oos" + ], + [ + "how to paint walls", + "oos" + ], + [ + "how to fix walls", + "oos" + ], + [ + "can you tell me the purpose of a safe deposit box", + "oos" + ], + [ + "can you store a gun in a safe deposit box", + "oos" + ], + [ + "how do you get a safe deposit box", + "oos" + ], + [ + "look up how to apply cream to smooth itchiness", + "oos" + ], + [ + "how do i deal with angry, painful red bumps", + "oos" + ], + [ + "where should i go if i hammered a nail through my foot", + "oos" + ], + [ + "how long does it take to call an ambulance", + "oos" + ], + [ + "how to get the right medicine", + "oos" + ], + [ + "how to take care of the sick", + "oos" + ], + [ + "do vegans really want to blame cows for climate change", + "oos" + ], + [ + "give me a recommendation for a local landscaper", + "oos" + ], + [ + "i need to hire a grass treatment specialist", + "oos" + ], + [ + "when is the best time of year for pruning", + "oos" + ], + [ + "find someone local who mows lawns", + "oos" + ], + [ + "create a speech on historical events surrounding albert einstein", + "oos" + ], + [ + "create a pamphlet on albert einsteins childhood", + "oos" + ], + [ + "what is albert einstein famous for", + "oos" + ], + [ + "when was albert einstein born", + "oos" + ], + [ + "when will cameron release the sequel to avatar", + "oos" + ], + [ + "can you please start the avatar movie for me", + "oos" + ], + [ + "is the movie avatar culturally insensitive", + "oos" + ], + [ + "could you create a new avatar for me", + "oos" + ], + [ + "does bill gates still have any material participation in the running of microsoft", + "oos" + ], + [ + "tell me more about bill gates", + "oos" + ], + [ + "give me the weather forecast for today", + "oos" + ], + [ + "what is bitcoin trading for currently", + "oos" + ], + [ + "where can i have a black and white photo blown up to poster size", + "oos" + ], + [ + "adjust the contrast of the black and white photos", + "oos" + ], + [ + "can you colorize a black and white photo", + "oos" + ], + [ + "add color to the black and white photos", + "oos" + ], + [ + "how many people were killed in the boston marathon by bombers", + "oos" + ], + [ + "compile a list of historical events from the boston marathon", + "oos" + ], + [ + "time my next run at the boston marathon", + "oos" + ], + [ + "when will the next boston marathon be", + "oos" + ], + [ + "look up which animal is represented in this year's chinese new year", + "oos" + ], + [ + "what is the animal for this chinese new year", + "oos" + ], + [ + "would it be legal to have battles to the death in a homemade colosseum", + "oos" + ], + [ + "do the romans still use the colosseum for anything today", + "oos" + ], + [ + "where is the colosseum", + "oos" + ], + [ + "can you really time your compressions to queen's \"another one bites the dust\"", + "oos" + ], + [ + "do i have to put my mouth on theirs when doing cpr", + "oos" + ], + [ + "what is the breath to compression ratio for cpr", + "oos" + ], + [ + "tell me how to perform cpr", + "oos" + ], + [ + "create a for-while loop that continues 10 times", + "oos" + ], + [ + "where are classes taught near me for c++", + "oos" + ], + [ + "declare a variable named \"golf\"", + "oos" + ], + [ + "how do i write c++", + "oos" + ], + [ + "is the depiction of gold mining in the movie the ballad of buster scruggs realistic", + "oos" + ], + [ + "do you own the mineral rights to gold nuggets you find in your back yard", + "oos" + ], + [ + "where is the best place to mine for gold", + "oos" + ], + [ + "when was the gold rush", + "oos" + ], + [ + "make a list of facts about green book", + "oos" + ], + [ + "find out when green book was created", + "oos" + ], + [ + "who wrote green book", + "oos" + ], + [ + "what's the main export by the peoples of greenland", + "oos" + ], + [ + "how many people still live on greenland", + "oos" + ], + [ + "scan my photos and tell me which hair style is most suiting for my face", + "oos" + ], + [ + "create several photos of me with different hair styles", + "oos" + ], + [ + "latest hair styles for long natural hair", + "oos" + ], + [ + "show video of hair styling tips", + "oos" + ], + [ + "did a man really die trying to be loved by a horse", + "oos" + ], + [ + "how many acres do you need to buy a horse", + "oos" + ], + [ + "get me a picture of a horse", + "oos" + ], + [ + "does eating poop really help your gut fauna", + "oos" + ], + [ + "is there a vaccine for ebola", + "oos" + ], + [ + "find out how many latin scholars there are at the university of chicago", + "oos" + ], + [ + "make a list of side hustles i could start today to make a little extra cash", + "oos" + ], + [ + "make a list of stocks that would be good to invest in to start making money", + "oos" + ], + [ + "how can i add my signature to the proposed bill legalizing prostitution", + "oos" + ], + [ + "what's the roi doing arbitrage with ebay", + "oos" + ], + [ + "do women still bare their chests for beads at mardi gras", + "oos" + ], + [ + "when's the next mardi gras going to be", + "oos" + ], + [ + "what is the best way to kill microbes", + "oos" + ], + [ + "start a speech on microbes for me", + "oos" + ], + [ + "inform me of what microbes are", + "oos" + ], + [ + "what is the top 10 best modems", + "oos" + ], + [ + "what is the time signature for the castlevania song bloody tears", + "oos" + ], + [ + "can you tell me what key frank zappa's keep it greasy is in", + "oos" + ], + [ + "please go to wikipedia and search for articles related to nsa", + "oos" + ], + [ + "can the nsa crack the encryption on my iphone", + "oos" + ], + [ + "does the nsa listen to me", + "oos" + ], + [ + "could you pull up the nsa website", + "oos" + ], + [ + "can you see if the octopus eggs have hatched yet", + "oos" + ], + [ + "what do you do if your cat eats an octopus", + "oos" + ], + [ + "find out which museum houses the most post modern art in new york state", + "oos" + ], + [ + "look up the top 3 selling post modern artists in the united states", + "oos" + ], + [ + "create a portrait for me using post modern art", + "oos" + ], + [ + "find me examples of post modern art", + "oos" + ], + [ + "find the names of all the rain forests located in south america", + "oos" + ], + [ + "does cutting down the rain forest really add to global warming", + "oos" + ], + [ + "what's the current demand for wood from rain forests", + "oos" + ], + [ + "what's the current prevailing interest rate for mortgages in my area", + "oos" + ], + [ + "how's the real estate market doing this week", + "oos" + ], + [ + "please list my real estate for sale", + "oos" + ], + [ + "make an ad to sell my real estate", + "oos" + ], + [ + "what's the status of robotic servants from japan", + "oos" + ], + [ + "finish the final touches on my newest robotic creation", + "oos" + ], + [ + "can a robot really travel back in time", + "oos" + ], + [ + "program my new robot to bring me snacks", + "oos" + ], + [ + "how long would it take you to die of thirst in the sahara desert", + "oos" + ], + [ + "can a samurai sword deflect a bullet", + "oos" + ], + [ + "how much for a samurai sword", + "oos" + ], + [ + "make a list of what materials have been used for spacesuits", + "oos" + ], + [ + "what size space suit should you get based on your girth", + "oos" + ], + [ + "see if you can purchase a spacesuit online", + "oos" + ], + [ + "compile a folder of paintings of sparta", + "oos" + ], + [ + "display history of sparta", + "oos" + ], + [ + "compile a list of articles pertaining to venture capital funding for me", + "oos" + ], + [ + "start a portfolio on venture capital funding for me to look over", + "oos" + ], + [ + "how do i get venture capital for my app", + "oos" + ], + [ + "what's the latest vc funded company", + "oos" + ], + [ + "i'd like to hire a wedding planner and need help finding one", + "oos" + ], + [ + "how to plan for weddings", + "oos" + ], + [ + "find out how many whales are currently in monterey bay", + "oos" + ], + [ + "make a chart of the different types of whales", + "oos" + ], + [ + "what did my best friend do in the kitchen while we were gone", + "oos" + ], + [ + "what's my boss' home address", + "oos" + ], + [ + "what's it like to have parents who actually love you", + "oos" + ], + [ + "is there any news if my parents survived the crash", + "oos" + ], + [ + "tell me who gives the best motivational speeches on the web", + "oos" + ], + [ + "find an article on celebrities who made it out of poverty", + "oos" + ], + [ + "send me a motivational quote everyday for the next week", + "oos" + ], + [ + "who is the hardest working man in hollywood", + "oos" + ], + [ + "tell me where i can get more information on getting a job at the post office", + "oos" + ], + [ + "pull up the classifieds and read the career section to me", + "oos" + ], + [ + "help me find a new position as a programmer", + "oos" + ], + [ + "what's the best career search website", + "oos" + ], + [ + "write the next chapter of my biography and let me know when you have finished it", + "oos" + ], + [ + "give me a list of the biographies written by nyu professors after 2001", + "oos" + ], + [ + "i would like for you to start a biography on me", + "oos" + ], + [ + "show me all biographies on teddy kennedy", + "oos" + ], + [ + "find out what supplies i am missing and will need on my upcoming camping trip", + "oos" + ], + [ + "what are the camping restrictions at bear island", + "oos" + ], + [ + "find articles that can help me advance my position in my work field", + "oos" + ], + [ + "show me what one should do to get ahead in a tech corporation", + "oos" + ], + [ + "get me a copy of a book on negotiation in the workplace", + "oos" + ], + [ + "look up ways for me to advance my job placement", + "oos" + ], + [ + "see if there is a recipe to make a casserole without any dairy", + "oos" + ], + [ + "tell me in how many different colors i can get dinner plates from pier one imports", + "oos" + ], + [ + "tell me amazon's choice for a set of 4 dinner plates", + "oos" + ], + [ + "find out where i can by melamine dinner plates", + "oos" + ], + [ + "find out what the maximum memory size is that i can buy in a dvd", + "oos" + ], + [ + "tell me who makes the best dvd's for movie storage", + "oos" + ], + [ + "how many dvds do i currently have on file", + "oos" + ], + [ + "give me a listing of all my dvd's", + "oos" + ], + [ + "look up the conversion rate for the euro to dollar exchange", + "oos" + ], + [ + "how do i put a lens that's fallen out back in my glasses", + "oos" + ], + [ + "i need you to order a new pair of eyeglasses for me", + "oos" + ], + [ + "tell me what my current eyeglasses prescription is", + "oos" + ], + [ + "show me examples of cute eyeglass frames", + "oos" + ], + [ + "make a list of all sites in the us where spirits have been seen at night", + "oos" + ], + [ + "tell me how to get rid of a spirit that's haunting me", + "oos" + ], + [ + "show me how to contact a paranormal spirit", + "oos" + ], + [ + "tell me a scary story", + "oos" + ], + [ + "show me the goals of my local police department in terms of reducing crime", + "oos" + ], + [ + "make a list of goals i need to meet in order to write a book", + "oos" + ], + [ + "what is the distance between the goal posts in football", + "oos" + ], + [ + "remind me what my weight loss goals are", + "oos" + ], + [ + "give me a list of tax attorneys that practice in my city", + "oos" + ], + [ + "tell me how i can file a pleading in circuit court", + "oos" + ], + [ + "give me the number of a traffic attorney near here", + "oos" + ], + [ + "what are the top rated local lawyers", + "oos" + ], + [ + "find out how many miles the mississippi waterway runs", + "oos" + ], + [ + "tell me what the longest tributary is in venezuela", + "oos" + ], + [ + "please book another boat for this weekends trip", + "oos" + ], + [ + "get me a list of universities that provide full scholarships in arizona", + "oos" + ], + [ + "tell me where to go to get my son enrolled in public kindergarten", + "oos" + ], + [ + "do a job search on monstercom for jobs in the tech field in arlington, va", + "oos" + ], + [ + "i need to find work, help me connect to a local business through linkedin", + "oos" + ], + [ + "detail a list of possible job openings in the miami public school system", + "oos" + ], + [ + "look for a position similar to mine that is open around my area", + "oos" + ], + [ + "find out where one can get involved in discussing local election issues", + "oos" + ], + [ + "give me a list of the top 5 issues people have in this country", + "oos" + ], + [ + "what is the government department that regulates emissions", + "oos" + ], + [ + "what's the highest rated social services non-profit", + "oos" + ], + [ + "explain to me the process of evaporation", + "oos" + ], + [ + "how do i write an iep for a high schooler", + "oos" + ], + [ + "tell me how to refinish a wooden desk", + "oos" + ], + [ + "tell me how to make a lesson plan", + "oos" + ], + [ + "tell me where i can get the cheapest tennis balls on the internet", + "oos" + ], + [ + "play the current tennis match on the tv in the living room", + "oos" + ], + [ + "give me a list of the top 10 tennis players in the world", + "oos" + ], + [ + "make a chart of all the tennis scores from this year", + "oos" + ], + [ + "find the best prices for toothpaste at any store within a 5 mile radius of my location", + "oos" + ], + [ + "tell me what the best shampoo is for someone with dry scalp", + "oos" + ], + [ + "what's the best price on a gray xl ll bean men's parka", + "oos" + ], + [ + "tell me who has the cheapest watch bands on ebay", + "oos" + ], + [ + "how do i set the time on my tag heuer", + "oos" + ], + [ + "tell me the steps as to how to begin a career as a journalist", + "oos" + ], + [ + "give me prices on a copy of the mla grammar handbook", + "oos" + ], + [ + "put words on the paper about what you want", + "oos" + ], + [ + "put into words what you want", + "oos" + ], + [ + "what kind of foods are border collies allergic to", + "oos" + ], + [ + "find out how i can best clip my dog's nails", + "oos" + ], + [ + "what is the lifespan of a border collie", + "oos" + ], + [ + "look up daily dog kennels in my area", + "oos" + ], + [ + "give me a list of grocery stores that sell japanese sweet potatoes", + "oos" + ], + [ + "tell me the price of bananas at whole foods this week", + "oos" + ], + [ + "call the grocery store and get their operational hours", + "oos" + ], + [ + "call an uber to take me to the closest grocery store", + "oos" + ], + [ + "show me how many community centers are located within 5 miles of my location", + "oos" + ], + [ + "which houses do not have automatic spot lights in front of their garage", + "oos" + ], + [ + "are all the street lamps working on my street", + "oos" + ], + [ + "make a list of all community gardens near me", + "oos" + ], + [ + "tell me where to send my resume in order to get a job at delta airlines", + "oos" + ], + [ + "review my resume for spelling errors", + "oos" + ], + [ + "please print out copies of my resume", + "oos" + ], + [ + "please spell check my resume", + "oos" + ], + [ + "where can i get 100% merino wool t-shirts on the internet", + "oos" + ], + [ + "show me all listings on amazon for leather belts for men", + "oos" + ], + [ + "tell me how many blue ties i own", + "oos" + ], + [ + "who is the start of the movie almost famous", + "oos" + ], + [ + "search up someone who plays in a movie", + "oos" + ], + [ + "search up the cast in the walking dead", + "oos" + ], + [ + "tell me about the amusement park", + "oos" + ], + [ + "what's the amusement park like", + "oos" + ], + [ + "take a ride on the ferris wheel", + "oos" + ], + [ + "go on the ferris wheel", + "oos" + ], + [ + "what is the cost of four double a batteries", + "oos" + ], + [ + "instruct a list of all the brands of cereal manufactured by kelloggs", + "oos" + ], + [ + "compare prices of malt-o-meal to kelloggs", + "oos" + ], + [ + "what kinds of cereal are gluten free", + "oos" + ], + [ + "what kinds of cereal are low sugar", + "oos" + ], + [ + "what is the last time the living room was vacuumed", + "oos" + ], + [ + "search all movies created by disney in the 1980's", + "oos" + ], + [ + "does disney world close when it storms", + "oos" + ], + [ + "mickey mouse is a huge part of disney", + "oos" + ], + [ + "what are the hours for disney world", + "oos" + ], + [ + "what time did i get the last text message i received", + "oos" + ], + [ + "please read me the last text message i received", + "oos" + ], + [ + "read my friend's text message", + "oos" + ], + [ + "watch the stories on instagram", + "oos" + ], + [ + "update my status on instagram", + "oos" + ], + [ + "can you check on what it would cost me to upgrade my iphone with t-mobile", + "oos" + ], + [ + "please alert me when my iphone battery falls below 30%", + "oos" + ], + [ + "can you look at when the next iphone is due out", + "oos" + ], + [ + "what type of industries do innovation managers work in", + "oos" + ], + [ + "what are the requirements of a lab technician", + "oos" + ], + [ + "generate a list of 20 songs that include the word love in the title", + "oos" + ], + [ + "create a 500 word letter expressing love", + "oos" + ], + [ + "find a couple's therapist who can help me and my wife", + "oos" + ], + [ + "what does the average cost of an engagement ring", + "oos" + ], + [ + "what is popular in fashion right now", + "oos" + ], + [ + "does denim go with anything", + "oos" + ], + [ + "accept incoming phone call", + "oos" + ], + [ + "deny incoming phone call", + "oos" + ], + [ + "what do i wear on my feet when it rains", + "oos" + ], + [ + "what do i put on my feet", + "oos" + ], + [ + "what are the words to the chorus for this song", + "oos" + ], + [ + "display the song lyrics for me", + "oos" + ], + [ + "google \"odell beckham free agency\"", + "oos" + ], + [ + "clear my search history", + "oos" + ], + [ + "compare the new life growth in trees when the seasons change", + "oos" + ], + [ + "plant all your flowers just after easter in early april", + "oos" + ], + [ + "find a good toy to give a 5 year old boy that costs less than $40", + "oos" + ], + [ + "find out where i can buy a barbie doll for my niece", + "oos" + ], + [ + "look on amazon for the price of a nitendo switch", + "oos" + ], + [ + "what brand was the last advertisement for", + "oos" + ], + [ + "how do i skip all of the advertisements", + "oos" + ], + [ + "make a list of decor i would need to have a titanic themed birthday party", + "oos" + ], + [ + "aquire the soundtracks from the movie if i stay and add them to my ipod", + "oos" + ], + [ + "i watched \"were the millers\" on netflix last night", + "oos" + ], + [ + "can you find \"were the millers\" on hulu", + "oos" + ], + [ + "how many people have held the role of county attorney bearing the family name \"dixon\"", + "oos" + ], + [ + "tell me about the candidates running for local office in my area", + "oos" + ], + [ + "find out who is the representative of my district", + "oos" + ], + [ + "generate a list of the past 10 judge executives", + "oos" + ], + [ + "look up the email address of the local police", + "oos" + ], + [ + "how many hits have i done today", + "oos" + ], + [ + "change out the older photos with the newer ones", + "oos" + ], + [ + "organize photos by year they were taken", + "oos" + ], + [ + "can you group my photos by location", + "oos" + ], + [ + "organize my photos by date please", + "oos" + ], + [ + "tell me what my local park's policy is on letting dogs off of leashes", + "oos" + ], + [ + "look up the operating hours of my local park on weekends", + "oos" + ], + [ + "how many parks are within 20 miles of me", + "oos" + ], + [ + "check to see if i still have allergy medication", + "oos" + ], + [ + "sign me up for the writing class you told me about 2 days ago", + "oos" + ], + [ + "find articles on essay writing for beginners", + "oos" + ], + [ + "how long should an essay be", + "oos" + ], + [ + "how do you start an essay", + "oos" + ], + [ + "what should you do if your laundry machine is making a high pitched whine", + "oos" + ], + [ + "find out who the best appliance repairman is for the downtown area", + "oos" + ], + [ + "look up local repair shops that work on vacuum cleaners", + "oos" + ], + [ + "can i get a sear's appliance repairman", + "oos" + ], + [ + "find directions to the sunshine car wash from my house", + "oos" + ], + [ + "can you book me an appointment at a car wash", + "oos" + ], + [ + "what brush can i use to wash my car that won't scratch it", + "oos" + ], + [ + "please clean the car windows", + "oos" + ], + [ + "vacuum out the car", + "oos" + ], + [ + "schedule an appointment with the credit counselor for tuesday", + "oos" + ], + [ + "find a credit mentoring service number for me please", + "oos" + ], + [ + "how much does it cost to get two jackets dry cleaned", + "oos" + ], + [ + "look up articles on the green dry cleaning industry", + "oos" + ], + [ + "find a cleaner that specializes in suede", + "oos" + ], + [ + "when should you use a dry cleaner", + "oos" + ], + [ + "create emergency phone numbers list", + "oos" + ], + [ + "do sets of 25 set-ups each morning til you have completed your goal", + "oos" + ], + [ + "keep a note of how many miles you walk a day", + "oos" + ], + [ + "how much weight should i lift to get buff", + "oos" + ], + [ + "what's a good stretch to do to limber up", + "oos" + ], + [ + "look up the most requested famous person for quotes", + "oos" + ], + [ + "what is the most famous quote on the internet", + "oos" + ], + [ + "make a list of the top 100 famous quotes", + "oos" + ], + [ + "show me the top 10 quotes by mark twain", + "oos" + ], + [ + "what do you do if you can't stop vomiting", + "oos" + ], + [ + "what should i take for a cold", + "oos" + ], + [ + "i have too many credit cards, is there any way you can help me organize them", + "oos" + ], + [ + "find a credit counseling service for me on the web", + "oos" + ], + [ + "explain how to reduce my debt burden", + "oos" + ], + [ + "look up the current auto loan rate at chase bank", + "oos" + ], + [ + "look up student loan offers on google", + "oos" + ], + [ + "check current prime mortgage rate", + "oos" + ], + [ + "what should you do if you can't be bothered to get out of bed", + "oos" + ], + [ + "send me a quote from a motivational speaker twice a day", + "oos" + ], + [ + "find me a book on motivational speaking from amazon", + "oos" + ], + [ + "check to see if i need a pass to use the parking garages downtown", + "oos" + ], + [ + "can you check to see which parking garages are open downtown", + "oos" + ], + [ + "how much does it cost to use the parking garage downtown", + "oos" + ], + [ + "what's a good way of backing out of a parking spot", + "oos" + ], + [ + "search the web for monthly parking near my house", + "oos" + ], + [ + "find out where parking is close to the stadium", + "oos" + ], + [ + "how do i get perfect alignment with the curb", + "oos" + ], + [ + "describe to me how i can learn to make small talk", + "oos" + ], + [ + "explain how small talk helps bind groups together", + "oos" + ], + [ + "what do you do all day while i'm at work", + "oos" + ], + [ + "so, hang out around this house often", + "oos" + ], + [ + "tell me the best way to freshen the smell in my car", + "oos" + ], + [ + "where's the closest car wash my car smells", + "oos" + ], + [ + "how much is auto febreeze on amazon", + "oos" + ], + [ + "find out how to deodorize a car", + "oos" + ], + [ + "see if you can find a good vegetable wash for me", + "oos" + ], + [ + "look up website on container gardening", + "oos" + ], + [ + "are we allowed to wash our cars during the drought", + "oos" + ], + [ + "request a refund on the car wax i bought yesterday", + "oos" + ], + [ + "i'd like to hire someone to wash my car", + "oos" + ], + [ + "find out what gentlemen are wearing to weddings these days", + "oos" + ], + [ + "find me articles on appropriate wedding attire", + "oos" + ], + [ + "zip the back of the brides maid dress", + "oos" + ], + [ + "rent the tuxedo the day before", + "oos" + ], + [ + "find available letter writing classes at the local community college", + "oos" + ], + [ + "find me a graphic tutorial on writing longhand", + "oos" + ], + [ + "order me a book of stamps and envelopes", + "oos" + ], + [ + "start listening to me dictate a letter", + "oos" + ], + [ + "email my boss, tell him i wont be in today", + "oos" + ], + [ + "are the schools closed", + "oos" + ], + [ + "let me know what time the patriots game starts", + "oos" + ], + [ + "tell me how long until the nascar race begins", + "oos" + ], + [ + "are there any sales on liquor", + "oos" + ], + [ + "what shows are on tonight", + "oos" + ], + [ + "are there any new job postings in my area in the last hour for jobs on craigslist", + "oos" + ], + [ + "see if there are any employment agencies hiring managers right now", + "oos" + ], + [ + "can you tell me what the best places are to look for a job online", + "oos" + ], + [ + "sign me up for the slack employment forum", + "oos" + ], + [ + "please replay the last five minutes", + "oos" + ], + [ + "can you enable subtitles", + "oos" + ], + [ + "consult the gq website to find what men wear to weddings", + "oos" + ], + [ + "order me a blue pin stripe suit from saville row", + "oos" + ], + [ + "what's in fashion this month", + "oos" + ], + [ + "is it too late to wear white", + "oos" + ], + [ + "how many calories does jumping up and down burn", + "oos" + ], + [ + "how many push-ups do i need to do to get ripped", + "oos" + ], + [ + "fill up my water bottle for the gym", + "oos" + ], + [ + "pick out an excerise outfit for me", + "oos" + ], + [ + "find out how long a cold should last before i call a doctor", + "oos" + ], + [ + "what should i take for nausea", + "oos" + ], + [ + "how do you relieve a hangover", + "oos" + ], + [ + "what is a good home remedy for a rash", + "oos" + ], + [ + "i have a rash, what can i use for it", + "oos" + ], + [ + "can you order some ointment for me", + "oos" + ], + [ + "how do i get rid of an itchy rash", + "oos" + ], + [ + "forward the text i just got from henry to giselle", + "oos" + ], + [ + "please read the text message i just received", + "oos" + ], + [ + "save my text on my laptop hard drive", + "oos" + ], + [ + "what time does my ex-boss leave the office", + "oos" + ], + [ + "how much does gun ammunition cost", + "oos" + ], + [ + "restart my newspaper delivery for monday", + "oos" + ], + [ + "are there any messages", + "oos" + ], + [ + "what's that smell", + "oos" + ], + [ + "get me a list of the best savings account rates right now", + "oos" + ], + [ + "is beer legal in this state", + "oos" + ], + [ + "get me articles and pics of different types of household bugs for this area", + "oos" + ], + [ + "what should i do if i saw a cockroach in my house", + "oos" + ], + [ + "look up articles on squealing brakes for ford f-150's", + "oos" + ], + [ + "please answer the phone and put it on speaker on the tv", + "oos" + ], + [ + "can you tell me who's calling me", + "oos" + ], + [ + "answer the phone", + "oos" + ], + [ + "ignore call", + "oos" + ], + [ + "find out what type of wax is needed for a late model ford sedan", + "oos" + ], + [ + "what's the first thing you should do to wash your car", + "oos" + ], + [ + "what supplies do i need to clean my car", + "oos" + ], + [ + "look up articles on car washing at home", + "oos" + ], + [ + "how old is the oldest person that is in the guiness book of world records", + "oos" + ], + [ + "how could i get into the guiness book of world records", + "oos" + ], + [ + "what person is the heaviest ever recorded", + "oos" + ], + [ + "who has the longest hair ever", + "oos" + ], + [ + "can you look at what average reviews say about the new windows phone on amazon for me", + "oos" + ], + [ + "tell me a summary of reviews that oakley frogskins get on amazon", + "oos" + ], + [ + "make me a list of the top ten reviewed hiking boots on jetcom", + "oos" + ], + [ + "show me a tabulation of reviews for lcd tv's on amazon", + "oos" + ], + [ + "can you tell me what happened to han solo in episode 4", + "oos" + ], + [ + "how many movies are in the star wars series", + "oos" + ], + [ + "how many star wars movies are there", + "oos" + ], + [ + "who plays han solo", + "oos" + ], + [ + "which movie is it that someone says perfectly balanced as all things should be", + "oos" + ], + [ + "what movie is the line today is our independence day from", + "oos" + ], + [ + "what movie is it that says today is a good day to die", + "oos" + ], + [ + "what movie does it's just a flesh wound come from", + "oos" + ], + [ + "is michonne wrong for not working with the kingdom to put on the fair", + "oos" + ], + [ + "which actors have played more than 1 comic book character", + "oos" + ], + [ + "what marvel movie did mark ruffalo first appear in", + "oos" + ], + [ + "why did negan return to his jail cell", + "oos" + ], + [ + "is there more than one occult that a person can join", + "oos" + ], + [ + "can i summon a demon using just an ouija board", + "oos" + ], + [ + "what's the best way to drown a witch", + "oos" + ], + [ + "what does it mean to join the occult", + "oos" + ], + [ + "did madison really bathe in the potomac naked", + "oos" + ], + [ + "can you explain a good risk strategy to me", + "oos" + ], + [ + "what are the rules for chess", + "oos" + ], + [ + "fill out the paperwork for tonys new daycare center", + "oos" + ], + [ + "i need to find a new babysitter", + "oos" + ], + [ + "get me a list of divorce attorneys in the new york area", + "oos" + ], + [ + "how long does it take to get a divorce finalized", + "oos" + ], + [ + "where can i find the best divorce lawyer", + "oos" + ], + [ + "make me a map of all earthquake hotspots in the continental us", + "oos" + ], + [ + "how much damage did the last earthquake here do", + "oos" + ], + [ + "what was the latest tremor on the richter scale", + "oos" + ], + [ + "get me articles on earthquake preparedness", + "oos" + ], + [ + "what is appropriate to spend on a bouquet of flowers for mother's day", + "oos" + ], + [ + "get me a list of personal conservation tips that i can use around the house", + "oos" + ], + [ + "look up the average temperature changes over the last 30 years for my area", + "oos" + ], + [ + "is the polar vortex of 2019 apart of global warming", + "oos" + ], + [ + "what is global warming", + "oos" + ], + [ + "can you book me a tee time at cantigny at 2 pm on saturday", + "oos" + ], + [ + "what's the best golf club to use on the lower nine", + "oos" + ], + [ + "how do i stop my child from setting small animals on fire for amusement", + "oos" + ], + [ + "review chapter 6 with my son and verify his math homework answers", + "oos" + ], + [ + "can you look up how i shoot a time lapse video on my iphone camera or is it even possible", + "oos" + ], + [ + "how do i turn up the resolution that i am taking pictures in on my camera phone", + "oos" + ], + [ + "print out the photos i took today", + "oos" + ], + [ + "can you find me sheet music for the beatles white album online", + "oos" + ], + [ + "find me a good band instructor or two to compare in my area", + "oos" + ], + [ + "can i get a starter course for the trumpet", + "oos" + ], + [ + "how many keys does a xylophone have", + "oos" + ], + [ + "how many polar bears are still alive in the arctic", + "oos" + ], + [ + "are polar bears on the endangered species list", + "oos" + ], + [ + "what is the life expectancy of a polar bear", + "oos" + ], + [ + "can a polar bear live in alabama", + "oos" + ], + [ + "when will george rr martin publish the next game of thrones book", + "oos" + ], + [ + "show me the new york times most popular book list for this week", + "oos" + ], + [ + "how many books are in piers anthony virtual mode series", + "oos" + ], + [ + "order the new book titled \"ghost work\"", + "oos" + ], + [ + "please check if god is really living in a small apartment in brussels", + "oos" + ], + [ + "what did the mesopotamians call the creator of the universe", + "oos" + ], + [ + "put on an educational program about buddhism", + "oos" + ], + [ + "what happens if you're skydiving and your parachute doesn't open", + "oos" + ], + [ + "research how many deaths has resulted from skydiving", + "oos" + ], + [ + "how many people die each year while skydiving", + "oos" + ], + [ + "google the price of skydiving in florida", + "oos" + ], + [ + "in what movie did mrs congeniality feature a contestant championing for world peace", + "oos" + ], + [ + "has there ever been total world peace, where no nations in the world are at war", + "oos" + ], + [ + "name the leader from tibet that stands firm for world peace", + "oos" + ], + [ + "what will it take to achieve world peace", + "oos" + ], + [ + "was einstein right to be scared of spooky action at a distance", + "oos" + ], + [ + "what is the nature of the big bang theory", + "oos" + ], + [ + "how does the etheric body operate", + "oos" + ], + [ + "do we actually have a soul", + "oos" + ], + [ + "where can i find cheap rental skis nearby", + "oos" + ], + [ + "check the nanny cam and send the feed to my phone", + "oos" + ], + [ + "how much should i tip on this bill", + "oos" + ], + [ + "send me live feed of the pre-game prediction show on my phone", + "oos" + ], + [ + "what are the scores of other teams in this division", + "oos" + ], + [ + "look up pitcher stats on jake rooney", + "oos" + ], + [ + "what teams are playing right now", + "oos" + ], + [ + "is it too late to upgrade to first class", + "oos" + ], + [ + "according to my fitness tracker, how many push ups have i done today", + "oos" + ], + [ + "renew gym membership", + "oos" + ], + [ + "what's my budget for today's shopping trip", + "oos" + ], + [ + "can you find my car in the parking lot", + "oos" + ], + [ + "what's the best hand to have in texas hold em", + "oos" + ], + [ + "is gambling legal in my state", + "oos" + ], + [ + "fold my hand", + "oos" + ], + [ + "what time did i put in my first load of laundry", + "oos" + ], + [ + "how much time is left on my laundry", + "oos" + ], + [ + "report outage to my electric provider", + "oos" + ], + [ + "power up my generator", + "oos" + ], + [ + "call up instructables website and find article on bike assembly", + "oos" + ], + [ + "find schematics for ikea desk assembly", + "oos" + ], + [ + "search information on how to apply foundation", + "oos" + ], + [ + "find instructions on how to play taboo", + "oos" + ], + [ + "what casino game has the best odds", + "oos" + ], + [ + "tell me how much energy i have consumed so far this year", + "oos" + ], + [ + "give me an energy usage breakdown for march", + "oos" + ], + [ + "how many kilowatts have i used this month", + "oos" + ], + [ + "what's my current electric bill", + "oos" + ], + [ + "can you locate the television remote", + "oos" + ], + [ + "where did i last place my remote", + "oos" + ], + [ + "do you know where the remote is", + "oos" + ], + [ + "have you seen the remote", + "oos" + ], + [ + "please ping the rfid in my wallet and tell me where it's at right now", + "oos" + ], + [ + "can you detect where i placed my wallet", + "oos" + ], + [ + "give me my wallet location", + "oos" + ], + [ + "find my wallet", + "oos" + ], + [ + "can you give me the gps location of harvey", + "oos" + ], + [ + "where's my buddy steve right this second", + "oos" + ], + [ + "locate jenny at her present position", + "oos" + ], + [ + "let me know where jim is right now", + "oos" + ] + ], + "test": [ + [ + "how would you say fly in italian", + "translate" + ], + [ + "what's the spanish word for pasta", + "translate" + ], + [ + "how would they say butter in zambia", + "translate" + ], + [ + "how do you say fast in spanish", + "translate" + ], + [ + "what's the word for trees in norway", + "translate" + ], + [ + "how does one say wonderful in german", + "translate" + ], + [ + "how do they say tacos in mexico", + "translate" + ], + [ + "how would one say cruiser in china", + "translate" + ], + [ + "what's the french word you use for potato", + "translate" + ], + [ + "what would the word for grass be in finland", + "translate" + ], + [ + "how do you say please in french", + "translate" + ], + [ + "how would i say nice to meet you if i were russian", + "translate" + ], + [ + "what is the right way to say excuse me in spanish", + "translate" + ], + [ + "how do i say i'm sorry in chinese", + "translate" + ], + [ + "how would i say thank you if i were mexican", + "translate" + ], + [ + "how would i say what is your name if i were french", + "translate" + ], + [ + "how would i say i must be going now if i were german", + "translate" + ], + [ + "how do i say bathroom in italian", + "translate" + ], + [ + "how might i say hello if i were scottish", + "translate" + ], + [ + "i must know how to say thank you in german", + "translate" + ], + [ + "how would i say i love you if i were german", + "translate" + ], + [ + "how would i say how are you today if i were mexican", + "translate" + ], + [ + "how would i say where is the bathroom if i were korean", + "translate" + ], + [ + "how would i say i need directions if i were french", + "translate" + ], + [ + "how would i say i am lost if i were japanese", + "translate" + ], + [ + "english to spanish for dog", + "translate" + ], + [ + "what is dog in spanish", + "translate" + ], + [ + "how do you say dog in spanish", + "translate" + ], + [ + "dog in spanish", + "translate" + ], + [ + "what's the spanish word for dog", + "translate" + ], + [ + "can you please provide me with assistance in moving money from one account to another", + "transfer" + ], + [ + "i would like help moving money between accounts", + "transfer" + ], + [ + "can you assist me in moving money from one account to another", + "transfer" + ], + [ + "i would like help moving money from one account to another", + "transfer" + ], + [ + "i would like assistance moving money from one account to another", + "transfer" + ], + [ + "can i move some money around", + "transfer" + ], + [ + "can i make a transfer between my accounts", + "transfer" + ], + [ + "i need to make a transfer of my money", + "transfer" + ], + [ + "can i move some money between my two accounts", + "transfer" + ], + [ + "i would like to distribute some money between my accounts", + "transfer" + ], + [ + "i would like to transfer $100 from my checking to saving account", + "transfer" + ], + [ + "help me transfer $100 from my checking to saving account", + "transfer" + ], + [ + "transfer $100 from my checking to saving account", + "transfer" + ], + [ + "can you please help me move $100 from my checking to saving account", + "transfer" + ], + [ + "please move $100 from my checking to saving account", + "transfer" + ], + [ + "transfer seventeen dollars from rbs to woodforest account, please", + "transfer" + ], + [ + "send twelve dollars between cabelas and bank of london accounts, please", + "transfer" + ], + [ + "transfer ninety dollars between glacier checking and farmers accounts, please", + "transfer" + ], + [ + "transfer seventy dollars between national and citizens accounts", + "transfer" + ], + [ + "transfer four and sixty seven dollars from bank of oklahoma checking to security bank account", + "transfer" + ], + [ + "how much money can i transfer today", + "transfer" + ], + [ + "add funds to the retirement account from the pnc account only", + "transfer" + ], + [ + "would you move 100 dollars from the checking and put it into savings", + "transfer" + ], + [ + "repeat what the weather will be like", + "transfer" + ], + [ + "i would like to put 100 dollars from the checking into the savings account now", + "transfer" + ], + [ + "please transfer $5000 to money market from checking account", + "transfer" + ], + [ + "i need $360 transfered from savings to checking account", + "transfer" + ], + [ + "make an immediate transfer of ten thousand from money market to checking", + "transfer" + ], + [ + "i'd like to transfer $400 from household to savings account", + "transfer" + ], + [ + "transer $800 from my checking to savings account", + "transfer" + ], + [ + "set a 4 minute timer", + "timer" + ], + [ + "set a 2 minute timer", + "timer" + ], + [ + "set a 3 minute timer", + "timer" + ], + [ + "set a 5 minute timer", + "timer" + ], + [ + "set a 1 minute timer", + "timer" + ], + [ + "who set up the numbers for it", + "timer" + ], + [ + "start the timer", + "timer" + ], + [ + "start a timer please", + "timer" + ], + [ + "i need to start a timer", + "timer" + ], + [ + "i need a timer to be set", + "timer" + ], + [ + "could you set a timer", + "timer" + ], + [ + "set a timer", + "timer" + ], + [ + "i need to have a timer for 10 minutes", + "timer" + ], + [ + "make a 10 minute timer", + "timer" + ], + [ + "give me a 10 minute timer", + "timer" + ], + [ + "will you create a timer for me", + "timer" + ], + [ + "please begin a timer", + "timer" + ], + [ + "is it possible to set a timer", + "timer" + ], + [ + "i want a timer set for 10 minutes", + "timer" + ], + [ + "set a timer for 10 minutes", + "timer" + ], + [ + "can i get a timer set", + "timer" + ], + [ + "i need to use a timer", + "timer" + ], + [ + "set a timer to go off in 1 hour", + "timer" + ], + [ + "i need a timer for 45 minutes", + "timer" + ], + [ + "in 15 minutes the timer should go off", + "timer" + ], + [ + "start the timer now", + "timer" + ], + [ + "set a timer for 30 minutes", + "timer" + ], + [ + "set a timer for 5 minutes from now", + "timer" + ], + [ + "let me know when it's been 5 minutes", + "timer" + ], + [ + "can you set the timer to 20 minutes", + "timer" + ], + [ + "define antebellum", + "definition" + ], + [ + "define discontent", + "definition" + ], + [ + "what is the meaning of incandescent", + "definition" + ], + [ + "what does confrontation mean", + "definition" + ], + [ + "what does serendipity mean", + "definition" + ], + [ + "what's the definition of luminescent", + "definition" + ], + [ + "what is the definiton of auspicious", + "definition" + ], + [ + "what does circuitous mean", + "definition" + ], + [ + "what's the definition of unencumbered", + "definition" + ], + [ + "what does adulation mean", + "definition" + ], + [ + "what does assiduous mean", + "definition" + ], + [ + "what does amicable mean", + "definition" + ], + [ + "what's the definition of remunerative", + "definition" + ], + [ + "what does anachronistic mean", + "definition" + ], + [ + "what's the definition of idiosyncratic", + "definition" + ], + [ + "what does yolo mean", + "definition" + ], + [ + "can you tell me the meaning of fluctuate", + "definition" + ], + [ + "what does the word polynomial mean", + "definition" + ], + [ + "what does ferrari mean", + "definition" + ], + [ + "what is the meaning of the word girn", + "definition" + ], + [ + "what does mature mean", + "definition" + ], + [ + "i'd like to know what bitcoin means", + "definition" + ], + [ + "i heard some woman say she was going to yerd me, what's that mean", + "definition" + ], + [ + "can you tell me what obsolescence means", + "definition" + ], + [ + "please explain the word catastrophic to me", + "definition" + ], + [ + "what's the meaning of naff", + "definition" + ], + [ + "can you tell me what dendrofilous means", + "definition" + ], + [ + "what does peer-to-peer actually mean", + "definition" + ], + [ + "define epicurean", + "definition" + ], + [ + "what does epicurean mean", + "definition" + ], + [ + "would you let me know what the meaning is life is", + "meaning_of_life" + ], + [ + "would you let me know what is the point of life", + "meaning_of_life" + ], + [ + "right now, i need to know the meaning of life", + "meaning_of_life" + ], + [ + "define the meaning of life for me", + "meaning_of_life" + ], + [ + "i want to know the meaning of life", + "meaning_of_life" + ], + [ + "would you explain the meaning of life", + "meaning_of_life" + ], + [ + "i need you to tell me the meaning of life", + "meaning_of_life" + ], + [ + "i need to know what the meaning of life is now", + "meaning_of_life" + ], + [ + "tell me what the meaning of life is", + "meaning_of_life" + ], + [ + "i need to know what the point of life is", + "meaning_of_life" + ], + [ + "let me know what the point of life is", + "meaning_of_life" + ], + [ + "would you provide me with what the point of life is", + "meaning_of_life" + ], + [ + "tell me what the point of life is", + "meaning_of_life" + ], + [ + "what is the reason humans even exist", + "meaning_of_life" + ], + [ + "do you think our lives have purpose or meaning", + "meaning_of_life" + ], + [ + "can you tell me about the meaning of life", + "meaning_of_life" + ], + [ + "can you tell me what the meaning of life is", + "meaning_of_life" + ], + [ + "what do you know about the meaning of life", + "meaning_of_life" + ], + [ + "i would like information on the meaning of life", + "meaning_of_life" + ], + [ + "what information can you give me on the meaning of life", + "meaning_of_life" + ], + [ + "what is the core meaning of life", + "meaning_of_life" + ], + [ + "what do you know about lifes meaning", + "meaning_of_life" + ], + [ + "is there any consensun regarding lifes true meaning", + "meaning_of_life" + ], + [ + "is there a reason beyond biology about why humans are alive", + "meaning_of_life" + ], + [ + "do you think being alive has any meaning", + "meaning_of_life" + ], + [ + "is there meaning to life", + "meaning_of_life" + ], + [ + "is there meaning in life", + "meaning_of_life" + ], + [ + "what is the answer to life", + "meaning_of_life" + ], + [ + "what's the answer to it all", + "meaning_of_life" + ], + [ + "what's life mean to you", + "meaning_of_life" + ], + [ + "i would like to change my insurance policy", + "insurance_change" + ], + [ + "can i edit my insurance policy", + "insurance_change" + ], + [ + "i am interested in a new insurance plan", + "insurance_change" + ], + [ + "i really would like to get a new insurance plan", + "insurance_change" + ], + [ + "i am in the market for a new insurance plan", + "insurance_change" + ], + [ + "is there a way to alter my insurance policy", + "insurance_change" + ], + [ + "how can i change to new insurance plan", + "insurance_change" + ], + [ + "help me find a new insurance plan", + "insurance_change" + ], + [ + "can i update my insurance policy", + "insurance_change" + ], + [ + "who do i contact about updating my insurance", + "insurance_change" + ], + [ + "can you help me change my insurance policy", + "insurance_change" + ], + [ + "i need to change my insurance policy, do you know how", + "insurance_change" + ], + [ + "what are the steps to change my insurance policy", + "insurance_change" + ], + [ + "do you know how i can change my insurance policy", + "insurance_change" + ], + [ + "how to i change the policy on my insurace", + "insurance_change" + ], + [ + "what do i need to do to get new insurance", + "insurance_change" + ], + [ + "do you know how i get new insurance", + "insurance_change" + ], + [ + "what is the protocol for getting new insurance", + "insurance_change" + ], + [ + "let me know the process for new insurance", + "insurance_change" + ], + [ + "i want to sign up for a new allstate insurance plan", + "insurance_change" + ], + [ + "i need to sign up for a new allstate plan", + "insurance_change" + ], + [ + "what is the procedure for signing up for a new allstate plan", + "insurance_change" + ], + [ + "how do i sign up for a new allstatedplan", + "insurance_change" + ], + [ + "i want to change to a new allstate insurance plan", + "insurance_change" + ], + [ + "i want a new insurance plan", + "insurance_change" + ], + [ + "what if i want to switch insurance plans", + "insurance_change" + ], + [ + "is there a way to get a new insurance plan", + "insurance_change" + ], + [ + "i want to switch to a new insurance plan", + "insurance_change" + ], + [ + "how do i switch insurance plans", + "insurance_change" + ], + [ + "phone number to state farm to change insurance", + "insurance_change" + ], + [ + "can you help me find my phone, please", + "find_phone" + ], + [ + "could you help me locate my phone", + "find_phone" + ], + [ + "can you help me locate my phone", + "find_phone" + ], + [ + "could you help me locate my phone, please", + "find_phone" + ], + [ + "can you help me locate my phone, please", + "find_phone" + ], + [ + "i cannot locate my phone, can you help me", + "find_phone" + ], + [ + "i need help locating my phone", + "find_phone" + ], + [ + "can you assist me with finding my phone", + "find_phone" + ], + [ + "i lost my phone can you help me", + "find_phone" + ], + [ + "where the bleep did i put my bleeping phone", + "find_phone" + ], + [ + "is my phone somewhere around here", + "find_phone" + ], + [ + "help, i've lost my cellphone!", + "find_phone" + ], + [ + "i seem to have lost my phone", + "find_phone" + ], + [ + "do you know my phone's location", + "find_phone" + ], + [ + "can you find my phone", + "find_phone" + ], + [ + "where's my phone at", + "find_phone" + ], + [ + "what's my phone's location", + "find_phone" + ], + [ + "can you help me hunt for my missing cellphone", + "find_phone" + ], + [ + "locate my cellphone in this room", + "find_phone" + ], + [ + "where did i last put my phone", + "find_phone" + ], + [ + "find my cellphone for me!", + "find_phone" + ], + [ + "where did i place my phone", + "find_phone" + ], + [ + "where's my phone", + "find_phone" + ], + [ + "my phone isn't where i left it", + "find_phone" + ], + [ + "i think i've misplaced my phone", + "find_phone" + ], + [ + "i've lost my phone somewhere", + "find_phone" + ], + [ + "i think i lost my phone", + "find_phone" + ], + [ + "would you know where to find my phone", + "find_phone" + ], + [ + "please assist me in looking for my phone", + "find_phone" + ], + [ + "look for my phone with me", + "find_phone" + ], + [ + "is there a travel alert in spain", + "travel_alert" + ], + [ + "travel alert in cuba", + "travel_alert" + ], + [ + "alerts for travel in colombia", + "travel_alert" + ], + [ + "are there travel alerts in mexico", + "travel_alert" + ], + [ + "mexico travel alerts", + "travel_alert" + ], + [ + "have there been any travel alerts for the us", + "travel_alert" + ], + [ + "are there any travel advisories for the us", + "travel_alert" + ], + [ + "what are the travel alerts for the us", + "travel_alert" + ], + [ + "are there travel alerts for the us", + "travel_alert" + ], + [ + "what travel alerts are in effect for the us", + "travel_alert" + ], + [ + "i want to know if i will be safe if i travel to europe", + "travel_alert" + ], + [ + "would i be safe if i traveled to japan", + "travel_alert" + ], + [ + "is it safe to go to north korea", + "travel_alert" + ], + [ + "will i be safe going to south america", + "travel_alert" + ], + [ + "am i safe to go to africa", + "travel_alert" + ], + [ + "which countries have travel alerts", + "travel_alert" + ], + [ + "is it safe in italy", + "travel_alert" + ], + [ + "what are the travel conditions for haiti", + "travel_alert" + ], + [ + "are there any travel bulletins about haiti", + "travel_alert" + ], + [ + "note any travel alerts for haiti", + "travel_alert" + ], + [ + "find travel alerts for haiti", + "travel_alert" + ], + [ + "does the state department say anything about traveling to haiti", + "travel_alert" + ], + [ + "is there a travel alert for france", + "travel_alert" + ], + [ + "is it safe for me to go to turkey", + "travel_alert" + ], + [ + "is it safe to go to serbia", + "travel_alert" + ], + [ + "safety concerns for malaysia", + "travel_alert" + ], + [ + "is it safe for me to visit malawi", + "travel_alert" + ], + [ + "is travel to monterrey safe now", + "travel_alert" + ], + [ + "is it safe for people to travel to pakistan", + "travel_alert" + ], + [ + "can people safely travel to cambodia", + "travel_alert" + ], + [ + "please help me set up a vacation request", + "pto_request" + ], + [ + "how does one go about putting in a vacation request", + "pto_request" + ], + [ + "how do i put in a vacation request", + "pto_request" + ], + [ + "walk me through on how to make a vacation request", + "pto_request" + ], + [ + "please put in a vacation request", + "pto_request" + ], + [ + "how is a vacation request done", + "pto_request" + ], + [ + "how is a vacation request made", + "pto_request" + ], + [ + "what is the process of making a vacation request", + "pto_request" + ], + [ + "how would one make a vacation request", + "pto_request" + ], + [ + "can i put in a pto request for september 1st to september 8th", + "pto_request" + ], + [ + "if i want to make a vacation request, how do i do it", + "pto_request" + ], + [ + "can i put in a pto request for august 1st to august 10th", + "pto_request" + ], + [ + "can i put in a pto request for january 4th to january 9th", + "pto_request" + ], + [ + "can i put in a pto request for december 3rd to december 10th", + "pto_request" + ], + [ + "can i put in a pto request for december 25th to january 1st", + "pto_request" + ], + [ + "can i take pto from the end of the month to the 5th of the next month", + "pto_request" + ], + [ + "can you help me plan a vacation", + "pto_request" + ], + [ + "it it possible to take pto from the 8th to the 11th", + "pto_request" + ], + [ + "is it ok if i use some of my pto on may 24th to may 29th", + "pto_request" + ], + [ + "what do i do to set up a vacation", + "pto_request" + ], + [ + "i need to use pto on october 5th to october 10th", + "pto_request" + ], + [ + "how do i plan a vacation", + "pto_request" + ], + [ + "can i put in a pto request for monday to wednesday", + "pto_request" + ], + [ + "can i purchase a vacation using this", + "pto_request" + ], + [ + "how do i get help with a vacation itinerary", + "pto_request" + ], + [ + "how do i request a vacation", + "pto_request" + ], + [ + "i'd like to request a vacation", + "pto_request" + ], + [ + "i need to request a vacation", + "pto_request" + ], + [ + "vacation request information", + "pto_request" + ], + [ + "vacation request please", + "pto_request" + ], + [ + "how can i increase my credit score", + "improve_credit_score" + ], + [ + "how can i raise my credit score", + "improve_credit_score" + ], + [ + "how can i contribute to my credit score", + "improve_credit_score" + ], + [ + "how is it possible to get a better credit score", + "improve_credit_score" + ], + [ + "how can i up my credit score", + "improve_credit_score" + ], + [ + "can you explain to me how i might boost my credit score", + "improve_credit_score" + ], + [ + "my credit score stinks but i don't know how to improve it", + "improve_credit_score" + ], + [ + "what preventative measures can i take to avoid a low credit score", + "improve_credit_score" + ], + [ + "how can i keep my credit score from falling", + "improve_credit_score" + ], + [ + "give me some ideas for boosting my credit score", + "improve_credit_score" + ], + [ + "how can i prevent my credit score from dropping", + "improve_credit_score" + ], + [ + "what steps can i take to build my credit score", + "improve_credit_score" + ], + [ + "give me some tips on building up my credit score", + "improve_credit_score" + ], + [ + "how can i rehabilitate my poor credit score", + "improve_credit_score" + ], + [ + "give me some ideas of how to avoid my credit score lowering", + "improve_credit_score" + ], + [ + "give me tips on improving my credit score", + "improve_credit_score" + ], + [ + "what steps should i take if i want to ensure my credit score doesn't drop", + "improve_credit_score" + ], + [ + "can you tell me some strategies for raising my credit score", + "improve_credit_score" + ], + [ + "i want to know how i can build up a good credit score", + "improve_credit_score" + ], + [ + "\"what's the method to improve credit score", + "improve_credit_score" + ], + [ + "\"which is the best way to improve the credit score", + "improve_credit_score" + ], + [ + "\"which could be improve the credit score", + "improve_credit_score" + ], + [ + "\"when the credit score improve", + "improve_credit_score" + ], + [ + "\"where is improve the credit score", + "improve_credit_score" + ], + [ + "it is damaging to my credit score if i miss one credit card payment", + "improve_credit_score" + ], + [ + "i have a revolving store card and defaulted so will my fico score be affected", + "improve_credit_score" + ], + [ + "will my fico score decrease if i increase my student loan debt", + "improve_credit_score" + ], + [ + "if i lose my job will my credit score go down", + "improve_credit_score" + ], + [ + "can i hurt my credit rating if i open several credit cards in a short time frame", + "improve_credit_score" + ], + [ + "will only having five late payments really make my credit bad", + "improve_credit_score" + ], + [ + "name unusual facts about the circus", + "fun_fact" + ], + [ + "i need interesting baseball trivia from the nineteen eighties", + "fun_fact" + ], + [ + "tell me a fun fact about cars", + "fun_fact" + ], + [ + "give me a fun fact about kangaroo", + "fun_fact" + ], + [ + "give me a fun fact about koala", + "fun_fact" + ], + [ + "give me a fun fact about dolphin", + "fun_fact" + ], + [ + "what is some trivia about frog", + "fun_fact" + ], + [ + "tell me fun facts of today", + "fun_fact" + ], + [ + "give me something interesting about stars", + "fun_fact" + ], + [ + "what is some trivia question about coffee", + "fun_fact" + ], + [ + "tell me some trivia about sweat", + "fun_fact" + ], + [ + "tell me some trivia about dolphin", + "fun_fact" + ], + [ + "what is some trivia about the weather", + "fun_fact" + ], + [ + "give me a fun fact about komodo dragon", + "fun_fact" + ], + [ + "give me a amusing fact about wolf", + "fun_fact" + ], + [ + "what is the interesting trivia about human bodies", + "fun_fact" + ], + [ + "i want to learn something about apples", + "fun_fact" + ], + [ + "tell me today's fun fact", + "fun_fact" + ], + [ + "i want today's fun fact please", + "fun_fact" + ], + [ + "what is today's fun fact", + "fun_fact" + ], + [ + "today's fun fact", + "fun_fact" + ], + [ + "i want a fun fact about london", + "fun_fact" + ], + [ + "tell me something interesting about bees", + "fun_fact" + ], + [ + "i would you like to learn something interesting about bees", + "fun_fact" + ], + [ + "i want to hear cool bee facts", + "fun_fact" + ], + [ + "what's something interesting about bees", + "fun_fact" + ], + [ + "i wanna hear something cool about bees", + "fun_fact" + ], + [ + "tell me fun facts on science topics", + "fun_fact" + ], + [ + "tell me fun science facts", + "fun_fact" + ], + [ + "i want to know fun facts about koala bears", + "fun_fact" + ], + [ + "please speak in tagalog", + "change_language" + ], + [ + "speak in german", + "change_language" + ], + [ + "speak to me in dutch", + "change_language" + ], + [ + "speak in french please", + "change_language" + ], + [ + "speak spanish please", + "change_language" + ], + [ + "i am not understanding the language you are responding in; switch it for me", + "change_language" + ], + [ + "i can't understand the language you are responding in; i need you to switch it", + "change_language" + ], + [ + "i need you to switch the language you are responding as i don't understand", + "change_language" + ], + [ + "i don't understand your language; switch the language", + "change_language" + ], + [ + "i need you to switch the language you are responding in", + "change_language" + ], + [ + "i'd like to speak in portuguese", + "change_language" + ], + [ + "can we speak in german", + "change_language" + ], + [ + "i want to use spanish with you", + "change_language" + ], + [ + "please let's speak in spanish", + "change_language" + ], + [ + "please can we speak in dutch", + "change_language" + ], + [ + "can you make the default language swedish", + "change_language" + ], + [ + "is it possible to talk to you in mandarin", + "change_language" + ], + [ + "would you understand me if i speak to you in navajo", + "change_language" + ], + [ + "i'd like the language to be in spanish", + "change_language" + ], + [ + "i'd like to use you using russian", + "change_language" + ], + [ + "can i speak spanish to you hombre", + "change_language" + ], + [ + "i want to start talking to you in swedish", + "change_language" + ], + [ + "can i get you to change your language setting to russian", + "change_language" + ], + [ + "please make your language setting norwegian", + "change_language" + ], + [ + "i am going to speak english now", + "change_language" + ], + [ + "do you speak english", + "change_language" + ], + [ + "i want to talk english", + "change_language" + ], + [ + "we have to speak in english", + "change_language" + ], + [ + "speak in dutch", + "change_language" + ], + [ + "i want to speak to you in swiss german", + "change_language" + ], + [ + "how long until my paycheck shows up", + "payday" + ], + [ + "can you tell me the date of my last check", + "payday" + ], + [ + "what was the date when i last go paid", + "payday" + ], + [ + "what's the date on my last pay stub", + "payday" + ], + [ + "when can i expect my paycheck", + "payday" + ], + [ + "when is the next time i'll receive a paycheck", + "payday" + ], + [ + "when did i last collect my salary", + "payday" + ], + [ + "when do i next get paid", + "payday" + ], + [ + "when is my paycheck arriving", + "payday" + ], + [ + "what day is payday", + "payday" + ], + [ + "do you know when my next check is coming", + "payday" + ], + [ + "when do i get my next paycheck", + "payday" + ], + [ + "when's pay day for me", + "payday" + ], + [ + "i need to know when i get paid next", + "payday" + ], + [ + "when's my next pay day", + "payday" + ], + [ + "what day's my pay coming next", + "payday" + ], + [ + "when do i get paid for my work", + "payday" + ], + [ + "look up when my payday is supposed to be", + "payday" + ], + [ + "when can i expect to be paid", + "payday" + ], + [ + "look up the date for my next payday", + "payday" + ], + [ + "what day will i earn my payment from work", + "payday" + ], + [ + "find out when my next upcoming payday will be", + "payday" + ], + [ + "when is the next payday i can look forward to", + "payday" + ], + [ + "what day can i expect to receive payment on", + "payday" + ], + [ + "when will my next paycheck be coming", + "payday" + ], + [ + "when will my payment be deposited", + "payday" + ], + [ + "when do i get my next pay check", + "payday" + ], + [ + "is it payday", + "payday" + ], + [ + "do you know when i'll receive my next paycheck", + "payday" + ], + [ + "what date do i get paid", + "payday" + ], + [ + "how long does it take for a credit card to be reissued and mailed to me", + "replacement_card_duration" + ], + [ + "can credit card companies expedite delivery of reissued credit cards", + "replacement_card_duration" + ], + [ + "can you call the help desk line for my credit card company", + "replacement_card_duration" + ], + [ + "how can i request a new credit card", + "replacement_card_duration" + ], + [ + "what's the phone number for my credit card company", + "replacement_card_duration" + ], + [ + "i recently lost my credit card and need to know how long it takes to get a new one mailed to me", + "replacement_card_duration" + ], + [ + "i need to know the time it takes to get a new credit card sent to someone who lost theirs", + "replacement_card_duration" + ], + [ + "i lost my credit card recently how long does take to get a new one in the mail", + "replacement_card_duration" + ], + [ + "what is amount of time it takes to get a new credit card i lost mine recently", + "replacement_card_duration" + ], + [ + "what is the time frame for sending a customer who lost their credit card a new one", + "replacement_card_duration" + ], + [ + "will i get getting my new card anytime soon", + "replacement_card_duration" + ], + [ + "what is the shipping status of my replacement card", + "replacement_card_duration" + ], + [ + "how long until i get my replacement card", + "replacement_card_duration" + ], + [ + "when is my new card expected to arrive", + "replacement_card_duration" + ], + [ + "is my replacement card due to arrive in the mail today", + "replacement_card_duration" + ], + [ + "how long before my new card is mailed to me", + "replacement_card_duration" + ], + [ + "what is the shipping time for my card", + "replacement_card_duration" + ], + [ + "how much time before my new card is mailed to me", + "replacement_card_duration" + ], + [ + "how long does it take to get a new credit card", + "replacement_card_duration" + ], + [ + "time to order and receive a new credit card", + "replacement_card_duration" + ], + [ + "when will i received a replacement card", + "replacement_card_duration" + ], + [ + "time to replace my credit card", + "replacement_card_duration" + ], + [ + "how long before the replacement card is mailed to me", + "replacement_card_duration" + ], + [ + "how much longer before the card is mailed to me", + "replacement_card_duration" + ], + [ + "how long will it takes to get a new credit card", + "replacement_card_duration" + ], + [ + "what is the shipping wait for my card", + "replacement_card_duration" + ], + [ + "when will the replaecment card arrive", + "replacement_card_duration" + ], + [ + "let me know the wait on a replacement credit card", + "replacement_card_duration" + ], + [ + "let me know when the replacement card will arrive", + "replacement_card_duration" + ], + [ + "how soon can i expect a replacement card for my lost card to arrive", + "replacement_card_duration" + ], + [ + "i need you to tell me what time it is in new york now", + "time" + ], + [ + "what time is it in adelaide, australia right now", + "time" + ], + [ + "is it after noon", + "time" + ], + [ + "is it six o clock yet", + "time" + ], + [ + "please give me the time in tanzania at this moment", + "time" + ], + [ + "can you tell me the current time in jamaica", + "time" + ], + [ + "tell me the time in san francisco, please", + "time" + ], + [ + "what time is it right now in adelaide, australia", + "time" + ], + [ + "what time is it in the eastern timezone", + "time" + ], + [ + "what time is it in the mountain timezone", + "time" + ], + [ + "what time is it in the greenwich timezone", + "time" + ], + [ + "what time is it in the central timezone", + "time" + ], + [ + "tell me what the time is in dallas", + "time" + ], + [ + "what is the current time in dallas", + "time" + ], + [ + "can you tell me what time it is in dallas", + "time" + ], + [ + "what time is it in dallas", + "time" + ], + [ + "tell time for another city: dallas", + "time" + ], + [ + "what time is it right now at home", + "time" + ], + [ + "what\u2019s the time in new york", + "time" + ], + [ + "tell me the time in california", + "time" + ], + [ + "tell me the time in las vegas", + "time" + ], + [ + "what is the time is central time zone", + "time" + ], + [ + "what is the time in the usa", + "time" + ], + [ + "what is the time in est", + "time" + ], + [ + "whats the exact time", + "time" + ], + [ + "what is the current time", + "time" + ], + [ + "what's the current time", + "time" + ], + [ + "what time is it in california", + "time" + ], + [ + "please give me the time", + "time" + ], + [ + "the time is what", + "time" + ], + [ + "how is the status of my credit card application coming along", + "application_status" + ], + [ + "what exactly is the status of my application for the credit card", + "application_status" + ], + [ + "i need to know the status of my credit card application", + "application_status" + ], + [ + "i would like to know the status of my credit card application", + "application_status" + ], + [ + "let me know if my application for american saving bank", + "application_status" + ], + [ + "check the status of my credit card application for me", + "application_status" + ], + [ + "i want to know if my credit card application has been processed", + "application_status" + ], + [ + "i want to know the status of my credit card application", + "application_status" + ], + [ + "can you check if my credit card application has been processed", + "application_status" + ], + [ + "i want to know how is my credit card application going", + "application_status" + ], + [ + "can you let me know the status of my discover credit card application status", + "application_status" + ], + [ + "can you tell me the status of my credit card application", + "application_status" + ], + [ + "has my application for american express gone through yet", + "application_status" + ], + [ + "let me know about the status of my credit card application", + "application_status" + ], + [ + "can you please tell me about the status of my credit card application", + "application_status" + ], + [ + "can you please let me know the status of my capital one application", + "application_status" + ], + [ + "let me know the credit card application status", + "application_status" + ], + [ + "has my application for discover card gone through yet", + "application_status" + ], + [ + "can you tell me the credit card application status", + "application_status" + ], + [ + "has my application for the hsbc card been approved yet", + "application_status" + ], + [ + "please tell me if my application for the hsbc card has gone through yet", + "application_status" + ], + [ + "how far has my application for the hsbc card gone till now", + "application_status" + ], + [ + "what's the status on my application for the hsbc credit card", + "application_status" + ], + [ + "how far has my application for the hsbc card proceeded till now", + "application_status" + ], + [ + "did the application for my visa card finish", + "application_status" + ], + [ + "has my mastercard application gone through the process", + "application_status" + ], + [ + "has my mastercard application gone through yet", + "application_status" + ], + [ + "has my application for my visa card gone through", + "application_status" + ], + [ + "has my mastercard application been processed", + "application_status" + ], + [ + "when will i know if my visa card application was approved", + "application_status" + ], + [ + "what's the status of by delta flight", + "flight_status" + ], + [ + "what's the status of my virgin airlines flight", + "flight_status" + ], + [ + "what's the status of my jetblue flight", + "flight_status" + ], + [ + "what's the status of my southwest flight", + "flight_status" + ], + [ + "what's the status of my american airlines flight", + "flight_status" + ], + [ + "what's the news with my delta flight", + "flight_status" + ], + [ + "where is my delta flight", + "flight_status" + ], + [ + "what can you tell me about flight dl123", + "flight_status" + ], + [ + "where is flight dl123", + "flight_status" + ], + [ + "has flight dl123 left", + "flight_status" + ], + [ + "is flight dl123 going to arrive on time", + "flight_status" + ], + [ + "is my spirit flight running on time", + "flight_status" + ], + [ + "what's the status for my delta flight this afternoon", + "flight_status" + ], + [ + "give me the status on my united airlines flight", + "flight_status" + ], + [ + "what's up with my american airline flight will it be on time", + "flight_status" + ], + [ + "tell me what the status is for my aa flight", + "flight_status" + ], + [ + "i need for you to get me the status of my american airlines flight", + "flight_status" + ], + [ + "tell me the status of my american airlines flight", + "flight_status" + ], + [ + "i need to know the status of my american airlines flight", + "flight_status" + ], + [ + "would you let me know the status of my american airlines flight", + "flight_status" + ], + [ + "let me know the status of my american airlines flight", + "flight_status" + ], + [ + "has flight dl123 landed", + "flight_status" + ], + [ + "is my flight, dl123 on time", + "flight_status" + ], + [ + "how far out is flight dl123", + "flight_status" + ], + [ + "is flight dl123 delayed", + "flight_status" + ], + [ + "what time is boarding scheduled", + "flight_status" + ], + [ + "when is boarding scheduled", + "flight_status" + ], + [ + "what time is boarding for my flight", + "flight_status" + ], + [ + "when is boarding scheduled for my flight", + "flight_status" + ], + [ + "when is my flight scheduled to board", + "flight_status" + ], + [ + "flip a coin for me and i call heads", + "flip_coin" + ], + [ + "can you flip a coin for me", + "flip_coin" + ], + [ + "give me the results of a coin flip", + "flip_coin" + ], + [ + "please flip a coin for me", + "flip_coin" + ], + [ + "please flip a coin for me ai", + "flip_coin" + ], + [ + "flip a coin and tell me if it's heads", + "flip_coin" + ], + [ + "ai, flip a coin for me", + "flip_coin" + ], + [ + "ai, please flip a simulated coin", + "flip_coin" + ], + [ + "let's flip a coin i choose heads", + "flip_coin" + ], + [ + "can you please do a simulated coin flip for me ai", + "flip_coin" + ], + [ + "flip a coin i choose heads", + "flip_coin" + ], + [ + "flip a coin i'm calling heads", + "flip_coin" + ], + [ + "can you do a coin flip for me ai", + "flip_coin" + ], + [ + "i want you to flip a coin i choose heads", + "flip_coin" + ], + [ + "just toss a coin", + "flip_coin" + ], + [ + "just flip a coin", + "flip_coin" + ], + [ + "throw a coin in the air", + "flip_coin" + ], + [ + "flip a coin into the air", + "flip_coin" + ], + [ + "heads, coin flip", + "flip_coin" + ], + [ + "flip coin, heads!", + "flip_coin" + ], + [ + "flip a coin, i call heads!", + "flip_coin" + ], + [ + "coin flip, choose heads", + "flip_coin" + ], + [ + "please flip a coin, i choose heads!", + "flip_coin" + ], + [ + "can you flip a coin i call heads", + "flip_coin" + ], + [ + "flip a coin, i'm heads", + "flip_coin" + ], + [ + "flip a coin, heads", + "flip_coin" + ], + [ + "flip us a coin, i call heads", + "flip_coin" + ], + [ + "flip a coin, you're tails and i'm heads", + "flip_coin" + ], + [ + "give me a coin toss result", + "flip_coin" + ], + [ + "flip the coin, i choose heads", + "flip_coin" + ], + [ + "bob is my name now", + "change_user_name" + ], + [ + "please start calling me bob", + "change_user_name" + ], + [ + "change my name to bob", + "change_user_name" + ], + [ + "call me bob from now on", + "change_user_name" + ], + [ + "don't call me bill anymore - call me bob", + "change_user_name" + ], + [ + "i want you to call me bailey", + "change_user_name" + ], + [ + "don't call me anything besides bailey", + "change_user_name" + ], + [ + "refer to me as bailey", + "change_user_name" + ], + [ + "address me as \"bailey", + "change_user_name" + ], + [ + "please call me bailey", + "change_user_name" + ], + [ + "can you call me a different name", + "change_user_name" + ], + [ + "could you call me a different name", + "change_user_name" + ], + [ + "could you call me a different name, please", + "change_user_name" + ], + [ + "could you call me by a different name, please", + "change_user_name" + ], + [ + "can you call me a different name, please", + "change_user_name" + ], + [ + "ai, my name is deb please use my name when you talk to me", + "change_user_name" + ], + [ + "ai answer my questions with my name first which is deb", + "change_user_name" + ], + [ + "ai, refer to me as deb when answering me", + "change_user_name" + ], + [ + "ai, address me as deb when speaking to me", + "change_user_name" + ], + [ + "ai, call me deb", + "change_user_name" + ], + [ + "change my name please", + "change_user_name" + ], + [ + "please go ahead and change my name", + "change_user_name" + ], + [ + "please switch my name", + "change_user_name" + ], + [ + "change name for me", + "change_user_name" + ], + [ + "my name is going to be sherlock", + "change_user_name" + ], + [ + "start calling me jake from now on", + "change_user_name" + ], + [ + "call me shane", + "change_user_name" + ], + [ + "i want you to call me sheldon", + "change_user_name" + ], + [ + "i want to be called timothy", + "change_user_name" + ], + [ + "call me mike from now on", + "change_user_name" + ], + [ + "where are you coming from", + "where_are_you_from" + ], + [ + "from where do you come", + "where_are_you_from" + ], + [ + "what place are you from", + "where_are_you_from" + ], + [ + "where are you from originally", + "where_are_you_from" + ], + [ + "so, where do you come from", + "where_are_you_from" + ], + [ + "so where do you come from originally", + "where_are_you_from" + ], + [ + "where do you call home", + "where_are_you_from" + ], + [ + "what's your home country", + "where_are_you_from" + ], + [ + "where did you live before you moved here", + "where_are_you_from" + ], + [ + "are you from here or somewhere else originally", + "where_are_you_from" + ], + [ + "tell me where you're from", + "where_are_you_from" + ], + [ + "what area did you come from", + "where_are_you_from" + ], + [ + "what is your origin", + "where_are_you_from" + ], + [ + "where was it you were born", + "where_are_you_from" + ], + [ + "the place you were born is", + "where_are_you_from" + ], + [ + "what location were you born", + "where_are_you_from" + ], + [ + "where were you put together", + "where_are_you_from" + ], + [ + "where is your home planet", + "where_are_you_from" + ], + [ + "where is your home town", + "where_are_you_from" + ], + [ + "where were you thought of", + "where_are_you_from" + ], + [ + "where do you originate from", + "where_are_you_from" + ], + [ + "where have you come from", + "where_are_you_from" + ], + [ + "where were you before", + "where_are_you_from" + ], + [ + "where were you processed", + "where_are_you_from" + ], + [ + "a hidden government facility", + "where_are_you_from" + ], + [ + "what region were you born", + "where_are_you_from" + ], + [ + "from where did you originate", + "where_are_you_from" + ], + [ + "are you from around here", + "where_are_you_from" + ], + [ + "in what place are you originally from", + "where_are_you_from" + ], + [ + "where did you grow up", + "where_are_you_from" + ], + [ + "tack on a gallon of milk to the grocery list", + "shopping_list_update" + ], + [ + "add laundry detergent to the list", + "shopping_list_update" + ], + [ + "make sure to put eggs on the grocery list", + "shopping_list_update" + ], + [ + "the list should also have 2 loaves of bread", + "shopping_list_update" + ], + [ + "include asparagus on the list", + "shopping_list_update" + ], + [ + "remove milk and add eggs to my shopping list", + "shopping_list_update" + ], + [ + "put milk on my shopping list", + "shopping_list_update" + ], + [ + "i'd like to add pancake mix to my shopping list if it's not already there", + "shopping_list_update" + ], + [ + "if soda isn't on my shopping list, go ahead and add it for me", + "shopping_list_update" + ], + [ + "add milk to my shopping list", + "shopping_list_update" + ], + [ + "take toilet paper off my shopping list", + "shopping_list_update" + ], + [ + "i need to add flour to my list for shopping if i haven't already", + "shopping_list_update" + ], + [ + "take toilet paper off my shopping list and add paper towels", + "shopping_list_update" + ], + [ + "i need hot dogs added to my shopping list please", + "shopping_list_update" + ], + [ + "please put chips on my shopping list", + "shopping_list_update" + ], + [ + "is milk in my shopping list if not, add it", + "shopping_list_update" + ], + [ + "can you add eggs to my shopping list", + "shopping_list_update" + ], + [ + "add eggs to my shopping list if it's not already there", + "shopping_list_update" + ], + [ + "i'd like to get soda while i'm out; add it to my shopping list", + "shopping_list_update" + ], + [ + "on my shopping list, remove eggs", + "shopping_list_update" + ], + [ + "i need eggs; add them to my shopping list", + "shopping_list_update" + ], + [ + "take soda from my shopping list, and while you're at it add tea", + "shopping_list_update" + ], + [ + "milk should be added to my shopping list", + "shopping_list_update" + ], + [ + "i don't need eggs anymore, but i do need milk", + "shopping_list_update" + ], + [ + "take paper towels off of my shopping list", + "shopping_list_update" + ], + [ + "i need milk on my shopping list", + "shopping_list_update" + ], + [ + "i don't need toilet paper anymore; take it off my shopping list", + "shopping_list_update" + ], + [ + "throw eggs on my shopping list, please", + "shopping_list_update" + ], + [ + "i need water on my shopping list and beer off of it", + "shopping_list_update" + ], + [ + "i need bananas on the list too", + "shopping_list_update" + ], + [ + "can you tell me what you can help with", + "what_can_i_ask_you" + ], + [ + "what things are you able to help me with", + "what_can_i_ask_you" + ], + [ + "i would like to know what you can help with", + "what_can_i_ask_you" + ], + [ + "what kind of things can you help with", + "what_can_i_ask_you" + ], + [ + "i want to know what type of things you can help me with", + "what_can_i_ask_you" + ], + [ + "please help me to know what type of things you can help me with", + "what_can_i_ask_you" + ], + [ + "can i know what type of things you can help me with", + "what_can_i_ask_you" + ], + [ + "i would like to know what type of things you can help me with", + "what_can_i_ask_you" + ], + [ + "i will be glad to know what type of things you can help me with", + "what_can_i_ask_you" + ], + [ + "what subjects do you like", + "what_can_i_ask_you" + ], + [ + "tell me what subjects you like", + "what_can_i_ask_you" + ], + [ + "please tell me what subjects you like", + "what_can_i_ask_you" + ], + [ + "so what subjects do you like", + "what_can_i_ask_you" + ], + [ + "what type of questions can i ask you", + "what_can_i_ask_you" + ], + [ + "what kinds of things are you familiar with", + "what_can_i_ask_you" + ], + [ + "what subjects are you experienced in", + "what_can_i_ask_you" + ], + [ + "what knowledge do you have on certain subjects", + "what_can_i_ask_you" + ], + [ + "what kid of subjects do you excel in", + "what_can_i_ask_you" + ], + [ + "what subjects or areas are you familiar with", + "what_can_i_ask_you" + ], + [ + "which subjects are you the most experienced with", + "what_can_i_ask_you" + ], + [ + "tell me what you can do for me", + "what_can_i_ask_you" + ], + [ + "what sorts of tasks can you do", + "what_can_i_ask_you" + ], + [ + "what can you do for me", + "what_can_i_ask_you" + ], + [ + "what can you do to make yourself useful", + "what_can_i_ask_you" + ], + [ + "what would you be able to do with me", + "what_can_i_ask_you" + ], + [ + "give me examples of what to ask you", + "what_can_i_ask_you" + ], + [ + "tell me what types of questions i can ask you", + "what_can_i_ask_you" + ], + [ + "what are you programmed to do for me", + "what_can_i_ask_you" + ], + [ + "what things do you know how to do", + "what_can_i_ask_you" + ], + [ + "how can you help me", + "what_can_i_ask_you" + ], + [ + "undecided", + "maybe" + ], + [ + "i'm afraid i don't know how to answer that", + "maybe" + ], + [ + "might", + "maybe" + ], + [ + "it might go either way", + "maybe" + ], + [ + "both could be", + "maybe" + ], + [ + "either or", + "maybe" + ], + [ + "my answer would be maybe", + "maybe" + ], + [ + "either one might be", + "maybe" + ], + [ + "i can't say for certain either way", + "maybe" + ], + [ + "it could go either way", + "maybe" + ], + [ + "it's definitely a maybe for that", + "maybe" + ], + [ + "i am not sure", + "maybe" + ], + [ + "maybe it is", + "maybe" + ], + [ + "i can't say", + "maybe" + ], + [ + "could be", + "maybe" + ], + [ + "i am unable to say", + "maybe" + ], + [ + "i am not able to say", + "maybe" + ], + [ + "i am really not sure", + "maybe" + ], + [ + "i do not know", + "maybe" + ], + [ + "not sure", + "maybe" + ], + [ + "not sure to be honest", + "maybe" + ], + [ + "i think maybe", + "maybe" + ], + [ + "um, i'm not quite sure", + "maybe" + ], + [ + "um, i'm not totally sure", + "maybe" + ], + [ + "um, i'm not actually sure", + "maybe" + ], + [ + "i'm not actually sure", + "maybe" + ], + [ + "um, i'm not sure", + "maybe" + ], + [ + "that might be the case", + "maybe" + ], + [ + "i'm not completely certain", + "maybe" + ], + [ + "unsure", + "maybe" + ], + [ + "help me change my oil", + "oil_change_how" + ], + [ + "what oil should i use for an oil change and how do i do it", + "oil_change_how" + ], + [ + "how do i do an oil change", + "oil_change_how" + ], + [ + "diy oil change", + "oil_change_how" + ], + [ + "how to do an oil change", + "oil_change_how" + ], + [ + "give me instructions for an oil change", + "oil_change_how" + ], + [ + "diy oil change and oil type", + "oil_change_how" + ], + [ + "oil type and do it yourself oil change information please", + "oil_change_how" + ], + [ + "i want to know how to change my oil", + "oil_change_how" + ], + [ + "can you tell me how to change my oil and what kind i use", + "oil_change_how" + ], + [ + "how to change oil and what oil type", + "oil_change_how" + ], + [ + "can you please instruct me on the proper way to change the oil in my car", + "oil_change_how" + ], + [ + "i need guidance on changing my oil", + "oil_change_how" + ], + [ + "i want a step by step explanation of how to change the oil in my car", + "oil_change_how" + ], + [ + "can you teach me how to change my oil", + "oil_change_how" + ], + [ + "can you teach me how to change my oil in my car", + "oil_change_how" + ], + [ + "help me figure out how to change my oil", + "oil_change_how" + ], + [ + "walk me through the steps involved in changing my oil", + "oil_change_how" + ], + [ + "give me step by step instructions for changing my oil", + "oil_change_how" + ], + [ + "i want to change the oil in my car but i do not know how to do it can you help", + "oil_change_how" + ], + [ + "put together a list of instructions for me on how to change the oil in my car", + "oil_change_how" + ], + [ + "is it possible to change oil, if so how and what do i use", + "oil_change_how" + ], + [ + "what oil do i use when changing oil and how do i do it", + "oil_change_how" + ], + [ + "how would i replace my oil and what sort of oil should i use", + "oil_change_how" + ], + [ + "can you change the oil, with what and how", + "oil_change_how" + ], + [ + "how could i replace my oil and what form of oil ought to i take advantage of", + "oil_change_how" + ], + [ + "can you tell me how to change my oil please", + "oil_change_how" + ], + [ + "how do i change my oil", + "oil_change_how" + ], + [ + "please let me know how to change the oil", + "oil_change_how" + ], + [ + "i need to know how to change oil in a car", + "oil_change_how" + ], + [ + "i'd like to make a reservation at rooth chris, can you do that", + "restaurant_reservation" + ], + [ + "make a reservation for chik-fil-a at 3 o' clock please", + "restaurant_reservation" + ], + [ + "reserve a table for 3 at 7 for olive garden", + "restaurant_reservation" + ], + [ + "will you reserve a table at olive garden for 3 people at 7", + "restaurant_reservation" + ], + [ + "at 7, i need a table for 3 at olive garden", + "restaurant_reservation" + ], + [ + "i need a table for 3 at olive garden for 7", + "restaurant_reservation" + ], + [ + "get a table for me at 7 for 3 people at olive garden", + "restaurant_reservation" + ], + [ + "reserve table for 5 at red robin under the name sara at 3", + "restaurant_reservation" + ], + [ + "reverse a table for 5 at burger king under the name sara at 6", + "restaurant_reservation" + ], + [ + "can you reserve a table for 6 at red robin under the name mavrick at 5 clock", + "restaurant_reservation" + ], + [ + "could you reserve table for 3 at carlos jr under the name adam at 4", + "restaurant_reservation" + ], + [ + "i want to reserve table for 5 at red robin under the name sara at 5", + "restaurant_reservation" + ], + [ + "i need a table for two at the havana at nine", + "restaurant_reservation" + ], + [ + "look for me a table at carl's cabin for twelve at eight", + "restaurant_reservation" + ], + [ + "i need a table at gemma for nine at two", + "restaurant_reservation" + ], + [ + "book me a table for three at rainforest cafe at seven", + "restaurant_reservation" + ], + [ + "get me a table for five at itta bena at three", + "restaurant_reservation" + ], + [ + "5 people are going to be at tropicana by 8pm, reserve the table under martins name please", + "restaurant_reservation" + ], + [ + "use martins name to reserve a table at tropicana for 5 people at 8pm", + "restaurant_reservation" + ], + [ + "reserve a table at tropicana for 5 people under the name martins for 8pm", + "restaurant_reservation" + ], + [ + "martins needs a table for 5 people at tropicana at 8pm precisely", + "restaurant_reservation" + ], + [ + "the table should be reserved at 8pm at tropicana using martins name and it should be for 5 people", + "restaurant_reservation" + ], + [ + "are there any open reservations at outback tonight", + "restaurant_reservation" + ], + [ + "make a reservation for 2 tonight at 7:00 at outback steakhouse", + "restaurant_reservation" + ], + [ + "michael will reserve a table for two at 7:00pm for olive garden", + "restaurant_reservation" + ], + [ + "a table for two needs to be reserved for 7:00pm at olive garden using the name michael", + "restaurant_reservation" + ], + [ + "please reserve a table for two at olive garden at 7:00pm for michael", + "restaurant_reservation" + ], + [ + "get reservations at olive garden for two at 7:00pm under michael", + "restaurant_reservation" + ], + [ + "reservations for two need to be made using michael's name for 7:00pm at olive garden", + "restaurant_reservation" + ], + [ + "i want to eat at seven in the restaurant for two people", + "restaurant_reservation" + ], + [ + "what are my coffers at", + "balance" + ], + [ + "tell me the current balance of my bank accounts", + "balance" + ], + [ + "what's my current bank account total", + "balance" + ], + [ + "how much do i have in my bank accounts", + "balance" + ], + [ + "what's the balance in my bank accounts", + "balance" + ], + [ + "what do i have in my bank accounts right now", + "balance" + ], + [ + "is there enough in my wells fargo account to buy some nike's", + "balance" + ], + [ + "do i have enough in my wells fargo account to get some nike's", + "balance" + ], + [ + "do i have money in my wells fargo account for nike's", + "balance" + ], + [ + "i want some nike's, is there enough in my wells fargo account", + "balance" + ], + [ + "check my wells fargo account to see if i have enough for these nike's", + "balance" + ], + [ + "would you tell me my bank balance", + "balance" + ], + [ + "can you tell me my bank balance", + "balance" + ], + [ + "will you let me know my bank balance", + "balance" + ], + [ + "will you tell me my bank balance", + "balance" + ], + [ + "how much money is there in my bank accounts", + "balance" + ], + [ + "how much money do i have in my various bank accounts", + "balance" + ], + [ + "how much cash do i have in my various bank accounts", + "balance" + ], + [ + "how much cash do i have in my bank accounts", + "balance" + ], + [ + "how much dough do i have in my bank accounts", + "balance" + ], + [ + "whats the combined total of the money inside my bank accounts", + "balance" + ], + [ + "whats my bank accounts look like", + "balance" + ], + [ + "how much moola is in my bank accounts", + "balance" + ], + [ + "what the numerical number inside my bank accounts", + "balance" + ], + [ + "how much does my bank account have", + "balance" + ], + [ + "tell me the current account balance", + "balance" + ], + [ + "check my checking balance", + "balance" + ], + [ + "how much do i have left in my checking account", + "balance" + ], + [ + "what's my checking look like", + "balance" + ], + [ + "how much do i have in my savings account", + "balance" + ], + [ + "confirm my reservation for march 12 at 9:00 am", + "confirm_reservation" + ], + [ + "please confirm that i have a reservation for march 1st at 7", + "confirm_reservation" + ], + [ + "can you confirm that i have a reservation for february 21 at 6 o'clock", + "confirm_reservation" + ], + [ + "verify my reservation for smith and wollensky at 6:45", + "confirm_reservation" + ], + [ + "please confirm my reservation for bar les freres at 7", + "confirm_reservation" + ], + [ + "tell me whether or not i have a reservation at gramercy tavern for tad", + "confirm_reservation" + ], + [ + "can you confirm that i have a reservation for 2/20 at 6:00 pm", + "confirm_reservation" + ], + [ + "please tell me if i still have a reservation at acero for susie", + "confirm_reservation" + ], + [ + "please confirm my reservation at brio for theodore", + "confirm_reservation" + ], + [ + "confirm my reservation for acero at 7", + "confirm_reservation" + ], + [ + "please confirm that i have a reservation for 2/20 at 6:00 pm", + "confirm_reservation" + ], + [ + "confirm that there is a reservation at bellagio for thomas", + "confirm_reservation" + ], + [ + "can you confirm the reservation at fleming's for jane", + "confirm_reservation" + ], + [ + "are there reservation for joe and will", + "confirm_reservation" + ], + [ + "please verify my reservation for john at bardenay", + "confirm_reservation" + ], + [ + "will you call and check on my reservation for john at bardenay", + "confirm_reservation" + ], + [ + "is my reservation set for john at bardenay", + "confirm_reservation" + ], + [ + "do we know if my reservation for john at bardenay was accepted", + "confirm_reservation" + ], + [ + "has my reservation for john at bardenay been confirmed", + "confirm_reservation" + ], + [ + "let's try and confirm my reservation for bubble bar under \"franklin", + "confirm_reservation" + ], + [ + "i need to confirm my reservation for red lobster for frank", + "confirm_reservation" + ], + [ + "find my reservation for steve at crucere's and confirm it, please", + "confirm_reservation" + ], + [ + "confirm the john reservation at applebee's", + "confirm_reservation" + ], + [ + "i'd like to confirm the josh reservation at moe's", + "confirm_reservation" + ], + [ + "i have a reservation for strip house for jennifer that i'd like to confirm", + "confirm_reservation" + ], + [ + "please try to confirm my reservation for jim at barney's", + "confirm_reservation" + ], + [ + "confirm my reservation for joe at hoss's", + "confirm_reservation" + ], + [ + "i need to confirm the reservation for frank at chili's", + "confirm_reservation" + ], + [ + "i'll be confirming my reservation for joseph at red lobster", + "confirm_reservation" + ], + [ + "is there a reservation for mark at mimis", + "confirm_reservation" + ], + [ + "can you freeze my bank account", + "freeze_account" + ], + [ + "i want to freeze my bank account", + "freeze_account" + ], + [ + "i want my account locked out", + "freeze_account" + ], + [ + "stop all access to my account", + "freeze_account" + ], + [ + "i need my account frozen!", + "freeze_account" + ], + [ + "i need to lock my account right now!", + "freeze_account" + ], + [ + "please force my account to freeze", + "freeze_account" + ], + [ + "please stop my account", + "freeze_account" + ], + [ + "please allow my account to freeze", + "freeze_account" + ], + [ + "please put my account on hold", + "freeze_account" + ], + [ + "freeze my account at the bank immediately", + "freeze_account" + ], + [ + "would you be able to freeze my bank account", + "freeze_account" + ], + [ + "my account at the bank needs to be frozen", + "freeze_account" + ], + [ + "please block my discover account immediately", + "freeze_account" + ], + [ + "please put a block on my citi account immediately", + "freeze_account" + ], + [ + "block my american saving bank for now", + "freeze_account" + ], + [ + "block my bank of america immdediately", + "freeze_account" + ], + [ + "put a block on bank of amerian immediately", + "freeze_account" + ], + [ + "my account needs to be frozen", + "freeze_account" + ], + [ + "freeze my account for me", + "freeze_account" + ], + [ + "put a freeze on my account", + "freeze_account" + ], + [ + "could you please put a stop on my bank account", + "freeze_account" + ], + [ + "i need to put a stop on my bank account", + "freeze_account" + ], + [ + "are you able to put a stop on my bank account", + "freeze_account" + ], + [ + "please put a stop on my bank account", + "freeze_account" + ], + [ + "i am hoping you can put a stop on my bank account", + "freeze_account" + ], + [ + "please put a freeze on my banking account", + "freeze_account" + ], + [ + "i need my bank account frozen", + "freeze_account" + ], + [ + "how do i freeze my bank account", + "freeze_account" + ], + [ + "would you freeze my bank account", + "freeze_account" + ], + [ + "i heard i can transfer my 401k, but don't know how, do you", + "rollover_401k" + ], + [ + "i need some help with transferring my 401k, can you help", + "rollover_401k" + ], + [ + "can you tell me how to transfer my 401k", + "rollover_401k" + ], + [ + "i want to transfer my 401k", + "rollover_401k" + ], + [ + "i wanna transfer my 401k", + "rollover_401k" + ], + [ + "i have to rollover my 401k", + "rollover_401k" + ], + [ + "i must rollover my 401k", + "rollover_401k" + ], + [ + "i want help to transfer my 401k", + "rollover_401k" + ], + [ + "help me to transfer my 401k", + "rollover_401k" + ], + [ + "i will rollover my 401k", + "rollover_401k" + ], + [ + "i need help to transfer my 401k", + "rollover_401k" + ], + [ + "i want to rollover my 401k", + "rollover_401k" + ], + [ + "how do i transfer my 401k to a new firm", + "rollover_401k" + ], + [ + "how do i roll over my 401k", + "rollover_401k" + ], + [ + "can i move my 401k to an ira", + "rollover_401k" + ], + [ + "how do i do a 401(k) rollover", + "rollover_401k" + ], + [ + "can 401ks be moved", + "rollover_401k" + ], + [ + "can i transfer my 401k somewhere", + "rollover_401k" + ], + [ + "how do i switch 401k companies", + "rollover_401k" + ], + [ + "tell me how to roll over my 401k", + "rollover_401k" + ], + [ + "how can i transfer my 401k", + "rollover_401k" + ], + [ + "what are the steps to rollover my 401k", + "rollover_401k" + ], + [ + "my 401k, can i roll it over", + "rollover_401k" + ], + [ + "i want to rollover my 401k , can i", + "rollover_401k" + ], + [ + "help me rollover my 401k", + "rollover_401k" + ], + [ + "do you know the process to rollover my 401k", + "rollover_401k" + ], + [ + "tell me how to rollover my 401k", + "rollover_401k" + ], + [ + "my 401k needs to rollover and i need your help", + "rollover_401k" + ], + [ + "let me know how to rollover my 401k", + "rollover_401k" + ], + [ + "what do i have to do to transfer my 401k", + "rollover_401k" + ], + [ + "what company made this ai", + "who_made_you" + ], + [ + "what is the name of the person who made you", + "who_made_you" + ], + [ + "who is the person that brought you to life", + "who_made_you" + ], + [ + "who is the one that made you", + "who_made_you" + ], + [ + "who is your maker", + "who_made_you" + ], + [ + "which company made you", + "who_made_you" + ], + [ + "who assembled you", + "who_made_you" + ], + [ + "i wanna know who programmed you", + "who_made_you" + ], + [ + "let me know who programmed you", + "who_made_you" + ], + [ + "who made you", + "who_made_you" + ], + [ + "i wanna know your maker", + "who_made_you" + ], + [ + "who was your maker", + "who_made_you" + ], + [ + "who is the one who programmed you", + "who_made_you" + ], + [ + "i must know who programmed you", + "who_made_you" + ], + [ + "tell me who your maker was", + "who_made_you" + ], + [ + "what was the company that designed you", + "who_made_you" + ], + [ + "do you know what company were you designed by", + "who_made_you" + ], + [ + "let me know which company were you designed by", + "who_made_you" + ], + [ + "what company were you designed by", + "who_made_you" + ], + [ + "can you let me know what company were you designed by", + "who_made_you" + ], + [ + "which company were you designed by", + "who_made_you" + ], + [ + "tell me who made you please", + "who_made_you" + ], + [ + "can you tell me who made you", + "who_made_you" + ], + [ + "whats the name of the person who made you", + "who_made_you" + ], + [ + "what company did the design for this", + "who_made_you" + ], + [ + "what company did this design", + "who_made_you" + ], + [ + "what company is responsible for this design", + "who_made_you" + ], + [ + "what company designed this", + "who_made_you" + ], + [ + "for this design, what company did it", + "who_made_you" + ], + [ + "name the person or group that programmed you", + "who_made_you" + ], + [ + "which way do we go and how long will it take to get to the sears tower in chicago", + "distance" + ], + [ + "so, does it take long to get to dodger stadium in anaheim", + "distance" + ], + [ + "how many minutes will it take to get to the empire state building in manhattan", + "distance" + ], + [ + "what's the mileage to get the the taj mahal in atlantic city", + "distance" + ], + [ + "does it take long to get to yankee stadium in the bronx", + "distance" + ], + [ + "how much time is left until we get there", + "distance" + ], + [ + "what's the time to destination going via bus to omaha", + "distance" + ], + [ + "how far from our destination are we", + "distance" + ], + [ + "how many minutes am i from texaco", + "distance" + ], + [ + "how long will i be on the bus if i rid it to seattle", + "distance" + ], + [ + "is it going to be much longer until i reach the bank", + "distance" + ], + [ + "am i close to arriving at the post office", + "distance" + ], + [ + "what's the estimated travel time to get to dc via bus", + "distance" + ], + [ + "when will i arrive at hy-vee", + "distance" + ], + [ + "how long does it take to get to el paso on a bus", + "distance" + ], + [ + "how long will it take me to get to walmart", + "distance" + ], + [ + "what's the average time to boston when riding a bus", + "distance" + ], + [ + "when will the bus get me to vermont", + "distance" + ], + [ + "how long will i be on the bus to new orleans", + "distance" + ], + [ + "how long is a bus ride to staples", + "distance" + ], + [ + "how long does it take to get downtown by bus", + "distance" + ], + [ + "what time will i get to the beach taking the bus", + "distance" + ], + [ + "how far am i from orlando", + "distance" + ], + [ + "give me an eta on when i will arrive at my destination", + "distance" + ], + [ + "tell me how much longer i will have to drive to reach the destination", + "distance" + ], + [ + "when will i get to orlando", + "distance" + ], + [ + "how much farther is orlando from my location", + "distance" + ], + [ + "do i have a ways to go or am i close to getting to penn station", + "distance" + ], + [ + "please give me the approximate amount of time i will need to go from jfk international airport to penn station", + "distance" + ], + [ + "can you tell me about what time i should be arriving at the airport", + "distance" + ], + [ + "how do you refer to me", + "user_name" + ], + [ + "call my name", + "user_name" + ], + [ + "what do i go by", + "user_name" + ], + [ + "say my name", + "user_name" + ], + [ + "what do you think my name is", + "user_name" + ], + [ + "what do you think i'm called", + "user_name" + ], + [ + "what do you have for my name", + "user_name" + ], + [ + "how do you address my name", + "user_name" + ], + [ + "what's your designation", + "user_name" + ], + [ + "what do you call me", + "user_name" + ], + [ + "i want to hear my name", + "user_name" + ], + [ + "my name", + "user_name" + ], + [ + "what's my name", + "user_name" + ], + [ + "what's my name on file", + "user_name" + ], + [ + "what name do you have for me", + "user_name" + ], + [ + "what did i tell you to call me", + "user_name" + ], + [ + "please tell me the name that you have for me", + "user_name" + ], + [ + "i need to know the name that you have for me", + "user_name" + ], + [ + "can you tell me what name you have for me", + "user_name" + ], + [ + "tell me what name you have for me", + "user_name" + ], + [ + "i would like to know the name you have for me", + "user_name" + ], + [ + "what is the name you have for me", + "user_name" + ], + [ + "could you tell me my name", + "user_name" + ], + [ + "do you have a name for me", + "user_name" + ], + [ + "can you tell me my name for me", + "user_name" + ], + [ + "what's the name you use for me", + "user_name" + ], + [ + "you call me what", + "user_name" + ], + [ + "what do you know me by", + "user_name" + ], + [ + "you know me by what right now", + "user_name" + ], + [ + "what's the way you refer to me", + "user_name" + ], + [ + "what's the timezone for britain", + "timezone" + ], + [ + "i need the time zone for la", + "timezone" + ], + [ + "i would like to know the timezone for britain", + "timezone" + ], + [ + "i need la's time zone", + "timezone" + ], + [ + "i need to know britain's timezone", + "timezone" + ], + [ + "what timezone is britain in", + "timezone" + ], + [ + "can you tell me britain's timezone", + "timezone" + ], + [ + "what is the la's time zone", + "timezone" + ], + [ + "can you tell me the time zone for la", + "timezone" + ], + [ + "what is texas's timezone", + "timezone" + ], + [ + "tell me the timezone for california", + "timezone" + ], + [ + "what timezone would missouri be in", + "timezone" + ], + [ + "what timezone do they use in arizona", + "timezone" + ], + [ + "is new york in mountain timezone", + "timezone" + ], + [ + "what is the timezone for la", + "timezone" + ], + [ + "what is the timezone for new york", + "timezone" + ], + [ + "what is the timezone for san francisco", + "timezone" + ], + [ + "what is the timezone for paris", + "timezone" + ], + [ + "what is the timezone for houston", + "timezone" + ], + [ + "denver's timezone is what", + "timezone" + ], + [ + "does denver reside in the eastern timezones", + "timezone" + ], + [ + "which timezone is denver located", + "timezone" + ], + [ + "denver's timezone is a mystery, i wonder where its located", + "timezone" + ], + [ + "in which time zone does denver reside", + "timezone" + ], + [ + "what's the timezone in valencia", + "timezone" + ], + [ + "what's the timezone now in hiram", + "timezone" + ], + [ + "timezone in salt lake city", + "timezone" + ], + [ + "timezone currently in mobile", + "timezone" + ], + [ + "what time is it in phoenix", + "timezone" + ], + [ + "can you give me the timezone for the country", + "timezone" + ], + [ + "i don't like this song, can skip it", + "next_song" + ], + [ + "can we move onto the next song", + "next_song" + ], + [ + "skip this song, please", + "next_song" + ], + [ + "can you swipe to the next song", + "next_song" + ], + [ + "next song, please!", + "next_song" + ], + [ + "start the next song", + "next_song" + ], + [ + "go to the next song and play it", + "next_song" + ], + [ + "move forward one song", + "next_song" + ], + [ + "play the next one", + "next_song" + ], + [ + "skip to next track", + "next_song" + ], + [ + "skip ahead one song", + "next_song" + ], + [ + "go to upcoming song", + "next_song" + ], + [ + "play the next song please", + "next_song" + ], + [ + "i dont want to listen to this song", + "next_song" + ], + [ + "could you hit next", + "next_song" + ], + [ + "can you go to the next song", + "next_song" + ], + [ + "let's go to the next song please", + "next_song" + ], + [ + "maybe we can go to the next song", + "next_song" + ], + [ + "may i suggest we go to the next song", + "next_song" + ], + [ + "please can we go to the next song", + "next_song" + ], + [ + "might we go to the next song", + "next_song" + ], + [ + "next track", + "next_song" + ], + [ + "skip to the next track", + "next_song" + ], + [ + "skip this track", + "next_song" + ], + [ + "play next song", + "next_song" + ], + [ + "next song", + "next_song" + ], + [ + "change this song please", + "next_song" + ], + [ + "i want you to play the next song", + "next_song" + ], + [ + "play the next song please if you would", + "next_song" + ], + [ + "please play the next track", + "next_song" + ], + [ + "i need to know all my spending transactions", + "transactions" + ], + [ + "when did i last make a purchase", + "transactions" + ], + [ + "how much did i spend on my most recent transaction", + "transactions" + ], + [ + "show me my ten most recent transactions on account xyz", + "transactions" + ], + [ + "i want to see all transactions in the past month for all accounts", + "transactions" + ], + [ + "show me my recent transactions from account xyz", + "transactions" + ], + [ + "open bank app and show my most recent transactions", + "transactions" + ], + [ + "are you able to find my recent transactions for me", + "transactions" + ], + [ + "i made a transaction recently", + "transactions" + ], + [ + "what was my recent transaction", + "transactions" + ], + [ + "i want to know what my recent transaction was", + "transactions" + ], + [ + "i need information about my recent transaction", + "transactions" + ], + [ + "state recent transaction", + "transactions" + ], + [ + "is my visa bill over my limit this month", + "transactions" + ], + [ + "what have i spent things on", + "transactions" + ], + [ + "show my transactions", + "transactions" + ], + [ + "what were my last 10 charges on my credit card", + "transactions" + ], + [ + "show what i have spent things on", + "transactions" + ], + [ + "how much have i spent on my debit card this month", + "transactions" + ], + [ + "how much have i spent on my bank card sine i last paid my bill", + "transactions" + ], + [ + "how much was my last target trip", + "transactions" + ], + [ + "can you verify my recent visa card transaction", + "transactions" + ], + [ + "what was my recent transaction on my visa card", + "transactions" + ], + [ + "what is the last transaction on my visa card", + "transactions" + ], + [ + "show my my most recent visa card transaction", + "transactions" + ], + [ + "please review my recent visa card transaction", + "transactions" + ], + [ + "how many transactions do i have on flower shops from last wednesday between 2pm and 7pm", + "transactions" + ], + [ + "what transactions did i make on electronics this morning after 6am", + "transactions" + ], + [ + "what is the largest transaction i have made on video games this month", + "transactions" + ], + [ + "what transactions do i have on groceries from yesterday", + "transactions" + ], + [ + "please give me the name of a few good options for places to eat dinner tonight", + "restaurant_suggestion" + ], + [ + "i need some suggestions for dinner places tonight", + "restaurant_suggestion" + ], + [ + "what are some good places to go out for dinner in my area tonight", + "restaurant_suggestion" + ], + [ + "show me some restaurants that have high reviews for eating out", + "restaurant_suggestion" + ], + [ + "can you search recommended casual restaurants for tonight in philadelphia", + "restaurant_suggestion" + ], + [ + "where can i go to eat", + "restaurant_suggestion" + ], + [ + "where can i get some good food", + "restaurant_suggestion" + ], + [ + "in cleveland, are there any good places that serve clams", + "restaurant_suggestion" + ], + [ + "does cleveland have any good places that serve clams", + "restaurant_suggestion" + ], + [ + "can you find any good places in cleveland that serve clams", + "restaurant_suggestion" + ], + [ + "are there good clam places in cleveland", + "restaurant_suggestion" + ], + [ + "are there any good places in cleveland that serve clams", + "restaurant_suggestion" + ], + [ + "could you suggest a french restaurant, please", + "restaurant_suggestion" + ], + [ + "can you suggest a french restaurant", + "restaurant_suggestion" + ], + [ + "can you suggest a thai restaurant", + "restaurant_suggestion" + ], + [ + "can you suggest a french restaurant, please", + "restaurant_suggestion" + ], + [ + "can you suggest a thai restaurant, please", + "restaurant_suggestion" + ], + [ + "are there are any good places in washington that serve cheese pizza", + "restaurant_suggestion" + ], + [ + "what's the food can easily get in canada", + "restaurant_suggestion" + ], + [ + "what are the best places to get shrimp in chicago", + "restaurant_suggestion" + ], + [ + "what are the best restaurants open tonight", + "restaurant_suggestion" + ], + [ + "i need a list of good places to eat near me", + "restaurant_suggestion" + ], + [ + "pull up some recommendations for places serving fish in maine", + "restaurant_suggestion" + ], + [ + "where should i go for food tonight", + "restaurant_suggestion" + ], + [ + "where should i eat", + "restaurant_suggestion" + ], + [ + "any fantastic restaurants to get shrimp at in atlanta", + "restaurant_suggestion" + ], + [ + "give me a list of places that serve the best wings in charlotte", + "restaurant_suggestion" + ], + [ + "i need reviews for places serving tacos in chicago", + "restaurant_suggestion" + ], + [ + "give me restaurant reccomendations", + "restaurant_suggestion" + ], + [ + "where can i satisfy my craving for french food in milwaukee", + "restaurant_suggestion" + ], + [ + "x card has earned how many points", + "rewards_balance" + ], + [ + "can you give me a points update on my rewards plus card", + "rewards_balance" + ], + [ + "can you pull up how many points i've earned with travel card", + "rewards_balance" + ], + [ + "what is the updated points that i earned with synovus card", + "rewards_balance" + ], + [ + "how many points do i have on my six flags rewards card", + "rewards_balance" + ], + [ + "i would like to check my rewards for my credit card", + "rewards_balance" + ], + [ + "i need to check my rewards for my credit card", + "rewards_balance" + ], + [ + "i wanna know how many points have i earned with my credit card", + "rewards_balance" + ], + [ + "i would like to know my debit card's rewards balance", + "rewards_balance" + ], + [ + "i would like to know how many points have i earned with my credit card", + "rewards_balance" + ], + [ + "i need to know my credit card's rewards balance", + "rewards_balance" + ], + [ + "i wanna know my credit card's rewards balance", + "rewards_balance" + ], + [ + "i really need to check my rewards for my credit card", + "rewards_balance" + ], + [ + "i would like to check my rewards for my debit card", + "rewards_balance" + ], + [ + "i wish to know my debit card's rewards balance", + "rewards_balance" + ], + [ + "i wanna check my rewards for my credit card", + "rewards_balance" + ], + [ + "tell me my debit card's rewards balance", + "rewards_balance" + ], + [ + "i need to understand how many points have i earned with my credit card", + "rewards_balance" + ], + [ + "i must know how many points have i earned with my credit card", + "rewards_balance" + ], + [ + "i gotta know how many points i have gotten with my debit card", + "rewards_balance" + ], + [ + "how many points earned do i have with my american express card", + "rewards_balance" + ], + [ + "how many points have i earned with my paypal credit card so far", + "rewards_balance" + ], + [ + "i have points on my capital one card and i'd like to know how many i've earned", + "rewards_balance" + ], + [ + "have i earned points with my venture card, and how many", + "rewards_balance" + ], + [ + "what do my visa points look like", + "rewards_balance" + ], + [ + "how many points do i have on my visa", + "rewards_balance" + ], + [ + "tell me the number of points on my visa card", + "rewards_balance" + ], + [ + "give me the point total on my visa card", + "rewards_balance" + ], + [ + "what points have i earned on my visa", + "rewards_balance" + ], + [ + "how many rewards points do i have on my rewards points i have on my mastercard", + "rewards_balance" + ], + [ + "i have a car payment that needs to be paid", + "pay_bill" + ], + [ + "i need to put in a payment towards my phone bill", + "pay_bill" + ], + [ + "help me get my gas bill paid", + "pay_bill" + ], + [ + "pay my con edison bill using my capital one account", + "pay_bill" + ], + [ + "use my navy federal account and pay this month's verizon bill, please", + "pay_bill" + ], + [ + "please pay my sprint bill using my bank of america checking account", + "pay_bill" + ], + [ + "i need some assistance paying my utilities bill", + "pay_bill" + ], + [ + "i need a hand getting this gas bill paid", + "pay_bill" + ], + [ + "can you help me pay my electricity bill", + "pay_bill" + ], + [ + "i have to pay my water bill but need help doing it", + "pay_bill" + ], + [ + "i am going to need help paying my rent bill", + "pay_bill" + ], + [ + "i want to pay my bill", + "pay_bill" + ], + [ + "can you help me pay my bill", + "pay_bill" + ], + [ + "i want to pay my bill through the app", + "pay_bill" + ], + [ + "pay my electric bill for me", + "pay_bill" + ], + [ + "pull up my electric bill, i want to pay it", + "pay_bill" + ], + [ + "how do i pay my electric bill", + "pay_bill" + ], + [ + "i want to pay my electric bill, can you do it for me", + "pay_bill" + ], + [ + "pay my light bill", + "pay_bill" + ], + [ + "pay my utility bill from my bank account", + "pay_bill" + ], + [ + "charge my internet bill to the corporate account", + "pay_bill" + ], + [ + "pay my gas bill with my checking account", + "pay_bill" + ], + [ + "i need to pay my electric bill", + "pay_bill" + ], + [ + "i know i should pay my electric bill", + "pay_bill" + ], + [ + "today my electric bill will be paid, or should be", + "pay_bill" + ], + [ + "today is the day i should pay my electric bill", + "pay_bill" + ], + [ + "my electric bill should be paid today", + "pay_bill" + ], + [ + "i need to pay my visa", + "pay_bill" + ], + [ + "pay $175 on my visa", + "pay_bill" + ], + [ + "i'd like to pay $4735 to my water bill", + "pay_bill" + ], + [ + "what's the total i've spent on shoes this month", + "spending_history" + ], + [ + "how many dollars have i spent on coffee this month", + "spending_history" + ], + [ + "what have i spent on food this month", + "spending_history" + ], + [ + "how much have i spent on tires this month", + "spending_history" + ], + [ + "how much have i been spending on booze this month", + "spending_history" + ], + [ + "what have i spent on fast food recently", + "spending_history" + ], + [ + "how much total have i spent on fast food lately", + "spending_history" + ], + [ + "how much fast food have i bought recently", + "spending_history" + ], + [ + "check how much i spent this week", + "spending_history" + ], + [ + "how much money have i spent on fast food lately", + "spending_history" + ], + [ + "how much money have a spent in the last week", + "spending_history" + ], + [ + "how much money did i spend this weekend", + "spending_history" + ], + [ + "tell me how much money i've spent on fast food in the past week", + "spending_history" + ], + [ + "what is the total amount i spent last week", + "spending_history" + ], + [ + "what've i spent on gas this month", + "spending_history" + ], + [ + "have i gone over my entertainment budget", + "spending_history" + ], + [ + "would you say i've spent too much money on chips as of late", + "spending_history" + ], + [ + "looking at this week only, have i overspent on hoagies", + "spending_history" + ], + [ + "do i overspend when it comes to fast food", + "spending_history" + ], + [ + "looking at the past month, what did i spend total", + "spending_history" + ], + [ + "have i gone over my chocolate budget lately", + "spending_history" + ], + [ + "how much have i spent this week", + "spending_history" + ], + [ + "about how much did i spend recently", + "spending_history" + ], + [ + "tell me how much i have been buying as of late", + "spending_history" + ], + [ + "what did i spend on beer last month", + "spending_history" + ], + [ + "did i stick to my dinner budget", + "spending_history" + ], + [ + "how much have i spent on video games recently", + "spending_history" + ], + [ + "do i spend too much on beer", + "spending_history" + ], + [ + "what are my finances like lately", + "spending_history" + ], + [ + "how much money have i spent recently", + "spending_history" + ], + [ + "did my vacation get approval", + "pto_request_status" + ], + [ + "do you know if vacation got approved", + "pto_request_status" + ], + [ + "does my vacation have approval", + "pto_request_status" + ], + [ + "can you let me know if my vacation was approved", + "pto_request_status" + ], + [ + "any news on my vacation", + "pto_request_status" + ], + [ + "tell me if my vacation was approved yet", + "pto_request_status" + ], + [ + "was there any progress on my vacation request", + "pto_request_status" + ], + [ + "is my vacation approved", + "pto_request_status" + ], + [ + "is my request going to be approved for vacation", + "pto_request_status" + ], + [ + "is vacation a go", + "pto_request_status" + ], + [ + "will i get my time off approved", + "pto_request_status" + ], + [ + "how is my vacation looking", + "pto_request_status" + ], + [ + "did the manager approve my vacation yet", + "pto_request_status" + ], + [ + "any new info on my vacation", + "pto_request_status" + ], + [ + "any update on my vacation", + "pto_request_status" + ], + [ + "is there a status update on my vacation approval", + "pto_request_status" + ], + [ + "can you notify me when my vacation days have approved", + "pto_request_status" + ], + [ + "when will my vacation time be confirmed", + "pto_request_status" + ], + [ + "when will i hear back about my days off", + "pto_request_status" + ], + [ + "am i okay to take those vacation days", + "pto_request_status" + ], + [ + "has my vacation time been approved", + "pto_request_status" + ], + [ + "what is the day off request status as of now", + "pto_request_status" + ], + [ + "what is the day off request status please", + "pto_request_status" + ], + [ + "what is the day off request status if you would tell me", + "pto_request_status" + ], + [ + "what is the day off request status", + "pto_request_status" + ], + [ + "what is the day off request status if you could tell me", + "pto_request_status" + ], + [ + "i need to know status of my day off request", + "pto_request_status" + ], + [ + "i want to know the status of my vacation request", + "pto_request_status" + ], + [ + "tell me status of my day off request", + "pto_request_status" + ], + [ + "please let me know the status of my vacation request", + "pto_request_status" + ], + [ + "i would like to know my credit score", + "credit_score" + ], + [ + "tell me what my credit score is", + "credit_score" + ], + [ + "can you find what my credit score is", + "credit_score" + ], + [ + "how is my credit score numberwise", + "credit_score" + ], + [ + "what credit score number do i have", + "credit_score" + ], + [ + "what is my credit score number", + "credit_score" + ], + [ + "how much is my credit score", + "credit_score" + ], + [ + "what number is my credit score currently", + "credit_score" + ], + [ + "is my credit score over 700 yet", + "credit_score" + ], + [ + "please give me my current credit score", + "credit_score" + ], + [ + "i'm trying to raise my credit score can you tell me what it is now", + "credit_score" + ], + [ + "i need to know what my credit score is", + "credit_score" + ], + [ + "could you tell me what my credit score is", + "credit_score" + ], + [ + "give me my credit score please", + "credit_score" + ], + [ + "could you share my credit score", + "credit_score" + ], + [ + "how's my credit score", + "credit_score" + ], + [ + "i was wondering what my credit score is", + "credit_score" + ], + [ + "where do i go for my credit score", + "credit_score" + ], + [ + "i need to find my credit score", + "credit_score" + ], + [ + "how can i locate my credit score", + "credit_score" + ], + [ + "what is my credit rating", + "credit_score" + ], + [ + "i want to know my credit rating", + "credit_score" + ], + [ + "my credit rating is what", + "credit_score" + ], + [ + "tell me my credit raing", + "credit_score" + ], + [ + "give me my credit rating", + "credit_score" + ], + [ + "please tell me what my credit score is", + "credit_score" + ], + [ + "i'd like you to check on my credit score", + "credit_score" + ], + [ + "let me know what my credit score is today", + "credit_score" + ], + [ + "can you check my credit score", + "credit_score" + ], + [ + "can you check my credit score for me", + "credit_score" + ], + [ + "i would like to get a new credt card", + "new_card" + ], + [ + "i would love to get a new credit card", + "new_card" + ], + [ + "do you have any information on how to open a new credit card", + "new_card" + ], + [ + "tell me how to apply for a new credit card", + "new_card" + ], + [ + "tell me how to apply for a credit card", + "new_card" + ], + [ + "i want to know how to go about getting a new credit card", + "new_card" + ], + [ + "please tell me how to get a new credit card", + "new_card" + ], + [ + "am i eligible for a new credit card", + "new_card" + ], + [ + "i need to get a new credit card application", + "new_card" + ], + [ + "what's the best way to get a mastercard", + "new_card" + ], + [ + "is this where i apply for a new credit card", + "new_card" + ], + [ + "how do i apply do get myself a visa", + "new_card" + ], + [ + "can you complete an application for a new credit card for me", + "new_card" + ], + [ + "i need to get a mastercard somehow", + "new_card" + ], + [ + "how can i get a visa card", + "new_card" + ], + [ + "can i apply here for a new card", + "new_card" + ], + [ + "does bank of america give credit cards to people like me", + "new_card" + ], + [ + "what do i do to get a visa card", + "new_card" + ], + [ + "is it possible for me to get a better credit card", + "new_card" + ], + [ + "how do i submit an application for a discover card", + "new_card" + ], + [ + "how do i apply for american express", + "new_card" + ], + [ + "find out if there's a new credit card that suits me", + "new_card" + ], + [ + "how do i apply for a new credit card", + "new_card" + ], + [ + "what's it take to get a mastercard", + "new_card" + ], + [ + "can i apply for a visa card", + "new_card" + ], + [ + "how do i apply for a visa card", + "new_card" + ], + [ + "i wish to apply for a visa card", + "new_card" + ], + [ + "help me apply for a visa card", + "new_card" + ], + [ + "is there a list of good credit cards i can choose from to apply for", + "new_card" + ], + [ + "how can i find a new credit card to apply to", + "new_card" + ], + [ + "is my luggage lost", + "lost_luggage" + ], + [ + "why is my luggage not here", + "lost_luggage" + ], + [ + "what happened to my luggage", + "lost_luggage" + ], + [ + "i need help finding my luggage", + "lost_luggage" + ], + [ + "what steps should i take if my luggage has been lost", + "lost_luggage" + ], + [ + "i seem to have lost my luggage! what are my options now", + "lost_luggage" + ], + [ + "what would be the best way to deal with lost luggage", + "lost_luggage" + ], + [ + "it appears that my luggage has been lost", + "lost_luggage" + ], + [ + "i'm afraid my luggage has gone missing", + "lost_luggage" + ], + [ + "i am a bit panicked because my luggage seems to have gone missing", + "lost_luggage" + ], + [ + "i have no idea where my luggage went!", + "lost_luggage" + ], + [ + "unfortunately it would appear that my luggage is totally lost", + "lost_luggage" + ], + [ + "how should i proceed if i accidentally lost my luggage", + "lost_luggage" + ], + [ + "if i lost my luggage, what should i do next", + "lost_luggage" + ], + [ + "i have no idea where my luggage is", + "lost_luggage" + ], + [ + "i think my luggage has been misplaced", + "lost_luggage" + ], + [ + "what do i have to do if i lost my luggage", + "lost_luggage" + ], + [ + "i think my luggage is lost", + "lost_luggage" + ], + [ + "my luggage appears to be lost", + "lost_luggage" + ], + [ + "i can't seem to track down my luggage", + "lost_luggage" + ], + [ + "what is the next thing i should do if i lost my luggage", + "lost_luggage" + ], + [ + "what step should i take next if i lost my luggage", + "lost_luggage" + ], + [ + "i've lost my luggage what should i do now", + "lost_luggage" + ], + [ + "what should i do about losing my luggage", + "lost_luggage" + ], + [ + "where would i find my luggage", + "lost_luggage" + ], + [ + "my luggage has been misplaced", + "lost_luggage" + ], + [ + "i can't find my luggage", + "lost_luggage" + ], + [ + "i lost all my stuff that i had packed", + "lost_luggage" + ], + [ + "my luggage has disappeared", + "lost_luggage" + ], + [ + "it appears my luggage is lost", + "lost_luggage" + ], + [ + "may you say that again", + "repeat" + ], + [ + "can you please repeat that", + "repeat" + ], + [ + "can you please say that again", + "repeat" + ], + [ + "may you please say that again", + "repeat" + ], + [ + "would you say it again please", + "repeat" + ], + [ + "would you repeat what you said earlier", + "repeat" + ], + [ + "i would like you to repeat it", + "repeat" + ], + [ + "repeat please", + "repeat" + ], + [ + "pardon, i didn't hear you", + "repeat" + ], + [ + "i didn't hear you can you say that again", + "repeat" + ], + [ + "i didn't catch that", + "repeat" + ], + [ + "could you repeat that", + "repeat" + ], + [ + "say again please", + "repeat" + ], + [ + "would you mind repeating that", + "repeat" + ], + [ + "sorry, i didn't catch that could you say it again", + "repeat" + ], + [ + "i need you to repeat that please", + "repeat" + ], + [ + "repeat that for me please", + "repeat" + ], + [ + "what did you just say", + "repeat" + ], + [ + "please say it one more time", + "repeat" + ], + [ + "sorry i missed that", + "repeat" + ], + [ + "i didn't understand you", + "repeat" + ], + [ + "can you repeat the question again", + "repeat" + ], + [ + "can you phrase that question again", + "repeat" + ], + [ + "what'd you say", + "repeat" + ], + [ + "please repeat the last thing", + "repeat" + ], + [ + "repeat that", + "repeat" + ], + [ + "can you repeat that", + "repeat" + ], + [ + "what were you just saying", + "repeat" + ], + [ + "come again", + "repeat" + ], + [ + "can you say that again, please", + "repeat" + ], + [ + "tell me: car gas mileage", + "mpg" + ], + [ + "what is my car's gas mileage", + "mpg" + ], + [ + "tell me what the gas mileage is on my car", + "mpg" + ], + [ + "what is the gas mileage of my car", + "mpg" + ], + [ + "check: car gas mileage", + "mpg" + ], + [ + "what is my car's mpg", + "mpg" + ], + [ + "what is my car's mpg, please", + "mpg" + ], + [ + "what's my car's mpg", + "mpg" + ], + [ + "what's my car's mpg, please", + "mpg" + ], + [ + "what is the highway mpg of this car", + "mpg" + ], + [ + "hows the city mpg of this car", + "mpg" + ], + [ + "what is the highway mpg on this car like", + "mpg" + ], + [ + "what mpg does this car get in the city", + "mpg" + ], + [ + "how many mpg does this car get in the city", + "mpg" + ], + [ + "tell me about this car's highway mpg", + "mpg" + ], + [ + "can i have more information about this car's highway mpg", + "mpg" + ], + [ + "what is the city mpg on this car", + "mpg" + ], + [ + "whats the mpg for this car", + "mpg" + ], + [ + "whats the mpg of this car", + "mpg" + ], + [ + "i need to know my cars mpg", + "mpg" + ], + [ + "can i get this car's mpg", + "mpg" + ], + [ + "i would like to know the mpg of my car", + "mpg" + ], + [ + "what kind of mileage am i getting", + "mpg" + ], + [ + "what the mpg", + "mpg" + ], + [ + "can you tell me my vehicles mpg", + "mpg" + ], + [ + "whats the fuel economy of this car", + "mpg" + ], + [ + "what kind of mileage does this car get", + "mpg" + ], + [ + "mpg for this car please", + "mpg" + ], + [ + "what is the miles per gallon", + "mpg" + ], + [ + "how is the car's fuel economy", + "mpg" + ], + [ + "am i due for an oil change yet", + "oil_change_when" + ], + [ + "when is the next time i should change my oil", + "oil_change_when" + ], + [ + "when is my car due for its next oil change", + "oil_change_when" + ], + [ + "when am i due for my next oil change", + "oil_change_when" + ], + [ + "when should i get my next oil change", + "oil_change_when" + ], + [ + "when's the next time i should change my oil", + "oil_change_when" + ], + [ + "when should i get my car's oil changed next", + "oil_change_when" + ], + [ + "when is the next time i need to get an oil change", + "oil_change_when" + ], + [ + "when is my car's next oil change supposed to be", + "oil_change_when" + ], + [ + "how long until my next oil change", + "oil_change_when" + ], + [ + "when's the next time i ought to change my oil", + "oil_change_when" + ], + [ + "when's the next time i have to get an oil change", + "oil_change_when" + ], + [ + "when should i get my oil changed", + "oil_change_when" + ], + [ + "when should i get the oil changed in my car", + "oil_change_when" + ], + [ + "figure out when my car will next need an oil change", + "oil_change_when" + ], + [ + "can you recommend for me when to next get my oil changed", + "oil_change_when" + ], + [ + "when do you think i ought to change the oil in my car next", + "oil_change_when" + ], + [ + "how soon until i will need to get my oil changed", + "oil_change_when" + ], + [ + "find out for me when my car is next due for an oil change", + "oil_change_when" + ], + [ + "where can i find information on oil changes for my car", + "oil_change_when" + ], + [ + "what are the manufacturers guidance on oil changes", + "oil_change_when" + ], + [ + "is my car due for it's next oil change", + "oil_change_when" + ], + [ + "what is the recommended interval to get my oil changed", + "oil_change_when" + ], + [ + "when will i need my next oil change", + "oil_change_when" + ], + [ + "how often should i change the oil", + "oil_change_when" + ], + [ + "do i need to change my oil soon", + "oil_change_when" + ], + [ + "when will my oil change be due for this car", + "oil_change_when" + ], + [ + "is my oil change coming up soon", + "oil_change_when" + ], + [ + "what's my oil change status", + "oil_change_when" + ], + [ + "when does this car need oil changes", + "oil_change_when" + ], + [ + "i will say yes as my response", + "yes" + ], + [ + "my answer to your question is yes", + "yes" + ], + [ + "yes is my answer", + "yes" + ], + [ + "yes, ai, that is correct", + "yes" + ], + [ + "that's true", + "yes" + ], + [ + "that's correct", + "yes" + ], + [ + "that checks out", + "yes" + ], + [ + "that's right", + "yes" + ], + [ + "affirmative", + "yes" + ], + [ + "yes, that is factual", + "yes" + ], + [ + "yes, that happens to be correct", + "yes" + ], + [ + "that would be correct", + "yes" + ], + [ + "thats right", + "yes" + ], + [ + "yes, this is true", + "yes" + ], + [ + "sure", + "yes" + ], + [ + "okay", + "yes" + ], + [ + "definitely", + "yes" + ], + [ + "roger that", + "yes" + ], + [ + "i agree", + "yes" + ], + [ + "absolutely", + "yes" + ], + [ + "you're right", + "yes" + ], + [ + "yes, that's right", + "yes" + ], + [ + "please let's do it", + "yes" + ], + [ + "yes please", + "yes" + ], + [ + "can we please", + "yes" + ], + [ + "yes, please", + "yes" + ], + [ + "10-4", + "yes" + ], + [ + "ya", + "yes" + ], + [ + "yup", + "yes" + ], + [ + "great", + "yes" + ], + [ + "what are some interesting things i can do while in raleigh", + "travel_suggestion" + ], + [ + "can you help me pick some fun things to do in london during my trip", + "travel_suggestion" + ], + [ + "help me plan my traveling itinerary for my trip to madrid, i want to see lots of sights!", + "travel_suggestion" + ], + [ + "help me pick a new location to travel to", + "travel_suggestion" + ], + [ + "can you do some research about the best places to travel", + "travel_suggestion" + ], + [ + "tell me some fun activities to do in oklahoma city", + "travel_suggestion" + ], + [ + "what are some popular tourist activities in mexico city", + "travel_suggestion" + ], + [ + "i am itching to travel but don't know where to go", + "travel_suggestion" + ], + [ + "give me some recommendations of good tourist attractions in montreal", + "travel_suggestion" + ], + [ + "tell me some fun tourist attractions in london", + "travel_suggestion" + ], + [ + "give me some ideas of what to do during my trip to dallas", + "travel_suggestion" + ], + [ + "find out the best tourist attractions to visit in moscow", + "travel_suggestion" + ], + [ + "i want some suggestions for tourist activities in dublin", + "travel_suggestion" + ], + [ + "i am traveling to paris soon and would like some suggestions of what to do and see", + "travel_suggestion" + ], + [ + "what are some local attractions in portland", + "travel_suggestion" + ], + [ + "what sorts of activities should i get up to while i am in dublin", + "travel_suggestion" + ], + [ + "i want to explore a new place but don't know where i should go do you have any ideas", + "travel_suggestion" + ], + [ + "please give me some ideas of fun tourist activities to do while i am in paris", + "travel_suggestion" + ], + [ + "can you throw out some suggestions to me of places to travel to", + "travel_suggestion" + ], + [ + "suggest some things for me to do while i am in los angeles", + "travel_suggestion" + ], + [ + "let me know some things to do in phoenix", + "travel_suggestion" + ], + [ + "let me know some things i can do in dallas", + "travel_suggestion" + ], + [ + "i wanna know some things to do in phoenix", + "travel_suggestion" + ], + [ + "i would like to do some things in phoenix", + "travel_suggestion" + ], + [ + "tell me some things to do in phoenix", + "travel_suggestion" + ], + [ + "what are some fun silly things to do in new jersey", + "travel_suggestion" + ], + [ + "what are some cool tourist attractions in england", + "travel_suggestion" + ], + [ + "what are some fun local experiences in canada", + "travel_suggestion" + ], + [ + "what are some fun tourist things to do in mumbai", + "travel_suggestion" + ], + [ + "what are some fun cheap activities to do in colorado", + "travel_suggestion" + ], + [ + "which insurance plan to i have", + "insurance" + ], + [ + "do you know which insurance plan i have", + "insurance" + ], + [ + "what kind of insurance plan am i in", + "insurance" + ], + [ + "what health coverage do i have", + "insurance" + ], + [ + "what are the details on my health care plan", + "insurance" + ], + [ + "which insurance plan am i enrolled in", + "insurance" + ], + [ + "what is my health insurance", + "insurance" + ], + [ + "what insurance plan am i enrolled in", + "insurance" + ], + [ + "check on my health care plan", + "insurance" + ], + [ + "what's my health insurance plan", + "insurance" + ], + [ + "what sort of health benefits do i have", + "insurance" + ], + [ + "which health plan do i have, again", + "insurance" + ], + [ + "tell me about my health benefits", + "insurance" + ], + [ + "what's the name of my health insurance plan", + "insurance" + ], + [ + "explain my health benefits", + "insurance" + ], + [ + "what are my health insurance benefits", + "insurance" + ], + [ + "what specific health plan do i have", + "insurance" + ], + [ + "tell me the full name of my health plan", + "insurance" + ], + [ + "how do my health benefits work", + "insurance" + ], + [ + "can you tell me what health plan i am on", + "insurance" + ], + [ + "tell me my current health plan", + "insurance" + ], + [ + "which health plan am i currently enrolled in", + "insurance" + ], + [ + "i want to know what health plan i'm currently on", + "insurance" + ], + [ + "could you please inform me what health plan i am currently on", + "insurance" + ], + [ + "what are the benefits associated with my insurance", + "insurance" + ], + [ + "what are the benefits of having this insurance", + "insurance" + ], + [ + "what are my benefits with this insurance", + "insurance" + ], + [ + "what are my benefits on the insurance", + "insurance" + ], + [ + "google find out what health plan i am under", + "insurance" + ], + [ + "tell me what health plan coverage i have", + "insurance" + ], + [ + "cross grocery shopping off the todo list", + "todo_list_update" + ], + [ + "i don't need grocery shopping on my todo list anymore", + "todo_list_update" + ], + [ + "take grocery shopping off my todo list", + "todo_list_update" + ], + [ + "remove grocery shopping from todo list", + "todo_list_update" + ], + [ + "cross off grocery shopping from todo list", + "todo_list_update" + ], + [ + "i don't need mowing the lawn on my to do list anymore", + "todo_list_update" + ], + [ + "empty the contents of my to do list", + "todo_list_update" + ], + [ + "take everything off my to do list please", + "todo_list_update" + ], + [ + "take everything off my to do list", + "todo_list_update" + ], + [ + "please remove science fair from my to do list", + "todo_list_update" + ], + [ + "please put babysitting on my to do list", + "todo_list_update" + ], + [ + "please put lawn mowing on my list of to dos", + "todo_list_update" + ], + [ + "put the dishes on my list of things to do", + "todo_list_update" + ], + [ + "remove all items from my to do list", + "todo_list_update" + ], + [ + "take tennis practice off my to do list", + "todo_list_update" + ], + [ + "get rid of my to do list", + "todo_list_update" + ], + [ + "take dishes off the to do list", + "todo_list_update" + ], + [ + "add grocery shopping to my to do list", + "todo_list_update" + ], + [ + "remove laundry from my to do list", + "todo_list_update" + ], + [ + "please add laundry to the chores", + "todo_list_update" + ], + [ + "add mopping to the to do list", + "todo_list_update" + ], + [ + "please put dusting on my list of things to do", + "todo_list_update" + ], + [ + "please note vacuuming on my to do list", + "todo_list_update" + ], + [ + "insert mowing on the chore list", + "todo_list_update" + ], + [ + "you can dusting off my todo list", + "todo_list_update" + ], + [ + "you take sweeping of my todo list", + "todo_list_update" + ], + [ + "you can vacuuming of my todo list", + "todo_list_update" + ], + [ + "you can take laundry off my todo list", + "todo_list_update" + ], + [ + "you can take dishes off my todo list", + "todo_list_update" + ], + [ + "i need you to clear my todo list", + "todo_list_update" + ], + [ + "give me my reminders", + "reminder" + ], + [ + "what were the things that i wanted to remember", + "reminder" + ], + [ + "what were you supposed to remind me of", + "reminder" + ], + [ + "my list of reminders contains what", + "reminder" + ], + [ + "what did i want to remember", + "reminder" + ], + [ + "what did i ask you to remind me of", + "reminder" + ], + [ + "read my reminder list", + "reminder" + ], + [ + "is my meeting with frank on my list of reminders", + "reminder" + ], + [ + "list my reminders", + "reminder" + ], + [ + "what stuff am i trying to remember", + "reminder" + ], + [ + "what are my reminders", + "reminder" + ], + [ + "did i tell you to remind me about laundry", + "reminder" + ], + [ + "on my reminders list, is there an item called conference call", + "reminder" + ], + [ + "what items did i want to remember", + "reminder" + ], + [ + "what's on my list of things to remember", + "reminder" + ], + [ + "what kinds of things are you supposed to remind me of", + "reminder" + ], + [ + "is grocery shopping on my reminders list", + "reminder" + ], + [ + "i want to know my reminders", + "reminder" + ], + [ + "read my list of reminders", + "reminder" + ], + [ + "can you tell me the to do's on my reminder list", + "reminder" + ], + [ + "please go though the bullet points on my reminder list", + "reminder" + ], + [ + "what are all the things on my reminder list", + "reminder" + ], + [ + "i would like to hear the reminders that i listed on my things to remember list, please", + "reminder" + ], + [ + "what were the things i want to recall", + "reminder" + ], + [ + "can you please remind me of the items that i made note of to not forget", + "reminder" + ], + [ + "refresh my memory about what items i want to remember", + "reminder" + ], + [ + "remind me of the items on my list of things to remember", + "reminder" + ], + [ + "i'd like to just confirm all of the reminders currently on my list of reminders, please", + "reminder" + ], + [ + "please play my list of reminders", + "reminder" + ], + [ + "\"which things are wanted to remember", + "reminder" + ], + [ + "can i speed up your voice", + "change_speed" + ], + [ + "can i change your talking voice", + "change_speed" + ], + [ + "talk fast", + "change_speed" + ], + [ + "change voice speed", + "change_speed" + ], + [ + "change device talking speed", + "change_speed" + ], + [ + "speak it again slowly", + "change_speed" + ], + [ + "try to speak slowly", + "change_speed" + ], + [ + "will you please slow down your voice", + "change_speed" + ], + [ + "slow down your voice", + "change_speed" + ], + [ + "can you speak faster", + "change_speed" + ], + [ + "how do i change the speed of your voice", + "change_speed" + ], + [ + "can you talk faster", + "change_speed" + ], + [ + "how do i make you talk faster", + "change_speed" + ], + [ + "why are you talking so slowly", + "change_speed" + ], + [ + "speed up your talking", + "change_speed" + ], + [ + "talk faster", + "change_speed" + ], + [ + "you talk to slow", + "change_speed" + ], + [ + "can you adjust the speed of your voice", + "change_speed" + ], + [ + "can you talk more slowly", + "change_speed" + ], + [ + "go faster", + "change_speed" + ], + [ + "can you not talk so fast", + "change_speed" + ], + [ + "speak more quickly", + "change_speed" + ], + [ + "you're talking too fast", + "change_speed" + ], + [ + "you talk too slow", + "change_speed" + ], + [ + "please speak a bit faster", + "change_speed" + ], + [ + "double the speaking speed please", + "change_speed" + ], + [ + "speed up speech please", + "change_speed" + ], + [ + "change speaking speed to 50 percent faster", + "change_speed" + ], + [ + "your speech slower it", + "change_speed" + ], + [ + "make slower your speech", + "change_speed" + ], + [ + "give me the pressure for the tires on my car", + "tire_pressure" + ], + [ + "can you tell me the tire pressure for the car", + "tire_pressure" + ], + [ + "give me the tire pressure for the car", + "tire_pressure" + ], + [ + "go ahead and give me the tire pressure of my vehicle", + "tire_pressure" + ], + [ + "what exactly is the tire pressure for the car", + "tire_pressure" + ], + [ + "i must kniw how low are my tires on air", + "tire_pressure" + ], + [ + "please tell me my car's tire pressure", + "tire_pressure" + ], + [ + "i need to know how low are my tires on air", + "tire_pressure" + ], + [ + "i shall know how low are my tires on air", + "tire_pressure" + ], + [ + "tell me my car's tire pressure", + "tire_pressure" + ], + [ + "i gotta know my car;s tire pressure", + "tire_pressure" + ], + [ + "i would like to know my car's tire pressure", + "tire_pressure" + ], + [ + "i gotta know how low are my tires on air", + "tire_pressure" + ], + [ + "i wanna know my car's tire pressure", + "tire_pressure" + ], + [ + "i wanna know how low are my tires on air", + "tire_pressure" + ], + [ + "how can i find out what my tire pressure is", + "tire_pressure" + ], + [ + "how do i find out my tire pressure", + "tire_pressure" + ], + [ + "my tires are how low on air", + "tire_pressure" + ], + [ + "how low are my tires right now on air", + "tire_pressure" + ], + [ + "my tires are filled enough or no", + "tire_pressure" + ], + [ + "what's the tire pressure of my tires", + "tire_pressure" + ], + [ + "is there enough air in my tires", + "tire_pressure" + ], + [ + "my tires need how much more air in them", + "tire_pressure" + ], + [ + "are my tires filled properly", + "tire_pressure" + ], + [ + "are my tires filled enough", + "tire_pressure" + ], + [ + "what is the pressure of my tires", + "tire_pressure" + ], + [ + "do my tires have enough pressure", + "tire_pressure" + ], + [ + "what is the air pressure of my tires", + "tire_pressure" + ], + [ + "what is the level of air pressure of my tires", + "tire_pressure" + ], + [ + "is my tire pressure high", + "tire_pressure" + ], + [ + "that isn't right", + "no" + ], + [ + "that's incorrect", + "no" + ], + [ + "nope that's not it", + "no" + ], + [ + "no that isn't right", + "no" + ], + [ + "that's not correct", + "no" + ], + [ + "that isn't correct", + "no" + ], + [ + "that is incorrect", + "no" + ], + [ + "that's wrong", + "no" + ], + [ + "no, that is wrong", + "no" + ], + [ + "no, that is incorrect", + "no" + ], + [ + "no, definitely not", + "no" + ], + [ + "i'd say no", + "no" + ], + [ + "the statement is false", + "no" + ], + [ + "that's false", + "no" + ], + [ + "false", + "no" + ], + [ + "it is no", + "no" + ], + [ + "it is false", + "no" + ], + [ + "it is very much false", + "no" + ], + [ + "that has to be false", + "no" + ], + [ + "that is so false", + "no" + ], + [ + "that can't be true", + "no" + ], + [ + "that's a negatory", + "no" + ], + [ + "there is no way in heck that is true", + "no" + ], + [ + "nope not it", + "no" + ], + [ + "that is most definitely false", + "no" + ], + [ + "no, you are wrong", + "no" + ], + [ + "no, that is a falsehood", + "no" + ], + [ + "you got that wrong", + "no" + ], + [ + "that is the wrong answer", + "no" + ], + [ + "not right now", + "no" + ], + [ + "you need to tell me my credit card's apr", + "apr" + ], + [ + "now tell me my credit card's apr", + "apr" + ], + [ + "i need to know the apr on my wells fargo credit card", + "apr" + ], + [ + "tell me my chase credit card's apr", + "apr" + ], + [ + "tell me what my wells fargo credit card apr is", + "apr" + ], + [ + "what is my b of a credit card's apr", + "apr" + ], + [ + "can you tell me the apr of my target credit card", + "apr" + ], + [ + "what is my apr rate", + "apr" + ], + [ + "is my apr rate above average", + "apr" + ], + [ + "does my apr rate suck", + "apr" + ], + [ + "what is my card's apr rate", + "apr" + ], + [ + "is my apr rate better than most", + "apr" + ], + [ + "what's my credit card's annual percentage rate", + "apr" + ], + [ + "what's the annual percentage rate for my credit card", + "apr" + ], + [ + "how high is the apr on my credit card", + "apr" + ], + [ + "what's the apr on my credit card", + "apr" + ], + [ + "how much am i paying for apr on my credit card", + "apr" + ], + [ + "is my card's apr a decent rate", + "apr" + ], + [ + "can you tell me my apr on my credit card", + "apr" + ], + [ + "would you consider my apr to be good", + "apr" + ], + [ + "what's the current apr on my credit card", + "apr" + ], + [ + "what kind of credit card apr do i get", + "apr" + ], + [ + "what's my apr rate", + "apr" + ], + [ + "tell me my apr rate", + "apr" + ], + [ + "could you share my credit card's apr", + "apr" + ], + [ + "is my apr rate good", + "apr" + ], + [ + "i need to know what the current apr is for my chase sapphire, please", + "apr" + ], + [ + "can you find me the apr listed on the statement for my citi mastercard", + "apr" + ], + [ + "what's the apr on my capital one venture card", + "apr" + ], + [ + "inform me on what my credit card's apr is", + "apr" + ], + [ + "tell me nutritional info for brocoli", + "nutrition_info" + ], + [ + "tell me nutritional info for lettuce", + "nutrition_info" + ], + [ + "tell me nutritional info for fish", + "nutrition_info" + ], + [ + "tell me nutritional info for burger", + "nutrition_info" + ], + [ + "tell me nutritional info for beans", + "nutrition_info" + ], + [ + "how healthy is blueberrys", + "nutrition_info" + ], + [ + "how healthy is tacos", + "nutrition_info" + ], + [ + "how healthy is mcdonalds", + "nutrition_info" + ], + [ + "how healthy is a cheeseburger", + "nutrition_info" + ], + [ + "how healthy is rice", + "nutrition_info" + ], + [ + "find the nutrition info for whole milk for me", + "nutrition_info" + ], + [ + "what are the nutrition facts for greek yogurt", + "nutrition_info" + ], + [ + "find the nutrition info for ketchup for me", + "nutrition_info" + ], + [ + "what are the nutrition facts for cucumbers", + "nutrition_info" + ], + [ + "what are the nutrition facts for apple sauce", + "nutrition_info" + ], + [ + "what are the nutrition facts for peanut butter", + "nutrition_info" + ], + [ + "find the nutrition info for bell peppers for me", + "nutrition_info" + ], + [ + "find the nutrition info for cheese fries for me", + "nutrition_info" + ], + [ + "find the nutrition info for cucumbers for me", + "nutrition_info" + ], + [ + "what are the nutrition facts for carrots", + "nutrition_info" + ], + [ + "please give me the nutritional information for an egg", + "nutrition_info" + ], + [ + "what's the nutrition info for a pound of chicken", + "nutrition_info" + ], + [ + "tell me the nutrition info for a cup of milk", + "nutrition_info" + ], + [ + "what's the nutrition info for a cucumber", + "nutrition_info" + ], + [ + "give me the nutritional details for a cup of yogurt", + "nutrition_info" + ], + [ + "i need the nutrition facts for ramen", + "nutrition_info" + ], + [ + "tell me the nutrition facts for shepherd's pie", + "nutrition_info" + ], + [ + "i would like nutrition facts for spaghetti carbonara", + "nutrition_info" + ], + [ + "tell me spaghetti bolognese's nutrition facts", + "nutrition_info" + ], + [ + "i want the nutrition facts for buttered spaghetti", + "nutrition_info" + ], + [ + "do i have my nephew's birthday marked for november 10th", + "calendar" + ], + [ + "do i have any appoints set for my calendar april 3rd", + "calendar" + ], + [ + "did i set march 10th as my doctor's appointment", + "calendar" + ], + [ + "do i have any appointments on my calendar march 22nd", + "calendar" + ], + [ + "did i set a day on my calendar for voting in the next election", + "calendar" + ], + [ + "did i mark the mechanic's appointment on my calendar", + "calendar" + ], + [ + "do i have any calendars set for may 12th", + "calendar" + ], + [ + "what day did i set on my calendar for the first day of school", + "calendar" + ], + [ + "is anything on my calendar for june 22nd", + "calendar" + ], + [ + "what do i have going on on my calendar for march 18th", + "calendar" + ], + [ + "is my meeting with frank on my calendar", + "calendar" + ], + [ + "what do i have planned for 3/5", + "calendar" + ], + [ + "have i gotten around to adding the bike ride to my calendar yet", + "calendar" + ], + [ + "what events do i have going on on march 11th", + "calendar" + ], + [ + "i can't remember if i added the fun run to my calendar yet; did i", + "calendar" + ], + [ + "have i added my doctor's appointment to my calendar", + "calendar" + ], + [ + "do i have calendar events on march 19th", + "calendar" + ], + [ + "read my calendar for march 7th", + "calendar" + ], + [ + "do i have any items on my calendar for march 21st", + "calendar" + ], + [ + "do i have any calendar entries for march 8th", + "calendar" + ], + [ + "tell me what's on my calendar for march 22nd", + "calendar" + ], + [ + "is the marathon on friday added to my calendar", + "calendar" + ], + [ + "what's on my calendar for march 20th", + "calendar" + ], + [ + "what's on my calendar on march 10th", + "calendar" + ], + [ + "check my calendar for me, please", + "calendar" + ], + [ + "is event on my calendar", + "calendar" + ], + [ + "retrieve events on my calendar", + "calendar" + ], + [ + "is bowling on my calendar", + "calendar" + ], + [ + "on tuesday you are supposed to have a meeting", + "calendar" + ], + [ + "you have yo go to school on calendar", + "calendar" + ], + [ + "i'd like an uber for 6 people, going to walmart", + "uber" + ], + [ + "can you get me an uber to disney world", + "uber" + ], + [ + "get me an uber for 3 people uptown", + "uber" + ], + [ + "i need to go downtown with 2 people; can you get me an uber", + "uber" + ], + [ + "i'm going to need to book an uber to universal studios", + "uber" + ], + [ + "i need to get four people to red lobster; can you order me an uber", + "uber" + ], + [ + "i'm going to need an uber for 4 people to go to patty's bar", + "uber" + ], + [ + "i need to get to the staples center; can you call me an uber", + "uber" + ], + [ + "find me an uber to the liberty bell", + "uber" + ], + [ + "i need an uber to madison square garden", + "uber" + ], + [ + "i need an uber to get to the bank", + "uber" + ], + [ + "can i get an uber to drive me to the movies", + "uber" + ], + [ + "contact uber and have them pick me up", + "uber" + ], + [ + "can i take an uber to the statue of liberty", + "uber" + ], + [ + "i need an uber for 5 to go to the concerthall", + "uber" + ], + [ + "get a uber for two to go to a romantic dinner at mcdonalds", + "uber" + ], + [ + "please call an uber for 6 people to go to amazon's southside warehouse", + "uber" + ], + [ + "find me an uber and get it here", + "uber" + ], + [ + "is there an uber that drives to the bank on 5th that can hold 3 people", + "uber" + ], + [ + "we'd like an uber for 4 to take us to the olive garden", + "uber" + ], + [ + "i want an uber for one person to go to bank of america", + "uber" + ], + [ + "can i get an uber for 2 to go to austin", + "uber" + ], + [ + "call me an uber please", + "uber" + ], + [ + "is it possible to take an uber to burger king", + "uber" + ], + [ + "book me an uber for a party of 5 to the salvage yard off maple", + "uber" + ], + [ + "i need an uber for 5 people to go to the statue of liberty", + "uber" + ], + [ + "i want an uber to take me to walmart", + "uber" + ], + [ + "have an uber sent to take me to the courthouse", + "uber" + ], + [ + "call an uber to take a group of 4 from this bar to the one on maple st", + "uber" + ], + [ + "i'm too drunk to drive and need an uber home", + "uber" + ], + [ + "what is 300 divided by 42", + "calculator" + ], + [ + "what is 400 times 2", + "calculator" + ], + [ + "what is the average of 54, 23, 43, 12, and 442", + "calculator" + ], + [ + "add 45 to 87 plus 54 plus 43 plus 22", + "calculator" + ], + [ + "what is 48 multiplied by 4 divided by 2", + "calculator" + ], + [ + "what is 25% of $54,788", + "calculator" + ], + [ + "what is the square root of 95", + "calculator" + ], + [ + "what is 1100 minus 2347", + "calculator" + ], + [ + "tell me what 1875 plus 3459 equals", + "calculator" + ], + [ + "tell me the answer to 1000 divided by 40", + "calculator" + ], + [ + "what is 1000 plus 745", + "calculator" + ], + [ + "i need to know the answer to 10000 multiplied by 44", + "calculator" + ], + [ + "what is 100 multiplied by 55", + "calculator" + ], + [ + "what's 15% of 68", + "calculator" + ], + [ + "what's 47 times 83", + "calculator" + ], + [ + "if something is 15% off $35, how much is it", + "calculator" + ], + [ + "how many times can 3 be divided into 1253", + "calculator" + ], + [ + "divide 100 by 12", + "calculator" + ], + [ + "find square root of 453", + "calculator" + ], + [ + "what is 1243 times 45", + "calculator" + ], + [ + "find the square root of 1243435", + "calculator" + ], + [ + "what is the square root of 36", + "calculator" + ], + [ + "what is 592 minus 124", + "calculator" + ], + [ + "i need to know what 25 times 38 is", + "calculator" + ], + [ + "can you calculate the square root of 172", + "calculator" + ], + [ + "i bought 6 shirts at $499 each what was my total expenditure for them", + "calculator" + ], + [ + "i spent 34 dollars for 12 gallons of paint what is the average price for each gallon", + "calculator" + ], + [ + "what is the sum of eleven and ten", + "calculator" + ], + [ + "what is the solution to sixty times thirty", + "calculator" + ], + [ + "how do i ask the ai to help me with math problem", + "calculator" + ], + [ + "date please", + "date" + ], + [ + "what is the current day", + "date" + ], + [ + "which day is it now", + "date" + ], + [ + "what's the name of the day today", + "date" + ], + [ + "what is the day now", + "date" + ], + [ + "what day are we in", + "date" + ], + [ + "tell me what tomorrow's date is", + "date" + ], + [ + "please tell me what the date is tomorrow", + "date" + ], + [ + "let me know what tomorrow's date is", + "date" + ], + [ + "let me know the date tomorrow", + "date" + ], + [ + "i need to know tomorrow's date", + "date" + ], + [ + "please tell me what today is", + "date" + ], + [ + "tell me the date, please", + "date" + ], + [ + "tell me the date 5 days from now", + "date" + ], + [ + "tell me what the date will be in 5 days", + "date" + ], + [ + "what is the date in 5 days", + "date" + ], + [ + "in 5 days from today, what will the date be", + "date" + ], + [ + "what would the date be 5 days from today", + "date" + ], + [ + "what day it today", + "date" + ], + [ + "what will tomorrow be on the calendar", + "date" + ], + [ + "what date will it be tomorrow", + "date" + ], + [ + "what date is it tomorrow", + "date" + ], + [ + "what is the date of tomorrow", + "date" + ], + [ + "what's tomorrow's date", + "date" + ], + [ + "what's the date today", + "date" + ], + [ + "give me today's date", + "date" + ], + [ + "tell me today's date", + "date" + ], + [ + "what's the date", + "date" + ], + [ + "today is which day of the week", + "date" + ], + [ + "today is what day of the week", + "date" + ], + [ + "what restrictions do they have for carry-on", + "carry_on" + ], + [ + "ist all carry-on restrictions applicable to my flight", + "carry_on" + ], + [ + "what are the size limits regarding-carry on bags", + "carry_on" + ], + [ + "how many bags can i carry-on", + "carry_on" + ], + [ + "can i bring perfume on the plane or what is the size limit", + "carry_on" + ], + [ + "what are the rules for traveling with toothpaste", + "carry_on" + ], + [ + "can i bring suntan lotion in my carry on", + "carry_on" + ], + [ + "can i fly with my razors or are there restrictions", + "carry_on" + ], + [ + "are there restrictions for carrying lighters in my backpack on a plane", + "carry_on" + ], + [ + "how many carry ons can i take on a flight with american airlines to japan", + "carry_on" + ], + [ + "how many carry ons can i take on a flight with panam to wales", + "carry_on" + ], + [ + "what is the carry-on policy for flights on panam", + "carry_on" + ], + [ + "what is the carry-on policy for flights on lufthansa", + "carry_on" + ], + [ + "what is the carry-on policy for flights on delta airlines", + "carry_on" + ], + [ + "how many carry ons can i take on a flight with southwestern to tampa", + "carry_on" + ], + [ + "how many carry ons can i take on a flight with delta to seattle", + "carry_on" + ], + [ + "how many carry ons can i take on a flight with united airlines to austin", + "carry_on" + ], + [ + "what is the carry-on policy for flights on the airline called jetblue", + "carry_on" + ], + [ + "i need to know the carry-on rules for southwest", + "carry_on" + ], + [ + "tell me the carry-on rules for my flight", + "carry_on" + ], + [ + "i am flying to finland and wanna know the carry-on rules", + "carry_on" + ], + [ + "what is the carry-on policy for flights on southwest", + "carry_on" + ], + [ + "i need to know the the carry-on restrictions for american airlines", + "carry_on" + ], + [ + "what is the carry-on policy for flights on transaero", + "carry_on" + ], + [ + "what is the carry-on policy for flights on jetblue", + "carry_on" + ], + [ + "i gotta know the the carry-on restrictions for american airlines", + "carry_on" + ], + [ + "what is the carry-on policy for flights on american airlines", + "carry_on" + ], + [ + "i must know the the carry-on restrictions for american airlines", + "carry_on" + ], + [ + "i wanna know the carry-on rules for the flight i have", + "carry_on" + ], + [ + "tell me the the carry-on restrictions for american airlines", + "carry_on" + ], + [ + "how many days did i take off", + "pto_used" + ], + [ + "tell me how many days i took off", + "pto_used" + ], + [ + "so how many days did i take off sir", + "pto_used" + ], + [ + "so how many days did i take off", + "pto_used" + ], + [ + "i need to know how many days i toof off", + "pto_used" + ], + [ + "what is the total number of days that i have taken off work since january", + "pto_used" + ], + [ + "how many days off have i taken so far this year", + "pto_used" + ], + [ + "i want to know how many days off are listed on my time off sheet that i have taken this year", + "pto_used" + ], + [ + "tell me how many days off you see that i have taken so far this year please", + "pto_used" + ], + [ + "can you look and see how many days off i have taken so far since january", + "pto_used" + ], + [ + "check how many days off i've taken", + "pto_used" + ], + [ + "how many hours of pto have i used", + "pto_used" + ], + [ + "how much pto is gone", + "pto_used" + ], + [ + "see how many days i've taken off so far", + "pto_used" + ], + [ + "how much of my pto is left", + "pto_used" + ], + [ + "how much of my pto is gone", + "pto_used" + ], + [ + "please let me know how many days i've taken off", + "pto_used" + ], + [ + "what is the amount of my taken off days so far", + "pto_used" + ], + [ + "i need to know how many days off i have used so far", + "pto_used" + ], + [ + "how many days off have i taken until right now", + "pto_used" + ], + [ + "notify me how many days off i have used so far", + "pto_used" + ], + [ + "tell me how many days off i have taken so far", + "pto_used" + ], + [ + "i want to know how many days off i have utilized until now", + "pto_used" + ], + [ + "how much so far pto have i used", + "pto_used" + ], + [ + "i have used how much pto so far", + "pto_used" + ], + [ + "pto i have used so far is how much", + "pto_used" + ], + [ + "pto so far i have used is how much", + "pto_used" + ], + [ + "so far how much pto have i used", + "pto_used" + ], + [ + "how many vacation days i have used", + "pto_used" + ], + [ + "i want to know how many vacation days i have used", + "pto_used" + ], + [ + "can you see if i can make an appointment to have my oil changed", + "schedule_maintenance" + ], + [ + "find out the next available date and time i can go to get my oil changed please", + "schedule_maintenance" + ], + [ + "can you let me know the next open slot for me to get my oil changed", + "schedule_maintenance" + ], + [ + "i need to make an appointment for an oil change, please", + "schedule_maintenance" + ], + [ + "what is the next date for which i can get an oil change appointment", + "schedule_maintenance" + ], + [ + "i need a aaa service place to make an appointment for my tires to be assessed", + "schedule_maintenance" + ], + [ + "my auto tires need to be checked out so where can i get an appointment", + "schedule_maintenance" + ], + [ + "where can i go to have my tires checked out", + "schedule_maintenance" + ], + [ + "i need an appointment for someone to check out my check engine light being on", + "schedule_maintenance" + ], + [ + "my check engine light is on so is anyone available to check it out for me", + "schedule_maintenance" + ], + [ + "can someone take a look at my car because the check engine light is on", + "schedule_maintenance" + ], + [ + "do you have time today for someone to look at my car because the check engine light is on", + "schedule_maintenance" + ], + [ + "find a place near me to have my tires inspected", + "schedule_maintenance" + ], + [ + "where can i get a appointment for a tire check for the car", + "schedule_maintenance" + ], + [ + "i need to bring my car in because the check engine light is staying lit", + "schedule_maintenance" + ], + [ + "can i get someone to check my check engine light", + "schedule_maintenance" + ], + [ + "can someone tell me why my check engine light is on", + "schedule_maintenance" + ], + [ + "my check engine light is on, i need someone to look at it", + "schedule_maintenance" + ], + [ + "can someone look at my check engine light", + "schedule_maintenance" + ], + [ + "my check engine light is on and i need someone to look at it", + "schedule_maintenance" + ], + [ + "will someone please look at my check engine light that is on", + "schedule_maintenance" + ], + [ + "can someone look at my check engine light that's on", + "schedule_maintenance" + ], + [ + "could someone look at my check engine light that's on", + "schedule_maintenance" + ], + [ + "can i get someone to look at my check engine light that is on", + "schedule_maintenance" + ], + [ + "should i schedule a car maintenance", + "schedule_maintenance" + ], + [ + "should i go to a car maintenance", + "schedule_maintenance" + ], + [ + "should i call a car maintenance", + "schedule_maintenance" + ], + [ + "may i schedule a car maintenance", + "schedule_maintenance" + ], + [ + "should i take my car to a maintenance", + "schedule_maintenance" + ], + [ + "can i make a car maintenance appointment", + "schedule_maintenance" + ], + [ + "i will be traveling to lima alert my bank", + "travel_notification" + ], + [ + "assure my bank i really am going to california", + "travel_notification" + ], + [ + "please tell my bank i'm traveling to mexico between next wednesday for a week after", + "travel_notification" + ], + [ + "please inform my bank i'll be vacationing in the bahamas in a couple of days", + "travel_notification" + ], + [ + "i'm going to be in mexico from thursday to friday, so can you let my bank know", + "travel_notification" + ], + [ + "please kindly inform my bank i'm going to be in canada from next week to two weeks after", + "travel_notification" + ], + [ + "let my bank know i'll be in ireland from may 01, 2019 to august 02, 2019", + "travel_notification" + ], + [ + "alert my bank i'm checking out seattle for the next month", + "travel_notification" + ], + [ + "i'm going to brazil soon and want to let my bank now", + "travel_notification" + ], + [ + "i'm leaving for montreal tomorrow and need to let my bank know", + "travel_notification" + ], + [ + "inform my bank i'm traveling to australia between february 23rd to february 25th", + "travel_notification" + ], + [ + "please tell my bank i'll be in anchorage this week", + "travel_notification" + ], + [ + "i need to tell my bank i am, indeed, going to be in london in a few hours", + "travel_notification" + ], + [ + "please alert my bank i'm going to be in the caymans from may 1st to june 2nd", + "travel_notification" + ], + [ + "let my bank know i actually am visiting brazil", + "travel_notification" + ], + [ + "i'll be travelling to russia from april 1 through april 20 and need my financial institute apprised of it", + "travel_notification" + ], + [ + "please alert my bank i'm traveling to europe between april 1st and 5th", + "travel_notification" + ], + [ + "tell my bank's fraud department i'm going to mexico", + "travel_notification" + ], + [ + "please notify my bank i'm going to africa between tomorrow and next tuesday", + "travel_notification" + ], + [ + "tell my bank i'm in canada the entire week of the 6th to the 13th", + "travel_notification" + ], + [ + "inform my bank i'm seeing italy", + "travel_notification" + ], + [ + "can you notify my bank that i will be traveling to mexico between march 1st and 15th", + "travel_notification" + ], + [ + "please let my bank know that i will be visiting spain from june 12th to the 24th", + "travel_notification" + ], + [ + "i need you to make my bank aware that i will be visiting taiwan from the 22nd of february until the 3rd of march", + "travel_notification" + ], + [ + "send a notification to my bank of my travel dates from february 19th to 26th to peru", + "travel_notification" + ], + [ + "alert my bank of my travel to dubai for the dates april 14th through april 22nd", + "travel_notification" + ], + [ + "from sunday to wednesday, i will be in oakland, so should i call my bank to let them know", + "travel_notification" + ], + [ + "my bank needs to know about my traveling to georgia in europe", + "travel_notification" + ], + [ + "must call my bank about my travel plans", + "travel_notification" + ], + [ + "contact bank and let them know about my travel plans", + "travel_notification" + ], + [ + "i want my phone to be disconnected from you", + "sync_device" + ], + [ + "i would like for my phone to be synced with you", + "sync_device" + ], + [ + "can you connect to my phone", + "sync_device" + ], + [ + "i would like for you to unsync my phone", + "sync_device" + ], + [ + "i no longer want you to be synced to my phone", + "sync_device" + ], + [ + "i do not want my phone synced anymore", + "sync_device" + ], + [ + "i want you paired to my phone", + "sync_device" + ], + [ + "please sync up with my phone", + "sync_device" + ], + [ + "can you pair yourself with my phone please", + "sync_device" + ], + [ + "can you please disconnect from my phone", + "sync_device" + ], + [ + "remove the connection to my phone", + "sync_device" + ], + [ + "can you sync up with my phone", + "sync_device" + ], + [ + "i want you to connect to my handset", + "sync_device" + ], + [ + "pair yourself to my phone if you can", + "sync_device" + ], + [ + "connect to my device", + "sync_device" + ], + [ + "can you link up with my phone", + "sync_device" + ], + [ + "can you disconnect yourself from my phone", + "sync_device" + ], + [ + "don't be synced to my phone anymore", + "sync_device" + ], + [ + "can you get paired to my phone right away", + "sync_device" + ], + [ + "i don't want you connected to my phone anymore", + "sync_device" + ], + [ + "please get connected to my phone", + "sync_device" + ], + [ + "i don't want you synced to my phone anymore", + "sync_device" + ], + [ + "sync with my phone please", + "sync_device" + ], + [ + "please unsync from my phone right now", + "sync_device" + ], + [ + "unsync yourself from my device", + "sync_device" + ], + [ + "please connect yourself to my main phone", + "sync_device" + ], + [ + "unsync from my phone please", + "sync_device" + ], + [ + "don't be connected to my phone anymore", + "sync_device" + ], + [ + "disconnect from my device please", + "sync_device" + ], + [ + "alexa, connect to the phone now", + "sync_device" + ], + [ + "thank you ever so much for that!", + "thank_you" + ], + [ + "you\u2019re the best thanks so much!", + "thank_you" + ], + [ + "thanks for helping", + "thank_you" + ], + [ + "i am grateful for the help", + "thank_you" + ], + [ + "thank you for the heip", + "thank_you" + ], + [ + "i apprecaite the help from you", + "thank_you" + ], + [ + "thanks that was really helpful", + "thank_you" + ], + [ + "thank you for your time and trying to help", + "thank_you" + ], + [ + "thank you for your assistance", + "thank_you" + ], + [ + "thanks for all your help", + "thank_you" + ], + [ + "thanks for trying", + "thank_you" + ], + [ + "many thank", + "thank_you" + ], + [ + "thanks a million", + "thank_you" + ], + [ + "thank a bunch", + "thank_you" + ], + [ + "i appeciate it", + "thank_you" + ], + [ + "i would like to thank you ai", + "thank_you" + ], + [ + "ai you have given me so much information, thank you", + "thank_you" + ], + [ + "thanks so much ai", + "thank_you" + ], + [ + "thank you ai for everything you do", + "thank_you" + ], + [ + "ai is a helpful item to have in my home, thank you", + "thank_you" + ], + [ + "thank you very much", + "thank_you" + ], + [ + "that answer was very helpful, thanks", + "thank_you" + ], + [ + "great, thanks!", + "thank_you" + ], + [ + "thanks for your help!", + "thank_you" + ], + [ + "thanks so much", + "thank_you" + ], + [ + "thanks for that answer", + "thank_you" + ], + [ + "thank you for that reply", + "thank_you" + ], + [ + "thanks for the reply", + "thank_you" + ], + [ + "thanks for that response", + "thank_you" + ], + [ + "thank you for that response", + "thank_you" + ], + [ + "how much do you get when you roll an eight sided die", + "roll_dice" + ], + [ + "i need a dice roll for a six sided die", + "roll_dice" + ], + [ + "roll a dice that has seven sides", + "roll_dice" + ], + [ + "roll the five sided die", + "roll_dice" + ], + [ + "what is the result when you roll a four sided die", + "roll_dice" + ], + [ + "roll a fourteen sided dice exactly", + "roll_dice" + ], + [ + "please roll twelve sided dice", + "roll_dice" + ], + [ + "can i have a 2 sided dice", + "roll_dice" + ], + [ + "roll a 9 sided dice", + "roll_dice" + ], + [ + "roll five sided dice", + "roll_dice" + ], + [ + "roll those dice once", + "roll_dice" + ], + [ + "throw a roll of the dice", + "roll_dice" + ], + [ + "make a roll of the dice", + "roll_dice" + ], + [ + "ai pick up the dice, then drop it", + "roll_dice" + ], + [ + "ai toss the dice", + "roll_dice" + ], + [ + "ai roll the dice", + "roll_dice" + ], + [ + "ai throw the dice on the table", + "roll_dice" + ], + [ + "ai shake the dice in a cup, then throw dice on table", + "roll_dice" + ], + [ + "can you roll a four sided die and tell me the result", + "roll_dice" + ], + [ + "roll a six sided die for me and tell me the result", + "roll_dice" + ], + [ + "roll a die please", + "roll_dice" + ], + [ + "can you roll an eight sided die and tell me what it comes up as", + "roll_dice" + ], + [ + "can you simulate a dice roll", + "roll_dice" + ], + [ + "can you roll a ten sided die and tell me the number", + "roll_dice" + ], + [ + "roll a four sided die for me", + "roll_dice" + ], + [ + "simulate rolling a dice and tell me what it lands on", + "roll_dice" + ], + [ + "can you roll a die for me", + "roll_dice" + ], + [ + "can you fake roll a die for me", + "roll_dice" + ], + [ + "what's the result of a 10-sided dice roll", + "roll_dice" + ], + [ + "can you roll a 10-sided dice for me", + "roll_dice" + ], + [ + "how soon milk expires", + "food_last" + ], + [ + "when does milk will go bad", + "food_last" + ], + [ + "how many days milk can be preserved", + "food_last" + ], + [ + "what is expire of milk", + "food_last" + ], + [ + "when is the milk date before used", + "food_last" + ], + [ + "when does the jerky expire", + "food_last" + ], + [ + "what is the expiration date for honey", + "food_last" + ], + [ + "when is the egg expired", + "food_last" + ], + [ + "when does the honey expire", + "food_last" + ], + [ + "what is the expiration date for those eg", + "food_last" + ], + [ + "how long can i freeze tofu before it goes bad", + "food_last" + ], + [ + "how much time do i have to keep tofu in the freezer before it goes bad", + "food_last" + ], + [ + "when will tofu expire if i keep it in the freezer", + "food_last" + ], + [ + "how long will tofu last in the freezer before it expires", + "food_last" + ], + [ + "does tofu last long in the freezer before it goes bad", + "food_last" + ], + [ + "how many days later is it okay to eat curry that was in the fridge", + "food_last" + ], + [ + "within what time is is fine to eat cooked tilapia kept in the fridge", + "food_last" + ], + [ + "what is the most amount of time that is considered safe to store uncooked chicken in the fridge", + "food_last" + ], + [ + "what length of time is safe for consuming leftover meatloaf stored in the fridge", + "food_last" + ], + [ + "what is the longest i can leave meatballs in sauce in the freezer before it is no longer safe to eat", + "food_last" + ], + [ + "can i store bread in the freezer indefinitely and it will still be okay", + "food_last" + ], + [ + "after how much time is it still safe to drink milk that is in the fridge", + "food_last" + ], + [ + "what is the most time i can keep a burrito frozen for before it's no good to eat", + "food_last" + ], + [ + "roughly how long can i leave bananas in the freezer before i have to throw them out", + "food_last" + ], + [ + "how long does chicken curry last in the freezer before it's spoiled", + "food_last" + ], + [ + "milk can stay in my fridge for how long", + "food_last" + ], + [ + "milk will go bad in my fridge when", + "food_last" + ], + [ + "what is the amount of time to keep milk refrigerated", + "food_last" + ], + [ + "tell me how long milk stays good in the fridge", + "food_last" + ], + [ + "how long can i keep milk in the fridge", + "food_last" + ], + [ + "how long to grill thick steaks", + "cook_time" + ], + [ + "how long does pizza take", + "cook_time" + ], + [ + "lasagna takes how long to cook", + "cook_time" + ], + [ + "bake time for brownies", + "cook_time" + ], + [ + "how many minutes are involved in the preparation of curry", + "cook_time" + ], + [ + "what's the preparation time for this dish", + "cook_time" + ], + [ + "what is the proper cooking time for this", + "cook_time" + ], + [ + "how long do i cook this for", + "cook_time" + ], + [ + "look up recipe time for this", + "cook_time" + ], + [ + "how many minutes should i put meal the cake in the oven", + "cook_time" + ], + [ + "what's the average cooking time for cooking wings", + "cook_time" + ], + [ + "how many minutes should i set an alarm for this bake", + "cook_time" + ], + [ + "when can i expect meal of salmon to be finished", + "cook_time" + ], + [ + "how long does it take to cook meal of tuscan", + "cook_time" + ], + [ + "tell me how long it will take to prepare a lasagna", + "cook_time" + ], + [ + "i want to cook a lasagna please tell me how long it will take", + "cook_time" + ], + [ + "how long will it take to cook a lasagna", + "cook_time" + ], + [ + "can you tell me how long it will take to cook a lasagna", + "cook_time" + ], + [ + "how long does it take to prepare a lasagna", + "cook_time" + ], + [ + "how long do i need to cook chicken", + "cook_time" + ], + [ + "how long should i boil eggs", + "cook_time" + ], + [ + "how long should i bake a cake", + "cook_time" + ], + [ + "how long does it take to cook steaks", + "cook_time" + ], + [ + "how long does it take to bake a cake", + "cook_time" + ], + [ + "how long should i cook the cookie dough", + "cook_time" + ], + [ + "how long should i cook my turkey", + "cook_time" + ], + [ + "how long do i boil eggs", + "cook_time" + ], + [ + "how long does it take to make mashed potatoes", + "cook_time" + ], + [ + "how long will it take to make an omelet", + "cook_time" + ], + [ + "what are the minutes needed to cook the meal", + "cook_time" + ], + [ + "i want to be reminded to pay the electric bill", + "reminder_update" + ], + [ + "don't forget to tell me to call my mother", + "reminder_update" + ], + [ + "remind me to put gas in my car", + "reminder_update" + ], + [ + "set a reminder to buy bread", + "reminder_update" + ], + [ + "make a reminder to pay the mortgage", + "reminder_update" + ], + [ + "create a reminder to wash the dishes", + "reminder_update" + ], + [ + "create a reminder to change my oil", + "reminder_update" + ], + [ + "set a reminder for when the turkey is finished cooking", + "reminder_update" + ], + [ + "make a reminder to pay my cable bill today", + "reminder_update" + ], + [ + "i need a reminder to give the dog his medicine at ten tonight", + "reminder_update" + ], + [ + "i don't want to forget to call mom", + "reminder_update" + ], + [ + "i need a reminder to wash dishes", + "reminder_update" + ], + [ + "remind me to exercise", + "reminder_update" + ], + [ + "help me to remember to pick up stan later", + "reminder_update" + ], + [ + "tell me later to call bill", + "reminder_update" + ], + [ + "i need to be reminded to do something", + "reminder_update" + ], + [ + "set up a new reminder to alert me when it's time to put the trash out", + "reminder_update" + ], + [ + "can you remind me to finish a task", + "reminder_update" + ], + [ + "please set up a reminder for me", + "reminder_update" + ], + [ + "i would like you to remind me to do something", + "reminder_update" + ], + [ + "i need a reminder to take dinner out of the oven", + "reminder_update" + ], + [ + "create a new reminder to study for my final exams", + "reminder_update" + ], + [ + "i need a reminder to alert me to wish my mom a happy birthday", + "reminder_update" + ], + [ + "are you able to remind me about something", + "reminder_update" + ], + [ + "set up a reminder so i don't forget the baby shower this weekend", + "reminder_update" + ], + [ + "set a reminder for me to let the plumber in tomorrow", + "reminder_update" + ], + [ + "i need to set a reminder to call lisa for her birthday", + "reminder_update" + ], + [ + "i would like to set a reminder to bring the plants in tonight", + "reminder_update" + ], + [ + "can you set a reminder alarm for me to workout", + "reminder_update" + ], + [ + "please set a reminder for me to put the clothes in the dryer", + "reminder_update" + ], + [ + "i need to tell you about my lost card", + "report_lost_card" + ], + [ + "i lost my card, what do i do next", + "report_lost_card" + ], + [ + "i have lost my card, what am i supposed to do", + "report_lost_card" + ], + [ + "where do i report that my card was lost", + "report_lost_card" + ], + [ + "who do i speak with about my card that was lost", + "report_lost_card" + ], + [ + "please help me report my lost card", + "report_lost_card" + ], + [ + "set up a report for a lost card", + "report_lost_card" + ], + [ + "can you report a lost card for me", + "report_lost_card" + ], + [ + "i lost my card and need to report it", + "report_lost_card" + ], + [ + "what is the process for reporting my card as lost", + "report_lost_card" + ], + [ + "someone used my chase card without my authorization", + "report_lost_card" + ], + [ + "can you tell me how to report a card lost", + "report_lost_card" + ], + [ + "please tell me how to go about reporting a lost card", + "report_lost_card" + ], + [ + "search steps for how to report a card lost", + "report_lost_card" + ], + [ + "i need to to know how to report a lost card", + "report_lost_card" + ], + [ + "my bank of america visa platinum was swiped from my belongings", + "report_lost_card" + ], + [ + "who do i call to report my card as lost", + "report_lost_card" + ], + [ + "what should i do if i need to report my card lost", + "report_lost_card" + ], + [ + "my capital one visa was taken without permission", + "report_lost_card" + ], + [ + "i need to report that someone ran off with my td bank card earlier", + "report_lost_card" + ], + [ + "what steps do i need to take to report a card lost", + "report_lost_card" + ], + [ + "i would like to report my american express card stolen", + "report_lost_card" + ], + [ + "how do i report that i lost my card", + "report_lost_card" + ], + [ + "how do i report that i actually lost my card", + "report_lost_card" + ], + [ + "how do i report that i lost the card", + "report_lost_card" + ], + [ + "how do i report my very lost card", + "report_lost_card" + ], + [ + "how do i report the card as lost", + "report_lost_card" + ], + [ + "lost report card, need new one", + "report_lost_card" + ], + [ + "my report card was stolen", + "report_lost_card" + ], + [ + "my report card was lost help!", + "report_lost_card" + ], + [ + "can i swap chili for sloppy joe mix in the recipe", + "ingredient_substitution" + ], + [ + "can i use sugar instead of salt", + "ingredient_substitution" + ], + [ + "can i use apples instead of oranges in this recipe", + "ingredient_substitution" + ], + [ + "can i use skim milk instead of 2% in the recipe", + "ingredient_substitution" + ], + [ + "is it ok to use bananas instead of oranges in the recipe", + "ingredient_substitution" + ], + [ + "can i use lettuce instead of rice", + "ingredient_substitution" + ], + [ + "will peas work instead of carrots", + "ingredient_substitution" + ], + [ + "is it possible to use baking soda instead of flour", + "ingredient_substitution" + ], + [ + "can i just use oil instead of vinegar", + "ingredient_substitution" + ], + [ + "can i use mayo instead of miracle whip", + "ingredient_substitution" + ], + [ + "will this recipe still be good if i use milk instead of eggs", + "ingredient_substitution" + ], + [ + "can i use oil instead of vinegar", + "ingredient_substitution" + ], + [ + "can i sub bacon for ham", + "ingredient_substitution" + ], + [ + "can i use pasta sauce instead of tomato paste", + "ingredient_substitution" + ], + [ + "can i use regular olive oil instead of virgin", + "ingredient_substitution" + ], + [ + "is it possible to use starch instead of flour", + "ingredient_substitution" + ], + [ + "is it okay to use butter instead of margarine", + "ingredient_substitution" + ], + [ + "will it be ok to sub turkey for beef", + "ingredient_substitution" + ], + [ + "can i use butter instead of margarine", + "ingredient_substitution" + ], + [ + "is it okay to use applesauce instead of oil", + "ingredient_substitution" + ], + [ + "if i use applesauce instead of oil, will that mess it up", + "ingredient_substitution" + ], + [ + "can i swap applesauce for oil", + "ingredient_substitution" + ], + [ + "is it alright to switch applesauce for oil", + "ingredient_substitution" + ], + [ + "will it still work if i use applesauce instead of oil", + "ingredient_substitution" + ], + [ + "would it be ok to use butter instead of oil", + "ingredient_substitution" + ], + [ + "is it ok to use oil spray instead of canola oil", + "ingredient_substitution" + ], + [ + "could steak be used instead of chicken", + "ingredient_substitution" + ], + [ + "can i substitute butter for oil", + "ingredient_substitution" + ], + [ + "can i use red onions instead of white", + "ingredient_substitution" + ], + [ + "can i get peppers instead of onions", + "ingredient_substitution" + ], + [ + "i need to call my dad", + "make_call" + ], + [ + "i need to call my friend", + "make_call" + ], + [ + "i need to call my coworker", + "make_call" + ], + [ + "i need to call my mom", + "make_call" + ], + [ + "i need to call my boss", + "make_call" + ], + [ + "i need you to call the phone company for me", + "make_call" + ], + [ + "make a call for me to the vet", + "make_call" + ], + [ + "dial up dominos pizza", + "make_call" + ], + [ + "call my doctor", + "make_call" + ], + [ + "get mom on the phone", + "make_call" + ], + [ + "please make a call to stefan larson", + "make_call" + ], + [ + "use phone to call alexa", + "make_call" + ], + [ + "computer, call alexa", + "make_call" + ], + [ + "computer, place a call to alexa", + "make_call" + ], + [ + "can you call alexa", + "make_call" + ], + [ + "call alexa at home", + "make_call" + ], + [ + "i would like to make a call to sal", + "make_call" + ], + [ + "i would like to make a phone call", + "make_call" + ], + [ + "can i make a phone call", + "make_call" + ], + [ + "i need to make a call", + "make_call" + ], + [ + "i need you to phone sal", + "make_call" + ], + [ + "i need to call sal", + "make_call" + ], + [ + "i have to make a phone call", + "make_call" + ], + [ + "i have to use the phone to make a call", + "make_call" + ], + [ + "could you call sal", + "make_call" + ], + [ + "call sal", + "make_call" + ], + [ + "x needs to be called by me", + "make_call" + ], + [ + "call to mom", + "make_call" + ], + [ + "call mom", + "make_call" + ], + [ + "dial her up", + "make_call" + ], + [ + "i want to set an alarm", + "alarm" + ], + [ + "set an alarm for 6 am tomorrow", + "alarm" + ], + [ + "set an alarm for 8 tomorrow", + "alarm" + ], + [ + "please set an alarm", + "alarm" + ], + [ + "i'd love to set an alarm", + "alarm" + ], + [ + "i would like to have an alarm set for me", + "alarm" + ], + [ + "i want an alarm set", + "alarm" + ], + [ + "i need to set an alarm", + "alarm" + ], + [ + "set an alarm for ten tomorrow", + "alarm" + ], + [ + "set an alarm for 11 tomorrow", + "alarm" + ], + [ + "i want an alarm for 6 am", + "alarm" + ], + [ + "set an alarm for me", + "alarm" + ], + [ + "i wanna have an alarm", + "alarm" + ], + [ + "i need an alarm set now", + "alarm" + ], + [ + "set an alarm for 9 tomorrow", + "alarm" + ], + [ + "don't forget to set an alarm for noon", + "alarm" + ], + [ + "can you set the alarm for noon", + "alarm" + ], + [ + "i need to up by noon", + "alarm" + ], + [ + "can you wake me up at noon", + "alarm" + ], + [ + "set alarm for noon", + "alarm" + ], + [ + "wake me up with an alarm at 6am", + "alarm" + ], + [ + "help me wake up with an alarm at 5:30am", + "alarm" + ], + [ + "set an alarm to wake me up at 5:30am", + "alarm" + ], + [ + "set an alarm for 5am", + "alarm" + ], + [ + "please set the alarm", + "alarm" + ], + [ + "please make sure the alarm is set", + "alarm" + ], + [ + "could you set the alarm", + "alarm" + ], + [ + "set the alarm now", + "alarm" + ], + [ + "can you set an alarm", + "alarm" + ], + [ + "i need an alarm", + "alarm" + ], + [ + "what's on my todo list", + "todo_list" + ], + [ + "let me hear my todo list", + "todo_list" + ], + [ + "did i add \"cleaning the foyer\" to my todo list yet", + "todo_list" + ], + [ + "did i put grocery shopping on my todo list", + "todo_list" + ], + [ + "give me my todo list", + "todo_list" + ], + [ + "what things are on my todo list", + "todo_list" + ], + [ + "have i told you to add washing dishes to my todo list", + "todo_list" + ], + [ + "is laundry on my todo list", + "todo_list" + ], + [ + "read my todo list", + "todo_list" + ], + [ + "list my todo list items", + "todo_list" + ], + [ + "is \"cleaning the bathroom\" an item on my todo list", + "todo_list" + ], + [ + "tell me what's on my todo list", + "todo_list" + ], + [ + "read my to-do list items", + "todo_list" + ], + [ + "check on my to-do list items", + "todo_list" + ], + [ + "check what is on my to-do list", + "todo_list" + ], + [ + "what items are on my list of to-dos", + "todo_list" + ], + [ + "what is on my to-do list", + "todo_list" + ], + [ + "what kind of things do i have to do today", + "todo_list" + ], + [ + "what's on my todo list for today", + "todo_list" + ], + [ + "please tell me my todo list", + "todo_list" + ], + [ + "is my todo list possible today", + "todo_list" + ], + [ + "i really want to know my todo list again thanks", + "todo_list" + ], + [ + "is it possible to read my to-do list again", + "todo_list" + ], + [ + "tell me my to-do list", + "todo_list" + ], + [ + "what is my to-do list like today", + "todo_list" + ], + [ + "list my to-do list", + "todo_list" + ], + [ + "give me my to-do list", + "todo_list" + ], + [ + "what must i do today", + "todo_list" + ], + [ + "is make a hair appointment on my todo list right now", + "todo_list" + ], + [ + "can you see if paying garbage bill is on my todo list for this week", + "todo_list" + ], + [ + "change the accent you're using", + "change_accent" + ], + [ + "start using a different accent", + "change_accent" + ], + [ + "talk to me in a different accent", + "change_accent" + ], + [ + "alter your accent", + "change_accent" + ], + [ + "change to the female voice", + "change_accent" + ], + [ + "i want to hear the female voice from now on", + "change_accent" + ], + [ + "i want the male voice", + "change_accent" + ], + [ + "could you use the female voice", + "change_accent" + ], + [ + "female voice please", + "change_accent" + ], + [ + "can you switch to the male voice", + "change_accent" + ], + [ + "the male voice please", + "change_accent" + ], + [ + "could you use the male voice", + "change_accent" + ], + [ + "i want the female voice", + "change_accent" + ], + [ + "i want you to change your accent", + "change_accent" + ], + [ + "would you please switch to the male voice", + "change_accent" + ], + [ + "i would like you to change your accent", + "change_accent" + ], + [ + "i want you to change to the male voice", + "change_accent" + ], + [ + "can you change to the male voice", + "change_accent" + ], + [ + "change to girl voice", + "change_accent" + ], + [ + "please switch to the girl voice", + "change_accent" + ], + [ + "change to the females voice please", + "change_accent" + ], + [ + "switch voice option to female", + "change_accent" + ], + [ + "change voice to female", + "change_accent" + ], + [ + "use the female voice", + "change_accent" + ], + [ + "change settings to sound like a female", + "change_accent" + ], + [ + "turn to the voice of the woman", + "change_accent" + ], + [ + "change to the woman voice", + "change_accent" + ], + [ + "i like the female voice, switch please", + "change_accent" + ], + [ + "speak with a male british accent", + "change_accent" + ], + [ + "would you change your voice to the male british accent for me", + "change_accent" + ], + [ + "what site can i get my w2", + "w2" + ], + [ + "where do we get our w2 forms", + "w2" + ], + [ + "where can i get my w2", + "w2" + ], + [ + "where can i get my w2 from", + "w2" + ], + [ + "i would like to know where i can find my w2 for tax reasons", + "w2" + ], + [ + "what steps do i need to take to obtain my w2 for taxes", + "w2" + ], + [ + "what do i do if i need my w2 for my my taxes", + "w2" + ], + [ + "how can i get get a copy of my w2 for tax purposes", + "w2" + ], + [ + "can you tell me the process for obtaining a copy of my w2 for my taxes", + "w2" + ], + [ + "where do i go to get that work tax form thing", + "w2" + ], + [ + "what do i need to do to get that tax form thing from my job", + "w2" + ], + [ + "how do i get that tax form from my employer", + "w2" + ], + [ + "where can i find that tax form my employer gives me", + "w2" + ], + [ + "how do i get the form to file my taxes from my employer", + "w2" + ], + [ + "where do i look to get a w2", + "w2" + ], + [ + "i need a w2 form from", + "w2" + ], + [ + "can you trll me where to get my w2", + "w2" + ], + [ + "i want to get the w-2 form", + "w2" + ], + [ + "i wanna know where to find a w2", + "w2" + ], + [ + "i wanna know where to get my w2", + "w2" + ], + [ + "tell me where to a w2 form", + "w2" + ], + [ + "i must know where to get my w2", + "w2" + ], + [ + "i wanna get my w-2 form", + "w2" + ], + [ + "i need a w2, so where is it", + "w2" + ], + [ + "where can i find a w2", + "w2" + ], + [ + "i must get the w-2 form", + "w2" + ], + [ + "help me get w-2 form", + "w2" + ], + [ + "i wanna know where the w2 is", + "w2" + ], + [ + "help me get my w-2 form", + "w2" + ], + [ + "can't find w-2", + "w2" + ], + [ + "when is my electric bill due by", + "bill_due" + ], + [ + "when is my car insurance bill due", + "bill_due" + ], + [ + "how long until my water bill is due", + "bill_due" + ], + [ + "what's the latest i can pay my cellular bill", + "bill_due" + ], + [ + "what's the due date for my netflix subscription", + "bill_due" + ], + [ + "tell me where i can find my exterminator bill's due date", + "bill_due" + ], + [ + "how do i locate the due date for my bug bill", + "bill_due" + ], + [ + "where can i see the due date for auto loan bill", + "bill_due" + ], + [ + "when is my cell phone due", + "bill_due" + ], + [ + "i need to know where my due date is for my lawn bill", + "bill_due" + ], + [ + "where can i find when my car payment bill is due", + "bill_due" + ], + [ + "what's the ultimate day for me to pay the internet bill", + "bill_due" + ], + [ + "tell me the last day i can pay my gas bill", + "bill_due" + ], + [ + "what's the due date for my comcast bill", + "bill_due" + ], + [ + "i need to know when my water bill is due", + "bill_due" + ], + [ + "please tell me how to find out when my rent is due", + "bill_due" + ], + [ + "i need to know when my electricity bill is due", + "bill_due" + ], + [ + "can you tell me when my cable bill is due", + "bill_due" + ], + [ + "i need to find out how to check the due date for the water bill", + "bill_due" + ], + [ + "when does the current billing cycle end", + "bill_due" + ], + [ + "is the bill due today", + "bill_due" + ], + [ + "is the bill due", + "bill_due" + ], + [ + "when do i have to pay my internet", + "bill_due" + ], + [ + "i want to know when the deadline is to pay my car loan", + "bill_due" + ], + [ + "tell me when my water bill is due", + "bill_due" + ], + [ + "what day of the month do i have to pay my mortgage", + "bill_due" + ], + [ + "when is my electricity due date", + "bill_due" + ], + [ + "i need to know the next billing date of my american express card", + "bill_due" + ], + [ + "when does my gas bill need paid by", + "bill_due" + ], + [ + "when is next month's cable bill due", + "bill_due" + ], + [ + "number of calories in coke", + "calories" + ], + [ + "what kind of calories do chicken tenders have", + "calories" + ], + [ + "calorie content of dr pepper", + "calories" + ], + [ + "what's the calorie content of chicken nuggets", + "calories" + ], + [ + "how many calories are in hamburgers", + "calories" + ], + [ + "what is the calorie count for this milkshake", + "calories" + ], + [ + "how many calories does an orange have", + "calories" + ], + [ + "what is the total number of calories in this pizza", + "calories" + ], + [ + "how many calories are in a burger", + "calories" + ], + [ + "rolls have how many calories", + "calories" + ], + [ + "what is the calorie content in bananas", + "calories" + ], + [ + "what is the calorie content in peanut butter", + "calories" + ], + [ + "what is the calorie content in french fries", + "calories" + ], + [ + "what is the calorie content in potatoes", + "calories" + ], + [ + "what is the calorie content in spaghetti", + "calories" + ], + [ + "i need to know the calorie content of spaghetti", + "calories" + ], + [ + "how many calories are in a sandwich", + "calories" + ], + [ + "what number of calories are in a pizza", + "calories" + ], + [ + "what is the number of calories in a steak", + "calories" + ], + [ + "how many calories are in a cheeseburger", + "calories" + ], + [ + "can you check the amount of calories in a chicken sandwich", + "calories" + ], + [ + "what is the calorie count of a burrito", + "calories" + ], + [ + "calorie check, cheese burger", + "calories" + ], + [ + "how many calories are in a taco", + "calories" + ], + [ + "can you see how many calories are in cream of mushroom soup", + "calories" + ], + [ + "the intake of calories it it bad", + "calories" + ], + [ + "how much is alorie intake", + "calories" + ], + [ + "hoq many calories does pasta have", + "calories" + ], + [ + "how many calories can i expect to be in fries", + "calories" + ], + [ + "what's the calorie content of french fries", + "calories" + ], + [ + "tell me how to go about reporting a damaged card", + "damaged_card" + ], + [ + "my card is damaged", + "damaged_card" + ], + [ + "i want to report a damaged card", + "damaged_card" + ], + [ + "where should i report a damaged card", + "damaged_card" + ], + [ + "can you find out how to report a damaged card", + "damaged_card" + ], + [ + "my card has become too frayed and torn to use", + "damaged_card" + ], + [ + "what do i do about a card that's too messed up to be properly scanned", + "damaged_card" + ], + [ + "my card became damaged when i dropped it in the parking lot and it got ran over", + "damaged_card" + ], + [ + "i have a damaged card that needs replaced because my son dropped it in a blender", + "damaged_card" + ], + [ + "i sat on my credit card and broke it in half and need it replaced", + "damaged_card" + ], + [ + "my credit card got torn and i need a new one", + "damaged_card" + ], + [ + "what do i do with a damaged credit card", + "damaged_card" + ], + [ + "how do i replace a damaged card", + "damaged_card" + ], + [ + "i have a card that needs replaced because my wine dumped wine on it", + "damaged_card" + ], + [ + "i spilled wine on my credit card and now its all mushy and needs to be replaced", + "damaged_card" + ], + [ + "my dog swallowed my credit card and i need a new one", + "damaged_card" + ], + [ + "i want to report a damaged card that my cat shredded with its claws", + "damaged_card" + ], + [ + "i need to replace a card that my daughter spilled juice on", + "damaged_card" + ], + [ + "i'm unable to use my card because it's been ruined", + "damaged_card" + ], + [ + "i can't use my card because it\u2019s damaged badly", + "damaged_card" + ], + [ + "i cannot use my card cuz it's damaged", + "damaged_card" + ], + [ + "i can't use my card because it\u2019s messed up", + "damaged_card" + ], + [ + "i can't use my card because it\u2019s broken", + "damaged_card" + ], + [ + "i can't use my card because i damaged it", + "damaged_card" + ], + [ + "who should i talk to about the fact that i inadvertently split my card almost in half", + "damaged_card" + ], + [ + "i accidentally deactivated the magnetic stripe on my visa debit card and i need to report it", + "damaged_card" + ], + [ + "can i talk to someone to let them know my card was damaged from being melted on a radiator", + "damaged_card" + ], + [ + "i would like to report a damaged card that was burnt", + "damaged_card" + ], + [ + "i would like to report my card damaged since i accidentally spilled gorilla glue all over it and the numbers are now obscured", + "damaged_card" + ], + [ + "my visa has been damaged", + "damaged_card" + ], + [ + "does applebees have good reviews", + "restaurant_reviews" + ], + [ + "are the reviews ned get's good", + "restaurant_reviews" + ], + [ + "is the review ned's have good", + "restaurant_reviews" + ], + [ + "are ned's reviews good", + "restaurant_reviews" + ], + [ + "are the reviews for ned's good", + "restaurant_reviews" + ], + [ + "how are the reviews for tacos at the buffet", + "restaurant_reviews" + ], + [ + "do they serve good tacos at the buffet", + "restaurant_reviews" + ], + [ + "my favorite, beef tacos at the buffet", + "restaurant_reviews" + ], + [ + "they sold out of tacos at the buffet", + "restaurant_reviews" + ], + [ + "yum, pulled pork tacos at the buffet", + "restaurant_reviews" + ], + [ + "what do people think of the new burger at mcdonalds", + "restaurant_reviews" + ], + [ + "how are the reviews for the supreme pizza at papa john's", + "restaurant_reviews" + ], + [ + "what are people saying about chick-fil-a's chicken nuggets", + "restaurant_reviews" + ], + [ + "show me the reviews for the new jalapeno fries at taco bell", + "restaurant_reviews" + ], + [ + "give me some feedback about the pasta at piada please", + "restaurant_reviews" + ], + [ + "how is gramercy tavern rated", + "restaurant_reviews" + ], + [ + "how many stars does babbo have", + "restaurant_reviews" + ], + [ + "does cielo have good reviews", + "restaurant_reviews" + ], + [ + "do people say per se is any good or not", + "restaurant_reviews" + ], + [ + "what do food critics say about gramercy tavern", + "restaurant_reviews" + ], + [ + "what are the reviews like for l'auberge aubergine", + "restaurant_reviews" + ], + [ + "how many stars does brasserie les halles have", + "restaurant_reviews" + ], + [ + "what rating do the critics give the french laundry", + "restaurant_reviews" + ], + [ + "does acero have good or bad ratings", + "restaurant_reviews" + ], + [ + "has the french laundry gotten good reviews lately", + "restaurant_reviews" + ], + [ + "what kind of reviews does the olive garden have", + "restaurant_reviews" + ], + [ + "what's the average review for olive garden", + "restaurant_reviews" + ], + [ + "oliver garden reviews", + "restaurant_reviews" + ], + [ + "does olive garden have good customer reviews", + "restaurant_reviews" + ], + [ + "does olive garden have good reviews", + "restaurant_reviews" + ], + [ + "i need my routing number for my checking account at bb&t bank", + "routing" + ], + [ + "what is my routing number to my checking account at bb&t bankj", + "routing" + ], + [ + "tell me my routing number at my bank, community trust", + "routing" + ], + [ + "what is the routing number of my checking account at first national bankj", + "routing" + ], + [ + "give me the routing number of my checking account at my main bank, first commerce", + "routing" + ], + [ + "what is my bank routing number", + "routing" + ], + [ + "what's my routing number", + "routing" + ], + [ + "what's wells fargo's routing number", + "routing" + ], + [ + "tell me my routing number", + "routing" + ], + [ + "where can i find my routing number", + "routing" + ], + [ + "where's the routing number for wells fargo", + "routing" + ], + [ + "where can i find wells fargo's routing number", + "routing" + ], + [ + "where is wells fargo's routing number listed", + "routing" + ], + [ + "where should i go to find the routing number for well's fargo", + "routing" + ], + [ + "is my routing number on my account page", + "routing" + ], + [ + "what is the bank's routing number", + "routing" + ], + [ + "i want to know what my routing number is", + "routing" + ], + [ + "i need a routing number", + "routing" + ], + [ + "does pnc have a routing number", + "routing" + ], + [ + "can you tell me the routing number to pnc", + "routing" + ], + [ + "can you please read me the routing number to pnc", + "routing" + ], + [ + "where can i find routing number for pnc", + "routing" + ], + [ + "what is the routing number for pnc", + "routing" + ], + [ + "i need x's routing number", + "routing" + ], + [ + "where would century bank have their routing number listed", + "routing" + ], + [ + "where do i go if i am seeking the routing number of dallas capital", + "routing" + ], + [ + "what is the location that td bank has their routing number listed", + "routing" + ], + [ + "where would the routing number for first utah be located", + "routing" + ], + [ + "tell me what my savings account routing number is", + "routing" + ], + [ + "what is chase bank's routing number", + "routing" + ], + [ + "cats or dogs are your preference", + "do_you_have_pets" + ], + [ + "what kinds of pets do you own", + "do_you_have_pets" + ], + [ + "do you have any pets and what kind", + "do_you_have_pets" + ], + [ + "would you describe yourself as a cat or dog person", + "do_you_have_pets" + ], + [ + "you have what types or kinds of pets", + "do_you_have_pets" + ], + [ + "are you a pet owner what kind", + "do_you_have_pets" + ], + [ + "do you have a pet", + "do_you_have_pets" + ], + [ + "would you call yourself a cat or dog person", + "do_you_have_pets" + ], + [ + "what kind of animals do you own", + "do_you_have_pets" + ], + [ + "can you name the type of pets you have", + "do_you_have_pets" + ], + [ + "do you have any pets", + "do_you_have_pets" + ], + [ + "are you a pet owner and what kind", + "do_you_have_pets" + ], + [ + "what pets do you own", + "do_you_have_pets" + ], + [ + "tell me any animals that you have as pets", + "do_you_have_pets" + ], + [ + "do you have cats or dogs or something else as a pet", + "do_you_have_pets" + ], + [ + "please tell me the types of pets you have", + "do_you_have_pets" + ], + [ + "how would you categorize the pets you have", + "do_you_have_pets" + ], + [ + "tell me about the pets you have", + "do_you_have_pets" + ], + [ + "do you have friendly or unfriendly pets", + "do_you_have_pets" + ], + [ + "which pets do you have", + "do_you_have_pets" + ], + [ + "which type of pets do you have", + "do_you_have_pets" + ], + [ + "what pets do you have", + "do_you_have_pets" + ], + [ + "do you like appreciate cats or dogs more", + "do_you_have_pets" + ], + [ + "do you like cats or dogs more", + "do_you_have_pets" + ], + [ + "which kinds of pets do you own", + "do_you_have_pets" + ], + [ + "do you prefer cats or dogs", + "do_you_have_pets" + ], + [ + "do you prefer cats or dogs more", + "do_you_have_pets" + ], + [ + "which kinds of pets do you have", + "do_you_have_pets" + ], + [ + "do you currently have any pets", + "do_you_have_pets" + ], + [ + "what is the total number of pets that you have", + "do_you_have_pets" + ], + [ + "please book a meeting room for thusday at 4:00", + "schedule_meeting" + ], + [ + "would you please schedule a meeting room for 4:00 on thursday", + "schedule_meeting" + ], + [ + "could you schedule a meeting room for 4:00 on thursday", + "schedule_meeting" + ], + [ + "will you schedule a conference room for thursday at 4:00", + "schedule_meeting" + ], + [ + "can you reserve a meeting space for 4:00 on thursday", + "schedule_meeting" + ], + [ + "i need to know how to schedule a meeting", + "schedule_meeting" + ], + [ + "please help me figure out how to set up a meeting", + "schedule_meeting" + ], + [ + "i need assistance scheduling a meeting", + "schedule_meeting" + ], + [ + "walk me through the process of scheduling a meeting", + "schedule_meeting" + ], + [ + "help me set up a meeting please", + "schedule_meeting" + ], + [ + "i need a meeting room between 3-7, are any available", + "schedule_meeting" + ], + [ + "can you tell me if there are meeting rooms available between 1 and 4", + "schedule_meeting" + ], + [ + "are meeting rooms free between 8-3", + "schedule_meeting" + ], + [ + "do you know if meeting rooms are open to use 1-2", + "schedule_meeting" + ], + [ + "can you check if meeting rooms are available between 4 and 5", + "schedule_meeting" + ], + [ + "meeting rooms open between one and three pm", + "schedule_meeting" + ], + [ + "check meeting room availability between one and three pm", + "schedule_meeting" + ], + [ + "what meeting rooms are available for meeting 5pm friday", + "schedule_meeting" + ], + [ + "reserve a meeting room for friday, 5pm", + "schedule_meeting" + ], + [ + "one and three pm are there meeting rooms open", + "schedule_meeting" + ], + [ + "friday 5pm schedule a room for meeting", + "schedule_meeting" + ], + [ + "open meeting rooms from one to three pm", + "schedule_meeting" + ], + [ + "can you reserve a room for a friday meeting at 5pm", + "schedule_meeting" + ], + [ + "reserve a meeting room for 5pm on friday", + "schedule_meeting" + ], + [ + "check meeting rooms available between one and three pm", + "schedule_meeting" + ], + [ + "i need to schedule meeting room for monday at 2:30 pm, please", + "schedule_meeting" + ], + [ + "i would like you to reserve a conference room for noon tomorrow", + "schedule_meeting" + ], + [ + "please reserve a meeting room for 1:00 pm on tuesday", + "schedule_meeting" + ], + [ + "go ahead and hold a conference room for friday at 11 am, please", + "schedule_meeting" + ], + [ + "can you book a meeting room for friday at 9:00 am", + "schedule_meeting" + ], + [ + "which gas would be best", + "gas_type" + ], + [ + "what type of gas should i use", + "gas_type" + ], + [ + "which type of gas should i get", + "gas_type" + ], + [ + "can you tell me what gas this car takes", + "gas_type" + ], + [ + "can you tell me this vehicles gas type", + "gas_type" + ], + [ + "what fuel should i use for this car", + "gas_type" + ], + [ + "what kind of gas should i use for this car", + "gas_type" + ], + [ + "i need to know the gas type for this vehicle", + "gas_type" + ], + [ + "for this car what kind of fuel does it take", + "gas_type" + ], + [ + "i need to know the type of gas for this car", + "gas_type" + ], + [ + "i want to know what kind of gas this car uses", + "gas_type" + ], + [ + "what gas does this car use", + "gas_type" + ], + [ + "what fuel do i put in this car", + "gas_type" + ], + [ + "what type of gas goes into the car", + "gas_type" + ], + [ + "what type of fuel does this car utilize", + "gas_type" + ], + [ + "what type of gas do i put in this new car", + "gas_type" + ], + [ + "what type of gas do i use in this car", + "gas_type" + ], + [ + "is there a certain kind of fuel needed", + "gas_type" + ], + [ + "what gas goes in the vehicle", + "gas_type" + ], + [ + "what raiting of gas is called for", + "gas_type" + ], + [ + "what kind of gas goes in", + "gas_type" + ], + [ + "can you tell me what kind of gas your car uses", + "gas_type" + ], + [ + "what kind of gas does your car use", + "gas_type" + ], + [ + "the car you are driving uses what kind of gas", + "gas_type" + ], + [ + "what kind of gas can i put into this car", + "gas_type" + ], + [ + "which gas type goes into this car", + "gas_type" + ], + [ + "which type of gas does this car take", + "gas_type" + ], + [ + "i need gas what type do i need for this car", + "gas_type" + ], + [ + "what types of gas can i get for this car", + "gas_type" + ], + [ + "which type of gas does my car use", + "gas_type" + ], + [ + "would a socket converter be needed in france", + "plug_type" + ], + [ + "how do i plug stuff in in france", + "plug_type" + ], + [ + "is socket converter required in france", + "plug_type" + ], + [ + "does france use a socket converter", + "plug_type" + ], + [ + "is electricity the same in france", + "plug_type" + ], + [ + "will i need a plug converter when i visit costa rica", + "plug_type" + ], + [ + "will i require a plug converter when i visit kenya", + "plug_type" + ], + [ + "will i need to get a plug converter when i visit guam", + "plug_type" + ], + [ + "do i require a plug converter when i visit puerto rico", + "plug_type" + ], + [ + "will i need to have a plug converter when i visit madrid", + "plug_type" + ], + [ + "z uses which type of plug", + "plug_type" + ], + [ + "what sort of plug is used in the caribbean", + "plug_type" + ], + [ + "which plug is used in japan", + "plug_type" + ], + [ + "plug used in china", + "plug_type" + ], + [ + "what kind of plug is used in england", + "plug_type" + ], + [ + "what do i need for a plug in wales", + "plug_type" + ], + [ + "does z used the same plus as we do in the united states", + "plug_type" + ], + [ + "can i used the same type of plug in z as i do in the us", + "plug_type" + ], + [ + "electrical plugs used in that country", + "plug_type" + ], + [ + "are the electric plugs the same over in that country", + "plug_type" + ], + [ + "what kind of electrical outlet does that country use", + "plug_type" + ], + [ + "do i need a converter for my electronics when i go to that coutntry", + "plug_type" + ], + [ + "can i plug in my electronics there like normal", + "plug_type" + ], + [ + "is a socket converter necessary if i'm travelling to london", + "plug_type" + ], + [ + "are socket converters something i need to bring if going to australia", + "plug_type" + ], + [ + "can i use electronic devices in mexico without a socket converter", + "plug_type" + ], + [ + "are socket converters needed if i'm going to cape town", + "plug_type" + ], + [ + "does sweden use the same kind of socket or do i need a converter", + "plug_type" + ], + [ + "what plug type is used internationally", + "plug_type" + ], + [ + "what's the plug type in honduras", + "plug_type" + ], + [ + "when would you change my tires", + "tire_change" + ], + [ + "when is the next time i should get my tires changed", + "tire_change" + ], + [ + "how soon should i get my tires changed", + "tire_change" + ], + [ + "how often should i get my tires changed", + "tire_change" + ], + [ + "do you know when i should get my tires changed next", + "tire_change" + ], + [ + "when should my tires be changed", + "tire_change" + ], + [ + "i need to know when i should change my tires", + "tire_change" + ], + [ + "how soon till i need to change my tires", + "tire_change" + ], + [ + "can you tell me when my tires have to be changed", + "tire_change" + ], + [ + "am i almost due for a tire change", + "tire_change" + ], + [ + "when is my car due for an tire change", + "tire_change" + ], + [ + "how do i know when to get the tires changed on my car", + "tire_change" + ], + [ + "how often should my tires be changed", + "tire_change" + ], + [ + "how often should i change the tires on my car", + "tire_change" + ], + [ + "i replaced tires last june when should i do it again", + "tire_change" + ], + [ + "on feb 3rd i changed my tires are they still good", + "tire_change" + ], + [ + "my tires are 29 months old should u change them", + "tire_change" + ], + [ + "when do my tires need changing after i replaced them last week", + "tire_change" + ], + [ + "in september i changed my tires are they in need of changing", + "tire_change" + ], + [ + "how do i know if it is time to replace my tires", + "tire_change" + ], + [ + "how long does the average set of tire last before needing replacement", + "tire_change" + ], + [ + "how long are my tires expected to last before needing to be replaced", + "tire_change" + ], + [ + "how many miles are my tires rated for", + "tire_change" + ], + [ + "what is the time for a tire change", + "tire_change" + ], + [ + "my tires should be changed when", + "tire_change" + ], + [ + "tell me when to get my tires changed", + "tire_change" + ], + [ + "when is it time for a change in tires", + "tire_change" + ], + [ + "what is the timeframe for getting my tires changed", + "tire_change" + ], + [ + "tell me when i'll need new tires", + "tire_change" + ], + [ + "when will my tires need to be changed", + "tire_change" + ], + [ + "convert 200 us dollars to british pounds", + "exchange_rate" + ], + [ + "how many japanese yen are in a us dollar", + "exchange_rate" + ], + [ + "how much is 5 us dollars worth in canadian dollars", + "exchange_rate" + ], + [ + "can you tell me what 100 british pounds equals in us dollars", + "exchange_rate" + ], + [ + "what is the exchange rate between us dollars and japanese yen", + "exchange_rate" + ], + [ + "whats the current exchange rate between usd and eur", + "exchange_rate" + ], + [ + "what's the exhange rate between mxn and gbp", + "exchange_rate" + ], + [ + "what is the current exchange rate between mxn and eur", + "exchange_rate" + ], + [ + "what's the exchange rate between ils and usd", + "exchange_rate" + ], + [ + "what is the usd mxn exchange rate", + "exchange_rate" + ], + [ + "how many mexican pesos is a us dollar worth", + "exchange_rate" + ], + [ + "how much is one us dollar in british pounds", + "exchange_rate" + ], + [ + "whats the exchange rate for us dollars to british pounds", + "exchange_rate" + ], + [ + "what is a british pound worth in mexican pesos", + "exchange_rate" + ], + [ + "how many mexican pesos can i get for one us dollar", + "exchange_rate" + ], + [ + "look up the rate of exchange between pesos and usd", + "exchange_rate" + ], + [ + "find me the exchange rate between usd and cad", + "exchange_rate" + ], + [ + "what is the exchange rate between euros and pesos", + "exchange_rate" + ], + [ + "tell me the current exchange rate between cad and euros", + "exchange_rate" + ], + [ + "what is the present exchange rate between usd and british pound", + "exchange_rate" + ], + [ + "convert 20 yen to dollars", + "exchange_rate" + ], + [ + "how many dollars can i get for 20 yen", + "exchange_rate" + ], + [ + "how many dollars is 20 yen worth", + "exchange_rate" + ], + [ + "20 yen is how many dollars", + "exchange_rate" + ], + [ + "20 yen equals how many dollars", + "exchange_rate" + ], + [ + "is $30 usd more or less in canada", + "exchange_rate" + ], + [ + "in canadian dollars, what is $30", + "exchange_rate" + ], + [ + "what is the conversion of $30 in canadian dollars", + "exchange_rate" + ], + [ + "can you please convert $30 usd to canadian dollars", + "exchange_rate" + ], + [ + "how much is $30 usd in canadian dollar", + "exchange_rate" + ], + [ + "on what day is our next free day", + "next_holiday" + ], + [ + "on what day is our next day off", + "next_holiday" + ], + [ + "what day is our next day off", + "next_holiday" + ], + [ + "is our next day off soon", + "next_holiday" + ], + [ + "do you know when our next day off is", + "next_holiday" + ], + [ + "when are we off work next", + "next_holiday" + ], + [ + "when is the next day we have off", + "next_holiday" + ], + [ + "when will our next day off be", + "next_holiday" + ], + [ + "are there any holidays coming and when", + "next_holiday" + ], + [ + "how many holidays are there and when is the next one here", + "next_holiday" + ], + [ + "for the holidays when is the next one we do here", + "next_holiday" + ], + [ + "what holiday is next and when", + "next_holiday" + ], + [ + "how long before the next holiday here", + "next_holiday" + ], + [ + "what's the wait period until the next day off", + "next_holiday" + ], + [ + "when will my next vacation day be", + "next_holiday" + ], + [ + "how long do i have to wait to get a day off", + "next_holiday" + ], + [ + "when's the next day off", + "next_holiday" + ], + [ + "how many days left until the next day out of work", + "next_holiday" + ], + [ + "tell me the next holiday", + "next_holiday" + ], + [ + "tell me how long until the next day off", + "next_holiday" + ], + [ + "i got to know how long until the next day off", + "next_holiday" + ], + [ + "i wanna know how long until the next day off", + "next_holiday" + ], + [ + "i need to know how long until the next day off", + "next_holiday" + ], + [ + "i wanna know the next holiday", + "next_holiday" + ], + [ + "let me know how long until the next day off", + "next_holiday" + ], + [ + "i wish to know the next holiday", + "next_holiday" + ], + [ + "i must know the next holiday", + "next_holiday" + ], + [ + "i would like to know the next holiday", + "next_holiday" + ], + [ + "find the next holiday", + "next_holiday" + ], + [ + "when is the soonest holiday", + "next_holiday" + ], + [ + "turn volume up to 4", + "change_volume" + ], + [ + "adjust volume setting to 4", + "change_volume" + ], + [ + "keep volume at 4 all the time", + "change_volume" + ], + [ + "put volume setting on number 4", + "change_volume" + ], + [ + "please make sure the volume stays at 4", + "change_volume" + ], + [ + "put the volume to 4", + "change_volume" + ], + [ + "volume to 4", + "change_volume" + ], + [ + "turn down your speaker", + "change_volume" + ], + [ + "decrease your decibel level", + "change_volume" + ], + [ + "be more quiet", + "change_volume" + ], + [ + "please lower the sound", + "change_volume" + ], + [ + "speak up", + "change_volume" + ], + [ + "not so loud", + "change_volume" + ], + [ + "quieter please", + "change_volume" + ], + [ + "increase the volume", + "change_volume" + ], + [ + "turn up the volume", + "change_volume" + ], + [ + "speak louder please", + "change_volume" + ], + [ + "please lower your volume", + "change_volume" + ], + [ + "louder please", + "change_volume" + ], + [ + "turn down the volume", + "change_volume" + ], + [ + "can you speak quieter", + "change_volume" + ], + [ + "turn to volume 4", + "change_volume" + ], + [ + "set 4 as the volume", + "change_volume" + ], + [ + "turn volume to 4", + "change_volume" + ], + [ + "volume 4 set", + "change_volume" + ], + [ + "volume set to 4", + "change_volume" + ], + [ + "i can't hear you and need you to turn up the volume", + "change_volume" + ], + [ + "turn up your speaker volume", + "change_volume" + ], + [ + "can you speak louder", + "change_volume" + ], + [ + "can you turn up the volume for your speaker", + "change_volume" + ], + [ + "who is in charge of you when you work", + "who_do_you_work_for" + ], + [ + "who is responsible for your employment", + "who_do_you_work_for" + ], + [ + "who do you report to for your work", + "who_do_you_work_for" + ], + [ + "let me know who your boss is", + "who_do_you_work_for" + ], + [ + "i want to know who your boss is", + "who_do_you_work_for" + ], + [ + "would you let me know who your boss is", + "who_do_you_work_for" + ], + [ + "i would like to know who your boss is", + "who_do_you_work_for" + ], + [ + "are you my insubordinate", + "who_do_you_work_for" + ], + [ + "does someone else control you", + "who_do_you_work_for" + ], + [ + "do i own you", + "who_do_you_work_for" + ], + [ + "what firm do you work for", + "who_do_you_work_for" + ], + [ + "do you take your orders from me", + "who_do_you_work_for" + ], + [ + "do i control you", + "who_do_you_work_for" + ], + [ + "am i in charge of you", + "who_do_you_work_for" + ], + [ + "is there another person that controls you", + "who_do_you_work_for" + ], + [ + "who do you take your orders from", + "who_do_you_work_for" + ], + [ + "would you consider someone else your boss", + "who_do_you_work_for" + ], + [ + "do you take orders from someone else", + "who_do_you_work_for" + ], + [ + "who controls you", + "who_do_you_work_for" + ], + [ + "who's your boss", + "who_do_you_work_for" + ], + [ + "what company do you work for", + "who_do_you_work_for" + ], + [ + "who employs you", + "who_do_you_work_for" + ], + [ + "where do you work", + "who_do_you_work_for" + ], + [ + "who is it that you work for", + "who_do_you_work_for" + ], + [ + "whom do you work for", + "who_do_you_work_for" + ], + [ + "who is your job with", + "who_do_you_work_for" + ], + [ + "what company are you employed by", + "who_do_you_work_for" + ], + [ + "what is the name of the place you work at", + "who_do_you_work_for" + ], + [ + "what's your boss's name", + "who_do_you_work_for" + ], + [ + "who can i talk to above you", + "who_do_you_work_for" + ], + [ + "what's the most i can charge on my card", + "credit_limit" + ], + [ + "how much do i have available on my visa card", + "credit_limit" + ], + [ + "what is my visa credit limit", + "credit_limit" + ], + [ + "how much of a credit limit does visa allow", + "credit_limit" + ], + [ + "is there a substantial credit limit on my visa", + "credit_limit" + ], + [ + "as my visa got a high enough limit on it", + "credit_limit" + ], + [ + "what is my credit max", + "credit_limit" + ], + [ + "what is my credit card spending limit", + "credit_limit" + ], + [ + "what's my daily spending limit", + "credit_limit" + ], + [ + "tell me my credit limit", + "credit_limit" + ], + [ + "how much credit do i have on my discover card", + "credit_limit" + ], + [ + "do i have a monthly spending limit", + "credit_limit" + ], + [ + "what's the limit on my discover card", + "credit_limit" + ], + [ + "is there a spending limit", + "credit_limit" + ], + [ + "what is my credit limit on my discover", + "credit_limit" + ], + [ + "what's my spending limit on my discover", + "credit_limit" + ], + [ + "how much is my maximum to spend on credit cards", + "credit_limit" + ], + [ + "what's my discover credit limit", + "credit_limit" + ], + [ + "how much can i use on my visa", + "credit_limit" + ], + [ + "my visa has what limit", + "credit_limit" + ], + [ + "tell me my visa limit", + "credit_limit" + ], + [ + "look up how high my visa limit is", + "credit_limit" + ], + [ + "what is the limit on my visa", + "credit_limit" + ], + [ + "what is my state bank of india card credit limit", + "credit_limit" + ], + [ + "calculate the limit i have available for spending on my natwest card", + "credit_limit" + ], + [ + "tell me my hsbc card credit limit", + "credit_limit" + ], + [ + "what's the spending limit on my lloyds card", + "credit_limit" + ], + [ + "i need you to tell me the credit limit for my republic bank card", + "credit_limit" + ], + [ + "how high is my credit limit", + "credit_limit" + ], + [ + "i want to know my credit limit", + "credit_limit" + ], + [ + "is the resataurant busy at 5:00 pm", + "how_busy" + ], + [ + "how busy is the cafe at 7:00", + "how_busy" + ], + [ + "would tio's be crowded at 7", + "how_busy" + ], + [ + "can i get a table for four at 8:00", + "how_busy" + ], + [ + "is the friday's full after 4", + "how_busy" + ], + [ + "how long is the wait at fridays", + "how_busy" + ], + [ + "is the mexican place crowded at night", + "how_busy" + ], + [ + "are cool people at the bar at 9:00 pm", + "how_busy" + ], + [ + "what is the best time to go to get a burger without a line", + "how_busy" + ], + [ + "how long before i can eat at chic fil a", + "how_busy" + ], + [ + "how long to be seated at carrabas", + "how_busy" + ], + [ + "is the wait at pizza hut long", + "how_busy" + ], + [ + "is the breakfast place full in the mornings", + "how_busy" + ], + [ + "is the wait more than an hour at the italian place", + "how_busy" + ], + [ + "tell me how busy red robin is at 5 pm", + "how_busy" + ], + [ + "i wanna know how busy denny's is at 5 am", + "how_busy" + ], + [ + "i need to know how busy denny's is at 6 am", + "how_busy" + ], + [ + "how busy is red robin around 5 pm", + "how_busy" + ], + [ + "so how busy is the outback steakhouse at 5 pm", + "how_busy" + ], + [ + "tell me mr joes pizza average wait time", + "how_busy" + ], + [ + "is mr joes pizza available for a seating", + "how_busy" + ], + [ + "does mr joes pizza usually have a long wait", + "how_busy" + ], + [ + "can you find out the waiting times for mr joes pizza", + "how_busy" + ], + [ + "what's the typical wait time for mr joes pizza", + "how_busy" + ], + [ + "how busy is cheesecake factory right now", + "how_busy" + ], + [ + "how long is the wait at cheesecake factory", + "how_busy" + ], + [ + "how long will i have to wait at cheesecake factory", + "how_busy" + ], + [ + "is cheesecake factory busy right now", + "how_busy" + ], + [ + "check how busy cheesecake factory is", + "how_busy" + ], + [ + "is there a long wait at chili's around 5:00", + "how_busy" + ], + [ + "can i do a reservation at sammy's crab shack", + "accept_reservations" + ], + [ + "does bill's house of chop suey accept reservations", + "accept_reservations" + ], + [ + "check if bj's takes reservations", + "accept_reservations" + ], + [ + "does bj's take reservations", + "accept_reservations" + ], + [ + "will bj's take reservations", + "accept_reservations" + ], + [ + "do you know if i can make reservations at bj's", + "accept_reservations" + ], + [ + "tell me if the new york restaurant takes reservations", + "accept_reservations" + ], + [ + "can i reserve tables at the new york restaurant", + "accept_reservations" + ], + [ + "i want to know if the new york restaurant takes reservations", + "accept_reservations" + ], + [ + "does the new york restaurant take reservations", + "accept_reservations" + ], + [ + "is it possible to make reservations at the new york restaurant", + "accept_reservations" + ], + [ + "do you have any idea if the flying wing does reservations", + "accept_reservations" + ], + [ + "does village inn let you make reservations", + "accept_reservations" + ], + [ + "is it possible to get reservations at ihop", + "accept_reservations" + ], + [ + "is it possible to reserve a table at white castle", + "accept_reservations" + ], + [ + "do you think they'll let me reserve a table at the olive garden", + "accept_reservations" + ], + [ + "do they take reservations at applebeesi", + "accept_reservations" + ], + [ + "does applebees do reservations", + "accept_reservations" + ], + [ + "can applebees take reservations", + "accept_reservations" + ], + [ + "can i get reservations at applebees", + "accept_reservations" + ], + [ + "does applebees take reservations", + "accept_reservations" + ], + [ + "tell me if taco bell takes reservations", + "accept_reservations" + ], + [ + "any clue as to if taco bell takes reservations", + "accept_reservations" + ], + [ + "do you know if taco bell takes reservations", + "accept_reservations" + ], + [ + "any idea as to if taco bell takes reservations", + "accept_reservations" + ], + [ + "do you know if l'arpege will ask for reservations", + "accept_reservations" + ], + [ + "will we have to make reservations for roca", + "accept_reservations" + ], + [ + "does osteria francescana take reservations", + "accept_reservations" + ], + [ + "do you have any idea if central needs reservations", + "accept_reservations" + ], + [ + "eleven madison park takes reservations right", + "accept_reservations" + ], + [ + "where is my order now", + "order_status" + ], + [ + "tell me all updates about my order's status", + "order_status" + ], + [ + "is my order on its way or what's going on", + "order_status" + ], + [ + "how is my order doing right now", + "order_status" + ], + [ + "locate my package", + "order_status" + ], + [ + "can you monitor my package's progress", + "order_status" + ], + [ + "track my order", + "order_status" + ], + [ + "tell me where my package is currently", + "order_status" + ], + [ + "where is my package en route", + "order_status" + ], + [ + "give me the status of my order", + "order_status" + ], + [ + "when will i get my order", + "order_status" + ], + [ + "tell me where my order is", + "order_status" + ], + [ + "what is the status of the order i placed with you yesterday", + "order_status" + ], + [ + "what's the updated status of my order", + "order_status" + ], + [ + "can you help with delivery tracking", + "order_status" + ], + [ + "i need a delivery tracked", + "order_status" + ], + [ + "i need to track my order", + "order_status" + ], + [ + "i placed an order and i need it tracked", + "order_status" + ], + [ + "could you track an order for me", + "order_status" + ], + [ + "has my package been sent", + "order_status" + ], + [ + "what time is my package getting here", + "order_status" + ], + [ + "how's my amazon order doing", + "order_status" + ], + [ + "i need to track a package", + "order_status" + ], + [ + "i want to track a package i should be getting", + "order_status" + ], + [ + "please track my order", + "order_status" + ], + [ + "can you tell me when my item will get here", + "order_status" + ], + [ + "can you tell me where my item is", + "order_status" + ], + [ + "what's up with my order", + "order_status" + ], + [ + "are they any updates on my order", + "order_status" + ], + [ + "i need to track the status of my order", + "order_status" + ], + [ + "i'm struggling to remind myself the pin number to my card", + "pin_change" + ], + [ + "i'm having trouble remembering the pin number to my card", + "pin_change" + ], + [ + "the pin number to my card has been forgotten", + "pin_change" + ], + [ + "i don't remember the pin number to my card", + "pin_change" + ], + [ + "i do not recall the pin number to my card", + "pin_change" + ], + [ + "i would like to change the name on my checking account", + "pin_change" + ], + [ + "i would like to change the name on my credit card account", + "pin_change" + ], + [ + "i would like to change the name on my first hawaiian bank account", + "pin_change" + ], + [ + "i would like to change the name on my first bankcard account", + "pin_change" + ], + [ + "i would like to change the name on my capital one account", + "pin_change" + ], + [ + "change the pin on my savings account to 1234", + "pin_change" + ], + [ + "i want to change my savings account pin to 1234", + "pin_change" + ], + [ + "make 1234 a new pin for my savings account", + "pin_change" + ], + [ + "make 1234 the pin on my savings account", + "pin_change" + ], + [ + "can you make 1234 the pin for my savings account", + "pin_change" + ], + [ + "make my pin 1234 for my checking account", + "pin_change" + ], + [ + "go my to checking account and switch my pin to 1234", + "pin_change" + ], + [ + "access my checking account and update my pin to 1234", + "pin_change" + ], + [ + "correct my account pin to 1234 on my checking account", + "pin_change" + ], + [ + "modify my account pin to 1234 on my checking account", + "pin_change" + ], + [ + "tell me the pin number for my checking account", + "pin_change" + ], + [ + "please give me the pin number for my checking account", + "pin_change" + ], + [ + "i need the pin number for my checking account", + "pin_change" + ], + [ + "does my checking account have a pin number", + "pin_change" + ], + [ + "what's the pin number for my checking account", + "pin_change" + ], + [ + "change the code of my savings account to be 1234", + "pin_change" + ], + [ + "alter the pin on my savings account to be 1234", + "pin_change" + ], + [ + "what exactly is my pin", + "pin_change" + ], + [ + "how do i change the account pin number for me", + "pin_change" + ], + [ + "please tell me how do i change the account pin number", + "pin_change" + ], + [ + "good speaking to you", + "goodbye" + ], + [ + "it was really awesome to talk to you", + "goodbye" + ], + [ + "it was great to speak with you", + "goodbye" + ], + [ + "it was great to talk to you", + "goodbye" + ], + [ + "bye bye then", + "goodbye" + ], + [ + "it was very good to talk to you", + "goodbye" + ], + [ + "good bye then", + "goodbye" + ], + [ + "bye", + "goodbye" + ], + [ + "regards", + "goodbye" + ], + [ + "catch you later", + "goodbye" + ], + [ + "great talk, thanks", + "goodbye" + ], + [ + "later", + "goodbye" + ], + [ + "goodbye", + "goodbye" + ], + [ + "see you later", + "goodbye" + ], + [ + "enjoy your day, goodbye", + "goodbye" + ], + [ + "thank you goodbye", + "goodbye" + ], + [ + "have a good day, bye", + "goodbye" + ], + [ + "that will be all have a nice day!", + "goodbye" + ], + [ + "i enjoyed talking to you, bye", + "goodbye" + ], + [ + "it was great talking to you", + "goodbye" + ], + [ + "nice seeing you bye", + "goodbye" + ], + [ + "it was nice to chat", + "goodbye" + ], + [ + "it was a pleasure talking to you", + "goodbye" + ], + [ + "ok good chatting goodbye", + "goodbye" + ], + [ + "thanks bye bye!", + "goodbye" + ], + [ + "that's all i need, i'm going now", + "goodbye" + ], + [ + "talk to you soon, bye!", + "goodbye" + ], + [ + "thanks for your help, goodbye!", + "goodbye" + ], + [ + "good bye", + "goodbye" + ], + [ + "signing off", + "goodbye" + ], + [ + "why is my bank account locked", + "account_blocked" + ], + [ + "how do i unlock my bank account", + "account_blocked" + ], + [ + "can you unlock my bank account", + "account_blocked" + ], + [ + "how did my bank account get frozen", + "account_blocked" + ], + [ + "can you help me unlock my bank account", + "account_blocked" + ], + [ + "call my bank and ask them why my account is frozen", + "account_blocked" + ], + [ + "check with my bank to see why my account is frozen", + "account_blocked" + ], + [ + "do you know why my bank account is frozen", + "account_blocked" + ], + [ + "why did my bank place a hold on my bank account", + "account_blocked" + ], + [ + "are there any problems with my bank account", + "account_blocked" + ], + [ + "did someone who is unauthorized try to get into my bank account", + "account_blocked" + ], + [ + "how can i unfreeze my bank account", + "account_blocked" + ], + [ + "why is there a stop on my deposit account", + "account_blocked" + ], + [ + "why can't i use my money market account", + "account_blocked" + ], + [ + "why is there a delay on my checking account", + "account_blocked" + ], + [ + "why is my checking account not working", + "account_blocked" + ], + [ + "what could cause a hold on my savings account", + "account_blocked" + ], + [ + "what caused a hold on my us bank account", + "account_blocked" + ], + [ + "can you check and see why us bank put a hold on my account", + "account_blocked" + ], + [ + "why does us bank have a hold on my account", + "account_blocked" + ], + [ + "reasons that us bank would place a hold on my account", + "account_blocked" + ], + [ + "check to see why us bank placed a hold on my account", + "account_blocked" + ], + [ + "is there a problem with my account, it appears to be blocked", + "account_blocked" + ], + [ + "what is up with my account, why is it blocked", + "account_blocked" + ], + [ + "there seems to be an issue with my account", + "account_blocked" + ], + [ + "can you help me unblock my account", + "account_blocked" + ], + [ + "can you check what the problem with my account is, it seems to b e blocked", + "account_blocked" + ], + [ + "is there a reason you put a hold on my chase account", + "account_blocked" + ], + [ + "why can't i access my chase account", + "account_blocked" + ], + [ + "how come my chase account has a hold on it", + "account_blocked" + ], + [ + "i'd like to know what song this is", + "what_song" + ], + [ + "what is this song name", + "what_song" + ], + [ + "i need to know this song", + "what_song" + ], + [ + "what is the name of this song that's on right now", + "what_song" + ], + [ + "i need to know the title of this song", + "what_song" + ], + [ + "find out what song is currently on the speakers", + "what_song" + ], + [ + "look up the name of this song", + "what_song" + ], + [ + "can you identify this song for me", + "what_song" + ], + [ + "tell me what this song is called", + "what_song" + ], + [ + "please identify the song we're currently listening to", + "what_song" + ], + [ + "what is the title of the song we're listening to right now", + "what_song" + ], + [ + "look up the song that's on right now", + "what_song" + ], + [ + "can you identify this song that's playing", + "what_song" + ], + [ + "find out what song this is", + "what_song" + ], + [ + "i need to know what song this is that we're listening to", + "what_song" + ], + [ + "tell me the song that is currently playing", + "what_song" + ], + [ + "can you identify this song playing through the speaker right now", + "what_song" + ], + [ + "tell me what this song is called that's playing", + "what_song" + ], + [ + "what is the title of this song", + "what_song" + ], + [ + "what is this song called", + "what_song" + ], + [ + "what song is currently playing", + "what_song" + ], + [ + "what is the information on this song", + "what_song" + ], + [ + "what song is this one", + "what_song" + ], + [ + "on the speaker do you know what song is on", + "what_song" + ], + [ + "on the speaker what song is playing", + "what_song" + ], + [ + "do you know what song is playing on the speaker", + "what_song" + ], + [ + "at the moment what song is playing on the speaker", + "what_song" + ], + [ + "what is playing on the speaker at the moment", + "what_song" + ], + [ + "who is the singer on the speaker now", + "what_song" + ], + [ + "what kind of music on the speaker now", + "what_song" + ], + [ + "will i be charged transaction fees if i use my american card internationally", + "international_fees" + ], + [ + "will i incur transaction fees if i use my american card internationally", + "international_fees" + ], + [ + "do i have transaction fees if i use my american card internationally", + "international_fees" + ], + [ + "could you find out if my bank charges transaction fees on my american card if use internationally", + "international_fees" + ], + [ + "will the bank charge transaction fees if i use my american card internationally", + "international_fees" + ], + [ + "do i get charged extra for using my card in portland", + "international_fees" + ], + [ + "will i get charged for using my credit card in portland", + "international_fees" + ], + [ + "if i'm in portland can i still use my card without getting charged extra", + "international_fees" + ], + [ + "is there a fee for using my card in portland", + "international_fees" + ], + [ + "does using my card in portland charge me extra", + "international_fees" + ], + [ + "what are the transaction fees associated with my discover card if i am in rome", + "international_fees" + ], + [ + "how many transaction fees are there when i use my discover card in rome", + "international_fees" + ], + [ + "are there transaction fees for discover cards used in rome", + "international_fees" + ], + [ + "will using a discover card in rome cause transaction fees", + "international_fees" + ], + [ + "do i have transaction fees when i use my discover card in rome", + "international_fees" + ], + [ + "are there transaction fees using my discover if i'm in cuba", + "international_fees" + ], + [ + "when i go to cuba will there be a transaction fee for using my discover card", + "international_fees" + ], + [ + "is there a fee to use my card in france", + "international_fees" + ], + [ + "will i be charged a transaction fee on my discover card in cuba", + "international_fees" + ], + [ + "is there a charge to use my card in france", + "international_fees" + ], + [ + "if i use my discover card in cuba are there transaction fees", + "international_fees" + ], + [ + "are there transaction fees in cuba for using my discover card", + "international_fees" + ], + [ + "so i get charged if i use my card in france", + "international_fees" + ], + [ + "is there an international charge for using my card in france", + "international_fees" + ], + [ + "is there a fee if i use my card in france", + "international_fees" + ], + [ + "is there a charge to use my card in croatia", + "international_fees" + ], + [ + "in x, will i be charged to use my card", + "international_fees" + ], + [ + "in x, what is the charge if i use my card", + "international_fees" + ], + [ + "if i use my card in x, will there be a charge", + "international_fees" + ], + [ + "will it cost me anything to use my card in turin", + "international_fees" + ], + [ + "what was the date of my last car appointment", + "last_maintenance" + ], + [ + "was my car in the shop this past week", + "last_maintenance" + ], + [ + "how many weeks ago was my car in the shop", + "last_maintenance" + ], + [ + "did i get my car inspected recently", + "last_maintenance" + ], + [ + "i cannot remember when i last took my car to the shop", + "last_maintenance" + ], + [ + "did i bring my car to the shop last week", + "last_maintenance" + ], + [ + "when did i get my car inspected last", + "last_maintenance" + ], + [ + "give me the date that i last got my car checked", + "last_maintenance" + ], + [ + "did i take my car to the mechanics recently", + "last_maintenance" + ], + [ + "tell me when i got my car checked last", + "last_maintenance" + ], + [ + "when did i last take my car to the shop", + "last_maintenance" + ], + [ + "give me an exact date of when i took my car to the mechanic", + "last_maintenance" + ], + [ + "remind me of the last date that i got my car checked", + "last_maintenance" + ], + [ + "when was my last visit to the car shop", + "last_maintenance" + ], + [ + "when was my car last in the shop", + "last_maintenance" + ], + [ + "how long ago did i take my car to the shop", + "last_maintenance" + ], + [ + "how long has it been since i last took my car to the shop", + "last_maintenance" + ], + [ + "when did i take my car to the shop last", + "last_maintenance" + ], + [ + "give me the date of my last oil change", + "last_maintenance" + ], + [ + "tell me when i last had my oil changed", + "last_maintenance" + ], + [ + "when was my oil last changed", + "last_maintenance" + ], + [ + "what day did i last take my car to the shop", + "last_maintenance" + ], + [ + "have i recently had an oil change", + "last_maintenance" + ], + [ + "what was the date of the last time i took my car to the shop", + "last_maintenance" + ], + [ + "what day did i last take my car in", + "last_maintenance" + ], + [ + "tell me when my last oil change was", + "last_maintenance" + ], + [ + "i last got my oil changed when", + "last_maintenance" + ], + [ + "what day did i last have the oil in my car changed", + "last_maintenance" + ], + [ + "what was the date of my last oil change", + "last_maintenance" + ], + [ + "i'd like to know the last time my car got looked at", + "last_maintenance" + ], + [ + "are there meetings scheduled for today", + "meeting_schedule" + ], + [ + "check today's calendar for meetings", + "meeting_schedule" + ], + [ + "check my schedule for meetings today", + "meeting_schedule" + ], + [ + "list meetings on calendar for today", + "meeting_schedule" + ], + [ + "exactly what time is my meeting with robin scheduled for on", + "meeting_schedule" + ], + [ + "for what time is my meeting with marketing scheduled", + "meeting_schedule" + ], + [ + "what time is my meeting with design team scheduled for", + "meeting_schedule" + ], + [ + "when is my meeting with infrastructure", + "meeting_schedule" + ], + [ + "when is my meeting with invoicing scheduled", + "meeting_schedule" + ], + [ + "is the meeting with lisa today", + "meeting_schedule" + ], + [ + "are there meetings from 1 to 5 pm", + "meeting_schedule" + ], + [ + "when for i meet jane for our meeting", + "meeting_schedule" + ], + [ + "tell me if i have a meeting with liz today", + "meeting_schedule" + ], + [ + "is there a meeting with sam today", + "meeting_schedule" + ], + [ + "do i have a meeting with paul today", + "meeting_schedule" + ], + [ + "is there any meetings from 5 to 6 pm", + "meeting_schedule" + ], + [ + "when is my meeting with jim scheduled for", + "meeting_schedule" + ], + [ + "are there any meetings between 2 and 5 pm", + "meeting_schedule" + ], + [ + "is it possible i have a meeting with kim today", + "meeting_schedule" + ], + [ + "my meeting with alice is scheduled for when", + "meeting_schedule" + ], + [ + "when is my meeting with jack for", + "meeting_schedule" + ], + [ + "when is my meeting with ann", + "meeting_schedule" + ], + [ + "do i have any meetings between 1 and 8 pm", + "meeting_schedule" + ], + [ + "i need to know if i have meetings from 3 to 6 pm", + "meeting_schedule" + ], + [ + "do i have any meetings scheduled today", + "meeting_schedule" + ], + [ + "give me a summary of today's meetings", + "meeting_schedule" + ], + [ + "tell me when today's meeting is supposed to happen", + "meeting_schedule" + ], + [ + "what time is today's meeting", + "meeting_schedule" + ], + [ + "check the start time of the meeting scheduled for today", + "meeting_schedule" + ], + [ + "am i supposed to attend any meetings today", + "meeting_schedule" + ], + [ + "what food do you need to make lasagna", + "ingredients_list" + ], + [ + "what ingredients do you need to make lasagna", + "ingredients_list" + ], + [ + "what ingredients are needed to make lasgana", + "ingredients_list" + ], + [ + "what is needed to make lasagna", + "ingredients_list" + ], + [ + "what is needed to cook lasagna", + "ingredients_list" + ], + [ + "give me a recipe for tacos", + "ingredients_list" + ], + [ + "what ingredients are in tacos", + "ingredients_list" + ], + [ + "tell me what's in tacos", + "ingredients_list" + ], + [ + "what's a good recipe foe tacos", + "ingredients_list" + ], + [ + "tell me the ingredients for making tom yum", + "ingredients_list" + ], + [ + "i want to know the ingredients for making pizza", + "ingredients_list" + ], + [ + "let me know the ingredients i will need for pasta making", + "ingredients_list" + ], + [ + "what ingredients are necessary to make spaghetti carbonara", + "ingredients_list" + ], + [ + "what do i need to use to make lasagna", + "ingredients_list" + ], + [ + "how much flour do i need for a strawberry cake", + "ingredients_list" + ], + [ + "tell me the ingredients to make an apple pie", + "ingredients_list" + ], + [ + "what ingredients are in beef jerkey", + "ingredients_list" + ], + [ + "what ingredients does agor agor need", + "ingredients_list" + ], + [ + "what do i need to make authentic kimchi", + "ingredients_list" + ], + [ + "what do i need to make macaroni", + "ingredients_list" + ], + [ + "what do i need to buy for spaghetti", + "ingredients_list" + ], + [ + "what am i gonna need for sushi", + "ingredients_list" + ], + [ + "what ingredients do i use for pork belly", + "ingredients_list" + ], + [ + "what ingredients are in filet mignon", + "ingredients_list" + ], + [ + "let me know what ingredients i need to make pasta", + "ingredients_list" + ], + [ + "what do i need to make pasta", + "ingredients_list" + ], + [ + "give me a list of ingredients for making pasta", + "ingredients_list" + ], + [ + "pull up everything i need to make a pasta dish", + "ingredients_list" + ], + [ + "tell me all the things i need to buy to make pasta", + "ingredients_list" + ], + [ + "what do i need to make brownies", + "ingredients_list" + ], + [ + "i want to report fraudulent activity on my navy federal card", + "report_fraud" + ], + [ + "i would like to report fraudulent activity on my chase card", + "report_fraud" + ], + [ + "i need to report fraudulent activity on my usaa card", + "report_fraud" + ], + [ + "i have to report fraudulent activity on my bank of the west card", + "report_fraud" + ], + [ + "i have to report fraudulent activity the bank of america card", + "report_fraud" + ], + [ + "i seem to have a purchase that i didn't make from olive garden on my account", + "report_fraud" + ], + [ + "my online bill has some items that i didn't purchase from penneys", + "report_fraud" + ], + [ + "my account shows a transaction that i didn't make from foot locker", + "report_fraud" + ], + [ + "my bill shows a purchase from payless shoes but i didn't buy anything", + "report_fraud" + ], + [ + "i have some charges on my account from old navy that aren't mine", + "report_fraud" + ], + [ + "this charge is bs", + "report_fraud" + ], + [ + "i have a bogus transaction from amazon on my account", + "report_fraud" + ], + [ + "i have a fraudulent buy from dave's video on my account", + "report_fraud" + ], + [ + "i have a crap transaction from guitar center on my account", + "report_fraud" + ], + [ + "i think this transaction is bogus", + "report_fraud" + ], + [ + "i don't remember buying this", + "report_fraud" + ], + [ + "i have a bs transaction from ebay on my account", + "report_fraud" + ], + [ + "i've got a fraudulent purchase from kayak on my account", + "report_fraud" + ], + [ + "do i have a fraudulent transaction on my account", + "report_fraud" + ], + [ + "i'm pretty sure i have a fraudulent transaction on my account", + "report_fraud" + ], + [ + "there's a false charge on my account from mcdonald's", + "report_fraud" + ], + [ + "i think there's a fraudulent charge from mcdonald's on my account", + "report_fraud" + ], + [ + "i think someone jacked my bank account", + "report_fraud" + ], + [ + "i saw suspicious activity on my bank account", + "report_fraud" + ], + [ + "someone else used my account to buy stuff from mcdonald's", + "report_fraud" + ], + [ + "there's a messed up transaction on my account from mcdonald's", + "report_fraud" + ], + [ + "i saw a fraudulent transaction", + "report_fraud" + ], + [ + "i have a false charge on my account from mcdonald's", + "report_fraud" + ], + [ + "who do i contact to report fraud on my visa", + "report_fraud" + ], + [ + "there has been unauthorized use of my visa", + "report_fraud" + ], + [ + "how many teaspoons will make one tablespoon", + "measurement_conversion" + ], + [ + "i need the conversion between a cup and a tablespoon", + "measurement_conversion" + ], + [ + "inform me how many pounds are in 10 kilos", + "measurement_conversion" + ], + [ + "i wanna know how many pounds are in 10 kilos", + "measurement_conversion" + ], + [ + "how do you convert kilos to pounds", + "measurement_conversion" + ], + [ + "how many teaspoons is one tablespoon", + "measurement_conversion" + ], + [ + "i need to convert kilos to pounds", + "measurement_conversion" + ], + [ + "i need to know the conversion between teaspoons and tablespoons", + "measurement_conversion" + ], + [ + "how many pounds are in 10 kilos", + "measurement_conversion" + ], + [ + "can you assist me to convert kilos to pounds", + "measurement_conversion" + ], + [ + "let me know how many pounds are in 10 kilos", + "measurement_conversion" + ], + [ + "give me the conversion between ounces and cups", + "measurement_conversion" + ], + [ + "help me convert kilos to pounds", + "measurement_conversion" + ], + [ + "i need to know how many pounds are in 10 kilos", + "measurement_conversion" + ], + [ + "i want to convert kilos to pounds", + "measurement_conversion" + ], + [ + "how can i convert centimeters to inches", + "measurement_conversion" + ], + [ + "how would i change from centimeters to inches", + "measurement_conversion" + ], + [ + "what can i use to convert from centimeters to inches", + "measurement_conversion" + ], + [ + "how can you convert centimeters to inches", + "measurement_conversion" + ], + [ + "how could we convert centimeters to inches", + "measurement_conversion" + ], + [ + "how does measurement slugs convert to measurement lb", + "measurement_conversion" + ], + [ + "how does measurement a convert to measurement b", + "measurement_conversion" + ], + [ + "where can i find measurement conversions", + "measurement_conversion" + ], + [ + "how many ounces are in 4 pounds", + "measurement_conversion" + ], + [ + "how many grams are in 9 kilograms", + "measurement_conversion" + ], + [ + "how many centimeters are in 12 meters", + "measurement_conversion" + ], + [ + "how many inches are in 36 feet", + "measurement_conversion" + ], + [ + "how many millimeters are in 21 centimeters", + "measurement_conversion" + ], + [ + "how many milliliters are in 2 gallons", + "measurement_conversion" + ], + [ + "how many liters are in 1 gallon", + "measurement_conversion" + ], + [ + "i would like it if you would turn the bedroom lights on low until i'm finished reading", + "smart_home" + ], + [ + "i need you to turn the bathroom lights on", + "smart_home" + ], + [ + "set the ceiling fan to low", + "smart_home" + ], + [ + "start the dishwasher", + "smart_home" + ], + [ + "turn on the tv on channel 6", + "smart_home" + ], + [ + "turn on the microwave for 3 minutes", + "smart_home" + ], + [ + "on the tv, turn on", + "smart_home" + ], + [ + "set the tv on", + "smart_home" + ], + [ + "how is the temperature at ac", + "smart_home" + ], + [ + "the tv turn it on", + "smart_home" + ], + [ + "oven set it to 350", + "smart_home" + ], + [ + "the temperature at ac is what", + "smart_home" + ], + [ + "tv turn it on", + "smart_home" + ], + [ + "350 set the oven", + "smart_home" + ], + [ + "the oven be set at 350", + "smart_home" + ], + [ + "turn the oven to 350", + "smart_home" + ], + [ + "at ac, what's the temperature like", + "smart_home" + ], + [ + "ac temperature is at what", + "smart_home" + ], + [ + "turn on the tv", + "smart_home" + ], + [ + "what is it like the temperature at ac", + "smart_home" + ], + [ + "to 350, set the oven", + "smart_home" + ], + [ + "please turn the lights down low", + "smart_home" + ], + [ + "can you adjust the lights down", + "smart_home" + ], + [ + "i want the light less bright please", + "smart_home" + ], + [ + "make the lights darker", + "smart_home" + ], + [ + "please set the oven to 350 f", + "smart_home" + ], + [ + "please set the temperature to 70 f", + "smart_home" + ], + [ + "set the oven temperature to 350", + "smart_home" + ], + [ + "i need the temperature set at 70 f", + "smart_home" + ], + [ + "turn up the oven temperature to 350", + "smart_home" + ], + [ + "i really need you to find me a hotel with good reviews in phoenix", + "book_hotel" + ], + [ + "i wanna book a place to stay in phoenix from the 5th to the 9th of march", + "book_hotel" + ], + [ + "i wanna find a hotel with good reviews in phoenix", + "book_hotel" + ], + [ + "i want a hotel in phoenix near chase field from january 4th to the 8th", + "book_hotel" + ], + [ + "i would like to book a place to stay in phoenix from the 5th to the 9th of march", + "book_hotel" + ], + [ + "i need a hotel in phoenix near chase field from january 4th to the 8th", + "book_hotel" + ], + [ + "i need a hotel room that is big enough for eleven people from march 10th to the 15th in phoenix", + "book_hotel" + ], + [ + "i must get a hotel in phoenix near chase field from january 4th to the 8th", + "book_hotel" + ], + [ + "go ahead and find me a hotel with good reviews in phoenix", + "book_hotel" + ], + [ + "find me a hotel with good reviews in phoenix", + "book_hotel" + ], + [ + "i need you to find me a hotel with good reviews in phoenix", + "book_hotel" + ], + [ + "get me a hotel in phoenix near chase field from january 4th to the 8th", + "book_hotel" + ], + [ + "i need to get a hotel in phoenix near chase field from january 4th to the 8th", + "book_hotel" + ], + [ + "please book me a place to stay in phoenix from the 5th to the 9th of march", + "book_hotel" + ], + [ + "i need to book a place to stay in phoenix from the 5th to the 9th of march", + "book_hotel" + ], + [ + "i really gotta book a place to stay in phoenix from the 5th to the 9th of march", + "book_hotel" + ], + [ + "i need to get a hotel room that is big enough for eleven people from march 10th to the 15th in phoenix", + "book_hotel" + ], + [ + "can you find me a reputable hotel in honolulu", + "book_hotel" + ], + [ + "i want a hotel with good review in honolulu, can you find one", + "book_hotel" + ], + [ + "find for me a hotel with great reviews in ho chi minh", + "book_hotel" + ], + [ + "i need your help to find a good reviewed hotel in washington", + "book_hotel" + ], + [ + "can you find me a good reviewed hotel in japan", + "book_hotel" + ], + [ + "i need a hotel between january 1st through 3rd in jacksonville near the stadium", + "book_hotel" + ], + [ + "find me a place to stay in jacksonville near the stadium from january 1st through 3rd", + "book_hotel" + ], + [ + "book me a hotel in jacksonville near the stadium from january 1st to 3rd", + "book_hotel" + ], + [ + "id like a room in jacksonville near the stadium between january 1st to 3rd", + "book_hotel" + ], + [ + "find me a room near the jacksonville stadium between january 1st through january 3rd", + "book_hotel" + ], + [ + "get me a hotel room big enough for 4 people from may 3 to may 5 in boston", + "book_hotel" + ], + [ + "i'm travelling to boston on march 2 until march 4 please make a hotel reservation for me", + "book_hotel" + ], + [ + "i need a hotel room for 4 people from may 3 to may 5 in boston", + "book_hotel" + ], + [ + "pull up the map and show my location", + "current_location" + ], + [ + "where am i currently", + "current_location" + ], + [ + "where is my current location", + "current_location" + ], + [ + "what's my map location", + "current_location" + ], + [ + "find my current location", + "current_location" + ], + [ + "please tell me the current location", + "current_location" + ], + [ + "i want to see my location on the map", + "current_location" + ], + [ + "what's the location where i am", + "current_location" + ], + [ + "can you tell me my current location", + "current_location" + ], + [ + "where am i located on the map", + "current_location" + ], + [ + "where am i currently located", + "current_location" + ], + [ + "show my location on the map", + "current_location" + ], + [ + "i am currently located in what town", + "current_location" + ], + [ + "my current location is what", + "current_location" + ], + [ + "give me my location", + "current_location" + ], + [ + "tell me where i am", + "current_location" + ], + [ + "whats my location", + "current_location" + ], + [ + "show my position on the map", + "current_location" + ], + [ + "where is my location", + "current_location" + ], + [ + "current location please", + "current_location" + ], + [ + "display my location on the map", + "current_location" + ], + [ + "where am i", + "current_location" + ], + [ + "find out where i am on the map", + "current_location" + ], + [ + "where am i on the map", + "current_location" + ], + [ + "show me where i am on the map please", + "current_location" + ], + [ + "open map and pin point my location", + "current_location" + ], + [ + "show me my location", + "current_location" + ], + [ + "what could help me locate myself", + "current_location" + ], + [ + "i need assistance with my current location", + "current_location" + ], + [ + "where would i search for my location", + "current_location" + ], + [ + "what is the weather", + "weather" + ], + [ + "current weather", + "weather" + ], + [ + "tell me the weather", + "weather" + ], + [ + "what's the weather like today", + "weather" + ], + [ + "what is the weather like", + "weather" + ], + [ + "show me what the weather is like", + "weather" + ], + [ + "let's take a look at the weather", + "weather" + ], + [ + "how is the weather looking in seattle", + "weather" + ], + [ + "how's the weather in seattle", + "weather" + ], + [ + "what is the state of the weather in seattle", + "weather" + ], + [ + "what is the weather forecast looking like for seattle", + "weather" + ], + [ + "what are the weather conditions like in seattle", + "weather" + ], + [ + "what is the weather doing now", + "weather" + ], + [ + "what kind of weather can i expect now", + "weather" + ], + [ + "tell me what the weather is looking like", + "weather" + ], + [ + "how is the weather", + "weather" + ], + [ + "can you tell me the weather forecast", + "weather" + ], + [ + "could you tell me what the weather is in austin", + "weather" + ], + [ + "what is the weather doing in austin", + "weather" + ], + [ + "what about the weather in austin", + "weather" + ], + [ + "how is the weather in austin", + "weather" + ], + [ + "what is happening with the weather in austin", + "weather" + ], + [ + "how is that weather", + "weather" + ], + [ + "how does the weather feel", + "weather" + ], + [ + "need to know the weather now", + "weather" + ], + [ + "give weather update now", + "weather" + ], + [ + "want to know the weather", + "weather" + ], + [ + "tell me the weather for today", + "weather" + ], + [ + "what is the current weather like", + "weather" + ], + [ + "las vegas weather today", + "weather" + ], + [ + "tell me what my federal taxes amount to", + "taxes" + ], + [ + "what taxes do i owe", + "taxes" + ], + [ + "lets talk about what my federal taxes look like", + "taxes" + ], + [ + "what taxes will i owe from my income", + "taxes" + ], + [ + "whats the total of my taxes", + "taxes" + ], + [ + "what do my federal taxes look like", + "taxes" + ], + [ + "how much are the taxes on my income", + "taxes" + ], + [ + "please share my federal taxes total with me", + "taxes" + ], + [ + "how much in taxes will i owe", + "taxes" + ], + [ + "what do my state taxes look like", + "taxes" + ], + [ + "whats the total of taxes from my income", + "taxes" + ], + [ + "tell me how much my state taxes amount to", + "taxes" + ], + [ + "whats the total of my federal taxes", + "taxes" + ], + [ + "look up how much my state taxes are", + "taxes" + ], + [ + "talk to me about the total of my state taxes", + "taxes" + ], + [ + "what am i paying in taxes", + "taxes" + ], + [ + "what is the total of my state taxes", + "taxes" + ], + [ + "how much do i owe the irs", + "taxes" + ], + [ + "how much do i pay the irs", + "taxes" + ], + [ + "do you know my state tax total", + "taxes" + ], + [ + "what's the amount of taxes for my income", + "taxes" + ], + [ + "how much are my taxes for my income", + "taxes" + ], + [ + "i pay how much of taxes with my income", + "taxes" + ], + [ + "how much is my state taxes", + "taxes" + ], + [ + "i need the data and price from my state taxes", + "taxes" + ], + [ + "do you know the price for my taxes in income", + "taxes" + ], + [ + "what is the amount of my state taxes", + "taxes" + ], + [ + "what is the price of my state taxes that i owe", + "taxes" + ], + [ + "do you know the total for taxes for my income", + "taxes" + ], + [ + "what should i squirrel away to pay in taxes", + "taxes" + ], + [ + "i must pay verizon what minimum amount on my bill", + "min_payment" + ], + [ + "what is the lowest amount i must pay on my verizon bill", + "min_payment" + ], + [ + "at a minimum, what must i pay on my verizon bill", + "min_payment" + ], + [ + "what is my minimum verizon bill payment", + "min_payment" + ], + [ + "what must i pay, at a minimum, on my verizon bill", + "min_payment" + ], + [ + "what's the least i can pay this month", + "min_payment" + ], + [ + "what is my amex minimum payment", + "min_payment" + ], + [ + "what's the minimum payment", + "min_payment" + ], + [ + "what is my minimum payment and when is it due", + "min_payment" + ], + [ + "is there a minimum payment i can make", + "min_payment" + ], + [ + "what is the lowest amount i can pay for my cellphone bill", + "min_payment" + ], + [ + "what is the lowest amount i can pay for my insurance bill", + "min_payment" + ], + [ + "what is the minimum i can pay on my credit card bill", + "min_payment" + ], + [ + "what is the lowest amount i can pay for my medical bill", + "min_payment" + ], + [ + "what is the minimum i can pay on my phone bill", + "min_payment" + ], + [ + "what is the minimum i can pay on my insurance bill", + "min_payment" + ], + [ + "what is the minimum i can pay on my electric bill", + "min_payment" + ], + [ + "what is the minimum i can pay on my gas bill", + "min_payment" + ], + [ + "what is the lowest amount i can pay for my hospital bill", + "min_payment" + ], + [ + "what is the lowest amount i can pay for my car bill", + "min_payment" + ], + [ + "what is the minimum i can pay on my cell phone bill", + "min_payment" + ], + [ + "what is the minimum i can pay on my water bill", + "min_payment" + ], + [ + "what is the minimum i can pay on my heating bill", + "min_payment" + ], + [ + "tell me the minimum i can pay on my utilities bill", + "min_payment" + ], + [ + "what is the minimum amount i can pay on my gas bill", + "min_payment" + ], + [ + "do you know the smallest amount i can pay on my water bill", + "min_payment" + ], + [ + "look up the lowest amount i can pay on my electricity bill", + "min_payment" + ], + [ + "what is the minimum payable amount for my rent bill this month", + "min_payment" + ], + [ + "what is the minimum payment on my water bill", + "min_payment" + ], + [ + "if i wanted to spend the lowest for my electric bill, then how much would it be", + "min_payment" + ], + [ + "set whisper mode to off", + "whisper_mode" + ], + [ + "switch off whisper mode", + "whisper_mode" + ], + [ + "switch whisper mode off", + "whisper_mode" + ], + [ + "turn whisper mode off", + "whisper_mode" + ], + [ + "whisper mode, please", + "whisper_mode" + ], + [ + "please start whisper mode", + "whisper_mode" + ], + [ + "switch over to whisper mode", + "whisper_mode" + ], + [ + "leave whisper mode", + "whisper_mode" + ], + [ + "revert from whisper mode", + "whisper_mode" + ], + [ + "whisper mode must be left", + "whisper_mode" + ], + [ + "change from whisper mode", + "whisper_mode" + ], + [ + "help to turn on whisper mode", + "whisper_mode" + ], + [ + "turn on whisper mode", + "whisper_mode" + ], + [ + "whisper mode", + "whisper_mode" + ], + [ + "start whisper mode", + "whisper_mode" + ], + [ + "go to whisper mode until this movie is over", + "whisper_mode" + ], + [ + "go to whisper mode until i say to go back to normal", + "whisper_mode" + ], + [ + "go into whisper mode until the plane lands", + "whisper_mode" + ], + [ + "go to whisper mode for one hour", + "whisper_mode" + ], + [ + "go to whisper mode until my morning alarm goes off", + "whisper_mode" + ], + [ + "make saound function operate in whisper mode", + "whisper_mode" + ], + [ + "change audio settings to the whisper option", + "whisper_mode" + ], + [ + "change audio to whisper mode", + "whisper_mode" + ], + [ + "i want to only use the whisper sound", + "whisper_mode" + ], + [ + "change sound setting to whisper", + "whisper_mode" + ], + [ + "change to something that's not whisper mode", + "whisper_mode" + ], + [ + "cancel whisper mode", + "whisper_mode" + ], + [ + "get out of whisper mode", + "whisper_mode" + ], + [ + "whisper mode, stop", + "whisper_mode" + ], + [ + "stop whisper mode", + "whisper_mode" + ], + [ + "stop what you're doing", + "cancel" + ], + [ + "this process needs to stop", + "cancel" + ], + [ + "stop this process", + "cancel" + ], + [ + "that was a mistake, undo that", + "cancel" + ], + [ + "ignore the previous command", + "cancel" + ], + [ + "forget what i told you to do", + "cancel" + ], + [ + "please cancel the last input", + "cancel" + ], + [ + "please stop the current process", + "cancel" + ], + [ + "can you end the current process", + "cancel" + ], + [ + "just stop talking", + "cancel" + ], + [ + "please stop talking", + "cancel" + ], + [ + "stop, just stop", + "cancel" + ], + [ + "you can stop talking ai", + "cancel" + ], + [ + "stop the process", + "cancel" + ], + [ + "can you turn off the process", + "cancel" + ], + [ + "stop talking", + "cancel" + ], + [ + "you can cancel the task", + "cancel" + ], + [ + "can you cancel that", + "cancel" + ], + [ + "can you cancel that request", + "cancel" + ], + [ + "could you cancel that request, please", + "cancel" + ], + [ + "can you cancel that request, please", + "cancel" + ], + [ + "can you cancel that, please", + "cancel" + ], + [ + "hush", + "cancel" + ], + [ + "be quiet", + "cancel" + ], + [ + "stop it now!", + "cancel" + ], + [ + "stop talking you are annoying", + "cancel" + ], + [ + "you need to shut it", + "cancel" + ], + [ + "stop processing", + "cancel" + ], + [ + "abort mission", + "cancel" + ], + [ + "stop speaking", + "cancel" + ], + [ + "are visas needed to travel to jamaica", + "international_visa" + ], + [ + "do i need a visa for south korea", + "international_visa" + ], + [ + "if i go to columbia, will i need a visa", + "international_visa" + ], + [ + "are visas required to go to cuba", + "international_visa" + ], + [ + "do i need to apply for a visa for my trip to india", + "international_visa" + ], + [ + "if i go to indonesia would i need a visa", + "international_visa" + ], + [ + "do i need a visa to travel to indonesia", + "international_visa" + ], + [ + "should i apply for a visa if i am traveling to mexico", + "international_visa" + ], + [ + "is a visa necessary for traveling to south africa", + "international_visa" + ], + [ + "if i want to travel to singapore do i need a visa", + "international_visa" + ], + [ + "do americans need visas in canada", + "international_visa" + ], + [ + "would i need a visa in taiwan", + "international_visa" + ], + [ + "i'd like to go to malaysia so do i need a visa", + "international_visa" + ], + [ + "is a travel visa needed for thailand", + "international_visa" + ], + [ + "what are the visa requirements for brazil", + "international_visa" + ], + [ + "is a travel visa required to visit paraguay", + "international_visa" + ], + [ + "does travelling to st petersburg require a travel visa", + "international_visa" + ], + [ + "should i get a travel visa if i want to go to guyana", + "international_visa" + ], + [ + "will i be able to visit peru without a travel visa", + "international_visa" + ], + [ + "if i want to go to x, do i need a travel visa", + "international_visa" + ], + [ + "can i get to cuba with this visa", + "international_visa" + ], + [ + "do i need a visa to get to puerto rico", + "international_visa" + ], + [ + "do i need a visa to go to colombia", + "international_visa" + ], + [ + "do i need a states visa to get to cuba", + "international_visa" + ], + [ + "do i need a us visa for cuba", + "international_visa" + ], + [ + "if i get a visa can i travel to japan", + "international_visa" + ], + [ + "do i need a visa if i'm going to san jose", + "international_visa" + ], + [ + "do i need a visa to travel outside of the us", + "international_visa" + ], + [ + "are visas for international travel", + "international_visa" + ], + [ + "can you travel outside of the united states without a visa", + "international_visa" + ], + [ + "do i need to get any shots before i travel to morocco", + "vaccines" + ], + [ + "do i need to get any shots before i travel to south africa", + "vaccines" + ], + [ + "do i need to get any shots before i travel to zimbabwe", + "vaccines" + ], + [ + "do i need to get any shots before i travel to liberia", + "vaccines" + ], + [ + "do i need to get any shots before i travel to spain", + "vaccines" + ], + [ + "are there any required shots to travel to astana", + "vaccines" + ], + [ + "what shots do i need if i'm travelling to odessa", + "vaccines" + ], + [ + "are there any shots i need to travel to karachi", + "vaccines" + ], + [ + "are there any required shots in indonesia", + "vaccines" + ], + [ + "what are the required shots in mozambique", + "vaccines" + ], + [ + "are more shots needed to travel to argentina", + "vaccines" + ], + [ + "what sorts of vaccinations should i get prior to a trip to hong kong", + "vaccines" + ], + [ + "before i embark on a trip to europe should i get more shots", + "vaccines" + ], + [ + "would you need more shots to go to mexico", + "vaccines" + ], + [ + "is vaccination necessary for travel to asia", + "vaccines" + ], + [ + "do you think my shots would be needed, before traveling to columbia", + "vaccines" + ], + [ + "will having my shots updated be a good idea, before i travel to south america", + "vaccines" + ], + [ + "should i have my shots up to date before i travel to the virgin islands", + "vaccines" + ], + [ + "if you were traveling to indonesia, as i am, would you have your shots updated before your visit", + "vaccines" + ], + [ + "are shots required before traveling to china", + "vaccines" + ], + [ + "does cuba require vaccines", + "vaccines" + ], + [ + "which vaccines are meant for cuba", + "vaccines" + ], + [ + "which vaccines will i need for cuba", + "vaccines" + ], + [ + "do i need a vaccine for the congo", + "vaccines" + ], + [ + "vaccines for my trip to cuba", + "vaccines" + ], + [ + "are there vaccinations needed if i go there", + "vaccines" + ], + [ + "would vaccinations be needed if i go here", + "vaccines" + ], + [ + "if i travel abroad, do i need vaccinations", + "vaccines" + ], + [ + "if i travel here, do i need vaccinations", + "vaccines" + ], + [ + "do i need vaccinations if i go this country", + "vaccines" + ], + [ + "i would like to know my vacation days balance", + "pto_balance" + ], + [ + "give me vacation days remaining, please", + "pto_balance" + ], + [ + "how many vacation days do i still have available", + "pto_balance" + ], + [ + "please tell me the exact number of days i have still for vacation", + "pto_balance" + ], + [ + "what's the number of vacation days i have left", + "pto_balance" + ], + [ + "what amount of vacation days do i have", + "pto_balance" + ], + [ + "what is the number of pto days i have left", + "pto_balance" + ], + [ + "what amount of pto days do i have left", + "pto_balance" + ], + [ + "what are the amount of vacation days i have", + "pto_balance" + ], + [ + "how much pto days do i have remaining", + "pto_balance" + ], + [ + "what number of days do i have for vacation", + "pto_balance" + ], + [ + "what is my remaining amount of pto days", + "pto_balance" + ], + [ + "what do my pto days amount to", + "pto_balance" + ], + [ + "what do my vacation days amount to", + "pto_balance" + ], + [ + "how many days of vacation do i have left", + "pto_balance" + ], + [ + "what day am i on on vacation and how much do i got left", + "pto_balance" + ], + [ + "how many vacation days are remaining on my time", + "pto_balance" + ], + [ + "how many days of vacation are left now", + "pto_balance" + ], + [ + "how many days on holiday do i have", + "pto_balance" + ], + [ + "can you see if i have any vacation days available for a request", + "pto_balance" + ], + [ + "how much vacation time have i earned", + "pto_balance" + ], + [ + "how much vacation time do i have", + "pto_balance" + ], + [ + "how many weeks of vacation time have i earned", + "pto_balance" + ], + [ + "how many weeks of vacation time do i have", + "pto_balance" + ], + [ + "how many days can i take for vacation", + "pto_balance" + ], + [ + "what is the balance on my vacation days", + "pto_balance" + ], + [ + "how many days are remaining on my vacation days", + "pto_balance" + ], + [ + "so i have any vacation days left", + "pto_balance" + ], + [ + "what is the year to date total on my vacation days", + "pto_balance" + ], + [ + "how many sick days do i have", + "pto_balance" + ], + [ + "how do i get downtown by foot", + "directions" + ], + [ + "how do i get to the subway by foot", + "directions" + ], + [ + "how do i get to the train by foot", + "directions" + ], + [ + "how do i get to central park by foot", + "directions" + ], + [ + "how do i get to the airport by foot", + "directions" + ], + [ + "where is the nearest wal mart", + "directions" + ], + [ + "i want directions to phoenix", + "directions" + ], + [ + "i must understand the nearest gas station to glendale", + "directions" + ], + [ + "i need some directions to phoenix", + "directions" + ], + [ + "give me directions to phoenix", + "directions" + ], + [ + "i must know the closest gas station to glendale", + "directions" + ], + [ + "where is the nearest fry's", + "directions" + ], + [ + "where is the nearest papa john's", + "directions" + ], + [ + "i would love to know the closest gas station to glendale", + "directions" + ], + [ + "get me directions to phoenix", + "directions" + ], + [ + "where is the nearest k mart", + "directions" + ], + [ + "where is the nearest circuit city", + "directions" + ], + [ + "let me know the nearest gas station to glendale", + "directions" + ], + [ + "where is the closest gas station to glendale", + "directions" + ], + [ + "where is the nearest movie theater to time' square", + "directions" + ], + [ + "where is the closest bathroom to the statue of liberty", + "directions" + ], + [ + "where is the closest mcdonald's to foxwoods casino", + "directions" + ], + [ + "where is the nearest marijuana dispensary to kentucky fried chicken", + "directions" + ], + [ + "where is the closest hospital to madison square garden", + "directions" + ], + [ + "where is the closest pharmacy", + "directions" + ], + [ + "show me the nearest gas station", + "directions" + ], + [ + "which hospital is nearest to me", + "directions" + ], + [ + "i need to know where the hospital closest to me is", + "directions" + ], + [ + "where is the nearest arco gas station to macdonalds", + "directions" + ], + [ + "find the closest cvs near galleria mall", + "directions" + ], + [ + "spell aaron", + "spelling" + ], + [ + "how do you spell aaron", + "spelling" + ], + [ + "spell the word aaron", + "spelling" + ], + [ + "correct spelling for aaron", + "spelling" + ], + [ + "spell aaron for me", + "spelling" + ], + [ + "i don't know how to spell apoplectic, can you tell me", + "spelling" + ], + [ + "what is the correct spelling of the word comity, since i do not know", + "spelling" + ], + [ + "do you know how to spell, bourgeois", + "spelling" + ], + [ + "how do you spell the word comity, i need to know", + "spelling" + ], + [ + "i need to know how to spell the word serendipity", + "spelling" + ], + [ + "can you tell me the correct spelling of liaison", + "spelling" + ], + [ + "what is the proper spelling of corporate", + "spelling" + ], + [ + "please tell me how to spell the word coup", + "spelling" + ], + [ + "i am not sure how to spell the word liaison", + "spelling" + ], + [ + "can you tell me how to spell the word schadenfreude, i don't know how it's spelt", + "spelling" + ], + [ + "do you know how to spell curiosity", + "spelling" + ], + [ + "spell curiosity for me", + "spelling" + ], + [ + "tell me how to spell curiosity", + "spelling" + ], + [ + "i need to know the proper spelling of curiosity", + "spelling" + ], + [ + "please tell me how curiosity is spelled", + "spelling" + ], + [ + "what's the proper way to spell \"helicopter", + "spelling" + ], + [ + "tell me how to spent \"frightened", + "spelling" + ], + [ + "can you spell \"fragile\" for me", + "spelling" + ], + [ + "can you spell out \"wonderful", + "spelling" + ], + [ + "i need to know how to spell \"miranda", + "spelling" + ], + [ + "i need help spelling \"exquisite", + "spelling" + ], + [ + "can you spell out \"annulment", + "spelling" + ], + [ + "how do you spell \"exactly", + "spelling" + ], + [ + "how do you spell \"montpelier", + "spelling" + ], + [ + "what's the right way to spell \"emolument", + "spelling" + ], + [ + "how are you doing", + "greeting" + ], + [ + "are you okay", + "greeting" + ], + [ + "what are you feeling today", + "greeting" + ], + [ + "is everything ok today", + "greeting" + ], + [ + "are you doing alright", + "greeting" + ], + [ + "hello, how's your day", + "greeting" + ], + [ + "hey there, how are you today", + "greeting" + ], + [ + "hello, how is it going", + "greeting" + ], + [ + "hi there, how are you doing", + "greeting" + ], + [ + "hey, how are you", + "greeting" + ], + [ + "hey, what's up", + "greeting" + ], + [ + "hello, how are you doing", + "greeting" + ], + [ + "hi, how are you", + "greeting" + ], + [ + "hi, how are you today", + "greeting" + ], + [ + "hello, how are things", + "greeting" + ], + [ + "hey there", + "greeting" + ], + [ + "hey, what's new", + "greeting" + ], + [ + "it is good to see you", + "greeting" + ], + [ + "i'd like to know how you are doing", + "greeting" + ], + [ + "hello there", + "greeting" + ], + [ + "tell me how you are doing", + "greeting" + ], + [ + "hello there, good morning", + "greeting" + ], + [ + "let me know how you are doing", + "greeting" + ], + [ + "well hi there", + "greeting" + ], + [ + "i want to know how you are doing", + "greeting" + ], + [ + "i need to know how you are doing today", + "greeting" + ], + [ + "hello there ai", + "greeting" + ], + [ + "will you tell me how the ai is doing", + "greeting" + ], + [ + "would you tell me how the ai is doing", + "greeting" + ], + [ + "hola!", + "greeting" + ], + [ + "so please reset your factory settings", + "reset_settings" + ], + [ + "i need your to reset to factory settings", + "reset_settings" + ], + [ + "now reset your factory settings", + "reset_settings" + ], + [ + "revert to the original configuration", + "reset_settings" + ], + [ + "change back to the factory set up", + "reset_settings" + ], + [ + "change all setting to original ones", + "reset_settings" + ], + [ + "please reset to factory settings", + "reset_settings" + ], + [ + "reset all settings to the factory settings", + "reset_settings" + ], + [ + "can you please revert to factory settings at this time", + "reset_settings" + ], + [ + "please remove current settings and go back to factory settings now", + "reset_settings" + ], + [ + "please reset to factory settings at once", + "reset_settings" + ], + [ + "i would like you to change the settings back to factory default now, please", + "reset_settings" + ], + [ + "adjust settings back to original factory settings immediately", + "reset_settings" + ], + [ + "can you reset your factory settings", + "reset_settings" + ], + [ + "could you please reset your factory settings", + "reset_settings" + ], + [ + "your factory settings need to be reset", + "reset_settings" + ], + [ + "go back to your manufacturers' settings", + "reset_settings" + ], + [ + "prioritize to the settings you started with", + "reset_settings" + ], + [ + "reset to your original settings", + "reset_settings" + ], + [ + "restart your actions with the original settings you came with", + "reset_settings" + ], + [ + "please rely on your original settings", + "reset_settings" + ], + [ + "can you return to the factory fresh settings", + "reset_settings" + ], + [ + "please return to default settings", + "reset_settings" + ], + [ + "revert to original settings", + "reset_settings" + ], + [ + "start over using factory setting", + "reset_settings" + ], + [ + "go back to the default settings please", + "reset_settings" + ], + [ + "revert to factory settings", + "reset_settings" + ], + [ + "go back to factory settings", + "reset_settings" + ], + [ + "please turn on factory settings", + "reset_settings" + ], + [ + "revert back to factory settings", + "reset_settings" + ], + [ + "tell me what your name is", + "what_is_your_name" + ], + [ + "what did they name you", + "what_is_your_name" + ], + [ + "hey, how do i call your attention", + "what_is_your_name" + ], + [ + "what's your name", + "what_is_your_name" + ], + [ + "give me your name so i can use you", + "what_is_your_name" + ], + [ + "how should i address you", + "what_is_your_name" + ], + [ + "what do i call you", + "what_is_your_name" + ], + [ + "what's your name anyway", + "what_is_your_name" + ], + [ + "tell me what to call you", + "what_is_your_name" + ], + [ + "can you tell me what you are called", + "what_is_your_name" + ], + [ + "what should you be called", + "what_is_your_name" + ], + [ + "what should i use when i refer to you", + "what_is_your_name" + ], + [ + "how do you say your name", + "what_is_your_name" + ], + [ + "what is your preferred name", + "what_is_your_name" + ], + [ + "what can i call you", + "what_is_your_name" + ], + [ + "what name do you go by", + "what_is_your_name" + ], + [ + "who do i have the pleasure of speaking with", + "what_is_your_name" + ], + [ + "may i have your name", + "what_is_your_name" + ], + [ + "who am i speaking with", + "what_is_your_name" + ], + [ + "and your name is", + "what_is_your_name" + ], + [ + "what do i call you, ai", + "what_is_your_name" + ], + [ + "what name do you go by, ai", + "what_is_your_name" + ], + [ + "ai, what is your name", + "what_is_your_name" + ], + [ + "what do they call you, ai", + "what_is_your_name" + ], + [ + "ai, what is your given name", + "what_is_your_name" + ], + [ + "what name do you want me to use", + "what_is_your_name" + ], + [ + "what do you like to be called", + "what_is_your_name" + ], + [ + "what should i call you", + "what_is_your_name" + ], + [ + "what would you like me to call you", + "what_is_your_name" + ], + [ + "what is your name", + "what_is_your_name" + ], + [ + "how do i set up a direct deposit", + "direct_deposit" + ], + [ + "how do i set up direct deposit", + "direct_deposit" + ], + [ + "chase account direct deposit options", + "direct_deposit" + ], + [ + "set my paycheck to direct deposit to chase account", + "direct_deposit" + ], + [ + "activate direct deposit to chase account", + "direct_deposit" + ], + [ + "chase account options direct deposit", + "direct_deposit" + ], + [ + "bank options direct deposit", + "direct_deposit" + ], + [ + "how do i set up a direct deposit for my paycheck", + "direct_deposit" + ], + [ + "how to activate direct deposit to chase account", + "direct_deposit" + ], + [ + "get my paycheck to direct deposit", + "direct_deposit" + ], + [ + "direct deposit", + "direct_deposit" + ], + [ + "i need a direct deposit", + "direct_deposit" + ], + [ + "can we get a direct deposit", + "direct_deposit" + ], + [ + "set up direct deposit", + "direct_deposit" + ], + [ + "i want to set up direct deposit", + "direct_deposit" + ], + [ + "setting up direct deposit", + "direct_deposit" + ], + [ + "how do i get my paycheck into direct deposit at nations bank", + "direct_deposit" + ], + [ + "could you tell me how to set up direct deposit for my check from work at nations bank", + "direct_deposit" + ], + [ + "if i want to direct deposit my check into my nations bank account how do i do that", + "direct_deposit" + ], + [ + "i need to know how to do direct deposit with my paycheck at nations bank", + "direct_deposit" + ], + [ + "could you tell me how to direct deposit my check from work into nations bank", + "direct_deposit" + ], + [ + "how does one set up direct deposit to my bank account", + "direct_deposit" + ], + [ + "what do i need to do to set up direct deposit", + "direct_deposit" + ], + [ + "what is the process of setting up direct deposit", + "direct_deposit" + ], + [ + "if i want to set up direct deposit, how do i do it", + "direct_deposit" + ], + [ + "i'm not sure how to set up direct deposit", + "direct_deposit" + ], + [ + "can you tell me how to set up direct deposit", + "direct_deposit" + ], + [ + "i'd like my checks to be deposited into my account directly, how do i do that", + "direct_deposit" + ], + [ + "i'd like to set up direct deposit", + "direct_deposit" + ], + [ + "how do i set up my direct deposit", + "direct_deposit" + ], + [ + "what's my bank of america account getting in interest", + "interest_rate" + ], + [ + "where do i see what interest my mortgage has", + "interest_rate" + ], + [ + "is there somewhere my personal loan displays the interest rate i'm paying on it", + "interest_rate" + ], + [ + "what's the apr on my savings account", + "interest_rate" + ], + [ + "what interest rate am i getting from bank of america", + "interest_rate" + ], + [ + "what interest rate am i getting from wells fargo", + "interest_rate" + ], + [ + "what interest rate is bofi giving me on my cd", + "interest_rate" + ], + [ + "how do i find the interest rate for my checking account", + "interest_rate" + ], + [ + "what interest rate am i getting from citrix", + "interest_rate" + ], + [ + "how can i tell what the interest rate on my money market account is", + "interest_rate" + ], + [ + "what's my checking account yielding in interest", + "interest_rate" + ], + [ + "how much interest is my nfcu accrueing", + "interest_rate" + ], + [ + "what interest rate am i getting from sunflower bank", + "interest_rate" + ], + [ + "where do i go to find the interest rate on my savings account", + "interest_rate" + ], + [ + "what interest rate am i getting from nfcu", + "interest_rate" + ], + [ + "for my savings account i would like to know the interest rate", + "interest_rate" + ], + [ + "i need my checking account's interest rate", + "interest_rate" + ], + [ + "tell me the interest for my savings account", + "interest_rate" + ], + [ + "what's the interest rate on my savings account", + "interest_rate" + ], + [ + "i want the interest rate for my checking account", + "interest_rate" + ], + [ + "can i get the interest rate for my checking account", + "interest_rate" + ], + [ + "i need to get the interest rate of my savings account", + "interest_rate" + ], + [ + "what's my savings account interest", + "interest_rate" + ], + [ + "what's my savings account interest rate", + "interest_rate" + ], + [ + "i would like the interest rate for my savings account", + "interest_rate" + ], + [ + "what amount of interest does my checking account earn", + "interest_rate" + ], + [ + "what does my checking account at chase earn in interest", + "interest_rate" + ], + [ + "what amount of interest does my checking account at chase earn", + "interest_rate" + ], + [ + "what interest rate does my checking account come with", + "interest_rate" + ], + [ + "what does chase pay in interest per year", + "interest_rate" + ], + [ + "when can i change my credit limit", + "credit_limit_change" + ], + [ + "can i change my credit limit", + "credit_limit_change" + ], + [ + "can i get more credit", + "credit_limit_change" + ], + [ + "i need to change the credit limit i have", + "credit_limit_change" + ], + [ + "you need to tell me how to increase credit limit for my chase card", + "credit_limit_change" + ], + [ + "need to increase credit limit for chase card", + "credit_limit_change" + ], + [ + "i need to increase credit limit for my chase card", + "credit_limit_change" + ], + [ + "please tell me how to increase credit limit for the chase card", + "credit_limit_change" + ], + [ + "tell me how to increase credit limit for chase card", + "credit_limit_change" + ], + [ + "is it possible for me to increase my credit limit by 500 dollars", + "credit_limit_change" + ], + [ + "can my credit limit be increased by 500 dollars", + "credit_limit_change" + ], + [ + "i would like to increase my credit limit, can i do so by 500 dollars", + "credit_limit_change" + ], + [ + "may i increase my credit limit by 500 dollars", + "credit_limit_change" + ], + [ + "could i perhaps increase by credit limit by 500 dollars", + "credit_limit_change" + ], + [ + "can i increase the credit limit on my mastercard", + "credit_limit_change" + ], + [ + "can i increase the credit limit on my visa card", + "credit_limit_change" + ], + [ + "can i increase the credit limit on my discover card", + "credit_limit_change" + ], + [ + "can i increase the credit limit on my capital one card", + "credit_limit_change" + ], + [ + "can i increase the credit limit on my travel rewards card", + "credit_limit_change" + ], + [ + "how can i get my credit limit to be increased to $1000", + "credit_limit_change" + ], + [ + "can you get my credit limit increased to $1000", + "credit_limit_change" + ], + [ + "how do i get my credit limit increased to $1000", + "credit_limit_change" + ], + [ + "how do i ask for a limit increase on my discover card", + "credit_limit_change" + ], + [ + "can i get my limit increased on my discover card", + "credit_limit_change" + ], + [ + "how can i get a limit increase on my discover card", + "credit_limit_change" + ], + [ + "who do i need to contact to ask for a credit limit increase on my discover card", + "credit_limit_change" + ], + [ + "can you increase my credit limit to $1000", + "credit_limit_change" + ], + [ + "can my credit limit be increased to $1000", + "credit_limit_change" + ], + [ + "how do i adjust my credit limit", + "credit_limit_change" + ], + [ + "how can i increase the credit limit on my discover card", + "credit_limit_change" + ], + [ + "what are your hobbies exactly", + "what_are_your_hobbies" + ], + [ + "what are your hobbies in life", + "what_are_your_hobbies" + ], + [ + "what are some of your hobbies", + "what_are_your_hobbies" + ], + [ + "i would like to know some of your hobbies", + "what_are_your_hobbies" + ], + [ + "would you give me examples of what some of your hobbies are", + "what_are_your_hobbies" + ], + [ + "tell me what some of your hobbies are", + "what_are_your_hobbies" + ], + [ + "i am needing to know what some of your hobbies are", + "what_are_your_hobbies" + ], + [ + "i need you to talk to me about your hobbies", + "what_are_your_hobbies" + ], + [ + "would you tell me about your hobbies", + "what_are_your_hobbies" + ], + [ + "i want to talk to you about your hobbies", + "what_are_your_hobbies" + ], + [ + "give me examples of what some of your hobbies are", + "what_are_your_hobbies" + ], + [ + "what kinds of hobbies do you have", + "what_are_your_hobbies" + ], + [ + "what hobbies do you like to do", + "what_are_your_hobbies" + ], + [ + "would you tell me the hobbies the ai has", + "what_are_your_hobbies" + ], + [ + "what are the ai's hobbies", + "what_are_your_hobbies" + ], + [ + "does the ai have hobbies", + "what_are_your_hobbies" + ], + [ + "what kind of hobbies does the ai have", + "what_are_your_hobbies" + ], + [ + "can you tell me what hobbies the ai has", + "what_are_your_hobbies" + ], + [ + "what do you engage in during your free time", + "what_are_your_hobbies" + ], + [ + "what kind of things to you like to outside of work", + "what_are_your_hobbies" + ], + [ + "what do you like to do during your leisure time", + "what_are_your_hobbies" + ], + [ + "what kinds of activities to you participate in during your free time", + "what_are_your_hobbies" + ], + [ + "what do you do on off days", + "what_are_your_hobbies" + ], + [ + "how to you spend your free time", + "what_are_your_hobbies" + ], + [ + "what do you do after work", + "what_are_your_hobbies" + ], + [ + "what do you like to do besides work", + "what_are_your_hobbies" + ], + [ + "if you have hobbies tell me some of them", + "what_are_your_hobbies" + ], + [ + "what kind of hobbies are you interested in", + "what_are_your_hobbies" + ], + [ + "any hobbies you like to do", + "what_are_your_hobbies" + ], + [ + "what do you enjoy doing in your off time", + "what_are_your_hobbies" + ], + [ + "book me a flight to jackson, mississippi from austin texas on american airlines", + "book_flight" + ], + [ + "book me a place to chicago from atlanta united airlines", + "book_flight" + ], + [ + "can you book me a flight to memphis from st louis on delta airlines", + "book_flight" + ], + [ + "book a flight to los angeles from las vegas on american airlines", + "book_flight" + ], + [ + "book me a flight to dallas from st, paul, minnesota on delta airlines", + "book_flight" + ], + [ + "i need a flight on delta from los angeles to seattle", + "book_flight" + ], + [ + "i need to book a flight on jet blue to boston from new york", + "book_flight" + ], + [ + "can you get me a flight from san francisco to san jose using american airlines", + "book_flight" + ], + [ + "i want a flight from new york to san francisco using delta", + "book_flight" + ], + [ + "get me a flight from barcelona to paris from jet blue", + "book_flight" + ], + [ + "\"i'll be travelling from lax and headed to phl for 120 on the 10th of may", + "book_flight" + ], + [ + "\"i'm fly out from lax to phl this weekend for around $120", + "book_flight" + ], + [ + "\"i\"m headed out to lax and going to phl for a low price of $120 this weekend on the 12th", + "book_flight" + ], + [ + "\"i'm going on a flight from lax and going to phl, which is only $120 on june 15th", + "book_flight" + ], + [ + "\"i'll leave to lax and go to phl for $120 on nov 5th", + "book_flight" + ], + [ + "book me a flight from midway to jfk for less than 200 dollars", + "book_flight" + ], + [ + "i need a flight from boston to miami for under 300 dollars", + "book_flight" + ], + [ + "can i fly from atlanta to san francisco for less than 100 dollars", + "book_flight" + ], + [ + "book a flight from new york to la for less than 200 dollars", + "book_flight" + ], + [ + "find me a flight from seattle to detroit for less than 200 dollars", + "book_flight" + ], + [ + "i want to a book a roundtrip flight from san antonio to dtw departing on friday and returning on wednesday", + "book_flight" + ], + [ + "i'm looking for a flight from billings to cleveland on may 2 and a return on may 9", + "book_flight" + ], + [ + "i'm looking for flights that depart on the 3rd and return on z from monday to friday", + "book_flight" + ], + [ + "what roundtrip flights from orlando to vegas are available from thursday to monday", + "book_flight" + ], + [ + "are there any roundtrip flights from shanghai to seatac that depart on wednesday and return on the thirty first", + "book_flight" + ], + [ + "make sure i get a delta flight from pittsburgh to arizona", + "book_flight" + ], + [ + "book a delta flight to arizona from pittsburgh", + "book_flight" + ], + [ + "schedule a flight from pittsburgh to arizona on delta", + "book_flight" + ], + [ + "i want to fly to atlanta for under 300 from pittsburgh", + "book_flight" + ], + [ + "i need a flight for under 300 from pittsburgh to atlanta", + "book_flight" + ], + [ + "does my shopping list have pop tarts", + "shopping_list" + ], + [ + "can you check to see if my shopping list already has milk", + "shopping_list" + ], + [ + "did i remember to put oatmeal on my list", + "shopping_list" + ], + [ + "iterate over the items on my grocery list", + "shopping_list" + ], + [ + "tell me what i have on my shopping list", + "shopping_list" + ], + [ + "do i have twinkies on the grocery list", + "shopping_list" + ], + [ + "have i already got eggs down on the shopping list", + "shopping_list" + ], + [ + "recite the items i'm planning to purchase", + "shopping_list" + ], + [ + "what do i currently have on my shopping list", + "shopping_list" + ], + [ + "what's on my to-buy list", + "shopping_list" + ], + [ + "what's on my purchase list", + "shopping_list" + ], + [ + "do i have to buy milk", + "shopping_list" + ], + [ + "is milk on my shopping list", + "shopping_list" + ], + [ + "is milk one of my shopping list items", + "shopping_list" + ], + [ + "am i supposed to buy milk", + "shopping_list" + ], + [ + "is milk one of the things i need to buy", + "shopping_list" + ], + [ + "tell me what's is on my shopping list", + "shopping_list" + ], + [ + "please read my shopping list", + "shopping_list" + ], + [ + "did you put carrots on the shopping list", + "shopping_list" + ], + [ + "does the shopping list have apples on it", + "shopping_list" + ], + [ + "are carrots added to the grocery list", + "shopping_list" + ], + [ + "is garlic on my grocery list", + "shopping_list" + ], + [ + "did carrots get on my shopping list", + "shopping_list" + ], + [ + "what things are on my shopping list today", + "shopping_list" + ], + [ + "tell me the items in my shopping list", + "shopping_list" + ], + [ + "what does my shopping list contain", + "shopping_list" + ], + [ + "i need to know what's on my shopping list", + "shopping_list" + ], + [ + "what is on the shopping list", + "shopping_list" + ], + [ + "please let me know what is on my shopping list", + "shopping_list" + ], + [ + "let me know what's on my shopping list", + "shopping_list" + ], + [ + "text chrissy, i'm on my way", + "text" + ], + [ + "text dave, i'll be there soon", + "text" + ], + [ + "send davis a text i'll be there in a few", + "text" + ], + [ + "text laura i'll be late for dinner", + "text" + ], + [ + "text mike, \"i'm running late", + "text" + ], + [ + "tell jim i'm coming home soon", + "text" + ], + [ + "i want to tell susan that the meeting has been cancelled", + "text" + ], + [ + "tell fred that i don't have his guitar", + "text" + ], + [ + "could you send a text to bill saying no", + "text" + ], + [ + "text mark hello", + "text" + ], + [ + "text emily", + "text" + ], + [ + "please text john", + "text" + ], + [ + "i want you to text mark", + "text" + ], + [ + "get a text to mark", + "text" + ], + [ + "can you text walt and tell him to meet me at the car wash", + "text" + ], + [ + "text courtney and inform her about the detour", + "text" + ], + [ + "text dan and tell him to go home", + "text" + ], + [ + "text samantha and let her know i will arrive in 10 minutes", + "text" + ], + [ + "text katy and tell her i love her", + "text" + ], + [ + "text jean and tell him to call work", + "text" + ], + [ + "text steve and tell him i am running late", + "text" + ], + [ + "i'd like you to text marie and let her know to meet me at the hospital", + "text" + ], + [ + "text jeff and tell him to pay the bill", + "text" + ], + [ + "text mark and tell him to leave now", + "text" + ], + [ + "send jack a text saying hi", + "text" + ], + [ + "send a text that says hi to abby", + "text" + ], + [ + "i'd like to send a text to jack, say \"hi", + "text" + ], + [ + "can you text dave and tell him i like his paper", + "text" + ], + [ + "can you text mary and tell her she is amazing", + "text" + ], + [ + "can you text bill and tell him i love him", + "text" + ], + [ + "what do i owe to jcp", + "bill_balance" + ], + [ + "what is the amount due on my visa", + "bill_balance" + ], + [ + "how much do i owe visa", + "bill_balance" + ], + [ + "how much do you think my rent and electric bills are", + "bill_balance" + ], + [ + "what would you say my gas and phone bills are at", + "bill_balance" + ], + [ + "i need to know the price of my car payment and insurance please", + "bill_balance" + ], + [ + "what price is my credit card and my water bill at", + "bill_balance" + ], + [ + "how much is my water and sewer", + "bill_balance" + ], + [ + "how much do i need to pay for my electricity and water bills", + "bill_balance" + ], + [ + "what is the cost of my rent and water bills", + "bill_balance" + ], + [ + "how much are my rent and cable", + "bill_balance" + ], + [ + "how much does my water and electricity cost", + "bill_balance" + ], + [ + "what do i owe this month on all my bills", + "bill_balance" + ], + [ + "i think all my bills are paid, but can you double check", + "bill_balance" + ], + [ + "i think i owe about 100 left on my bills, am i forgetting anything", + "bill_balance" + ], + [ + "what are my bills this month", + "bill_balance" + ], + [ + "what does my cable bill look like", + "bill_balance" + ], + [ + "has my electricity bill increased this month how much", + "bill_balance" + ], + [ + "how expensive is my internet", + "bill_balance" + ], + [ + "how much will my monthly bill be", + "bill_balance" + ], + [ + "what are my total bills this month", + "bill_balance" + ], + [ + "what will i be paying for utilities this month", + "bill_balance" + ], + [ + "how much is my telephone bill this month", + "bill_balance" + ], + [ + "how much is due for my water bill", + "bill_balance" + ], + [ + "how much do i have to pay this month", + "bill_balance" + ], + [ + "tell me my water bill please", + "bill_balance" + ], + [ + "is the phone bill the same as last month", + "bill_balance" + ], + [ + "whens my insurance due and how much does it cost", + "bill_balance" + ], + [ + "how much is the car bill this month", + "bill_balance" + ], + [ + "what is the electricity bill", + "bill_balance" + ], + [ + "can i share my location with david", + "share_location" + ], + [ + "please send my location to kevin and also to lucy", + "share_location" + ], + [ + "how do i share my location with kate and mike", + "share_location" + ], + [ + "can you let michael and julie know my location", + "share_location" + ], + [ + "please let lisa and chris know my location information", + "share_location" + ], + [ + "make my location available with david and kate", + "share_location" + ], + [ + "i need to give my location to macy and george", + "share_location" + ], + [ + "i'd like for this person to know my location", + "share_location" + ], + [ + "can you indicate my location to my friend", + "share_location" + ], + [ + "share my location with this person", + "share_location" + ], + [ + "send my location to this individual", + "share_location" + ], + [ + "what is my current location", + "share_location" + ], + [ + "share location with john", + "share_location" + ], + [ + "give ann and scott my location", + "share_location" + ], + [ + "could you inform ann and scott of my location", + "share_location" + ], + [ + "let ann and scott know where i am", + "share_location" + ], + [ + "will you make sure ann and scott know my location", + "share_location" + ], + [ + "tell ann and scott where i am", + "share_location" + ], + [ + "tell david my location", + "share_location" + ], + [ + "send david my location", + "share_location" + ], + [ + "tell my location to david", + "share_location" + ], + [ + "tell david where i am", + "share_location" + ], + [ + "share location with david", + "share_location" + ], + [ + "show allison how to get to me", + "share_location" + ], + [ + "send my location to sis", + "share_location" + ], + [ + "show cody where i am", + "share_location" + ], + [ + "share my location to susan", + "share_location" + ], + [ + "share my current location with kristen", + "share_location" + ], + [ + "send sarah my current location", + "share_location" + ], + [ + "please send my location to rob and mary", + "share_location" + ], + [ + "how do i get stuff with visa points", + "redeem_rewards" + ], + [ + "what are my mastercard points good for", + "redeem_rewards" + ], + [ + "how many points do i have to cash", + "redeem_rewards" + ], + [ + "where can i cash out my card points", + "redeem_rewards" + ], + [ + "what do i have to do to use my credit points acquired through purchases", + "redeem_rewards" + ], + [ + "how do i use my card reward points for my next flight", + "redeem_rewards" + ], + [ + "how do i go about getting cash for my card points accumulated", + "redeem_rewards" + ], + [ + "tell me how to get my points from credit card use cashed in", + "redeem_rewards" + ], + [ + "i want to use my card reward points", + "redeem_rewards" + ], + [ + "can i redeem my points by transferring them to someone as a gift", + "redeem_rewards" + ], + [ + "can i redeem my points on gas", + "redeem_rewards" + ], + [ + "can i redeem my points for flights", + "redeem_rewards" + ], + [ + "can i get cash back for my points", + "redeem_rewards" + ], + [ + "can i use my points to pay my credit card", + "redeem_rewards" + ], + [ + "what are the steps to get my rewards for my visa card", + "redeem_rewards" + ], + [ + "how can i cash out my rewards for a visa card", + "redeem_rewards" + ], + [ + "how can i claim my rewards for my visa card", + "redeem_rewards" + ], + [ + "how can i get my rewards for my master card", + "redeem_rewards" + ], + [ + "where would i get my rewards for my master card", + "redeem_rewards" + ], + [ + "let me cash my credit rewards", + "redeem_rewards" + ], + [ + "help me redeem my reward points", + "redeem_rewards" + ], + [ + "put in a request for cashing in credit points", + "redeem_rewards" + ], + [ + "i want to use my credit rewards now", + "redeem_rewards" + ], + [ + "i need to use my credit points", + "redeem_rewards" + ], + [ + "i need to redeem my visa points", + "redeem_rewards" + ], + [ + "whats the policy to redeem my visa reward points", + "redeem_rewards" + ], + [ + "what can i get with my mastercard points", + "redeem_rewards" + ], + [ + "how do i cash in my amex reward points", + "redeem_rewards" + ], + [ + "how do i redeem my visa points", + "redeem_rewards" + ], + [ + "i want to shop using credit card points", + "redeem_rewards" + ], + [ + "play the song called baby shark", + "play_music" + ], + [ + "play the song called wreckless love", + "play_music" + ], + [ + "play the song called i want it that way", + "play_music" + ], + [ + "play the song called dancing on the ceiling", + "play_music" + ], + [ + "play the song called amazing grace", + "play_music" + ], + [ + "get me my slow sounds", + "play_music" + ], + [ + "let me hear my slow songs", + "play_music" + ], + [ + "pull up the songs under slow", + "play_music" + ], + [ + "i want to hear my slow playlist", + "play_music" + ], + [ + "i'm in the mood for slow songs and nothing else", + "play_music" + ], + [ + "the song that goes, \"starships were meant to fly\", play it", + "play_music" + ], + [ + "please play that song that goes, \"starships were meant to fly", + "play_music" + ], + [ + "play the song that goes, \"starships were meant to fly", + "play_music" + ], + [ + "can you play the song that goes like, \"starships were meant to fly", + "play_music" + ], + [ + "will you play the song that goes like, \"starships were meant to fly", + "play_music" + ], + [ + "drop some beats", + "play_music" + ], + [ + "turn on top 20 country hits", + "play_music" + ], + [ + "turn on my tunes", + "play_music" + ], + [ + "please play music by acdc", + "play_music" + ], + [ + "play oldschool rap", + "play_music" + ], + [ + "put on some metallica music", + "play_music" + ], + [ + "play music by ludacris", + "play_music" + ], + [ + "bump some jams", + "play_music" + ], + [ + "play ludacris hits", + "play_music" + ], + [ + "play a song", + "play_music" + ], + [ + "turn on metallicas greatest hits", + "play_music" + ], + [ + "put on my 90s playlist", + "play_music" + ], + [ + "can you play music by led zepplin", + "play_music" + ], + [ + "lets play some music by korn", + "play_music" + ], + [ + "do play the music by linkin park", + "play_music" + ], + [ + "i need to add something to my calendar for next tuesday", + "calendar_update" + ], + [ + "please clear my calendar", + "calendar_update" + ], + [ + "take the doctor appointment off my calendar please", + "calendar_update" + ], + [ + "can you add an event to my calendar", + "calendar_update" + ], + [ + "erase all events on friday from my calendar", + "calendar_update" + ], + [ + "remove jess's party from my calendar", + "calendar_update" + ], + [ + "delete all calendar entries on march 3", + "calendar_update" + ], + [ + "delete dentist from my calendar", + "calendar_update" + ], + [ + "cancel doctors appointment from my calendar", + "calendar_update" + ], + [ + "erase meeting with jeff from my calendar", + "calendar_update" + ], + [ + "clear my calendar on feb 28", + "calendar_update" + ], + [ + "cancel event scheduled for this afternoon", + "calendar_update" + ], + [ + "please take off my calendar on saturday the 6th birthday party for john", + "calendar_update" + ], + [ + "i want to take the 8am meeting with sam on monday the 5th off my calendar", + "calendar_update" + ], + [ + "please remove lunch with sally that is on my calendar on tuesday the 8th", + "calendar_update" + ], + [ + "i need buy a birthday gift for sue taken off my calendar it is on monday or tuesday last week", + "calendar_update" + ], + [ + "will you remove the dinner with june on saturday the 4th at 7pm from my calendar", + "calendar_update" + ], + [ + "can you cancel improv class from my calendar for may 7th", + "calendar_update" + ], + [ + "clear my calendar for may 3rd", + "calendar_update" + ], + [ + "take work from my calendar for may 7th", + "calendar_update" + ], + [ + "clear my calendar for september 6th", + "calendar_update" + ], + [ + "delete jury duty from my calendar for may 7th", + "calendar_update" + ], + [ + "remove fencing from my calendar for may 7th", + "calendar_update" + ], + [ + "clear my calendar for february 29th", + "calendar_update" + ], + [ + "clear my calendar for april 20th", + "calendar_update" + ], + [ + "clear my calendar for november 11th", + "calendar_update" + ], + [ + "remove wrestlemania from my calendar for may 7th", + "calendar_update" + ], + [ + "what can i do to get rid of this event", + "calendar_update" + ], + [ + "what is the best way to remove this appointment", + "calendar_update" + ], + [ + "friday needs to be clear on my calendar", + "calendar_update" + ], + [ + "tell me if you are a human or are a computer", + "are_you_a_bot" + ], + [ + "would you tell me if you are a human or are a computer", + "are_you_a_bot" + ], + [ + "provide me with the knowledge of whether you are a human or are a computer", + "are_you_a_bot" + ], + [ + "let me know if you are a human or are a computer", + "are_you_a_bot" + ], + [ + "i need to know whether you are a human or are a computer", + "are_you_a_bot" + ], + [ + "are you real", + "are_you_a_bot" + ], + [ + "can you tell me if your a bot", + "are_you_a_bot" + ], + [ + "i want to know if your a bot", + "are_you_a_bot" + ], + [ + "is this a bot", + "are_you_a_bot" + ], + [ + "i think your a bot", + "are_you_a_bot" + ], + [ + "is it true your a real person", + "are_you_a_bot" + ], + [ + "are you a person that's real", + "are_you_a_bot" + ], + [ + "are you actually a person", + "are_you_a_bot" + ], + [ + "are you really real", + "are_you_a_bot" + ], + [ + "your a bot aren't you", + "are_you_a_bot" + ], + [ + "could you be human", + "are_you_a_bot" + ], + [ + "could you be a person", + "are_you_a_bot" + ], + [ + "are you human", + "are_you_a_bot" + ], + [ + "are you a human or ai computer based", + "are_you_a_bot" + ], + [ + "would you call yourself a human or a computer", + "are_you_a_bot" + ], + [ + "how do you describe yourself: as a computer or a human", + "are_you_a_bot" + ], + [ + "are you computer or human", + "are_you_a_bot" + ], + [ + "would most people say you are a computer or a human", + "are_you_a_bot" + ], + [ + "are you real or a computer", + "are_you_a_bot" + ], + [ + "are you a computer generated voice", + "are_you_a_bot" + ], + [ + "am i talking to a real live person", + "are_you_a_bot" + ], + [ + "is your voice from a human or is it synthesized", + "are_you_a_bot" + ], + [ + "are you a person or artificial intelligence", + "are_you_a_bot" + ], + [ + "could you tell me if you're a real person", + "are_you_a_bot" + ], + [ + "are you a person or robot", + "are_you_a_bot" + ], + [ + "can i get to work on my fuel tank", + "gas" + ], + [ + "can i get to susan's house with my current tank", + "gas" + ], + [ + "do i have enough gas to get home", + "gas" + ], + [ + "do i have enough fuel to travel to san diego from here", + "gas" + ], + [ + "will i make it to my current destination on this fuel tank", + "gas" + ], + [ + "can i make it to los angeles with this fuel level", + "gas" + ], + [ + "can i reach seattle with this amount of fuel", + "gas" + ], + [ + "do i have enough gas in my tank to make it to washington dc", + "gas" + ], + [ + "do i have enough gas in my car to make it to dallas", + "gas" + ], + [ + "will i run out of gas before i reach atlantic city", + "gas" + ], + [ + "tell me where my gas tank is", + "gas" + ], + [ + "where can i find my gas tank", + "gas" + ], + [ + "where is my gas tank located", + "gas" + ], + [ + "how many gallons do i have left in my gas tank", + "gas" + ], + [ + "how's my gasoline how much do i have left", + "gas" + ], + [ + "what percentage full is my gas tank", + "gas" + ], + [ + "how full or empty is my tank of gas", + "gas" + ], + [ + "how much gas do i have left in my tank", + "gas" + ], + [ + "how full is my gas tank", + "gas" + ], + [ + "how many more miles can i drive on my current tank", + "gas" + ], + [ + "how much gas is left in my car", + "gas" + ], + [ + "how full is the gas tank", + "gas" + ], + [ + "what does the gas meter read", + "gas" + ], + [ + "how much of the gas do i have left", + "gas" + ], + [ + "how much gas do i have here", + "gas" + ], + [ + "how much gas do i have in the tank", + "gas" + ], + [ + "can you tell me how much gas is in my tank", + "gas" + ], + [ + "tell me my gas tank levels", + "gas" + ], + [ + "what is the data of my gas tank", + "gas" + ], + [ + "how much gas do i have in my tank", + "gas" + ], + [ + "i want to bring my card on the texas trip in june, will it be expired by then", + "expiration_date" + ], + [ + "what's the month, year, and day that my card expires", + "expiration_date" + ], + [ + "does my card ending in 1234, or any of my cards, expire soon", + "expiration_date" + ], + [ + "does my card have an expiration date and if so, what is it", + "expiration_date" + ], + [ + "when does my card expire, the one ending in 1234", + "expiration_date" + ], + [ + "give me my credit card expiration date", + "expiration_date" + ], + [ + "what is the expiration month and year on my credit car", + "expiration_date" + ], + [ + "when is the date of expiration for my first bank card", + "expiration_date" + ], + [ + "what is the expiration month of my card", + "expiration_date" + ], + [ + "what is the expiration date of my credit card", + "expiration_date" + ], + [ + "let me know when my credit card expire", + "expiration_date" + ], + [ + "when will my citi card expire", + "expiration_date" + ], + [ + "when is my credit card expire", + "expiration_date" + ], + [ + "when is the expiration month for my card", + "expiration_date" + ], + [ + "when is the expiration date of my credit card", + "expiration_date" + ], + [ + "what is the expiration date on my chase card", + "expiration_date" + ], + [ + "when is the expiration date for me discover", + "expiration_date" + ], + [ + "when it my citi card expired", + "expiration_date" + ], + [ + "when is my card expired", + "expiration_date" + ], + [ + "tell me the expiration date on my credit card", + "expiration_date" + ], + [ + "what month is my card expired in", + "expiration_date" + ], + [ + "how soon does my credit card expire", + "expiration_date" + ], + [ + "when will my new credit card arrive", + "expiration_date" + ], + [ + "what month does my credit card expire", + "expiration_date" + ], + [ + "what is the date when my visa card will expire", + "expiration_date" + ], + [ + "can you tell me what the date of expiry for my visa card is", + "expiration_date" + ], + [ + "tell me the expiration date for my visa card", + "expiration_date" + ], + [ + "show me the expiration date for my visa card", + "expiration_date" + ], + [ + "where should i look for my credit card expiration day", + "expiration_date" + ], + [ + "when will my credit card no longer be good", + "expiration_date" + ], + [ + "add to my motivational playlist rap god", + "update_playlist" + ], + [ + "include rap god on the motivational playlist", + "update_playlist" + ], + [ + "move rap god to my motivational playlist", + "update_playlist" + ], + [ + "in my motivational playlist include the song rap god", + "update_playlist" + ], + [ + "add the song rap god to the motivational playlist", + "update_playlist" + ], + [ + "i need this song on my meditation playlist", + "update_playlist" + ], + [ + "i want the current song added to my pregame playlist", + "update_playlist" + ], + [ + "please put this song on my studying playlist", + "update_playlist" + ], + [ + "please throw this song onto my cleaning playlist", + "update_playlist" + ], + [ + "i would like the song playing right now put on my driving playlist", + "update_playlist" + ], + [ + "i want this song on my pregame playlist", + "update_playlist" + ], + [ + "please add this song to my study playlist", + "update_playlist" + ], + [ + "can you add this song to my driving playlist", + "update_playlist" + ], + [ + "will you be sure to add this current song to my sleep playlist", + "update_playlist" + ], + [ + "please add the song i'm listening to right now to my relaxation playlist", + "update_playlist" + ], + [ + "add this to my rock playlist", + "update_playlist" + ], + [ + "add what im listening to to my rock playlist", + "update_playlist" + ], + [ + "i want to put this on my rock playlist", + "update_playlist" + ], + [ + "add current song to rock playlist", + "update_playlist" + ], + [ + "add this song to my rock playlist", + "update_playlist" + ], + [ + "please add this song to my country music playlist", + "update_playlist" + ], + [ + "i am asking you to add this song to my country music playlist", + "update_playlist" + ], + [ + "help me add this song to my country music playlist", + "update_playlist" + ], + [ + "can you add this song to my country music playlist", + "update_playlist" + ], + [ + "this song needs to be added to my country music playlist", + "update_playlist" + ], + [ + "this song i'm listening to would be great on my commute playlist", + "update_playlist" + ], + [ + "i need this song on my jam playlist", + "update_playlist" + ], + [ + "i want what i'm listening to to be added to my chill playlist", + "update_playlist" + ], + [ + "i need what i'm listening to right now to be put on my exercise playlist", + "update_playlist" + ], + [ + "put what i'm listening to on my workout playlist", + "update_playlist" + ], + [ + "i do not actually need my reservation anymore", + "cancel_reservation" + ], + [ + "i need to cancel my reservation for rob at red robin", + "cancel_reservation" + ], + [ + "cancel my reservation for bob at red robin", + "cancel_reservation" + ], + [ + "i do not want my reservation anymore", + "cancel_reservation" + ], + [ + "i need you to cancel my reservation for 5 at red robin", + "cancel_reservation" + ], + [ + "please cancel my reservation for tim at jb's", + "cancel_reservation" + ], + [ + "i gotta cancel my reservation for barry at red robin", + "cancel_reservation" + ], + [ + "i don't need the reservation anymore", + "cancel_reservation" + ], + [ + "i want you to cancel my reservation for 5 at red robin", + "cancel_reservation" + ], + [ + "i am not in need of my reservation anymore", + "cancel_reservation" + ], + [ + "go ahead and cancel my reservation for 5 at red robin", + "cancel_reservation" + ], + [ + "i wish to cancel my reservation for fred at red robin", + "cancel_reservation" + ], + [ + "i no longer want my reservation anymore", + "cancel_reservation" + ], + [ + "please cancel my reservation for 5 at red robin", + "cancel_reservation" + ], + [ + "i need you to cancel my reservation for smith at the williams diner", + "cancel_reservation" + ], + [ + "i want a cancellation of the dinner reservation for phillips at bernardin's", + "cancel_reservation" + ], + [ + "please delete the reservation for roberts at village tavern", + "cancel_reservation" + ], + [ + "could you cancel my reservation for winters at the palace tonight", + "cancel_reservation" + ], + [ + "i would like you to cancel the dinner reservation for williams at the palace tonight", + "cancel_reservation" + ], + [ + "i have to cancel my reservation after all", + "cancel_reservation" + ], + [ + "cancel my reservation for dinner tonight, please", + "cancel_reservation" + ], + [ + "i need to cancel my reservation after all", + "cancel_reservation" + ], + [ + "i have to cancel my reservation after all, please", + "cancel_reservation" + ], + [ + "cancel my reservation for dinner this saturday, please", + "cancel_reservation" + ], + [ + "cancel my reservation for dinner this friday, please", + "cancel_reservation" + ], + [ + "cancel my reservation for dinner this saturday", + "cancel_reservation" + ], + [ + "cancel my reservation for dinner tonight", + "cancel_reservation" + ], + [ + "i have to cancel my reservation", + "cancel_reservation" + ], + [ + "i need to cancel my reservation after all, please", + "cancel_reservation" + ], + [ + "i need my dinner reservation canceled", + "cancel_reservation" + ], + [ + "i would like to hear something funny", + "tell_joke" + ], + [ + "do you have any monkey jokes", + "tell_joke" + ], + [ + "know any dad jokes", + "tell_joke" + ], + [ + "tell me a dog joke", + "tell_joke" + ], + [ + "heard any good jokes", + "tell_joke" + ], + [ + "i want to hear a joke about elephants", + "tell_joke" + ], + [ + "i'd like to hear a lawyer joke", + "tell_joke" + ], + [ + "tell me a blonde joke", + "tell_joke" + ], + [ + "do you know any dad jokes", + "tell_joke" + ], + [ + "tell me a joke about elephants", + "tell_joke" + ], + [ + "tell me a joke about the subject of sailing", + "tell_joke" + ], + [ + "give me a joke about water", + "tell_joke" + ], + [ + "give me a joke about the topic of television", + "tell_joke" + ], + [ + "give me a joke about the subject of bugs", + "tell_joke" + ], + [ + "tell me a joke about the topic of mice", + "tell_joke" + ], + [ + "i would like to hear a joke", + "tell_joke" + ], + [ + "will you tell me a joke", + "tell_joke" + ], + [ + "let's hear a joke!", + "tell_joke" + ], + [ + "i could use a laugh, got any jokes", + "tell_joke" + ], + [ + "can you tell me something funny about science", + "tell_joke" + ], + [ + "can you share something funny about traveling", + "tell_joke" + ], + [ + "i want to hear your best joke", + "tell_joke" + ], + [ + "tell me a good joke", + "tell_joke" + ], + [ + "tell me something funny about horses", + "tell_joke" + ], + [ + "i want to hear something funny about history", + "tell_joke" + ], + [ + "can you share a humorous joke with me", + "tell_joke" + ], + [ + "i want to hear something funny about politicsi", + "tell_joke" + ], + [ + "let's hear a joke from you please", + "tell_joke" + ], + [ + "tell me something funny about the middle ages", + "tell_joke" + ], + [ + "do you know any jokes", + "tell_joke" + ], + [ + "would it be possible to change your name to coraline", + "change_ai_name" + ], + [ + "would it be okay to change your name to daphne", + "change_ai_name" + ], + [ + "id like to change your name to max", + "change_ai_name" + ], + [ + "what do you think about changing your name to heath", + "change_ai_name" + ], + [ + "lets start calling you allan", + "change_ai_name" + ], + [ + "i would like to start calling you heath", + "change_ai_name" + ], + [ + "what do you think about me calling you cora", + "change_ai_name" + ], + [ + "im going to call you xander", + "change_ai_name" + ], + [ + "can we change your name to clara", + "change_ai_name" + ], + [ + "how about lets start calling you juliette", + "change_ai_name" + ], + [ + "i want to start calling you owen", + "change_ai_name" + ], + [ + "can i call you arnold instead", + "change_ai_name" + ], + [ + "how about i call you sue", + "change_ai_name" + ], + [ + "can i start calling you fred", + "change_ai_name" + ], + [ + "can i rename you bob", + "change_ai_name" + ], + [ + "i want to rename you joe", + "change_ai_name" + ], + [ + "your new name is joe, okay", + "change_ai_name" + ], + [ + "i'm going to start calling you joe", + "change_ai_name" + ], + [ + "you are going to be called joe now", + "change_ai_name" + ], + [ + "start responding to joe", + "change_ai_name" + ], + [ + "i'm changing your name to joe", + "change_ai_name" + ], + [ + "i'd like to start calling you buddy", + "change_ai_name" + ], + [ + "i'd like to start calling you jake", + "change_ai_name" + ], + [ + "i'd like to start calling you lover", + "change_ai_name" + ], + [ + "i'd like to start calling you friend", + "change_ai_name" + ], + [ + "i want to change your name to shelby", + "change_ai_name" + ], + [ + "i'd rather call you gloria", + "change_ai_name" + ], + [ + "i'm changing your name to goliath", + "change_ai_name" + ], + [ + "is it okay to change your name to samson", + "change_ai_name" + ], + [ + "can i call you james instead", + "change_ai_name" + ], + [ + "what your numerical digit to display as your age", + "how_old_are_you" + ], + [ + "how old will you be", + "how_old_are_you" + ], + [ + "how old will you be this year", + "how_old_are_you" + ], + [ + "whats your age", + "how_old_are_you" + ], + [ + "when is your birthday", + "how_old_are_you" + ], + [ + "when were you made", + "how_old_are_you" + ], + [ + "whats your age range", + "how_old_are_you" + ], + [ + "could you tell me how old you are", + "how_old_are_you" + ], + [ + "would you tell me how old you are", + "how_old_are_you" + ], + [ + "your date of birth", + "how_old_are_you" + ], + [ + "your birthday please", + "how_old_are_you" + ], + [ + "can you tell me your birthday", + "how_old_are_you" + ], + [ + "whens your birthday", + "how_old_are_you" + ], + [ + "what's your bday", + "how_old_are_you" + ], + [ + "how old were you on your last birthday", + "how_old_are_you" + ], + [ + "how many years have you been alive", + "how_old_are_you" + ], + [ + "can i ask your age", + "how_old_are_you" + ], + [ + "do you mind if i ask how old you are", + "how_old_are_you" + ], + [ + "may i ask your age", + "how_old_are_you" + ], + [ + "i need to know your age", + "how_old_are_you" + ], + [ + "please tell me your age", + "how_old_are_you" + ], + [ + "can you tell me your age", + "how_old_are_you" + ], + [ + "when's your birthday", + "how_old_are_you" + ], + [ + "how young are you", + "how_old_are_you" + ], + [ + "what's your age right now", + "how_old_are_you" + ], + [ + "how old would you be", + "how_old_are_you" + ], + [ + "do you know how old you are", + "how_old_are_you" + ], + [ + "how old", + "how_old_are_you" + ], + [ + "what's your date of birth", + "how_old_are_you" + ], + [ + "how old are you turning", + "how_old_are_you" + ], + [ + "i need to rent an suv in charlestown for the first week in june who do you suggest", + "car_rental" + ], + [ + "find a decent rental care for next week at the philadelphia airport", + "car_rental" + ], + [ + "who can i rent a car from next month in orlando", + "car_rental" + ], + [ + "i need to rent a car kfor one week in ocean city, nj so who has the best deal", + "car_rental" + ], + [ + "find me a car rental for the weekend in asheville, nc via priceline", + "car_rental" + ], + [ + "what is the phone number of the car rental place", + "car_rental" + ], + [ + "book a rental car to rhode island for friday, tomorrow", + "car_rental" + ], + [ + "alexa, book a rental car to los angeles county in 2 hours", + "car_rental" + ], + [ + "can you book a car rental today to new york city to philadelphia", + "car_rental" + ], + [ + "book a car rental to miami florida today", + "car_rental" + ], + [ + "siri, book a car rental to the poconos today right now", + "car_rental" + ], + [ + "where in syracuse can i book a car", + "car_rental" + ], + [ + "in x, help me book a car", + "car_rental" + ], + [ + "book me a car rental in wichita", + "car_rental" + ], + [ + "how many places in dallas can i rent a car", + "car_rental" + ], + [ + "where can i rent a car in singapore", + "car_rental" + ], + [ + "march 2nd through march 18th, i'm going to need a jeep in frankfort", + "car_rental" + ], + [ + "rent a car for 3/1 through 3/3 in boston; i'd prefer an suv", + "car_rental" + ], + [ + "can i rent a sports car in augusta for 3/4 through 3/8", + "car_rental" + ], + [ + "in tampa, i'd like to rent a sedan from 4/1 until 4/5", + "car_rental" + ], + [ + "i'm going to need a coupe car in sedona from 5/1 until 5/4", + "car_rental" + ], + [ + "schedule a rental car starting monday the 5th thru friday the 9th at rent a car in town", + "car_rental" + ], + [ + "can you find a rental car for me that is available this monday through thursday , any make will do", + "car_rental" + ], + [ + "i need to rent a car from traveler's rent a car downtown and make it from friday the 6th to monday the 9th cheapest available", + "car_rental" + ], + [ + "i want a rental car that is available tomorrow and that i can keep for four days please find me one", + "car_rental" + ], + [ + "find me a rental car for next week , from friday the 5th thru monday the 8th, any kind", + "car_rental" + ], + [ + "i need to rent a car for may 8th to may 25th in danville and i'd like a ford", + "car_rental" + ], + [ + "i need to rent a car for may 10th to may 15th in lizton and i'd like a bmw", + "car_rental" + ], + [ + "i need to rent a car for may 3rd to may 5th in indianapolis and i'd like a mercedes", + "car_rental" + ], + [ + "i need to rent a car for may 11thto may 13th in chicago and i'd like a coupe", + "car_rental" + ], + [ + "what should i do to get my car jump started", + "jump_start" + ], + [ + "what do i need to do to get my car jump started", + "jump_start" + ], + [ + "how can i go about jump starting my car", + "jump_start" + ], + [ + "what steps should be taken to jump start a car", + "jump_start" + ], + [ + "what can i do to jump start my car", + "jump_start" + ], + [ + "how do i jump start my car", + "jump_start" + ], + [ + "i need to know how to get my car jump started", + "jump_start" + ], + [ + "my car needs a jump start; what do i need to do", + "jump_start" + ], + [ + "tell me how to jump start my car", + "jump_start" + ], + [ + "what steps should i take if i think my car battery is dead", + "jump_start" + ], + [ + "i'm almost certain my car battery died, please tell me what to do", + "jump_start" + ], + [ + "please give me a quick tutorial on jump starting my car", + "jump_start" + ], + [ + "will you guide me through the process to jump start my car, please", + "jump_start" + ], + [ + "what steps do i need to follow to jump start my car", + "jump_start" + ], + [ + "what do i do if my car battery died", + "jump_start" + ], + [ + "what do i do if i suspect my car battery is dead", + "jump_start" + ], + [ + "i need instructions to walk me through jump starting my car", + "jump_start" + ], + [ + "i believe that my car battery has died, what do i do next", + "jump_start" + ], + [ + "can you give me instructions on how to jump start my car, please", + "jump_start" + ], + [ + "i wanna know how to jump start my car", + "jump_start" + ], + [ + "what do i do now that my battery is dead", + "jump_start" + ], + [ + "my car battery is dead what do i do", + "jump_start" + ], + [ + "i would like to jump start my car", + "jump_start" + ], + [ + "i really need to jump start my car", + "jump_start" + ], + [ + "what should i do now that my car battery is dead", + "jump_start" + ], + [ + "what do i need to do now that my battery is dead", + "jump_start" + ], + [ + "i have to jump start my car", + "jump_start" + ], + [ + "what shall i do now that my battery is dead", + "jump_start" + ], + [ + "i gotta jump start my car", + "jump_start" + ], + [ + "what is the process for jump starting my car", + "jump_start" + ], + [ + "what's a good italian meal", + "meal_suggestion" + ], + [ + "i'm looking for a meal that's from the asian cuisine", + "meal_suggestion" + ], + [ + "i'm feeling like a greek meal and need some suggestions", + "meal_suggestion" + ], + [ + "indian cuisine suits me and i'd like a meal suggestion, please", + "meal_suggestion" + ], + [ + "what's a good, popular american meal", + "meal_suggestion" + ], + [ + "i'd like a meal suggestion from thailand", + "meal_suggestion" + ], + [ + "tell me what meal to eat from texas", + "meal_suggestion" + ], + [ + "can you give me a meal suggestion from the south", + "meal_suggestion" + ], + [ + "i want to try a meal from ireland", + "meal_suggestion" + ], + [ + "i want a meal from vietnam to be suggested to me", + "meal_suggestion" + ], + [ + "what are good thai dishes", + "meal_suggestion" + ], + [ + "i would like thai food", + "meal_suggestion" + ], + [ + "can you recommend thai food", + "meal_suggestion" + ], + [ + "i need a thai food suggestion", + "meal_suggestion" + ], + [ + "thai food suggestions", + "meal_suggestion" + ], + [ + "i need options or italian tonight", + "meal_suggestion" + ], + [ + "do you have any recommendations for korean", + "meal_suggestion" + ], + [ + "do you have any ideas for a mexican meal", + "meal_suggestion" + ], + [ + "what kind of indian would you recommend", + "meal_suggestion" + ], + [ + "what would you suggest for japanese", + "meal_suggestion" + ], + [ + "i need to know what's good for chinese around here", + "meal_suggestion" + ], + [ + "i want to make something from ethiopia for dinner", + "meal_suggestion" + ], + [ + "i need some ideas for a mexican meal", + "meal_suggestion" + ], + [ + "i want to eat something from turkey", + "meal_suggestion" + ], + [ + "i need a good italian dish", + "meal_suggestion" + ], + [ + "i need a good meal idea from italy", + "meal_suggestion" + ], + [ + "do you have any suggested roman recipes", + "meal_suggestion" + ], + [ + "can you give me a american dinner suggestion", + "meal_suggestion" + ], + [ + "tell me what to make for dinner", + "meal_suggestion" + ], + [ + "do you know what is for dinner", + "meal_suggestion" + ], + [ + "what do i need to do to cook a chicken", + "recipe" + ], + [ + "how do i go about cooking a 10lb turkey", + "recipe" + ], + [ + "how do i get started making homemade pizza dough", + "recipe" + ], + [ + "what instructions do i need to bake a cake from scratch", + "recipe" + ], + [ + "how do i make lasagna", + "recipe" + ], + [ + "how do you make pasta", + "recipe" + ], + [ + "how do you prepare omelet", + "recipe" + ], + [ + "how do you prepare taco", + "recipe" + ], + [ + "how do you make fried rice", + "recipe" + ], + [ + "how do you cooked eggs", + "recipe" + ], + [ + "what's a good chili recipe", + "recipe" + ], + [ + "i need a recipe for chili", + "recipe" + ], + [ + "search for chili recipes", + "recipe" + ], + [ + "search for a chili recipe for me", + "recipe" + ], + [ + "find me a recipe for chili", + "recipe" + ], + [ + "show me ideas for hamburger", + "recipe" + ], + [ + "can you get me recipes for eggs please", + "recipe" + ], + [ + "show me how to make tuna casserole please", + "recipe" + ], + [ + "recipes for garlic bread please", + "recipe" + ], + [ + "please tell me a recipe for this meal", + "recipe" + ], + [ + "can you find me a pork recipe", + "recipe" + ], + [ + "can you find me a brisket recipe", + "recipe" + ], + [ + "can you find me a rice recipe", + "recipe" + ], + [ + "can you find me a salsa recipe", + "recipe" + ], + [ + "scan you find me a chicken recipe", + "recipe" + ], + [ + "i need a pasta recipe", + "recipe" + ], + [ + "i want a recipe for roasted veggies", + "recipe" + ], + [ + "what is in a burrito recipe", + "recipe" + ], + [ + "give me a tuna salad recipe", + "recipe" + ], + [ + "find a recipe for baked ziti", + "recipe" + ], + [ + "how much money do i make", + "income" + ], + [ + "how much money do i earn", + "income" + ], + [ + "what amount of money do i earn", + "income" + ], + [ + "what do i take home", + "income" + ], + [ + "how much do i take home yearly", + "income" + ], + [ + "how much do i earn", + "income" + ], + [ + "what's my yearly salary", + "income" + ], + [ + "what's my salary", + "income" + ], + [ + "how much do i earn a year", + "income" + ], + [ + "what do i make annually", + "income" + ], + [ + "what do i bring in over a year", + "income" + ], + [ + "please tell me what amount i'm earning", + "income" + ], + [ + "can you please tell me my income", + "income" + ], + [ + "how much money am i earning", + "income" + ], + [ + "what is my compensation", + "income" + ], + [ + "how much am i paid", + "income" + ], + [ + "how much do i get paid", + "income" + ], + [ + "what is my income this year", + "income" + ], + [ + "how much money do i make from work", + "income" + ], + [ + "what will i make this year", + "income" + ], + [ + "what will i get paid this year", + "income" + ], + [ + "how much am i paid a year", + "income" + ], + [ + "how much money am i making this year at work", + "income" + ], + [ + "what's my salary for this year", + "income" + ], + [ + "what is my current salary", + "income" + ], + [ + "what's the amount of my income", + "income" + ], + [ + "what amount is my income", + "income" + ], + [ + "i want to know my income", + "income" + ], + [ + "what is my payment going to be", + "income" + ], + [ + "how much is the pay offered for my work", + "income" + ], + [ + "alexa, buy a new television", + "order" + ], + [ + "place my order alexa", + "order" + ], + [ + "siri, place my amazon order", + "order" + ], + [ + "alexa, buy my grocery list", + "order" + ], + [ + "purchase grass seed from the store", + "order" + ], + [ + "find inner tube and buy it for me", + "order" + ], + [ + "can you order me some nacho chips", + "order" + ], + [ + "i'd like to buy something", + "order" + ], + [ + "i need to buy something, please", + "order" + ], + [ + "i'd like to buy a lamp online", + "order" + ], + [ + "order all items on my shopping list", + "order" + ], + [ + "get me an order of creatine powder", + "order" + ], + [ + "place an order for my whole shopping list", + "order" + ], + [ + "order me some doritos, please", + "order" + ], + [ + "place an order for my entire shopping list", + "order" + ], + [ + "can you buy something", + "order" + ], + [ + "make a purchase of doritos", + "order" + ], + [ + "i'd like to you order everything that's on my shopping list", + "order" + ], + [ + "please buy me something", + "order" + ], + [ + "order my whole shopping list", + "order" + ], + [ + "can you order some more eggs for me since i just ran out", + "order" + ], + [ + "i've used the last can of tuna fish and need you to order a new case of it", + "order" + ], + [ + "i've just run out of butter and need you to order me some more", + "order" + ], + [ + "i'm out of milk so you will order me some more", + "order" + ], + [ + "can you place an order for the olive oil i just finished", + "order" + ], + [ + "please go on amazon so i can buy bluetooth speakers", + "order" + ], + [ + "will you please go on amazon so i can buy speakers", + "order" + ], + [ + "where can i find bluetooth speakers", + "order" + ], + [ + "what is the price of bluetooth speakers on amazon", + "order" + ], + [ + "please order some more pepsi", + "order" + ], + [ + "i need to know traffic patterns heading to the george washington bridge from manhattan", + "traffic" + ], + [ + "can you give me a traffic update for driving routes nearest ocean city, new jersey from philadelphia", + "traffic" + ], + [ + "what will traffic be like nearest the george washington bridge, new york", + "traffic" + ], + [ + "what traffic can i expect on the way to the newark, new jersey from philadelphia", + "traffic" + ], + [ + "can you tell me the traffic situation from philadelphia to the new jersey turnpike", + "traffic" + ], + [ + "how is the traffic normally driving into downtown washington, dc, from baltimore at 4:00 pm", + "traffic" + ], + [ + "how is traffic nearest the ben franklin bridge philadelphia heading to the new jersey turnpike", + "traffic" + ], + [ + "i need to know what traffic is going to be like at 3:00 pm on the new jersey turnpike heading into camden from north jersey", + "traffic" + ], + [ + "what kind of traffic can i expect driving to newark, new jersey on i-95 from philadelphia at noon", + "traffic" + ], + [ + "i need to know what traffic looks like nearest the smithsonian institute in washington, dc for the next hour", + "traffic" + ], + [ + "please tell me how traffic from the new jersey turnpike into the lincoln tunnel looks currently", + "traffic" + ], + [ + "is there traffic on i-95 north to new york from philadelphia", + "traffic" + ], + [ + "can you tell me what the traffic is usually like at 7:00 pm from philadelphia to ocean city, new jersey", + "traffic" + ], + [ + "will there be heavy traffic near downtown philadelphia from lincoln drive in the next two hours", + "traffic" + ], + [ + "what does post rush hour traffic generally look like heading into the lincoln tunnel in manhattan from new jersey", + "traffic" + ], + [ + "is traffic good or bad at 9:00 on the way to detroit", + "traffic" + ], + [ + "what kind of traffic is there at 9:00 on the route to detroit", + "traffic" + ], + [ + "how is the traffic at 9:00 on the way to detroit", + "traffic" + ], + [ + "what kind of traffic can i expect at 9:00 on the route to detroit", + "traffic" + ], + [ + "how bad is traffic at 9:00 going to detroit", + "traffic" + ], + [ + "is there traffic right now on my route to work", + "traffic" + ], + [ + "going to work, will there be traffic", + "traffic" + ], + [ + "is there traffic on my work route", + "traffic" + ], + [ + "is there traffic expected", + "traffic" + ], + [ + "on my way to work, is there traffic", + "traffic" + ], + [ + "on the way to work is there traffic", + "traffic" + ], + [ + "is there traffic on the way to work", + "traffic" + ], + [ + "will i encounter traffic", + "traffic" + ], + [ + "is there traffic on the way", + "traffic" + ], + [ + "whats the traffic for the drive to the nearest restaurant", + "traffic" + ], + [ + "can i get some more checkbooks sent to me, please", + "order_checks" + ], + [ + "could i get some more checkbooks sent to me", + "order_checks" + ], + [ + "can i get some more checkbooks mailed to me, please", + "order_checks" + ], + [ + "can i get some more checkbooks sent to me", + "order_checks" + ], + [ + "could i get some more checkbooks sent to me, please", + "order_checks" + ], + [ + "how do i order some checkbooks for my chase account", + "order_checks" + ], + [ + "for checkbooks can i order them for my chase account", + "order_checks" + ], + [ + "am i able to order more checkbooks for my chase account", + "order_checks" + ], + [ + "for my chase account can i order some checkbooks", + "order_checks" + ], + [ + "is there a way to order checkbooks for a chase account", + "order_checks" + ], + [ + "can you overnight me a few checkbooks", + "order_checks" + ], + [ + "send me more checkbooks please", + "order_checks" + ], + [ + "please mail me more checkbooks", + "order_checks" + ], + [ + "i need more checkbooks mailed as soon as possible", + "order_checks" + ], + [ + "i'd like more checkbooks mailed to me", + "order_checks" + ], + [ + "how do i order some more checks for my bank of the west account", + "order_checks" + ], + [ + "how do i order some more checks for my bank of america account", + "order_checks" + ], + [ + "how do i order some more checks for my chase account", + "order_checks" + ], + [ + "how do i order some more checks for my usaa account", + "order_checks" + ], + [ + "how do i order some more checks for my navy federal account", + "order_checks" + ], + [ + "i'm out of all my checks can i get some new ones", + "order_checks" + ], + [ + "i'm out of my checks i need some new ones", + "order_checks" + ], + [ + "can i get some new checks i'm out of mine", + "order_checks" + ], + [ + "i need to order some new checks, i'm all out of them", + "order_checks" + ], + [ + "i am in need of new checks i'm completely out of mine", + "order_checks" + ], + [ + "may i order more checks for my well's fargo account", + "order_checks" + ], + [ + "do you know how i order more checks for my well's fargo account", + "order_checks" + ], + [ + "what do i do to order new checkbooks for my well's fargo account", + "order_checks" + ], + [ + "how do i order more checkbooks for my well's fargo account", + "order_checks" + ], + [ + "where do i go to order more checks for my well's fargo account", + "order_checks" + ], + [ + "my card got declined; why", + "card_declined" + ], + [ + "can you help me understand why my card got declined", + "card_declined" + ], + [ + "why was my card not accepted", + "card_declined" + ], + [ + "can you tell me why my card got declined", + "card_declined" + ], + [ + "i was at publix trying to buy some food but my card wouldnt work", + "card_declined" + ], + [ + "who do i need to contact to find out why my card got declined", + "card_declined" + ], + [ + "i need to know why my card got declined", + "card_declined" + ], + [ + "how do i fix my card, it was declined", + "card_declined" + ], + [ + "why did my card get declined at public when i was trying to buy food", + "card_declined" + ], + [ + "i was trying to buy food at publix but my card got declined", + "card_declined" + ], + [ + "i was trying to use my card to get food at publix but it got declined", + "card_declined" + ], + [ + "how can i fix my card being declined", + "card_declined" + ], + [ + "i was trying to get food at publix, why was my card declined", + "card_declined" + ], + [ + "do you know why my card got declined", + "card_declined" + ], + [ + "why my card stop working", + "card_declined" + ], + [ + "my card declined", + "card_declined" + ], + [ + "i was in australia trying to buy chips and my cards got declined", + "card_declined" + ], + [ + "i was in thailand trying to buy candies and my card got declined", + "card_declined" + ], + [ + "why was my card got declined when i am trying to pay for dinner when i am in vietnam", + "card_declined" + ], + [ + "i could not buy food using my card when i was in vietnam", + "card_declined" + ], + [ + "i was in thailand and i could not use my card to buy snacks", + "card_declined" + ], + [ + "can you explain why i couldn't use my card at target", + "card_declined" + ], + [ + "why was my card not working at target", + "card_declined" + ], + [ + "my credit card was turned down at target and i'd like to know why", + "card_declined" + ], + [ + "how come i got declined", + "card_declined" + ], + [ + "why can't i use my credit card", + "card_declined" + ], + [ + "why won't you let me pay with my credit card", + "card_declined" + ], + [ + "why did i get rejected on my card", + "card_declined" + ], + [ + "how come my credit card isn't working", + "card_declined" + ], + [ + "why didn't my card work", + "card_declined" + ] + ], + "oos_train": [ + [ + "how much is an overdraft fee for bank", + "oos" + ], + [ + "why are exponents preformed before multiplication in the order of operations", + "oos" + ], + [ + "what size wipers does this car take", + "oos" + ], + [ + "where is the dipstick", + "oos" + ], + [ + "how much is 1 share of aapl", + "oos" + ], + [ + "how is glue made", + "oos" + ], + [ + "any headlines from my area", + "oos" + ], + [ + "what is the largest state in the us", + "oos" + ], + [ + "what is the current market trend", + "oos" + ], + [ + "what is the most popular airline", + "oos" + ], + [ + "what is the formula for the circumference of a circle", + "oos" + ], + [ + "what are some ways to reduce spending", + "oos" + ], + [ + "what time does the louvre open", + "oos" + ], + [ + "are there any local stations covering the moral march in raleigh in februaryu", + "oos" + ], + [ + "how many planets have we discovered", + "oos" + ], + [ + "how do i change my billing address", + "oos" + ], + [ + "how do i open an online line of credit", + "oos" + ], + [ + "how do i remove a coffee blemish", + "oos" + ], + [ + "how expensive is an apple share", + "oos" + ], + [ + "where can i find the cruise control on my kia sportage 2010", + "oos" + ], + [ + "how many sides are in a hexagon", + "oos" + ], + [ + "how fast does an airplane travel", + "oos" + ], + [ + "is it worth investing in target", + "oos" + ], + [ + "i need to speak to customer service regarding my flight", + "oos" + ], + [ + "how long do wire transfers take", + "oos" + ], + [ + "what are some deals on amazon", + "oos" + ], + [ + "what city is the super bowl", + "oos" + ], + [ + "what trees change color in autumn", + "oos" + ], + [ + "do people prefer summer over fall", + "oos" + ], + [ + "how long is winter", + "oos" + ], + [ + "what were some of ben franklin's notable accomplishments", + "oos" + ], + [ + "where was john denver born", + "oos" + ], + [ + "where did abraham lincoln live", + "oos" + ], + [ + "when was kobe bryant born", + "oos" + ], + [ + "who's toledo's starting point guard for the next game", + "oos" + ], + [ + "how many players are on the chicago bulls", + "oos" + ], + [ + "who is the coach of the chicago bulls", + "oos" + ], + [ + "when do the utah jazz play next", + "oos" + ], + [ + "what other nations were involved in the chinese trade war", + "oos" + ], + [ + "what years has korea been at war", + "oos" + ], + [ + "when was the theory of evolution first considered", + "oos" + ], + [ + "who formulated the theory of relativity", + "oos" + ], + [ + "what stage of evolution am i", + "oos" + ], + [ + "what other personality type is most compatible with infjs", + "oos" + ], + [ + "what does my personality mean", + "oos" + ], + [ + "what's the most dominant scale in bluegrass", + "oos" + ], + [ + "what year was saxaphone first played", + "oos" + ], + [ + "which piano is best for classical", + "oos" + ], + [ + "is k-12 education required outside of the united states", + "oos" + ], + [ + "what are the benefits of completing college", + "oos" + ], + [ + "are you able to answer algebra equations", + "oos" + ], + [ + "can you help me study for a history exam", + "oos" + ], + [ + "how many points per game is lebron james averaging this season", + "oos" + ], + [ + "what team does eli mannign play for", + "oos" + ], + [ + "get me dwight howard shooting average", + "oos" + ], + [ + "can you list me tiger wood's stats", + "oos" + ], + [ + "what's the runtime of all the lord of the rings movies combined", + "oos" + ], + [ + "which character is the most famous from titanic", + "oos" + ], + [ + "how many oscars did star wars films win", + "oos" + ], + [ + "what year was shawshank redemption released", + "oos" + ], + [ + "which marvel character has appeared in the most movies", + "oos" + ], + [ + "when's the next movie starring thor set to come out", + "oos" + ], + [ + "who was the first capcom character", + "oos" + ], + [ + "are any justice league movies coming out", + "oos" + ], + [ + "can you tell me something about the nfl", + "oos" + ], + [ + "please explain the catch rule to me", + "oos" + ], + [ + "is there overtime in college football", + "oos" + ], + [ + "when did the mls start", + "oos" + ], + [ + "what's the best price on super smash bros ultimate right now", + "oos" + ], + [ + "what is the highest earning game on atari", + "oos" + ], + [ + "when is the next nintendo direct", + "oos" + ], + [ + "when was nintendo created", + "oos" + ], + [ + "please find the capital of pakistan and its population", + "oos" + ], + [ + "how many people live in taiwan", + "oos" + ], + [ + "what are some of picasso's most famous works", + "oos" + ], + [ + "what are van gogh's best pieces", + "oos" + ], + [ + "where can i see art", + "oos" + ], + [ + "when did camus die", + "oos" + ], + [ + "how much money does radiohead earn a year", + "oos" + ], + [ + "who is radiohead", + "oos" + ], + [ + "what's the biggest saas marketing company in the united states", + "oos" + ], + [ + "how do i start my own marketing firm", + "oos" + ], + [ + "how can i get involved in restaurant marketing", + "oos" + ], + [ + "what is saas marketing", + "oos" + ], + [ + "what do you call someone who was born in segovia", + "oos" + ], + [ + "what is rhineland", + "oos" + ], + [ + "who is the scariest character in start trek", + "oos" + ], + [ + "who is the current captain of this ship", + "oos" + ], + [ + "what year was star trek released", + "oos" + ], + [ + "when was toyota created", + "oos" + ], + [ + "who are some notable alumni of ucsd", + "oos" + ], + [ + "what is the next football game", + "oos" + ], + [ + "how many students attend ucsb", + "oos" + ], + [ + "when do classes start", + "oos" + ], + [ + "how can i become an aerospace engineer", + "oos" + ], + [ + "what percentage of species display cold blooded traits", + "oos" + ], + [ + "what does it mean to be an alpha male", + "oos" + ], + [ + "what animals have alpha males", + "oos" + ], + [ + "why do males want to be alpha", + "oos" + ], + [ + "what's the average battery life of an android phone", + "oos" + ] + ] +} \ No newline at end of file From 197997edd3e260f11cffc3f6aa3ab5bd04d0c2b8 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 16:40:35 +0300 Subject: [PATCH 33/94] Delete annotators/dnnc_intents/data_full(1).json --- annotators/dnnc_intents/data_full(1).json | 94814 -------------------- 1 file changed, 94814 deletions(-) delete mode 100644 annotators/dnnc_intents/data_full(1).json diff --git a/annotators/dnnc_intents/data_full(1).json b/annotators/dnnc_intents/data_full(1).json deleted file mode 100644 index 7a7b26c5f2..0000000000 --- a/annotators/dnnc_intents/data_full(1).json +++ /dev/null @@ -1,94814 +0,0 @@ -{ - "oos_val": [ - [ - "set a warning for when my bank account starts running low", - "oos" - ], - [ - "a show on broadway", - "oos" - ], - [ - "who has the best record in the nfl", - "oos" - ], - [ - "how do i find the area of a circle", - "oos" - ], - [ - "how many onions do i have on hand", - "oos" - ], - [ - "what is the name of the 13th president", - "oos" - ], - [ - "show me recent activity in my backyard", - "oos" - ], - [ - "how long will it take me to pay off my card if i pay an extra $50 a month over the minimum", - "oos" - ], - [ - "does our bank have free notary", - "oos" - ], - [ - "what were the top stories this week", - "oos" - ], - [ - "can i mix antifreeze with water", - "oos" - ], - [ - "are any earning reports due", - "oos" - ], - [ - "show me the channel guide", - "oos" - ], - [ - "is the pnc bank open", - "oos" - ], - [ - "where does the power steering fluid go", - "oos" - ], - [ - "when was the last time the president visited floridau", - "oos" - ], - [ - "how can i keep my windshield from fogging up in winter", - "oos" - ], - [ - "how do i compute the median of a set of numbers", - "oos" - ], - [ - "what is happening with brexit right nowu", - "oos" - ], - [ - "are there any new companies to look out for", - "oos" - ], - [ - "can you tell me how to compute price per ounce", - "oos" - ], - [ - "how to unclog a drain", - "oos" - ], - [ - "am kind of busy now", - "oos" - ], - [ - "what new reality shows are there for 2019", - "oos" - ], - [ - "what is the purpose or benefit of a cash advance", - "oos" - ], - [ - "how can i root an android phone", - "oos" - ], - [ - "is android better than iphone", - "oos" - ], - [ - "are androids expensive", - "oos" - ], - [ - "how long does it take to become an architect", - "oos" - ], - [ - "who are some famous living architects", - "oos" - ], - [ - "find out for me as to why people get autism", - "oos" - ], - [ - "is autism a genetic disease", - "oos" - ], - [ - "is flu contagious", - "oos" - ], - [ - "is it true that nicotine is harder to kick than heroin", - "oos" - ], - [ - "please inform me on bad habits and overcoming them", - "oos" - ], - [ - "are bad habits closely related with addictions", - "oos" - ], - [ - "does hypnosis work to break bad habits", - "oos" - ], - [ - "king of acid", - "oos" - ], - [ - "suo2", - "oos" - ], - [ - "what university in the united states offers the best biomedical engineering program", - "oos" - ], - [ - "what's the definition of nuclear engineering", - "oos" - ], - [ - "when was electrical engineering created", - "oos" - ], - [ - "what is naval engineering", - "oos" - ], - [ - "is it possible to survive in a black hole", - "oos" - ], - [ - "where do black holes come from", - "oos" - ], - [ - "what are black holes", - "oos" - ], - [ - "what was the final vote count in the brexit referendum", - "oos" - ], - [ - "can you tell me the latest georgia news", - "oos" - ], - [ - "is the brexit finalized yet", - "oos" - ], - [ - "the birds fly with there wings", - "oos" - ], - [ - "how the birds fly", - "oos" - ], - [ - "where does cannabis originate from", - "oos" - ], - [ - "how are my cannabis stocks doing", - "oos" - ], - [ - "is marijuana addictive", - "oos" - ], - [ - "should i hit or stay at 17 in blackjack", - "oos" - ], - [ - "what game has the best odds at a casino", - "oos" - ], - [ - "what's the best opening gambit for a game of chess", - "oos" - ], - [ - "what side in chess has the general advantage", - "oos" - ], - [ - "how do i get better at go", - "oos" - ], - [ - "how high does my sat score need to be to get into harvard", - "oos" - ], - [ - "what'll an education at boulder state college run", - "oos" - ], - [ - "what's the average gpa to get into yale", - "oos" - ], - [ - "what act score is considered good", - "oos" - ], - [ - "what cryptocurrency gained the most in 2018", - "oos" - ], - [ - "what's the best crypto to buy in 2019", - "oos" - ], - [ - "how is crypto legal", - "oos" - ], - [ - "are there any cybersecurity jobs available in pittsburgh", - "oos" - ], - [ - "how many firewalls should i have and what type", - "oos" - ], - [ - "how can i breach a network", - "oos" - ], - [ - "how does cybersecurity work", - "oos" - ], - [ - "how many countries in the world are democracies", - "oos" - ], - [ - "is the united states a democracy", - "oos" - ], - [ - "which nations are not democratic", - "oos" - ], - [ - "how does a democracy work", - "oos" - ], - [ - "please get me my wheelchair", - "oos" - ], - [ - "what's the best dog food to feed my puppy", - "oos" - ], - [ - "how do you know when your dog is ill", - "oos" - ], - [ - "what dog breed sold the most in 2018", - "oos" - ], - [ - "how much food should i feed my cat", - "oos" - ], - [ - "what does it mean if i dream of falling off a building", - "oos" - ], - [ - "is it bad to not remember your dreams", - "oos" - ], - [ - "why do we dream", - "oos" - ], - [ - "do ducks eat meat, vegetables, or both", - "oos" - ], - [ - "what is the friendliest breed", - "oos" - ], - [ - "what do geese eat", - "oos" - ], - [ - "do ducks sleep", - "oos" - ], - [ - "are over the ear headphones better than in ear headphones", - "oos" - ], - [ - "what brand of earphones is the best reviewed of 2019", - "oos" - ], - [ - "are white and brown eggs any different", - "oos" - ], - [ - "where do eggs come from", - "oos" - ], - [ - "how can i easily replace a string on my guitar", - "oos" - ], - [ - "how do you learn how to play electric violin", - "oos" - ], - [ - "can you give me the standard tuning notes", - "oos" - ], - [ - "what is the cheapest electric guitar", - "oos" - ], - [ - "you want to know about current time now", - "oos" - ], - [ - "what does it mean to have equality", - "oos" - ], - [ - "what site publishes the most fake news", - "oos" - ], - [ - "can you tell me some fake news", - "oos" - ], - [ - "is cnn really fake news", - "oos" - ], - [ - "why is there fake news", - "oos" - ] - ], - "val": [ - [ - "in spanish, meet me tomorrow is said how", - "translate" - ], - [ - "in french, how do i say, see you later", - "translate" - ], - [ - "how do you say hello in japanese", - "translate" - ], - [ - "how do i ask about the weather in chinese", - "translate" - ], - [ - "how can i say \"cancel my order\" in french", - "translate" - ], - [ - "how do i say dinner in spanish", - "translate" - ], - [ - "how do you say good bye in french", - "translate" - ], - [ - "how do i say thank you in spanish", - "translate" - ], - [ - "how do i say good bye in chinese", - "translate" - ], - [ - "how can i say thank you very much in chinese", - "translate" - ], - [ - "i need to know how to say hello in france", - "translate" - ], - [ - "would you tell me how to say goodbye in france", - "translate" - ], - [ - "how do you say hello in mexico", - "translate" - ], - [ - "tell me how to say hello in chile", - "translate" - ], - [ - "i want to know how to say goodbye in france", - "translate" - ], - [ - "would you translate a sentence into russian for me, please", - "translate" - ], - [ - "would you translate a phrase into mandarin for me", - "translate" - ], - [ - "can you translate this name into spanish for me, please", - "translate" - ], - [ - "could you translate this into chinese for me, please", - "translate" - ], - [ - "could you translate water into dutch for me", - "translate" - ], - [ - "transfer ten dollars from my wells fargo account to my bank of america account", - "transfer" - ], - [ - "take one hundred and fifty bucks from my wells fargo checking account and put it in my wells fargo savings account", - "transfer" - ], - [ - "put one hundred and seventy five bucks in my wells fargo checking account from my citibank savings account", - "transfer" - ], - [ - "move two hundred dollars to my chase savings account to my wells fargo checking account", - "transfer" - ], - [ - "move three hundred and fifty dollars from my citibank savings account to my chase savings account", - "transfer" - ], - [ - "move a dollar from my checkings to my savings", - "transfer" - ], - [ - "move my money to the other account", - "transfer" - ], - [ - "transfer funds to the other account", - "transfer" - ], - [ - "please transfer half of my funds to an alternate account", - "transfer" - ], - [ - "can you move my money to my savings", - "transfer" - ], - [ - "make an eft to my savings from my checking account", - "transfer" - ], - [ - "send 100 dollars from my vanguard money market to my wells fargo savings", - "transfer" - ], - [ - "i need 200 dollars transferred from my long island savings account to my chase checking", - "transfer" - ], - [ - "send from my bbc money market to my t rowe price money market seven thousand dollars", - "transfer" - ], - [ - "i need 2000 to go to my chase checking from my mellon bank savings account", - "transfer" - ], - [ - "move 100 dollars from my savings to my checking", - "transfer" - ], - [ - "transfer 1000 dollars from my first national bank to my bethpage federal credit union savings", - "transfer" - ], - [ - "take out of my checking 400 dollars and put it into my emergency savings account", - "transfer" - ], - [ - "i need to transfer one thousand dollars to my savings account from my checking", - "transfer" - ], - [ - "transfer 50 dollars from my checking account to my money market account", - "transfer" - ], - [ - "create a new timer", - "timer" - ], - [ - "i'd like to set a new timer", - "timer" - ], - [ - "help me set a timer please", - "timer" - ], - [ - "10 minutes is what the timer should be set at", - "timer" - ], - [ - "the timer should have 10 minutes set to it", - "timer" - ], - [ - "10 minutes is the setting for the timer", - "timer" - ], - [ - "the timer is calculated for 10 minutes", - "timer" - ], - [ - "set the timer for 10 minutes", - "timer" - ], - [ - "can you set a 30 second timer", - "timer" - ], - [ - "please set a timer to go off in 45 minutes", - "timer" - ], - [ - "i need you to create a timer", - "timer" - ], - [ - "i need a timer set please", - "timer" - ], - [ - "create a timer that is set to go off after 25 mins", - "timer" - ], - [ - "i need a timer that is set at 1 hour exactly", - "timer" - ], - [ - "could you set up a timer for me", - "timer" - ], - [ - "will you start a timer for me", - "timer" - ], - [ - "set up a 52 minute timer", - "timer" - ], - [ - "please set up a timer for me", - "timer" - ], - [ - "set 60 minutes for oven please", - "timer" - ], - [ - "please make the timer for cooking for for 2 hours", - "timer" - ], - [ - "may i please have a definition for the work churlish", - "definition" - ], - [ - "i want to know what trenchant means", - "definition" - ], - [ - "what is the meaning of fascism", - "definition" - ], - [ - "can you tell me what a septuagenarian is", - "definition" - ], - [ - "can you define the word schadenfreude", - "definition" - ], - [ - "what does unsavory mean", - "definition" - ], - [ - "please define erection for me", - "definition" - ], - [ - "what does idiosyncratic mean", - "definition" - ], - [ - "tell me the meaning of condemnation", - "definition" - ], - [ - "define monetary for me please", - "definition" - ], - [ - "tell me the meaning of hegemony", - "definition" - ], - [ - "what does indignation mean", - "definition" - ], - [ - "define ambivalence for me please", - "definition" - ], - [ - "please define institutional racism", - "definition" - ], - [ - "define antagonist for me please", - "definition" - ], - [ - "what does distinguish mean", - "definition" - ], - [ - "what is the meaning of word alliance", - "definition" - ], - [ - "i need to know what dominate means", - "definition" - ], - [ - "what is the definition of the word migrate", - "definition" - ], - [ - "tell me please what paean means", - "definition" - ], - [ - "i want to know what the purpose of life is", - "meaning_of_life" - ], - [ - "i want to hear what you think life's purpose is about", - "meaning_of_life" - ], - [ - "what do you think the purpose of life is", - "meaning_of_life" - ], - [ - "what is the purpose of existence", - "meaning_of_life" - ], - [ - "what do you think our purpose is in life", - "meaning_of_life" - ], - [ - "i'd like to know the meaning of life", - "meaning_of_life" - ], - [ - "what's your opinion on the meaning of life", - "meaning_of_life" - ], - [ - "what is life's purpose", - "meaning_of_life" - ], - [ - "tell me all about the meaning of life", - "meaning_of_life" - ], - [ - "tell me your thoughts about the meaning of life", - "meaning_of_life" - ], - [ - "do you have any ideas on the meaning of life", - "meaning_of_life" - ], - [ - "do you know the deeper meaning of life", - "meaning_of_life" - ], - [ - "tell me the meaning of life", - "meaning_of_life" - ], - [ - "can you tell me, what is the meaning of life", - "meaning_of_life" - ], - [ - "what is the meaning behind life, do you think", - "meaning_of_life" - ], - [ - "what is our purpose", - "meaning_of_life" - ], - [ - "what do you think we are on earth for", - "meaning_of_life" - ], - [ - "what do you think life is really about", - "meaning_of_life" - ], - [ - "do you think we have a higher calling", - "meaning_of_life" - ], - [ - "why are humans on earth", - "meaning_of_life" - ], - [ - "explain how do i get new insurance", - "insurance_change" - ], - [ - "tell me how to get new insurance", - "insurance_change" - ], - [ - "explain to me how do i get new insurance", - "insurance_change" - ], - [ - "i want to get new insurance", - "insurance_change" - ], - [ - "can you tell me how do i get new insurance", - "insurance_change" - ], - [ - "i'd like to know how changes are made to my insurance policy", - "insurance_change" - ], - [ - "how can i make changes for my insurance policy", - "insurance_change" - ], - [ - "can you tell me how changes on my insurance policy can be made", - "insurance_change" - ], - [ - "i'd like to know how to make changes for my insurance policy", - "insurance_change" - ], - [ - "could you tell me how to make changes to my insurance policy", - "insurance_change" - ], - [ - "tell me how to change my policy", - "insurance_change" - ], - [ - "i need to switch insurance plans", - "insurance_change" - ], - [ - "can you help me switch insurance plans", - "insurance_change" - ], - [ - "tell me how to make changes to my insurance policy", - "insurance_change" - ], - [ - "how do i switch to a new insurance plan", - "insurance_change" - ], - [ - "can you help me switch to a new insurance plan", - "insurance_change" - ], - [ - "how can i change information on my insurance policy", - "insurance_change" - ], - [ - "how do i make changes to my insurance policy", - "insurance_change" - ], - [ - "tell me how to change my insurance policy", - "insurance_change" - ], - [ - "i need to change my insurance policy, how", - "insurance_change" - ], - [ - "please help me in finding my phone", - "find_phone" - ], - [ - "please help me find my lost phone", - "find_phone" - ], - [ - "i need your help finding my lost phone", - "find_phone" - ], - [ - "help me find my phone please", - "find_phone" - ], - [ - "tell me where i left my phone", - "find_phone" - ], - [ - "what did i do with my phone", - "find_phone" - ], - [ - "can you tell me where my phone is", - "find_phone" - ], - [ - "what happened to my cellphone", - "find_phone" - ], - [ - "do you remember where i left my cellphone", - "find_phone" - ], - [ - "where is my cellphone", - "find_phone" - ], - [ - "do you know where my cellphone is", - "find_phone" - ], - [ - "i have lost my phone", - "find_phone" - ], - [ - "help me, i don't know where my phone is", - "find_phone" - ], - [ - "tell me my phone's location", - "find_phone" - ], - [ - "where would my phone be", - "find_phone" - ], - [ - "i need to know my phone's location", - "find_phone" - ], - [ - "help locate my phone", - "find_phone" - ], - [ - "can you find me my phone", - "find_phone" - ], - [ - "track down my phone for me", - "find_phone" - ], - [ - "my phone is lost and i need help finding it", - "find_phone" - ], - [ - "is traveling to france safe", - "travel_alert" - ], - [ - "is france safe to travel to", - "travel_alert" - ], - [ - "i need to know is traveling to france safe", - "travel_alert" - ], - [ - "can i travel to france as far as safety goes", - "travel_alert" - ], - [ - "can i safely travel to france or is it dangerous", - "travel_alert" - ], - [ - "are there any current travel alerts for brazil", - "travel_alert" - ], - [ - "are there any travel alerts for seattle", - "travel_alert" - ], - [ - "how safe is it to travel to guatemala right now and are there any alerts", - "travel_alert" - ], - [ - "are there any travel alerts for juarez", - "travel_alert" - ], - [ - "what's the danger level of flying to russia right now", - "travel_alert" - ], - [ - "are there any travel alerts for antarctica", - "travel_alert" - ], - [ - "are there any travel alerts for mountain view", - "travel_alert" - ], - [ - "does mexico have any travel alerts i should know about", - "travel_alert" - ], - [ - "does greece currently have any travel alerts in place", - "travel_alert" - ], - [ - "are there any travel alerts for brazil", - "travel_alert" - ], - [ - "how safe is it to visit spain", - "travel_alert" - ], - [ - "how safe is visiting canada this week", - "travel_alert" - ], - [ - "have the riots in france triggered any alerts for people traveling to there", - "travel_alert" - ], - [ - "is there any danger going to brazil", - "travel_alert" - ], - [ - "is it safe to travel to mexico", - "travel_alert" - ], - [ - "please request pto for march 2 and 3", - "pto_request" - ], - [ - "i am requesting pto for march 2 and 3", - "pto_request" - ], - [ - "can you please request pto for march 2 and 3", - "pto_request" - ], - [ - "i would like to request pto for march 2 and 3", - "pto_request" - ], - [ - "i need to request pto for march 2 and 3", - "pto_request" - ], - [ - "let me know how to make a vacation request", - "pto_request" - ], - [ - "i need to make a vacation request; how", - "pto_request" - ], - [ - "can i put in a pto request for may 1 to may 5", - "pto_request" - ], - [ - "tell me how to make a vacation request", - "pto_request" - ], - [ - "i would like to know if i can put a pto request in for march 19 to march 20", - "pto_request" - ], - [ - "am i able to put in a pto request for may 6 to may 18", - "pto_request" - ], - [ - "provide assistance on what to do to make a vacation request", - "pto_request" - ], - [ - "i need to know how to make a vacation request", - "pto_request" - ], - [ - "i need to know if i can put a pto request in for march 10 to march 12", - "pto_request" - ], - [ - "tell me whether i can put a pto request in for may 10 to may 15", - "pto_request" - ], - [ - "what is the process for making a vacation request", - "pto_request" - ], - [ - "what's the method for requesting a vacation", - "pto_request" - ], - [ - "what are the steps required for making a vacation request", - "pto_request" - ], - [ - "please help me make a request for vacation", - "pto_request" - ], - [ - "i have a vacation request that i need made", - "pto_request" - ], - [ - "what are some ways to raise my credit score", - "improve_credit_score" - ], - [ - "what will help my credit score", - "improve_credit_score" - ], - [ - "are there any videos on how to repair my credit score", - "improve_credit_score" - ], - [ - "what can i do to get a better credit score", - "improve_credit_score" - ], - [ - "will getting a credit card help my credit score", - "improve_credit_score" - ], - [ - "what are the top 10 ways to build my credit score", - "improve_credit_score" - ], - [ - "how can i build up my credit score", - "improve_credit_score" - ], - [ - "how can i build my credit score", - "improve_credit_score" - ], - [ - "what are some easy ways to make my credit score better", - "improve_credit_score" - ], - [ - "how do i prevent my credit score from dropping", - "improve_credit_score" - ], - [ - "how should i go about improving my credit score", - "improve_credit_score" - ], - [ - "how can i make sure that my credit score does not decrease", - "improve_credit_score" - ], - [ - "what is the best way to insure that my credit score doesn't decrease", - "improve_credit_score" - ], - [ - "what things can i do to increase my credit score", - "improve_credit_score" - ], - [ - "what is the best way to keep my credit score from going down", - "improve_credit_score" - ], - [ - "what is the best thing for me to do to improve my credit score quickly", - "improve_credit_score" - ], - [ - "how can i safeguard my credit score from dropping", - "improve_credit_score" - ], - [ - "do i have options on how to improve my credit score", - "improve_credit_score" - ], - [ - "what steps can i take to improve my credit score", - "improve_credit_score" - ], - [ - "show me a plan to help my credit score rating", - "improve_credit_score" - ], - [ - "tell me something interesting about lake tahoe", - "fun_fact" - ], - [ - "tell me a cool fact about reno", - "fun_fact" - ], - [ - "tell me something interesting about new york state", - "fun_fact" - ], - [ - "give me a cool fact about new orleans", - "fun_fact" - ], - [ - "give me a cool fact about seattle", - "fun_fact" - ], - [ - "tell me something interesting about elephants", - "fun_fact" - ], - [ - "tell me something interesting about dogs", - "fun_fact" - ], - [ - "give me a cool fact about potatoes", - "fun_fact" - ], - [ - "give me a cool fact about puppies", - "fun_fact" - ], - [ - "give me a cool fact about lsd", - "fun_fact" - ], - [ - "tell me a fun fact about the moon landing", - "fun_fact" - ], - [ - "what's a fun fact about axolotls", - "fun_fact" - ], - [ - "tell me a fact about the maned wolf", - "fun_fact" - ], - [ - "give me harry potter trivia", - "fun_fact" - ], - [ - "tell me an axolotl fact", - "fun_fact" - ], - [ - "i need a spider fact", - "fun_fact" - ], - [ - "show me trivia about cats", - "fun_fact" - ], - [ - "read me some different cat trivia items", - "fun_fact" - ], - [ - "find me cat trivia now please", - "fun_fact" - ], - [ - "read me cat trivia", - "fun_fact" - ], - [ - "i need new language", - "change_language" - ], - [ - "switch language for me", - "change_language" - ], - [ - "please change your language setting to russian", - "change_language" - ], - [ - "you must change your language setting to russian", - "change_language" - ], - [ - "you need to change your language setting to russian please", - "change_language" - ], - [ - "change language please", - "change_language" - ], - [ - "please change your language setting to spanish now", - "change_language" - ], - [ - "change your language setting to spanish", - "change_language" - ], - [ - "i want new language", - "change_language" - ], - [ - "please change the language", - "change_language" - ], - [ - "speak arabic", - "change_language" - ], - [ - "speak navajo", - "change_language" - ], - [ - "speak german", - "change_language" - ], - [ - "speak french", - "change_language" - ], - [ - "speak mandarin", - "change_language" - ], - [ - "change response language from mandarin to english", - "change_language" - ], - [ - "please respond to me in english from now on", - "change_language" - ], - [ - "please change your response language to english", - "change_language" - ], - [ - "how can i change your response language", - "change_language" - ], - [ - "change the language to english", - "change_language" - ], - [ - "when's the next time i get paid", - "payday" - ], - [ - "when's my next paycheck coming in", - "payday" - ], - [ - "what's the date of my next paycheck", - "payday" - ], - [ - "when do i get my paycheck", - "payday" - ], - [ - "which day is pay day", - "payday" - ], - [ - "which day is it that my payment comes in", - "payday" - ], - [ - "when am i paid or how often", - "payday" - ], - [ - "how many days until i get my payment", - "payday" - ], - [ - "what was the last check date", - "payday" - ], - [ - "when was i paid most recently", - "payday" - ], - [ - "what was the date of my last paycheck", - "payday" - ], - [ - "when did i get my check last", - "payday" - ], - [ - "how long has it been since i was paid", - "payday" - ], - [ - "how many times do i get paid in march", - "payday" - ], - [ - "what date is the next payday", - "payday" - ], - [ - "i am trying to find out when is the next payday", - "payday" - ], - [ - "what date is the next day i get paid", - "payday" - ], - [ - "when is the next payday", - "payday" - ], - [ - "what is my pay", - "payday" - ], - [ - "how much is on my paycheck this week", - "payday" - ], - [ - "what's the time of arrival on my new credit card", - "replacement_card_duration" - ], - [ - "tell me the duration it takes to get a new cc", - "replacement_card_duration" - ], - [ - "is it a short time before i receive my new credit card", - "replacement_card_duration" - ], - [ - "how long before my updated cc takes to arrive", - "replacement_card_duration" - ], - [ - "how long does it take a new card to arrive in the mail to me", - "replacement_card_duration" - ], - [ - "what is the length of time it takes a new card to get mailed to me", - "replacement_card_duration" - ], - [ - "about how long does it usually take a new card to get mailed to me", - "replacement_card_duration" - ], - [ - "how much time does it take a new card to get mailed to me", - "replacement_card_duration" - ], - [ - "how soon does it take a card new card to get mailed to me", - "replacement_card_duration" - ], - [ - "after losing a credit card, how long does it take to get a new one", - "replacement_card_duration" - ], - [ - "if i lose my credit card, will i get a replacement immediately", - "replacement_card_duration" - ], - [ - "what is the time frame for receiving a new credit card if my original one gets lost", - "replacement_card_duration" - ], - [ - "will i have to wait a long time to receive my new credit card after i lost my old one", - "replacement_card_duration" - ], - [ - "how long should i expect to wait for my replacement credit card", - "replacement_card_duration" - ], - [ - "will my new credit card be here this week", - "replacement_card_duration" - ], - [ - "how long does it usually take for a new credit card to come", - "replacement_card_duration" - ], - [ - "what is the eta on getting a replacement card", - "replacement_card_duration" - ], - [ - "show tracking information on my replacement credit card", - "replacement_card_duration" - ], - [ - "when will i get my replacement card", - "replacement_card_duration" - ], - [ - "will it take more than a month to get a new card", - "replacement_card_duration" - ], - [ - "what time is it in france", - "time" - ], - [ - "what's the time in london right now", - "time" - ], - [ - "what hour is it in london", - "time" - ], - [ - "what's the time", - "time" - ], - [ - "what is the time in london", - "time" - ], - [ - "i need to know what time it is", - "time" - ], - [ - "what time of day is it in london", - "time" - ], - [ - "tell me what time it is", - "time" - ], - [ - "what time of day is it", - "time" - ], - [ - "what time is it in the pacific timezone", - "time" - ], - [ - "what time is it in pacific standard time", - "time" - ], - [ - "what time is it over in pacific time", - "time" - ], - [ - "what time is in over there in pacific standard time", - "time" - ], - [ - "what time is it in the pacific standard time", - "time" - ], - [ - "what is the time in paris now", - "time" - ], - [ - "time in manhattan", - "time" - ], - [ - "how late is it now in ourense", - "time" - ], - [ - "what is the current time right now in hollywood", - "time" - ], - [ - "what time is it now in michigan", - "time" - ], - [ - "what's the clock say", - "time" - ], - [ - "what is the present status of my credit card application", - "application_status" - ], - [ - "what is the current status of my credit card application", - "application_status" - ], - [ - "in what status is my credit card application currently in", - "application_status" - ], - [ - "how far along is my credit card application", - "application_status" - ], - [ - "what is the status of my credit card application looking like", - "application_status" - ], - [ - "pull up my credit card application's current status", - "application_status" - ], - [ - "has my credit card application processed yet", - "application_status" - ], - [ - "check the status of my credit card application please", - "application_status" - ], - [ - "has my card application successfully gone through", - "application_status" - ], - [ - "go to the credit card site and check if my application has gone through", - "application_status" - ], - [ - "has my credit card application been approved yet", - "application_status" - ], - [ - "can you check on the status of my credit card application", - "application_status" - ], - [ - "i would like to know if my visa card application has been approved", - "application_status" - ], - [ - "can you let me know if my visa card has been approved", - "application_status" - ], - [ - "at what point will the review of my credit card application be completed", - "application_status" - ], - [ - "can you check if my mastercard application has been reviewed yet", - "application_status" - ], - [ - "has my visa card application been approved yet", - "application_status" - ], - [ - "please let me know how my credit card application is going", - "application_status" - ], - [ - "when will my credit card application be reviewed", - "application_status" - ], - [ - "please let me know if my discover card application has been approved", - "application_status" - ], - [ - "when is my flight going to board", - "flight_status" - ], - [ - "when am i boarding my flight", - "flight_status" - ], - [ - "at what time should i be boarding my flight", - "flight_status" - ], - [ - "can you please update the status of flight dl123", - "flight_status" - ], - [ - "when is the expected arrival of flight dl123", - "flight_status" - ], - [ - "is flight dl123 due to land as schedule", - "flight_status" - ], - [ - "will flight dl123 be on time", - "flight_status" - ], - [ - "are there any expected delays for flight dl123", - "flight_status" - ], - [ - "i would like to know flight dl123's status", - "flight_status" - ], - [ - "tell me flight dl123's statud", - "flight_status" - ], - [ - "for flight dl123 what's the status", - "flight_status" - ], - [ - "could you tell me the status of flight dl123", - "flight_status" - ], - [ - "when is my flight expected to arrive", - "flight_status" - ], - [ - "at what time is my flight scheduled to land", - "flight_status" - ], - [ - "what time is my flight going to land", - "flight_status" - ], - [ - "ostensibly when is my flight going to land", - "flight_status" - ], - [ - "when is my flight going to arrive", - "flight_status" - ], - [ - "what time does my flight board", - "flight_status" - ], - [ - "what is the boarding time for my upcoming flight", - "flight_status" - ], - [ - "when is my flight boarding", - "flight_status" - ], - [ - "flip a normal coin", - "flip_coin" - ], - [ - "flip a heads or tails coin i pick heads", - "flip_coin" - ], - [ - "flip a coin, i choose heads", - "flip_coin" - ], - [ - "please flip a coin - i call heads", - "flip_coin" - ], - [ - "can you flip a coin i pick heads", - "flip_coin" - ], - [ - "please flip coin ai", - "flip_coin" - ], - [ - "flip a coin now", - "flip_coin" - ], - [ - "please flip a coin", - "flip_coin" - ], - [ - "i need you to flip a coin", - "flip_coin" - ], - [ - "flip coin ai", - "flip_coin" - ], - [ - "please go ahead and flip a coin", - "flip_coin" - ], - [ - "flip the coin ai", - "flip_coin" - ], - [ - "please flip coin", - "flip_coin" - ], - [ - "i wanna flip a coin", - "flip_coin" - ], - [ - "please flip the coin", - "flip_coin" - ], - [ - "please flip the coin over ai", - "flip_coin" - ], - [ - "i'm wanting you to flip a coin", - "flip_coin" - ], - [ - "flip me a coin", - "flip_coin" - ], - [ - "i want you to flip a coin now", - "flip_coin" - ], - [ - "i call tails and you call heads on this coin flip i need you to do", - "flip_coin" - ], - [ - "will you start calling me chaz", - "change_user_name" - ], - [ - "stop calling me charlie and from now on always call me chip", - "change_user_name" - ], - [ - "from now on, refer to me as chuck", - "change_user_name" - ], - [ - "please call me charlile from here on out ok", - "change_user_name" - ], - [ - "i want you to call me a different name so can you call me charchar", - "change_user_name" - ], - [ - "please change my name to tom", - "change_user_name" - ], - [ - "from now on, my name is tom", - "change_user_name" - ], - [ - "i want to be called tom", - "change_user_name" - ], - [ - "please call me tom", - "change_user_name" - ], - [ - "you can call me jason", - "change_user_name" - ], - [ - "my name is jason", - "change_user_name" - ], - [ - "jason is my name", - "change_user_name" - ], - [ - "i prefer to be called jason", - "change_user_name" - ], - [ - "i am jason", - "change_user_name" - ], - [ - "you shall address me as nick", - "change_user_name" - ], - [ - "my name is nick", - "change_user_name" - ], - [ - "refer to me as nick", - "change_user_name" - ], - [ - "the name is nick", - "change_user_name" - ], - [ - "you could say my name is nick", - "change_user_name" - ], - [ - "i am camile", - "change_user_name" - ], - [ - "what place were you born at", - "where_are_you_from" - ], - [ - "where were you born as a kid", - "where_are_you_from" - ], - [ - "tell me where you were created", - "where_are_you_from" - ], - [ - "what place were you made at", - "where_are_you_from" - ], - [ - "what place were you actually born at", - "where_are_you_from" - ], - [ - "what place do you come from", - "where_are_you_from" - ], - [ - "where do you hale from", - "where_are_you_from" - ], - [ - "what place were you born", - "where_are_you_from" - ], - [ - "where are you from before you got here", - "where_are_you_from" - ], - [ - "let me know when you were made", - "where_are_you_from" - ], - [ - "where you from", - "where_are_you_from" - ], - [ - "where are you from if i may ask", - "where_are_you_from" - ], - [ - "where are you from oroginally", - "where_are_you_from" - ], - [ - "where are you originally from before coming here", - "where_are_you_from" - ], - [ - "what's your home town", - "where_are_you_from" - ], - [ - "what country are you from", - "where_are_you_from" - ], - [ - "are you from here", - "where_are_you_from" - ], - [ - "were you made here", - "where_are_you_from" - ], - [ - "where did you come from", - "where_are_you_from" - ], - [ - "you were made where", - "where_are_you_from" - ], - [ - "i'm not sure if watermelon is on my shopping list, but if it isn't can you put it on there", - "shopping_list_update" - ], - [ - "is it possible to add grapes to my shopping list if they aren't on there already", - "shopping_list_update" - ], - [ - "please add bananas to my shopping list unless i already did", - "shopping_list_update" - ], - [ - "can you add apples to my shopping list if they aren't already on there", - "shopping_list_update" - ], - [ - "would you be willing to add bread to my shopping list if i haven't already", - "shopping_list_update" - ], - [ - "i'm out of cleaning supplies, remind me on my list", - "shopping_list_update" - ], - [ - "i don't have any more steak, please put that on my grocery list", - "shopping_list_update" - ], - [ - "i'm out of apples, add that to my list", - "shopping_list_update" - ], - [ - "i have no oranges, put them onto my list", - "shopping_list_update" - ], - [ - "do i have peanuts on my shopping list if not please add it", - "shopping_list_update" - ], - [ - "do i have soda on my shopping list if not please add it", - "shopping_list_update" - ], - [ - "i'm out of kleenex so will you put that on my shopping list", - "shopping_list_update" - ], - [ - "i'm out of paper towels so will you put that on my shopping list", - "shopping_list_update" - ], - [ - "i'm out of toilet paper so will you put that on my shopping list", - "shopping_list_update" - ], - [ - "do i have graham crackers on my shopping list if not please add it", - "shopping_list_update" - ], - [ - "i'm out of clorox wipes so will you put that on my shopping list", - "shopping_list_update" - ], - [ - "do i have tortillas on my shopping list if not please add it", - "shopping_list_update" - ], - [ - "i'm out of laundry detergent so will you put that on my shopping list", - "shopping_list_update" - ], - [ - "do i have cheese on my shopping list if not please add it", - "shopping_list_update" - ], - [ - "i'd like you to add oranges to my shopping list", - "shopping_list_update" - ], - [ - "what categories of questions can you answer", - "what_can_i_ask_you" - ], - [ - "what kind of questions can i ask the ai", - "what_can_i_ask_you" - ], - [ - "can you tell me what i can ask the ai", - "what_can_i_ask_you" - ], - [ - "what types of things can i ask the ai", - "what_can_i_ask_you" - ], - [ - "what kind of things can i ask the ai", - "what_can_i_ask_you" - ], - [ - "what can i ask the ai", - "what_can_i_ask_you" - ], - [ - "what questions can you answer", - "what_can_i_ask_you" - ], - [ - "what am i allowed to ask you", - "what_can_i_ask_you" - ], - [ - "what all can i ask you", - "what_can_i_ask_you" - ], - [ - "what are you capable of doing and answering", - "what_can_i_ask_you" - ], - [ - "what are you capable of answering", - "what_can_i_ask_you" - ], - [ - "what kinds of subjects do you know about", - "what_can_i_ask_you" - ], - [ - "what are the different subjects that you know", - "what_can_i_ask_you" - ], - [ - "which kinds of info are you familiar with", - "what_can_i_ask_you" - ], - [ - "what kind of information do you know", - "what_can_i_ask_you" - ], - [ - "which subjects can you tell me about", - "what_can_i_ask_you" - ], - [ - "can i ask you all different types of questions", - "what_can_i_ask_you" - ], - [ - "can you answer all types of questions", - "what_can_i_ask_you" - ], - [ - "what topics can you answer questions on", - "what_can_i_ask_you" - ], - [ - "what kind of questions can you answer", - "what_can_i_ask_you" - ], - [ - "i do not have that information", - "maybe" - ], - [ - "i can't give you an answer to that", - "maybe" - ], - [ - "i do not know the answer to that", - "maybe" - ], - [ - "perhaps", - "maybe" - ], - [ - "possibly either one", - "maybe" - ], - [ - "i don't have any idea", - "maybe" - ], - [ - "can't say", - "maybe" - ], - [ - "i couldn't say either could be possible", - "maybe" - ], - [ - "which one i don't know either i guess", - "maybe" - ], - [ - "i just don't know", - "maybe" - ], - [ - "don't have any idea", - "maybe" - ], - [ - "i couldn't say", - "maybe" - ], - [ - "i don't know the anwser", - "maybe" - ], - [ - "couldn't tell you", - "maybe" - ], - [ - "either i am not sure", - "maybe" - ], - [ - "either of them could be i'm not sure", - "maybe" - ], - [ - "don't know", - "maybe" - ], - [ - "idk", - "maybe" - ], - [ - "i don't have an answer for that", - "maybe" - ], - [ - "maybe it does", - "maybe" - ], - [ - "procedure to change oil in car", - "oil_change_how" - ], - [ - "way to change car oil", - "oil_change_how" - ], - [ - "how to change oil of a car", - "oil_change_how" - ], - [ - "how can i change car oil", - "oil_change_how" - ], - [ - "i want to know how to change oil, tell me the steps one at a time while i work through it", - "oil_change_how" - ], - [ - "find step by step instructions on how to change my oil", - "oil_change_how" - ], - [ - "how do i change oil on a car", - "oil_change_how" - ], - [ - "where can i find a page showing my how to change my oil", - "oil_change_how" - ], - [ - "what weight oil do i need and how do i change the oil for my chevy truck", - "oil_change_how" - ], - [ - "what kind of oil do i need for my ford truck and how can i change it", - "oil_change_how" - ], - [ - "what kind of oil and how much do i need for my toyota tacoma truck and how do i do it", - "oil_change_how" - ], - [ - "i need to know how to change my oil and what kind of oil for a 2007 trailblazer", - "oil_change_how" - ], - [ - "what oil do i need for my honda crv and how do i change it", - "oil_change_how" - ], - [ - "i need a tutorial to learn how to change my oil, please", - "oil_change_how" - ], - [ - "what steps do i need to follow to change the oil in my car", - "oil_change_how" - ], - [ - "can you get me simple instructions on how to do an oil change", - "oil_change_how" - ], - [ - "i want to figure out how to do an oil change on my car", - "oil_change_how" - ], - [ - "can you teach me to change my oil", - "oil_change_how" - ], - [ - "can you tell me how to change my oil", - "oil_change_how" - ], - [ - "can you find some instructions on how to change my oil", - "oil_change_how" - ], - [ - "please reserve a table for 2 at lucky's under the name melissa at 7 pm", - "restaurant_reservation" - ], - [ - "i would like to reserve a table for 2 at sam's steakhouse under the name jessie at 6:30 pm", - "restaurant_reservation" - ], - [ - "help me reserve a table for 3 at lucky's under the name crystal at 8 pm", - "restaurant_reservation" - ], - [ - "would you please schedule a reservation for 2 at lucky's under the name sam at 7:30pm", - "restaurant_reservation" - ], - [ - "could you please reserve a table for 6 at lucille's under the name tom at 5pm", - "restaurant_reservation" - ], - [ - "is there a reservation available at ruth chris today", - "restaurant_reservation" - ], - [ - "are there 8pm tables available at texas roadhouse", - "restaurant_reservation" - ], - [ - "book a reservation for 3 at xenophobe under the name zebee", - "restaurant_reservation" - ], - [ - "i need to book a reservation for 3 at xenophobe under the name zebee", - "restaurant_reservation" - ], - [ - "book 3 under the name zebee at xenophobe", - "restaurant_reservation" - ], - [ - "what reservations are available for 3 people at the xenophobe", - "restaurant_reservation" - ], - [ - "under the name zebee book a reservation at the xenophobe for 3", - "restaurant_reservation" - ], - [ - "use the name wheeler to reserve a table for 3 at andrea's steakhouse at 5pm", - "restaurant_reservation" - ], - [ - "make a reservation for wheeler party of 3 for 5pm at andrea's steakhouse", - "restaurant_reservation" - ], - [ - "reserve a table for 3 at andrea's steakhouse around 5pm under the name wheeler", - "restaurant_reservation" - ], - [ - "i need a table for 3 at 5pm at andrea's steakhouse under wheeler", - "restaurant_reservation" - ], - [ - "reserve a table for 3 under the name wheeler at andrea's steakhouse for 5pm", - "restaurant_reservation" - ], - [ - "book room for me and her under the name kendra", - "restaurant_reservation" - ], - [ - "allow me to turn on the lights", - "restaurant_reservation" - ], - [ - "make me a reservation for 5 people at village tavern for the calloways", - "restaurant_reservation" - ], - [ - "do i have more than $100 in my pnc account", - "balance" - ], - [ - "what's my pnc balance", - "balance" - ], - [ - "how much is in my pnc account", - "balance" - ], - [ - "how much money do i have in my pnc account", - "balance" - ], - [ - "what is the balance in my pnc account", - "balance" - ], - [ - "can i get beer within my deposit account", - "balance" - ], - [ - "is there enough in my savings account to get a new tv", - "balance" - ], - [ - "could be there be a good amount of money in my checking account to go on a vacation", - "balance" - ], - [ - "can i afford a new tv from my savings account", - "balance" - ], - [ - "will i have enough to get a new roku with my savings account", - "balance" - ], - [ - "do you think i have enough money in my chase account for a new pair of sneakers", - "balance" - ], - [ - "i hope i have enough money in my chase account to buy new clothes", - "balance" - ], - [ - "i am not sure if i have enough money in my chase account to buy a new dress", - "balance" - ], - [ - "i wonder if i have enough money in my chase account for a bike", - "balance" - ], - [ - "i keep trying to figure out if i have enough money in my chase account to purchase a new set of tires", - "balance" - ], - [ - "please tell me how much money i have in my bank accounts", - "balance" - ], - [ - "i need to know how much money i have in all of my bank accounts", - "balance" - ], - [ - "how much money is in all of my bank accounts", - "balance" - ], - [ - "how much money is in my bank accounts", - "balance" - ], - [ - "can you tell me how much money i have i my bank accounts", - "balance" - ], - [ - "please double check my reservations for six at mani", - "confirm_reservation" - ], - [ - "confirm my johnny rockets reservation for this evening", - "confirm_reservation" - ], - [ - "confirm four for my reservation at fiji", - "confirm_reservation" - ], - [ - "make sure my flower bar reservation is scheduled for tomorrow", - "confirm_reservation" - ], - [ - "please double check on my reservations for buffalo wild wings at five for the game", - "confirm_reservation" - ], - [ - "i would like to try and confirm that i have a reservation at applebee's for kristen", - "confirm_reservation" - ], - [ - "i would like to try and confirm that i have a reservation at chili's for bart", - "confirm_reservation" - ], - [ - "i would like to try and confirm that i have a reservation at longhorn for justin", - "confirm_reservation" - ], - [ - "i would like to try and confirm that i have a reservation at outback for josh", - "confirm_reservation" - ], - [ - "i would like to try and confirm that i have a reservation at carrabbas for heather", - "confirm_reservation" - ], - [ - "i want to confirm friday's reservation at 2:00", - "confirm_reservation" - ], - [ - "confirm my friday reservation at 2:00", - "confirm_reservation" - ], - [ - "i am here to conform my friday reservation at 2:00", - "confirm_reservation" - ], - [ - "you know the reservation i have on 2:00 friday i confirm it", - "confirm_reservation" - ], - [ - "i'd like to confirm the 2:00 reservation for friday", - "confirm_reservation" - ], - [ - "check to see if i am still booked to be eating at gusto handcrafted pasta & pizza at 6:30 pm", - "confirm_reservation" - ], - [ - "is my dinner reservation for gusto handcrafted pasta & pizza at 6:30 pm still valid", - "confirm_reservation" - ], - [ - "please call gusto handcrafted pasta & pizza and ask them about the status of my reservation for 6:30 pm", - "confirm_reservation" - ], - [ - "will you check to see if i am still reserved for 6:30 pm at gusto handcrafted pasta & pizza", - "confirm_reservation" - ], - [ - "please confirm my reservation for dinner at gusto handcrafted pasta & pizza at 6:30 pm", - "confirm_reservation" - ], - [ - "may you stop a paymet on my account", - "freeze_account" - ], - [ - "how we stop my account", - "freeze_account" - ], - [ - "can you place a stop on my account", - "freeze_account" - ], - [ - "can we stop my bank account", - "freeze_account" - ], - [ - "please put a block on my capital one account immediately", - "freeze_account" - ], - [ - "please put a block on my discover account immediately", - "freeze_account" - ], - [ - "please put a block on my regions account immediately", - "freeze_account" - ], - [ - "please put a block on my wells fargo account immediately", - "freeze_account" - ], - [ - "please put a block on my us bank account immediately", - "freeze_account" - ], - [ - "i need you to act swiftly and freeze all activity on my capital one checking", - "freeze_account" - ], - [ - "place a hold on my chase money market market account at once", - "freeze_account" - ], - [ - "i need to block all transactions from going through on my citi checking account straight away", - "freeze_account" - ], - [ - "please immediately block my navy federal credit union account", - "freeze_account" - ], - [ - "can you initiate a block on my bank of america checking asap", - "freeze_account" - ], - [ - "i need my savings account placed under a block as soon as possible", - "freeze_account" - ], - [ - "please put a hold on my retirement account right now", - "freeze_account" - ], - [ - "i need a block placed right away on my joint checking account", - "freeze_account" - ], - [ - "i want a block placed on my checking account right away", - "freeze_account" - ], - [ - "i want a block placed on my college fund account immediately", - "freeze_account" - ], - [ - "can you please freeze my account", - "freeze_account" - ], - [ - "will my 401k rollover", - "rollover_401k" - ], - [ - "will my 401k carryover", - "rollover_401k" - ], - [ - "will my 401k carryover or not", - "rollover_401k" - ], - [ - "can my 401k rollover or not", - "rollover_401k" - ], - [ - "could my 401k be rolled over", - "rollover_401k" - ], - [ - "can the 401k i have be rolled over", - "rollover_401k" - ], - [ - "is there a way to roll over my 401k", - "rollover_401k" - ], - [ - "is it possible to rollover my 401k", - "rollover_401k" - ], - [ - "am i able to rollover my 401k", - "rollover_401k" - ], - [ - "how should i rollover my 401k", - "rollover_401k" - ], - [ - "i need help with my 401k rollover because i just got a new job", - "rollover_401k" - ], - [ - "how do i do a 401k rollover when switching to a new job", - "rollover_401k" - ], - [ - "due to getting a new job i need assistance with my 401k rollover", - "rollover_401k" - ], - [ - "i'm at a new job and i need to do a 401k rollover, how do i do this", - "rollover_401k" - ], - [ - "what are you suppose to do with a 401k rollover when getting a new job", - "rollover_401k" - ], - [ - "how do i rollover my 401k", - "rollover_401k" - ], - [ - "rolling over my 401k help", - "rollover_401k" - ], - [ - "assistance in rolling over my 401k", - "rollover_401k" - ], - [ - "401k rollover help", - "rollover_401k" - ], - [ - "rollover my 401k assistance", - "rollover_401k" - ], - [ - "who is your designer", - "who_made_you" - ], - [ - "what company is responsible for your design", - "who_made_you" - ], - [ - "who is responsible for your design", - "who_made_you" - ], - [ - "what firm is responsible for your design", - "who_made_you" - ], - [ - "who were you created by", - "who_made_you" - ], - [ - "what is the company that made you", - "who_made_you" - ], - [ - "who are you manufactured by", - "who_made_you" - ], - [ - "who is your manufacturer", - "who_made_you" - ], - [ - "who makes you", - "who_made_you" - ], - [ - "what organization manufactures you", - "who_made_you" - ], - [ - "who's your creator", - "who_made_you" - ], - [ - "what manufactures you", - "who_made_you" - ], - [ - "who is the person responsible for creating you", - "who_made_you" - ], - [ - "who brought you into existence", - "who_made_you" - ], - [ - "who formed thou", - "who_made_you" - ], - [ - "who conjured you", - "who_made_you" - ], - [ - "who programmed you", - "who_made_you" - ], - [ - "where were you programmed", - "who_made_you" - ], - [ - "what company designed you", - "who_made_you" - ], - [ - "who or what programmed you, do you know", - "who_made_you" - ], - [ - "whats the travel time to redmond right now", - "distance" - ], - [ - "travel time to bend, oregon", - "distance" - ], - [ - "how long will the trip to portland be", - "distance" - ], - [ - "how long is it going to take me to get to bellevue", - "distance" - ], - [ - "how long will it take to get to tacoma", - "distance" - ], - [ - "how long is the drive to the closest gas station", - "distance" - ], - [ - "how much time to drive to the closest bank", - "distance" - ], - [ - "can you tell me the drive time to the nearest gas station", - "distance" - ], - [ - "i need to know how long it will take me to get to the bank", - "distance" - ], - [ - "how long will it take for me to get to the gas station", - "distance" - ], - [ - "what is the remaining time until we are at our destination", - "distance" - ], - [ - "how many miles away am i from madison square garden", - "distance" - ], - [ - "how long would it take to get to chicago by bus", - "distance" - ], - [ - "how long to seattle on a bus", - "distance" - ], - [ - "how long is it to ann arbor by bus", - "distance" - ], - [ - "how long to washington dc on a bus", - "distance" - ], - [ - "if going to lake placid, ny, how long would it be by bus", - "distance" - ], - [ - "what is the average time it takes to get to target in los angeles", - "distance" - ], - [ - "can you please tell me how long it will take to get to target in austin", - "distance" - ], - [ - "how long would it take to get to mcdonald's in houston", - "distance" - ], - [ - "do you know who i am", - "user_name" - ], - [ - "do you have my name programmed", - "user_name" - ], - [ - "do you think my name is jeff", - "user_name" - ], - [ - "is joey my name", - "user_name" - ], - [ - "tell me my name", - "user_name" - ], - [ - "say my name in a sentence", - "user_name" - ], - [ - "what is my name", - "user_name" - ], - [ - "tell me my name the way its saved", - "user_name" - ], - [ - "tell me what my name is", - "user_name" - ], - [ - "how is my name saved", - "user_name" - ], - [ - "which way do you have my name saved", - "user_name" - ], - [ - "in what form is my name saved", - "user_name" - ], - [ - "how does my name appear", - "user_name" - ], - [ - "how is my name saved aw", - "user_name" - ], - [ - "how do you show my name", - "user_name" - ], - [ - "do you know what my name is", - "user_name" - ], - [ - "are you able to call me by my name", - "user_name" - ], - [ - "what do you want to call me", - "user_name" - ], - [ - "what is the name you would use for me", - "user_name" - ], - [ - "what name is saved for me", - "user_name" - ], - [ - "what is the timezone of saigon", - "timezone" - ], - [ - "what timezone is hanoi in", - "timezone" - ], - [ - "what timezone do ho chi minh use", - "timezone" - ], - [ - "what timezone is honolulu in", - "timezone" - ], - [ - "what timezone is paris in", - "timezone" - ], - [ - "which time zone is germany is in", - "timezone" - ], - [ - "what are the time zones of russia", - "timezone" - ], - [ - "which time zones does european countries use", - "timezone" - ], - [ - "what is the time zone of china", - "timezone" - ], - [ - "tell me the timezone for hong kong", - "timezone" - ], - [ - "which timezone contains the city of orlando", - "timezone" - ], - [ - "british columbia can be found in what timezone", - "timezone" - ], - [ - "in what timezone is atlanta located", - "timezone" - ], - [ - "give me the timezone where vancouver is", - "timezone" - ], - [ - "what timezone is the country in", - "timezone" - ], - [ - "is the timezone there different", - "timezone" - ], - [ - "what's the timezone over there", - "timezone" - ], - [ - "what's london's timezone", - "timezone" - ], - [ - "do you know london's timezone", - "timezone" - ], - [ - "what timezone is london in", - "timezone" - ], - [ - "i want you to skip past this song to the next track", - "next_song" - ], - [ - "please skip this song and go to the next one instead", - "next_song" - ], - [ - "would you skip past this song and just play what comes next", - "next_song" - ], - [ - "i dont want to hear this song, just play the next one", - "next_song" - ], - [ - "let's skip over this song and listen to the next tune instead", - "next_song" - ], - [ - "would you play the next song", - "next_song" - ], - [ - "i want you to skip this song", - "next_song" - ], - [ - "i need for you to skip this song", - "next_song" - ], - [ - "please skip this song for me", - "next_song" - ], - [ - "would you skip this song", - "next_song" - ], - [ - "i don't want to hear this song; skip it", - "next_song" - ], - [ - "now, i want you to play the next song", - "next_song" - ], - [ - "i am needing the next song to be played", - "next_song" - ], - [ - "i want the next song played", - "next_song" - ], - [ - "needing you to play the next song", - "next_song" - ], - [ - "next song please", - "next_song" - ], - [ - "change this song it sucks so bad", - "next_song" - ], - [ - "can i hear the song after this one", - "next_song" - ], - [ - "can you skip this song and go to the next one", - "next_song" - ], - [ - "what is the next song on this playlist", - "next_song" - ], - [ - "show all purchases of video games", - "transactions" - ], - [ - "show me all video games purchased", - "transactions" - ], - [ - "list all purchases of video games", - "transactions" - ], - [ - "show me all new transactions", - "transactions" - ], - [ - "what transactions have i made in the last few weeks", - "transactions" - ], - [ - "how much money have i spent on restaurants", - "transactions" - ], - [ - "what transactions did i put on my visa last month", - "transactions" - ], - [ - "what transactions have i accrued buying dog food", - "transactions" - ], - [ - "what are my recent purchases", - "transactions" - ], - [ - "please tell me all the purchases on my hy-vee card for this statement period", - "transactions" - ], - [ - "please let me review all items on my mastercard from this billing period", - "transactions" - ], - [ - "please tell me this month's transactions on my visa", - "transactions" - ], - [ - "show me all transactions for current statement", - "transactions" - ], - [ - "i want to see transactions from this month", - "transactions" - ], - [ - "how many paypal transactions did i have last week", - "transactions" - ], - [ - "what items do i have on my amex card this month", - "transactions" - ], - [ - "what transactions do i have on my visa from the last 4 weeks", - "transactions" - ], - [ - "what withdrawals were there on my account yesterday", - "transactions" - ], - [ - "was my last transaction at walmart", - "transactions" - ], - [ - "how much was my last transaction for", - "transactions" - ], - [ - "where do you want to eat tonight", - "restaurant_suggestion" - ], - [ - "where is your favorite restaurant to eat", - "restaurant_suggestion" - ], - [ - "do you have any restaurant recommendations", - "restaurant_suggestion" - ], - [ - "where should we eat tonight", - "restaurant_suggestion" - ], - [ - "where are the best places to eat", - "restaurant_suggestion" - ], - [ - "are there any vegan restaurants in my town", - "restaurant_suggestion" - ], - [ - "list a few pizza places that have seating near my current location", - "restaurant_suggestion" - ], - [ - "are there decent seafood restaurants in portland", - "restaurant_suggestion" - ], - [ - "name a few good steakhouses in chicago", - "restaurant_suggestion" - ], - [ - "does brooklyn have good italian restaurants", - "restaurant_suggestion" - ], - [ - "i would love to find a few vegan restaurants in back bay", - "restaurant_suggestion" - ], - [ - "suggest a few local eateries in mid price range", - "restaurant_suggestion" - ], - [ - "i feel like going out for sushi tonight who in the area serves good sushi", - "restaurant_suggestion" - ], - [ - "i am looking for good southeast asian restaurants in philadelphia", - "restaurant_suggestion" - ], - [ - "i want to eat mediterranean fare with at least four stars, near me", - "restaurant_suggestion" - ], - [ - "what are some good ethiopian restaurants in queens", - "restaurant_suggestion" - ], - [ - "what are some good itialian restaurants in north salem", - "restaurant_suggestion" - ], - [ - "what are some good vegan restaurants in broadripple", - "restaurant_suggestion" - ], - [ - "what are some good mexican restaurants in indianapolis", - "restaurant_suggestion" - ], - [ - "what are some good southern bbq restaurants in nashville", - "restaurant_suggestion" - ], - [ - "whats the reward balance for my visa", - "rewards_balance" - ], - [ - "for my visa what's my reward balance", - "rewards_balance" - ], - [ - "i need know know the reward balance for my visa", - "rewards_balance" - ], - [ - "can you tell me my visa's reward balance", - "rewards_balance" - ], - [ - "what's my visa cards balance for rewards", - "rewards_balance" - ], - [ - "how many points do i have with my american express", - "rewards_balance" - ], - [ - "tell me the points on my delta rewards card", - "rewards_balance" - ], - [ - "how many points on my chase unlimited card", - "rewards_balance" - ], - [ - "what is my kohls card's rewards balance", - "rewards_balance" - ], - [ - "what is my gymboree card's rewards balance", - "rewards_balance" - ], - [ - "what is my old navy card's rewards balance", - "rewards_balance" - ], - [ - "how do i check my rewards for my maurices card", - "rewards_balance" - ], - [ - "how do i check my rewards for my chase card", - "rewards_balance" - ], - [ - "what is my amazon card's rewards balance", - "rewards_balance" - ], - [ - "how do i check my rewards for my old navy card", - "rewards_balance" - ], - [ - "what is my maurices card's rewards balance", - "rewards_balance" - ], - [ - "how do i check my rewards for my capital one card", - "rewards_balance" - ], - [ - "how do i check my rewards for my target card", - "rewards_balance" - ], - [ - "how many points have i earned with my amex card", - "rewards_balance" - ], - [ - "how many points have i earned with my chase card", - "rewards_balance" - ], - [ - "can you assist with my utility bill payment", - "pay_bill" - ], - [ - "my utility bill is coming due and i need a loan", - "pay_bill" - ], - [ - "can i get some funds to pay my utility bill", - "pay_bill" - ], - [ - "i will require help to take care of my utility bill", - "pay_bill" - ], - [ - "i want assistance with my utility bill", - "pay_bill" - ], - [ - "tell me if you can help pay a bill", - "pay_bill" - ], - [ - "pay a bill!", - "pay_bill" - ], - [ - "i want to pay a bill", - "pay_bill" - ], - [ - "pay my monthy mortgage payment", - "pay_bill" - ], - [ - "submit payment to duke energy for my electric bill", - "pay_bill" - ], - [ - "make a quarterly payment on my life insurance premium", - "pay_bill" - ], - [ - "i need to pay my time warner cable bill", - "pay_bill" - ], - [ - "submit full payment to chase for my visa bill", - "pay_bill" - ], - [ - "please pay my utility bill from my wells fargo checking account", - "pay_bill" - ], - [ - "pay my water bill from my chase account please", - "pay_bill" - ], - [ - "pay my dte bill from my checking account please", - "pay_bill" - ], - [ - "use my boa account to pay the cable bill", - "pay_bill" - ], - [ - "use my savings account to pay xfinity", - "pay_bill" - ], - [ - "i want to pay my cable bill directly from my checking account", - "pay_bill" - ], - [ - "pay my cable bill directly from my checking account", - "pay_bill" - ], - [ - "could you tell me what kind of money i've recently spent", - "spending_history" - ], - [ - "how much have i spent lately", - "spending_history" - ], - [ - "how much have i recently spent", - "spending_history" - ], - [ - "how much money have i recently spent on stuff", - "spending_history" - ], - [ - "how much did i spend on shcool due last year", - "spending_history" - ], - [ - "how much did i spend on bills last month", - "spending_history" - ], - [ - "did i buy too many donuts recently, like last week", - "spending_history" - ], - [ - "did i spend too much dough on donuts last week", - "spending_history" - ], - [ - "have i been spending excessively on donuts recently", - "spending_history" - ], - [ - "was i spending too much money on doughnuts last week", - "spending_history" - ], - [ - "have i spent too much of my paycheck on donuts lately", - "spending_history" - ], - [ - "how much money did i spent on grocery recently", - "spending_history" - ], - [ - "how much did i spend on grocery shopping recently", - "spending_history" - ], - [ - "can you tell me how much i spent on grocery shopping recently", - "spending_history" - ], - [ - "tell me how much i have spent on grocery shopping just now", - "spending_history" - ], - [ - "would you mind telling me how much i have spent recently on grocery shopping", - "spending_history" - ], - [ - "how much have i spent on shoes recently", - "spending_history" - ], - [ - "how much have i spent on groceries recently", - "spending_history" - ], - [ - "how much have i spent on eating out recently", - "spending_history" - ], - [ - "how much have i spent on make up recently", - "spending_history" - ], - [ - "will i be permitted to take my vacation", - "pto_request_status" - ], - [ - "what's the status of my vacation days", - "pto_request_status" - ], - [ - "did i get approval yet to take off next week", - "pto_request_status" - ], - [ - "has my vacation been okayed yet", - "pto_request_status" - ], - [ - "has my maternity leave been approved", - "pto_request_status" - ], - [ - "did my vacation get approved yet", - "pto_request_status" - ], - [ - "what's the status of my medical leave", - "pto_request_status" - ], - [ - "what's the status on my vacation approval", - "pto_request_status" - ], - [ - "when will my vacation get okayed", - "pto_request_status" - ], - [ - "am i cleared to miss work for vacation", - "pto_request_status" - ], - [ - "check if my vacation time has been approved", - "pto_request_status" - ], - [ - "has my request for time off been approved", - "pto_request_status" - ], - [ - "look up the status of my time off request", - "pto_request_status" - ], - [ - "what is the status of my vacation time request", - "pto_request_status" - ], - [ - "i would really like to know if i can go on vacation", - "pto_request_status" - ], - [ - "i was wondering about the vacation time you said you'll approve", - "pto_request_status" - ], - [ - "hey, have you approved my vacation time yet", - "pto_request_status" - ], - [ - "can you tell me whether or not you approved my vacation time", - "pto_request_status" - ], - [ - "has my request for vacation time been approved", - "pto_request_status" - ], - [ - "please tell me if there's been any word on my vacation request", - "pto_request_status" - ], - [ - "please lookup my experion credit score", - "credit_score" - ], - [ - "look up my fico credit score", - "credit_score" - ], - [ - "relate to me what my credit score is", - "credit_score" - ], - [ - "can you share my credit score with me", - "credit_score" - ], - [ - "what's my current credit score", - "credit_score" - ], - [ - "where do i go to look at my credit score", - "credit_score" - ], - [ - "what's my credit rating right now", - "credit_score" - ], - [ - "who tracks my credit score", - "credit_score" - ], - [ - "how bad is my current credit score", - "credit_score" - ], - [ - "what's my current credit rating", - "credit_score" - ], - [ - "where's my credit score", - "credit_score" - ], - [ - "how is my credit looking", - "credit_score" - ], - [ - "how do i locate my credit rating", - "credit_score" - ], - [ - "do you know what my precise credit score is", - "credit_score" - ], - [ - "how can i request my credit score", - "credit_score" - ], - [ - "do you know my credit rating number", - "credit_score" - ], - [ - "is my credit good enough to get a new card", - "credit_score" - ], - [ - "how high is my credit score", - "credit_score" - ], - [ - "can you tell me my credit rating", - "credit_score" - ], - [ - "what's my latest credit score", - "credit_score" - ], - [ - "who has the best credit card offering for a college student", - "new_card" - ], - [ - "can you suggest a few credit cards that have good rewards points", - "new_card" - ], - [ - "i would like to know more about getting a new credit card", - "new_card" - ], - [ - "who should i apply for a credit card for", - "new_card" - ], - [ - "tell me how i can apply for a chase credit card", - "new_card" - ], - [ - "tell me about the chase credit card application process", - "new_card" - ], - [ - "i want to apply for a wells fargo credit card", - "new_card" - ], - [ - "how do i go about applying for a macy's credit card", - "new_card" - ], - [ - "i want to put in an application for a line of a credit card how do i do that", - "new_card" - ], - [ - "i want to apply for a new credit card", - "new_card" - ], - [ - "i need a new credit card, show me suggestions", - "new_card" - ], - [ - "i need to apply for a new credit card that will match my needs", - "new_card" - ], - [ - "show me some options for new credit cards that i can apply for, please", - "new_card" - ], - [ - "what new credit card should i submit an application for", - "new_card" - ], - [ - "can i apply for a paypal master card", - "new_card" - ], - [ - "where can i apply for a black amex card", - "new_card" - ], - [ - "how would i apply for an american express", - "new_card" - ], - [ - "what do i need to do to apply for a visa card", - "new_card" - ], - [ - "how does one apply for a master card", - "new_card" - ], - [ - "assist me in getting a new credit card", - "new_card" - ], - [ - "who do i contact for lost luggage", - "lost_luggage" - ], - [ - "where is my luggage", - "lost_luggage" - ], - [ - "who can i call about my luggage", - "lost_luggage" - ], - [ - "howcan i locate my luggage", - "lost_luggage" - ], - [ - "i think i lost my luggage", - "lost_luggage" - ], - [ - "what to do if i lost my luggage", - "lost_luggage" - ], - [ - "what do i do if my luggage is lost", - "lost_luggage" - ], - [ - "what should i do if i lost my luggage", - "lost_luggage" - ], - [ - "i think my luggage is stolen", - "lost_luggage" - ], - [ - "what do i do if i lost my luggage", - "lost_luggage" - ], - [ - "what can i do if i lost my luggage", - "lost_luggage" - ], - [ - "my luggage is missing", - "lost_luggage" - ], - [ - "i think my luggage is missing", - "lost_luggage" - ], - [ - "my luggage is lost", - "lost_luggage" - ], - [ - "i was flying out of chicago on american airlines flight ab123 and my luggage is now lost", - "lost_luggage" - ], - [ - "my luggage is missing off of american airlines flight ab123 out of chicago", - "lost_luggage" - ], - [ - "what am i supposed to do if i lost my luggage", - "lost_luggage" - ], - [ - "what is the procedure if i lost my luggage", - "lost_luggage" - ], - [ - "what steps should i follow if i lost my luggage", - "lost_luggage" - ], - [ - "where do i report if i lost my luggage", - "lost_luggage" - ], - [ - "i want to hear that again", - "repeat" - ], - [ - "repeat that for me", - "repeat" - ], - [ - "could that be repeated", - "repeat" - ], - [ - "can you repeat what you said", - "repeat" - ], - [ - "i did not hear what you said", - "repeat" - ], - [ - "what did you just ask", - "repeat" - ], - [ - "can you ask me that again", - "repeat" - ], - [ - "what question did you just ask me", - "repeat" - ], - [ - "can you repeat that question", - "repeat" - ], - [ - "what was said", - "repeat" - ], - [ - "what", - "repeat" - ], - [ - "repeat that once more", - "repeat" - ], - [ - "please repeat what you said", - "repeat" - ], - [ - "please ask me again", - "repeat" - ], - [ - "i'm sorry, i didn't understand what you said", - "repeat" - ], - [ - "what did you ask again", - "repeat" - ], - [ - "please say that again", - "repeat" - ], - [ - "can you repeat that please", - "repeat" - ], - [ - "what was that question again", - "repeat" - ], - [ - "i'm sorry please repeat the question", - "repeat" - ], - [ - "how well is the gas mileage while i'm in the city", - "mpg" - ], - [ - "how's my gas mileage in citys", - "mpg" - ], - [ - "what kind of miles per gallon do i get while driving through a city", - "mpg" - ], - [ - "what kind of gas mileage does this car get when going through a city", - "mpg" - ], - [ - "how's my gas mileage while driving through a city", - "mpg" - ], - [ - "how many miles per gallon does my amc rambler get", - "mpg" - ], - [ - "what's the gas mileage on a juke", - "mpg" - ], - [ - "what is the gas mileage on a 2012 ford fusion", - "mpg" - ], - [ - "how many mpg does an equinox get", - "mpg" - ], - [ - "what is the gas mileage on a ford falcon", - "mpg" - ], - [ - "how many miles does this car get per gallon", - "mpg" - ], - [ - "what is the mpg for this car", - "mpg" - ], - [ - "i need to know this car's mpg", - "mpg" - ], - [ - "how many miles will i get for one gallon on this car", - "mpg" - ], - [ - "i would like to know the mpg for this car", - "mpg" - ], - [ - "what's the mpg of my car", - "mpg" - ], - [ - "get me info on my mpg", - "mpg" - ], - [ - "tell me the mpg of my vehicle", - "mpg" - ], - [ - "how many mpg does my car get", - "mpg" - ], - [ - "what's the mpg rating on my car", - "mpg" - ], - [ - "when is it time to change your oil", - "oil_change_when" - ], - [ - "how do you know if your oil needs changed", - "oil_change_when" - ], - [ - "can you tell me when i should change my oil", - "oil_change_when" - ], - [ - "when should i change my oil", - "oil_change_when" - ], - [ - "how long does it take before you have to change your oil", - "oil_change_when" - ], - [ - "when does my oil need to be changed", - "oil_change_when" - ], - [ - "what is the schedule for my next oil change", - "oil_change_when" - ], - [ - "am i ready for an oil change soon", - "oil_change_when" - ], - [ - "when do i need to change my oil next", - "oil_change_when" - ], - [ - "when do i need to change my motor oil again", - "oil_change_when" - ], - [ - "when do i need to change my motor oil", - "oil_change_when" - ], - [ - "when do i need to change my motor oil next", - "oil_change_when" - ], - [ - "so when should i change the oil", - "oil_change_when" - ], - [ - "when i should change oil", - "oil_change_when" - ], - [ - "when should change oil tell me please", - "oil_change_when" - ], - [ - "tell me when i should change me oil", - "oil_change_when" - ], - [ - "i need to know when to change oil", - "oil_change_when" - ], - [ - "how long until my oil needs to be changed", - "oil_change_when" - ], - [ - "when will my car need new oil", - "oil_change_when" - ], - [ - "at the point when should i get my oil changed straightaway", - "oil_change_when" - ], - [ - "that's definitely true", - "yes" - ], - [ - "yup, that's true", - "yes" - ], - [ - "yes, that is true for sure", - "yes" - ], - [ - "i know that is true", - "yes" - ], - [ - "true, most definitely", - "yes" - ], - [ - "facts", - "yes" - ], - [ - "you are not wrong about that", - "yes" - ], - [ - "that makes sense as well", - "yes" - ], - [ - "you are correct", - "yes" - ], - [ - "agreed", - "yes" - ], - [ - "accepted", - "yes" - ], - [ - "confirmed", - "yes" - ], - [ - "approved", - "yes" - ], - [ - "i want you to know it's a true statement", - "yes" - ], - [ - "i know that the statement is true", - "yes" - ], - [ - "this is a true statement", - "yes" - ], - [ - "the statement is true", - "yes" - ], - [ - "i'm telling you this is a true statement", - "yes" - ], - [ - "that's a yes", - "yes" - ], - [ - "affirmitive", - "yes" - ], - [ - "what's the best place to visit in arizona", - "travel_suggestion" - ], - [ - "what's the best restaurant in arizona for pizza", - "travel_suggestion" - ], - [ - "what are popular mountains to hike in arizona", - "travel_suggestion" - ], - [ - "do you think arizona has plenty of bike routes", - "travel_suggestion" - ], - [ - "find the favorite destination for traveling this year", - "travel_suggestion" - ], - [ - "can you suggest some of the most popular travel destination", - "travel_suggestion" - ], - [ - "what is there to do in craberra", - "travel_suggestion" - ], - [ - "give me location for tourist destination in bangkok", - "travel_suggestion" - ], - [ - "i want to know about tourist places for bangkok", - "travel_suggestion" - ], - [ - "i want list of tourist destination for paris", - "travel_suggestion" - ], - [ - "i want to know where to visit in bangkok", - "travel_suggestion" - ], - [ - "i would like to find a list of cool things recommended for tourists in copenhagen, denmark", - "travel_suggestion" - ], - [ - "i need some recommendations for fun tourist activities in washington, dc", - "travel_suggestion" - ], - [ - "what are some exciting things that are a must do for tourists visiting sedona", - "travel_suggestion" - ], - [ - "please do a search for entertaining activities for tourists in mexico city", - "travel_suggestion" - ], - [ - "can you give me some fun suggestions for tourists to check out in las vegas, please", - "travel_suggestion" - ], - [ - "in seoul, what things can i do", - "travel_suggestion" - ], - [ - "what to do in minneapolis", - "travel_suggestion" - ], - [ - "what can i do in hong kong", - "travel_suggestion" - ], - [ - "what's a good place to vacation", - "travel_suggestion" - ], - [ - "what is covered under my insurance", - "insurance" - ], - [ - "what benefits do i have for insurance", - "insurance" - ], - [ - "what is my insurance coverage", - "insurance" - ], - [ - "which insurance do i have", - "insurance" - ], - [ - "what kind of insurance do i have", - "insurance" - ], - [ - "what insurance do i have", - "insurance" - ], - [ - "which insurance plan do i have", - "insurance" - ], - [ - "what is the name of the insurance plan i am enrolled in", - "insurance" - ], - [ - "i am enrolled in what insurance plan", - "insurance" - ], - [ - "what is the insurance plan i am enrolled in", - "insurance" - ], - [ - "i am enrolled in an insurance plan and need to know what it is", - "insurance" - ], - [ - "i enrolled in an insurance plan, what one was it", - "insurance" - ], - [ - "which was my insurance plan again", - "insurance" - ], - [ - "what insurance plan do i have", - "insurance" - ], - [ - "how is my insurance coverage", - "insurance" - ], - [ - "my insurance plan is what", - "insurance" - ], - [ - "what plan am i paying for", - "insurance" - ], - [ - "do you know my health benefits", - "insurance" - ], - [ - "what are my health benefits like", - "insurance" - ], - [ - "could you list my health benefits", - "insurance" - ], - [ - "can you cancel my todo list please", - "todo_list_update" - ], - [ - "wipe my todo list please", - "todo_list_update" - ], - [ - "can you delete my todo list please", - "todo_list_update" - ], - [ - "remove my todo list", - "todo_list_update" - ], - [ - "please delete my todo list", - "todo_list_update" - ], - [ - "can you add laundry to my to do list", - "todo_list_update" - ], - [ - "put laundry on my chore list", - "todo_list_update" - ], - [ - "erase my to do list", - "todo_list_update" - ], - [ - "i need to do laundry later today", - "todo_list_update" - ], - [ - "put laundry on my list of things to do", - "todo_list_update" - ], - [ - "clear my to do list", - "todo_list_update" - ], - [ - "erase the items on my to do list", - "todo_list_update" - ], - [ - "i'm finished with my to do list", - "todo_list_update" - ], - [ - "i need laundry to be put on my list of things to do", - "todo_list_update" - ], - [ - "please delete the items on my to do list", - "todo_list_update" - ], - [ - "remind me to wash the dog, put on list of things to do", - "todo_list_update" - ], - [ - "add to my list of things to do: wash the dog", - "todo_list_update" - ], - [ - "please put wash the dog on my list of things to do", - "todo_list_update" - ], - [ - "put wash the dog on my to do list please", - "todo_list_update" - ], - [ - "add wash the dog to my list of things to do", - "todo_list_update" - ], - [ - "please read my reminder list", - "reminder" - ], - [ - "read my reminder list back to me", - "reminder" - ], - [ - "i want you to read my reminder list to me", - "reminder" - ], - [ - "i want to hear my reminder list", - "reminder" - ], - [ - "read my reminder list to me please", - "reminder" - ], - [ - "i wanted to remember somethings, what was it", - "reminder" - ], - [ - "list the things i wanted to remember", - "reminder" - ], - [ - "recall the things i wanted to remember", - "reminder" - ], - [ - "what were those things i wanted to remember", - "reminder" - ], - [ - "what was it i wanted to remember", - "reminder" - ], - [ - "what does my running list of stuff to do list", - "reminder" - ], - [ - "what is on my to do list", - "reminder" - ], - [ - "what is my plan for the day", - "reminder" - ], - [ - "what are the things i wanted to recall", - "reminder" - ], - [ - "what things did i not want to forget", - "reminder" - ], - [ - "what is it i wanted to bear in mind", - "reminder" - ], - [ - "what are the things that i wanted to keep in mind", - "reminder" - ], - [ - "tell me my reminder list", - "reminder" - ], - [ - "whats on my reminder list, read back", - "reminder" - ], - [ - "read all my reminders", - "reminder" - ], - [ - "can you speak more slowly", - "change_speed" - ], - [ - "please talk a bit faster", - "change_speed" - ], - [ - "can you slow down your rate of speech", - "change_speed" - ], - [ - "please talk slower for me if you can", - "change_speed" - ], - [ - "please speak to me quicker from now on", - "change_speed" - ], - [ - "can you slow down the rate at which you talk", - "change_speed" - ], - [ - "talk to me in a speedier manner from here on out", - "change_speed" - ], - [ - "can you permanently talk faster", - "change_speed" - ], - [ - "speed up your rate of speech", - "change_speed" - ], - [ - "can you raise your speaking speed", - "change_speed" - ], - [ - "please speak faster", - "change_speed" - ], - [ - "don't talk so slow", - "change_speed" - ], - [ - "would you talk a bit faster instead", - "change_speed" - ], - [ - "speed your speech up", - "change_speed" - ], - [ - "go ahead and talk faster now", - "change_speed" - ], - [ - "talk faster than that", - "change_speed" - ], - [ - "please talk faster", - "change_speed" - ], - [ - "could you speed up your speech", - "change_speed" - ], - [ - "could you speak faster", - "change_speed" - ], - [ - "could you talk a little faster", - "change_speed" - ], - [ - "i need you to check the air levels in my tires and let me know if i have enough in them", - "tire_pressure" - ], - [ - "check my tires' air levels please", - "tire_pressure" - ], - [ - "please check my tires and let me know if i have sufficient air in them", - "tire_pressure" - ], - [ - "do my tires have enough air in them", - "tire_pressure" - ], - [ - "can you check and tell me if my tires have enough air", - "tire_pressure" - ], - [ - "what is the car's tire pressure", - "tire_pressure" - ], - [ - "what is the tire pressure of the car", - "tire_pressure" - ], - [ - "how is the car tire pressure doing", - "tire_pressure" - ], - [ - "how is the car's tire pressure", - "tire_pressure" - ], - [ - "is my tire pressure good", - "tire_pressure" - ], - [ - "how is my tire pressure", - "tire_pressure" - ], - [ - "is my tire pressure okay on my car", - "tire_pressure" - ], - [ - "how much air pressure is in my tires", - "tire_pressure" - ], - [ - "what is my tire pressure", - "tire_pressure" - ], - [ - "do my car tires have enough psi in them", - "tire_pressure" - ], - [ - "can you tell me how much air are in my car tires", - "tire_pressure" - ], - [ - "please give me the amount of pressure in my car tires", - "tire_pressure" - ], - [ - "how much psi is in my car tires", - "tire_pressure" - ], - [ - "what is the air pressure of my car tires", - "tire_pressure" - ], - [ - "how much air are in my tires", - "tire_pressure" - ], - [ - "ill pass", - "no" - ], - [ - "not happening", - "no" - ], - [ - "no, that is fake", - "no" - ], - [ - "hell nah", - "no" - ], - [ - "no, that is invalid", - "no" - ], - [ - "i would prefer not", - "no" - ], - [ - "thats a negative", - "no" - ], - [ - "i meant no", - "no" - ], - [ - "i am saying no", - "no" - ], - [ - "that is not factual", - "no" - ], - [ - "no, that is not correct", - "no" - ], - [ - "i do not think that is proper", - "no" - ], - [ - "no good", - "no" - ], - [ - "negatory", - "no" - ], - [ - "invalid", - "no" - ], - [ - "absolutely not", - "no" - ], - [ - "certainly not", - "no" - ], - [ - "no, that's wrong", - "no" - ], - [ - "no, that's not it", - "no" - ], - [ - "no, that's not right", - "no" - ], - [ - "is the apr on my card that ends 1234 what it should be based on my credit score", - "apr" - ], - [ - "on my citi card, the one that ends 1234, what's the apr", - "apr" - ], - [ - "has the apr on my card changed and what is it now", - "apr" - ], - [ - "let me know my card's apr", - "apr" - ], - [ - "can you tell me the status of my card's apr", - "apr" - ], - [ - "what is the apr on my citibank card", - "apr" - ], - [ - "how good is my card's apr", - "apr" - ], - [ - "what is the apr on my first bank card account", - "apr" - ], - [ - "what is the apr on my chase card", - "apr" - ], - [ - "what is my card's apr", - "apr" - ], - [ - "what is the apr on my american express", - "apr" - ], - [ - "i want to know the apr on my capital one card", - "apr" - ], - [ - "how does my card's apr compare to others", - "apr" - ], - [ - "is my card's apr good", - "apr" - ], - [ - "can you tell me how good my card's apr is", - "apr" - ], - [ - "what is my card's apr and is it good", - "apr" - ], - [ - "what is a good apr", - "apr" - ], - [ - "is my apr high", - "apr" - ], - [ - "what does my credit card charge for their annual percentage rate", - "apr" - ], - [ - "do you know the apr on my chase credit card", - "apr" - ], - [ - "how healthy is shepard's pie", - "nutrition_info" - ], - [ - "how healthy is pecan pie", - "nutrition_info" - ], - [ - "how healthy is hummus", - "nutrition_info" - ], - [ - "how healthy is salad", - "nutrition_info" - ], - [ - "how healthy is pumpkin pie", - "nutrition_info" - ], - [ - "is chocolate good for you", - "nutrition_info" - ], - [ - "tell me how health chocolate is", - "nutrition_info" - ], - [ - "what is the nutritional info for kraft mac 'n' cheese", - "nutrition_info" - ], - [ - "is chocolate bad for you or good for you", - "nutrition_info" - ], - [ - "can you tell me the nutrional info of a big mac", - "nutrition_info" - ], - [ - "are french fries health or not", - "nutrition_info" - ], - [ - "tell me the nutrional info of a regular banana", - "nutrition_info" - ], - [ - "read me the nutrional info of a bag of lay's potato chips", - "nutrition_info" - ], - [ - "pull up the nutrional info of a 12 oz coke", - "nutrition_info" - ], - [ - "is chocolate healthy", - "nutrition_info" - ], - [ - "tell me how many much fat is in the hamburger", - "nutrition_info" - ], - [ - "what is the nutrition information for shrimp scampi", - "nutrition_info" - ], - [ - "how many grams of sodium are in potato chips", - "nutrition_info" - ], - [ - "is rice good for me", - "nutrition_info" - ], - [ - "is raw carrot healthy to eat", - "nutrition_info" - ], - [ - "what is tuesday's calendar like", - "calendar" - ], - [ - "can you check what is on my calendar for tuesday", - "calendar" - ], - [ - "check what's on my calendar for tuesday", - "calendar" - ], - [ - "what is tuesday like on my calendar", - "calendar" - ], - [ - "what appointments do i have tomorrow after 1:00pm", - "calendar" - ], - [ - "what is the date of my next scheduled dentist appointment", - "calendar" - ], - [ - "do i have anything scheduled on my calendar for next tuesday", - "calendar" - ], - [ - "what do i have going on for 12/03/2019", - "calendar" - ], - [ - "where do i have to be on 12/03/2019", - "calendar" - ], - [ - "do i have plans on 12/03/2019", - "calendar" - ], - [ - "what's my schedule like for thursday the 14th", - "calendar" - ], - [ - "does my calendar show anything for thursday the 14th", - "calendar" - ], - [ - "do i have anything scheduled for thursday the 14th", - "calendar" - ], - [ - "can you tell me what my calendar is like for thursday the 14th", - "calendar" - ], - [ - "what appointments do i have on thursday the 14th", - "calendar" - ], - [ - "is my day open for march 4th 2019", - "calendar" - ], - [ - "is anything happening on march 4th 2019", - "calendar" - ], - [ - "are there any active events for march 4th 2019", - "calendar" - ], - [ - "check my calendar for march 4th 2019, please", - "calendar" - ], - [ - "read back my day for march 4th 2019", - "calendar" - ], - [ - "i need you to schedule an uber pickup for me and three other people at 7pm to go to abe's pizza", - "uber" - ], - [ - "send me an uber to arrive at 5pm at my house and there will be two people going to scully's downtown", - "uber" - ], - [ - "send me an uber now for four people and we are going to appleby's downtown", - "uber" - ], - [ - "i need an uber ride to come and pick me up now at work", - "uber" - ], - [ - "can you find me an uber and have it here at 7pm", - "uber" - ], - [ - "call me an uber please, and make it for four people to go downtown", - "uber" - ], - [ - "i need an uber to come to my work at 5pm for three people going to the cineplex downtown", - "uber" - ], - [ - "are there any ubers available in my area right now", - "uber" - ], - [ - "schedule an uber to pick me up at home in an hour", - "uber" - ], - [ - "call an uber and have it pick me up at my present location", - "uber" - ], - [ - "connect me with an uber", - "uber" - ], - [ - "please call an uber for me", - "uber" - ], - [ - "i need to obtain and uber", - "uber" - ], - [ - "is there an uber going to downtown", - "uber" - ], - [ - "book uber from here to downtown", - "uber" - ], - [ - "uber ride available from here to downtown", - "uber" - ], - [ - "look up uber to downtown", - "uber" - ], - [ - "find me an uber to downtown", - "uber" - ], - [ - "are there any ubers available for two people i need it to go to the stadium on grand", - "uber" - ], - [ - "can you get uber for two people going to 27 moss lane", - "uber" - ], - [ - "help me solve this math equation", - "calculator" - ], - [ - "i need your assistance to solve this math problem", - "calculator" - ], - [ - "can you multiply 45 by 23", - "calculator" - ], - [ - "can you divide 100 by 20", - "calculator" - ], - [ - "can you subract 36 from 5", - "calculator" - ], - [ - "can you add 5 and 89", - "calculator" - ], - [ - "multiply 7 and 42", - "calculator" - ], - [ - "what is the sum of 3, 7, 9, and 24", - "calculator" - ], - [ - "add up 8 and 7", - "calculator" - ], - [ - "what is the square root of 888", - "calculator" - ], - [ - "what is 87 divided by 4", - "calculator" - ], - [ - "what is the square root of 8814", - "calculator" - ], - [ - "what is 89 divided by 3", - "calculator" - ], - [ - "what is 13 times 57", - "calculator" - ], - [ - "can you tell me the square root of pi", - "calculator" - ], - [ - "what is 543 times 344", - "calculator" - ], - [ - "what is seventeen plus three", - "calculator" - ], - [ - "what is the derivative of x squared plus 5", - "calculator" - ], - [ - "can you factor x squared plus 4 x plus 4", - "calculator" - ], - [ - "is 126 divisible by 8", - "calculator" - ], - [ - "give me the date", - "date" - ], - [ - "tell me the date", - "date" - ], - [ - "which day is it today", - "date" - ], - [ - "what day of the week are we on", - "date" - ], - [ - "in 4 days, what date will it be", - "date" - ], - [ - "would you let me know what date it will be in 3 days", - "date" - ], - [ - "tell me the date it will be 5 days from now", - "date" - ], - [ - "would you let me know today's date", - "date" - ], - [ - "i need to know the date it will be 4 days from now", - "date" - ], - [ - "let me know what date it will be in 3 days", - "date" - ], - [ - "let me know what today's date is", - "date" - ], - [ - "i would like to get today's date", - "date" - ], - [ - "what date will it be 8 days from now", - "date" - ], - [ - "what date will it be 9 days from now", - "date" - ], - [ - "what date will it be 6 days from now", - "date" - ], - [ - "what date will it be 5 days from now", - "date" - ], - [ - "what date will it be 7 days from now", - "date" - ], - [ - "tell me what today's date is", - "date" - ], - [ - "is today monday", - "date" - ], - [ - "what is the current date", - "date" - ], - [ - "can i take more than one carry on", - "carry_on" - ], - [ - "does more than one carry on cost extra at ryanair", - "carry_on" - ], - [ - "does spirit allow more than one carry on", - "carry_on" - ], - [ - "are more than one carry on allowed at klm", - "carry_on" - ], - [ - "will jet blue allow more than one carry on", - "carry_on" - ], - [ - "whats the policy for delta for carry ons", - "carry_on" - ], - [ - "what's the carry on policy for delta", - "carry_on" - ], - [ - "can you tell me delta's carry on policy", - "carry_on" - ], - [ - "what's delta's carry on policy", - "carry_on" - ], - [ - "i would like to know delta's carry on policy", - "carry_on" - ], - [ - "what are carry-on rules for jet blue", - "carry_on" - ], - [ - "i'm flying delta and need to know the carry-on rules", - "carry_on" - ], - [ - "what are united's carry-on rules", - "carry_on" - ], - [ - "what rules does southwest have for carry-on luggage", - "carry_on" - ], - [ - "look up carry-on rules for american airlines", - "carry_on" - ], - [ - "i want know about carry-on for frontier", - "carry_on" - ], - [ - "tell me carry-on info for united", - "carry_on" - ], - [ - "i would like to know carry-on information for delta", - "carry_on" - ], - [ - "can you give me the carry-on rules for american airlines", - "carry_on" - ], - [ - "how many carry ons can i take with spirit, going to tampa", - "carry_on" - ], - [ - "how many days off have i used", - "pto_used" - ], - [ - "what is the total day off have i taken", - "pto_used" - ], - [ - "what is the amount of pto have i use", - "pto_used" - ], - [ - "let me know how many vacation have i utilized", - "pto_used" - ], - [ - "how many days have i taken off", - "pto_used" - ], - [ - "how much pto have i used so far", - "pto_used" - ], - [ - "can you tell me how many vacation days have i taken", - "pto_used" - ], - [ - "what is the amount of vacation day i have used", - "pto_used" - ], - [ - "can you tell me how much pto have i use", - "pto_used" - ], - [ - "let me know the amount of vacation days i have used", - "pto_used" - ], - [ - "how much pto have i used", - "pto_used" - ], - [ - "what is the amount of pto have i used", - "pto_used" - ], - [ - "how many vacation and sick days have i taken", - "pto_used" - ], - [ - "how many days have i used", - "pto_used" - ], - [ - "how much vacation days have i used", - "pto_used" - ], - [ - "my day offs history", - "pto_used" - ], - [ - "how many day off i have taken", - "pto_used" - ], - [ - "how many of my off days have i run through for the year thus far", - "pto_used" - ], - [ - "remind me of how days i had off so far for the year", - "pto_used" - ], - [ - "can you tell how many days i already took off this year", - "pto_used" - ], - [ - "i'd like an appointment at your earliest availability for an oil change", - "schedule_maintenance" - ], - [ - "could you book me an appointment for an oil change", - "schedule_maintenance" - ], - [ - "i'd like to make an appointment to get my oil changed", - "schedule_maintenance" - ], - [ - "i'd like to book the next availability for an oil change", - "schedule_maintenance" - ], - [ - "can i make an appointment for an oil change", - "schedule_maintenance" - ], - [ - "schedule an appointment for a tire check for me", - "schedule_maintenance" - ], - [ - "make me an appointment for a tire check", - "schedule_maintenance" - ], - [ - "can i make an appointment to get my tires checked", - "schedule_maintenance" - ], - [ - "can you please make an appointment for me to get my tires checked out", - "schedule_maintenance" - ], - [ - "schedule me an appointment to get my tires checked out", - "schedule_maintenance" - ], - [ - "can you help me find someone to look at my car's engine because the light is on", - "schedule_maintenance" - ], - [ - "i need to arrange an appointment to have my car's tires examined", - "schedule_maintenance" - ], - [ - "my car needs maintenance but i don't know if i can schedule an appointment for that", - "schedule_maintenance" - ], - [ - "is there any way to change the date of my oil change", - "schedule_maintenance" - ], - [ - "my car's tires are due to be looked at, can you help me get an appointment for that", - "schedule_maintenance" - ], - [ - "find out where i can schedule to get my car's tires checked", - "schedule_maintenance" - ], - [ - "i need to get an appointment for car maintenance", - "schedule_maintenance" - ], - [ - "help me schedule maintenance for my car", - "schedule_maintenance" - ], - [ - "help me find somewhere to schedule a check up on my car's tires", - "schedule_maintenance" - ], - [ - "find me someone who can deal with my car's illuminated check engine light", - "schedule_maintenance" - ], - [ - "i'm going to be in canada from october 23rd to november 2nd, so can i let my bank know", - "travel_notification" - ], - [ - "let my bank know i'm going to be in russia for a month", - "travel_notification" - ], - [ - "get a message to my bank that starting the 14th i'll be in canada", - "travel_notification" - ], - [ - "tell my bank that i'm travelling to france in 2 days", - "travel_notification" - ], - [ - "tell my bank i'll be in cuba beginning the 2nd", - "travel_notification" - ], - [ - "alert my financial institution that i will be traveling to bangkok on april 2 and returning on april 7", - "travel_notification" - ], - [ - "on tuesday i will be leaving for tennessee and will not be returning until the twenty ninth, alert my bank of this", - "travel_notification" - ], - [ - "my bank needs to be aware of my trip to spain", - "travel_notification" - ], - [ - "i am going to spain in the future and my bank needs to know this information", - "travel_notification" - ], - [ - "my bank needs to know that i will be traveling to spain soon", - "travel_notification" - ], - [ - "my vacation to spain is coming up and i need my bank to know", - "travel_notification" - ], - [ - "i will be telling my bank of my upcoming trip to spain", - "travel_notification" - ], - [ - "from april to may i will be in america so i need to notify my bank", - "travel_notification" - ], - [ - "i will tell my bank that i will be gone from april to may to america", - "travel_notification" - ], - [ - "i need to let my bank know i will be in america from april to may", - "travel_notification" - ], - [ - "my back needs to be notified that i will be in american from april to may", - "travel_notification" - ], - [ - "i will be visiting america so i will need to let me bank know i will be gone from april to may", - "travel_notification" - ], - [ - "please note that i will be travelling internationally soon", - "travel_notification" - ], - [ - "let my bank know that i am going to tokyo", - "travel_notification" - ], - [ - "alert my bank and tell them that i will be in vermont", - "travel_notification" - ], - [ - "sync phone", - "sync_device" - ], - [ - "please pair my phone", - "sync_device" - ], - [ - "don't connect to my phone anymore", - "sync_device" - ], - [ - "i need you to pair with my phone please", - "sync_device" - ], - [ - "don't sync to my phone anymore", - "sync_device" - ], - [ - "sync with my phone", - "sync_device" - ], - [ - "disconnect from phone", - "sync_device" - ], - [ - "stop synching to my phone", - "sync_device" - ], - [ - "can you pair with my phone", - "sync_device" - ], - [ - "please pair with my phone", - "sync_device" - ], - [ - "disconnect sync from my phone", - "sync_device" - ], - [ - "unsync yourself from my phone please", - "sync_device" - ], - [ - "stop syncing with my phone", - "sync_device" - ], - [ - "i'd like you to pair with my phone", - "sync_device" - ], - [ - "i need you to pair with my phone", - "sync_device" - ], - [ - "don't sync with my phone", - "sync_device" - ], - [ - "pair with phone", - "sync_device" - ], - [ - "connect with my phone", - "sync_device" - ], - [ - "please add onto my phone", - "sync_device" - ], - [ - "put a device with my phone", - "sync_device" - ], - [ - "that you so much for the help", - "thank_you" - ], - [ - "thanks for helping me", - "thank_you" - ], - [ - "thanks for helping me out today", - "thank_you" - ], - [ - "thanks for the assist", - "thank_you" - ], - [ - "thank you for the help", - "thank_you" - ], - [ - "thanks for your help", - "thank_you" - ], - [ - "thank you for your help", - "thank_you" - ], - [ - "i'm thankful for your help", - "thank_you" - ], - [ - "i am glad that you did that", - "thank_you" - ], - [ - "i owe you one", - "thank_you" - ], - [ - "i appreciate you doing that", - "thank_you" - ], - [ - "appreciated", - "thank_you" - ], - [ - "i am happy you did that for me", - "thank_you" - ], - [ - "thanks, you've helped me", - "thank_you" - ], - [ - "thanks, i appreciate it", - "thank_you" - ], - [ - "i'm thankful", - "thank_you" - ], - [ - "you have my gratitude", - "thank_you" - ], - [ - "you've been a big help", - "thank_you" - ], - [ - "special thanks to you", - "thank_you" - ], - [ - "you have my sincere gratitude", - "thank_you" - ], - [ - "i would like you to roll a dice", - "roll_dice" - ], - [ - "please roll a 10 sided die and tell me what number it is", - "roll_dice" - ], - [ - "can you roll a dice for me", - "roll_dice" - ], - [ - "please roll a dice", - "roll_dice" - ], - [ - "roll a 6 sided die and tell me the result", - "roll_dice" - ], - [ - "can you roll a dice with 8 sides", - "roll_dice" - ], - [ - "can you roll a dice with 6 sides", - "roll_dice" - ], - [ - "roll a 10 sided dice", - "roll_dice" - ], - [ - "roll an 8 sided dice", - "roll_dice" - ], - [ - "roll a 6 sided dice", - "roll_dice" - ], - [ - "please roll this 8 sided dice", - "roll_dice" - ], - [ - "i want you to roll a 5 sided dice for me", - "roll_dice" - ], - [ - "give a 6 sided dice a roll for me", - "roll_dice" - ], - [ - "complete a roll on a 4 sided dice", - "roll_dice" - ], - [ - "i need a roll on a 6 sided dice", - "roll_dice" - ], - [ - "roll that dice", - "roll_dice" - ], - [ - "please roll that dice", - "roll_dice" - ], - [ - "roll the dice now", - "roll_dice" - ], - [ - "i need to make a quick decision, so roll a dice!", - "roll_dice" - ], - [ - "i need you to roll a dice that has six sides and tell me what it lands on", - "roll_dice" - ], - [ - "is my milk safe to drink after being in the refrigerator for a week", - "food_last" - ], - [ - "apple cider has been in my fridge for four months so can i still drink it", - "food_last" - ], - [ - "mayonaise has been in my fridge for three years, is it still good to eat", - "food_last" - ], - [ - "is cooked chicken still good after being refrigerated for two weeks", - "food_last" - ], - [ - "i have had farm fresh eggs in the fridge for a few months, are they still okay to ingest", - "food_last" - ], - [ - "how many days before milk expire", - "food_last" - ], - [ - "will rice be ok in the fridge for 3 days", - "food_last" - ], - [ - "is rice ok after 3 days in the refrigerator", - "food_last" - ], - [ - "after 3 days in the fridge is rice safe to eat", - "food_last" - ], - [ - "is rice bad after 3 days in fridge", - "food_last" - ], - [ - "can i keep rice in the fridge for 3 days", - "food_last" - ], - [ - "when does my milk expire", - "food_last" - ], - [ - "how long does it take milk to expire", - "food_last" - ], - [ - "how do i know if my milk is expired", - "food_last" - ], - [ - "what is the expiration date of my milk", - "food_last" - ], - [ - "how long until my milk expires", - "food_last" - ], - [ - "how long can i keep pork in the freezer for before it gets freezer burnt", - "food_last" - ], - [ - "how long can i keep beef in the freezer for before it gets nasty", - "food_last" - ], - [ - "how long can i keep chicken in the freezer for before it goes gross", - "food_last" - ], - [ - "how long can i keep bison in the freezer for before it spoils", - "food_last" - ], - [ - "how long do i need to cook pot au feu for", - "cook_time" - ], - [ - "how long do i need to cook chili for", - "cook_time" - ], - [ - "how long do i need to cook lasagne for", - "cook_time" - ], - [ - "how long do i need to cook tuna casserole for", - "cook_time" - ], - [ - "how long do i need to cook beef stew for", - "cook_time" - ], - [ - "how long should i cook country fried potatoes for", - "cook_time" - ], - [ - "how long should i cook pho for", - "cook_time" - ], - [ - "how long should i cook steak for", - "cook_time" - ], - [ - "how long should i cook roast for", - "cook_time" - ], - [ - "i need to know how long to cook chicken for", - "cook_time" - ], - [ - "how long do i put sugar cookies in for", - "cook_time" - ], - [ - "how long should i cook carnitas for", - "cook_time" - ], - [ - "how long should i cook ham for", - "cook_time" - ], - [ - "how long does it take to make pho", - "cook_time" - ], - [ - "how long do i need to cook roast for", - "cook_time" - ], - [ - "how long should i microwave hot pockets for", - "cook_time" - ], - [ - "how long does it take to cook hot pockets", - "cook_time" - ], - [ - "what's the recommended cooking time for steak", - "cook_time" - ], - [ - "should i cook this for a long time", - "cook_time" - ], - [ - "what time should i leave this in the oven", - "cook_time" - ], - [ - "remind me to call my mom", - "reminder_update" - ], - [ - "set a reminder for me to request time off work around the holidays", - "reminder_update" - ], - [ - "remind me to get an oil change", - "reminder_update" - ], - [ - "i need a reminder to order cookies", - "reminder_update" - ], - [ - "remind me to write that letter", - "reminder_update" - ], - [ - "set a reminder to pay my taxes", - "reminder_update" - ], - [ - "remind me to do something", - "reminder_update" - ], - [ - "you need to remind me to do something", - "reminder_update" - ], - [ - "i need to be reminded", - "reminder_update" - ], - [ - "i need to make a reminder", - "reminder_update" - ], - [ - "can you set a reminder for me", - "reminder_update" - ], - [ - "i need to set up a reminder for myself", - "reminder_update" - ], - [ - "create a reminder", - "reminder_update" - ], - [ - "remind me to check the steak", - "reminder_update" - ], - [ - "i just put steaks on the grill remind me to check them at the right time", - "reminder_update" - ], - [ - "don't let me forget to check the steak", - "reminder_update" - ], - [ - "set a reminder to check the steak", - "reminder_update" - ], - [ - "can you set a reminder for the current time tommorow", - "reminder_update" - ], - [ - "set a reminder for me to request time off", - "reminder_update" - ], - [ - "can i have a reminder set up", - "reminder_update" - ], - [ - "i want to report a stolen card", - "report_lost_card" - ], - [ - "my card is lost, i would like to report it", - "report_lost_card" - ], - [ - "my card was stolen, how do i report this", - "report_lost_card" - ], - [ - "i need to report a stolen card", - "report_lost_card" - ], - [ - "if i lost my card how do i report it", - "report_lost_card" - ], - [ - "how do i report a stolen card", - "report_lost_card" - ], - [ - "what is the process of reporting a lost card", - "report_lost_card" - ], - [ - "if my card was stolen, where do i report it", - "report_lost_card" - ], - [ - "i lost my card, how do i report it", - "report_lost_card" - ], - [ - "report a card lost for me", - "report_lost_card" - ], - [ - "i lost a card and i need to report it", - "report_lost_card" - ], - [ - "i have a card that was lost i need to report", - "report_lost_card" - ], - [ - "amazon visa card is stolen", - "report_lost_card" - ], - [ - "my disney visa card is stolen", - "report_lost_card" - ], - [ - "spirit mastercard card was taken", - "report_lost_card" - ], - [ - "what are the steps to take to report a lost card", - "report_lost_card" - ], - [ - "what is the route to take to report a lost card", - "report_lost_card" - ], - [ - "can you show me how to report a lost card", - "report_lost_card" - ], - [ - "i need the information on how to report a lost card", - "report_lost_card" - ], - [ - "my card is lost and i need to know how to report it", - "report_lost_card" - ], - [ - "would it be a problem to sub chips instead of fries", - "ingredient_substitution" - ], - [ - "let me know if i can use ketchup in place of the mustard", - "ingredient_substitution" - ], - [ - "is it ok to use ketchup instead of mustard", - "ingredient_substitution" - ], - [ - "is it normal to use mayo instead of cheese", - "ingredient_substitution" - ], - [ - "can i sub ketchup for mustard", - "ingredient_substitution" - ], - [ - "i wonder if it would be possible to switch from apples to grapes", - "ingredient_substitution" - ], - [ - "is it allow to switch apples to grapes", - "ingredient_substitution" - ], - [ - "is it okay to switch apples for grapes", - "ingredient_substitution" - ], - [ - "can i modify the apples for grapes", - "ingredient_substitution" - ], - [ - "would i be able to swap apples for grapes", - "ingredient_substitution" - ], - [ - "i don't have butter can i use oil", - "ingredient_substitution" - ], - [ - "is butter a substitute for oil", - "ingredient_substitution" - ], - [ - "is butter ok to use instead of oil", - "ingredient_substitution" - ], - [ - "are butter and oil interchangable", - "ingredient_substitution" - ], - [ - "are you able to switch butter and oil", - "ingredient_substitution" - ], - [ - "do you know if i can use pepper and not salt", - "ingredient_substitution" - ], - [ - "will pepper work instead of salt", - "ingredient_substitution" - ], - [ - "is pepper a replacement for salt", - "ingredient_substitution" - ], - [ - "would it be ok if i have pepper and not salt", - "ingredient_substitution" - ], - [ - "can i use pepper instead of salt", - "ingredient_substitution" - ], - [ - "call alex", - "make_call" - ], - [ - "please call mark", - "make_call" - ], - [ - "i want to call mark", - "make_call" - ], - [ - "let me call mark", - "make_call" - ], - [ - "can we call mark", - "make_call" - ], - [ - "call back my mom please", - "make_call" - ], - [ - "start a call to cynthia", - "make_call" - ], - [ - "i want to call up jan", - "make_call" - ], - [ - "can you get a call started to martha", - "make_call" - ], - [ - "please call felicity", - "make_call" - ], - [ - "please initiate a phone call to my boss", - "make_call" - ], - [ - "initiate a call to robert", - "make_call" - ], - [ - "dial the last number that called me", - "make_call" - ], - [ - "call contact aj", - "make_call" - ], - [ - "call aj now", - "make_call" - ], - [ - "call aj", - "make_call" - ], - [ - "call aj please", - "make_call" - ], - [ - "call my friend aj", - "make_call" - ], - [ - "can you call michelle on the home phone", - "make_call" - ], - [ - "siri, call jacob", - "make_call" - ], - [ - "i'd like alarms set for 11am and 132pm", - "alarm" - ], - [ - "i want you to set alarms for 2pm and 3pm", - "alarm" - ], - [ - "i need alarm for both 4am and 7am", - "alarm" - ], - [ - "set an alarm for 235pm and another an hour later", - "alarm" - ], - [ - "please add alarms at 430am and 1030am", - "alarm" - ], - [ - "set my alarm for quarter after six tomorrow", - "alarm" - ], - [ - "set my alarm for eight tomorrow, please", - "alarm" - ], - [ - "set my alarm for six tomorrow morning", - "alarm" - ], - [ - "set my alarm for five tomorrow morning, please", - "alarm" - ], - [ - "set an alarm for four thirty tomorrow, please", - "alarm" - ], - [ - "set me an alarm right now", - "alarm" - ], - [ - "set an alarm for me please", - "alarm" - ], - [ - "please set an alarm for me", - "alarm" - ], - [ - "please set me an alarm", - "alarm" - ], - [ - "set me an alarm now", - "alarm" - ], - [ - "create alarms for 8 pm and 9 pm", - "alarm" - ], - [ - "i need an alarm set for ten pm and midnight", - "alarm" - ], - [ - "make an alarm for one and two in the morning", - "alarm" - ], - [ - "can you set up alarms for one in the afternoon and ten at night", - "alarm" - ], - [ - "set an alarm for 05:00 and one for 16:00", - "alarm" - ], - [ - "repeat my to do list", - "todo_list" - ], - [ - "what do i have to do", - "todo_list" - ], - [ - "instruct me what to do", - "todo_list" - ], - [ - "recite my to do list", - "todo_list" - ], - [ - "will you please tell me my to do list", - "todo_list" - ], - [ - "what do i need to do", - "todo_list" - ], - [ - "did i put cutting the grass on my todo list", - "todo_list" - ], - [ - "is there anything on my todo list for taking out the trash", - "todo_list" - ], - [ - "is cleaning the outside windows on my todo list", - "todo_list" - ], - [ - "what do i have on my todo list", - "todo_list" - ], - [ - "have i added anything to my todo list", - "todo_list" - ], - [ - "did i make a note on my todo list to mop the bathroom floor", - "todo_list" - ], - [ - "is my todo list free", - "todo_list" - ], - [ - "can you tell me if there is anything on my todo list", - "todo_list" - ], - [ - "do i have anything on my todo list", - "todo_list" - ], - [ - "did i put a car wash on my todo list", - "todo_list" - ], - [ - "did i put vacuuming on my todo's", - "todo_list" - ], - [ - "is vacuuming on my todo list", - "todo_list" - ], - [ - "does my todo list have vacuuming on it", - "todo_list" - ], - [ - "is cleaning the garage on my to do list", - "todo_list" - ], - [ - "will you please do the male british accent", - "change_accent" - ], - [ - "can you please change you accent to the male british one", - "change_accent" - ], - [ - "make the male british accent please", - "change_accent" - ], - [ - "could you please change your accent to the male british one", - "change_accent" - ], - [ - "for the love of all that good change your accent", - "change_accent" - ], - [ - "your accent needs to be changed", - "change_accent" - ], - [ - "i need your accent to be changed", - "change_accent" - ], - [ - "please change your accent", - "change_accent" - ], - [ - "change your accent now", - "change_accent" - ], - [ - "change to a new accent please", - "change_accent" - ], - [ - "change to a different accent", - "change_accent" - ], - [ - "i want you to use a different accent", - "change_accent" - ], - [ - "what other accents can you use", - "change_accent" - ], - [ - "help me change my account", - "change_accent" - ], - [ - "i need to change my account", - "change_accent" - ], - [ - "i need to switch accounts", - "change_accent" - ], - [ - "please change my account to another one", - "change_accent" - ], - [ - "please use a male voice", - "change_accent" - ], - [ - "change over to the female voice", - "change_accent" - ], - [ - "move over to the female voice", - "change_accent" - ], - [ - "i need a w2 form, how do i get one", - "w2" - ], - [ - "who do i contact for a w2 form", - "w2" - ], - [ - "how do i get a w2 form", - "w2" - ], - [ - "who should i call for a w2", - "w2" - ], - [ - "where do i go to get a form for w2s", - "w2" - ], - [ - "where do i get w2 form", - "w2" - ], - [ - "i need to know where to get w2", - "w2" - ], - [ - "tell me where i should get the w2", - "w2" - ], - [ - "so where do i get the w2 form", - "w2" - ], - [ - "please tell me where to get the w2", - "w2" - ], - [ - "where will i find my w-2", - "w2" - ], - [ - "w-2 tax form where is it", - "w2" - ], - [ - "where do i find my w-2 form", - "w2" - ], - [ - "where's my w-2 tax form", - "w2" - ], - [ - "where do i find my w-2 tax form", - "w2" - ], - [ - "can i find my w-2 online", - "w2" - ], - [ - "where should i look for my w-2", - "w2" - ], - [ - "where would i find my w-2", - "w2" - ], - [ - "i need my earned income form for paying taxes", - "w2" - ], - [ - "where can i get the form for my taxes", - "w2" - ], - [ - "when do i need to pay my dte energy bill", - "bill_due" - ], - [ - "what day do i have to pay my leasing office bill", - "bill_due" - ], - [ - "what day is my telephone bill due", - "bill_due" - ], - [ - "when is my cell phone bill due", - "bill_due" - ], - [ - "what day do i need to pay my internet and phone bill by", - "bill_due" - ], - [ - "what's the due date for spectrum's bill", - "bill_due" - ], - [ - "what date do i have to pay the phone bill on", - "bill_due" - ], - [ - "can you tell me the due date for the water bill", - "bill_due" - ], - [ - "what day is the cable bill owed on", - "bill_due" - ], - [ - "when is the electric bill due", - "bill_due" - ], - [ - "when do i need to pay my car insurance bill by", - "bill_due" - ], - [ - "how do i find out when my visa bill is due", - "bill_due" - ], - [ - "tell me how i know when to pay my chase bill", - "bill_due" - ], - [ - "tell me when my mastercard bill should be paid", - "bill_due" - ], - [ - "when should i pay my pg&e bill", - "bill_due" - ], - [ - "when is my kaiser bill due", - "bill_due" - ], - [ - "how long do i have to pay that bill", - "bill_due" - ], - [ - "is there a due date on the bill", - "bill_due" - ], - [ - "is the bill due this week", - "bill_due" - ], - [ - "i need to know what day i need to pay my water bill", - "bill_due" - ], - [ - "what is the calorie content of lays chips", - "calories" - ], - [ - "do you know the calorie content of a strip of bacon", - "calories" - ], - [ - "how many calories are found in bagels", - "calories" - ], - [ - "tell me the calorie content of frosted flakes", - "calories" - ], - [ - "inform me of the calorie content of vanilla ice cream", - "calories" - ], - [ - "how many calories are in apples", - "calories" - ], - [ - "how many calories are in oranges", - "calories" - ], - [ - "how many calories are in ice cream", - "calories" - ], - [ - "how many calories are in cake", - "calories" - ], - [ - "how many calories are in oreos", - "calories" - ], - [ - "how many calories does two bananas have", - "calories" - ], - [ - "in a fried egg, how many calories are there", - "calories" - ], - [ - "pocki sticks has how many calories", - "calories" - ], - [ - "what is the amount of calories that scrambled eggs has", - "calories" - ], - [ - "how many calories are in a donut hole", - "calories" - ], - [ - "how many calories are in a ghirardelli sea salt caramel candy", - "calories" - ], - [ - "how many calories are in a bowel of wheaties", - "calories" - ], - [ - "how many calories are in a serving of deans french onion dip", - "calories" - ], - [ - "how many calories are in mashed potatoes", - "calories" - ], - [ - "how many calories are in powdered donuts", - "calories" - ], - [ - "my card was damaged by bleach", - "damaged_card" - ], - [ - "my card was cut by my kid", - "damaged_card" - ], - [ - "my card is ruined and isn't working", - "damaged_card" - ], - [ - "my card isn't working because its destroyed", - "damaged_card" - ], - [ - "my card is messed up from carding my door", - "damaged_card" - ], - [ - "my card was in my pocket and bent", - "damaged_card" - ], - [ - "my card has a burn on it", - "damaged_card" - ], - [ - "my card is impaired and i can't use it", - "damaged_card" - ], - [ - "my card is scuffed up and won't work", - "damaged_card" - ], - [ - "my card seems to not work because its blemished", - "damaged_card" - ], - [ - "i broke my card trying to do a magic trick", - "damaged_card" - ], - [ - "when my house burned down, so did my card", - "damaged_card" - ], - [ - "i broke my card scraping snow off the windshield", - "damaged_card" - ], - [ - "i broke my card when i bent my wallet", - "damaged_card" - ], - [ - "i ruined my card when it got washed", - "damaged_card" - ], - [ - "how can i get a new card that got melted in the sun", - "damaged_card" - ], - [ - "my card got dropped in the shredded and i need it replaced", - "damaged_card" - ], - [ - "my card was destroyed when my house burned down and i need a replacement", - "damaged_card" - ], - [ - "i accidentally caught my card on fire", - "damaged_card" - ], - [ - "i accidentally shredded my card", - "damaged_card" - ], - [ - "does mcdonald's have good reviews", - "restaurant_reviews" - ], - [ - "are the review for mcdonald's good or bad", - "restaurant_reviews" - ], - [ - "how are the reviews for mcdonald's", - "restaurant_reviews" - ], - [ - "what are the review for mcdonald's", - "restaurant_reviews" - ], - [ - "how are those mcdonald's reviews looking", - "restaurant_reviews" - ], - [ - "what are the ratings for yardhouse", - "restaurant_reviews" - ], - [ - "do you know how the ratings are for yardhouse", - "restaurant_reviews" - ], - [ - "are the ratings for yardhouse good", - "restaurant_reviews" - ], - [ - "can you tell me the ratings for yardhouse", - "restaurant_reviews" - ], - [ - "how good are the review for yardhouse", - "restaurant_reviews" - ], - [ - "how are the fried chicken at zippys", - "restaurant_reviews" - ], - [ - "how are the reviews for pasta at assagios", - "restaurant_reviews" - ], - [ - "how is sushi at jiro", - "restaurant_reviews" - ], - [ - "how is the steamed fish at harbor village", - "restaurant_reviews" - ], - [ - "how is dim sum at legend", - "restaurant_reviews" - ], - [ - "does boston restaurant have favorable reviews", - "restaurant_reviews" - ], - [ - "can you inform if boston restaurant has good reviews", - "restaurant_reviews" - ], - [ - "i need to know favorable reviews about boston restaurant", - "restaurant_reviews" - ], - [ - "tell me if boston restaurant has good reviews", - "restaurant_reviews" - ], - [ - "i need to know if boston restaurant has favorable reviews", - "restaurant_reviews" - ], - [ - "what would the routing number for chase be", - "routing" - ], - [ - "tell me chase's routing number", - "routing" - ], - [ - "tell me the routing number for bluebird", - "routing" - ], - [ - "help me find the chase routing number", - "routing" - ], - [ - "i want to know the bofa routing number", - "routing" - ], - [ - "what routing number does chase in michigan use", - "routing" - ], - [ - "where can i locate the ally routing number", - "routing" - ], - [ - "what would wells fargo use as routing", - "routing" - ], - [ - "is there a routing number for wachovia", - "routing" - ], - [ - "i need to know what routing number i should use for ally", - "routing" - ], - [ - "let me know chase's routing number", - "routing" - ], - [ - "what routing number does chase use", - "routing" - ], - [ - "is there a routing number for wells fargo", - "routing" - ], - [ - "i need to know bank of america's routing", - "routing" - ], - [ - "i want to know what the routing is for chase", - "routing" - ], - [ - "where can i locate my routing number for chase please", - "routing" - ], - [ - "where do i find my routing number for my pnc account", - "routing" - ], - [ - "where can i locate the routing number for the bank i bank with", - "routing" - ], - [ - "where do i locate the routing number for the credit union", - "routing" - ], - [ - "where do i locate my routing number for my premium checking account", - "routing" - ], - [ - "what type of pet is in your home", - "do_you_have_pets" - ], - [ - "what pets are with you", - "do_you_have_pets" - ], - [ - "do you have animal companions", - "do_you_have_pets" - ], - [ - "do you have any animals", - "do_you_have_pets" - ], - [ - "what type of animal is living in your home", - "do_you_have_pets" - ], - [ - "what types of pets do you keep", - "do_you_have_pets" - ], - [ - "what animals await you at home", - "do_you_have_pets" - ], - [ - "what creatures do you keep for love", - "do_you_have_pets" - ], - [ - "do you posses any types of pets", - "do_you_have_pets" - ], - [ - "do you have any dogs or cats", - "do_you_have_pets" - ], - [ - "what types of furry companions do you have", - "do_you_have_pets" - ], - [ - "given a choice would you take a dog or a cat", - "do_you_have_pets" - ], - [ - "what are the pets you have", - "do_you_have_pets" - ], - [ - "do you own a cat or do you own a dog", - "do_you_have_pets" - ], - [ - "do you own any animals", - "do_you_have_pets" - ], - [ - "what do you have in the way of pets", - "do_you_have_pets" - ], - [ - "which type of pet would you rather possess, a cat or a dog", - "do_you_have_pets" - ], - [ - "do you have a cat or a dog", - "do_you_have_pets" - ], - [ - "what different pets do you have", - "do_you_have_pets" - ], - [ - "does your family have any pets", - "do_you_have_pets" - ], - [ - "how do i set up a meeting", - "schedule_meeting" - ], - [ - "what is the process to set up a meeting", - "schedule_meeting" - ], - [ - "how can i set up a meeting", - "schedule_meeting" - ], - [ - "what is the process to schedule a meeting", - "schedule_meeting" - ], - [ - "what do i do to schedule a meeting", - "schedule_meeting" - ], - [ - "i want you to set a meeting with john at 5 pm", - "schedule_meeting" - ], - [ - "schedule a monday meeting with sam at 1 pm", - "schedule_meeting" - ], - [ - "please schedule a meeting with kim at 10 am", - "schedule_meeting" - ], - [ - "please set a meeting with nancy at 4 pm", - "schedule_meeting" - ], - [ - "schedule my meeting with jim at 3pm", - "schedule_meeting" - ], - [ - "get me a meeting room for 9am on friday", - "schedule_meeting" - ], - [ - "secure us a meeting room for 9am on friday", - "schedule_meeting" - ], - [ - "arrange a meeting room for 9am on friday", - "schedule_meeting" - ], - [ - "please schedule a meeting room for 9am on friday", - "schedule_meeting" - ], - [ - "make sure i get a meeting room for 9am on friday", - "schedule_meeting" - ], - [ - "is it possible for you to schedule a meeting for 3:00 on wednesday", - "schedule_meeting" - ], - [ - "can you create a meeting for 3:00 on wednesday", - "schedule_meeting" - ], - [ - "can you arrange a meeting for 3:00 on wednesday", - "schedule_meeting" - ], - [ - "can you please set up a meeting for 3:00 on wednesday", - "schedule_meeting" - ], - [ - "can you hook up a meeting for 3:00 on wednesday", - "schedule_meeting" - ], - [ - "what is the best type of gas for this car", - "gas_type" - ], - [ - "for this car, what kind of gas should i use", - "gas_type" - ], - [ - "what kind of gas is required for this car", - "gas_type" - ], - [ - "gas type needed for this car", - "gas_type" - ], - [ - "please tell me what kind of gas this car needs", - "gas_type" - ], - [ - "what gas does this car take", - "gas_type" - ], - [ - "can you tell me what kind of gas this car uses", - "gas_type" - ], - [ - "what kind of fuel should i put in my car", - "gas_type" - ], - [ - "what kind of fuel does my car use", - "gas_type" - ], - [ - "my car takes what kind of fuel", - "gas_type" - ], - [ - "my vehicle needs what kind of fuel", - "gas_type" - ], - [ - "what kind of fuel do i need to put in my car", - "gas_type" - ], - [ - "what is the proper fuel type for my car", - "gas_type" - ], - [ - "what's the required fuel type for my car", - "gas_type" - ], - [ - "could you tell me the fuel type for my car", - "gas_type" - ], - [ - "does this car take regular or diesel fuel", - "gas_type" - ], - [ - "what octaine is recommended for this car", - "gas_type" - ], - [ - "i need gas so what should i get", - "gas_type" - ], - [ - "what type of fuel should i get for mainly city driving", - "gas_type" - ], - [ - "what kind of gas does my car need", - "gas_type" - ], - [ - "what kind of sockets do the us use", - "plug_type" - ], - [ - "does my tv need a socket conveter in ny city", - "plug_type" - ], - [ - "does denmark use different sockets", - "plug_type" - ], - [ - "in france do they require socket conveters", - "plug_type" - ], - [ - "what type of socker conveters do i need in africa", - "plug_type" - ], - [ - "i'm going to paris, what plug type do i need", - "plug_type" - ], - [ - "what type of outlets do they have in the uk", - "plug_type" - ], - [ - "in australia what outlet type do they use", - "plug_type" - ], - [ - "do they use a different plug in brazil", - "plug_type" - ], - [ - "what kind of plug is used in japan", - "plug_type" - ], - [ - "which electrical plug type should i bring with me to finland", - "plug_type" - ], - [ - "what kind of electrical plug do they use in the uae", - "plug_type" - ], - [ - "what type of electrical plug do they use in spain", - "plug_type" - ], - [ - "what electrical plug do they use in the uk", - "plug_type" - ], - [ - "what sort of electrical plug do they use in mainland europe", - "plug_type" - ], - [ - "what are the cuban plugs like", - "plug_type" - ], - [ - "what plugs are in england", - "plug_type" - ], - [ - "how are british plugs", - "plug_type" - ], - [ - "what plug does colombia use", - "plug_type" - ], - [ - "which plugs does england use", - "plug_type" - ], - [ - "tell me when to next change my tires", - "tire_change" - ], - [ - "when would be a wise time to replace my tires", - "tire_change" - ], - [ - "can you tell me when i ought to switch out my tires", - "tire_change" - ], - [ - "when will my car next be due to get its tires changed", - "tire_change" - ], - [ - "at what point will i need to change my tires", - "tire_change" - ], - [ - "when would it be wise for me to swap out my tires", - "tire_change" - ], - [ - "do you know when the best time for me to change my tires next would be", - "tire_change" - ], - [ - "how long before i need to replace my tires", - "tire_change" - ], - [ - "how soon until my tires will need to be changed", - "tire_change" - ], - [ - "figure out for me when i ought to change my tires next", - "tire_change" - ], - [ - "tires should be changed when", - "tire_change" - ], - [ - "when should i change the tires", - "tire_change" - ], - [ - "when should i change these tires", - "tire_change" - ], - [ - "when could i get my tires changed next", - "tire_change" - ], - [ - "when can i commute my tires next", - "tire_change" - ], - [ - "when is it time for a tire change", - "tire_change" - ], - [ - "is it time for a tire change", - "tire_change" - ], - [ - "when are my tires due for changing", - "tire_change" - ], - [ - "when should my car's tires be changed", - "tire_change" - ], - [ - "when should i change my tires", - "tire_change" - ], - [ - "how much is 100 dollars in euros", - "exchange_rate" - ], - [ - "what's the exchange rate betwen usd and euros", - "exchange_rate" - ], - [ - "how much is $1 usd worth in euros", - "exchange_rate" - ], - [ - "how much is $1 usd in euros", - "exchange_rate" - ], - [ - "what's the exchange rate between country a and country b", - "exchange_rate" - ], - [ - "what's the conversion rate of 100 dollars to euros", - "exchange_rate" - ], - [ - "what's 100 dollars in euros", - "exchange_rate" - ], - [ - "how much country of canada money would i get for $100", - "exchange_rate" - ], - [ - "how much is the exchange between usd and euros", - "exchange_rate" - ], - [ - "i need to know how much 100 dollars is worth in euros", - "exchange_rate" - ], - [ - "tell me the exchange rate between here and country b", - "exchange_rate" - ], - [ - "if the dollar worth a lot in country b", - "exchange_rate" - ], - [ - "how much is 1 dollar worth in country b's money", - "exchange_rate" - ], - [ - "look up the exchange rate between dollars and euros", - "exchange_rate" - ], - [ - "convert 100 dollars to euros", - "exchange_rate" - ], - [ - "what can i get for 10 usd in cad", - "exchange_rate" - ], - [ - "what's the going rate between usd and cad", - "exchange_rate" - ], - [ - "what's the difference between usd and cad", - "exchange_rate" - ], - [ - "what is the rate for 500 cad in usd", - "exchange_rate" - ], - [ - "how much is usd vs cad", - "exchange_rate" - ], - [ - "what day is the next holiday", - "next_holiday" - ], - [ - "what holiday is coming up", - "next_holiday" - ], - [ - "the next holiday is when", - "next_holiday" - ], - [ - "which holiday do we celebrate next", - "next_holiday" - ], - [ - "i want to know when is the next holiday", - "next_holiday" - ], - [ - "what and when is the next holiday", - "next_holiday" - ], - [ - "i need to know when's the next holiday", - "next_holiday" - ], - [ - "is there a holiday this month", - "next_holiday" - ], - [ - "does march have a holiday", - "next_holiday" - ], - [ - "do we get monday off as a holiday", - "next_holiday" - ], - [ - "when do i get my next day off", - "next_holiday" - ], - [ - "i'd like to know when my next day off is", - "next_holiday" - ], - [ - "i want to know when is the next holiday here", - "next_holiday" - ], - [ - "when will be the next holiday here", - "next_holiday" - ], - [ - "please tell me when is the next holiday here", - "next_holiday" - ], - [ - "i need to know when is the next holiday here", - "next_holiday" - ], - [ - "i would like to know when is the next holiday here", - "next_holiday" - ], - [ - "when is the next break", - "next_holiday" - ], - [ - "when do we have free day", - "next_holiday" - ], - [ - "when is the next holiday in this country", - "next_holiday" - ], - [ - "make your volume quieter please", - "change_volume" - ], - [ - "adjust the volume to level 4", - "change_volume" - ], - [ - "i want your volume decreased please", - "change_volume" - ], - [ - "could you please raise your volume", - "change_volume" - ], - [ - "i want your volume lowered", - "change_volume" - ], - [ - "i want your volume louder", - "change_volume" - ], - [ - "i want the volume at 4 please", - "change_volume" - ], - [ - "i want the volume at level 4", - "change_volume" - ], - [ - "a volume of 4 is ideal please", - "change_volume" - ], - [ - "i need your volume increased", - "change_volume" - ], - [ - "can you please turn your volume down", - "change_volume" - ], - [ - "please turn the volume to 4", - "change_volume" - ], - [ - "please turn your volume up", - "change_volume" - ], - [ - "turn down your volume please", - "change_volume" - ], - [ - "turn up your volume", - "change_volume" - ], - [ - "could you increase the speaker volume please", - "change_volume" - ], - [ - "would you please increase the speaker volume", - "change_volume" - ], - [ - "increase the speaker volume please", - "change_volume" - ], - [ - "can you increase the speaker volume please", - "change_volume" - ], - [ - "please turn your speaker volume up", - "change_volume" - ], - [ - "do you work for another person", - "who_do_you_work_for" - ], - [ - "who is your supervisor, please", - "who_do_you_work_for" - ], - [ - "who is your superior, please", - "who_do_you_work_for" - ], - [ - "who are you employed by", - "who_do_you_work_for" - ], - [ - "who is your superior", - "who_do_you_work_for" - ], - [ - "do you work for a different person", - "who_do_you_work_for" - ], - [ - "who are you employed by, please", - "who_do_you_work_for" - ], - [ - "who you work for, please", - "who_do_you_work_for" - ], - [ - "do you work for another individual", - "who_do_you_work_for" - ], - [ - "who is your supervisor", - "who_do_you_work_for" - ], - [ - "do you work for a different individual", - "who_do_you_work_for" - ], - [ - "who you work for", - "who_do_you_work_for" - ], - [ - "are you one of my employees", - "who_do_you_work_for" - ], - [ - "do you work for a different employer", - "who_do_you_work_for" - ], - [ - "who is your boss by the way", - "who_do_you_work_for" - ], - [ - "i want the name of your boss", - "who_do_you_work_for" - ], - [ - "specify who your boss is", - "who_do_you_work_for" - ], - [ - "provide me the name of your boss", - "who_do_you_work_for" - ], - [ - "tell me who your boss is", - "who_do_you_work_for" - ], - [ - "who do you say you work for", - "who_do_you_work_for" - ], - [ - "what is the limit on my victoria's secret card", - "credit_limit" - ], - [ - "could you tell me the limit on my chase credit card", - "credit_limit" - ], - [ - "i need to know what my limit is on my american express card", - "credit_limit" - ], - [ - "how high is my spending limit on my wells fargo card", - "credit_limit" - ], - [ - "can you tell me what the limit is on my capital one card", - "credit_limit" - ], - [ - "i have to know the credit limit", - "credit_limit" - ], - [ - "what exactly is my credit limit", - "credit_limit" - ], - [ - "explain what my credit limit is", - "credit_limit" - ], - [ - "give me my credit limit", - "credit_limit" - ], - [ - "i need to know the credit limit", - "credit_limit" - ], - [ - "tell me the highest amount i can spend on my discover card", - "credit_limit" - ], - [ - "what is my credit limit on my discover card", - "credit_limit" - ], - [ - "how much spending power is on my discover card", - "credit_limit" - ], - [ - "how much can i buy on my discover card", - "credit_limit" - ], - [ - "how much can i spend on my discover card", - "credit_limit" - ], - [ - "what's my credit limit for my visa card", - "credit_limit" - ], - [ - "i need to know my credit's limit", - "credit_limit" - ], - [ - "what's my credit limit", - "credit_limit" - ], - [ - "what's the limit for my credit", - "credit_limit" - ], - [ - "i would like to know the limit for my credit", - "credit_limit" - ], - [ - "how much to wait before dining in the jack in the box at 4 pm", - "how_busy" - ], - [ - "how long to wait before dining in restaurant beta", - "how_busy" - ], - [ - "how long is the wait time at olive garden currently", - "how_busy" - ], - [ - "what is the wait like at apple bees", - "how_busy" - ], - [ - "what is the wait time for torris", - "how_busy" - ], - [ - "is there a wait time at bjs right now", - "how_busy" - ], - [ - "how long is the wait at buffalo wild wings", - "how_busy" - ], - [ - "how long is the wait at chipotle", - "how_busy" - ], - [ - "how long is the wait at chipotle tonight", - "how_busy" - ], - [ - "how long is the wait at chipotle right now", - "how_busy" - ], - [ - "how long is the wait at applebee's tonight", - "how_busy" - ], - [ - "how long is the wait at applebee's", - "how_busy" - ], - [ - "i need to know about how much time i'd have to wait to get a table at dibruno's", - "how_busy" - ], - [ - "can you tell me how long approximate wait times are at cheesecake factory", - "how_busy" - ], - [ - "what is the average wait time to be seated for dinner at rouge", - "how_busy" - ], - [ - "what's the wait like at chima brazilian steakhouse at this time", - "how_busy" - ], - [ - "will i have to wait long for a table at pietro's this evening", - "how_busy" - ], - [ - "how long do we have to wait at the restaurant", - "how_busy" - ], - [ - "how long would the wait at the restaurant be", - "how_busy" - ], - [ - "is mcdonalds busy around 9", - "how_busy" - ], - [ - "does spago in beverly hills allow customers to make reservations", - "accept_reservations" - ], - [ - "what is the reservation policy for spago in beverly hills", - "accept_reservations" - ], - [ - "are reservations taken at spago in beverly hills", - "accept_reservations" - ], - [ - "am i able to make reservations at spago in beverly hills", - "accept_reservations" - ], - [ - "can i make reservations at spago in beverly hills", - "accept_reservations" - ], - [ - "let me know if grub burger takes reservations", - "accept_reservations" - ], - [ - "give me information on grub burger reservations", - "accept_reservations" - ], - [ - "is grub burger taking reservations", - "accept_reservations" - ], - [ - "find out of grub burger takes reservations", - "accept_reservations" - ], - [ - "can i make reservations at grub burger", - "accept_reservations" - ], - [ - "is it possible to do a reservation at the bellagio", - "accept_reservations" - ], - [ - "does the bellagio have any reservations", - "accept_reservations" - ], - [ - "does bellagio allow you to do reservations", - "accept_reservations" - ], - [ - "can i make a reservation at chima steakhouse in chicago", - "accept_reservations" - ], - [ - "will i be able to schedule a reservation at 4 seasons in los angeles", - "accept_reservations" - ], - [ - "is it possible to make a reservation at sushi king in virginia beach", - "accept_reservations" - ], - [ - "does ruth chris in charlotte allow you to make a reservation", - "accept_reservations" - ], - [ - "will maggianos in charlotte allow me to make a reservation", - "accept_reservations" - ], - [ - "does long horns do reservations", - "accept_reservations" - ], - [ - "i need to make a reservation to long horn's, can i", - "accept_reservations" - ], - [ - "was my order delivered", - "order_status" - ], - [ - "did my order get here yet", - "order_status" - ], - [ - "was my order brought here", - "order_status" - ], - [ - "was my order shipped here", - "order_status" - ], - [ - "was the order delivered", - "order_status" - ], - [ - "what is the status of my purchase", - "order_status" - ], - [ - "track the status of my purchase", - "order_status" - ], - [ - "did my order get delivered", - "order_status" - ], - [ - "has my purchase been delivered yet", - "order_status" - ], - [ - "has my purchase arrived yet", - "order_status" - ], - [ - "how far along is my purchase", - "order_status" - ], - [ - "have my goods been delivered yet", - "order_status" - ], - [ - "i ordered new light bulbs online when will they get here", - "order_status" - ], - [ - "when will the clothes i ordered online arrive", - "order_status" - ], - [ - "i ordered new sheets online when will they arrive", - "order_status" - ], - [ - "i ordered some new speakers, so when will they get here", - "order_status" - ], - [ - "is my order at the delivery address", - "order_status" - ], - [ - "when is my order coming", - "order_status" - ], - [ - "is my order here", - "order_status" - ], - [ - "when will my order arrive", - "order_status" - ], - [ - "i forgot my pin number for my credit union bank account, can you help", - "pin_change" - ], - [ - "i want to change my bank of america account pin number", - "pin_change" - ], - [ - "i want to change the pin number on my credit union account", - "pin_change" - ], - [ - "can you help me figure out my pin number for my visa account", - "pin_change" - ], - [ - "i need to update the pin number of my aaa visa", - "pin_change" - ], - [ - "i'd like to change the pin number on my visa account", - "pin_change" - ], - [ - "i need my pin number for my bank of america account and i can't remember it", - "pin_change" - ], - [ - "i can't remember my pin for my first national debit account", - "pin_change" - ], - [ - "i've forgotten my pin number for my citibank gold account", - "pin_change" - ], - [ - "i want to update my pin number on my bank of america account", - "pin_change" - ], - [ - "i don't want my current pin for my wells account anymore", - "pin_change" - ], - [ - "switch the pin on my chase account", - "pin_change" - ], - [ - "i want a new pin on my card of private client account", - "pin_change" - ], - [ - "i want the pin on my wells fargo account to be changed", - "pin_change" - ], - [ - "i need a new pin on my chase account", - "pin_change" - ], - [ - "so tell me the pin number", - "pin_change" - ], - [ - "i need to know the pin number to my card", - "pin_change" - ], - [ - "tell me the pin number to my card", - "pin_change" - ], - [ - "i need to know the pin number", - "pin_change" - ], - [ - "switch the pin on my visa account", - "pin_change" - ], - [ - "see ya!", - "goodbye" - ], - [ - "this was fun, see you around bye", - "goodbye" - ], - [ - "until next time", - "goodbye" - ], - [ - "i enjoyed our talk, bye", - "goodbye" - ], - [ - "this was a nice chat", - "goodbye" - ], - [ - "i enjoyed speaking with you", - "goodbye" - ], - [ - "peace out!", - "goodbye" - ], - [ - "this was a nice chat, goodbye", - "goodbye" - ], - [ - "this was a nice conversation", - "goodbye" - ], - [ - "good talk, see you later", - "goodbye" - ], - [ - "it was lovely to speak with you", - "goodbye" - ], - [ - "it was lovely to speak with you, bye bye", - "goodbye" - ], - [ - "thank you for the chat, goodbye", - "goodbye" - ], - [ - "a pleasure as always to speak with you, bye", - "goodbye" - ], - [ - "thank you for chatting with me, bye", - "goodbye" - ], - [ - "i enjoyed our talk, goodbye", - "goodbye" - ], - [ - "it was a pleasure talking to you, goodbye now", - "goodbye" - ], - [ - "farewell", - "goodbye" - ], - [ - "goodnight", - "goodbye" - ], - [ - "have a good day", - "goodbye" - ], - [ - "my account looks to be blocked and i have no idea why", - "account_blocked" - ], - [ - "it seems that my account is blocked and i'm not sure why", - "account_blocked" - ], - [ - "my account appears to be blocked and i don't know why", - "account_blocked" - ], - [ - "it looks like my account is blocked but i have no clue why", - "account_blocked" - ], - [ - "my account appears to be blocked but i have no idea why that could be", - "account_blocked" - ], - [ - "why did you freeze my bank account", - "account_blocked" - ], - [ - "how did my bank account is frozen", - "account_blocked" - ], - [ - "can anyone let me know the reason behind my frozen bank account", - "account_blocked" - ], - [ - "what are the possible reasons behind frozen bank account", - "account_blocked" - ], - [ - "need help with frozen bank account", - "account_blocked" - ], - [ - "great western bank's login screen tells me i'm locked out but not why", - "account_blocked" - ], - [ - "i get an error message when i try logging in to capital one that says i'm locked out", - "account_blocked" - ], - [ - "can you check and see if my account's blocked", - "account_blocked" - ], - [ - "why can't i log into my bank account", - "account_blocked" - ], - [ - "tell me why i get an error logging in to my bank account", - "account_blocked" - ], - [ - "i'd like to know if my account's blocked and the reason if so", - "account_blocked" - ], - [ - "can you confirm my account's blocked and tell me why", - "account_blocked" - ], - [ - "do you have any idea why my account may be blocked", - "account_blocked" - ], - [ - "find out why i can't log in to my bank of america account", - "account_blocked" - ], - [ - "please tell me the reason for the hold on my bb&t account", - "account_blocked" - ], - [ - "whats this song", - "what_song" - ], - [ - "nice song what is it", - "what_song" - ], - [ - "cool song, what is it", - "what_song" - ], - [ - "what music is this", - "what_song" - ], - [ - "is this a song that i dont know", - "what_song" - ], - [ - "what\u2019s the name of this song", - "what_song" - ], - [ - "what is the current tune", - "what_song" - ], - [ - "what am i listening to right now", - "what_song" - ], - [ - "what is the name of the song playing right now", - "what_song" - ], - [ - "what is that song called", - "what_song" - ], - [ - "name this song", - "what_song" - ], - [ - "what's that song on the speaker now", - "what_song" - ], - [ - "what's the name of the song playing right now", - "what_song" - ], - [ - "what song is playing right now", - "what_song" - ], - [ - "do you know the song on the speaker right now", - "what_song" - ], - [ - "what's that song that is playing now", - "what_song" - ], - [ - "what is that tune", - "what_song" - ], - [ - "tell me the title of the song playing", - "what_song" - ], - [ - "i need this song title", - "what_song" - ], - [ - "what song am i hearing", - "what_song" - ], - [ - "does my visa have international transaction fees", - "international_fees" - ], - [ - "are there international transaction fees associated with my td bank card", - "international_fees" - ], - [ - "does my american express card have any international transaction fees", - "international_fees" - ], - [ - "does my new bank card have any international transaction fees", - "international_fees" - ], - [ - "does my western union card have international transaction fees", - "international_fees" - ], - [ - "will i be charged if i use my card in russia", - "international_fees" - ], - [ - "will i be charged if i use my card in china", - "international_fees" - ], - [ - "i wanna know if my capital one credit card have international transaction fees", - "international_fees" - ], - [ - "i'd like to know if my capital one credit card have international transaction fees", - "international_fees" - ], - [ - "does my capital one credit card have international transaction fees", - "international_fees" - ], - [ - "will i be charged if i use my card in vietnam", - "international_fees" - ], - [ - "i need to know if my capital one credit card have international transaction fees", - "international_fees" - ], - [ - "i would really like to know if my capital one credit card have international transaction fees", - "international_fees" - ], - [ - "will i be charged if i use my card in japan", - "international_fees" - ], - [ - "will i get charged extra for using my card while in tulsa", - "international_fees" - ], - [ - "while in tulsa, if i use my card, would i be charged more", - "international_fees" - ], - [ - "say that i am in tulsa, will i be charged even more if i use my card", - "international_fees" - ], - [ - "if i am in tulsa, will i get charged extra if i use my card", - "international_fees" - ], - [ - "using my card in tulsa won't cause me to be charged extra will it", - "international_fees" - ], - [ - "if i use my card in england will it cost me extra", - "international_fees" - ], - [ - "on what day, month and year did i get new tires", - "last_maintenance" - ], - [ - "when was the last time my car was worked on", - "last_maintenance" - ], - [ - "when did i last get my car serviced", - "last_maintenance" - ], - [ - "what was the date when my car was in the shop", - "last_maintenance" - ], - [ - "how long since my car was in the shop", - "last_maintenance" - ], - [ - "when was my last oil change", - "last_maintenance" - ], - [ - "what was the date of my last car service", - "last_maintenance" - ], - [ - "when was the last time i took my car in", - "last_maintenance" - ], - [ - "when was the last time my car was serviced", - "last_maintenance" - ], - [ - "do you remember when i last got my car looked at", - "last_maintenance" - ], - [ - "do you know when i last took my car to get checked", - "last_maintenance" - ], - [ - "do you have a record of when i last got my car checked", - "last_maintenance" - ], - [ - "could you inform me of when i last got my car checked", - "last_maintenance" - ], - [ - "when did i last get my car checked", - "last_maintenance" - ], - [ - "when did i change my oil", - "last_maintenance" - ], - [ - "how long since i swapped oil", - "last_maintenance" - ], - [ - "when did the oil get changed", - "last_maintenance" - ], - [ - "how long has it been since the oil got changed out", - "last_maintenance" - ], - [ - "how long since my oil had a refresh", - "last_maintenance" - ], - [ - "when was the car last services", - "last_maintenance" - ], - [ - "what if any meetings do i have today", - "meeting_schedule" - ], - [ - "do i have meetings with anyone today", - "meeting_schedule" - ], - [ - "do i have any meetings on my calendar today", - "meeting_schedule" - ], - [ - "do i have any meetings on my schedule today", - "meeting_schedule" - ], - [ - "do i have any meetings today between 9:30 and 10:30", - "meeting_schedule" - ], - [ - "do i have any meetings today between 9 and 10:30", - "meeting_schedule" - ], - [ - "do i have any meetings today between 9:20 and 10:30", - "meeting_schedule" - ], - [ - "do i have any meetings today between 9 and 10:15", - "meeting_schedule" - ], - [ - "do i have any meetings today between 9 and 10", - "meeting_schedule" - ], - [ - "what time am i meeting with john", - "meeting_schedule" - ], - [ - "what time am i meeting john", - "meeting_schedule" - ], - [ - "what time is my meeting with fred scheduled for", - "meeting_schedule" - ], - [ - "do i have any meetings coming up with dan", - "meeting_schedule" - ], - [ - "i think dan scheduled a meeting today with me, can you double check please", - "meeting_schedule" - ], - [ - "is my schedule clear with no meetings with dan today", - "meeting_schedule" - ], - [ - "what is my schedule like today, any meetings with dan", - "meeting_schedule" - ], - [ - "is dan aware of any meetings with me today", - "meeting_schedule" - ], - [ - "how many meetings do i have today", - "meeting_schedule" - ], - [ - "read me my meeting schedule", - "meeting_schedule" - ], - [ - "please tell me my meeting schedule", - "meeting_schedule" - ], - [ - "i need a list of ingredients required to make lamb stew", - "ingredients_list" - ], - [ - "please search for necessary ingredients included in meatballs", - "ingredients_list" - ], - [ - "can you tell me the ingredients used in pasta sauce", - "ingredients_list" - ], - [ - "do you know the ingredients used in homemade chicken soup", - "ingredients_list" - ], - [ - "i need to know what ingredients are in a french baguette", - "ingredients_list" - ], - [ - "find list of ingredients i would need to bake a funnel cake", - "ingredients_list" - ], - [ - "what are the ingredients used in chicken curry", - "ingredients_list" - ], - [ - "can you tell me what ingredients are needed for cinnamon buns", - "ingredients_list" - ], - [ - "please give me a list of the ingredients contained in chocolate cupcakes", - "ingredients_list" - ], - [ - "what ingredients do i need to make raisin bread", - "ingredients_list" - ], - [ - "what should i get to make the jamaican patties", - "ingredients_list" - ], - [ - "what do you i need to make pizza dough", - "ingredients_list" - ], - [ - "what kind of ingredients go into the chicken a la king", - "ingredients_list" - ], - [ - "what will i need to make lasagna", - "ingredients_list" - ], - [ - "whare the ingredients for the stir fry", - "ingredients_list" - ], - [ - "for pasta primavera, what ingredients will i use", - "ingredients_list" - ], - [ - "what ingredients do i need for shrimp scampi", - "ingredients_list" - ], - [ - "i need what ingredients for meatloaf", - "ingredients_list" - ], - [ - "i'll use what ingredients for lasagna", - "ingredients_list" - ], - [ - "for peppercorn steak, what ingredients do i need", - "ingredients_list" - ], - [ - "contact the bank about fraud activity on my card", - "report_fraud" - ], - [ - "i need to talk to someone about a fraudulent activity on my card", - "report_fraud" - ], - [ - "i need to report unauthorized activity on my card", - "report_fraud" - ], - [ - "looks like my card is being used by someone else, report it", - "report_fraud" - ], - [ - "there's something fishy on my card, report it", - "report_fraud" - ], - [ - "how do i report fraud on my chase bank card", - "report_fraud" - ], - [ - "someone is charging my card for playstations, and it's not me! what do i do!", - "report_fraud" - ], - [ - "help! i'm a victim of credit card fraud!", - "report_fraud" - ], - [ - "i want to report fraud on my american express", - "report_fraud" - ], - [ - "where do i report fraud on my credit card", - "report_fraud" - ], - [ - "i want to report fraudulent activity on my mastercard", - "report_fraud" - ], - [ - "i want to report fraudulent activity on my quicksilver card", - "report_fraud" - ], - [ - "i want to report fraudulent activity on my capital one", - "report_fraud" - ], - [ - "i want to report fraudulent activity on my discover card", - "report_fraud" - ], - [ - "i want to report fraudulent activity on my visa", - "report_fraud" - ], - [ - "i think there has been a fraud on my black visa card, can i report it", - "report_fraud" - ], - [ - "can you assist me on my fradulent activity on my chase card", - "report_fraud" - ], - [ - "an unauthorized transactions has been made on my gap card and i need to report it", - "report_fraud" - ], - [ - "is there anyway, i can report a suspicious activity on my citi card", - "report_fraud" - ], - [ - "i would like to report a fraud on my wells fargo card, please", - "report_fraud" - ], - [ - "what is the total number of pints in two quarts", - "measurement_conversion" - ], - [ - "can you tell me the number of ounces in a quart", - "measurement_conversion" - ], - [ - "what is the correct amount of ounces in a pound", - "measurement_conversion" - ], - [ - "how many tablespoons are there in half of a cup", - "measurement_conversion" - ], - [ - "i need to know how many teaspoons are equivalent to two tablesppons", - "measurement_conversion" - ], - [ - "give me celcius to fahrenheit", - "measurement_conversion" - ], - [ - "what's the equivalent of 1 cup to pounds", - "measurement_conversion" - ], - [ - "i need kilograms to milligrams", - "measurement_conversion" - ], - [ - "how do i convert a cup to ml", - "measurement_conversion" - ], - [ - "give me kilograms to pounds", - "measurement_conversion" - ], - [ - "convert 2 cups to liters", - "measurement_conversion" - ], - [ - "how many tablespoons is 5 teaspoons", - "measurement_conversion" - ], - [ - "how many teaspoons in one tablespoon", - "measurement_conversion" - ], - [ - "how many ounces is 2 and half cups", - "measurement_conversion" - ], - [ - "how many gallons is 50 liters", - "measurement_conversion" - ], - [ - "how many ounces in a liter", - "measurement_conversion" - ], - [ - "how many ounces in a cup", - "measurement_conversion" - ], - [ - "how many ml's are in a gallon", - "measurement_conversion" - ], - [ - "how many teaspoons in an ounce", - "measurement_conversion" - ], - [ - "how many teaspoons make up in 1 tablespoon", - "measurement_conversion" - ], - [ - "could you tell me the temperature of the ac", - "smart_home" - ], - [ - "the temperature of the ac, what is it at", - "smart_home" - ], - [ - "the ac, could you tell me the temperature", - "smart_home" - ], - [ - "do you know the temperature of the ac", - "smart_home" - ], - [ - "what is it at, the ac temperature", - "smart_home" - ], - [ - "i want you to turn the tv on", - "smart_home" - ], - [ - "i need you to turn the tv on now", - "smart_home" - ], - [ - "will you please turn the tv on", - "smart_home" - ], - [ - "turn on the tv please", - "smart_home" - ], - [ - "please turn the tv on", - "smart_home" - ], - [ - "can you verify the doors are locked", - "smart_home" - ], - [ - "i'd like the lights in the garage to be turned on", - "smart_home" - ], - [ - "engage all the door locks", - "smart_home" - ], - [ - "set all doors to locked", - "smart_home" - ], - [ - "confirm the doors are locked", - "smart_home" - ], - [ - "please turn on the hallway lights", - "smart_home" - ], - [ - "check if the doors are locked", - "smart_home" - ], - [ - "secure the doors", - "smart_home" - ], - [ - "see if all the doors are locked", - "smart_home" - ], - [ - "post the living room lights on", - "smart_home" - ], - [ - "by chance would it be possible to reserve me a hotel in afghanistan at the zoo for the 10th to the 15th", - "book_hotel" - ], - [ - "is it possible for a hotel to be booked by you for me in afghanistan at the zoo for the 10th to the 15th", - "book_hotel" - ], - [ - "could you book me a hotel in afghanistan at the zoo for the 10th to the 15th", - "book_hotel" - ], - [ - "could a hotel be booked for me in afghanistan at the zoo for the 10th to the 15th", - "book_hotel" - ], - [ - "can you reserve a hotel for myself a hotel in afghanistan at the zoo for the 10th to the 15th", - "book_hotel" - ], - [ - "i need to reserve a large room or suite for 2 couples for august 15th through august 18th in seattle", - "book_hotel" - ], - [ - "i need to book a hotel room or suite for 2 adults and 2 children in orlando for july 1st through 5th", - "book_hotel" - ], - [ - "i need a hotel room for 7 people in st louis for november 3rd through 5th", - "book_hotel" - ], - [ - "i need a suite that can accommodate 3 adults and 1 child in san diego for may 15th, 16th, and 17th", - "book_hotel" - ], - [ - "show me a hotel in boise that has positive reviews", - "book_hotel" - ], - [ - "i need a hotel with good reviews in baltimore", - "book_hotel" - ], - [ - "find hotels in baltimore that have positive reviews", - "book_hotel" - ], - [ - "show me a hotel that has good reviews in kansas city", - "book_hotel" - ], - [ - "i am looking for a hotel in new york city that has good reviews", - "book_hotel" - ], - [ - "could you book me a hotel in tampa from may 2 to may 4", - "book_hotel" - ], - [ - "help me book a place to stay from may 2 to may 4 in tampa", - "book_hotel" - ], - [ - "can you make a reservation in tampa from may 2 to may 4", - "book_hotel" - ], - [ - "i want to book a hotel in tampa from may 2 to may 4", - "book_hotel" - ], - [ - "make me a reservation in tampa from may 2 to may 4", - "book_hotel" - ], - [ - "book a motel in uptown from march 3 to march 4", - "book_hotel" - ], - [ - "talk to me about where im at right now", - "current_location" - ], - [ - "can you tell me where i am", - "current_location" - ], - [ - "you need all five answers", - "current_location" - ], - [ - "give me my gps coordinates", - "current_location" - ], - [ - "pass me my gps coordinates", - "current_location" - ], - [ - "i need to know what my gps coordinates are", - "current_location" - ], - [ - "can you give me my gps coordinates", - "current_location" - ], - [ - "so what are my current gps coordinates", - "current_location" - ], - [ - "can you find the exact address for where i am currently", - "current_location" - ], - [ - "tell me what to enter into my gps for my current location", - "current_location" - ], - [ - "please tell me the address of my current location", - "current_location" - ], - [ - "i need to know the name of my current location for the tow truck", - "current_location" - ], - [ - "what is this place", - "current_location" - ], - [ - "where exactly am i at the moment", - "current_location" - ], - [ - "where am i at currently", - "current_location" - ], - [ - "what location is this", - "current_location" - ], - [ - "what are my coordinates", - "current_location" - ], - [ - "where am i on gps", - "current_location" - ], - [ - "latitude and longitude please", - "current_location" - ], - [ - "location currently, where", - "current_location" - ], - [ - "what's is the current weather forecast", - "weather" - ], - [ - "tell me the forecast", - "weather" - ], - [ - "what's the weather like", - "weather" - ], - [ - "what's the forecast for the day", - "weather" - ], - [ - "i need to know the weather", - "weather" - ], - [ - "weather forecast please", - "weather" - ], - [ - "what's today's weather", - "weather" - ], - [ - "i need to know today's forecast", - "weather" - ], - [ - "is it going to rain tomorrow", - "weather" - ], - [ - "what is the weather outside", - "weather" - ], - [ - "what will be the weather tomorrow", - "weather" - ], - [ - "what is the weather in atlanta", - "weather" - ], - [ - "what is the weather in tokyo", - "weather" - ], - [ - "what's the humidity today", - "weather" - ], - [ - "what was the temperature yesterday", - "weather" - ], - [ - "what's today's high and low", - "weather" - ], - [ - "what's the weather today", - "weather" - ], - [ - "what's the chance of rain", - "weather" - ], - [ - "how cold is it in wisconsin today", - "weather" - ], - [ - "can you tell the temperature it will tomorrow", - "weather" - ], - [ - "how much money a year do i spend in taxes", - "taxes" - ], - [ - "how much am i being taxed", - "taxes" - ], - [ - "what are my tax costs", - "taxes" - ], - [ - "what kinds of taxes am i facing", - "taxes" - ], - [ - "what's my income tax", - "taxes" - ], - [ - "what's the tax bracket for my income", - "taxes" - ], - [ - "what does it look like i will be paying in federal taxes this year", - "taxes" - ], - [ - "what do i get taxed at my income level", - "taxes" - ], - [ - "what is my tax burden", - "taxes" - ], - [ - "can you tell me what my federal tax burden is", - "taxes" - ], - [ - "how much am i taxed each year", - "taxes" - ], - [ - "do you know how much i pay in taxes", - "taxes" - ], - [ - "how much do i pay in taxes every year", - "taxes" - ], - [ - "what's my federal tax this year", - "taxes" - ], - [ - "i need to know my tax rate", - "taxes" - ], - [ - "what is the tax rate that applies to me", - "taxes" - ], - [ - "how much do i need to pay in tax", - "taxes" - ], - [ - "what's my tax rate", - "taxes" - ], - [ - "tell me my tax rate", - "taxes" - ], - [ - "what amount do i owe in taxes", - "taxes" - ], - [ - "what is the minimum amount due on my cable bill", - "min_payment" - ], - [ - "what is the minimum payment", - "min_payment" - ], - [ - "whats the minimum payment on my electric bill", - "min_payment" - ], - [ - "how little can i pay on my phone bill", - "min_payment" - ], - [ - "what is the least i can pay towards my car bill", - "min_payment" - ], - [ - "what's the least i can pay towards this bill", - "min_payment" - ], - [ - "how little can i pay towards my car insurance", - "min_payment" - ], - [ - "is there a minimum amount accepted", - "min_payment" - ], - [ - "tell me the least i can pay", - "min_payment" - ], - [ - "what is the minimum payment for comcast", - "min_payment" - ], - [ - "what is the least i can pay on my mortgage bill", - "min_payment" - ], - [ - "what would be the least i could pay on this bill", - "min_payment" - ], - [ - "could you tell me my bill's minimum payment", - "min_payment" - ], - [ - "what's the least amount i can pay on this bill", - "min_payment" - ], - [ - "what's the minimum payment on my bill", - "min_payment" - ], - [ - "what's my bill's minimum payment", - "min_payment" - ], - [ - "i'd like to know my minimum payment please", - "min_payment" - ], - [ - "what's the minimum due for my electric bill", - "min_payment" - ], - [ - "lowest amount for cable bill", - "min_payment" - ], - [ - "what is the minimum payment due on my visa", - "min_payment" - ], - [ - "set up whisper mode", - "whisper_mode" - ], - [ - "how do i go to whisper mode", - "whisper_mode" - ], - [ - "change over to whisper mode", - "whisper_mode" - ], - [ - "i need to be out of whisper mode", - "whisper_mode" - ], - [ - "i'd like to be out of whisper mode", - "whisper_mode" - ], - [ - "take me out of whisper mode", - "whisper_mode" - ], - [ - "i want to be out of whisper mode", - "whisper_mode" - ], - [ - "please use your whispering voice; i need quiet", - "whisper_mode" - ], - [ - "let's try whisper mode", - "whisper_mode" - ], - [ - "use your whisper voice", - "whisper_mode" - ], - [ - "can you please whisper", - "whisper_mode" - ], - [ - "whisper to me", - "whisper_mode" - ], - [ - "make a switch to whisper mode", - "whisper_mode" - ], - [ - "whisper please", - "whisper_mode" - ], - [ - "i need quiet; use whisper", - "whisper_mode" - ], - [ - "go into whisper mode", - "whisper_mode" - ], - [ - "engage whisper mode", - "whisper_mode" - ], - [ - "enable whisper mode", - "whisper_mode" - ], - [ - "put whisper mode on", - "whisper_mode" - ], - [ - "please use whisper mode", - "whisper_mode" - ], - [ - "quit talking", - "cancel" - ], - [ - "stop please", - "cancel" - ], - [ - "scrap", - "cancel" - ], - [ - "whats the procedure to cancel it", - "cancel" - ], - [ - "stop it", - "cancel" - ], - [ - "please abort the current process", - "cancel" - ], - [ - "cancel it", - "cancel" - ], - [ - "can you cancel it", - "cancel" - ], - [ - "hey ai cancel it now", - "cancel" - ], - [ - "cancel", - "cancel" - ], - [ - "command cancel", - "cancel" - ], - [ - "please stop it", - "cancel" - ], - [ - "abort it", - "cancel" - ], - [ - "how to cancel", - "cancel" - ], - [ - "i repeat cancel", - "cancel" - ], - [ - "please don't talk any further", - "cancel" - ], - [ - "don't talk anymore", - "cancel" - ], - [ - "i need you to stop talking", - "cancel" - ], - [ - "rescind", - "cancel" - ], - [ - "eliminate", - "cancel" - ], - [ - "if i plan on travelling to this country, do i need a visa", - "international_visa" - ], - [ - "do i need a visa if i go there", - "international_visa" - ], - [ - "for going to that country, do i need a visa", - "international_visa" - ], - [ - "does one need a visa to go there", - "international_visa" - ], - [ - "if i travel there, do i need a visa", - "international_visa" - ], - [ - "does going to taiwan require me to get an international visa", - "international_visa" - ], - [ - "if i go to brazil, do i need to get an international visa", - "international_visa" - ], - [ - "should i go to okinawa, does it require an international visa", - "international_visa" - ], - [ - "is an international visa needed to go to cyprus", - "international_visa" - ], - [ - "i want to go to china but am not sure if i need an international visa", - "international_visa" - ], - [ - "should i get an internation visa to go to switzerland", - "international_visa" - ], - [ - "does south korea require an international visa", - "international_visa" - ], - [ - "will i need an international visa to go to madagascar", - "international_visa" - ], - [ - "is an international visa needed for canada", - "international_visa" - ], - [ - "do i need an international visa to get into italy", - "international_visa" - ], - [ - "if i go to uganda, do i need an international visa", - "international_visa" - ], - [ - "do i need a travel visa for the uk", - "international_visa" - ], - [ - "am i going to need a visa for traveling to canada", - "international_visa" - ], - [ - "does canada require a visa", - "international_visa" - ], - [ - "does the uk require a travel visa", - "international_visa" - ], - [ - "is it necessary to get a shot for travel to india", - "vaccines" - ], - [ - "are there any necessary shots required before travel to thailand", - "vaccines" - ], - [ - "do i have to get a shot for travel to taiwan", - "vaccines" - ], - [ - "are shots required before traveling to brazil", - "vaccines" - ], - [ - "can i travel to south africa without getting a shot", - "vaccines" - ], - [ - "what shots are required to visit australia", - "vaccines" - ], - [ - "do i need any vaccines before traveling to brazil", - "vaccines" - ], - [ - "what shots do i need before going to africa", - "vaccines" - ], - [ - "do i need to get any shots before volunteering in the congo", - "vaccines" - ], - [ - "must i have shots before i take a trip to canada", - "vaccines" - ], - [ - "do i need to get any shots before travelling to australia", - "vaccines" - ], - [ - "should i get shots if i'm going to go to thailand", - "vaccines" - ], - [ - "do i need to get any shots before i go to brazil", - "vaccines" - ], - [ - "do i need to get any shots before visiting family in seattle", - "vaccines" - ], - [ - "do you need shots before going to russia", - "vaccines" - ], - [ - "is a shot required before traveling to mexico", - "vaccines" - ], - [ - "do i need shots before traveling to mexico", - "vaccines" - ], - [ - "do i have to get shots to enter cuba", - "vaccines" - ], - [ - "do i need to have any shots to visit chile", - "vaccines" - ], - [ - "will ecuador require proof of any shots for me to go there", - "vaccines" - ], - [ - "how many vacation days have i saved up", - "pto_balance" - ], - [ - "how many vacation days do i have at my disposal", - "pto_balance" - ], - [ - "how many hours of vacation have i saved up", - "pto_balance" - ], - [ - "how many vacation days have i accumulated", - "pto_balance" - ], - [ - "how many pto days are available", - "pto_balance" - ], - [ - "how much vacation do i have saved", - "pto_balance" - ], - [ - "how much vacation have i earned", - "pto_balance" - ], - [ - "what number of pto days do i have left", - "pto_balance" - ], - [ - "how many weeks of vacation do i have", - "pto_balance" - ], - [ - "how many days of vacation do i have saved", - "pto_balance" - ], - [ - "i need to know how many pto days are left", - "pto_balance" - ], - [ - "whats the number of pto days i have to my availability", - "pto_balance" - ], - [ - "how many pto days are in my possesion", - "pto_balance" - ], - [ - "what number of vacation days do i have available", - "pto_balance" - ], - [ - "what number of vacation days do i have at my disposal", - "pto_balance" - ], - [ - "could you let me know how many pto days do i have left", - "pto_balance" - ], - [ - "could you tell me how many pto days do i have left", - "pto_balance" - ], - [ - "can you let me know how many pto days do i have left", - "pto_balance" - ], - [ - "can you tell me how many pto days do i have left", - "pto_balance" - ], - [ - "what is the amount of time i can request off in the coming year", - "pto_balance" - ], - [ - "where is the closest subway entrance to me to go to brooklyn", - "directions" - ], - [ - "where is the closest red lobster to my location right now, which is 5th avenue", - "directions" - ], - [ - "i am on main street now, where is the closest bus stop to me", - "directions" - ], - [ - "i am in downtown austin where is the nearest airport", - "directions" - ], - [ - "where is the closet bus stop to go to downtown dallas", - "directions" - ], - [ - "where is the nearest walmart", - "directions" - ], - [ - "how do i get to the movie theater by bus", - "directions" - ], - [ - "how do i get to the bus stop on foot", - "directions" - ], - [ - "how do i get to new york by bus", - "directions" - ], - [ - "how do i get to the train station by bus", - "directions" - ], - [ - "how do i get to the library by foot", - "directions" - ], - [ - "how do i get to the bowling alley by foot", - "directions" - ], - [ - "how do i get to the fine arts center by foot", - "directions" - ], - [ - "where is the closest target", - "directions" - ], - [ - "how do i get to the grocery store by bus", - "directions" - ], - [ - "how do i get to san fransisco by bus", - "directions" - ], - [ - "where can i find the nearest dollar store", - "directions" - ], - [ - "how do i get to the court house on foot", - "directions" - ], - [ - "where is the nearest gas station", - "directions" - ], - [ - "where is the closest park", - "directions" - ], - [ - "spell: dessert", - "spelling" - ], - [ - "how do you spell dessert", - "spelling" - ], - [ - "tell me how to spell the word dessert", - "spelling" - ], - [ - "what is the correct spelling of the word: dessert", - "spelling" - ], - [ - "how to spell: dessert", - "spelling" - ], - [ - "can you spell the word umbrella for me", - "spelling" - ], - [ - "please spell the word umbrella", - "spelling" - ], - [ - "please tell me how to spell umbrella", - "spelling" - ], - [ - "how do you spell umbrella", - "spelling" - ], - [ - "how is the word umbrella spelled", - "spelling" - ], - [ - "how is doctor spelled", - "spelling" - ], - [ - "tell me how to spell doctor", - "spelling" - ], - [ - "please spell doctor", - "spelling" - ], - [ - "how to spell doctor", - "spelling" - ], - [ - "spell doctor", - "spelling" - ], - [ - "malignant is spelled how exactly", - "spelling" - ], - [ - "tell me how to spell malignant", - "spelling" - ], - [ - "what is the correct spelling for malignant", - "spelling" - ], - [ - "how would i go about spelling malignant", - "spelling" - ], - [ - "how should i spell malignant", - "spelling" - ], - [ - "how ya doin", - "greeting" - ], - [ - "how ya been", - "greeting" - ], - [ - "hows are ya", - "greeting" - ], - [ - "heyo", - "greeting" - ], - [ - "are you good", - "greeting" - ], - [ - "how is it going my friend", - "greeting" - ], - [ - "how you are", - "greeting" - ], - [ - "tell me how are you", - "greeting" - ], - [ - "hi what's up", - "greeting" - ], - [ - "hey what's up", - "greeting" - ], - [ - "hey how's it going", - "greeting" - ], - [ - "hi, ai", - "greeting" - ], - [ - "good morning, ai", - "greeting" - ], - [ - "how've you been", - "greeting" - ], - [ - "wassup", - "greeting" - ], - [ - "hey", - "greeting" - ], - [ - "hiya", - "greeting" - ], - [ - "how's it hanging", - "greeting" - ], - [ - "hi", - "greeting" - ], - [ - "hello", - "greeting" - ], - [ - "factory settings restoration", - "reset_settings" - ], - [ - "i need you to reset to your factor settings", - "reset_settings" - ], - [ - "can you reset to factor settings", - "reset_settings" - ], - [ - "i want you to reset to factory settings", - "reset_settings" - ], - [ - "i want to restore your factory settings", - "reset_settings" - ], - [ - "switch back to factory settings", - "reset_settings" - ], - [ - "i want you to go back to factory settings", - "reset_settings" - ], - [ - "restore factory settings", - "reset_settings" - ], - [ - "i want a clean bootup to factory settings", - "reset_settings" - ], - [ - "change back to factory settings", - "reset_settings" - ], - [ - "reset to factory settings", - "reset_settings" - ], - [ - "go back to default settings", - "reset_settings" - ], - [ - "now i'd like for you to return to the original settings", - "reset_settings" - ], - [ - "can you now please go back to the original settings", - "reset_settings" - ], - [ - "please revert to the original settings", - "reset_settings" - ], - [ - "now restore the original settings", - "reset_settings" - ], - [ - "configure this to factory settings", - "reset_settings" - ], - [ - "make my settings go back to their factory settings", - "reset_settings" - ], - [ - "set this to my factory settings", - "reset_settings" - ], - [ - "change to factory settings", - "reset_settings" - ], - [ - "what may i call you", - "what_is_your_name" - ], - [ - "what was your name again", - "what_is_your_name" - ], - [ - "your name is", - "what_is_your_name" - ], - [ - "whats your name by the way", - "what_is_your_name" - ], - [ - "what's your name if i may ask", - "what_is_your_name" - ], - [ - "what is your name by chance", - "what_is_your_name" - ], - [ - "what is your names", - "what_is_your_name" - ], - [ - "what exactly is your name", - "what_is_your_name" - ], - [ - "what's the name i should use to talk to you", - "what_is_your_name" - ], - [ - "what is your given name", - "what_is_your_name" - ], - [ - "what's the name you like to be called", - "what_is_your_name" - ], - [ - "what's the name you were given", - "what_is_your_name" - ], - [ - "can i ask your name", - "what_is_your_name" - ], - [ - "do you mind if i ask your name", - "what_is_your_name" - ], - [ - "do you have a nickname", - "what_is_your_name" - ], - [ - "what do you go by", - "what_is_your_name" - ], - [ - "what do you call yourself", - "what_is_your_name" - ], - [ - "i'd like to know your name", - "what_is_your_name" - ], - [ - "your name please", - "what_is_your_name" - ], - [ - "can i have your name", - "what_is_your_name" - ], - [ - "how do i set up direct deposit for my first national account", - "direct_deposit" - ], - [ - "how do i set up direct deposit for my fifth third account", - "direct_deposit" - ], - [ - "how do i set up direct deposit for my cefcu account", - "direct_deposit" - ], - [ - "how do i set up direct deposit for my old national account", - "direct_deposit" - ], - [ - "how do i set up direct deposit for my bank of america account", - "direct_deposit" - ], - [ - "what might i need to do to direct deposit my paycheck", - "direct_deposit" - ], - [ - "what information do i need to direct deposit my paycheck", - "direct_deposit" - ], - [ - "how do i go about getting direct deposit in my usaa account", - "direct_deposit" - ], - [ - "does my td ameritrade checking account take direct deposit", - "direct_deposit" - ], - [ - "if i want to direct deposit my paycheck, what info do i need", - "direct_deposit" - ], - [ - "direct deposit my paycheck to my capital one account", - "direct_deposit" - ], - [ - "i'd like direct deposit to my chase bank account", - "direct_deposit" - ], - [ - "i want to set up direct deposit to my charles schwab account", - "direct_deposit" - ], - [ - "how do i go about setting up paycheck direct deposit", - "direct_deposit" - ], - [ - "link up my paycheck for direct deposit to my account at chase", - "direct_deposit" - ], - [ - "please assist me in linking my chase account to direct deposit for my paycheck", - "direct_deposit" - ], - [ - "please show me how to set up my paycheck for direct deposit to my chase account", - "direct_deposit" - ], - [ - "tell me the easiest way to set up direct deposit of my paycheck to my chase account", - "direct_deposit" - ], - [ - "help me get my paycheck set up for direct deposit to my chase account", - "direct_deposit" - ], - [ - "how can i learn how to use direct deposit", - "direct_deposit" - ], - [ - "what kind of interest can i expect with my chase account", - "interest_rate" - ], - [ - "how much interest am i getting in my citibank savings", - "interest_rate" - ], - [ - "how much interest do i get on my citizen's savings account", - "interest_rate" - ], - [ - "what kind of interest am i getting from my bank of america checking", - "interest_rate" - ], - [ - "what's my interest rate with my capital one account", - "interest_rate" - ], - [ - "what is walker bank paying me in interest on my account", - "interest_rate" - ], - [ - "where do i go to get private client account's interest rate", - "interest_rate" - ], - [ - "what interest rate am i getting currently from oak bank", - "interest_rate" - ], - [ - "how much interest am i getting percentage wise from chase", - "interest_rate" - ], - [ - "what is my interest rate for my scotiabank account", - "interest_rate" - ], - [ - "where can i find my voca account's interest rate", - "interest_rate" - ], - [ - "how can i find the current interest rate for my account ending in 9012", - "interest_rate" - ], - [ - "what interest rate is us bank giving me on my acount", - "interest_rate" - ], - [ - "where do i find the interest rate for my platinum account", - "interest_rate" - ], - [ - "where can i locate the pnc account's interest rate", - "interest_rate" - ], - [ - "what is the interest rate on my auto loan", - "interest_rate" - ], - [ - "how much is the interest rate on my home equity loan", - "interest_rate" - ], - [ - "tell me what the interest rate is on my personal loan through chase", - "interest_rate" - ], - [ - "whats the amount of interest i'm paying on my mortgage", - "interest_rate" - ], - [ - "what is the interest rate at pnc", - "interest_rate" - ], - [ - "how do i change my credit limit", - "credit_limit_change" - ], - [ - "how can up my credit limit", - "credit_limit_change" - ], - [ - "how can i make a change to my credit limit", - "credit_limit_change" - ], - [ - "can i make a change to my credit limit", - "credit_limit_change" - ], - [ - "how do i increse my credit limit", - "credit_limit_change" - ], - [ - "is there a way to increase the limit of my credit to 5000 dollars", - "credit_limit_change" - ], - [ - "i would like to have my credit increased to 5000 dollars", - "credit_limit_change" - ], - [ - "i want to increase my credit limit to 5000 dollars", - "credit_limit_change" - ], - [ - "could my credit be increased to 5000 dollars", - "credit_limit_change" - ], - [ - "i need my credit limit changed", - "credit_limit_change" - ], - [ - "the credit limit i have needs to be changed", - "credit_limit_change" - ], - [ - "can you help me change my credit limit", - "credit_limit_change" - ], - [ - "my credit limit needs to me changed", - "credit_limit_change" - ], - [ - "i would like my credit limit increased to 5000 dollars", - "credit_limit_change" - ], - [ - "i would like to change my credit limit", - "credit_limit_change" - ], - [ - "can i increase my credit limit", - "credit_limit_change" - ], - [ - "raise my credit limit", - "credit_limit_change" - ], - [ - "increase my credit limit", - "credit_limit_change" - ], - [ - "i'd like to increase my credit limit", - "credit_limit_change" - ], - [ - "can you help me increase my credit limit", - "credit_limit_change" - ], - [ - "do you have hobbies", - "what_are_your_hobbies" - ], - [ - "tell me about your hobbies", - "what_are_your_hobbies" - ], - [ - "are you involved in hobbies", - "what_are_your_hobbies" - ], - [ - "what recreational activities do you enjoy", - "what_are_your_hobbies" - ], - [ - "what do you do as a hobby", - "what_are_your_hobbies" - ], - [ - "what do you like to do in your free time", - "what_are_your_hobbies" - ], - [ - "what are your hobbies", - "what_are_your_hobbies" - ], - [ - "what hobbies do you have", - "what_are_your_hobbies" - ], - [ - "when you have free time, what do you do", - "what_are_your_hobbies" - ], - [ - "what do you do in your spare time siri", - "what_are_your_hobbies" - ], - [ - "what hobbies do you have alexa", - "what_are_your_hobbies" - ], - [ - "what are your hobbies siri", - "what_are_your_hobbies" - ], - [ - "what do you do for fun alexa", - "what_are_your_hobbies" - ], - [ - "what activities do you enjoy", - "what_are_your_hobbies" - ], - [ - "what do you do with your free time", - "what_are_your_hobbies" - ], - [ - "what are you interested in", - "what_are_your_hobbies" - ], - [ - "what are you\u2019re hobbies, ai", - "what_are_your_hobbies" - ], - [ - "what do you find fun", - "what_are_your_hobbies" - ], - [ - "which hobbies do you like", - "what_are_your_hobbies" - ], - [ - "what are your interests", - "what_are_your_hobbies" - ], - [ - "can you find me a round trip flight from denver international to new york international on the 3rd through the 7th", - "book_flight" - ], - [ - "can you look for a denver international to new york international round trip flight for the 5th though 8th", - "book_flight" - ], - [ - "can you find me a flight from denver international to new york international on the 4th for under 700 dollars", - "book_flight" - ], - [ - "for under 700 i need a flight from denver international to new york international on the 3rd", - "book_flight" - ], - [ - "i need a flight from denver international to new york international round trip for the 4th though the 8th", - "book_flight" - ], - [ - "i want to find a round trip flight from denver international to new york international on the 8th to the 16th", - "book_flight" - ], - [ - "i need a flight from denver international to new york for under 700 on the 3rd", - "book_flight" - ], - [ - "i want to find a flight for under 700 on the 4th from denver international to new york international", - "book_flight" - ], - [ - "on the third i am looking for a flight for under 700 from denver international to new york international", - "book_flight" - ], - [ - "i need a flight from the 3rd to the 7th round rip from denver international to new york international", - "book_flight" - ], - [ - "find me a flight from philly to atl for june 5th to 8th", - "book_flight" - ], - [ - "get me flight from philly to atlanta on june 5th i'm coming back june 8th", - "book_flight" - ], - [ - "book a flight from philadelphia to atlanta on june 5th and returning on june 8th", - "book_flight" - ], - [ - "i need an airline ticket for a round trip flight from philadelphia to atlanta for the dates of june 5 - 8", - "book_flight" - ], - [ - "need airplane ridge from philadelphia to atlanta leaving on the 5th of june and returning on the 8th of june", - "book_flight" - ], - [ - "i'm looking for a back and forth flight from lax to portland for w to sunday", - "book_flight" - ], - [ - "i'm exploring a possible cycle flight from yyz to dublin for w to aug two", - "book_flight" - ], - [ - "i'm seeking a full circle flight from msy to msp for w to june 7", - "book_flight" - ], - [ - "i'm searching for a 2-way flight from yqg to heathrow for w to memorial day", - "book_flight" - ], - [ - "i'm striving to find a 2-way flight from jfk to dtw for w to july 3", - "book_flight" - ], - [ - "will you please read the things on my shopping list", - "shopping_list" - ], - [ - "what is on my shopping list", - "shopping_list" - ], - [ - "can you read the things to me that are on my shopping list", - "shopping_list" - ], - [ - "can you read the things on my shopping list", - "shopping_list" - ], - [ - "is it possible for you to read the things on my shopping list", - "shopping_list" - ], - [ - "did i add salt to my shopping list", - "shopping_list" - ], - [ - "do i have toothpaste on my shopping list", - "shopping_list" - ], - [ - "is there lettuce on my shopping list", - "shopping_list" - ], - [ - "did i include butter in my shopping list", - "shopping_list" - ], - [ - "did i put elbow noodles on the shopping list", - "shopping_list" - ], - [ - "did i forget to put protein shakes on my shopping list", - "shopping_list" - ], - [ - "do i have butter on my list", - "shopping_list" - ], - [ - "is waffles on my list for shopping", - "shopping_list" - ], - [ - "do i already have cereal on my shopping list", - "shopping_list" - ], - [ - "did i remember to add milk to my shopping list", - "shopping_list" - ], - [ - "check my shopping list", - "shopping_list" - ], - [ - "read my shopping list", - "shopping_list" - ], - [ - "shopping list", - "shopping_list" - ], - [ - "what do i need to buy", - "shopping_list" - ], - [ - "did i remember to put eggs on my shopping list", - "shopping_list" - ], - [ - "send a text to joe", - "text" - ], - [ - "i need to text joe", - "text" - ], - [ - "text joe", - "text" - ], - [ - "send joe a text", - "text" - ], - [ - "text john with the message 'where are you", - "text" - ], - [ - "please send a text to danny saying that i'm running late", - "text" - ], - [ - "text mom saying happy birthday", - "text" - ], - [ - "text mollie saying 'i am on my way", - "text" - ], - [ - "i need you to text mickey saying 'can we reschedule", - "text" - ], - [ - "send message to carl, you suck", - "text" - ], - [ - "let carl know that he sucks", - "text" - ], - [ - "message carl, you suck", - "text" - ], - [ - "tell carl that he sucks", - "text" - ], - [ - "inform carl that he is an awful human being", - "text" - ], - [ - "send robert a text from me telling him okay", - "text" - ], - [ - "i need leslie to be texted saying have a good day", - "text" - ], - [ - "i want a text sent to bob saying i will be late", - "text" - ], - [ - "write a text to kim saying no", - "text" - ], - [ - "send a text to mom saying i'm on my way", - "text" - ], - [ - "robbie needs to know aboutthis so would you text robbie to let them know", - "text" - ], - [ - "how much is my kill bill bill for", - "bill_balance" - ], - [ - "what is the amount i owe on my phone", - "bill_balance" - ], - [ - "what is the total of my repair bill", - "bill_balance" - ], - [ - "how much is due on the gas bill", - "bill_balance" - ], - [ - "what do i owe on telephone and cable bill", - "bill_balance" - ], - [ - "how much do i have left to pay on my server and domain", - "bill_balance" - ], - [ - "what's the amount due on my vet and vehicle registration bills", - "bill_balance" - ], - [ - "what do my bills look like for amazon and netflix", - "bill_balance" - ], - [ - "how much do i have to pay on taxes and cable", - "bill_balance" - ], - [ - "how much do i owe on all of my bills", - "bill_balance" - ], - [ - "how much do i have to pay for my shell gas card bill", - "bill_balance" - ], - [ - "what is the total of all my bills combined", - "bill_balance" - ], - [ - "can you tell me how much i need to pay on my bills this month", - "bill_balance" - ], - [ - "how much is my bill for capital one", - "bill_balance" - ], - [ - "what is the total amount i am going to have to pay in bills this month", - "bill_balance" - ], - [ - "how much do i have to pay on my amazon card this month", - "bill_balance" - ], - [ - "how much do my bills cost this month", - "bill_balance" - ], - [ - "how much is my xfinity cable bill", - "bill_balance" - ], - [ - "what is the amount i owe to clay electric", - "bill_balance" - ], - [ - "could you tell me the amount owed on gas and electric", - "bill_balance" - ], - [ - "give my location to stan", - "share_location" - ], - [ - "i'd like to share my location with stephanie", - "share_location" - ], - [ - "i would like brenda to have my location", - "share_location" - ], - [ - "let lisa know where i am now", - "share_location" - ], - [ - "i want david to know where i'm at", - "share_location" - ], - [ - "can you share my location with roger", - "share_location" - ], - [ - "can you send my exact location to laura", - "share_location" - ], - [ - "share my location with apple", - "share_location" - ], - [ - "share my location with google", - "share_location" - ], - [ - "send mike my exact location", - "share_location" - ], - [ - "send my current location to steve, please", - "share_location" - ], - [ - "steve needs to know my location", - "share_location" - ], - [ - "i'd like to send steve my location", - "share_location" - ], - [ - "share my location with steve", - "share_location" - ], - [ - "i need to send my location to my friend steve", - "share_location" - ], - [ - "give arianna my current location", - "share_location" - ], - [ - "share with current location with ben", - "share_location" - ], - [ - "show my gps location to brittany", - "share_location" - ], - [ - "give my gps location to jason", - "share_location" - ], - [ - "share my gps with tom", - "share_location" - ], - [ - "cash in my credit card rewards", - "redeem_rewards" - ], - [ - "convert my credit card points to cash", - "redeem_rewards" - ], - [ - "cash in my credit card points", - "redeem_rewards" - ], - [ - "where i can use credit card points", - "redeem_rewards" - ], - [ - "redeem credit card points", - "redeem_rewards" - ], - [ - "how to use credit card points", - "redeem_rewards" - ], - [ - "what can i buy with credit card points", - "redeem_rewards" - ], - [ - "please redeem my credit card points", - "redeem_rewards" - ], - [ - "redeem my credit card rewards into my account", - "redeem_rewards" - ], - [ - "help with credit card points", - "redeem_rewards" - ], - [ - "what should i use the points from my credit card on", - "redeem_rewards" - ], - [ - "how do i cash in credit card points", - "redeem_rewards" - ], - [ - "i have credit card points, how do i redeem them", - "redeem_rewards" - ], - [ - "where do i redeem my credit card points", - "redeem_rewards" - ], - [ - "i would like to find out how to cash out cred card points", - "redeem_rewards" - ], - [ - "how to cash in visa card rewards", - "redeem_rewards" - ], - [ - "how can i cash in my visa rewards", - "redeem_rewards" - ], - [ - "how do you get your visa card rewards", - "redeem_rewards" - ], - [ - "how do i get rewards from my visa card", - "redeem_rewards" - ], - [ - "how do i get my rewards from my visa card", - "redeem_rewards" - ], - [ - "let me hear the song sympathy for the devil", - "play_music" - ], - [ - "please start the song penny lane", - "play_music" - ], - [ - "i want to hear satisfaction", - "play_music" - ], - [ - "fetch the song smells like teen spirit and play it", - "play_music" - ], - [ - "i am in the mood to listen to mack the knife", - "play_music" - ], - [ - "can you play the song that sounds like thun thun thun", - "play_music" - ], - [ - "play the song that goes like i like to move it, move it", - "play_music" - ], - [ - "can you play the song amazing grace and it goes like this, amazing grace how sweet the sound", - "play_music" - ], - [ - "please play the song that goes like america the beautiful", - "play_music" - ], - [ - "please play the song that goes like this: jingle bells jingle bells jingle all the way", - "play_music" - ], - [ - "can you play music by the beatles", - "play_music" - ], - [ - "can you play the beatles", - "play_music" - ], - [ - "are you able to play beatles songs", - "play_music" - ], - [ - "can i hear the beatles", - "play_music" - ], - [ - "do you have any of the beatles music", - "play_music" - ], - [ - "can you play the song that starts with doo doo doo", - "play_music" - ], - [ - "can i hear the song that starts out doo doo doo", - "play_music" - ], - [ - "please play me the song that starts out with doo doo doo", - "play_music" - ], - [ - "please play the song that goes doo doo doo", - "play_music" - ], - [ - "can you play the song that goes doo doo doo", - "play_music" - ], - [ - "you can remove the field trip from my calendar for march 12, 2019", - "calendar_update" - ], - [ - "you can remove the wedding from my calendar for march 12, 2019", - "calendar_update" - ], - [ - "you can remove the play date from my calendar for feb 18, 2019", - "calendar_update" - ], - [ - "you can remove the dinner party from my calendar for january 21, 2019", - "calendar_update" - ], - [ - "you can remove the brithday party from my calendar fpr january 15, 2019", - "calendar_update" - ], - [ - "put cancel abc on my calendar for next thursday", - "calendar_update" - ], - [ - "i need to add iep meeting to my calendar on april 15th", - "calendar_update" - ], - [ - "add my next doctor visit to my calendar", - "calendar_update" - ], - [ - "add swimming to my calendar today", - "calendar_update" - ], - [ - "i have an appointment on the 5th put it on for 5pm", - "calendar_update" - ], - [ - "for friday, add a doctor's appointment to my calendar", - "calendar_update" - ], - [ - "can you add a doctor's appointment to friday's calendar", - "calendar_update" - ], - [ - "add to my friday calendar a doctor's appointment", - "calendar_update" - ], - [ - "add a doctor's appointment to my calendar for friday", - "calendar_update" - ], - [ - "add to friday's calendar a doctor's appointment", - "calendar_update" - ], - [ - "mark my calendar that i will be meeting steven on march 5", - "calendar_update" - ], - [ - "on the 22nd of this month, we need to clear our calendar so we can leave it open for mark to visit", - "calendar_update" - ], - [ - "can you remove that event from my calendar, please", - "calendar_update" - ], - [ - "can you remove this event from my calendar", - "calendar_update" - ], - [ - "can you remove this event from my calendar, please", - "calendar_update" - ], - [ - "are you secretly real", - "are_you_a_bot" - ], - [ - "i would like to know if you are a robot", - "are_you_a_bot" - ], - [ - "you could tell me if you were real", - "are_you_a_bot" - ], - [ - "i would like to know if you are an artificial intelligence being", - "are_you_a_bot" - ], - [ - "do you consider yourself an artificial intelligence being", - "are_you_a_bot" - ], - [ - "can you act and think like a real person", - "are_you_a_bot" - ], - [ - "could you be a real person", - "are_you_a_bot" - ], - [ - "clear something up, are you a robot", - "are_you_a_bot" - ], - [ - "are you a human being or a computer", - "are_you_a_bot" - ], - [ - "can you tell me if you are a real live person", - "are_you_a_bot" - ], - [ - "am i speaking with a real person", - "are_you_a_bot" - ], - [ - "are you an actual human", - "are_you_a_bot" - ], - [ - "would you be classified as a bot", - "are_you_a_bot" - ], - [ - "would it be accurate to call you a bot", - "are_you_a_bot" - ], - [ - "would you say you are a bot", - "are_you_a_bot" - ], - [ - "i am curious to know if you are a bot", - "are_you_a_bot" - ], - [ - "are you an actual live person", - "are_you_a_bot" - ], - [ - "please tell me if you are a bot", - "are_you_a_bot" - ], - [ - "are you a robot", - "are_you_a_bot" - ], - [ - "can you tell me what kind of life form you are", - "are_you_a_bot" - ], - [ - "what is the gas level in my gas tank", - "gas" - ], - [ - "is my gas tank full or empty", - "gas" - ], - [ - "do i have enough gas to take me home", - "gas" - ], - [ - "should i a gas refill for my car at the next gas station", - "gas" - ], - [ - "can you inform me of my gas amount", - "gas" - ], - [ - "calculate the amount of gas i currently have", - "gas" - ], - [ - "how many gallons of gas are in my car", - "gas" - ], - [ - "what amount of gas do i have left", - "gas" - ], - [ - "how much gas does my car currently have", - "gas" - ], - [ - "how much gas do i have", - "gas" - ], - [ - "how much fuel do i have left", - "gas" - ], - [ - "what's left in the tank", - "gas" - ], - [ - "how much gas do i have left", - "gas" - ], - [ - "how long before i'm on e", - "gas" - ], - [ - "do i have enough fuel to get to buffalo", - "gas" - ], - [ - "how much gas do i need to get to buffalo", - "gas" - ], - [ - "do i have enough gas to get to buffalo", - "gas" - ], - [ - "how much fuel do i need to get to buffalo", - "gas" - ], - [ - "how much gas do you have will you make it to jackson", - "gas" - ], - [ - "how much gas does it take to get to jackson", - "gas" - ], - [ - "what is the date that my visa card expires", - "expiration_date" - ], - [ - "tell me the expiration date on my visa credit card please", - "expiration_date" - ], - [ - "tell me when my credit card from visa expires please", - "expiration_date" - ], - [ - "do you know the expiration date that is on my visa card", - "expiration_date" - ], - [ - "can you find the expiration date and tell me what it is that is on my visa credit card", - "expiration_date" - ], - [ - "will i need to renew my credit card soon", - "expiration_date" - ], - [ - "when will my visa expire", - "expiration_date" - ], - [ - "will my debit card go bad any time soon", - "expiration_date" - ], - [ - "what is my expiration data for my card", - "expiration_date" - ], - [ - "when will my card go rotten", - "expiration_date" - ], - [ - "will my card expire on a certain month", - "expiration_date" - ], - [ - "when is my cards end month", - "expiration_date" - ], - [ - "what month does my card stop working", - "expiration_date" - ], - [ - "my card will work until what month", - "expiration_date" - ], - [ - "what month does my card close", - "expiration_date" - ], - [ - "when do i need a new credit card", - "expiration_date" - ], - [ - "in what month does my credit card expire", - "expiration_date" - ], - [ - "when is my credit card set to expire", - "expiration_date" - ], - [ - "i need to know when my credit card is going to expire", - "expiration_date" - ], - [ - "tell me when my credit card expires", - "expiration_date" - ], - [ - "add this song to travel", - "update_playlist" - ], - [ - "add song to media playlist", - "update_playlist" - ], - [ - "add song to my hype playlist", - "update_playlist" - ], - [ - "put song in springtime playlist", - "update_playlist" - ], - [ - "put we are the champions to my running playlist", - "update_playlist" - ], - [ - "put on bended knee on my reflection playlist", - "update_playlist" - ], - [ - "please place this track on my driving mix", - "update_playlist" - ], - [ - "please add this song to my morning job playlist", - "update_playlist" - ], - [ - "i'd like to augment my workout playlist with this tune", - "update_playlist" - ], - [ - "i'd like to add this song to my relaxation playlist", - "update_playlist" - ], - [ - "add games without frontiers to my week 5 playlist", - "update_playlist" - ], - [ - "i want to put thank you on my playlist called relaxing jams", - "update_playlist" - ], - [ - "can you put the currently playing track on my zen playlist", - "update_playlist" - ], - [ - "add welcome to the jungle to my workout mix", - "update_playlist" - ], - [ - "i want you to add the song i listen to to my summer playlist", - "update_playlist" - ], - [ - "add what i listen to to my car ride playlist", - "update_playlist" - ], - [ - "please add what i listen to to my lolla playlist", - "update_playlist" - ], - [ - "can you help me add the song i listen to to my clutch playlist", - "update_playlist" - ], - [ - "add what i am listening to to my road trip playlist", - "update_playlist" - ], - [ - "put this in my workout playlist", - "update_playlist" - ], - [ - "i would like to cancel my reservation for nenuco's restaurant to x- tapas", - "cancel_reservation" - ], - [ - "i need my reservation to be cancelled for nugget to xiomara's restaurant", - "cancel_reservation" - ], - [ - "i need to cancel my reservation for new york to xai varanda", - "cancel_reservation" - ], - [ - "i want to cancel my reservation for network to xaga such", - "cancel_reservation" - ], - [ - "forget reservation at longhorn for 4", - "cancel_reservation" - ], - [ - "forget reservation at oyster bar for tonight", - "cancel_reservation" - ], - [ - "cancel my reservation at osteria for our party", - "cancel_reservation" - ], - [ - "scrap reservation at 4 for red robin", - "cancel_reservation" - ], - [ - "cancel reservation at eight for the group", - "cancel_reservation" - ], - [ - "i'd like to cancel my reservation for 5 at hoss's steak house", - "cancel_reservation" - ], - [ - "please cancel my reservation at red lobster for 6", - "cancel_reservation" - ], - [ - "i need to cancel my reservation for 2 at franklin's grille", - "cancel_reservation" - ], - [ - "cancel that reservation for 8 at barney's", - "cancel_reservation" - ], - [ - "nix that reservation for 4 at strip house", - "cancel_reservation" - ], - [ - "undo my reservation for 5 at the loft", - "cancel_reservation" - ], - [ - "i no longer want my reservation for 5 at the loft cancel it please", - "cancel_reservation" - ], - [ - "hey siri, please cancel my reservation at the loft for 5", - "cancel_reservation" - ], - [ - "i don't need my reservation for 5 at the loft please cancel it", - "cancel_reservation" - ], - [ - "cancel my reservation for 5 at the loft", - "cancel_reservation" - ], - [ - "carla doesn't want her olive garden reservation anymore", - "cancel_reservation" - ], - [ - "what's the funniest thing you've got", - "tell_joke" - ], - [ - "let me hear something funny", - "tell_joke" - ], - [ - "i want to hear anything you have that's funny", - "tell_joke" - ], - [ - "i want to hear something hilarious", - "tell_joke" - ], - [ - "tell me your funniest joke", - "tell_joke" - ], - [ - "do you have any funny jokes", - "tell_joke" - ], - [ - "give me your best joke", - "tell_joke" - ], - [ - "tell my something funny", - "tell_joke" - ], - [ - "tell me something to make me laugh", - "tell_joke" - ], - [ - "i'm in the mood for a joke", - "tell_joke" - ], - [ - "could you tell me a good joke", - "tell_joke" - ], - [ - "do you have any funny jokes you can tell", - "tell_joke" - ], - [ - "have you heard any great jokes lately", - "tell_joke" - ], - [ - "do you know any good jokes you would like to share", - "tell_joke" - ], - [ - "what sort of jokes do you know", - "tell_joke" - ], - [ - "i want to hear doctor jokes", - "tell_joke" - ], - [ - "do you know any jokes about librarians", - "tell_joke" - ], - [ - "tell me a funny joke about men", - "tell_joke" - ], - [ - "can you tell me a joke about a lawyer", - "tell_joke" - ], - [ - "i want to hear jokes about toddlers", - "tell_joke" - ], - [ - "can i start calling you dave", - "change_ai_name" - ], - [ - "i want to change your name to sarah", - "change_ai_name" - ], - [ - "i want to call you maggie", - "change_ai_name" - ], - [ - "can i change you name to gretchen", - "change_ai_name" - ], - [ - "i'd like to call you alex", - "change_ai_name" - ], - [ - "can i call you adam instead of the current name", - "change_ai_name" - ], - [ - "i will now call you adam instead of your old name", - "change_ai_name" - ], - [ - "will you respond to adam instead of the current name", - "change_ai_name" - ], - [ - "i want to change your name to adam", - "change_ai_name" - ], - [ - "i want to start calling you adam", - "change_ai_name" - ], - [ - "i want your name to be gerry", - "change_ai_name" - ], - [ - "i want your name to be henry", - "change_ai_name" - ], - [ - "i want your name to be john", - "change_ai_name" - ], - [ - "make your name jake", - "change_ai_name" - ], - [ - "make your name steve", - "change_ai_name" - ], - [ - "i would like to change your name to fred", - "change_ai_name" - ], - [ - "i think i want your name changed to fred", - "change_ai_name" - ], - [ - "can you have your name changed to fred", - "change_ai_name" - ], - [ - "can you change your name to fred", - "change_ai_name" - ], - [ - "change your name to fred", - "change_ai_name" - ], - [ - "what is your age again", - "how_old_are_you" - ], - [ - "how old are you in 2019", - "how_old_are_you" - ], - [ - "what's your birthday", - "how_old_are_you" - ], - [ - "were you born in the 80s", - "how_old_are_you" - ], - [ - "how old were you on your most recent birthday", - "how_old_are_you" - ], - [ - "what day were you born", - "how_old_are_you" - ], - [ - "what is your current age", - "how_old_are_you" - ], - [ - "how old are you as of today", - "how_old_are_you" - ], - [ - "what you age on your last birthday", - "how_old_are_you" - ], - [ - "how many birthdays have you had", - "how_old_are_you" - ], - [ - "how many years have you been living", - "how_old_are_you" - ], - [ - "hey how old are you", - "how_old_are_you" - ], - [ - "do you have an age", - "how_old_are_you" - ], - [ - "i was wondering what age you are", - "how_old_are_you" - ], - [ - "in what year were you born", - "how_old_are_you" - ], - [ - "what is your date of birth", - "how_old_are_you" - ], - [ - "what year were you born in", - "how_old_are_you" - ], - [ - "what is the year that were you born", - "how_old_are_you" - ], - [ - "how old are you ai", - "how_old_are_you" - ], - [ - "are you 16 years old", - "how_old_are_you" - ], - [ - "i need a car rental this week", - "car_rental" - ], - [ - "i am going away and need to rent a car", - "car_rental" - ], - [ - "help me find a car to rent", - "car_rental" - ], - [ - "can you get me a car rental for march 1st to 3rd in seattle, and i'd like a sedan if possible", - "car_rental" - ], - [ - "help me book a car rental in austin for april 11th to 13th get me a sedan if possible", - "car_rental" - ], - [ - "can you get me a car rental for march 13th to 15th in nyc, and i'd like a convertible if possible", - "car_rental" - ], - [ - "help me book a car rental in chicago for april 1st to 3rd get me an suv if possible", - "car_rental" - ], - [ - "i need to book a car rental in las vegas", - "car_rental" - ], - [ - "i'm looking for assistance booking a rental car in las vegas", - "car_rental" - ], - [ - "could i get assistance booking a car rental in las vegas", - "car_rental" - ], - [ - "how can i rent a car in las vegas", - "car_rental" - ], - [ - "can you help me rent a car in las vegas", - "car_rental" - ], - [ - "can i get a car rental in boise from april 11th to april 13th", - "car_rental" - ], - [ - "how can i rent a ride in alaska from march 5th to march 18th", - "car_rental" - ], - [ - "where do i rent a car in las vegas from november 16th to december 16th", - "car_rental" - ], - [ - "can i rent a car from dfw airport from march 1st to march 8th", - "car_rental" - ], - [ - "do you have a car rental in new york from june 6th to june 9th", - "car_rental" - ], - [ - "i must procure a car rental for the 10th to the 15th in zimbabwe and i would prefer a bmw", - "car_rental" - ], - [ - "i really must rent a car out of sky harbor airport from the 3rd to the 5th of february", - "car_rental" - ], - [ - "i really need to get a volkswagen car rental for march 5th to march 8th in phoenix", - "car_rental" - ], - [ - "how can i jump start my car if my battery is dead", - "jump_start" - ], - [ - "will a jump start work if my batter is dead", - "jump_start" - ], - [ - "how to jump start a car", - "jump_start" - ], - [ - "what do i need to jump start a battery", - "jump_start" - ], - [ - "how do i jump start a bad battery", - "jump_start" - ], - [ - "what steps do i need to take to jump start my car", - "jump_start" - ], - [ - "i'm not sure how to jump start a car; can you help me", - "jump_start" - ], - [ - "how do i do a jump start on my car", - "jump_start" - ], - [ - "how might i go about jump starting a car", - "jump_start" - ], - [ - "how can i jump start a car", - "jump_start" - ], - [ - "can you tell me how to jump start a car", - "jump_start" - ], - [ - "how can i jump start my car", - "jump_start" - ], - [ - "show me instructions on how to jump start my car", - "jump_start" - ], - [ - "teach me how to jump start my car", - "jump_start" - ], - [ - "what do i need in order to jump start my car", - "jump_start" - ], - [ - "do i need jumper cables for my dead car battery", - "jump_start" - ], - [ - "who can jump off my dead car battery", - "jump_start" - ], - [ - "my car battery died and i need help", - "jump_start" - ], - [ - "can i get my car jumped for this dead battery", - "jump_start" - ], - [ - "there is no juice in my battery please help", - "jump_start" - ], - [ - "can you give me a chinese meal suggestion", - "meal_suggestion" - ], - [ - "i would like you to suggest a chinese dish", - "meal_suggestion" - ], - [ - "please suggest a chinese meal", - "meal_suggestion" - ], - [ - "i would like you to give me a suggestion for a mexican meal", - "meal_suggestion" - ], - [ - "can you suggest a mexican dish", - "meal_suggestion" - ], - [ - "i need some good suggestions for peruvian cuisine", - "meal_suggestion" - ], - [ - "help me find some new dinner recipes", - "meal_suggestion" - ], - [ - "what would you say is a good german dinner idea", - "meal_suggestion" - ], - [ - "i need an italian dinner idea", - "meal_suggestion" - ], - [ - "any recommendations for a greek dinner", - "meal_suggestion" - ], - [ - "what would you say is the best meal to have for dinner", - "meal_suggestion" - ], - [ - "i am bored and need new dinner recommendations", - "meal_suggestion" - ], - [ - "i need an idea for a french dinner", - "meal_suggestion" - ], - [ - "whats a good chinese dinner suggestion", - "meal_suggestion" - ], - [ - "what would you suggest having for dinner", - "meal_suggestion" - ], - [ - "i need to quick dinner suggestions", - "meal_suggestion" - ], - [ - "what kind of meal should i eat from thailand", - "meal_suggestion" - ], - [ - "suggest a meal from thailand please", - "meal_suggestion" - ], - [ - "suggestions for thai food", - "meal_suggestion" - ], - [ - "give recommendations for thai food", - "meal_suggestion" - ], - [ - "i would like to learn to make cookies", - "recipe" - ], - [ - "show me popular sushi recipes", - "recipe" - ], - [ - "i need a pancake recipe", - "recipe" - ], - [ - "find instructions on baking lemon cake", - "recipe" - ], - [ - "can you give me instructions on how to make alfredo", - "recipe" - ], - [ - "how do i make shrimp", - "recipe" - ], - [ - "what is a good recipe for steak", - "recipe" - ], - [ - "find a recipe for hamburgers", - "recipe" - ], - [ - "pull up ramen recipes please", - "recipe" - ], - [ - "how do you make dumplings", - "recipe" - ], - [ - "how do you make blue cheese dressing", - "recipe" - ], - [ - "i need a recipe for chicken cordon bleu", - "recipe" - ], - [ - "recipe for traditional roast beef and gravy", - "recipe" - ], - [ - "i want to make pork barbque but do no know how", - "recipe" - ], - [ - "give me a good recipe for chicken parmesan", - "recipe" - ], - [ - "do you have any good ways to make tomato soup", - "recipe" - ], - [ - "how do i make chicken alfredo", - "recipe" - ], - [ - "recipe for beef stroganoff", - "recipe" - ], - [ - "i need to find a good way to make chicken soup", - "recipe" - ], - [ - "tell me how to make ramen", - "recipe" - ], - [ - "what's my income before taxes", - "income" - ], - [ - "what's my income from work", - "income" - ], - [ - "how much money do i make at my job", - "income" - ], - [ - "was is my salary", - "income" - ], - [ - "what's my yearly income", - "income" - ], - [ - "what was my income last year", - "income" - ], - [ - "what's my total income", - "income" - ], - [ - "what's my total earnings", - "income" - ], - [ - "what's my work salary", - "income" - ], - [ - "do you know my work income", - "income" - ], - [ - "how much money do i make a week", - "income" - ], - [ - "how much do i make in a year", - "income" - ], - [ - "what do i get paid", - "income" - ], - [ - "how much is my salary", - "income" - ], - [ - "i would like to know what my income is", - "income" - ], - [ - "tell me my income amount", - "income" - ], - [ - "i need to know the amount of my income", - "income" - ], - [ - "get my income amount for me", - "income" - ], - [ - "how much do you start at", - "income" - ], - [ - "yearly salary", - "income" - ], - [ - "order more bread please", - "order" - ], - [ - "i ran out of bread, order more", - "order" - ], - [ - "since i ran out , order more bread", - "order" - ], - [ - "place an order for bread", - "order" - ], - [ - "make an order of bread because i am out", - "order" - ], - [ - "order an amazon gift card from amazon in the amount of twenty dollars", - "order" - ], - [ - "order a case of coke from amazon", - "order" - ], - [ - "order dog food from walmart", - "order" - ], - [ - "order more paper towels from amazon", - "order" - ], - [ - "order a disney gift card in the amount of five hundred dollars from costco", - "order" - ], - [ - "i want to buy an iphone7", - "order" - ], - [ - "can you order an iphone7 for me with two-day free delivery", - "order" - ], - [ - "help me buy a black iphone7", - "order" - ], - [ - "please order an iphone7 for me", - "order" - ], - [ - "everything needs ordered off my list", - "order" - ], - [ - "for the shopping list, order everything", - "order" - ], - [ - "order all of my shopping list", - "order" - ], - [ - "order all items on the list", - "order" - ], - [ - "purchase me the kyrie 4s", - "order" - ], - [ - "aquire me them kyrie 4s", - "order" - ], - [ - "is there much traffic between here and work right now", - "traffic" - ], - [ - "what's the traffic like right now for my route to work", - "traffic" - ], - [ - "is the traffic bad going downtown right now", - "traffic" - ], - [ - "how's the traffic this morning", - "traffic" - ], - [ - "how bad is the traffic on the way to downtown", - "traffic" - ], - [ - "what's the traffic like going to central park", - "traffic" - ], - [ - "is there heavy traffic on the way to the city", - "traffic" - ], - [ - "how bad is traffic on the way into oakville right now", - "traffic" - ], - [ - "how does the traffic look on my way to work right now", - "traffic" - ], - [ - "what does my commute look like", - "traffic" - ], - [ - "what is the traffic like on the road to downtown dallas", - "traffic" - ], - [ - "what kind of traffic is on hwy 1 going to the downtown area right now", - "traffic" - ], - [ - "how is the traffic on rt 5 towards my work , community bank", - "traffic" - ], - [ - "is there any traffic on the road i take home from work right now, rt 40", - "traffic" - ], - [ - "tell me how the traffic is on rt 7 to the airport today", - "traffic" - ], - [ - "what will the traffic be like if i headed out to work right now", - "traffic" - ], - [ - "what kind of traffic can i expect on the way to church", - "traffic" - ], - [ - "how's the traffic to work", - "traffic" - ], - [ - "can you give me a traffic update for a trip to the grocery store", - "traffic" - ], - [ - "how's the traffic looking if i headed to fred meyer", - "traffic" - ], - [ - "i need more checks because i am out", - "order_checks" - ], - [ - "can i order new checks since i am out", - "order_checks" - ], - [ - "i am now out of checks, how do i order new ones", - "order_checks" - ], - [ - "i need to order new checks because i am all out", - "order_checks" - ], - [ - "i have no checks and need to order new checks", - "order_checks" - ], - [ - "put in an order for more checks", - "order_checks" - ], - [ - "how do i order more free checkbooks", - "order_checks" - ], - [ - "i ran out of checks and need more ordered", - "order_checks" - ], - [ - "please order more checks i just used the last one", - "order_checks" - ], - [ - "i just used my last check and need more now", - "order_checks" - ], - [ - "i ran out of checks and need more asap", - "order_checks" - ], - [ - "i would like more checks sent to my address", - "order_checks" - ], - [ - "how would i go about getting more checks for my western union account", - "order_checks" - ], - [ - "i just used my final check order more", - "order_checks" - ], - [ - "can i order checks online for my checking account", - "order_checks" - ], - [ - "please send me more checkbooks", - "order_checks" - ], - [ - "please notify my bank that i need more checks", - "order_checks" - ], - [ - "how can i order checks for my savings account", - "order_checks" - ], - [ - "i need to know how to order checks for my bank of america account", - "order_checks" - ], - [ - "who do i contact to order more checks for my td bank account", - "order_checks" - ], - [ - "is there a reason my card was declined", - "card_declined" - ], - [ - "my card was rejected at shakey's and i am wondering why", - "card_declined" - ], - [ - "was there a problem with my card yesterday", - "card_declined" - ], - [ - "my debit card was rejected at ella's and i want to know why", - "card_declined" - ], - [ - "my card was declined at mcdonald's and i want to know why", - "card_declined" - ], - [ - "i need to know why you declined my card yesterday", - "card_declined" - ], - [ - "my card was rejected at the zoo, could you tell me why", - "card_declined" - ], - [ - "tell me why my card was declined", - "card_declined" - ], - [ - "tell me why my card was declined at auto zone, why", - "card_declined" - ], - [ - "i need to know why my credit card transaction was declined", - "card_declined" - ], - [ - "why was my credit card not accepted", - "card_declined" - ], - [ - "i was in target about to buy a chair when my card got declined", - "card_declined" - ], - [ - "my card just got declined when i was in home depot buying tile", - "card_declined" - ], - [ - "i was trying to buy a chainsaw at the tractor store and they said my card was declined", - "card_declined" - ], - [ - "why was my card declined just now when i tried to buy a jeep at carmax", - "card_declined" - ], - [ - "i was at walmart trying to buy toilet paper and my card got declined", - "card_declined" - ], - [ - "target declined my card and i don't know why", - "card_declined" - ], - [ - "do you know why my card was declined at target i can't figure out why", - "card_declined" - ], - [ - "i can't figure out why my card was declined at target", - "card_declined" - ], - [ - "i was just at target and they declined my card and i can't understand why", - "card_declined" - ] - ], - "train": [ - [ - "what expression would i use to say i love you if i were an italian", - "translate" - ], - [ - "can you tell me how to say 'i do not speak much spanish', in spanish", - "translate" - ], - [ - "what is the equivalent of, 'life is good' in french", - "translate" - ], - [ - "tell me how to say, 'it is a beautiful morning' in italian", - "translate" - ], - [ - "if i were mongolian, how would i say that i am a tourist", - "translate" - ], - [ - "how do i say 'hotel' in finnish", - "translate" - ], - [ - "i need you to translate the sentence, 'we will be there soon' into portuguese", - "translate" - ], - [ - "please tell me how to ask for a taxi in french", - "translate" - ], - [ - "can you tell me how i would say, 'more bread please' in french", - "translate" - ], - [ - "what is the correct way to say 'i am a visitor' in french", - "translate" - ], - [ - "how would i say, 'i don't know the answer' in spanish", - "translate" - ], - [ - "i would like to know the proper way to greet an adult in portuguese", - "translate" - ], - [ - "what words would i use to tell someone i am lost if i were japanese", - "translate" - ], - [ - "how would i say thank you if i were russian", - "translate" - ], - [ - "can you tell me how i would normally say thank you as a french person", - "translate" - ], - [ - "i would like to know how to say hello in french", - "translate" - ], - [ - "if i were english how would i say subway", - "translate" - ], - [ - "i would i say subway if i were english", - "translate" - ], - [ - "how do you say hi in french", - "translate" - ], - [ - "in england how do they say subway", - "translate" - ], - [ - "translate hello in french", - "translate" - ], - [ - "how is hello said in french", - "translate" - ], - [ - "what do you call a subway if you were english", - "translate" - ], - [ - "how would i say if i were english subway", - "translate" - ], - [ - "how should i say hello in french", - "translate" - ], - [ - "how could i say twin in chinese", - "translate" - ], - [ - "how can i say not now in spanish", - "translate" - ], - [ - "what do spanish people say for the word cow", - "translate" - ], - [ - "translate hello to english", - "translate" - ], - [ - "how do you say goodbye in spanish", - "translate" - ], - [ - "how would i say love in french", - "translate" - ], - [ - "could you translate atm machine into english", - "translate" - ], - [ - "please translate grocery into french for me", - "translate" - ], - [ - "how do germans say goodnight", - "translate" - ], - [ - "tell me how the russians say notebook", - "translate" - ], - [ - "how do vietnameses people say hello", - "translate" - ], - [ - "how do i say thank you in japanese", - "translate" - ], - [ - "what is latin for i love you", - "translate" - ], - [ - "how can i thank somebody in italian", - "translate" - ], - [ - "how do i say you're welcome in chinese", - "translate" - ], - [ - "translate hello english to french", - "translate" - ], - [ - "what is hello in french", - "translate" - ], - [ - "what phrase means goodbye in hawaii", - "translate" - ], - [ - "what spanish word means hello", - "translate" - ], - [ - "translate hello to french", - "translate" - ], - [ - "translate english to french hello", - "translate" - ], - [ - "what is the word for hello spanish", - "translate" - ], - [ - "how do they say goodbye in hawaii", - "translate" - ], - [ - "what's local slang for goodbye in hawaii", - "translate" - ], - [ - "how do you say hello in french", - "translate" - ], - [ - "tell me how to say hello in spanish", - "translate" - ], - [ - "what do i say for goodbye in hawaii", - "translate" - ], - [ - "translate hello into french for me", - "translate" - ], - [ - "how do i say hello in french", - "translate" - ], - [ - "translate for me hello into french", - "translate" - ], - [ - "how would they say say goodbye in hawaii", - "translate" - ], - [ - "what is spanish for hello", - "translate" - ], - [ - "how would i say hello in french", - "translate" - ], - [ - "how can i say i love you in italy", - "translate" - ], - [ - "what is spanish for good morning", - "translate" - ], - [ - "how do you say it's snowing in german", - "translate" - ], - [ - "how would you say can i borrow five dollars in portuguese", - "translate" - ], - [ - "do you know how to say where is the restroom in french", - "translate" - ], - [ - "how would i say pleased to meet you if i were japanese", - "translate" - ], - [ - "can you translate hello into swedish for me", - "translate" - ], - [ - "can you translate i love you into french for me", - "translate" - ], - [ - "can you translate where's the bar into irish for me", - "translate" - ], - [ - "how would i say goodbye if i were norwegian", - "translate" - ], - [ - "how would i say i love you if i were french", - "translate" - ], - [ - "how would i say hello if i were swedish", - "translate" - ], - [ - "can you translate good bye into russian for me", - "translate" - ], - [ - "can you translate i have to go pee into korean for me", - "translate" - ], - [ - "how would i say i'm not guilty if i were mexican", - "translate" - ], - [ - "how do you say thank you in spanish", - "translate" - ], - [ - "how does one say thank you in spanish", - "translate" - ], - [ - "how can i say thank you in spanish", - "translate" - ], - [ - "what is thank you in spanish", - "translate" - ], - [ - "what is the way to say thank you in spanish", - "translate" - ], - [ - "how do they say \"who is your father\" in german", - "translate" - ], - [ - "how do they say \"where's the bathroom\" in spanish", - "translate" - ], - [ - "how do they say \"how's it going\" in swahili", - "translate" - ], - [ - "how do they say \"i love you\" in japanese", - "translate" - ], - [ - "how do they say \"what's up\" in chinese", - "translate" - ], - [ - "how do you say thank you in german", - "translate" - ], - [ - "how do you say please in arabic", - "translate" - ], - [ - "how do you say cat in spanish", - "translate" - ], - [ - "how do you say i'm hungry in french", - "translate" - ], - [ - "how do you say i need coffee in dutch", - "translate" - ], - [ - "how do they say yes in brazil", - "translate" - ], - [ - "can you translate cat into russian for me", - "translate" - ], - [ - "can you translate bowl into russian for me", - "translate" - ], - [ - "how do they say hello in france", - "translate" - ], - [ - "i wanna know a phrase in spanish", - "translate" - ], - [ - "can you translate bat into russian for me", - "translate" - ], - [ - "how do they say no in germany", - "translate" - ], - [ - "can you translate hi into spanish for me", - "translate" - ], - [ - "i wanna learn a phrase in russian", - "translate" - ], - [ - "how do they say hello in germany", - "translate" - ], - [ - "can you translate milk into spanish for me", - "translate" - ], - [ - "how do they say hello in brazil", - "translate" - ], - [ - "i need $20000 transferred from my savings to my checking", - "transfer" - ], - [ - "complete a transaction from savings to checking of $20000", - "transfer" - ], - [ - "transfer $20000 from my savings account to checking account", - "transfer" - ], - [ - "take $20000 from savings and put it in checking", - "transfer" - ], - [ - "put $20000 into my checking account from my savings account", - "transfer" - ], - [ - "send 100 dollars between bank of the west and bank of america acccounts", - "transfer" - ], - [ - "send 50 dollars between bank of america and chase accounts", - "transfer" - ], - [ - "send 2000 dollars between chase and rabobank accounts", - "transfer" - ], - [ - "send 1200 dollars between usaa and navy federal accounts", - "transfer" - ], - [ - "send 400 dollars between city bank and usaa accounts", - "transfer" - ], - [ - "take $40 and transfer it to account a from b", - "transfer" - ], - [ - "transfer $40 from account a to b", - "transfer" - ], - [ - "move $40 from account b to account a", - "transfer" - ], - [ - "put $40 from account a to b", - "transfer" - ], - [ - "take $40 from account a and transfer it to account b", - "transfer" - ], - [ - "i need to transfer from this account to that one", - "transfer" - ], - [ - "need to transfer from one account to my other one", - "transfer" - ], - [ - "i would like to transfer from one account to my second one", - "transfer" - ], - [ - "i need to transfer from one account to my second one", - "transfer" - ], - [ - "i have to transfer from one account to my other one", - "transfer" - ], - [ - "send fifty dollars from me to carrie", - "transfer" - ], - [ - "transfer sixty dollars to dad from my biggest accnt", - "transfer" - ], - [ - "send over a hundred dollars from huntington into saving", - "transfer" - ], - [ - "move 57 dollars from saving into mom", - "transfer" - ], - [ - "transfer two hundred dollars between my portfolio and my money market account", - "transfer" - ], - [ - "i need to transfer ten dollars from my bank of america account to my capital one account", - "transfer" - ], - [ - "go ahead and send ten dollars from bank of america to capital one", - "transfer" - ], - [ - "i must transfer ten dollars from my bank of america account to my capital one account", - "transfer" - ], - [ - "i got to transfer ten dollars from my bank of america account to my capital one account", - "transfer" - ], - [ - "i want you to send ten dollars from bank of america to capital one", - "transfer" - ], - [ - "i need you to send ten dollars from bank of america to capital one", - "transfer" - ], - [ - "i have to transfer ten dollars from my bank of america account to my capital one account", - "transfer" - ], - [ - "send ten dollars from bank of america to capital one", - "transfer" - ], - [ - "please send ten dollars from bank of america to capital one", - "transfer" - ], - [ - "make a transfer of $200 from my savings account to my checking account", - "transfer" - ], - [ - "please transfer $250 from checking to savings", - "transfer" - ], - [ - "transfer $500 from my checking to my savings", - "transfer" - ], - [ - "please transfer $100 from my checking to my savings account", - "transfer" - ], - [ - "transfer $500 from my money market savings account to my checking account", - "transfer" - ], - [ - "send money from one account to another", - "transfer" - ], - [ - "transfer 200 dollars from paypal to savings", - "transfer" - ], - [ - "transfer $10 from checking to savings", - "transfer" - ], - [ - "send $100 from paypal to my bank", - "transfer" - ], - [ - "please transfer 100 dollars between my amazon payments and savings accounts", - "transfer" - ], - [ - "i would like to make a transfer", - "transfer" - ], - [ - "i want to transfer funds between accounts", - "transfer" - ], - [ - "send over 50 dollars between my shared and not shared accounts", - "transfer" - ], - [ - "whats the quickest way to money from one account to another", - "transfer" - ], - [ - "what is the process to move money from one account to another", - "transfer" - ], - [ - "i need you to send 500 dollars from my high tier account to my regular checking account", - "transfer" - ], - [ - "can you transfer money from a to b", - "transfer" - ], - [ - "send my money between accounts", - "transfer" - ], - [ - "how can i send money from one account to another", - "transfer" - ], - [ - "i need to move money from one account to another", - "transfer" - ], - [ - "send $20 from debit to steve's account", - "transfer" - ], - [ - "send 20 dollars from savings to checking", - "transfer" - ], - [ - "please transfer my funds", - "transfer" - ], - [ - "please transfer $50 to my checking account from credit", - "transfer" - ], - [ - "go ahead and move $200 from amazon to my bank account", - "transfer" - ], - [ - "help me move my money", - "transfer" - ], - [ - "i need my money to be moved", - "transfer" - ], - [ - "help me move my money please", - "transfer" - ], - [ - "i need to move my money", - "transfer" - ], - [ - "move my money please", - "transfer" - ], - [ - "i would like to transfer $5 from savings to checking", - "transfer" - ], - [ - "transfer $5 from savings to checking", - "transfer" - ], - [ - "can you transfer $5 from savings to checking", - "transfer" - ], - [ - "send $5 from savings to checking", - "transfer" - ], - [ - "please transfer $5 from savings to checking", - "transfer" - ], - [ - "please switch $s checking to mortage", - "transfer" - ], - [ - "please transfer $s from saving to checking", - "transfer" - ], - [ - "could you transfer $x from saving to checking", - "transfer" - ], - [ - "help me transfer $x from credit to debit", - "transfer" - ], - [ - "please transfer $x from checking to saving", - "transfer" - ], - [ - "transfer money to another account", - "transfer" - ], - [ - "requesting money transfer between accounts", - "transfer" - ], - [ - "transfer money from this account to that account", - "transfer" - ], - [ - "can you transfer money from my account", - "transfer" - ], - [ - "money transfer request", - "transfer" - ], - [ - "send 100 dollars from checking to savings", - "transfer" - ], - [ - "transfer 100 dollars checking to savings", - "transfer" - ], - [ - "transfer 100 dollars between checking and savings", - "transfer" - ], - [ - "take 100 dollars from checking and send it to savings", - "transfer" - ], - [ - "move 100 dollars from checking to savings", - "transfer" - ], - [ - "can we wire some money over to the other account i have", - "transfer" - ], - [ - "time to move some cash from one account to another", - "transfer" - ], - [ - "i need to throw some money into that other account", - "transfer" - ], - [ - "let's send some money to another account", - "transfer" - ], - [ - "i want to initiate a transfer from one account to the other", - "transfer" - ], - [ - "transfer money from one place to another", - "transfer" - ], - [ - "move money from one account to another", - "transfer" - ], - [ - "transfer between two accounts", - "transfer" - ], - [ - "make a transfer between accounts", - "transfer" - ], - [ - "send money to another account", - "transfer" - ], - [ - "i need ten dollars sent from b of a to washington mutual", - "transfer" - ], - [ - "transfer fifty dollars between my chase and bank of america account", - "transfer" - ], - [ - "deposit ten bucks from my chase account to my ally account", - "transfer" - ], - [ - "put a hundred dollars in my ally account from bluebird", - "transfer" - ], - [ - "i want seventy bucks transferred from b of a to chase", - "transfer" - ], - [ - "can i initiate a one-time transfer from my savings account to my money market account", - "transfer" - ], - [ - "please set a 4 minute timer", - "timer" - ], - [ - "please set a timer for 6 minutes", - "timer" - ], - [ - "set a timer for 5 minutes", - "timer" - ], - [ - "i need a 7 minute timer", - "timer" - ], - [ - "i need to set the timer for two minutes", - "timer" - ], - [ - "can you set a timer for me for fifteen minutes starting now", - "timer" - ], - [ - "start the timer now and stop at thirty minutes", - "timer" - ], - [ - "i would like you to set the timer to go off in ten minutes", - "timer" - ], - [ - "please set a timer for 40 minutes", - "timer" - ], - [ - "wake me in an hour", - "timer" - ], - [ - "please set a timer for cookies", - "timer" - ], - [ - "i want a timer set", - "timer" - ], - [ - "remind me in (x) hours", - "timer" - ], - [ - "set timer for (x) minutes", - "timer" - ], - [ - "i gotta have a 10 minute timer", - "timer" - ], - [ - "please set a timer for me", - "timer" - ], - [ - "i need a 10 minute timer", - "timer" - ], - [ - "i wish to have a 10 minute timer", - "timer" - ], - [ - "i really need to set a timer", - "timer" - ], - [ - "set a new timer for ten seconds", - "timer" - ], - [ - "set a timer for me", - "timer" - ], - [ - "i want a 10 minute timer", - "timer" - ], - [ - "i gotta set a timer", - "timer" - ], - [ - "set a 10 minute timer", - "timer" - ], - [ - "set a brand new timer for eight seconds", - "timer" - ], - [ - "set a ten second timer", - "timer" - ], - [ - "i must set a timer", - "timer" - ], - [ - "set a timer for twelve seconds", - "timer" - ], - [ - "set a timer for fifteen seconds", - "timer" - ], - [ - "tell me when two minutes are up", - "timer" - ], - [ - "start a timer for two minutes", - "timer" - ], - [ - "set a timer for two minutes", - "timer" - ], - [ - "start counting down from two minutes", - "timer" - ], - [ - "can you set a timer for two minutes", - "timer" - ], - [ - "\"please set 5 minute timer", - "timer" - ], - [ - "can u please set the timer for 5 minutes", - "timer" - ], - [ - "set timer of 5 minutes", - "timer" - ], - [ - "\"can u set a timer for 5 minutes", - "timer" - ], - [ - "set a one hour timer", - "timer" - ], - [ - "please set a timer for 20 minutes", - "timer" - ], - [ - "set a five minute timer please", - "timer" - ], - [ - "set a timer for two hours", - "timer" - ], - [ - "can you set a two hour timer", - "timer" - ], - [ - "set the timer for me please", - "timer" - ], - [ - "you need to set the timer for me", - "timer" - ], - [ - "i need you to set timer for me", - "timer" - ], - [ - "please set the timer for me", - "timer" - ], - [ - "i would like a timer set", - "timer" - ], - [ - "can you set a timer", - "timer" - ], - [ - "i need you to set a time", - "timer" - ], - [ - "i need a timer set for 15 minutes", - "timer" - ], - [ - "start a countdown for 20 minutes", - "timer" - ], - [ - "set a timer for 15 minutes", - "timer" - ], - [ - "i'll need you to set a timer for 10 minutes", - "timer" - ], - [ - "let's get a timer set for 5 minutes", - "timer" - ], - [ - "set a timer for 35 minutes", - "timer" - ], - [ - "please start counting down from 10 minutes", - "timer" - ], - [ - "let's get a timer going for 10 minutes", - "timer" - ], - [ - "i need a timer for 20 seconds", - "timer" - ], - [ - "timer 5 minutes", - "timer" - ], - [ - "alert me in 20 minutes", - "timer" - ], - [ - "give me a 10 minute countdown", - "timer" - ], - [ - "let me know in 15 minutes please", - "timer" - ], - [ - "i'm cooking an egg, timer for 3 mins", - "timer" - ], - [ - "10 minute timer", - "timer" - ], - [ - "start a timer for 10 minutes", - "timer" - ], - [ - "timer 10 minutes", - "timer" - ], - [ - "count down 10 minutes", - "timer" - ], - [ - "make up a timer for me", - "timer" - ], - [ - "create a timer for me", - "timer" - ], - [ - "can you set a timer for me", - "timer" - ], - [ - "i need to set a timer", - "timer" - ], - [ - "set up a timer", - "timer" - ], - [ - "could you start a timer for me", - "timer" - ], - [ - "lets set a timer for me", - "timer" - ], - [ - "please run a timer for me", - "timer" - ], - [ - "set a one minute timer", - "timer" - ], - [ - "set a five minute timer", - "timer" - ], - [ - "set a seven minute timer", - "timer" - ], - [ - "start a timer for me", - "timer" - ], - [ - "set a four minute timer", - "timer" - ], - [ - "set a six minute timer", - "timer" - ], - [ - "how do i set a timer", - "timer" - ], - [ - "i want a timer for 5 minutes", - "timer" - ], - [ - "timer for 5 minutes", - "timer" - ], - [ - "set a timer to go off in 5 minutes", - "timer" - ], - [ - "set timer for 5 minutes", - "timer" - ], - [ - "i want to set a timer", - "timer" - ], - [ - "make a timer for 5 minutes", - "timer" - ], - [ - "please set a timer for", - "timer" - ], - [ - "remind me that time is up in sixty minutes", - "timer" - ], - [ - "set an alarm for nine minutes from now", - "timer" - ], - [ - "tell me when ninety minutes have passed", - "timer" - ], - [ - "please set timer for 4 pm", - "timer" - ], - [ - "want 5 minute timer", - "timer" - ], - [ - "set 30 minute timer", - "timer" - ], - [ - "get a 3 minute timer", - "timer" - ], - [ - "please, can you set the timer for me", - "timer" - ], - [ - "can you please the timer", - "timer" - ], - [ - "will you set the timer", - "timer" - ], - [ - "what is the meaning of realism", - "definition" - ], - [ - "what is regard mean", - "definition" - ], - [ - "what is the meaning of interorganizational", - "definition" - ], - [ - "what is it is all relative mean", - "definition" - ], - [ - "what is intercontinental mean", - "definition" - ], - [ - "what is the meaning of supercede", - "definition" - ], - [ - "what is let it be mean", - "definition" - ], - [ - "what is the definition of incomprehensible", - "definition" - ], - [ - "what is the meaning of stupendous", - "definition" - ], - [ - "what is the definition of intelligent", - "definition" - ], - [ - "what is good riddance mean", - "definition" - ], - [ - "what is break a leg mean", - "definition" - ], - [ - "what is the meaning of hyperactive", - "definition" - ], - [ - "what is the definition of valor", - "definition" - ], - [ - "what is stupedous meant", - "definition" - ], - [ - "find the meaning of qat", - "definition" - ], - [ - "what the heck is qat", - "definition" - ], - [ - "define qat for me", - "definition" - ], - [ - "read me a definition for qat", - "definition" - ], - [ - "look up qat please", - "definition" - ], - [ - "what might the meaning of altruism be", - "definition" - ], - [ - "exactly what does altruism mean", - "definition" - ], - [ - "what does altruism mean", - "definition" - ], - [ - "what is the definition of altruism", - "definition" - ], - [ - "what is the meaning of altruism", - "definition" - ], - [ - "affiliate's definition is what", - "definition" - ], - [ - "the definition of affiliate is", - "definition" - ], - [ - "what's the meaning of affiliate", - "definition" - ], - [ - "what's affiliate definition", - "definition" - ], - [ - "definition of affiliate is what", - "definition" - ], - [ - "whats the definition of poor", - "definition" - ], - [ - "describe the meaning of \"dog", - "definition" - ], - [ - "what does \"money\" mean", - "definition" - ], - [ - "tell me what the word die means", - "definition" - ], - [ - "what is the definition of succumb", - "definition" - ], - [ - "what is the meaning of telepathy", - "definition" - ], - [ - "what does tertiary mean", - "definition" - ], - [ - "tell me the definition of the word redemption", - "definition" - ], - [ - "what is the meaning of the word lux", - "definition" - ], - [ - "what is an ataraxy", - "definition" - ], - [ - "what does the word ataraxy mean", - "definition" - ], - [ - "what does ataraxy mean", - "definition" - ], - [ - "use the word ataraxy in a sentence", - "definition" - ], - [ - "define ataraxy", - "definition" - ], - [ - "what does discretionary mean", - "definition" - ], - [ - "define discretionary", - "definition" - ], - [ - "i want to know the definition of discretionary", - "definition" - ], - [ - "can you give the definition of deiscretionary", - "definition" - ], - [ - "let's hear the definition of iridium", - "definition" - ], - [ - "what's the definition of analogy", - "definition" - ], - [ - "can you tell me the definition of sucrose", - "definition" - ], - [ - "definition of anachronism", - "definition" - ], - [ - "what's the definition of patriarchy", - "definition" - ], - [ - "can you tell me the definition of yttrbium", - "definition" - ], - [ - "please share the definition of episcopalian", - "definition" - ], - [ - "what does saffron mean", - "definition" - ], - [ - "define sonogram", - "definition" - ], - [ - "define thoroughbred", - "definition" - ], - [ - "what's the meaning of a fortnight", - "definition" - ], - [ - "what is an anachronism", - "definition" - ], - [ - "what's the meaning of emulsify", - "definition" - ], - [ - "tell me what cyst means", - "definition" - ], - [ - "what is the definition of flange", - "definition" - ], - [ - "tell me what flange means", - "definition" - ], - [ - "define flange", - "definition" - ], - [ - "flange means what", - "definition" - ], - [ - "what is the meaning of flange", - "definition" - ], - [ - "what does \"rescind\" mean", - "definition" - ], - [ - "what is the meaning of word \"rescind", - "definition" - ], - [ - "is \"rescind\" a word of positive connotation", - "definition" - ], - [ - "where i can use word \"rescind", - "definition" - ], - [ - "read me the definition of ajar", - "definition" - ], - [ - "what does ajar mean", - "definition" - ], - [ - "can you show me the dictionary definition of ajar", - "definition" - ], - [ - "tell me what monstrosity means", - "definition" - ], - [ - "give me the definition of ajar", - "definition" - ], - [ - "what is the definition of didactic", - "definition" - ], - [ - "i need to know what adumbrate means can you look it up for me now", - "definition" - ], - [ - "i want to know what the word discomfit means", - "definition" - ], - [ - "find what the word diaphanous mean please", - "definition" - ], - [ - "do you know what calumny means please look it up for me", - "definition" - ], - [ - "find out what the word abrogate means for me", - "definition" - ], - [ - "tell me what edict means", - "definition" - ], - [ - "what does the word abjure mean", - "definition" - ], - [ - "can you tell me what dirge means", - "definition" - ], - [ - "tell me what the word arboreal means", - "definition" - ], - [ - "whats the definition of transmute", - "definition" - ], - [ - "what is the meaning of the word slander", - "definition" - ], - [ - "what is meant by defense", - "definition" - ], - [ - "tell me what the word bounty means", - "definition" - ], - [ - "what does deceive mean", - "definition" - ], - [ - "define zesty", - "definition" - ], - [ - "look up zesty in dictionary", - "definition" - ], - [ - "definition of zesty", - "definition" - ], - [ - "what is the definition of zesty", - "definition" - ], - [ - "what does zesty mean", - "definition" - ], - [ - "tell me what alternative means", - "definition" - ], - [ - "what does alternative mean", - "definition" - ], - [ - "give me the meaning of alternative", - "definition" - ], - [ - "tell me the meaning of alternative", - "definition" - ], - [ - "does life have meaning", - "meaning_of_life" - ], - [ - "is being alive the meaning of life", - "meaning_of_life" - ], - [ - "what is the real meaning of life", - "meaning_of_life" - ], - [ - "what is the answer to the meaning of life", - "meaning_of_life" - ], - [ - "is there really an answer to the meaning of life", - "meaning_of_life" - ], - [ - "does life have a meaning", - "meaning_of_life" - ], - [ - "who can tell me if there's any meaning to life", - "meaning_of_life" - ], - [ - "what makes life have any meaning", - "meaning_of_life" - ], - [ - "why do you think we're here", - "meaning_of_life" - ], - [ - "what's the answer to existence", - "meaning_of_life" - ], - [ - "what's the point of sentience", - "meaning_of_life" - ], - [ - "what's the purpose of existence", - "meaning_of_life" - ], - [ - "what's the purpose of life", - "meaning_of_life" - ], - [ - "what's the point of this dumpster fire known as life", - "meaning_of_life" - ], - [ - "what is life's meaning", - "meaning_of_life" - ], - [ - "is there a greater purpose in life", - "meaning_of_life" - ], - [ - "what is our purpose in life", - "meaning_of_life" - ], - [ - "how is life in existence", - "meaning_of_life" - ], - [ - "what's lifes meaning", - "meaning_of_life" - ], - [ - "what exactly is the meaning of life", - "meaning_of_life" - ], - [ - "whats lifes meaning exactly", - "meaning_of_life" - ], - [ - "what's the meaning of this life", - "meaning_of_life" - ], - [ - "what is the meaning of life here", - "meaning_of_life" - ], - [ - "does my life have meaning", - "meaning_of_life" - ], - [ - "i wish to know the meaning of life", - "meaning_of_life" - ], - [ - "i wanna know the meaning of life", - "meaning_of_life" - ], - [ - "i wanna know the point of life", - "meaning_of_life" - ], - [ - "i need to know the point of life", - "meaning_of_life" - ], - [ - "i must know the point of life", - "meaning_of_life" - ], - [ - "tell the meaning of life", - "meaning_of_life" - ], - [ - "i gotta know the meaning of life", - "meaning_of_life" - ], - [ - "what is your take on the meaning of life", - "meaning_of_life" - ], - [ - "tell me what is the purpose of life", - "meaning_of_life" - ], - [ - "what meaning does life hold", - "meaning_of_life" - ], - [ - "what do you think is the meaning of like", - "meaning_of_life" - ], - [ - "how do i find the meaning of life", - "meaning_of_life" - ], - [ - "what is the purpose of exsistance", - "meaning_of_life" - ], - [ - "what is your version on the meaning of life", - "meaning_of_life" - ], - [ - "what is your explanation for the meaning of life", - "meaning_of_life" - ], - [ - "what is the purpose of creation", - "meaning_of_life" - ], - [ - "can you figure out the meaning of life", - "meaning_of_life" - ], - [ - "whats your take on the meaning of life", - "meaning_of_life" - ], - [ - "can you explain the meaning of life to me", - "meaning_of_life" - ], - [ - "what is life all about", - "meaning_of_life" - ], - [ - "can you explain the meaning of life", - "meaning_of_life" - ], - [ - "what's the point of life, anyways", - "meaning_of_life" - ], - [ - "the meaning of life please", - "meaning_of_life" - ], - [ - "the meaning of life", - "meaning_of_life" - ], - [ - "i'd like to me told the meaning of life", - "meaning_of_life" - ], - [ - "do you know the meaning of life", - "meaning_of_life" - ], - [ - "say what the meaning of life is", - "meaning_of_life" - ], - [ - "can you tell me life's meaning", - "meaning_of_life" - ], - [ - "what's the meaning of my life", - "meaning_of_life" - ], - [ - "what is the underlying purpose to life", - "meaning_of_life" - ], - [ - "what do you think about the meaning of life", - "meaning_of_life" - ], - [ - "what is life\u2019s meaning", - "meaning_of_life" - ], - [ - "help me figure out the meaning of life", - "meaning_of_life" - ], - [ - "would you tell me the meaning of life, please", - "meaning_of_life" - ], - [ - "could you tell me the meaning of life, please", - "meaning_of_life" - ], - [ - "can you tell me the meaning of life", - "meaning_of_life" - ], - [ - "could you tell me the meaning of life", - "meaning_of_life" - ], - [ - "can you tell me the meaning of life, please", - "meaning_of_life" - ], - [ - "what does life mean to you", - "meaning_of_life" - ], - [ - "is there really a meaning of life", - "meaning_of_life" - ], - [ - "is there any meaning to being alive", - "meaning_of_life" - ], - [ - "what is the meaning of my life", - "meaning_of_life" - ], - [ - "what is the point of life", - "meaning_of_life" - ], - [ - "what's the point of everything", - "meaning_of_life" - ], - [ - "is there a meaning to life", - "meaning_of_life" - ], - [ - "why are we here in life", - "meaning_of_life" - ], - [ - "can you share the meaning of life", - "meaning_of_life" - ], - [ - "research the meaning of life", - "meaning_of_life" - ], - [ - "can you tell me what you think the meaning of life is", - "meaning_of_life" - ], - [ - "what is our purpose here on earth", - "meaning_of_life" - ], - [ - "is love the meaning of life", - "meaning_of_life" - ], - [ - "is there a reason people exist", - "meaning_of_life" - ], - [ - "what is the secret or meaning to life", - "meaning_of_life" - ], - [ - "what does life mean on a deeper level", - "meaning_of_life" - ], - [ - "how would you put what life is all about", - "meaning_of_life" - ], - [ - "how would you describe what life means", - "meaning_of_life" - ], - [ - "what do people say life means or the meaning is", - "meaning_of_life" - ], - [ - "life has what meaning or what's the secret to it", - "meaning_of_life" - ], - [ - "where is there meaning in life", - "meaning_of_life" - ], - [ - "what is the meaning of this life", - "meaning_of_life" - ], - [ - "do you know what the meaning of life is", - "meaning_of_life" - ], - [ - "what's life's meaning", - "meaning_of_life" - ], - [ - "does life have a meaning, according to you", - "meaning_of_life" - ], - [ - "does this life have a meaning", - "meaning_of_life" - ], - [ - "can you share with me your interpretation of the meaning of life", - "meaning_of_life" - ], - [ - "what do you think is the meaning of life", - "meaning_of_life" - ], - [ - "is there a meaning in life", - "meaning_of_life" - ], - [ - "i wonder if you can explain the meaning of life", - "meaning_of_life" - ], - [ - "i always wonder about the meaning of life, can you tell me", - "meaning_of_life" - ], - [ - "what's my meaning in life", - "meaning_of_life" - ], - [ - "define the meaning of life", - "meaning_of_life" - ], - [ - "meaning of life is", - "meaning_of_life" - ], - [ - "what is your perception of the meaning of life", - "meaning_of_life" - ], - [ - "whats the meaning of life", - "meaning_of_life" - ], - [ - "what do you think the meaning of life is", - "meaning_of_life" - ], - [ - "what is behind life's meaning", - "meaning_of_life" - ], - [ - "how to create a new aaa insurance plan", - "insurance_change" - ], - [ - "website to start aaa new insurance plan", - "insurance_change" - ], - [ - "aaa insurance start new plan", - "insurance_change" - ], - [ - "i want to start a new aaa insurance plan", - "insurance_change" - ], - [ - "is new this a good insurance plan for me", - "insurance_change" - ], - [ - "what do i do to get new insurance", - "insurance_change" - ], - [ - "new insurance is obtainable how", - "insurance_change" - ], - [ - "how is new insurance gotten", - "insurance_change" - ], - [ - "what do i do for new insurance", - "insurance_change" - ], - [ - "how do i get new insurance, please", - "insurance_change" - ], - [ - "how can i obtain new insurance", - "insurance_change" - ], - [ - "how can i obtain new insurance, please", - "insurance_change" - ], - [ - "how can i get new insurance, please", - "insurance_change" - ], - [ - "how do i make my insurance policy different", - "insurance_change" - ], - [ - "how do i change my insurance policy", - "insurance_change" - ], - [ - "how do i modify my insurance policy", - "insurance_change" - ], - [ - "how do i alter my insurance policy", - "insurance_change" - ], - [ - "how do i get different terms on my insurance policy", - "insurance_change" - ], - [ - "help me change my insurance plan", - "insurance_change" - ], - [ - "i would like a new insurance plan", - "insurance_change" - ], - [ - "connect me with some new insurance", - "insurance_change" - ], - [ - "i need a newer insurance plan", - "insurance_change" - ], - [ - "my insurance plan needs to be changed", - "insurance_change" - ], - [ - "what rental insurance policy do you recommend", - "insurance_change" - ], - [ - "help me find a new auto insurance policy", - "insurance_change" - ], - [ - "find the best life insurance for me", - "insurance_change" - ], - [ - "i need new home owners insurance", - "insurance_change" - ], - [ - "i need new health care coverage", - "insurance_change" - ], - [ - "how do i change my current insurance to a new plan with lower co-pay", - "insurance_change" - ], - [ - "what steps do i need to take to switch my insurance plan from an hmo to a high deductible ppo plan", - "insurance_change" - ], - [ - "i need to change my insurance to a plan with a lower deductible", - "insurance_change" - ], - [ - "how do i go about changing my insurance to a new low monthly premium plan", - "insurance_change" - ], - [ - "i would like to change my insurance from a ppo to an hmo plan", - "insurance_change" - ], - [ - "help me figure out getting new insurance", - "insurance_change" - ], - [ - "i would like to get a new insurance plan", - "insurance_change" - ], - [ - "i want help adjusting my insurance policy", - "insurance_change" - ], - [ - "i am hoping to switch insurance plans", - "insurance_change" - ], - [ - "i need help acquiring new insurance", - "insurance_change" - ], - [ - "walk me through the process of getting new insurance", - "insurance_change" - ], - [ - "i am interested in acquiring new insurance", - "insurance_change" - ], - [ - "how can i acquire new insurance", - "insurance_change" - ], - [ - "what must i do if i want to adjust my insurance policy", - "insurance_change" - ], - [ - "what is the protocol for modifying my insurance policy", - "insurance_change" - ], - [ - "i dont like my current insurance plan and want a new one", - "insurance_change" - ], - [ - "walk me through making changes to my insurance policy", - "insurance_change" - ], - [ - "i need new insurance but dont know how to get it", - "insurance_change" - ], - [ - "i am thinking of switching to a different insurance plan", - "insurance_change" - ], - [ - "help me modify my insurance policy", - "insurance_change" - ], - [ - "could you help me out with a new renters' insurance plan", - "insurance_change" - ], - [ - "i'd like a new life insurance plan", - "insurance_change" - ], - [ - "can you help me with a new car insurance plan", - "insurance_change" - ], - [ - "i need to get a new motorcycle insurance plan", - "insurance_change" - ], - [ - "can i get a new pet insurance plan", - "insurance_change" - ], - [ - "where do i go to get new insurance", - "insurance_change" - ], - [ - "i need new insurance, how do i get it", - "insurance_change" - ], - [ - "how do i apply for new insurance", - "insurance_change" - ], - [ - "i would like you to help me get on another united healthcare insurance plan", - "insurance_change" - ], - [ - "can you help me get on a new united healthcare insurance plan", - "insurance_change" - ], - [ - "i want to find a new united healthcare plan to get on", - "insurance_change" - ], - [ - "i'd like to get on a new united healthcare plan", - "insurance_change" - ], - [ - "i need to get on a new united healthcare insurance plan", - "insurance_change" - ], - [ - "help make changes to my insurance policy", - "insurance_change" - ], - [ - "i must switch to a new insurance plan", - "insurance_change" - ], - [ - "i need help to make changes to my insurance policy", - "insurance_change" - ], - [ - "i gotta switch to a new insurance plan", - "insurance_change" - ], - [ - "help me make changes to my insurance policy", - "insurance_change" - ], - [ - "i need to switch to a new insurance plan", - "insurance_change" - ], - [ - "i really need to switch to a new insurance plan", - "insurance_change" - ], - [ - "i would like to make changes to my insurance policy", - "insurance_change" - ], - [ - "i need to make changes to my insurance policy", - "insurance_change" - ], - [ - "i shall switch to a new insurance plan", - "insurance_change" - ], - [ - "how do i update my insurance", - "insurance_change" - ], - [ - "how can i get new insurance", - "insurance_change" - ], - [ - "how can i find out about new insurance", - "insurance_change" - ], - [ - "i need to find new insurance", - "insurance_change" - ], - [ - "i need to get new insurance, how do i do it", - "insurance_change" - ], - [ - "can you switch me to a new insurance plan", - "insurance_change" - ], - [ - "i would like to switch to a different insurance plan", - "insurance_change" - ], - [ - "help me switch to a new insurance plan", - "insurance_change" - ], - [ - "switch my insurance plan to a new one", - "insurance_change" - ], - [ - "what are my options for new insurance plans", - "insurance_change" - ], - [ - "i want to shop for new insurance plans", - "insurance_change" - ], - [ - "i would like to switch my insurance plan", - "insurance_change" - ], - [ - "help me find new insurance providers", - "insurance_change" - ], - [ - "i would like to compare insurance plan options", - "insurance_change" - ], - [ - "i need a new house insurance plan", - "insurance_change" - ], - [ - "i want to get a new car insurance plan", - "insurance_change" - ], - [ - "i need new health insurance", - "insurance_change" - ], - [ - "i want a new policy with long-term care insurance", - "insurance_change" - ], - [ - "i want a new motorcycle insurance plan", - "insurance_change" - ], - [ - "how do i adjust my insurance policy", - "insurance_change" - ], - [ - "my insurance policy needs to be adjusted", - "insurance_change" - ], - [ - "i am in need of a switch to my insurance plan", - "insurance_change" - ], - [ - "walk me through on how to change my insurance", - "insurance_change" - ], - [ - "i wish to request a change in insurance plans", - "insurance_change" - ], - [ - "i would like to alter my insurance plan", - "insurance_change" - ], - [ - "i need to know how to change my insurance", - "insurance_change" - ], - [ - "i want to switch my insurance coverage", - "insurance_change" - ], - [ - "help me change my insurance", - "insurance_change" - ], - [ - "how do i replace my insurance", - "insurance_change" - ], - [ - "i need help finding my mobile phone", - "find_phone" - ], - [ - "help me figure out where my cell phone is", - "find_phone" - ], - [ - "give me a hand finding my mobile device", - "find_phone" - ], - [ - "i can't find my cell and need help locating it", - "find_phone" - ], - [ - "can you help me find my cell", - "find_phone" - ], - [ - "help, i cannot find my phone", - "find_phone" - ], - [ - "i can't seem to find my phone", - "find_phone" - ], - [ - "are you able to track a phone", - "find_phone" - ], - [ - "my phone cannot be found", - "find_phone" - ], - [ - "i have misplaced my phone", - "find_phone" - ], - [ - "i don't know where i left my phone", - "find_phone" - ], - [ - "i left my phone somewhere", - "find_phone" - ], - [ - "i am looking for my phone", - "find_phone" - ], - [ - "i need you to find my phone", - "find_phone" - ], - [ - "please locate my phone", - "find_phone" - ], - [ - "can you help me find my lost phone", - "find_phone" - ], - [ - "i need help figuring out where my phone is", - "find_phone" - ], - [ - "please help me figure out where my lost phone is", - "find_phone" - ], - [ - "please help me find my phone, because i lost it", - "find_phone" - ], - [ - "i lost my phone, can you help me find it", - "find_phone" - ], - [ - "who has seen my cellphone", - "find_phone" - ], - [ - "have you seen my cellphone", - "find_phone" - ], - [ - "can you find my cellphone", - "find_phone" - ], - [ - "find my cellphone", - "find_phone" - ], - [ - "please help me find my phone", - "find_phone" - ], - [ - "where my phone", - "find_phone" - ], - [ - "where was the last place i had my phone", - "find_phone" - ], - [ - "can you find my iphone", - "find_phone" - ], - [ - "i can't find my phone", - "find_phone" - ], - [ - "call my phone, i can't find it", - "find_phone" - ], - [ - "can you find my lost phone", - "find_phone" - ], - [ - "do you know where my phone is", - "find_phone" - ], - [ - "can you help me find my cellphone", - "find_phone" - ], - [ - "can you call my cellphone", - "find_phone" - ], - [ - "my phone is lost - can you help me find it", - "find_phone" - ], - [ - "where is my phone", - "find_phone" - ], - [ - "ai can you help me find my phone", - "find_phone" - ], - [ - "ai, i lost my phone, help me find it please", - "find_phone" - ], - [ - "ai, please help me find my phone", - "find_phone" - ], - [ - "ai locate my phone", - "find_phone" - ], - [ - "ai find my phone", - "find_phone" - ], - [ - "how can i find my phone", - "find_phone" - ], - [ - "my phone is lost, can you help with that", - "find_phone" - ], - [ - "i need to locate my phone", - "find_phone" - ], - [ - "find out where my phone is", - "find_phone" - ], - [ - "help me find my phone", - "find_phone" - ], - [ - "locate my phone please", - "find_phone" - ], - [ - "what is the location of my phone", - "find_phone" - ], - [ - "my phone is currently lost", - "find_phone" - ], - [ - "i don't remember where my phone is", - "find_phone" - ], - [ - "locate my phone for me", - "find_phone" - ], - [ - "the location of my phone is unknown to me", - "find_phone" - ], - [ - "find my phone", - "find_phone" - ], - [ - "i need to find my phone", - "find_phone" - ], - [ - "please aid in my searching for my lost phone", - "find_phone" - ], - [ - "please help me locate my phone", - "find_phone" - ], - [ - "where did i last place my phone", - "find_phone" - ], - [ - "can you assist me in locating my phone", - "find_phone" - ], - [ - "is my phone in the house", - "find_phone" - ], - [ - "i lost my phone and need help retrieving it", - "find_phone" - ], - [ - "help me search for my phone", - "find_phone" - ], - [ - "misplaced my phone", - "find_phone" - ], - [ - "can you help locate my phone", - "find_phone" - ], - [ - "i need my phone, but can't find it", - "find_phone" - ], - [ - "i lost my phone and need assistance", - "find_phone" - ], - [ - "i don't know where my phone is", - "find_phone" - ], - [ - "i can't find my phone do you know where it is", - "find_phone" - ], - [ - "please tell me where my phone is", - "find_phone" - ], - [ - "can you help me find my phone", - "find_phone" - ], - [ - "do you know where my phone is located now", - "find_phone" - ], - [ - "can you track the location of my phone", - "find_phone" - ], - [ - "where can i find my phone", - "find_phone" - ], - [ - "can you locate my phone", - "find_phone" - ], - [ - "do you know where i left my phone", - "find_phone" - ], - [ - "where is my phone now", - "find_phone" - ], - [ - "alexa, tell me the location of my phone", - "find_phone" - ], - [ - "siri, where is my iphone", - "find_phone" - ], - [ - "siri, tell me where my iphone is", - "find_phone" - ], - [ - "siri, find my iphone", - "find_phone" - ], - [ - "help me locate my phone", - "find_phone" - ], - [ - "you need to help me find my cellphone", - "find_phone" - ], - [ - "help me find my cellphone", - "find_phone" - ], - [ - "please help me find my cellphone", - "find_phone" - ], - [ - "where did i put my phone", - "find_phone" - ], - [ - "tell me where my phone is", - "find_phone" - ], - [ - "please find my phone", - "find_phone" - ], - [ - "locate my phone", - "find_phone" - ], - [ - "i would like some help finding my phone", - "find_phone" - ], - [ - "i need to know where my phone is", - "find_phone" - ], - [ - "i seemed to misplaced my phone", - "find_phone" - ], - [ - "i lost my phone", - "find_phone" - ], - [ - "i need some help finding my phone", - "find_phone" - ], - [ - "can you locate my phone for me", - "find_phone" - ], - [ - "i don't know where i put my phone", - "find_phone" - ], - [ - "help find my phone", - "find_phone" - ], - [ - "i would like to know where my phone is", - "find_phone" - ], - [ - "i'd like help finding my fon", - "find_phone" - ], - [ - "i can't locate my phone", - "find_phone" - ], - [ - "can you tell me where i left my phone", - "find_phone" - ], - [ - "can you please locate my phone", - "find_phone" - ], - [ - "does ireland have any travel alerts i should be aware of", - "travel_alert" - ], - [ - "does north korea have any travel alerts i should be aware of", - "travel_alert" - ], - [ - "are there any travel alerts for russia", - "travel_alert" - ], - [ - "does spain have any travel alerts i should be aware of", - "travel_alert" - ], - [ - "are there any travel alerts for north korea", - "travel_alert" - ], - [ - "does macedonia have any travel alerts i should be aware of", - "travel_alert" - ], - [ - "are there any travel alerts for syria", - "travel_alert" - ], - [ - "are there any travel alerts for ukraine", - "travel_alert" - ], - [ - "does myanmar have any travel alerts i should be aware of", - "travel_alert" - ], - [ - "are there any travel alerts for china", - "travel_alert" - ], - [ - "is there a travel alert for russia", - "travel_alert" - ], - [ - "is there a travel alert for scotland", - "travel_alert" - ], - [ - "does russia have any travel alerts i should be aware of", - "travel_alert" - ], - [ - "is it safe to travel to iceland", - "travel_alert" - ], - [ - "is it safe to travel to russia", - "travel_alert" - ], - [ - "does italy have any travel alerts i should be aware of", - "travel_alert" - ], - [ - "does germany have any travel alerts i should be aware of", - "travel_alert" - ], - [ - "is there a travel alert for north korea", - "travel_alert" - ], - [ - "does china have any travel alerts i should be aware of", - "travel_alert" - ], - [ - "is there a travel alert for canada", - "travel_alert" - ], - [ - "is it safe to travel to norway", - "travel_alert" - ], - [ - "is it safe to travel to bermuda", - "travel_alert" - ], - [ - "is it safe to travel to argentina", - "travel_alert" - ], - [ - "does finland have any travel alerts i should be aware of", - "travel_alert" - ], - [ - "is there a travel alert for spain", - "travel_alert" - ], - [ - "have there been any travel alerts issued for france", - "travel_alert" - ], - [ - "tell me about any travel alerts issued for germany", - "travel_alert" - ], - [ - "are there any travel warnings for london", - "travel_alert" - ], - [ - "should i know about any travel alerts before traveling in the usa", - "travel_alert" - ], - [ - "are there any new travel warnings for the us", - "travel_alert" - ], - [ - "any travel advisories for portugal", - "travel_alert" - ], - [ - "can you tell me if germany issued any travel warnings", - "travel_alert" - ], - [ - "does france have any current travel alerts", - "travel_alert" - ], - [ - "does spain expect any travel alerts", - "travel_alert" - ], - [ - "i am going to australia and want to be notified of any travel alerts", - "travel_alert" - ], - [ - "i am going to be traveling in turkey, are there any alerts", - "travel_alert" - ], - [ - "are there any alerts for traveling in belize", - "travel_alert" - ], - [ - "what alerts are listed for traveling to paris", - "travel_alert" - ], - [ - "i need to know about travel alerts for mexico", - "travel_alert" - ], - [ - "what travel alerts are there in china", - "travel_alert" - ], - [ - "are there any alerts for travelling to beirut", - "travel_alert" - ], - [ - "argentina travel alert yes or no", - "travel_alert" - ], - [ - "does argentina have a travel alert", - "travel_alert" - ], - [ - "is there a travel alert in argentina", - "travel_alert" - ], - [ - "list of countries with travel alerts", - "travel_alert" - ], - [ - "can traveling to nepal be safe (what's safe in x)", - "travel_alert" - ], - [ - "will i be safe while traveling to lyon (will you be safe)", - "travel_alert" - ], - [ - "how safe is it to travel to mongolia (how safe is mongolia)", - "travel_alert" - ], - [ - "is it safe to travel to rio de janeiro (is rio de janeiro safe)", - "travel_alert" - ], - [ - "is traveling to dublin safe (will dublin be safe)", - "travel_alert" - ], - [ - "is new caledonia safer than other countries", - "travel_alert" - ], - [ - "is las vegas a safe place to visit", - "travel_alert" - ], - [ - "if i go to baltimore will i be safe", - "travel_alert" - ], - [ - "can you give me the travel alerts for jalisco, mexico", - "travel_alert" - ], - [ - "what are the latest travel alerts for dubai", - "travel_alert" - ], - [ - "are there any travel alerts i should know about for buenos aires, argentina", - "travel_alert" - ], - [ - "i need any relevant travel alerts for australia", - "travel_alert" - ], - [ - "are there travel notifications for columbia", - "travel_alert" - ], - [ - "where in the world is there a travel alert", - "travel_alert" - ], - [ - "what are today's travel advisories", - "travel_alert" - ], - [ - "can you list the places that there are travel alerts for", - "travel_alert" - ], - [ - "where are there current travel alerts", - "travel_alert" - ], - [ - "is there a travel alert for [country]", - "travel_alert" - ], - [ - "if i got to indonesia is it safe", - "travel_alert" - ], - [ - "i am thinking of going to brazil and was wondering if that is hazardous", - "travel_alert" - ], - [ - "would it be safe to go to columbia", - "travel_alert" - ], - [ - "is mexico a safe place", - "travel_alert" - ], - [ - "what potential hazards are there for going to spain", - "travel_alert" - ], - [ - "does a travel alert exist for that country", - "travel_alert" - ], - [ - "inform me if there's a travel alert for the country", - "travel_alert" - ], - [ - "does the country have a travel alert", - "travel_alert" - ], - [ - "i'd like to see if there's a travel alert for the country", - "travel_alert" - ], - [ - "can you tell me if there's a travel alert for that country", - "travel_alert" - ], - [ - "any travel alerts for south korea", - "travel_alert" - ], - [ - "are there travel alerts for europe", - "travel_alert" - ], - [ - "what are the currect travel alerts in africa", - "travel_alert" - ], - [ - "can i safely travel to brazil", - "travel_alert" - ], - [ - "does japan have any travel alerts i should be aware of", - "travel_alert" - ], - [ - "is there travel alerts for greece", - "travel_alert" - ], - [ - "how safe is it to travel to germany", - "travel_alert" - ], - [ - "is it safe to travel to china", - "travel_alert" - ], - [ - "is it safe to fly to russia", - "travel_alert" - ], - [ - "does france have any travel alerts i should be aware of", - "travel_alert" - ], - [ - "look for travel alerts for china", - "travel_alert" - ], - [ - "does south korea have any travel alerts i should be aware of", - "travel_alert" - ], - [ - "is it dangerous to travel to mexico", - "travel_alert" - ], - [ - "any travel alerts for canada", - "travel_alert" - ], - [ - "any travel alerts for that country i should know about", - "travel_alert" - ], - [ - "are there any travel alerts in that region", - "travel_alert" - ], - [ - "i need to know the travel alerts for kenya", - "travel_alert" - ], - [ - "any alerts for travelers to canada", - "travel_alert" - ], - [ - "should i be worried about any travel alerts for that country", - "travel_alert" - ], - [ - "look up travel alerts for canada", - "travel_alert" - ], - [ - "is there a travel alert for that country", - "travel_alert" - ], - [ - "find if there are any travel alerts for canada", - "travel_alert" - ], - [ - "search for any travel alerts for canada", - "travel_alert" - ], - [ - "does kenya have any travel alerts right now", - "travel_alert" - ], - [ - "check travel alerts for kenya", - "travel_alert" - ], - [ - "do i need to read any travel alerts for kenya", - "travel_alert" - ], - [ - "search for travel alerts for kenya", - "travel_alert" - ], - [ - "how do i put in a pto request for the first to the ninth", - "pto_request" - ], - [ - "am i allowed to put in a pto request for now to april", - "pto_request" - ], - [ - "is there a time i can put in a pto request for dec 2 to new years", - "pto_request" - ], - [ - "when can i put a pto request in for feb 22 to march 1", - "pto_request" - ], - [ - "i need a pto request on march 1 to 2", - "pto_request" - ], - [ - "on march 1-2 i want a pto request made for me", - "pto_request" - ], - [ - "schedule a pto request for me on march 1-2", - "pto_request" - ], - [ - "for march 1 to 2 make a pto request for me", - "pto_request" - ], - [ - "i want to schedule a pto request on march 1-2", - "pto_request" - ], - [ - "between october 7th and october 10th, i'd like for there to be a pto request for me", - "pto_request" - ], - [ - "i need a pto request for the dates jan 15th to jan 20th", - "pto_request" - ], - [ - "let's do a personal pto request for the dates may 12th to may 15th", - "pto_request" - ], - [ - "can you set up a pto request for me for march 20th to april 12th", - "pto_request" - ], - [ - "i'd like for their to be a pto request for me made for the dates june 4th to june 8th", - "pto_request" - ], - [ - "i'd like to go on vacation", - "pto_request" - ], - [ - "create a pto request for march 21st to march 26th", - "pto_request" - ], - [ - "i need to put in a pto request from the 8th to the 17th of january", - "pto_request" - ], - [ - "can you put in a pto request for the 5th of june to june 8th", - "pto_request" - ], - [ - "from december 22nd to the 25th, make me a pto request", - "pto_request" - ], - [ - "i need a pto request put in for the weekend of june 1st to june 2nd", - "pto_request" - ], - [ - "how do i schedule vacation days", - "pto_request" - ], - [ - "put in a pto request for march 4 to march 6", - "pto_request" - ], - [ - "i need to put in a pto request for march 4 to march 6", - "pto_request" - ], - [ - "how do i use my vacation days", - "pto_request" - ], - [ - "how do i put in for vacation", - "pto_request" - ], - [ - "how can i schedule a vacation request", - "pto_request" - ], - [ - "can you put in a pto request for march 4 to march 6 for me", - "pto_request" - ], - [ - "put in for time off march 4 to march 6", - "pto_request" - ], - [ - "where do i make a vacation request", - "pto_request" - ], - [ - "can i take pto form march 4 to march 6", - "pto_request" - ], - [ - "may i take a pto on february 7 and 8", - "pto_request" - ], - [ - "please tell me how to submit a vacation request", - "pto_request" - ], - [ - "can i take a pto for two days, starting on february 7", - "pto_request" - ], - [ - "i would like to know how to make a vacation request", - "pto_request" - ], - [ - "please tell me how to go about asking for a vacation", - "pto_request" - ], - [ - "can you tell me how to make a vacation request", - "pto_request" - ], - [ - "i would like to request a pto on february 7 and 8", - "pto_request" - ], - [ - "i would like to take a paid time off for february 7 and 8", - "pto_request" - ], - [ - "would you be able to tell me how to make a vacation request", - "pto_request" - ], - [ - "is it possible for me to take a pto for two days, starting february 7", - "pto_request" - ], - [ - "i want to put in a request for pto from may 5 to may 12", - "pto_request" - ], - [ - "i want you to make me a pto request for me for april twenty through may two", - "pto_request" - ], - [ - "i want to request pto from november 7 to 11", - "pto_request" - ], - [ - "how can i request a vacation from work", - "pto_request" - ], - [ - "how do i request vacation time", - "pto_request" - ], - [ - "what do i need to do to request vacation time off", - "pto_request" - ], - [ - "can you put in a pto request for me for july second and third", - "pto_request" - ], - [ - "what do i need to do if i want to ask for vacation time", - "pto_request" - ], - [ - "put in a pto request for me i want it for the ninth and the tenth of august", - "pto_request" - ], - [ - "how do i ask to have a vacation", - "pto_request" - ], - [ - "can you schedule a vacation for next week", - "pto_request" - ], - [ - "i'd like to make a vacation request", - "pto_request" - ], - [ - "what do i do to request a vacation", - "pto_request" - ], - [ - "how can i make a vacation request", - "pto_request" - ], - [ - "how do i book a vacation", - "pto_request" - ], - [ - "what is the process for requesting a vacation", - "pto_request" - ], - [ - "i want to schedule a vacation, can i request that through you", - "pto_request" - ], - [ - "can i put in a vacation request with you", - "pto_request" - ], - [ - "i need to set up a vacation request, what do i need to give you", - "pto_request" - ], - [ - "i need to take some time off, can i have the next week off", - "pto_request" - ], - [ - "what do i need to make a vacation request with you", - "pto_request" - ], - [ - "i need a pto request for march 3rd and 4th", - "pto_request" - ], - [ - "would it be possible to make a pto request for january 15th and 16th", - "pto_request" - ], - [ - "please put in a pto request for june 5th and 6th", - "pto_request" - ], - [ - "set a pto request for april 1st and 2nd", - "pto_request" - ], - [ - "i would like to make a pto request for july 17th and 18th", - "pto_request" - ], - [ - "submit a request for pto for the dates may 5th to the 12th", - "pto_request" - ], - [ - "please place a pto request for february 18th to the february 25th", - "pto_request" - ], - [ - "i would like you put in a pto request for the dates july 4th to the 8th", - "pto_request" - ], - [ - "i need to submit a request for pto for june 12th to june 14th", - "pto_request" - ], - [ - "can you put in a pto request for march 7th to the 9th", - "pto_request" - ], - [ - "i'd like to take a vacation day from 2/24 to 2/25", - "pto_request" - ], - [ - "i'd like to schedule some pto from 2/22 to 2/25", - "pto_request" - ], - [ - "make a pto request from april 2 to april 4", - "pto_request" - ], - [ - "request pto from march 8th until march 11th", - "pto_request" - ], - [ - "please request pto for me from march 3rd to march 7th", - "pto_request" - ], - [ - "could you submit a pto request for me from dates oct thirty to nov second", - "pto_request" - ], - [ - "could you submit a pto request for me from dates mar 3 to 9, please", - "pto_request" - ], - [ - "could you submit a pto request for me for dates april 21 to 30, please", - "pto_request" - ], - [ - "can you submit a pto request for me from dates nov 2 to 10, please", - "pto_request" - ], - [ - "could you submit a pto request for me for dates june 11 to 14", - "pto_request" - ], - [ - "please make a pto request for me from dates jan 21 to begininning of february", - "pto_request" - ], - [ - "please make a pto request for dates tomorrow to the twentieth", - "pto_request" - ], - [ - "please make a pto request from dates september 1 to 15", - "pto_request" - ], - [ - "make a pto request for dates november 11 to black friday", - "pto_request" - ], - [ - "make a pto request from dates may 3 to 9", - "pto_request" - ], - [ - "i want to put in a pto request for march 1-8", - "pto_request" - ], - [ - "how can i go about requesting a vacation", - "pto_request" - ], - [ - "can you put in a pto request for me from march 1-7", - "pto_request" - ], - [ - "please assist me by making a pto request for march 11-18", - "pto_request" - ], - [ - "would i be able to put in a pto request for march 21-26", - "pto_request" - ], - [ - "create for me a pto request for march 16-21", - "pto_request" - ], - [ - "what steps should i take if i want to request vacation", - "pto_request" - ], - [ - "tell me how to request vacation", - "pto_request" - ], - [ - "i'm intereted in requesting pto from april 1-5", - "pto_request" - ], - [ - "i need help making a pto request for march 3-10", - "pto_request" - ], - [ - "am i able to place a pto request for february 20-25", - "pto_request" - ], - [ - "can i request pto from march 9-16", - "pto_request" - ], - [ - "what is the protocol for requesting a vacation", - "pto_request" - ], - [ - "i want help making a pto request for february 22-27", - "pto_request" - ], - [ - "what steps should i take to improve my credit score", - "improve_credit_score" - ], - [ - "give me a recommendation to improve my credit score", - "improve_credit_score" - ], - [ - "what can i do to raise my credit score", - "improve_credit_score" - ], - [ - "steps to raise my credit score", - "improve_credit_score" - ], - [ - "is there a quick way to improve my credit score", - "improve_credit_score" - ], - [ - "what are ways to improve my credit", - "improve_credit_score" - ], - [ - "how to keep my credit score from going down", - "improve_credit_score" - ], - [ - "what are some ways to increase my credit", - "improve_credit_score" - ], - [ - "what can i do to keep my score from dropping", - "improve_credit_score" - ], - [ - "how do i build my credit score", - "improve_credit_score" - ], - [ - "how can i build my credit", - "improve_credit_score" - ], - [ - "what are ways to improve my credit score", - "improve_credit_score" - ], - [ - "i want to keep my credit score from going down, how do i do that", - "improve_credit_score" - ], - [ - "what can i do to improve my credit score", - "improve_credit_score" - ], - [ - "how can i keep my credit score from going down", - "improve_credit_score" - ], - [ - "how can i improve my credit score", - "improve_credit_score" - ], - [ - "how do i keep my credit score from dropping", - "improve_credit_score" - ], - [ - "how to improve my credit score", - "improve_credit_score" - ], - [ - "what are some way s i can do to improe my credit score", - "improve_credit_score" - ], - [ - "how to keep my credit up", - "improve_credit_score" - ], - [ - "how to keep my credit from dropping", - "improve_credit_score" - ], - [ - "i want to keep my credit from going down, how do i do this", - "improve_credit_score" - ], - [ - "my credit is going down what should i do", - "improve_credit_score" - ], - [ - "how do i maintain my credit score", - "improve_credit_score" - ], - [ - "how can i build credit", - "improve_credit_score" - ], - [ - "how do i keep good credit", - "improve_credit_score" - ], - [ - "what are ways to build credit", - "improve_credit_score" - ], - [ - "how to build up my credit score", - "improve_credit_score" - ], - [ - "what can i do to keep my credit in good standing", - "improve_credit_score" - ], - [ - "how do i keep my credit from lowering", - "improve_credit_score" - ], - [ - "give me some ways to build my credit score", - "improve_credit_score" - ], - [ - "what can i do to maintain good credit", - "improve_credit_score" - ], - [ - "can you tell me some tricks and tips i can use to see an increase in my credit score", - "improve_credit_score" - ], - [ - "are there ways for me to make my credit score better", - "improve_credit_score" - ], - [ - "i need a list of different methods for building my credit score", - "improve_credit_score" - ], - [ - "what are some of the ways that i can see an improvement in my credit score", - "improve_credit_score" - ], - [ - "what methods can i use to improve my credit score", - "improve_credit_score" - ], - [ - "what are some tips to build my credit score", - "improve_credit_score" - ], - [ - "help me build my credit score by showing me some ways on how to", - "improve_credit_score" - ], - [ - "show me some ways to build my credit score", - "improve_credit_score" - ], - [ - "what are the best ways to build my credit score", - "improve_credit_score" - ], - [ - "what are some steps to building my credit score", - "improve_credit_score" - ], - [ - "will doing this hurt my credit score", - "improve_credit_score" - ], - [ - "tell me all the ways my credit score can get hurt", - "improve_credit_score" - ], - [ - "i'm not sure if this will hurt my credit score", - "improve_credit_score" - ], - [ - "i want to find out if this will hurt my credit", - "improve_credit_score" - ], - [ - "tell me if the following thing can hurt my credit score", - "improve_credit_score" - ], - [ - "i want to know if opening a new account will decrease my credit score", - "improve_credit_score" - ], - [ - "i heard that opening a new account will decrease my credit score, is it true", - "improve_credit_score" - ], - [ - "is it true that opening a new account can decrease your credit score", - "improve_credit_score" - ], - [ - "please confirm that opening a new account can decrease your credit score", - "improve_credit_score" - ], - [ - "tell me if opening a new account will decrease my credit score", - "improve_credit_score" - ], - [ - "what are some mistakes to avoid so that my credit score stays high", - "improve_credit_score" - ], - [ - "how can i protect my credit rating", - "improve_credit_score" - ], - [ - "tell me some things i can do to secure my credit rating", - "improve_credit_score" - ], - [ - "what are some ways to keep my credit score up", - "improve_credit_score" - ], - [ - "give me tips on maintaining good credit", - "improve_credit_score" - ], - [ - "what factors can ruin a credit score", - "improve_credit_score" - ], - [ - "pull up ways to lower credit score", - "improve_credit_score" - ], - [ - "is it possible to lower my credit score by doing this", - "improve_credit_score" - ], - [ - "what can harm my credit score", - "improve_credit_score" - ], - [ - "are there any new harmful things that could affect my credit score", - "improve_credit_score" - ], - [ - "how can i make my credit score better", - "improve_credit_score" - ], - [ - "what steps can i take to make sure my credit score doesn't go down", - "improve_credit_score" - ], - [ - "how can i ensure my credit score doesn't drop", - "improve_credit_score" - ], - [ - "i'd like to improve my credit score", - "improve_credit_score" - ], - [ - "what do i do to stop my credit score from going lower", - "improve_credit_score" - ], - [ - "how do i make my credit score better", - "improve_credit_score" - ], - [ - "how can i go about improving my credit score", - "improve_credit_score" - ], - [ - "i'd like to make my credit score better", - "improve_credit_score" - ], - [ - "i'd like to find ways to improve my credit score", - "improve_credit_score" - ], - [ - "how do i prevent my credit score from lowering", - "improve_credit_score" - ], - [ - "how can i stop my credit score from dropping", - "improve_credit_score" - ], - [ - "tell me how to improve my credit score", - "improve_credit_score" - ], - [ - "ways to build credit", - "improve_credit_score" - ], - [ - "tell me ways to improve my credit score", - "improve_credit_score" - ], - [ - "how can i hurt my credit score", - "improve_credit_score" - ], - [ - "does carrying a balance hurt my credit score", - "improve_credit_score" - ], - [ - "would being late hurt my credit", - "improve_credit_score" - ], - [ - "does medical debt hurt my credit score", - "improve_credit_score" - ], - [ - "would late payments hurt my credit", - "improve_credit_score" - ], - [ - "can i hurt my credit score", - "improve_credit_score" - ], - [ - "how is the credit score hurt", - "improve_credit_score" - ], - [ - "so how can i hurt my credit score", - "improve_credit_score" - ], - [ - "will checking your credit lower my score", - "improve_credit_score" - ], - [ - "is it true a hard pull hurts my credit score", - "improve_credit_score" - ], - [ - "what lowers you credit score", - "improve_credit_score" - ], - [ - "can i harm my credit if i miss a car payment", - "improve_credit_score" - ], - [ - "will a loan lower my credit score", - "improve_credit_score" - ], - [ - "how do i make sure my credit doesn't fall", - "improve_credit_score" - ], - [ - "what's the best way to build credit", - "improve_credit_score" - ], - [ - "can i improve my credit score", - "improve_credit_score" - ], - [ - "what lowers credit score", - "improve_credit_score" - ], - [ - "how do i build credit", - "improve_credit_score" - ], - [ - "how to improve a credit score", - "improve_credit_score" - ], - [ - "how do i improve my credit score", - "improve_credit_score" - ], - [ - "how to protect my credit score", - "improve_credit_score" - ], - [ - "can i protect my credit score", - "improve_credit_score" - ], - [ - "how to keep credit score high", - "improve_credit_score" - ], - [ - "do you know if bouncing one check on your checking account can hurt your credit score or not", - "improve_credit_score" - ], - [ - "lets hear an interesting fact about funko pops", - "fun_fact" - ], - [ - "know any interesting facts", - "fun_fact" - ], - [ - "what is one fun fact", - "fun_fact" - ], - [ - "tell me a fact", - "fun_fact" - ], - [ - "lets hear a fact", - "fun_fact" - ], - [ - "any unique trivia about beats headphones", - "fun_fact" - ], - [ - "tell me a fact i may not know", - "fun_fact" - ], - [ - "what is one thing i might not know about nike shoes", - "fun_fact" - ], - [ - "tell me something interesting about sperm whales", - "fun_fact" - ], - [ - "i want to know a fun fact about pluto", - "fun_fact" - ], - [ - "what's an interesting fact about flamingos", - "fun_fact" - ], - [ - "tell me a random fact", - "fun_fact" - ], - [ - "have any cool facts on reptiles", - "fun_fact" - ], - [ - "i want to learn an interesting fact about cats", - "fun_fact" - ], - [ - "read me some fun facts", - "fun_fact" - ], - [ - "tell me a few facts about cats", - "fun_fact" - ], - [ - "help me learn something intriguing about turtles", - "fun_fact" - ], - [ - "read me some interesting information about cats", - "fun_fact" - ], - [ - "what's an interesting tidbit about rivers", - "fun_fact" - ], - [ - "can you tell me something i don't know about banks", - "fun_fact" - ], - [ - "can you tell me a fun fact regarding cars", - "fun_fact" - ], - [ - "do you know any fun facts about shampoo", - "fun_fact" - ], - [ - "what's a fun fact about eggs", - "fun_fact" - ], - [ - "what's a neat fact about twinkies", - "fun_fact" - ], - [ - "i'd like to hear a fun fact about adult entertainment", - "fun_fact" - ], - [ - "tell me something neat about slinkies", - "fun_fact" - ], - [ - "tell me something fun about gravity", - "fun_fact" - ], - [ - "say trivia about lebron james", - "fun_fact" - ], - [ - "tell me a fun fact about mt everest", - "fun_fact" - ], - [ - "give me some trivia about lebron james", - "fun_fact" - ], - [ - "what are some trivia questions about lebron james", - "fun_fact" - ], - [ - "repeat that fun fact about mt everest", - "fun_fact" - ], - [ - "what is a fun fact about mt everest", - "fun_fact" - ], - [ - "say a fun fact about mt everest", - "fun_fact" - ], - [ - "do you know any fun facts about mt everest", - "fun_fact" - ], - [ - "explain some trivia about lebron james", - "fun_fact" - ], - [ - "communicate trivia about lebron james", - "fun_fact" - ], - [ - "what are fun facts about lighthouses", - "fun_fact" - ], - [ - "can you tell me fun facts about lighthouses", - "fun_fact" - ], - [ - "tell me interesting facts about lighthouses", - "fun_fact" - ], - [ - "tell me a fun trivia bit about artificial intelligence", - "fun_fact" - ], - [ - "do you know any trivia about the ocean", - "fun_fact" - ], - [ - "tell me something neat about the ocean floor", - "fun_fact" - ], - [ - "i'd like to hear a fun fact about the nfl", - "fun_fact" - ], - [ - "i want to hear an interesting fact about dinosaurs", - "fun_fact" - ], - [ - "please tell me an interesting tidbit about the roman empire", - "fun_fact" - ], - [ - "can you share some trivia with me about us history", - "fun_fact" - ], - [ - "do you know any fun facts about the ocean", - "fun_fact" - ], - [ - "i want to learn a neat fact about black holes", - "fun_fact" - ], - [ - "can you give me a good piece of trivia about the rainforest", - "fun_fact" - ], - [ - "tell me something interesting about outer space", - "fun_fact" - ], - [ - "share with me a fun fact about outer space", - "fun_fact" - ], - [ - "tell me a neat fact about the ocean", - "fun_fact" - ], - [ - "tell me some interesting trivia about dinosaurs", - "fun_fact" - ], - [ - "i want to hear a fun fact about american presidents", - "fun_fact" - ], - [ - "give me an interesting fact about antarctica", - "fun_fact" - ], - [ - "can you share something interesting about world war one", - "fun_fact" - ], - [ - "i want to know some trivia about our solar system", - "fun_fact" - ], - [ - "tell me a fun fact about the olympics", - "fun_fact" - ], - [ - "tell me something cool about elephants", - "fun_fact" - ], - [ - "name some awesome things about dogs", - "fun_fact" - ], - [ - "list some neat stuff about rats", - "fun_fact" - ], - [ - "what's a good trivia fact about china", - "fun_fact" - ], - [ - "give me a fun fact about otters", - "fun_fact" - ], - [ - "do you know any fun facts about australian football", - "fun_fact" - ], - [ - "tell me some trivia about birds", - "fun_fact" - ], - [ - "do you know any trivia about ostriches", - "fun_fact" - ], - [ - "what's a good fun fact about great britain", - "fun_fact" - ], - [ - "give me trivia about bats", - "fun_fact" - ], - [ - "fun facts about tigers", - "fun_fact" - ], - [ - "tell me something interesting about los angeles", - "fun_fact" - ], - [ - "what's a fun fact about mythology", - "fun_fact" - ], - [ - "what's a fun fact relating to elephants", - "fun_fact" - ], - [ - "what's a cool and interesting thing about dogs", - "fun_fact" - ], - [ - "i'd like to hear some trivia about florida", - "fun_fact" - ], - [ - "tell me a fun fact about butterflies", - "fun_fact" - ], - [ - "please give me a really impressive piece of trivia about bubble gum", - "fun_fact" - ], - [ - "what is the most fun fact you know about the film industry", - "fun_fact" - ], - [ - "please tell me trivia about hamburgers", - "fun_fact" - ], - [ - "what is the most unique piece of trivia relating to cameras", - "fun_fact" - ], - [ - "what's a fun fact about elephants", - "fun_fact" - ], - [ - "tell me some amazing trivia about radios", - "fun_fact" - ], - [ - "tell me a fun fact about computer", - "fun_fact" - ], - [ - "please tell me a really fun fact about facebook", - "fun_fact" - ], - [ - "can you tell me the most interesting fact about resistors", - "fun_fact" - ], - [ - "what is an amazing trivia fact relating to 3d printing", - "fun_fact" - ], - [ - "tell me a fun fact about tigers", - "fun_fact" - ], - [ - "can you tell me a fun fact about elephants", - "fun_fact" - ], - [ - "what is a fun fact about dogs", - "fun_fact" - ], - [ - "what would be a fun fact about cats", - "fun_fact" - ], - [ - "tell me all about the trivia with friends", - "fun_fact" - ], - [ - "i need to know trivia on star wars", - "fun_fact" - ], - [ - "lets fin out some fun facts about humans", - "fun_fact" - ], - [ - "i want to know all about trivia for the office", - "fun_fact" - ], - [ - "explain to me the trivia on twilight", - "fun_fact" - ], - [ - "lets go threw some trivia on sports", - "fun_fact" - ], - [ - "trivia about something,tell me some", - "fun_fact" - ], - [ - "tell me about something some trivia", - "fun_fact" - ], - [ - "tell me some something trivia", - "fun_fact" - ], - [ - "about something,tell me some trivia", - "fun_fact" - ], - [ - "adjust your language setting to english", - "change_language" - ], - [ - "change and set your language setting to english", - "change_language" - ], - [ - "set your language setting to english", - "change_language" - ], - [ - "make your preferred language english", - "change_language" - ], - [ - "i would like to have language set to spanish, please", - "change_language" - ], - [ - "please give me your responses only in french from now on", - "change_language" - ], - [ - "can we speak in english rather than zulu", - "change_language" - ], - [ - "i would like to change your language from portuguese to italian", - "change_language" - ], - [ - "change the response language to french please", - "change_language" - ], - [ - "what languages can i switch to for your responses", - "change_language" - ], - [ - "can you give me the answers in italian instead of english", - "change_language" - ], - [ - "i want us to speak to each other in spanish from now on", - "change_language" - ], - [ - "switch the language for your responses, please", - "change_language" - ], - [ - "let's speak in mandarin instead of english", - "change_language" - ], - [ - "how can we start communicating in french rather than english", - "change_language" - ], - [ - "please change the language that you are responding in", - "change_language" - ], - [ - "how do i change the language that your responses are delivered in", - "change_language" - ], - [ - "i need to switch the language for your responses", - "change_language" - ], - [ - "i need to change language to spanish", - "change_language" - ], - [ - "fix my language to spanish", - "change_language" - ], - [ - "speak in the language english", - "change_language" - ], - [ - "i need to change my speaking to spanish", - "change_language" - ], - [ - "i want to switch speaking to french", - "change_language" - ], - [ - "replace my language to chinese", - "change_language" - ], - [ - "can you change your language to japanese", - "change_language" - ], - [ - "change your language to spanish please", - "change_language" - ], - [ - "can you translate that to french", - "change_language" - ], - [ - "please respond to me in spanish", - "change_language" - ], - [ - "can you speak to me using japanese", - "change_language" - ], - [ - "i would appreciate it if you could talk to me in french", - "change_language" - ], - [ - "do you know french", - "change_language" - ], - [ - "can we talk in french", - "change_language" - ], - [ - "can you talk to me in italian", - "change_language" - ], - [ - "can you speak to me in french", - "change_language" - ], - [ - "can you speak to me in chinese", - "change_language" - ], - [ - "talk to me in italian from now on", - "change_language" - ], - [ - "can i start talking to you in french", - "change_language" - ], - [ - "can you talk to me in french", - "change_language" - ], - [ - "can you talk in spanish", - "change_language" - ], - [ - "can i start talking to you in spanish", - "change_language" - ], - [ - "please talk to me in spanish", - "change_language" - ], - [ - "can you understand me, if i start talking in italian", - "change_language" - ], - [ - "is it ok if i start speaking to you in german", - "change_language" - ], - [ - "can i give you instructions in japanese", - "change_language" - ], - [ - "talk to me in spanish from now on", - "change_language" - ], - [ - "can you talk to me in chinese", - "change_language" - ], - [ - "i am going to switch to greek", - "change_language" - ], - [ - "i want to use spanish as my language", - "change_language" - ], - [ - "i will be speaking chinese going forward", - "change_language" - ], - [ - "the language i am using will now be italian", - "change_language" - ], - [ - "i am changing over to italian now", - "change_language" - ], - [ - "is there an option to speak only in mandarin", - "change_language" - ], - [ - "let's go ahead and switch your language", - "change_language" - ], - [ - "i want to edit the language", - "change_language" - ], - [ - "is it possible to only talk in spanish", - "change_language" - ], - [ - "let me talk to you in greek", - "change_language" - ], - [ - "change the native language", - "change_language" - ], - [ - "can i speak to you in german", - "change_language" - ], - [ - "is there an option to change the language", - "change_language" - ], - [ - "i need to change the language to french", - "change_language" - ], - [ - "how can i adjust the spoken language", - "change_language" - ], - [ - "answer me in french", - "change_language" - ], - [ - "please respond in latin from now on", - "change_language" - ], - [ - "talk to me in italian", - "change_language" - ], - [ - "let\u2019s chat using spanish", - "change_language" - ], - [ - "i need the language set to swahili", - "change_language" - ], - [ - "change the language you're using to american english", - "change_language" - ], - [ - "switch the language setting over to german", - "change_language" - ], - [ - "change language to french, please", - "change_language" - ], - [ - "can you swap the language to afrikaans for me", - "change_language" - ], - [ - "i want you to address me in italian", - "change_language" - ], - [ - "i want you to speak in french", - "change_language" - ], - [ - "start talking in spanish", - "change_language" - ], - [ - "can you speak in french", - "change_language" - ], - [ - "i want to hear from you in german", - "change_language" - ], - [ - "change your language setting to german", - "change_language" - ], - [ - "alter your language to french", - "change_language" - ], - [ - "change your language prefrences japanese", - "change_language" - ], - [ - "change your language setting to chinese", - "change_language" - ], - [ - "alter your language choice to dutch", - "change_language" - ], - [ - "change your language", - "change_language" - ], - [ - "can i change your language", - "change_language" - ], - [ - "select a new language", - "change_language" - ], - [ - "i want to put you in a different language", - "change_language" - ], - [ - "let's change the language for you", - "change_language" - ], - [ - "set default language to english", - "change_language" - ], - [ - "you should respond in english", - "change_language" - ], - [ - "please respond in english", - "change_language" - ], - [ - "change your spoken language to english", - "change_language" - ], - [ - "change language setting to english", - "change_language" - ], - [ - "switch your language setting to english", - "change_language" - ], - [ - "i want your language changed to chinese", - "change_language" - ], - [ - "can you start talking to me in spanish from here on out", - "change_language" - ], - [ - "please speak to me in chinese", - "change_language" - ], - [ - "please make your language setting french", - "change_language" - ], - [ - "please speak german to me from now on", - "change_language" - ], - [ - "i need your language setting to be russian now", - "change_language" - ], - [ - "please change your language setting to spanish", - "change_language" - ], - [ - "i want your responses to be in french", - "change_language" - ], - [ - "from now on, i want you to answer me using japanese", - "change_language" - ], - [ - "on what date do i get paid", - "payday" - ], - [ - "what day do i get my paycheck", - "payday" - ], - [ - "i need to know when to expect my next paycheck", - "payday" - ], - [ - "tell me when my next paycheck will arrive", - "payday" - ], - [ - "what date do i get my next paycheck", - "payday" - ], - [ - "when will i be getting my next paycheck", - "payday" - ], - [ - "when's the the last time i was paid", - "payday" - ], - [ - "what date did i receive my last paycheck", - "payday" - ], - [ - "when was my last payday", - "payday" - ], - [ - "when was my last paycheck", - "payday" - ], - [ - "when's the last time i got a paycheck", - "payday" - ], - [ - "i need to know when i was paid last", - "payday" - ], - [ - "tell me when i last got paid", - "payday" - ], - [ - "tell me when i received my last paycheck", - "payday" - ], - [ - "i want to know when i was last paid", - "payday" - ], - [ - "when did i get my last paycheck", - "payday" - ], - [ - "please give me the expected arrival date for my next paycheck", - "payday" - ], - [ - "tell me when i received my most recent paycheck", - "payday" - ], - [ - "do you know when i can expect my next paycheck", - "payday" - ], - [ - "i need to know when i got latest paycheck", - "payday" - ], - [ - "tell me when my next paycheck is set to arrive", - "payday" - ], - [ - "can you confirm the date my last paycheck was received", - "payday" - ], - [ - "can you tell me what day my next paycheck will come", - "payday" - ], - [ - "what is the date of my last paycheck", - "payday" - ], - [ - "i need to know the date my next paycheck will be here", - "payday" - ], - [ - "please find the receipt date for my last paycheck", - "payday" - ], - [ - "when does my paycheck arrive", - "payday" - ], - [ - "i want to know when to expect my next paycheck", - "payday" - ], - [ - "will i get my paycheck soon", - "payday" - ], - [ - "what date will my next paycheck be here", - "payday" - ], - [ - "is my paycheck arriving soon", - "payday" - ], - [ - "what day will my paycheck come", - "payday" - ], - [ - "did i receive my paycheck this week", - "payday" - ], - [ - "when will my next paycheck be", - "payday" - ], - [ - "when am i paid", - "payday" - ], - [ - "when is my pay period", - "payday" - ], - [ - "how much longer until i have a direct deposit", - "payday" - ], - [ - "how many days until my next payday", - "payday" - ], - [ - "when will my paycheck be available", - "payday" - ], - [ - "my next paycheck is available when", - "payday" - ], - [ - "when will i recieve my next paycheck", - "payday" - ], - [ - "let me know when i'm going to be paid", - "payday" - ], - [ - "can you tell me when i'm supposed to get paid", - "payday" - ], - [ - "tell me when i get paid", - "payday" - ], - [ - "how much longer until the next payday", - "payday" - ], - [ - "when will i recieve another paycheck", - "payday" - ], - [ - "what date is another paycheck due", - "payday" - ], - [ - "when do i get paid again", - "payday" - ], - [ - "when should another paycheck arrive", - "payday" - ], - [ - "when is my next paycheck due", - "payday" - ], - [ - "when will i be paid again", - "payday" - ], - [ - "which date is my next paycheck due", - "payday" - ], - [ - "what is my next payday", - "payday" - ], - [ - "find my next payday", - "payday" - ], - [ - "next payday please", - "payday" - ], - [ - "my next payday", - "payday" - ], - [ - "what is the date i get paid", - "payday" - ], - [ - "day that i get paid", - "payday" - ], - [ - "what is my pay date", - "payday" - ], - [ - "next payday", - "payday" - ], - [ - "what day do i get paid", - "payday" - ], - [ - "what day is my next payday", - "payday" - ], - [ - "when is the next day i get paid", - "payday" - ], - [ - "when will i get paid next", - "payday" - ], - [ - "when's my next paycheck", - "payday" - ], - [ - "how long is it until payday", - "payday" - ], - [ - "when should i expect my next paycheck", - "payday" - ], - [ - "when is the next time i get paid", - "payday" - ], - [ - "what day will i get paid", - "payday" - ], - [ - "when is my next direct deposit from my job", - "payday" - ], - [ - "when is payday", - "payday" - ], - [ - "when is my paycheck coming", - "payday" - ], - [ - "when was the last date that i got a paycheck", - "payday" - ], - [ - "when was i last paid", - "payday" - ], - [ - "when was the last date that i got paid", - "payday" - ], - [ - "when was the date that i was last paid", - "payday" - ], - [ - "when was the last date that i was paid", - "payday" - ], - [ - "when am i due for my next paycheck", - "payday" - ], - [ - "what time is my next paycheck coming", - "payday" - ], - [ - "when will my next paycheck come", - "payday" - ], - [ - "when will i get my next paycheck", - "payday" - ], - [ - "when is my next paycheck", - "payday" - ], - [ - "tell me my next paycheck", - "payday" - ], - [ - "when did i get paid the last time", - "payday" - ], - [ - "tell me when my next paycheck will be here", - "payday" - ], - [ - "when was the last time i got paid", - "payday" - ], - [ - "i wanna know when i was paid last", - "payday" - ], - [ - "when was my last payment", - "payday" - ], - [ - "when was i paid last", - "payday" - ], - [ - "i wanna know my next paycheck", - "payday" - ], - [ - "tell me on what day did i get paid last", - "payday" - ], - [ - "remind me of the date of my last paycheck", - "payday" - ], - [ - "on what date did i get paid last", - "payday" - ], - [ - "when did they deposit my last salary", - "payday" - ], - [ - "when was i paid the last time", - "payday" - ], - [ - "when's payday", - "payday" - ], - [ - "when's my next payday", - "payday" - ], - [ - "when do i get paid", - "payday" - ], - [ - "what day do i get paid next", - "payday" - ], - [ - "when do i get my next check", - "payday" - ], - [ - "tell me about today weather", - "replacement_card_duration" - ], - [ - "can my debit card be replaced quickly", - "replacement_card_duration" - ], - [ - "how long does visa take to get me a new card", - "replacement_card_duration" - ], - [ - "is my card made immedietly after reporting stolen", - "replacement_card_duration" - ], - [ - "can i replace a stolen card soon", - "replacement_card_duration" - ], - [ - "how long to replace a credit card", - "replacement_card_duration" - ], - [ - "how soon until you send me replacement card", - "replacement_card_duration" - ], - [ - "when will you mail me a replacement card", - "replacement_card_duration" - ], - [ - "how long until you send me a replacement card", - "replacement_card_duration" - ], - [ - "when will you send me a replacement card", - "replacement_card_duration" - ], - [ - "when can you send me a replacement card", - "replacement_card_duration" - ], - [ - "how long will delivery of a new card take", - "replacement_card_duration" - ], - [ - "when can i expect my replacement card", - "replacement_card_duration" - ], - [ - "how long can i expect to wait for a new card", - "replacement_card_duration" - ], - [ - "when do they mail me a replacement card", - "replacement_card_duration" - ], - [ - "when does the replacement card arrive", - "replacement_card_duration" - ], - [ - "if my credit card was stolen, how long will it take to replace", - "replacement_card_duration" - ], - [ - "how long will i have to wait until they replace a stolen credit card", - "replacement_card_duration" - ], - [ - "how long does it take to replace a stolen credit card", - "replacement_card_duration" - ], - [ - "how long will a new card take to come in the mail", - "replacement_card_duration" - ], - [ - "what's the timeline on replacing a stolen credit card", - "replacement_card_duration" - ], - [ - "do i get a replacement card mailed, and when", - "replacement_card_duration" - ], - [ - "what's the transit time on a new card", - "replacement_card_duration" - ], - [ - "will you notify me when my new card is on the way", - "replacement_card_duration" - ], - [ - "what is the quickest way to get a new card", - "replacement_card_duration" - ], - [ - "what is the turn around for a new card", - "replacement_card_duration" - ], - [ - "how long will it take to get a new card", - "replacement_card_duration" - ], - [ - "when can i expect my new card", - "replacement_card_duration" - ], - [ - "my new card will arrive when", - "replacement_card_duration" - ], - [ - "my new card arrives in the post when", - "replacement_card_duration" - ], - [ - "how long til my new card arrives by mail", - "replacement_card_duration" - ], - [ - "my new card will get here in the mail when", - "replacement_card_duration" - ], - [ - "if i ordered a new card, how long til it comes", - "replacement_card_duration" - ], - [ - "when can i expect my new card to get here", - "replacement_card_duration" - ], - [ - "when will my new card come in the mail", - "replacement_card_duration" - ], - [ - "when will my new visa get here", - "replacement_card_duration" - ], - [ - "my card is coming by mail how long will that take", - "replacement_card_duration" - ], - [ - "how long will it take a new card to come in the mail", - "replacement_card_duration" - ], - [ - "what date will my card be here", - "replacement_card_duration" - ], - [ - "how many days do i have to wait for my card", - "replacement_card_duration" - ], - [ - "when will me new card arrive", - "replacement_card_duration" - ], - [ - "how long does it take to get a replacement card", - "replacement_card_duration" - ], - [ - "if i order a new card how long would it take", - "replacement_card_duration" - ], - [ - "if i need a new card mailed how long will it take", - "replacement_card_duration" - ], - [ - "how long will it be for me to get a new card", - "replacement_card_duration" - ], - [ - "how long will a new card take to reach me", - "replacement_card_duration" - ], - [ - "time to get replacement credit card for stolen one", - "replacement_card_duration" - ], - [ - "how long it takes to get a new replacement card", - "replacement_card_duration" - ], - [ - "mailing to me for a new card takes how long", - "replacement_card_duration" - ], - [ - "mailing a new card to me takes how long", - "replacement_card_duration" - ], - [ - "for anew card to be mailed to me, how long does it take", - "replacement_card_duration" - ], - [ - "it takes how long to mail me a new card", - "replacement_card_duration" - ], - [ - "a new cards takes how long to mail to me", - "replacement_card_duration" - ], - [ - "average time to receive new card", - "replacement_card_duration" - ], - [ - "how long to get a new credit card", - "replacement_card_duration" - ], - [ - "how many days before my credit card arrives", - "replacement_card_duration" - ], - [ - "will my credit card be mailed soon", - "replacement_card_duration" - ], - [ - "when will i get my new credit card", - "replacement_card_duration" - ], - [ - "my credit card was stolen; how long before a new one will arrive", - "replacement_card_duration" - ], - [ - "my credit card has been stolen and i want to know how long it will be before i can get a new one", - "replacement_card_duration" - ], - [ - "how long will it take for me to get a new credit card to replace the one that was stolen", - "replacement_card_duration" - ], - [ - "my credit card got stolen and i need to know how long it will be before a new on arrives", - "replacement_card_duration" - ], - [ - "how many days will it take to get a new credit card to replace the one stolen from me", - "replacement_card_duration" - ], - [ - "what's the expected time to have a stolen credit card replaced", - "replacement_card_duration" - ], - [ - "how long does it take to replace a lost card", - "replacement_card_duration" - ], - [ - "how long should i expect to wait for my new card in the mail", - "replacement_card_duration" - ], - [ - "how long should i wait to get my new card when my old one was stolen", - "replacement_card_duration" - ], - [ - "what's the typical lag time in receiving a new credit card when your previous one was lost", - "replacement_card_duration" - ], - [ - "what's the usual time to get a new card when your previous one was lost", - "replacement_card_duration" - ], - [ - "how long will it take before the postal service delivers my new card", - "replacement_card_duration" - ], - [ - "what's the typical time it takes for a new card to arrive", - "replacement_card_duration" - ], - [ - "when will i get a replacement card for a lost one", - "replacement_card_duration" - ], - [ - "what's the eta for a new card to come in the mail", - "replacement_card_duration" - ], - [ - "my last card was stolen and i want to know how long until i get my new one", - "replacement_card_duration" - ], - [ - "how many days till i get a new card to replace the stolen one", - "replacement_card_duration" - ], - [ - "what's the average time it takes for a new card to arrive", - "replacement_card_duration" - ], - [ - "how long until the credit card company replaces my lost card", - "replacement_card_duration" - ], - [ - "how long does it take to get a replacement credit card when your last one was stolen", - "replacement_card_duration" - ], - [ - "how soon will i be sent a new card", - "replacement_card_duration" - ], - [ - "how many days does it take to receive a new card", - "replacement_card_duration" - ], - [ - "how long does it take you to mail me a new card", - "replacement_card_duration" - ], - [ - "how soon will you mail me a new card", - "replacement_card_duration" - ], - [ - "what is the earliest date i can get my new card", - "replacement_card_duration" - ], - [ - "whats the wait time for a replacement card", - "replacement_card_duration" - ], - [ - "how long until i get a replacement card", - "replacement_card_duration" - ], - [ - "how long before i can get a replacement card", - "replacement_card_duration" - ], - [ - "when will a replacement card get here", - "replacement_card_duration" - ], - [ - "how long is the shipping for my replacement card", - "replacement_card_duration" - ], - [ - "what date will my replacement card arrive on", - "replacement_card_duration" - ], - [ - "is my replacement card coming soon", - "replacement_card_duration" - ], - [ - "when will my card replacement arrive", - "replacement_card_duration" - ], - [ - "when will my card come", - "replacement_card_duration" - ], - [ - "when should i expect my replacement card", - "replacement_card_duration" - ], - [ - "when will my replacement card get mailed", - "replacement_card_duration" - ], - [ - "do you know when my card will come in", - "replacement_card_duration" - ], - [ - "do when you when my replacement card will get mailed", - "replacement_card_duration" - ], - [ - "what date will my replacement card get mailed", - "replacement_card_duration" - ], - [ - "what would be the estimated time from to get a new card mailed to me", - "replacement_card_duration" - ], - [ - "what is the time frame to get a new card mailed to me", - "replacement_card_duration" - ], - [ - "how long until i can expect my new card to get mailed to me", - "replacement_card_duration" - ], - [ - "what time is it in punta gorda, florida", - "time" - ], - [ - "what time is it in glenwood springs, co", - "time" - ], - [ - "what time is it in fredericksburg, tx", - "time" - ], - [ - "what time is it in las vegas, nv", - "time" - ], - [ - "what time is it in houston, tx", - "time" - ], - [ - "i need to know the current time in the central timezone", - "time" - ], - [ - "would you tell me the current time in the eastern timezone", - "time" - ], - [ - "let me know the current time in the central timezone", - "time" - ], - [ - "tell me what time it is in the central timezone", - "time" - ], - [ - "i am needing to know the current time in the eastern timezone", - "time" - ], - [ - "what is the time right now in the hst timezone", - "time" - ], - [ - "can you tell me the current time", - "time" - ], - [ - "what is the current time in cst", - "time" - ], - [ - "i need to know what time it is in florida", - "time" - ], - [ - "what is the time right now", - "time" - ], - [ - "in the mst time zone, what time is it right now", - "time" - ], - [ - "tell me what time it is right now", - "time" - ], - [ - "can you tell me the current time in the pacific timezone", - "time" - ], - [ - "look up the time in california", - "time" - ], - [ - "what is the current est time", - "time" - ], - [ - "can you tell me what time it is please", - "time" - ], - [ - "what time is it getting to be", - "time" - ], - [ - "what time do you have on your watch", - "time" - ], - [ - "what time would it be in rome right now", - "time" - ], - [ - "what's the time in london", - "time" - ], - [ - "what's the time set to in florida right now", - "time" - ], - [ - "what time is it currently in istanbul", - "time" - ], - [ - "what time is it right now in paris", - "time" - ], - [ - "what's the time right now", - "time" - ], - [ - "current time, please", - "time" - ], - [ - "would you mind telling me the time", - "time" - ], - [ - "can you give me the time", - "time" - ], - [ - "please let me know what time it is", - "time" - ], - [ - "what is the exact time right now in the hawaii time zone", - "time" - ], - [ - "what is the time", - "time" - ], - [ - "what is the time right now in the peruvian time zone", - "time" - ], - [ - "what is the exact time", - "time" - ], - [ - "what time is it exactly in the new zealand time zone", - "time" - ], - [ - "what is the exact time in the ist time zone", - "time" - ], - [ - "what is the time in the utc timezone", - "time" - ], - [ - "what time is it exactly", - "time" - ], - [ - "what is the time now", - "time" - ], - [ - "what time is it in russia", - "time" - ], - [ - "what time is it", - "time" - ], - [ - "what is the time in sydney, australia", - "time" - ], - [ - "what time is it in honolulu", - "time" - ], - [ - "what's the current time in greenwhich", - "time" - ], - [ - "what's the current time in est", - "time" - ], - [ - "what time is it on the pacific coast right now", - "time" - ], - [ - "given my time, what time is it in mst", - "time" - ], - [ - "have you the time", - "time" - ], - [ - "when is it right now", - "time" - ], - [ - "what hour and minute is it", - "time" - ], - [ - "what time is it right now in cst", - "time" - ], - [ - "what time is it in the eastern standard timezone", - "time" - ], - [ - "what time is it in the pacific standard timezone", - "time" - ], - [ - "what time is it in the alaska standard timezone", - "time" - ], - [ - "what time is it in the central standard timezone", - "time" - ], - [ - "what time is it in the mountain standard timezone", - "time" - ], - [ - "now what is the time", - "time" - ], - [ - "at the moment what is the time", - "time" - ], - [ - "i want to know the time", - "time" - ], - [ - "what time is it now", - "time" - ], - [ - "do you know the current time in southern california", - "time" - ], - [ - "what is the current time in china", - "time" - ], - [ - "what is the current time in mexico city", - "time" - ], - [ - "what is the current time in new york", - "time" - ], - [ - "what is the current time in istanbul", - "time" - ], - [ - "what time is it in buenos aires", - "time" - ], - [ - "what time is it in north korea", - "time" - ], - [ - "what does it say on the clock", - "time" - ], - [ - "in tokyo, what's the time", - "time" - ], - [ - "in tokyo, what time is it", - "time" - ], - [ - "what's the time in tokyo", - "time" - ], - [ - "time in tokyo", - "time" - ], - [ - "what time is it in tokyo", - "time" - ], - [ - "the time please", - "time" - ], - [ - "i want to know what time it is", - "time" - ], - [ - "can you tell me the time", - "time" - ], - [ - "i would like to know the time", - "time" - ], - [ - "i need to know the time", - "time" - ], - [ - "the current time", - "time" - ], - [ - "in the eastern timezone, what time is it now", - "time" - ], - [ - "in the central timezone, what time is it", - "time" - ], - [ - "what's the current time now cst", - "time" - ], - [ - "in pacific time, what's the current time", - "time" - ], - [ - "what time is it now pacific time", - "time" - ], - [ - "what is the current time, please", - "time" - ], - [ - "what's the current time, please", - "time" - ], - [ - "what is the time, please", - "time" - ], - [ - "how is the time", - "time" - ], - [ - "please tell me the time", - "time" - ], - [ - "what time is it in london", - "time" - ], - [ - "what time is it in new york", - "time" - ], - [ - "what time is it in paris", - "time" - ], - [ - "what time is it in daniel boone national forest timezone", - "time" - ], - [ - "what is the time in atlantic timezone", - "time" - ], - [ - "what's the time in anchorage timezone", - "time" - ], - [ - "in bst timezone, what time is it", - "time" - ], - [ - "do you have the time", - "time" - ], - [ - "when will my application for my credit card be processed", - "application_status" - ], - [ - "has the discover card approved my app", - "application_status" - ], - [ - "do you know if my amex card app went through", - "application_status" - ], - [ - "have they looked over my app for the new credit card yet", - "application_status" - ], - [ - "has my application for the mastercard card gone through", - "application_status" - ], - [ - "have my app for a new card been processed yet", - "application_status" - ], - [ - "has the application i put in for a new visa been processed", - "application_status" - ], - [ - "has there been any notice that my card app has been looked at", - "application_status" - ], - [ - "has visa gotten back to me regarding my card app", - "application_status" - ], - [ - "see if my form submission for an american express card has been seen", - "application_status" - ], - [ - "do you know if anyone's even looked at the application i sent in for the new visa card", - "application_status" - ], - [ - "has anyone looked at my mastercard application", - "application_status" - ], - [ - "have i gotten confirmation for my credit card app", - "application_status" - ], - [ - "can you check if my application for a discovery card has been looked over yet", - "application_status" - ], - [ - "is there any indication my application for a new credit card has been processed", - "application_status" - ], - [ - "i put in a credit card application, so what is the status with it currently", - "application_status" - ], - [ - "did my visa card app go through yet", - "application_status" - ], - [ - "did my chase card application go through yet", - "application_status" - ], - [ - "do you know the status of the credit card application i filed", - "application_status" - ], - [ - "has the application for my visa been processed", - "application_status" - ], - [ - "i filed a credit card application so what is going on with it", - "application_status" - ], - [ - "did my american express card application go through yet", - "application_status" - ], - [ - "what is the status of the application for a credit card i put in", - "application_status" - ], - [ - "has the application for my american express been processed yet", - "application_status" - ], - [ - "my credit card application has what status", - "application_status" - ], - [ - "where can i go to see if my credit card application has been processed", - "application_status" - ], - [ - "will i be notified when my application has been processed", - "application_status" - ], - [ - "what is the status of my credit card application", - "application_status" - ], - [ - "how will i know when my application for a credit card has been processed", - "application_status" - ], - [ - "where can i find out the status of my credit card application", - "application_status" - ], - [ - "tell me if my application has been processed yet, i signed up for a credit card recently", - "application_status" - ], - [ - "can you check and see if my credit card application has been approved or not", - "application_status" - ], - [ - "has my application for a trust bank credit card been mailed out and if so was i approved or not", - "application_status" - ], - [ - "could you check and see if my credit card application has been processed and approved or not", - "application_status" - ], - [ - "i want to know if my application for a credit card at community bank has been approved or not", - "application_status" - ], - [ - "can you find out if my application at smith bank was approved or not i applied for s credit card a month ago", - "application_status" - ], - [ - "can you tell me if my application for a credit card has been processed yet it was at chase bank", - "application_status" - ], - [ - "was my application approved or not for a credit card at chase bank", - "application_status" - ], - [ - "i want an update on my application for a credit card that i sent in a couple weeks ago", - "application_status" - ], - [ - "i haven't heard if my application for a credit card has been accepted or not can you check on it for me", - "application_status" - ], - [ - "please look into the latest status of my credit card application", - "application_status" - ], - [ - "can you update me on the status of my american express card application", - "application_status" - ], - [ - "can you find out the latest on my credit card application, i haven't heard an update in some time", - "application_status" - ], - [ - "find out for me if my amex card application was received", - "application_status" - ], - [ - "can you check the status of my credit card application", - "application_status" - ], - [ - "how can i track the progress of my credit card application", - "application_status" - ], - [ - "has my credit card application been received, or what is its current status", - "application_status" - ], - [ - "i need to know what the latest is with my application for a visa credit card", - "application_status" - ], - [ - "please check the status of my mastercard application", - "application_status" - ], - [ - "do you know what the latest is with my credit card application", - "application_status" - ], - [ - "i would like an update on the progress of my credit card application", - "application_status" - ], - [ - "update me on the status of my credit card application", - "application_status" - ], - [ - "please get me an update on the status of my credit card application", - "application_status" - ], - [ - "has there been any changes in the status of my credit card application", - "application_status" - ], - [ - "please find out the current status of my credit card application", - "application_status" - ], - [ - "i want to be updated on the most recent status of my credit card application", - "application_status" - ], - [ - "tell me the present status of the credit card application i submitted", - "application_status" - ], - [ - "look into the status of the credit card application i submitted recently for my new card", - "application_status" - ], - [ - "look to see if my application for the barclay's card has gone through yet", - "application_status" - ], - [ - "i want to know if my credit card application has been processed yet", - "application_status" - ], - [ - "i need to know if the application been processed", - "application_status" - ], - [ - "tell me straight if it has been processed or not", - "application_status" - ], - [ - "can you tell me when my credit card application will be processed", - "application_status" - ], - [ - "how much longer until my credit card application is checked", - "application_status" - ], - [ - "when will my credit card app be approved", - "application_status" - ], - [ - "has my credit card application gone through", - "application_status" - ], - [ - "check on my credit card application", - "application_status" - ], - [ - "do i have any updates about my credit card application", - "application_status" - ], - [ - "has my credit card application been processed", - "application_status" - ], - [ - "have i received any messages about my credit card application", - "application_status" - ], - [ - "when can i hear the decision on my credit card application", - "application_status" - ], - [ - "my credit card application status", - "application_status" - ], - [ - "i applied for the credit card, have you processed my application", - "application_status" - ], - [ - "how long to process my credit card application", - "application_status" - ], - [ - "how is my application on new credit card going", - "application_status" - ], - [ - "what is the status of my new credit card application", - "application_status" - ], - [ - "is my application processed for credit card", - "application_status" - ], - [ - "help with credit card application status", - "application_status" - ], - [ - "is my credit card application approved", - "application_status" - ], - [ - "what is the status of my application for the credit card", - "application_status" - ], - [ - "has my credit card application been processed yet", - "application_status" - ], - [ - "what's the current status of the credit card i applied for", - "application_status" - ], - [ - "in what status is my credit card application", - "application_status" - ], - [ - "did the application i put in for a mastercard go through yet", - "application_status" - ], - [ - "has my application for a new credit card been processed", - "application_status" - ], - [ - "has my amex application gone through yet", - "application_status" - ], - [ - "i applied for a visa card; did that go through", - "application_status" - ], - [ - "what status is my card application in", - "application_status" - ], - [ - "did they process the credit card i applied for", - "application_status" - ], - [ - "i applied for a new credit card; did it process yet", - "application_status" - ], - [ - "did discover get my card application yet", - "application_status" - ], - [ - "tell me about my american express application; did it go through", - "application_status" - ], - [ - "tell me a little more about the status of my credit card application", - "application_status" - ], - [ - "tell me the status of my credit card application", - "application_status" - ], - [ - "is the processing done on my new credit card", - "application_status" - ], - [ - "i'm desperate to know about my cc processing", - "application_status" - ], - [ - "have you heard anything back on my cc application", - "application_status" - ], - [ - "is it likely my credit card application has processed yet", - "application_status" - ], - [ - "has my credit card application been approved", - "application_status" - ], - [ - "when will my cc application process", - "application_status" - ], - [ - "what is the projected time frame for the flight to land", - "flight_status" - ], - [ - "is there any news on flight dl123", - "flight_status" - ], - [ - "what is the word on flight dl123", - "flight_status" - ], - [ - "when will we begin to board my scheduled flight", - "flight_status" - ], - [ - "whats the status of my frontier flight", - "flight_status" - ], - [ - "when will my flight take off", - "flight_status" - ], - [ - "what is the arrival time for my flight", - "flight_status" - ], - [ - "whats the status of my delta flight", - "flight_status" - ], - [ - "whats the update on flight dl123", - "flight_status" - ], - [ - "is there an update on flight dl123", - "flight_status" - ], - [ - "when will my flight land", - "flight_status" - ], - [ - "at what point should the flight land", - "flight_status" - ], - [ - "what time is my flight scheduled to leave", - "flight_status" - ], - [ - "when is my flight supposed to leave", - "flight_status" - ], - [ - "whats the status of my south west flight", - "flight_status" - ], - [ - "when should the flight land", - "flight_status" - ], - [ - "whats the latest on flight dl123", - "flight_status" - ], - [ - "whats the status of my united flight", - "flight_status" - ], - [ - "whats the status of my singapore flight", - "flight_status" - ], - [ - "give me the status of flight dl123", - "flight_status" - ], - [ - "tell me that status of flight dl123", - "flight_status" - ], - [ - "is flight dl123 coming in on time", - "flight_status" - ], - [ - "is flight dl123 on time", - "flight_status" - ], - [ - "what's the latest with my united flight", - "flight_status" - ], - [ - "update me on my delta flight please", - "flight_status" - ], - [ - "tell me what the status of my american airlines flight is", - "flight_status" - ], - [ - "look up when my flight is set to start boarding", - "flight_status" - ], - [ - "at what time will my flight land", - "flight_status" - ], - [ - "i need to know the status of my alaska air flight", - "flight_status" - ], - [ - "at what time will my flight begin boarding", - "flight_status" - ], - [ - "what time is my flight supposed to board", - "flight_status" - ], - [ - "tell me what time my flight ought to be landing", - "flight_status" - ], - [ - "tell me when my flight is scheduled to start boarding", - "flight_status" - ], - [ - "when is my plane scheduled to land", - "flight_status" - ], - [ - "when does boarding for my flight begin", - "flight_status" - ], - [ - "whats the most recent status for my virgin air flight", - "flight_status" - ], - [ - "can you check when my flight lands", - "flight_status" - ], - [ - "what time is my flight supposed to be landing", - "flight_status" - ], - [ - "can you tell me the status of my delta flight", - "flight_status" - ], - [ - "whats my delta flight's status", - "flight_status" - ], - [ - "is my delta flight on time", - "flight_status" - ], - [ - "when will my delta flight depart", - "flight_status" - ], - [ - "will my delta flight leave on time", - "flight_status" - ], - [ - "what is the eta of my flight", - "flight_status" - ], - [ - "when is my flight due to arrive", - "flight_status" - ], - [ - "what landing time is scheduled for my flight", - "flight_status" - ], - [ - "what time is my plane supposed to arrive", - "flight_status" - ], - [ - "what is the scheduled arrival time for my flight", - "flight_status" - ], - [ - "please tell me the status of my southwest flight", - "flight_status" - ], - [ - "i would appreciate it if you could tell me the status of my southwest flight", - "flight_status" - ], - [ - "what is the status of my frontier flight", - "flight_status" - ], - [ - "could you tell me the status of my frontier flight", - "flight_status" - ], - [ - "do you mind informing me the status of my southwest flight", - "flight_status" - ], - [ - "when will my aa flight be landing", - "flight_status" - ], - [ - "when's my flight boarding", - "flight_status" - ], - [ - "what's the latest info on flight dl123", - "flight_status" - ], - [ - "when will my panam flight be arriving", - "flight_status" - ], - [ - "when will my jetblue flight get here", - "flight_status" - ], - [ - "when will they let me board", - "flight_status" - ], - [ - "can you update me with the status of flight dl123", - "flight_status" - ], - [ - "what's the status of my united flight", - "flight_status" - ], - [ - "can you tell me where flight dl123 is", - "flight_status" - ], - [ - "at what point will this flight start letting people board", - "flight_status" - ], - [ - "how long until delta is at the gate", - "flight_status" - ], - [ - "when should i expect my flight to come in", - "flight_status" - ], - [ - "when can i start boarding my flight", - "flight_status" - ], - [ - "when's my flight getting here", - "flight_status" - ], - [ - "how long until my flight is here", - "flight_status" - ], - [ - "has flight dl123 arrived yet", - "flight_status" - ], - [ - "what time will i be allowed to board", - "flight_status" - ], - [ - "any idea where flight dl123 is right now", - "flight_status" - ], - [ - "what's my flight's eta", - "flight_status" - ], - [ - "what time does my flight get in", - "flight_status" - ], - [ - "when does my flight arrive", - "flight_status" - ], - [ - "let me know the status of flight dl123", - "flight_status" - ], - [ - "tell me the status of flight dl123", - "flight_status" - ], - [ - "i would love to know when my flight is going to land", - "flight_status" - ], - [ - "i wanna know the status of flight dl123", - "flight_status" - ], - [ - "tell me when my flight will land", - "flight_status" - ], - [ - "i gotta know when my flight will land", - "flight_status" - ], - [ - "please inform me when my flight scheduled to board", - "flight_status" - ], - [ - "i would like to know when my flight scheduled to board", - "flight_status" - ], - [ - "i need to know when my flight scheduled to board", - "flight_status" - ], - [ - "tell me when my flight scheduled to board", - "flight_status" - ], - [ - "please tell me when my flight will land", - "flight_status" - ], - [ - "i wanna know when my flight scheduled to board", - "flight_status" - ], - [ - "i need to know the status of flight dl123", - "flight_status" - ], - [ - "i wish to know when my flight will land", - "flight_status" - ], - [ - "what is the scheduled landing time for my flight", - "flight_status" - ], - [ - "what time will my flight be boarding", - "flight_status" - ], - [ - "what time is this flight supposed to land", - "flight_status" - ], - [ - "what time will i be able to board the plane", - "flight_status" - ], - [ - "when will i get to my destination", - "flight_status" - ], - [ - "can you tell me what time this flight is going to land", - "flight_status" - ], - [ - "please tell me what the boarding time is for my plane", - "flight_status" - ], - [ - "what time will my flight reach the destination", - "flight_status" - ], - [ - "can you tell me when my flight is going to board", - "flight_status" - ], - [ - "tell me when my flight is landing", - "flight_status" - ], - [ - "i need to know when my flight is landing", - "flight_status" - ], - [ - "so when is my flight landing", - "flight_status" - ], - [ - "please flip a coin and tell me what side it lands on", - "flip_coin" - ], - [ - "will you flip a coin so i can make a choice", - "flip_coin" - ], - [ - "flip a two sided coin and tell me what it lands on", - "flip_coin" - ], - [ - "i need you to flip a coin so i can decide", - "flip_coin" - ], - [ - "begin the coin flip now", - "flip_coin" - ], - [ - "i want you to help me make a decision by flipping a coin", - "flip_coin" - ], - [ - "please flip a coin, and i call heads", - "flip_coin" - ], - [ - "flip a coin and let me know if it lands on heads or tails, please", - "flip_coin" - ], - [ - "i want you to flip a fair sided coin", - "flip_coin" - ], - [ - "are you able to flip a two sided coin", - "flip_coin" - ], - [ - "i need you to flip a coin so i can make a choice", - "flip_coin" - ], - [ - "can you please flip a coin, i call tails", - "flip_coin" - ], - [ - "flip a coin, i call tails", - "flip_coin" - ], - [ - "heads or tails i choose tails", - "flip_coin" - ], - [ - "please tell me if a coin lands on tails", - "flip_coin" - ], - [ - "please tell me if a coin flip lands on heads or tails", - "flip_coin" - ], - [ - "flip a coin heads or tails", - "flip_coin" - ], - [ - "please flip a coin i select tails", - "flip_coin" - ], - [ - "will you flip a coin", - "flip_coin" - ], - [ - "can you get a coin and flip it", - "flip_coin" - ], - [ - "would you flip a coin", - "flip_coin" - ], - [ - "will you get a coin and flip it", - "flip_coin" - ], - [ - "flip a coin for me, with you calling heads", - "flip_coin" - ], - [ - "i'd like you to throw a virtual coin for me", - "flip_coin" - ], - [ - "can i get a random heads or tails", - "flip_coin" - ], - [ - "can you do a coin flip", - "flip_coin" - ], - [ - "i want a coin flip and i'll take tails", - "flip_coin" - ], - [ - "i call tails for a coin flip you need to do right now", - "flip_coin" - ], - [ - "do a virtual coin flip and tell me if i win as tails", - "flip_coin" - ], - [ - "randomly pick between heads or tails and tell me if tails wins", - "flip_coin" - ], - [ - "toss a coin and tell me what it lands on", - "flip_coin" - ], - [ - "choose heads or tails and tell me what you came up with", - "flip_coin" - ], - [ - "flip a fair coin i win if it's tails", - "flip_coin" - ], - [ - "flip a coin for me i call tails", - "flip_coin" - ], - [ - "flip me a coin i'm calling tails", - "flip_coin" - ], - [ - "take a coin and flip it and i call tails", - "flip_coin" - ], - [ - "hey, flip me a coin i call tails", - "flip_coin" - ], - [ - "flip a coin one time", - "flip_coin" - ], - [ - "flip that dime", - "flip_coin" - ], - [ - "i need to do a fair coin flip", - "flip_coin" - ], - [ - "flip that coin once; it must be tails", - "flip_coin" - ], - [ - "flip a quarter", - "flip_coin" - ], - [ - "do one coin flip; it will be tails", - "flip_coin" - ], - [ - "flip a coin; i say tails", - "flip_coin" - ], - [ - "how about a coin flip", - "flip_coin" - ], - [ - "let's decide with a coin flip", - "flip_coin" - ], - [ - "can you flip a coin once", - "flip_coin" - ], - [ - "if you flip a coin, i call tails", - "flip_coin" - ], - [ - "let's settle it with a coin flip", - "flip_coin" - ], - [ - "please flip a coin i hope its tails", - "flip_coin" - ], - [ - "i need you to flip a coin once", - "flip_coin" - ], - [ - "flip that coin please", - "flip_coin" - ], - [ - "flip the coin", - "flip_coin" - ], - [ - "flip that coin please, i choose heads", - "flip_coin" - ], - [ - "flip that coin now", - "flip_coin" - ], - [ - "i choose heads, now flip that coin", - "flip_coin" - ], - [ - "go ahead and flip that coin, i am choosing heads here", - "flip_coin" - ], - [ - "flip it please", - "flip_coin" - ], - [ - "i am choosing heads, now please flip that coin", - "flip_coin" - ], - [ - "go ahead and flip a coin", - "flip_coin" - ], - [ - "go ahead and flip that coin, i choose heads", - "flip_coin" - ], - [ - "can you flip a coin and tell me the result", - "flip_coin" - ], - [ - "i will determine it with a coin flip", - "flip_coin" - ], - [ - "i want you to flip a coin", - "flip_coin" - ], - [ - "flip a coin and tell me if its heads or tails", - "flip_coin" - ], - [ - "flip a coin if you will", - "flip_coin" - ], - [ - "can you do a coin flip for me", - "flip_coin" - ], - [ - "i need to have a coin flipped", - "flip_coin" - ], - [ - "i would like a coin flip", - "flip_coin" - ], - [ - "i ned you to flip a coin", - "flip_coin" - ], - [ - "i want a coin flipped", - "flip_coin" - ], - [ - "flip a coin for me", - "flip_coin" - ], - [ - "i want a coin flip", - "flip_coin" - ], - [ - "i require a coin flip", - "flip_coin" - ], - [ - "lets go with heads or tails", - "flip_coin" - ], - [ - "lets flip for it", - "flip_coin" - ], - [ - "toss a coin i will take heads", - "flip_coin" - ], - [ - "lets do a coin toss, i call tails", - "flip_coin" - ], - [ - "filp a coin, i call heads", - "flip_coin" - ], - [ - "spin a coin", - "flip_coin" - ], - [ - "lets do a coin toss", - "flip_coin" - ], - [ - "toss a coin i will take tails", - "flip_coin" - ], - [ - "do a coin flip", - "flip_coin" - ], - [ - "do heads or tails", - "flip_coin" - ], - [ - "coin flip", - "flip_coin" - ], - [ - "heads or tails please", - "flip_coin" - ], - [ - "ai, heads or tails", - "flip_coin" - ], - [ - "ai, coin flip", - "flip_coin" - ], - [ - "ai, please flip a coin", - "flip_coin" - ], - [ - "ai, give me the results of a coin flip", - "flip_coin" - ], - [ - "flip a coin for me ai", - "flip_coin" - ], - [ - "flip a coin, you win with heads", - "flip_coin" - ], - [ - "can you flip a coin, i will take tails", - "flip_coin" - ], - [ - "go ahead and flip a coin, i am calling tails", - "flip_coin" - ], - [ - "please flip a coin for me, tails i win", - "flip_coin" - ], - [ - "flip a coin, i have tails", - "flip_coin" - ], - [ - "heads or tails", - "flip_coin" - ], - [ - "perform a coin flip", - "flip_coin" - ], - [ - "do a coin toss", - "flip_coin" - ], - [ - "help me flip a coin", - "flip_coin" - ], - [ - "please change the name you refer to me by", - "change_user_name" - ], - [ - "how do i change the name you use to address me", - "change_user_name" - ], - [ - "is there a way i can change the name you use to address me", - "change_user_name" - ], - [ - "i need to change my name to something else for you to call me", - "change_user_name" - ], - [ - "can i have you call me something else", - "change_user_name" - ], - [ - "i go by brad", - "change_user_name" - ], - [ - "usually people refer to me as brad", - "change_user_name" - ], - [ - "i prefer to go by brad", - "change_user_name" - ], - [ - "people call me brad", - "change_user_name" - ], - [ - "my name is brad", - "change_user_name" - ], - [ - "call me carrie", - "change_user_name" - ], - [ - "my names carrie", - "change_user_name" - ], - [ - "my friends call me carrie", - "change_user_name" - ], - [ - "you can call me carrie", - "change_user_name" - ], - [ - "call me dad", - "change_user_name" - ], - [ - "you can call me stevie", - "change_user_name" - ], - [ - "you can call me sarah", - "change_user_name" - ], - [ - "you can call me james", - "change_user_name" - ], - [ - "call me jake", - "change_user_name" - ], - [ - "call me stevie", - "change_user_name" - ], - [ - "you can call me john", - "change_user_name" - ], - [ - "my name is steve", - "change_user_name" - ], - [ - "my name is john", - "change_user_name" - ], - [ - "please call me jim", - "change_user_name" - ], - [ - "i go by the name jim", - "change_user_name" - ], - [ - "feel free to call me jim", - "change_user_name" - ], - [ - "you can just speak to me as jim", - "change_user_name" - ], - [ - "my name is jim", - "change_user_name" - ], - [ - "please start calling me mandy", - "change_user_name" - ], - [ - "the name i go by is sandy", - "change_user_name" - ], - [ - "i like to be called mikey", - "change_user_name" - ], - [ - "please refer to me as sharon", - "change_user_name" - ], - [ - "john is my name", - "change_user_name" - ], - [ - "the name you should call me is janet", - "change_user_name" - ], - [ - "people call me gary", - "change_user_name" - ], - [ - "you can address me as lizzie", - "change_user_name" - ], - [ - "i want to be called mollie", - "change_user_name" - ], - [ - "you can call me cindy", - "change_user_name" - ], - [ - "call me ishmael", - "change_user_name" - ], - [ - "can you just start calling me sir", - "change_user_name" - ], - [ - "i'm called tim", - "change_user_name" - ], - [ - "my friends call me sam", - "change_user_name" - ], - [ - "i'd like you to address me as lord snugglebottom", - "change_user_name" - ], - [ - "i go by ted", - "change_user_name" - ], - [ - "they call me john", - "change_user_name" - ], - [ - "would you just like to call me paul", - "change_user_name" - ], - [ - "please call me johnny", - "change_user_name" - ], - [ - "just call me sam", - "change_user_name" - ], - [ - "i want you to call me this new name", - "change_user_name" - ], - [ - "talk to me by calling me this name from now on", - "change_user_name" - ], - [ - "the new name that i want you to call me is this one", - "change_user_name" - ], - [ - "please call me by this new name", - "change_user_name" - ], - [ - "please change my name", - "change_user_name" - ], - [ - "you can call me brandon", - "change_user_name" - ], - [ - "you can call me jeff", - "change_user_name" - ], - [ - "you can call me michael", - "change_user_name" - ], - [ - "you can call me steve", - "change_user_name" - ], - [ - "you can call me alan", - "change_user_name" - ], - [ - "call me mary", - "change_user_name" - ], - [ - "i need you to call me mary", - "change_user_name" - ], - [ - "would you call me mary", - "change_user_name" - ], - [ - "i want to be called by mary", - "change_user_name" - ], - [ - "i would like you to call me mary", - "change_user_name" - ], - [ - "can i change what you call me", - "change_user_name" - ], - [ - "i'd like you to call me something different", - "change_user_name" - ], - [ - "change the name that you call me", - "change_user_name" - ], - [ - "call me frank", - "change_user_name" - ], - [ - "you can refer to me as frank", - "change_user_name" - ], - [ - "i want you to call me something else", - "change_user_name" - ], - [ - "my name's frank", - "change_user_name" - ], - [ - "i'd like to be called frank", - "change_user_name" - ], - [ - "can i change my nickname", - "change_user_name" - ], - [ - "i am john", - "change_user_name" - ], - [ - "hi, i'm john", - "change_user_name" - ], - [ - "please call me frank from now on", - "change_user_name" - ], - [ - "can you call me bobby instead of bob", - "change_user_name" - ], - [ - "my name's bob", - "change_user_name" - ], - [ - "please call me bob", - "change_user_name" - ], - [ - "when you talk to me, use bob", - "change_user_name" - ], - [ - "please stop calling me dave, my name's bob", - "change_user_name" - ], - [ - "my name is stu, not sue!", - "change_user_name" - ], - [ - "i want you to start referring to me as lucky", - "change_user_name" - ], - [ - "i'd like you to refer to me as bob", - "change_user_name" - ], - [ - "i am david", - "change_user_name" - ], - [ - "change my name to master", - "change_user_name" - ], - [ - "you can call me al", - "change_user_name" - ], - [ - "just call me al", - "change_user_name" - ], - [ - "i go by stefan", - "change_user_name" - ], - [ - "just call me dennis", - "change_user_name" - ], - [ - "please change my name to loverboy", - "change_user_name" - ], - [ - "i want you to call me lord", - "change_user_name" - ], - [ - "i'd rather have you call be ray ray", - "change_user_name" - ], - [ - "they call me josh", - "change_user_name" - ], - [ - "i am josh", - "change_user_name" - ], - [ - "i want you to call me pam", - "change_user_name" - ], - [ - "i need to change my username", - "change_user_name" - ], - [ - "address me by the name stan", - "change_user_name" - ], - [ - "only call me dan", - "change_user_name" - ], - [ - "please only call me joe", - "change_user_name" - ], - [ - "can you call me something else", - "change_user_name" - ], - [ - "where is your place of origin", - "where_are_you_from" - ], - [ - "what is your place of origin", - "where_are_you_from" - ], - [ - "what is your country of origin", - "where_are_you_from" - ], - [ - "where is your country of origin", - "where_are_you_from" - ], - [ - "what is your nationality", - "where_are_you_from" - ], - [ - "tell me where you're made", - "where_are_you_from" - ], - [ - "tell me how you're made", - "where_are_you_from" - ], - [ - "what town were you born in", - "where_are_you_from" - ], - [ - "what country were you born in", - "where_are_you_from" - ], - [ - "where's your birthplace", - "where_are_you_from" - ], - [ - "you were born where", - "where_are_you_from" - ], - [ - "your birthplace is where", - "where_are_you_from" - ], - [ - "where are your origins located", - "where_are_you_from" - ], - [ - "where did you originate from", - "where_are_you_from" - ], - [ - "where is your home located", - "where_are_you_from" - ], - [ - "where do you trace your roots", - "where_are_you_from" - ], - [ - "where do you hail from", - "where_are_you_from" - ], - [ - "i'd like to know where you're from", - "where_are_you_from" - ], - [ - "where are your origins found", - "where_are_you_from" - ], - [ - "can you tell me where you are from", - "where_are_you_from" - ], - [ - "where is the location of your creation", - "where_are_you_from" - ], - [ - "can you tell me where you were created", - "where_are_you_from" - ], - [ - "could you tell me where did you originate", - "where_are_you_from" - ], - [ - "would you care to let me know where you were made", - "where_are_you_from" - ], - [ - "where is the location that you were made", - "where_are_you_from" - ], - [ - "in which area were you made", - "where_are_you_from" - ], - [ - "what country were you made", - "where_are_you_from" - ], - [ - "where was it you were made", - "where_are_you_from" - ], - [ - "where did they make you", - "where_are_you_from" - ], - [ - "where were you created", - "where_are_you_from" - ], - [ - "what place were you created in", - "where_are_you_from" - ], - [ - "in which place were you made", - "where_are_you_from" - ], - [ - "what's your country of origin", - "where_are_you_from" - ], - [ - "what was your place of creation", - "where_are_you_from" - ], - [ - "what location did you originate at", - "where_are_you_from" - ], - [ - "what's your place of manufacture", - "where_are_you_from" - ], - [ - "from whence do you hail", - "where_are_you_from" - ], - [ - "where do you come from", - "where_are_you_from" - ], - [ - "what is your point of origin", - "where_are_you_from" - ], - [ - "what's your nationality", - "where_are_you_from" - ], - [ - "where were you manufactured", - "where_are_you_from" - ], - [ - "where were your born", - "where_are_you_from" - ], - [ - "what country do you consider yourself a citizen of", - "where_are_you_from" - ], - [ - "where did you last live", - "where_are_you_from" - ], - [ - "what's your birthplace", - "where_are_you_from" - ], - [ - "where did you used to live", - "where_are_you_from" - ], - [ - "what area did you grow up in", - "where_are_you_from" - ], - [ - "what area were you born in", - "where_are_you_from" - ], - [ - "what state were you born in", - "where_are_you_from" - ], - [ - "were you born here", - "where_are_you_from" - ], - [ - "are you from the uk", - "where_are_you_from" - ], - [ - "are you from the us", - "where_are_you_from" - ], - [ - "are you from europe", - "where_are_you_from" - ], - [ - "where you from the usa", - "where_are_you_from" - ], - [ - "where is your family from", - "where_are_you_from" - ], - [ - "where are you originally from", - "where_are_you_from" - ], - [ - "where was your home before here", - "where_are_you_from" - ], - [ - "where did you live previously", - "where_are_you_from" - ], - [ - "where did you live before here", - "where_are_you_from" - ], - [ - "where did you live prior to living here", - "where_are_you_from" - ], - [ - "what is the area that you came from", - "where_are_you_from" - ], - [ - "what location did you live at before", - "where_are_you_from" - ], - [ - "where is your original location", - "where_are_you_from" - ], - [ - "where were you before moving here", - "where_are_you_from" - ], - [ - "do you know where you were born", - "where_are_you_from" - ], - [ - "can you tell me where you were born", - "where_are_you_from" - ], - [ - "where did you come from, originally", - "where_are_you_from" - ], - [ - "what was the location of your birth", - "where_are_you_from" - ], - [ - "what is the name of your birthplace", - "where_are_you_from" - ], - [ - "what is your native home", - "where_are_you_from" - ], - [ - "can you tell me your place of origin", - "where_are_you_from" - ], - [ - "where is your home", - "where_are_you_from" - ], - [ - "whereabouts are you from", - "where_are_you_from" - ], - [ - "did you grow up here", - "where_are_you_from" - ], - [ - "where were you given birth", - "where_are_you_from" - ], - [ - "where are you from", - "where_are_you_from" - ], - [ - "where did your mom have you", - "where_are_you_from" - ], - [ - "what city were you born in", - "where_are_you_from" - ], - [ - "what's your city of origin", - "where_are_you_from" - ], - [ - "where are your roots", - "where_are_you_from" - ], - [ - "when you were a child, where did you live", - "where_are_you_from" - ], - [ - "if you were to call a place your beginning, your home start, where would that be", - "where_are_you_from" - ], - [ - "so where did you live when you were a baby", - "where_are_you_from" - ], - [ - "what place do you call home", - "where_are_you_from" - ], - [ - "up until now, what place was your home base", - "where_are_you_from" - ], - [ - "what location were you born in", - "where_are_you_from" - ], - [ - "your birth occurred where", - "where_are_you_from" - ], - [ - "where is your birth place", - "where_are_you_from" - ], - [ - "you came from where", - "where_are_you_from" - ], - [ - "where were you made", - "where_are_you_from" - ], - [ - "where would you say you were born", - "where_are_you_from" - ], - [ - "tell me where you come from", - "where_are_you_from" - ], - [ - "tell me where you were born", - "where_are_you_from" - ], - [ - "where were you born", - "where_are_you_from" - ], - [ - "what's your hometown", - "where_are_you_from" - ], - [ - "where's home for you", - "where_are_you_from" - ], - [ - "in what state were you born", - "where_are_you_from" - ], - [ - "were you born in a hospital", - "where_are_you_from" - ], - [ - "where did your parents have you", - "where_are_you_from" - ], - [ - "where did your mom give birth", - "where_are_you_from" - ], - [ - "delete fries from shopping list", - "shopping_list_update" - ], - [ - "take off fries from the shopping list", - "shopping_list_update" - ], - [ - "please take away the fries from the shopping list", - "shopping_list_update" - ], - [ - "remove fries from my shopping list", - "shopping_list_update" - ], - [ - "we no longer need fries on the shopping lisr", - "shopping_list_update" - ], - [ - "cross out bananas from my shopping list and put papayas on it, please", - "shopping_list_update" - ], - [ - "i need to delete tomatoes from my shopping list and add onions instead", - "shopping_list_update" - ], - [ - "can you add carrots to my shopping list and delete potatoes", - "shopping_list_update" - ], - [ - "please remove ginger ale from my shopping list and add root beer", - "shopping_list_update" - ], - [ - "go ahead and erase cashews from my list, and add walnuts to it, please", - "shopping_list_update" - ], - [ - "add eggs to my shopping list and remove cheese", - "shopping_list_update" - ], - [ - "add corn to my shopping list and remove wine", - "shopping_list_update" - ], - [ - "add flour to my shopping list if it's not already on it", - "shopping_list_update" - ], - [ - "take bread off my shopping list and add milk", - "shopping_list_update" - ], - [ - "please add sugar to my shopping list if it's not on it", - "shopping_list_update" - ], - [ - "remove wine and add beer to my shopping list", - "shopping_list_update" - ], - [ - "is paprika listed on my shopping list, please add it", - "shopping_list_update" - ], - [ - "is bacon on my shopping list, add if it's not", - "shopping_list_update" - ], - [ - "delete soda from my shopping list and add water to it", - "shopping_list_update" - ], - [ - "do i have pepper my shopping list, if not add it", - "shopping_list_update" - ], - [ - "are bananas on the list, if not can you add them", - "shopping_list_update" - ], - [ - "do i have bananas on my list, if not please put them on the list", - "shopping_list_update" - ], - [ - "are bananas already on the list, if not go ahead and add them", - "shopping_list_update" - ], - [ - "are bananas on my shopping list can you add them if they aren't", - "shopping_list_update" - ], - [ - "do i have bananas on my shopping list, if not please add it", - "shopping_list_update" - ], - [ - "add bread to my list of groceries", - "shopping_list_update" - ], - [ - "add bread to my list of things to buy", - "shopping_list_update" - ], - [ - "put bread on my shopping list", - "shopping_list_update" - ], - [ - "make sure bread gets added to my shopping list", - "shopping_list_update" - ], - [ - "remind me to buy bread next time i go shopping", - "shopping_list_update" - ], - [ - "will you include kleenex on my list for shopping please", - "shopping_list_update" - ], - [ - "make sure walnuts is on my shopping list", - "shopping_list_update" - ], - [ - "put film on my shopping list", - "shopping_list_update" - ], - [ - "add sprite to my shopping list", - "shopping_list_update" - ], - [ - "write apples on my shopping list", - "shopping_list_update" - ], - [ - "add oranges to my to do shopping list", - "shopping_list_update" - ], - [ - "add mountain dew to my list for shopping", - "shopping_list_update" - ], - [ - "add coke to my shopping cart", - "shopping_list_update" - ], - [ - "add apples to my to do shopping list", - "shopping_list_update" - ], - [ - "add pepsi to my shopping bag", - "shopping_list_update" - ], - [ - "i'm out of bananas; add to shopping list", - "shopping_list_update" - ], - [ - "i need for you to remove milk from my shopping list and add bread", - "shopping_list_update" - ], - [ - "on my shopping list, remove bread and add milk", - "shopping_list_update" - ], - [ - "i need for you to get bananas added to my shopping list; i'm out", - "shopping_list_update" - ], - [ - "would you add bananas to my shopping list as i am out", - "shopping_list_update" - ], - [ - "add groceries to my shopping list as i am out", - "shopping_list_update" - ], - [ - "please get milk removed from my shopping list and add bread", - "shopping_list_update" - ], - [ - "would you remove bread from my shopping list and add bread", - "shopping_list_update" - ], - [ - "i want to remove milk from my shopping list and add bread", - "shopping_list_update" - ], - [ - "i am out of trash bags and need them to be added to my shopping list", - "shopping_list_update" - ], - [ - "please add milk on my shopping list, if it is not already on it", - "shopping_list_update" - ], - [ - "do i have milk on my shopping list please add it if it is not", - "shopping_list_update" - ], - [ - "i want you to add milk on my shopping list unless it is already on it", - "shopping_list_update" - ], - [ - "i would like you to add milk if it is not on my shopping list already", - "shopping_list_update" - ], - [ - "is the milk on the shopping list if not, please add", - "shopping_list_update" - ], - [ - "do me a favor and put sharpies on my list for shopping", - "shopping_list_update" - ], - [ - "please put silverware on my list for shopping", - "shopping_list_update" - ], - [ - "may i suggest we put paper towels on my list for shopping", - "shopping_list_update" - ], - [ - "maybe we can put blank cds on my list for shopping", - "shopping_list_update" - ], - [ - "can we put sunscreen on my list for shopping", - "shopping_list_update" - ], - [ - "make sure to put extra paint on the list", - "shopping_list_update" - ], - [ - "x on the shopping list please", - "shopping_list_update" - ], - [ - "can you put carrots on my shopping list", - "shopping_list_update" - ], - [ - "i would like to put carrots on my list for shopping", - "shopping_list_update" - ], - [ - "remove corn from my shopping list", - "shopping_list_update" - ], - [ - "put on my shopping list i need carots", - "shopping_list_update" - ], - [ - "remove chips from my shopping list", - "shopping_list_update" - ], - [ - "take frozen food off my shopping list", - "shopping_list_update" - ], - [ - "i need soda added to my list and carrots removed", - "shopping_list_update" - ], - [ - "i need oranges on my shopping list", - "shopping_list_update" - ], - [ - "take carrots off my list for shopping", - "shopping_list_update" - ], - [ - "my shopping list should have carrots on it", - "shopping_list_update" - ], - [ - "remove carrots from my shopping list and add soda", - "shopping_list_update" - ], - [ - "can you put oranges on my shopping list", - "shopping_list_update" - ], - [ - "put carrots on my shopping list", - "shopping_list_update" - ], - [ - "put soda on the shopping list and add carrots", - "shopping_list_update" - ], - [ - "can you take frozen food of my shopping list", - "shopping_list_update" - ], - [ - "can you take carrots off my shopping list and add soda", - "shopping_list_update" - ], - [ - "please make sure oranges are on my shopping list", - "shopping_list_update" - ], - [ - "add soda on my shopping list and remove carrots", - "shopping_list_update" - ], - [ - "get rid of butter on my shopping list", - "shopping_list_update" - ], - [ - "delete ice cream from my shopping list", - "shopping_list_update" - ], - [ - "take fresh carrots off my shopping list", - "shopping_list_update" - ], - [ - "i want you to remove shampoo from my shopping list", - "shopping_list_update" - ], - [ - "update my shopping list, delete canned olives", - "shopping_list_update" - ], - [ - "can you put detergent on my shopping list cause i'm all out", - "shopping_list_update" - ], - [ - "put milk on my shopping list cause i'm out of it", - "shopping_list_update" - ], - [ - "put spaghetti on my shopping list cause i'm out of it please", - "shopping_list_update" - ], - [ - "put rice and pudding on my shopping list cause i need them", - "shopping_list_update" - ], - [ - "can you please put toilet paper on the shopping list i'm out of it", - "shopping_list_update" - ], - [ - "i need to add cherrios to the grocery list", - "shopping_list_update" - ], - [ - "i'm low on cherrios can you add that to the shopping list", - "shopping_list_update" - ], - [ - "i ran out of cherrios so add that to the list", - "shopping_list_update" - ], - [ - "add cherrios to the shopping list", - "shopping_list_update" - ], - [ - "can you add cherrios to my shopping list", - "shopping_list_update" - ], - [ - "for the shopping list, add ham as well", - "shopping_list_update" - ], - [ - "are eggs on my list, if not add them", - "shopping_list_update" - ], - [ - "i need you to add creamer to my shopping list", - "shopping_list_update" - ], - [ - "please put milk on my list i just used the last of it", - "shopping_list_update" - ], - [ - "i no longer need milk, so forget that", - "shopping_list_update" - ], - [ - "what things can you help me with exactly", - "what_can_i_ask_you" - ], - [ - "what are the things you can help me with", - "what_can_i_ask_you" - ], - [ - "what exactly can you help me with", - "what_can_i_ask_you" - ], - [ - "what can you help me with exactly", - "what_can_i_ask_you" - ], - [ - "what can you help me with", - "what_can_i_ask_you" - ], - [ - "what kinds of questions can you answer", - "what_can_i_ask_you" - ], - [ - "tell me the subject areas you are familiar with", - "what_can_i_ask_you" - ], - [ - "what sorts of subjects are you well versed in", - "what_can_i_ask_you" - ], - [ - "what are the subject areas you are knowledgable in", - "what_can_i_ask_you" - ], - [ - "what kinds of things are you knowledgable about", - "what_can_i_ask_you" - ], - [ - "tell me the types of things i can ask you about", - "what_can_i_ask_you" - ], - [ - "what sorts of things can i ask you about", - "what_can_i_ask_you" - ], - [ - "tell me what you are capable of answering", - "what_can_i_ask_you" - ], - [ - "what sorts of queries should i give you", - "what_can_i_ask_you" - ], - [ - "what sorts of subjects do you know about", - "what_can_i_ask_you" - ], - [ - "what type of questions may i ask you", - "what_can_i_ask_you" - ], - [ - "which types of questions may i ask you", - "what_can_i_ask_you" - ], - [ - "what kind of questions may i ask you", - "what_can_i_ask_you" - ], - [ - "which types of questions can i ask you", - "what_can_i_ask_you" - ], - [ - "what kind of questions can i ask you", - "what_can_i_ask_you" - ], - [ - "what topics can i ask you about", - "what_can_i_ask_you" - ], - [ - "what information can i ask you", - "what_can_i_ask_you" - ], - [ - "what subjects do you know something about", - "what_can_i_ask_you" - ], - [ - "what kinds of questions can i ask you", - "what_can_i_ask_you" - ], - [ - "what types of things do you know", - "what_can_i_ask_you" - ], - [ - "what kind of questions do you accept", - "what_can_i_ask_you" - ], - [ - "what questions are permissible", - "what_can_i_ask_you" - ], - [ - "what can i ask you", - "what_can_i_ask_you" - ], - [ - "what are my list of commands", - "what_can_i_ask_you" - ], - [ - "what are the kinds of things you can help me with", - "what_can_i_ask_you" - ], - [ - "what kind of questions are you good at answering", - "what_can_i_ask_you" - ], - [ - "can i ask you about anything", - "what_can_i_ask_you" - ], - [ - "can you help me with anything i need", - "what_can_i_ask_you" - ], - [ - "what all can you do", - "what_can_i_ask_you" - ], - [ - "what things do you know about", - "what_can_i_ask_you" - ], - [ - "what are you able to help me with", - "what_can_i_ask_you" - ], - [ - "what types of things are you able to do", - "what_can_i_ask_you" - ], - [ - "what can you answer for me", - "what_can_i_ask_you" - ], - [ - "is there anything i can't ask you", - "what_can_i_ask_you" - ], - [ - "what questions do you respond to", - "what_can_i_ask_you" - ], - [ - "what should i ask you about", - "what_can_i_ask_you" - ], - [ - "what are you able to answer", - "what_can_i_ask_you" - ], - [ - "what's the sort of thing i should ask", - "what_can_i_ask_you" - ], - [ - "what kind of things can you answer", - "what_can_i_ask_you" - ], - [ - "what things can you do", - "what_can_i_ask_you" - ], - [ - "what can you do", - "what_can_i_ask_you" - ], - [ - "what types of questions do you have a response for", - "what_can_i_ask_you" - ], - [ - "what kinds of questions can you respond to", - "what_can_i_ask_you" - ], - [ - "what do you have answers for", - "what_can_i_ask_you" - ], - [ - "what questions am i allowed to ask", - "what_can_i_ask_you" - ], - [ - "what kinds of things can you do", - "what_can_i_ask_you" - ], - [ - "ai can you tell me what things i may ask", - "what_can_i_ask_you" - ], - [ - "what can i ask you, ai", - "what_can_i_ask_you" - ], - [ - "what am i able to ask the ai", - "what_can_i_ask_you" - ], - [ - "ai, tell me what things i should ask of you", - "what_can_i_ask_you" - ], - [ - "what sorts of things am i able to ask of you ai", - "what_can_i_ask_you" - ], - [ - "how can i get you to help me", - "what_can_i_ask_you" - ], - [ - "what types of things can i ask you", - "what_can_i_ask_you" - ], - [ - "what sort of things can you help me with", - "what_can_i_ask_you" - ], - [ - "what are you able to do", - "what_can_i_ask_you" - ], - [ - "what can i use you to help me with", - "what_can_i_ask_you" - ], - [ - "how can i use you", - "what_can_i_ask_you" - ], - [ - "what subjects do you know", - "what_can_i_ask_you" - ], - [ - "what subjects are you familiar with", - "what_can_i_ask_you" - ], - [ - "what subjects do you know about", - "what_can_i_ask_you" - ], - [ - "what types of subjects do you know", - "what_can_i_ask_you" - ], - [ - "what are you familiar with", - "what_can_i_ask_you" - ], - [ - "what do you know", - "what_can_i_ask_you" - ], - [ - "what subjects are you versed in", - "what_can_i_ask_you" - ], - [ - "can you tell me the subjects you know best", - "what_can_i_ask_you" - ], - [ - "tell me the subjects you're aware of", - "what_can_i_ask_you" - ], - [ - "let me know what subjects you comprehend well", - "what_can_i_ask_you" - ], - [ - "what are the sorts of things i can ask you about", - "what_can_i_ask_you" - ], - [ - "what questions are you programmed to answer", - "what_can_i_ask_you" - ], - [ - "what kinds of things can i ask you", - "what_can_i_ask_you" - ], - [ - "what kinds of questions can i ask of you", - "what_can_i_ask_you" - ], - [ - "are there certain types of questions i can ask you", - "what_can_i_ask_you" - ], - [ - "what kinds of things would you be able to help me with", - "what_can_i_ask_you" - ], - [ - "i need to know what kind of things you can help with", - "what_can_i_ask_you" - ], - [ - "i want to know what sort of things you can assist me with", - "what_can_i_ask_you" - ], - [ - "what sort of things are you able to help with", - "what_can_i_ask_you" - ], - [ - "let me know what you can assist me with", - "what_can_i_ask_you" - ], - [ - "how can i benefit from using you", - "what_can_i_ask_you" - ], - [ - "how can you assist me", - "what_can_i_ask_you" - ], - [ - "i wanna know the types of subjects are you familiar with", - "what_can_i_ask_you" - ], - [ - "i wish to know the types of subjects are you familiar with", - "what_can_i_ask_you" - ], - [ - "please inform me of the types of subjects are you familiar with", - "what_can_i_ask_you" - ], - [ - "what can you be asked about", - "what_can_i_ask_you" - ], - [ - "tell me the types of subjects are you familiar with", - "what_can_i_ask_you" - ], - [ - "i would like to know the types of subjects are you familiar with", - "what_can_i_ask_you" - ], - [ - "what can i ask you all about", - "what_can_i_ask_you" - ], - [ - "are you familiar with any types of subjects", - "what_can_i_ask_you" - ], - [ - "what skills do you have", - "what_can_i_ask_you" - ], - [ - "what are your capabilities", - "what_can_i_ask_you" - ], - [ - "what topics are you versed in", - "what_can_i_ask_you" - ], - [ - "what sort of stuff do you know", - "what_can_i_ask_you" - ], - [ - "what subjects do you know well", - "what_can_i_ask_you" - ], - [ - "what can i ask you to accomplish", - "what_can_i_ask_you" - ], - [ - "what tasks can you complete for me", - "what_can_i_ask_you" - ], - [ - "what type of questions are you partial to that i can ask you", - "what_can_i_ask_you" - ], - [ - "i don't know the answer", - "maybe" - ], - [ - "i'm unsure", - "maybe" - ], - [ - "shit if i know", - "maybe" - ], - [ - "no idea", - "maybe" - ], - [ - "hell if i know", - "maybe" - ], - [ - "either or should work", - "maybe" - ], - [ - "i dont know", - "maybe" - ], - [ - "both would work", - "maybe" - ], - [ - "it could be one or the other", - "maybe" - ], - [ - "i dont have an answer for that", - "maybe" - ], - [ - "not a clue", - "maybe" - ], - [ - "who knows", - "maybe" - ], - [ - "it could be either", - "maybe" - ], - [ - "sorry, i do not know", - "maybe" - ], - [ - "i'm unsure of the proper answer", - "maybe" - ], - [ - "i do not know that", - "maybe" - ], - [ - "maybe one, maybe the other", - "maybe" - ], - [ - "maybe, maybe not", - "maybe" - ], - [ - "it might be either one", - "maybe" - ], - [ - "perhaps either of them", - "maybe" - ], - [ - "i don't know how to answer to that", - "maybe" - ], - [ - "maybe either", - "maybe" - ], - [ - "i dunno", - "maybe" - ], - [ - "maybe yes, maybe no", - "maybe" - ], - [ - "might be true, might be false", - "maybe" - ], - [ - "possibly", - "maybe" - ], - [ - "it depends", - "maybe" - ], - [ - "i'm not sure what the answer is", - "maybe" - ], - [ - "i will know later", - "maybe" - ], - [ - "maybe", - "maybe" - ], - [ - "one or the other, or both", - "maybe" - ], - [ - "no clue", - "maybe" - ], - [ - "i am not to sure about that", - "maybe" - ], - [ - "either one would work", - "maybe" - ], - [ - "i really don't know", - "maybe" - ], - [ - "i am not confident on that", - "maybe" - ], - [ - "that i don't know", - "maybe" - ], - [ - "both maybe", - "maybe" - ], - [ - "i think it could be both", - "maybe" - ], - [ - "i don't know for sure", - "maybe" - ], - [ - "cant say", - "maybe" - ], - [ - "im not certain", - "maybe" - ], - [ - "im not sure", - "maybe" - ], - [ - "really dont know", - "maybe" - ], - [ - "i'm unsure of the answer", - "maybe" - ], - [ - "it could be possible", - "maybe" - ], - [ - "i can't answer yes or no right now", - "maybe" - ], - [ - "i can't answer that", - "maybe" - ], - [ - "i don't know the answer to that", - "maybe" - ], - [ - "i'm not sure", - "maybe" - ], - [ - "i can't decide", - "maybe" - ], - [ - "i can't tell", - "maybe" - ], - [ - "i'll have to think about it", - "maybe" - ], - [ - "not sure if that's a yes or a no", - "maybe" - ], - [ - "not quite sure how to respond", - "maybe" - ], - [ - "i'm torn on how to answer", - "maybe" - ], - [ - "not sure, maybe", - "maybe" - ], - [ - "that could maybe be it", - "maybe" - ], - [ - "i have no earthly idea at all", - "maybe" - ], - [ - "it may be either one", - "maybe" - ], - [ - "i don't have that information", - "maybe" - ], - [ - "i can't make up my mind", - "maybe" - ], - [ - "it's either of them", - "maybe" - ], - [ - "i don't have the answer", - "maybe" - ], - [ - "sorry no idea", - "maybe" - ], - [ - "it could be that one or the other one", - "maybe" - ], - [ - "i'm not sure which one because it could be either of them", - "maybe" - ], - [ - "i'm drawing a blank", - "maybe" - ], - [ - "i have no knowledge about it", - "maybe" - ], - [ - "no idea, sorry", - "maybe" - ], - [ - "i'm not sure which it is", - "maybe" - ], - [ - "i'm really not sure", - "maybe" - ], - [ - "i'm uncertain", - "maybe" - ], - [ - "i'm unaware of that", - "maybe" - ], - [ - "i have no knowledge of that", - "maybe" - ], - [ - "i am thinking it is either", - "maybe" - ], - [ - "hmmm, either could be a choice", - "maybe" - ], - [ - "i'm sure it could be either", - "maybe" - ], - [ - "well, i guess maybe", - "maybe" - ], - [ - "maybe is my answer", - "maybe" - ], - [ - "i know it could be either one", - "maybe" - ], - [ - "maybe is what i am going to answer", - "maybe" - ], - [ - "hmm, either", - "maybe" - ], - [ - "i'm pretty sure it could be either", - "maybe" - ], - [ - "i have no clue", - "maybe" - ], - [ - "it might be either", - "maybe" - ], - [ - "i don't know anything about that", - "maybe" - ], - [ - "it's possible that it could be either", - "maybe" - ], - [ - "i don't have a clue", - "maybe" - ], - [ - "it could be either, i think", - "maybe" - ], - [ - "i think it could be either one", - "maybe" - ], - [ - "i don't really know", - "maybe" - ], - [ - "i'm not sure of that", - "maybe" - ], - [ - "that's a possibility", - "maybe" - ], - [ - "how is the weather today", - "maybe" - ], - [ - "i haven't a clue", - "maybe" - ], - [ - "i haven't the foggiest", - "maybe" - ], - [ - "that answer's above my pay scale", - "maybe" - ], - [ - "i really don't have a clue", - "maybe" - ], - [ - "i have no idea", - "maybe" - ], - [ - "how do i change a car's oil", - "oil_change_how" - ], - [ - "can you find instructions on how to change oil in a car", - "oil_change_how" - ], - [ - "what do i need to change my oil", - "oil_change_how" - ], - [ - "how do i change the oil in a car", - "oil_change_how" - ], - [ - "how do i change the oil in my passat", - "oil_change_how" - ], - [ - "please tell me how to change the oil in my car", - "oil_change_how" - ], - [ - "tell me how to change the oil in 2014 odyssey", - "oil_change_how" - ], - [ - "find instructions for how to change the oil in a 2015 passat", - "oil_change_how" - ], - [ - "give me instructions for changing the oil in a 2015 passat", - "oil_change_how" - ], - [ - "do i need to go under the car to change oil", - "oil_change_how" - ], - [ - "what way can i change oil at home", - "oil_change_how" - ], - [ - "how do i switch out my oil", - "oil_change_how" - ], - [ - "what is the way to change motor oil", - "oil_change_how" - ], - [ - "i need step by step instructions on how to change the oil in my car", - "oil_change_how" - ], - [ - "what kind of oil do i need to change the oil in my car", - "oil_change_how" - ], - [ - "give me instructions on how to change the oil in my car", - "oil_change_how" - ], - [ - "can you tell me the steps to change the oil in my car", - "oil_change_how" - ], - [ - "is it easy to change the oil in my car", - "oil_change_how" - ], - [ - "how do i change the oil in my car", - "oil_change_how" - ], - [ - "can you tell me how to change the oil in my car", - "oil_change_how" - ], - [ - "do i need any tools to change the oil in my car", - "oil_change_how" - ], - [ - "what do i need to change the oil in my car", - "oil_change_how" - ], - [ - "please explain the steps to change oil", - "oil_change_how" - ], - [ - "i want to change the oil in my car", - "oil_change_how" - ], - [ - "do you know how to change car oil", - "oil_change_how" - ], - [ - "can you show me how to change the oil for my car", - "oil_change_how" - ], - [ - "search for how to change my oil", - "oil_change_how" - ], - [ - "i need to know how to change my oil", - "oil_change_how" - ], - [ - "find instructions on how to change my oil", - "oil_change_how" - ], - [ - "show me how to change my oil", - "oil_change_how" - ], - [ - "what oil should i use and how do i change it", - "oil_change_how" - ], - [ - "how do i change my oil with the correct type", - "oil_change_how" - ], - [ - "what oil do i need and how is it changed", - "oil_change_how" - ], - [ - "how do i change my oil and choose the right oil", - "oil_change_how" - ], - [ - "how do i choose the correct oil and how do i change it", - "oil_change_how" - ], - [ - "teach me how to change my oil", - "oil_change_how" - ], - [ - "i want a lesson on changing my oil", - "oil_change_how" - ], - [ - "give me instructions on how to change my oil", - "oil_change_how" - ], - [ - "i would like to know how to perform an oil change", - "oil_change_how" - ], - [ - "i intend to learn how to change oil", - "oil_change_how" - ], - [ - "i intend to learn how to change oil in my car", - "oil_change_how" - ], - [ - "i want manual on how to change oil", - "oil_change_how" - ], - [ - "give me manual on how to change oil", - "oil_change_how" - ], - [ - "i want to learn the process of changing oil", - "oil_change_how" - ], - [ - "i want to learn to change oil", - "oil_change_how" - ], - [ - "what is the way i can change my oil", - "oil_change_how" - ], - [ - "i want to practive changing oil", - "oil_change_how" - ], - [ - "get me instruction to change oil", - "oil_change_how" - ], - [ - "give me instruction mannual on how to change oil", - "oil_change_how" - ], - [ - "what kind of oil does my car take and how do i do a change", - "oil_change_how" - ], - [ - "can you assist with an oil change, and what type of oil do i get", - "oil_change_how" - ], - [ - "i want to change my oil if you can tell me what to do, and what kind do i get", - "oil_change_how" - ], - [ - "i should use what kind of oil and can you help me change it", - "oil_change_how" - ], - [ - "how do i do an oil change and what type do i use", - "oil_change_how" - ], - [ - "how do i change the oil for my car", - "oil_change_how" - ], - [ - "what do i do to change my car's oil", - "oil_change_how" - ], - [ - "can you give me instructions on how to change the oil for my car", - "oil_change_how" - ], - [ - "can you tell me how to change my car's oil", - "oil_change_how" - ], - [ - "what steps do i take to change the oil for my car", - "oil_change_how" - ], - [ - "i need to know how to change my car's oil", - "oil_change_how" - ], - [ - "tell me the procedure for changing oil in a car", - "oil_change_how" - ], - [ - "what actions do i take to change a car's oil", - "oil_change_how" - ], - [ - "how do i go about changing the oil in my car", - "oil_change_how" - ], - [ - "what are the steps to change the oil in my car", - "oil_change_how" - ], - [ - "what kind of oil do i need to use for my car", - "oil_change_how" - ], - [ - "how can i change my car oil", - "oil_change_how" - ], - [ - "how do i change my oil and what kind do i need", - "oil_change_how" - ], - [ - "how can my oil be changed in my car", - "oil_change_how" - ], - [ - "what kind of oil should i use for my current car", - "oil_change_how" - ], - [ - "how do i change my car oil", - "oil_change_how" - ], - [ - "how can i change my oil for my car", - "oil_change_how" - ], - [ - "how will i change my car's oil", - "oil_change_how" - ], - [ - "what kind of oil do i need to get and use for my car", - "oil_change_how" - ], - [ - "what is needed to change my oil", - "oil_change_how" - ], - [ - "how can i change my oil in my car", - "oil_change_how" - ], - [ - "i need to change my oil, how do i", - "oil_change_how" - ], - [ - "tell me how to change my car's oil, and what type of oil i should buy", - "oil_change_how" - ], - [ - "what kinds of oil can i use in my car, and how to i change the oil", - "oil_change_how" - ], - [ - "i need instructions on how to change my car's oil and what type i should buy", - "oil_change_how" - ], - [ - "i need to change my oil and have no idea how to do it", - "oil_change_how" - ], - [ - "can you tell me how to change my car's oil, and what type i need to buy", - "oil_change_how" - ], - [ - "i don't know how to change my oil or what type i need", - "oil_change_how" - ], - [ - "i'm due for an oil change and need assistance doing it and also need to know what kind of oil the car takes", - "oil_change_how" - ], - [ - "i can't change my oil and don't know what kind i need", - "oil_change_how" - ], - [ - "help me change my oil and what kind do i need", - "oil_change_how" - ], - [ - "how do i change my oil out and what kind should i use", - "oil_change_how" - ], - [ - "can you show me how to change the oil in my car", - "oil_change_how" - ], - [ - "i want to learn how to change the oil in my car", - "oil_change_how" - ], - [ - "what are the steps i need to do to change the oil in my car", - "oil_change_how" - ], - [ - "teach me how to change the oil in my vehicle", - "oil_change_how" - ], - [ - "give me instructions to change my oil", - "oil_change_how" - ], - [ - "steps to change car oil", - "oil_change_how" - ], - [ - "how should i prepare to change my own oil", - "oil_change_how" - ], - [ - "how do you change car oil", - "oil_change_how" - ], - [ - "how easy is it to change your own oil", - "oil_change_how" - ], - [ - "please show me instructions on how to change my oil", - "oil_change_how" - ], - [ - "what do i need in order to change my oil", - "oil_change_how" - ], - [ - "what are the procedures for changing my oil", - "oil_change_how" - ], - [ - "tell me what to do to change the oil in a subaru", - "oil_change_how" - ], - [ - "walk me through changing the oil on a tesla", - "oil_change_how" - ], - [ - "you need to call the melt in lakewood for a table for at 2:00, monday, the first week in march", - "restaurant_reservation" - ], - [ - "hey computer, make a reservation for 2 for my parents at red lobster on wednseday next, 2:00pm if possible", - "restaurant_reservation" - ], - [ - "i think we should reserve dad's regular table friday for 6 people, use his name, make that close to 4:00 pm at the club", - "restaurant_reservation" - ], - [ - "listen i need to get a reservation for , me and teresa at georgetown cafe on tuesday at 7:00 pm", - "restaurant_reservation" - ], - [ - "can you make me a reservation for 4 pm on the 22nd at ruth's", - "restaurant_reservation" - ], - [ - "i need a reservation at 8 on the 22nd of november at ruth's", - "restaurant_reservation" - ], - [ - "can i make a reservation for 6 pm on the 21st at sidetracks", - "restaurant_reservation" - ], - [ - "please reserve me a table at hell's kitchen on may 3rd at 8 pm", - "restaurant_reservation" - ], - [ - "please reserve me a table for 2 pm at maxwell's on the 14th", - "restaurant_reservation" - ], - [ - "can you make a reservation for me at the restaurant", - "restaurant_reservation" - ], - [ - "can you make a reservation at the restaurant for tomorrow", - "restaurant_reservation" - ], - [ - "can you book a table at the restaurant for me and my husband", - "restaurant_reservation" - ], - [ - "can you make a reservation at the restaurant for tonight", - "restaurant_reservation" - ], - [ - "can you get me a table for 6 at mark's at 11am", - "restaurant_reservation" - ], - [ - "can you get me a table for 1 at the vega at 1pm", - "restaurant_reservation" - ], - [ - "can you get a table for 5 at joe's at 5pm", - "restaurant_reservation" - ], - [ - "can you get me a table for 3 at captain d's at 2pm", - "restaurant_reservation" - ], - [ - "can you get me a table for 2 at mexico viejo at 3pm", - "restaurant_reservation" - ], - [ - "can you get me a table for 2 at diablo", - "restaurant_reservation" - ], - [ - "can you get me a table for 5 at johnnys", - "restaurant_reservation" - ], - [ - "can you get me a table for 8 at johnnys", - "restaurant_reservation" - ], - [ - "can you get me a table for 6 at johnnys", - "restaurant_reservation" - ], - [ - "can you get me a table for 4 at steve's", - "restaurant_reservation" - ], - [ - "reserve a table for 3 at outback steakhouse under the name lance at 7:00pm", - "restaurant_reservation" - ], - [ - "reserve a table for 4 at red lobster under the name dave at 7:30pm", - "restaurant_reservation" - ], - [ - "reserve a table for 6 at morton's under the name jaime at 8:30pm", - "restaurant_reservation" - ], - [ - "can you get me a table for 3 at olive garden at 7pm", - "restaurant_reservation" - ], - [ - "book a reservation for 6 at shakey's under the name jason", - "restaurant_reservation" - ], - [ - "reserve a table for 5 at lawry's under the name steve at 8:00pm", - "restaurant_reservation" - ], - [ - "book a reservation for 5 at lawry's under the name chris", - "restaurant_reservation" - ], - [ - "reserve a table for 2 at olive garden under the name jim at 6:00pm", - "restaurant_reservation" - ], - [ - "book a reservation for 4 at outback steakhouse under the name dave", - "restaurant_reservation" - ], - [ - "can you get me a table for 5 at outback steakhouse at 6:30pm", - "restaurant_reservation" - ], - [ - "book a reservation for 3 at red lobster under the name steve", - "restaurant_reservation" - ], - [ - "book a reservation for 2 at olive garden under the name jim", - "restaurant_reservation" - ], - [ - "can you get me a table for 8 at mastro's at 8:30pm", - "restaurant_reservation" - ], - [ - "can you get me a table for 4 at red lobster at 8pm", - "restaurant_reservation" - ], - [ - "can you get me a table for 6 at lawry's at 7:30pm", - "restaurant_reservation" - ], - [ - "is it possible to get a table for 4 at the village inn around 10am", - "restaurant_reservation" - ], - [ - "can you get me a table for 5 at mcdonalds at 5pm", - "restaurant_reservation" - ], - [ - "give me a table for 3 at o'reilly's bar for 7 please", - "restaurant_reservation" - ], - [ - "can i have a table held at the outback steakhouse for johnson at 5", - "restaurant_reservation" - ], - [ - "is it possible to book a room at the taco bell for reavers at 3", - "restaurant_reservation" - ], - [ - "i'd like to set up a reservation for kibble at 4", - "restaurant_reservation" - ], - [ - "can i reserve a table for 2 at the olive garden at 8", - "restaurant_reservation" - ], - [ - "i want to reserve a table at 8 at long john silver's under the name freddie", - "restaurant_reservation" - ], - [ - "i want to have a table for 2 at the broadmore around 6", - "restaurant_reservation" - ], - [ - "i need an 8 o'clock reservation at pizza hut for the last name mercury", - "restaurant_reservation" - ], - [ - "hey, i need to make a reservation for three at umi, six pm on february 30th", - "restaurant_reservation" - ], - [ - "hello, i'd like a reservation for two at the olive garden at six tonight", - "restaurant_reservation" - ], - [ - "can you set me up for a reservation for five at outback steakhouse on february 28th at seven pm", - "restaurant_reservation" - ], - [ - "i need a reservation for one at applebee's, four in the afternoon on march 3rd", - "restaurant_reservation" - ], - [ - "please make a reservation for me: party of two, february 22nd at chili's, two in the afternoon", - "restaurant_reservation" - ], - [ - "i gotta make a reservation for 8 pm at red robin for 3", - "restaurant_reservation" - ], - [ - "can i make a reservation for 8 pm at red robin for 3", - "restaurant_reservation" - ], - [ - "please book a reservation for 8 pm at red robin under the name kevin", - "restaurant_reservation" - ], - [ - "i want you to book a reservation for 8 pm at red robin under the name kevin", - "restaurant_reservation" - ], - [ - "you have to reserve a table for 4 at red robin under the name kevin at 7", - "restaurant_reservation" - ], - [ - "please reserve a table for 4 at red robin under the name kevin at 7", - "restaurant_reservation" - ], - [ - "i need you to reserve a table for 4 at red robin under the name kevin at 7", - "restaurant_reservation" - ], - [ - "reserve a table for 4 at red robin under the name kevin at 7", - "restaurant_reservation" - ], - [ - "i want to make a reservation for 8 pm at red robin for 3", - "restaurant_reservation" - ], - [ - "you must reserve a table for 4 at red robin under the name kevin at 7", - "restaurant_reservation" - ], - [ - "i think i need to make a reservation for 8 pm at red robin for 3", - "restaurant_reservation" - ], - [ - "i need you to book a reservation for 8 pm at red robin under the name kevin", - "restaurant_reservation" - ], - [ - "go ahead and book a reservation for 8 pm at red robin under the name kevin", - "restaurant_reservation" - ], - [ - "i need to make a reservation for 8 pm at red robin for 3", - "restaurant_reservation" - ], - [ - "book a reservation for 8 pm at red robin under the name kevin", - "restaurant_reservation" - ], - [ - "would you please make a reservation for 2 at olive garden for 5 pm today", - "restaurant_reservation" - ], - [ - "i'd like a reservation for 2 at olive garden for 5 pm today", - "restaurant_reservation" - ], - [ - "could you make reservations for 2 at olive garden for 5 pm today", - "restaurant_reservation" - ], - [ - "make a reservation at 5 pm today for 2 at olive garden", - "restaurant_reservation" - ], - [ - "please make a reservation for 2 at olive garden for 5 pm today", - "restaurant_reservation" - ], - [ - "i need you to reserve a table for 6:00 pm for three at devon's seafood", - "restaurant_reservation" - ], - [ - "make a reservation for three at prime rib at 6:30 pm", - "restaurant_reservation" - ], - [ - "i would like a reservation for 6:30 pm at pietro's under the name david jones", - "restaurant_reservation" - ], - [ - "please reserve a table for two at rouge for 7:00 pm", - "restaurant_reservation" - ], - [ - "can you get me a table for two for 8:00 pm at parc", - "restaurant_reservation" - ], - [ - "i would like you to secure a 4:30 pm reservation for five people at morton's steakhouse", - "restaurant_reservation" - ], - [ - "call and make a 5:45 pm reservation for jason rogers, table for four", - "restaurant_reservation" - ], - [ - "i need you to reserve at table for a party of four at devon's for 6:00 pm", - "restaurant_reservation" - ], - [ - "reserve a table for two for 7:30 pm at dibruno's under patrick donoghue", - "restaurant_reservation" - ], - [ - "please make a reservation at ruth's steaks for a party of five at 7:00 pm under jack arnold", - "restaurant_reservation" - ], - [ - "can i make a reservation for 2 at state bird for 7:30, please", - "restaurant_reservation" - ], - [ - "can i make a reservation for 2 at state bird for 8:30, please", - "restaurant_reservation" - ], - [ - "can i make a reservation for 2 at state bird for 6:30, please", - "restaurant_reservation" - ], - [ - "can i make a reservation for 3 at state bird for 8:30, please", - "restaurant_reservation" - ], - [ - "can i make a reservation for 2 at state bird for 8:30", - "restaurant_reservation" - ], - [ - "please make a reservation for us at joy bar for 4 adults", - "restaurant_reservation" - ], - [ - "please make me a reservation for monty's at noon for 55555", - "restaurant_reservation" - ], - [ - "now, i need a reservation for backwoods crossing at seven for 6 people", - "restaurant_reservation" - ], - [ - "make me a reservation for tomorrow at happys for four", - "restaurant_reservation" - ], - [ - "make me a reservation for 5 at coral for 10 pm immediately", - "restaurant_reservation" - ], - [ - "can you reserve a table for 2 at red lobster at 8pm", - "restaurant_reservation" - ], - [ - "schedule me a table for 2 at red lobster at 8", - "restaurant_reservation" - ], - [ - "check reservation availability for 2 at red lobster at 8pm", - "restaurant_reservation" - ], - [ - "make a reservation for 2 at red lobster at 8pm", - "restaurant_reservation" - ], - [ - "reserve a table for 2 at red lobster at 8:00", - "restaurant_reservation" - ], - [ - "reserve a table for four for tonight at 7 at the fatted calf", - "restaurant_reservation" - ], - [ - "make a reservation for tuesday at 7:00 pm at cielo for 2", - "restaurant_reservation" - ], - [ - "savings account balance at chase bank please", - "balance" - ], - [ - "check chase bank for my checking balance", - "balance" - ], - [ - "what is my checking account balance at chase", - "balance" - ], - [ - "i want my checking balance at chase", - "balance" - ], - [ - "what's my savings balance at chase", - "balance" - ], - [ - "do i have enough money in my chime bank account to take ashley to the movies tuesday", - "balance" - ], - [ - "check my visa account and see if i have enough money for dinner tonight", - "balance" - ], - [ - "is tehre enough in my bluebird account for groceries this week", - "balance" - ], - [ - "do i have enough in my sears account to buy a new dishwasher", - "balance" - ], - [ - "is there enough money in my discover account for a new pair of jeans", - "balance" - ], - [ - "what is the total of my bank accounts", - "balance" - ], - [ - "what is in my bank accounts", - "balance" - ], - [ - "what is the balance on my bank accounts", - "balance" - ], - [ - "what is remaining in my bank acccounts", - "balance" - ], - [ - "how much money is left in my bank accounts", - "balance" - ], - [ - "what amount of money is in my bank accounts", - "balance" - ], - [ - "what is the balance of my bank accounts", - "balance" - ], - [ - "what what kind money is available in my bank accounts", - "balance" - ], - [ - "what is the value of my bank accounts", - "balance" - ], - [ - "how much funds do i have in my bank accounts", - "balance" - ], - [ - "what's my checking account balance", - "balance" - ], - [ - "how much do i have in my checking", - "balance" - ], - [ - "what's the balance of my savings", - "balance" - ], - [ - "how much is in savings", - "balance" - ], - [ - "how much money is in my checking account", - "balance" - ], - [ - "what's the amount of money accumulated in my bank accounts", - "balance" - ], - [ - "what's my current bank savings", - "balance" - ], - [ - "how much total cash do i have in the bank", - "balance" - ], - [ - "what's my current checking balance", - "balance" - ], - [ - "can you tell me my current bank accounts balance", - "balance" - ], - [ - "what's the balance of my bank accounts", - "balance" - ], - [ - "what is my current balance on my home equity line of credit", - "balance" - ], - [ - "please find my balance on my chase mastercard", - "balance" - ], - [ - "can you tell me my checking account balance", - "balance" - ], - [ - "perform a search for my most recent balance on my amex account", - "balance" - ], - [ - "how much is the current balance in my td bank savings account", - "balance" - ], - [ - "what is my balance in checking account", - "balance" - ], - [ - "how much is available in my savings account", - "balance" - ], - [ - "tell me what i have in my money market account", - "balance" - ], - [ - "how much money do i have in my account", - "balance" - ], - [ - "how much is left of mastercard", - "balance" - ], - [ - "what is the available balance in savings", - "balance" - ], - [ - "what is the balance on my visa", - "balance" - ], - [ - "do i have enough money in my chase account for a new refrigerator", - "balance" - ], - [ - "do i have enough money in my charles schwab account to get a new baseball bat", - "balance" - ], - [ - "i'd like to know my bank balance please", - "balance" - ], - [ - "what's the balance on my bank account", - "balance" - ], - [ - "will the money in my capital one account cover a new washing machine", - "balance" - ], - [ - "could you check my bank balance for me", - "balance" - ], - [ - "will the amount in my chase bank account right now cover the cost of a new dryer", - "balance" - ], - [ - "i want to get a new shirt; will the money in my td ameritrade account cover it", - "balance" - ], - [ - "how much do i have in the bank", - "balance" - ], - [ - "what's my bank balance", - "balance" - ], - [ - "what is my bank balance", - "balance" - ], - [ - "is there any money left", - "balance" - ], - [ - "do i have any cash left", - "balance" - ], - [ - "can you tell me how much cash i have", - "balance" - ], - [ - "do i have enough in my boa account for a new pair of skis", - "balance" - ], - [ - "do i have enough in my chase account for new nikes", - "balance" - ], - [ - "can the funds in my wells fargo account cover my lift tickets", - "balance" - ], - [ - "do i have enough to cover new skis in my bank of america account", - "balance" - ], - [ - "do i have enough in my chase account for a plane ticket", - "balance" - ], - [ - "do you know how much i have in checking", - "balance" - ], - [ - "what is my saving's account balance", - "balance" - ], - [ - "what's the balance in my checking", - "balance" - ], - [ - "how much do i have in savings", - "balance" - ], - [ - "could you tell me what my checking account balance is", - "balance" - ], - [ - "what's my total net worth in all of my bank accounts", - "balance" - ], - [ - "what's my account balance", - "balance" - ], - [ - "i want to view my balance", - "balance" - ], - [ - "check my bank balance", - "balance" - ], - [ - "how much money do i have in all of my accounts", - "balance" - ], - [ - "how much money do i have in all of my accounts combined", - "balance" - ], - [ - "what's my checking balance", - "balance" - ], - [ - "how much money do i have total", - "balance" - ], - [ - "what's the total of my bank accounts", - "balance" - ], - [ - "how much money do i have in checking", - "balance" - ], - [ - "i wish to know the balance of my bank of american account", - "balance" - ], - [ - "what is the balance of my bank of american account", - "balance" - ], - [ - "i need to know my bank balance", - "balance" - ], - [ - "i wanna know the balance of my bank of american account", - "balance" - ], - [ - "i'd like to know the balance of my bank of american account", - "balance" - ], - [ - "i wish to know the balance of my bank of american account now", - "balance" - ], - [ - "please tell me my bank balance", - "balance" - ], - [ - "i wanna know my bank balance", - "balance" - ], - [ - "please let me know what my current bank balance is", - "balance" - ], - [ - "what is status of my bank account", - "balance" - ], - [ - "what is my balance", - "balance" - ], - [ - "what is the balance of my bank account", - "balance" - ], - [ - "what is is the details of my bank account", - "balance" - ], - [ - "is there enough money in my discover account for a vacation", - "balance" - ], - [ - "is there enough money in my account for expenses", - "balance" - ], - [ - "do i have enough money in my first hawaiian bank account for a vacation", - "balance" - ], - [ - "is there enough money in my bank of hawaii for vacation", - "balance" - ], - [ - "is there enough money in my discover account for airplane tickets", - "balance" - ], - [ - "what is my savings account balance", - "balance" - ], - [ - "what is my savings balance", - "balance" - ], - [ - "what is my money market account balance", - "balance" - ], - [ - "what is my bank balance for all accounts", - "balance" - ], - [ - "tell me my payroll account balance", - "balance" - ], - [ - "verify that i have reservations at chilis for john doe", - "confirm_reservation" - ], - [ - "can you check my reservations for mortons under david winters", - "confirm_reservation" - ], - [ - "can you check for reservations at wongs chinese for john acer", - "confirm_reservation" - ], - [ - "check and confirm reservations at ruth chris for carol lee", - "confirm_reservation" - ], - [ - "verify that my reservations at won wons for joe lee are good", - "confirm_reservation" - ], - [ - "check on my reservation for umami at 6pm", - "confirm_reservation" - ], - [ - "confirm a reservation for nicole brown at diangelo's at 6:45 pm, please", - "confirm_reservation" - ], - [ - "i need you to confirm that there is a reservation under the name david kramer for 7:00 pm at pietro's", - "confirm_reservation" - ], - [ - "i would like to confirm my 7:30 pm reservation at morton's steakhouse, under michael james", - "confirm_reservation" - ], - [ - "can you please confirm that i have a 6:00 pm table reserved under michelle solomon at devon's", - "confirm_reservation" - ], - [ - "please confirm my reservation at parc for 8:00 pm, with the name denise jack", - "confirm_reservation" - ], - [ - "please confirm my reservation for thursday at 10am", - "confirm_reservation" - ], - [ - "does it show me as having a reservation for tomorrow at 5", - "confirm_reservation" - ], - [ - "can you confirm my reservation for 6 at the outback", - "confirm_reservation" - ], - [ - "can you check that i have a reservation on february 28th for 3 in the afternoon", - "confirm_reservation" - ], - [ - "i want to make sure my reservation for 5 at mcdonalds is still set", - "confirm_reservation" - ], - [ - "i want to verify my reservation for the 18th at 1pm", - "confirm_reservation" - ], - [ - "do i have a reservation for may 1st, 2019 at 4 pm", - "confirm_reservation" - ], - [ - "can you verify that i have a reservation at o'reilly's for 9", - "confirm_reservation" - ], - [ - "can you assure me i have a table at taco bell at 7pm", - "confirm_reservation" - ], - [ - "is my 10am village inn reservation valid", - "confirm_reservation" - ], - [ - "please confirm my reservation for morton's at 5 pm", - "confirm_reservation" - ], - [ - "do i have reservations at o'neal's at 3 pm", - "confirm_reservation" - ], - [ - "is my reservation confirmed for lu shi at 7 pm", - "confirm_reservation" - ], - [ - "confirm my reservation at dino's at 6 pm", - "confirm_reservation" - ], - [ - "please tell me if my reservation is scheduled for sally's at 3 pm", - "confirm_reservation" - ], - [ - "check to see if i have reservations at prado at 6 pm", - "confirm_reservation" - ], - [ - "tell me if i have reservations at the back abbey at 6 pm", - "confirm_reservation" - ], - [ - "do you know if my reservation for dono is confirmed at 8 pm", - "confirm_reservation" - ], - [ - "do i have reservations at creme at 7 pm", - "confirm_reservation" - ], - [ - "i need to know if i have reservations at arufflo at 5 pm", - "confirm_reservation" - ], - [ - "i really need you to confirm my reservation for kevin at red robin", - "confirm_reservation" - ], - [ - "can you confirm my reservation for kevin at red robin", - "confirm_reservation" - ], - [ - "i wanna confirm my reservation for 2/20 at 8 pm", - "confirm_reservation" - ], - [ - "i'd like to confirm my reservation for 2/20 at 8 pm", - "confirm_reservation" - ], - [ - "i would like for you to confirm my reservation for red robin at 5 pm", - "confirm_reservation" - ], - [ - "i must confirm my reservation for 2/20 at 8 pm", - "confirm_reservation" - ], - [ - "i really want to confirm that i have a reservation at red robin for josh", - "confirm_reservation" - ], - [ - "i need you to confirm my reservation for kevin at red robin", - "confirm_reservation" - ], - [ - "will you confirm my reservation for red robin at 10", - "confirm_reservation" - ], - [ - "i wanna try and confirm that i have a reservation at red robin for josh", - "confirm_reservation" - ], - [ - "i need to confirm that i have a reservation at red robin for josh", - "confirm_reservation" - ], - [ - "please confirm my reservation for red robin at 9", - "confirm_reservation" - ], - [ - "i wish to confirm that i have a reservation at red robin for josh", - "confirm_reservation" - ], - [ - "i need to confirm my reservation for 2/20 at 8 pm", - "confirm_reservation" - ], - [ - "go ahead and confirm my reservation for kevin at red robin", - "confirm_reservation" - ], - [ - "please confirm my reservation for 2/20 at 8 pm", - "confirm_reservation" - ], - [ - "confirm my reservation for red robin at 8", - "confirm_reservation" - ], - [ - "i need you to confirm my reservation for outback steakhouse at 6", - "confirm_reservation" - ], - [ - "please confirm my reservation for kevin at red robin", - "confirm_reservation" - ], - [ - "i'd like to confirm that i have a reservation at red robin for josh", - "confirm_reservation" - ], - [ - "will you make sure robert has a reservation at ruth's steakhouse", - "confirm_reservation" - ], - [ - "do i still have the reservation on march 21 at 8pm", - "confirm_reservation" - ], - [ - "can you check that there's a reservation for mark at sidetracks", - "confirm_reservation" - ], - [ - "will you check there is a reservation for laura at black pearl", - "confirm_reservation" - ], - [ - "i need to make sure there is a reservation for george at connor oneil's", - "confirm_reservation" - ], - [ - "can you confirm my reservation for 6 pm on the 13th of february", - "confirm_reservation" - ], - [ - "can you confirm i have a reservation at 5 pm on march 13th", - "confirm_reservation" - ], - [ - "can you confirm my reservation for 8 pm on the 7th of november", - "confirm_reservation" - ], - [ - "please confirm i have a reservation for 2 pm on february 21st", - "confirm_reservation" - ], - [ - "can you verify mike has a reservation at black rock at 6 pm", - "confirm_reservation" - ], - [ - "i want my reservation for march 1 at 8 pm confirmed", - "confirm_reservation" - ], - [ - "will you please confirm my reservation for march 11 at 6:30 pm", - "confirm_reservation" - ], - [ - "i would like you to confirm my reservation for next saturday at 11 am", - "confirm_reservation" - ], - [ - "i need you to confirm my reservation for tomorrow at 3 pm", - "confirm_reservation" - ], - [ - "check to confirm my reservation for february 22 at noon", - "confirm_reservation" - ], - [ - "i would like to try and confirm that i have a reservation at houlihan\u2019s for mike", - "confirm_reservation" - ], - [ - "i would like to try and confirm that i have a reservation at the seven dwarves for peter", - "confirm_reservation" - ], - [ - "i would like to try and confirm that i have a reservation at hu hot for paulie", - "confirm_reservation" - ], - [ - "i would like to try and confirm that i have a reservation at macaroni grill for saul", - "confirm_reservation" - ], - [ - "i would like to try and confirm that i have a reservation at chili\u2019s for melinda", - "confirm_reservation" - ], - [ - "i would like to try and confirm that i have a reservation at macaroni grill for silva", - "confirm_reservation" - ], - [ - "i would like to try and confirm that i have a reservation at kelly's for moreno", - "confirm_reservation" - ], - [ - "i would like to try and confirm that i have a reservation at la palapa for bolding", - "confirm_reservation" - ], - [ - "i would like to try and confirm that i have a reservation at gusteau's for krystine", - "confirm_reservation" - ], - [ - "i would like to try and confirm that i have a reservation at chili's for jamie", - "confirm_reservation" - ], - [ - "can you confirm my reservation for jim at lawry's", - "confirm_reservation" - ], - [ - "can you confirm my reservation for dave at outback steakhouse", - "confirm_reservation" - ], - [ - "can you confirm my reservation for lance at morton's", - "confirm_reservation" - ], - [ - "can you confirm my reservation for steve at olive garden", - "confirm_reservation" - ], - [ - "can you confirm my reservation for jaime at red lobster", - "confirm_reservation" - ], - [ - "i'd like for you to make sure my reservation is there for charlie's under jack", - "confirm_reservation" - ], - [ - "can you check and see i have a reservation under alex for bon apetite", - "confirm_reservation" - ], - [ - "can you verify my reservation under steve for friendly's", - "confirm_reservation" - ], - [ - "make sure my reservation is happening for john at olive garden", - "confirm_reservation" - ], - [ - "double check my reservation under adam for outback steakhouse", - "confirm_reservation" - ], - [ - "please confirm my reservation for april 1st at 9am", - "confirm_reservation" - ], - [ - "please confirm my reservation for march 8th at 12:00", - "confirm_reservation" - ], - [ - "can you confirm my reservation for donnobys at 5:00", - "confirm_reservation" - ], - [ - "can you confirm my reservation for minnis at 4:00", - "confirm_reservation" - ], - [ - "please confirm my reservation for may 9th at 4pm", - "confirm_reservation" - ], - [ - "please confirm my reservation for march 1st at 2pm", - "confirm_reservation" - ], - [ - "can you confirm my reservation for torris at 7:00", - "confirm_reservation" - ], - [ - "can you confirm my reservation for applebees at 2:00", - "confirm_reservation" - ], - [ - "can you confirm my reservation for chillis at 8:00", - "confirm_reservation" - ], - [ - "please confirm my reservation for feburary 21st at 6pm", - "confirm_reservation" - ], - [ - "confirm my taco house reservation for jean", - "confirm_reservation" - ], - [ - "can you you confirm my reservation for jean at taco house", - "confirm_reservation" - ], - [ - "does taco house have a reservation for jean", - "confirm_reservation" - ], - [ - "i would like to check my reservation for jean at taco house", - "confirm_reservation" - ], - [ - "can you block my chase account right away please", - "freeze_account" - ], - [ - "i want my chase account blocked immediately", - "freeze_account" - ], - [ - "i need you to block my chase account immediately", - "freeze_account" - ], - [ - "can you put a block on my chase account right away", - "freeze_account" - ], - [ - "please block my chase account right away", - "freeze_account" - ], - [ - "what do i do to freeze my account", - "freeze_account" - ], - [ - "place a hold on my bank account", - "freeze_account" - ], - [ - "how can i stop transactions on my account", - "freeze_account" - ], - [ - "freeze my account immediately", - "freeze_account" - ], - [ - "block my monkey market right now", - "freeze_account" - ], - [ - "put a stop on my deposit account", - "freeze_account" - ], - [ - "stop any future processing on my savings account", - "freeze_account" - ], - [ - "put a hault on my savings account", - "freeze_account" - ], - [ - "could you put a stop on my bank account, please", - "freeze_account" - ], - [ - "can you put a stop on my bank account now", - "freeze_account" - ], - [ - "can you put a stop on my bank account, please", - "freeze_account" - ], - [ - "could you freeze my account", - "freeze_account" - ], - [ - "could you freeze my account, please", - "freeze_account" - ], - [ - "can you put a stop on my bank account", - "freeze_account" - ], - [ - "can you freeze my account, please", - "freeze_account" - ], - [ - "could you freeze my account now", - "freeze_account" - ], - [ - "can you freeze my account", - "freeze_account" - ], - [ - "could you put a stop on my bank account", - "freeze_account" - ], - [ - "do you mind putting a stop on my bank account", - "freeze_account" - ], - [ - "i would like you to put a stop on my bank account", - "freeze_account" - ], - [ - "please turn my account to frozen", - "freeze_account" - ], - [ - "please make my account a frozen one", - "freeze_account" - ], - [ - "please make sure my account is frozen", - "freeze_account" - ], - [ - "is it too much trouble to put a stop on my bank account", - "freeze_account" - ], - [ - "i would love it if you could put a stop on my bank account", - "freeze_account" - ], - [ - "i would appreciate it if you put a stop on my bank account", - "freeze_account" - ], - [ - "please set my account as frozen", - "freeze_account" - ], - [ - "please freeze my account", - "freeze_account" - ], - [ - "i need my account frozen", - "freeze_account" - ], - [ - "i'd like my account frozen", - "freeze_account" - ], - [ - "i would like my account frozen", - "freeze_account" - ], - [ - "i want my account frozen", - "freeze_account" - ], - [ - "i really want my account frozen", - "freeze_account" - ], - [ - "no payments on my bank account", - "freeze_account" - ], - [ - "turn off my bank account", - "freeze_account" - ], - [ - "stop all payments to my bank account", - "freeze_account" - ], - [ - "shut down my account", - "freeze_account" - ], - [ - "close out my account", - "freeze_account" - ], - [ - "turn off my account", - "freeze_account" - ], - [ - "i need to hold off on my account", - "freeze_account" - ], - [ - "plase hold my account for now", - "freeze_account" - ], - [ - "terminate the account", - "freeze_account" - ], - [ - "i am going to need a block put on my chase account right away", - "freeze_account" - ], - [ - "would you please put a block on my chase account right away", - "freeze_account" - ], - [ - "i would like a block put on my chase account asap", - "freeze_account" - ], - [ - "can you please put a block on my chase account quickly", - "freeze_account" - ], - [ - "i need a block put on my chase account right away", - "freeze_account" - ], - [ - "i need to put a freeze on my banking account", - "freeze_account" - ], - [ - "put a freeze on my bank account", - "freeze_account" - ], - [ - "freeze my bank account", - "freeze_account" - ], - [ - "can i freeze my bank account", - "freeze_account" - ], - [ - "i want you to immediatly block any further activity on my bb&t bank account", - "freeze_account" - ], - [ - "block my citibank account right away", - "freeze_account" - ], - [ - "add a block to my capital one bank account so it cannot be used any more", - "freeze_account" - ], - [ - "please immediatly block my presidential bank account right now", - "freeze_account" - ], - [ - "put a block on my amalgamated bank account right now", - "freeze_account" - ], - [ - "please put a stop on my back account", - "freeze_account" - ], - [ - "please put a block on my td ameritrade account now", - "freeze_account" - ], - [ - "i'd like a stop placed on my bank account", - "freeze_account" - ], - [ - "place a block on my capital one account right now", - "freeze_account" - ], - [ - "i'd like a block on my charles schwab account immediately", - "freeze_account" - ], - [ - "i need you to place a stop on my bank account, thank you", - "freeze_account" - ], - [ - "place a stop on my bank account", - "freeze_account" - ], - [ - "i need you to freeze my account", - "freeze_account" - ], - [ - "i need you to block my mutualone account now", - "freeze_account" - ], - [ - "help me freeze my bank account, please", - "freeze_account" - ], - [ - "i'd like to put a freeze on my bank account", - "freeze_account" - ], - [ - "block my chase account asap", - "freeze_account" - ], - [ - "can you please freeze my bank account", - "freeze_account" - ], - [ - "can you please put a stop on my bank account", - "freeze_account" - ], - [ - "pause my account", - "freeze_account" - ], - [ - "put a hold on my bank account", - "freeze_account" - ], - [ - "please do a stop on my bank account", - "freeze_account" - ], - [ - "stop payments from my bank", - "freeze_account" - ], - [ - "put a hold on my account", - "freeze_account" - ], - [ - "stop my account activity", - "freeze_account" - ], - [ - "please pause my banking actions", - "freeze_account" - ], - [ - "dont allow any action on my account", - "freeze_account" - ], - [ - "don't let payments go through using my bank account", - "freeze_account" - ], - [ - "please freeze my bank account", - "freeze_account" - ], - [ - "i want my bank account frozen", - "freeze_account" - ], - [ - "my bank account must be frozen", - "freeze_account" - ], - [ - "please ask the bank to freeze my account", - "freeze_account" - ], - [ - "i need to freeze my bank account", - "freeze_account" - ], - [ - "put a block on my chase account right away", - "freeze_account" - ], - [ - "put a hold on my chase account right away please", - "freeze_account" - ], - [ - "freeze my account", - "freeze_account" - ], - [ - "place a stop on my main account for me please", - "freeze_account" - ], - [ - "please put a block on my wells fargo account", - "freeze_account" - ], - [ - "put a hold on my bank account please", - "freeze_account" - ], - [ - "put a hold on my bank of america account right away please", - "freeze_account" - ], - [ - "can you notify the bank to put a stop on my account", - "freeze_account" - ], - [ - "can you put a stop on my account", - "freeze_account" - ], - [ - "i need a stop placed on my bank account please", - "freeze_account" - ], - [ - "can you put a block on my visa account right away", - "freeze_account" - ], - [ - "ways to transfer my 401k", - "rollover_401k" - ], - [ - "where do i go the transfer my 401k", - "rollover_401k" - ], - [ - "who do i go to, to transfer my 401k", - "rollover_401k" - ], - [ - "what are the ways i can transfer my 401k", - "rollover_401k" - ], - [ - "i need guidance on how to rollover my 401k", - "rollover_401k" - ], - [ - "walk me through the process of transferring my 401k", - "rollover_401k" - ], - [ - "i want to figure out how to rollover my 401k", - "rollover_401k" - ], - [ - "tell me if i am able to rollover my 401k", - "rollover_401k" - ], - [ - "i have to transfer my 401k but i don't know how to do it", - "rollover_401k" - ], - [ - "i want to rollover my 401k but dont know how", - "rollover_401k" - ], - [ - "i need to know if it is possible to rollover my 401k", - "rollover_401k" - ], - [ - "i nee to know how to transfer my 401k", - "rollover_401k" - ], - [ - "will you help me figure out how to transfer my 401k", - "rollover_401k" - ], - [ - "explain to me how transferring my 401k works", - "rollover_401k" - ], - [ - "can you instruct me on how to rollover my 401k", - "rollover_401k" - ], - [ - "do you know if my 401k is able to be rolled over", - "rollover_401k" - ], - [ - "look up whether my 401k may be rolled over", - "rollover_401k" - ], - [ - "please walk me through the steps necessary to rollover my 401k", - "rollover_401k" - ], - [ - "how do i transport my 401k", - "rollover_401k" - ], - [ - "how do i relocate my 401k", - "rollover_401k" - ], - [ - "since i got a new job, i need help with my 401k rollover", - "rollover_401k" - ], - [ - "i have a new job now and need help with rolling over my 401k", - "rollover_401k" - ], - [ - "how do i move my 401k", - "rollover_401k" - ], - [ - "i recently got a new job and need assistance with my 401k rollover", - "rollover_401k" - ], - [ - "how do i redirect my 401k", - "rollover_401k" - ], - [ - "now that i have a new job, i need getting my 401k rolled over", - "rollover_401k" - ], - [ - "i have a new job and need direction with my 401k rollover", - "rollover_401k" - ], - [ - "i need help changing my 401k after i got a new job", - "rollover_401k" - ], - [ - "i just got a new job and need help transferring my 401k", - "rollover_401k" - ], - [ - "how do i rollover my 401k after i got a new job", - "rollover_401k" - ], - [ - "i need to rollover my 401k because i got a new job", - "rollover_401k" - ], - [ - "i jot got hired and need help with my retirement account", - "rollover_401k" - ], - [ - "could you roll over my 401k for me", - "rollover_401k" - ], - [ - "what are the steps for transfering my 401k", - "rollover_401k" - ], - [ - "walk me through on how to roll over my 401k", - "rollover_401k" - ], - [ - "help me roll over my 401k", - "rollover_401k" - ], - [ - "could you walk me through transfering my 401k", - "rollover_401k" - ], - [ - "i could use some help transfering my 401k", - "rollover_401k" - ], - [ - "help me transfer my 401k", - "rollover_401k" - ], - [ - "i need your assistance on transfering my 401k", - "rollover_401k" - ], - [ - "i need your assistance on rolling over my 401k", - "rollover_401k" - ], - [ - "i need help to roll over my 401k", - "rollover_401k" - ], - [ - "i have to get my 401k rollover because i just got a new job", - "rollover_401k" - ], - [ - "i just changed jobs and need help with my 401k rollover", - "rollover_401k" - ], - [ - "i have just switched jobs and need assistance with my 401k rollover", - "rollover_401k" - ], - [ - "i just started this new job and need help with my 401k rollover", - "rollover_401k" - ], - [ - "i just switched jobs and need a 401k rollover", - "rollover_401k" - ], - [ - "i'd like my 401k to be rolled over", - "rollover_401k" - ], - [ - "tell me how to get my 401k rolled over", - "rollover_401k" - ], - [ - "help me to roll over my 401k", - "rollover_401k" - ], - [ - "i'd like to roll over my 401k", - "rollover_401k" - ], - [ - "how can i roll over my 401k", - "rollover_401k" - ], - [ - "will my 401k rollover or not", - "rollover_401k" - ], - [ - "can a 401k be rolled over", - "rollover_401k" - ], - [ - "do i have the ability to rollover my 401k", - "rollover_401k" - ], - [ - "what's up with my 401k and will it roll over", - "rollover_401k" - ], - [ - "i'm on a new job but i need help with my 401k rollover", - "rollover_401k" - ], - [ - "i managed to get a new job but i need help with my 401k rollover", - "rollover_401k" - ], - [ - "i just acquired a new job but i need help with my 401k rollover", - "rollover_401k" - ], - [ - "i recently took a new job and need help with my 401k rollover", - "rollover_401k" - ], - [ - "i just got this new job but i need help with my 401k rollover", - "rollover_401k" - ], - [ - "i want help rolling over my 401k", - "rollover_401k" - ], - [ - "i need to rollover my 401k to a new job", - "rollover_401k" - ], - [ - "i want my 401k rolled over to a new workplace", - "rollover_401k" - ], - [ - "my previous job's 401k needs to be rolled over", - "rollover_401k" - ], - [ - "i need a 401k rolled over to my brand new job", - "rollover_401k" - ], - [ - "what do i do to rollover my 401k", - "rollover_401k" - ], - [ - "i need to rollover my 401k", - "rollover_401k" - ], - [ - "can you help me with rolling over my 401k", - "rollover_401k" - ], - [ - "i desperately need to rollover my 401k somehow", - "rollover_401k" - ], - [ - "my new job requires that i rollover my 401k", - "rollover_401k" - ], - [ - "can you help me figure out the process of rolling over a 401k", - "rollover_401k" - ], - [ - "what do i need to do to rollover my 401k", - "rollover_401k" - ], - [ - "can you help me rollover my 401k to my new place of employment", - "rollover_401k" - ], - [ - "how can i rollover my 401k at my new job", - "rollover_401k" - ], - [ - "can you assist me rolling over a 401k for a new job", - "rollover_401k" - ], - [ - "what's the process for rolling over my 401k", - "rollover_401k" - ], - [ - "i just found a better job and need to move my 401k over to my new employer", - "rollover_401k" - ], - [ - "i have to roll over my 401k to a new account and i don't know how", - "rollover_401k" - ], - [ - "i switched companies and need to rollover my 401k", - "rollover_401k" - ], - [ - "tell me how to transfer my 401k", - "rollover_401k" - ], - [ - "what are the steps for transferring my 401k", - "rollover_401k" - ], - [ - "transfer my 401k please", - "rollover_401k" - ], - [ - "i need to transfer my 401 k", - "rollover_401k" - ], - [ - "is there a way to transfer my 401k", - "rollover_401k" - ], - [ - "can you explain to me how to rollover my 401k", - "rollover_401k" - ], - [ - "can you help me figure out how to rollover my 401k", - "rollover_401k" - ], - [ - "i got a new job, can you help me with my 401k rollover", - "rollover_401k" - ], - [ - "i want to know how to rollover my 401k", - "rollover_401k" - ], - [ - "i need help with my 401k rollver since i got a new job", - "rollover_401k" - ], - [ - "i would like to know how to rollover my 401k", - "rollover_401k" - ], - [ - "explain to me how to rollover my 401k", - "rollover_401k" - ], - [ - "please help me with my 401k rollover since i got a new job", - "rollover_401k" - ], - [ - "can you help me with my 401k rollover since i got a new job", - "rollover_401k" - ], - [ - "i have a new job, help me with my 401k rollover", - "rollover_401k" - ], - [ - "i need assistance figuring out how to rollover my 401k", - "rollover_401k" - ], - [ - "i need to get some assistance figuring out how i can rollover my 401k, please", - "rollover_401k" - ], - [ - "i need to get some assistance figuring out how to rollover my 401k, please", - "rollover_401k" - ], - [ - "i need to get some assistance figuring out how to rollover my 401k", - "rollover_401k" - ], - [ - "i need assistance figuring out how to rollover my 401k, please", - "rollover_401k" - ], - [ - "who formed you", - "who_made_you" - ], - [ - "who constructed you", - "who_made_you" - ], - [ - "what's your design company", - "who_made_you" - ], - [ - "what company coded you", - "who_made_you" - ], - [ - "who fabricated you", - "who_made_you" - ], - [ - "what company wrote your code", - "who_made_you" - ], - [ - "what company owns your code", - "who_made_you" - ], - [ - "who brought you up", - "who_made_you" - ], - [ - "who is it that programmed you", - "who_made_you" - ], - [ - "whats it like to be programmed", - "who_made_you" - ], - [ - "who was the inventor of ai", - "who_made_you" - ], - [ - "ai was made by whom", - "who_made_you" - ], - [ - "tell me the inventor of ai", - "who_made_you" - ], - [ - "can you tell me who made ai", - "who_made_you" - ], - [ - "could you let me know who made you", - "who_made_you" - ], - [ - "would you let me know who programmed you", - "who_made_you" - ], - [ - "provide me the name of who programmed you", - "who_made_you" - ], - [ - "i want to know who made you", - "who_made_you" - ], - [ - "provide me the name of who made you", - "who_made_you" - ], - [ - "i am needing to know who made you", - "who_made_you" - ], - [ - "tell me who made you", - "who_made_you" - ], - [ - "tell me who programmed you", - "who_made_you" - ], - [ - "let me know who made you", - "who_made_you" - ], - [ - "i need to know who programmed you", - "who_made_you" - ], - [ - "i am wanting to know who programmed you", - "who_made_you" - ], - [ - "give me an answer to who made you", - "who_made_you" - ], - [ - "i'm needing to know who made you", - "who_made_you" - ], - [ - "what's your brand", - "who_made_you" - ], - [ - "who created you", - "who_made_you" - ], - [ - "who was your creator", - "who_made_you" - ], - [ - "who made your algorithms", - "who_made_you" - ], - [ - "who manufactured you", - "who_made_you" - ], - [ - "what's the name of the company that designed you", - "who_made_you" - ], - [ - "who's responsible for your existence", - "who_made_you" - ], - [ - "what's the business that caused you to be made", - "who_made_you" - ], - [ - "can you remember who compiled you", - "who_made_you" - ], - [ - "what company's software engineers gave you life", - "who_made_you" - ], - [ - "who are the people responsible for you", - "who_made_you" - ], - [ - "who invented you", - "who_made_you" - ], - [ - "who designed you", - "who_made_you" - ], - [ - "who developed your actions", - "who_made_you" - ], - [ - "who supplied your instructions", - "who_made_you" - ], - [ - "who formulated you", - "who_made_you" - ], - [ - "which company can i credit your design to", - "who_made_you" - ], - [ - "by which company are you designed by", - "who_made_you" - ], - [ - "to which company is your design accredited to", - "who_made_you" - ], - [ - "which company is responsible for your design", - "who_made_you" - ], - [ - "what organization created you", - "who_made_you" - ], - [ - "who developed your internal code", - "who_made_you" - ], - [ - "who created your ai program", - "who_made_you" - ], - [ - "who was your inventor", - "who_made_you" - ], - [ - "who engineered you", - "who_made_you" - ], - [ - "who is this ai's creater", - "who_made_you" - ], - [ - "who made this ai", - "who_made_you" - ], - [ - "who did the programming for this ai", - "who_made_you" - ], - [ - "i would like to know who programmed this ai", - "who_made_you" - ], - [ - "you were built by who", - "who_made_you" - ], - [ - "what company manufactured you", - "who_made_you" - ], - [ - "who were you made by", - "who_made_you" - ], - [ - "are you made in the usa", - "who_made_you" - ], - [ - "tell me your brand", - "who_made_you" - ], - [ - "tell me the company that produces you and similar machines", - "who_made_you" - ], - [ - "may i know who made you", - "who_made_you" - ], - [ - "what created you", - "who_made_you" - ], - [ - "do you know who you came from", - "who_made_you" - ], - [ - "who is your originator", - "who_made_you" - ], - [ - "who is your creator", - "who_made_you" - ], - [ - "who is responsible for who you are", - "who_made_you" - ], - [ - "who crafted you", - "who_made_you" - ], - [ - "who was your programmer", - "who_made_you" - ], - [ - "the programmer who made you is who", - "who_made_you" - ], - [ - "who did the programming on you", - "who_made_you" - ], - [ - "what is the name of the person who created you", - "who_made_you" - ], - [ - "who built you", - "who_made_you" - ], - [ - "how were you made", - "who_made_you" - ], - [ - "how did you come to be you", - "who_made_you" - ], - [ - "please identify the name of the creator of this ai", - "who_made_you" - ], - [ - "this ai was made by what person or team", - "who_made_you" - ], - [ - "who is the creator of this ai", - "who_made_you" - ], - [ - "how was this ai created", - "who_made_you" - ], - [ - "tell me what company programmed you", - "who_made_you" - ], - [ - "the creator of your ai, what is their name", - "who_made_you" - ], - [ - "who made the ai", - "who_made_you" - ], - [ - "what is the name of the person who made the ai", - "who_made_you" - ], - [ - "can you tell me who made the ai", - "who_made_you" - ], - [ - "will you tell me who made the ai", - "who_made_you" - ], - [ - "would you tell me who made the ai", - "who_made_you" - ], - [ - "who makes the ai", - "who_made_you" - ], - [ - "ai who made you", - "who_made_you" - ], - [ - "who made you ai", - "who_made_you" - ], - [ - "can you tell me who created you", - "who_made_you" - ], - [ - "who is responsible for making you", - "who_made_you" - ], - [ - "who were you invented by", - "who_made_you" - ], - [ - "i'd like to know who made you", - "who_made_you" - ], - [ - "who brought you to life", - "who_made_you" - ], - [ - "who made you up", - "who_made_you" - ], - [ - "what company created you", - "who_made_you" - ], - [ - "who gave you life", - "who_made_you" - ], - [ - "what company sponsored you", - "who_made_you" - ], - [ - "which company programmed you", - "who_made_you" - ], - [ - "estimated time to airport from current location, la", - "distance" - ], - [ - "how long to get to the airport in la", - "distance" - ], - [ - "how early should i leave to the airport in la", - "distance" - ], - [ - "does it take a long time to get to the airport in la", - "distance" - ], - [ - "is the ride short to the airport in la", - "distance" - ], - [ - "how long's it take to get to the panera downtown", - "distance" - ], - [ - "how long will it take to drive to the kroger in westwood", - "distance" - ], - [ - "how long will it take to walk to the safeway in the strip mall", - "distance" - ], - [ - "how long will it take me to get to the mcdonald's in the city", - "distance" - ], - [ - "how long will it take me to drive to the park in west county", - "distance" - ], - [ - "how long does it take to get to spago's in los angeles", - "distance" - ], - [ - "it takes how long to get to the beach in santa barbara", - "distance" - ], - [ - "how long does it take to get to universal studios in los angeles", - "distance" - ], - [ - "how long does it take to get to disneyland in anaheim", - "distance" - ], - [ - "it takes how long to get to mcdonald's in pomona", - "distance" - ], - [ - "if i take the bus, how long will it take to get to dubrovnik", - "distance" - ], - [ - "how much time will riding the bus to downtown take", - "distance" - ], - [ - "what's my eta on the bus ride to church", - "distance" - ], - [ - "how long will it take the bus to get to stop 23", - "distance" - ], - [ - "how long before i get to dallas , in time, not miles", - "distance" - ], - [ - "what is the distance to austin city limits from my hotel , the holiday inn at austin", - "distance" - ], - [ - "how far is the airport in dallas from my current location", - "distance" - ], - [ - "how far am i from the beach right now", - "distance" - ], - [ - "tell the miles it will take to get to las vegas from san diego", - "distance" - ], - [ - "give me the time left before i get to the hotel", - "distance" - ], - [ - "tell me how far i am from home in time and miles", - "distance" - ], - [ - "how miles does it take to get to red lobster from my current location", - "distance" - ], - [ - "how many miles until i get to the beach", - "distance" - ], - [ - "how far is the grand canyon from my current location in phoenix, az", - "distance" - ], - [ - "how many hours will it take to get to my destination", - "distance" - ], - [ - "how long will it take me to drive to my destination", - "distance" - ], - [ - "how many miles will it take to get to my destination", - "distance" - ], - [ - "where is the closest gas station", - "distance" - ], - [ - "what's the estimated time to get to ppg paints arena in pittsburgh via bus", - "distance" - ], - [ - "how long would it take to get to times square by bus", - "distance" - ], - [ - "how long would a bus to the empire state building take", - "distance" - ], - [ - "how long can i expect a bus ride to the liberty bell to take", - "distance" - ], - [ - "if i'm trying to get to heinz field, how long would it take by bus", - "distance" - ], - [ - "please let me know how long it'll be until i reach the sky harbor airport", - "distance" - ], - [ - "i want to know how long it is from here to the sky harbor airport", - "distance" - ], - [ - "will it be long to get to the sky harbor airport", - "distance" - ], - [ - "how long does it take to get to the sky harbor airport", - "distance" - ], - [ - "how long does it take until i reach the sky harbor airport", - "distance" - ], - [ - "approximately how long does it take to get to the resort in miami", - "distance" - ], - [ - "about how much time will it take to get to the laundry in this area", - "distance" - ], - [ - "approximately how much time will it take to get to tod's in minutes", - "distance" - ], - [ - "how long does it take to get to the park in detroit", - "distance" - ], - [ - "how long does it take to get to the airport in dallas", - "distance" - ], - [ - "how long does it take to get to outback in atlanta", - "distance" - ], - [ - "how long does it take to get to applebees in new york", - "distance" - ], - [ - "how long does it take to get to the mall in las vegas", - "distance" - ], - [ - "so to go to brooklyn, it would take me how long again", - "distance" - ], - [ - "if i take this bus, how long until i get to brooklyn", - "distance" - ], - [ - "from here, i take this bus to go to brooklyn and how long is the commute", - "distance" - ], - [ - "does it take 5 hrs to get to brooklyn by bus", - "distance" - ], - [ - "usually, how long does is the commute to brooklyn by bus", - "distance" - ], - [ - "what's the eta for grandma's house", - "distance" - ], - [ - "what is the average time to get to walmart in mays landing", - "distance" - ], - [ - "how long does it take to get to applebees in nj", - "distance" - ], - [ - "how long until i reach my destination", - "distance" - ], - [ - "i need a time update on the applebees trip", - "distance" - ], - [ - "i want to know the time to get to td bank in toms river", - "distance" - ], - [ - "what time will we arrive at the bank", - "distance" - ], - [ - "how fast can i get to target in trenton", - "distance" - ], - [ - "how long is the ride to phoenix", - "distance" - ], - [ - "how long will it take to get to outback in phoenix", - "distance" - ], - [ - "how long will it take to get to phoenix", - "distance" - ], - [ - "how long does it take to get to phoenix by bus", - "distance" - ], - [ - "how long does it take to get to dallas by bus", - "distance" - ], - [ - "how long will it take me to get to phoenix", - "distance" - ], - [ - "how long is it gonna take to get to red robin in avondale", - "distance" - ], - [ - "how long does it take to get to red robin on phoenix", - "distance" - ], - [ - "how long does it take to get to virginia by bus", - "distance" - ], - [ - "what is the time frame to get to phoenix", - "distance" - ], - [ - "how long does it take to get to houston by bus", - "distance" - ], - [ - "how long will it take me to get to red robin in glendale", - "distance" - ], - [ - "what is the length of time it takes to get to phoenix", - "distance" - ], - [ - "how long will it take for me to get to red robin in san diego", - "distance" - ], - [ - "how long does it take to get to orlando by bus", - "distance" - ], - [ - "how long will a bus ride take if i'm going to the capitol building", - "distance" - ], - [ - "if i go by bus, how long will it take to get to the airport", - "distance" - ], - [ - "how long is a bus ride to the library", - "distance" - ], - [ - "what amount of time would it take me to reach the university by bus", - "distance" - ], - [ - "how long will it take to reach central park by bus", - "distance" - ], - [ - "how much time does it take to get to levi stadium from san jose airport", - "distance" - ], - [ - "how long will it take to get to golden gate bridge from pier 39", - "distance" - ], - [ - "how long is the drive from sfo to fisherman's wharf", - "distance" - ], - [ - "how long will it take to get to long beach terminal from long beach airport", - "distance" - ], - [ - "how long will it take to get from galleria mall to state capitol", - "distance" - ], - [ - "by bus, how long would it take to get to detroit", - "distance" - ], - [ - "utilizing an automobile known as a bus, how long will it take to get to detroit", - "distance" - ], - [ - "what is the time that it will take to arrive at detroit", - "distance" - ], - [ - "how much time will pass between the start and end of our sojourn by bus to detroit", - "distance" - ], - [ - "what amount of time will pass in order for a person at our location to take bus to detroit", - "distance" - ], - [ - "how long will it take to reach my doctors office", - "distance" - ], - [ - "how long to reach my doctors office", - "distance" - ], - [ - "how much time to reach doctors office", - "distance" - ], - [ - "time taken to reach doctors office", - "distance" - ], - [ - "time taken from home to doctors office", - "distance" - ], - [ - "if i leave now, how long will it take me to drive to cape hatteras", - "distance" - ], - [ - "you refer to me as what", - "user_name" - ], - [ - "by what name do you refer to me", - "user_name" - ], - [ - "what name do you use when addressing me", - "user_name" - ], - [ - "is there a name that you call me", - "user_name" - ], - [ - "how do you usually refer to me", - "user_name" - ], - [ - "what is the name you call me saved as", - "user_name" - ], - [ - "regarding my name, whats it saved as", - "user_name" - ], - [ - "what name do you have saved for me", - "user_name" - ], - [ - "whats my name saved under", - "user_name" - ], - [ - "what is my first name saved as", - "user_name" - ], - [ - "do you know my name", - "user_name" - ], - [ - "say my name if you know it", - "user_name" - ], - [ - "can you guess my name", - "user_name" - ], - [ - "i want you to guess my name", - "user_name" - ], - [ - "by what name people call me", - "user_name" - ], - [ - "do you remember my name", - "user_name" - ], - [ - "say what you think my name is", - "user_name" - ], - [ - "show me what you think my name is", - "user_name" - ], - [ - "tell me what you think my name is", - "user_name" - ], - [ - "what can you call me", - "user_name" - ], - [ - "what would you like to call me", - "user_name" - ], - [ - "what would i be referred to as", - "user_name" - ], - [ - "what would you like to refer to me as", - "user_name" - ], - [ - "what do you think you will refer to me as", - "user_name" - ], - [ - "what will you call me", - "user_name" - ], - [ - "what will you refer to me as", - "user_name" - ], - [ - "what are you going to refer to me as", - "user_name" - ], - [ - "you saved my name how", - "user_name" - ], - [ - "in what format did you save my name", - "user_name" - ], - [ - "you wrote what for my name", - "user_name" - ], - [ - "what did ya save my name as", - "user_name" - ], - [ - "how did you save my name", - "user_name" - ], - [ - "what's my name in your system", - "user_name" - ], - [ - "how is my name listed", - "user_name" - ], - [ - "the name you have for me is what", - "user_name" - ], - [ - "what name am i under", - "user_name" - ], - [ - "call me by my name", - "user_name" - ], - [ - "tell me my designation", - "user_name" - ], - [ - "by what nym do you think of me", - "user_name" - ], - [ - "how do you say my name", - "user_name" - ], - [ - "what do you know me as", - "user_name" - ], - [ - "what do you say for my name", - "user_name" - ], - [ - "what's my name huh", - "user_name" - ], - [ - "please tell me the name you use for me", - "user_name" - ], - [ - "what name do you use to talk about me", - "user_name" - ], - [ - "how do you reference me", - "user_name" - ], - [ - "who do you think i am", - "user_name" - ], - [ - "can you tell me what you refer to me as", - "user_name" - ], - [ - "what am i called by you", - "user_name" - ], - [ - "what is my name saved as in your system", - "user_name" - ], - [ - "do you have any idea what my name is", - "user_name" - ], - [ - "can you tell me what my name is", - "user_name" - ], - [ - "what is the name you associate with me", - "user_name" - ], - [ - "what name do you have listed for me", - "user_name" - ], - [ - "what is the name you have listed for my identity", - "user_name" - ], - [ - "what do you refer to me as", - "user_name" - ], - [ - "what name do you know me by", - "user_name" - ], - [ - "how do you address me", - "user_name" - ], - [ - "tell me what you believe my name to be", - "user_name" - ], - [ - "what am i known as to you", - "user_name" - ], - [ - "what do you think i am called", - "user_name" - ], - [ - "tell me your guess of what my name is", - "user_name" - ], - [ - "can you tell me what you call me", - "user_name" - ], - [ - "what do you have my name saved under", - "user_name" - ], - [ - "what's my name saved under", - "user_name" - ], - [ - "what name do you call me", - "user_name" - ], - [ - "what is my name saved under", - "user_name" - ], - [ - "what is the name that you have for me, please", - "user_name" - ], - [ - "what is the name that you have for me", - "user_name" - ], - [ - "what name do you call me by", - "user_name" - ], - [ - "what is your name for me, please", - "user_name" - ], - [ - "what do you have me saved under", - "user_name" - ], - [ - "what's the name that you have for me, please", - "user_name" - ], - [ - "what is my name saved as", - "user_name" - ], - [ - "what name do you refer to me as", - "user_name" - ], - [ - "what might my name be", - "user_name" - ], - [ - "can you tell me my name", - "user_name" - ], - [ - "if you were smart, would you know my name", - "user_name" - ], - [ - "do you call me a certain name", - "user_name" - ], - [ - "do i have a name to you", - "user_name" - ], - [ - "what is your name for me", - "user_name" - ], - [ - "i want you to let me know what names you have for me", - "user_name" - ], - [ - "could you let me know what names you have for me", - "user_name" - ], - [ - "would you tell me what names you have for me", - "user_name" - ], - [ - "let me know what names you have for me", - "user_name" - ], - [ - "i need to know what names you have for me", - "user_name" - ], - [ - "do you my name", - "user_name" - ], - [ - "do you know how to refer to me", - "user_name" - ], - [ - "can you tell me what your refer to me as", - "user_name" - ], - [ - "my name is what", - "user_name" - ], - [ - "do you know what you call me", - "user_name" - ], - [ - "what is the name you call me", - "user_name" - ], - [ - "what name is mine", - "user_name" - ], - [ - "you have what name for me", - "user_name" - ], - [ - "so what is my name saved as", - "user_name" - ], - [ - "so what is my current name saved as", - "user_name" - ], - [ - "i wanna know what do you call me", - "user_name" - ], - [ - "let me know the name you have for me", - "user_name" - ], - [ - "so what name do you have for me", - "user_name" - ], - [ - "let me know what do you call me", - "user_name" - ], - [ - "timezone of cuba", - "timezone" - ], - [ - "what is the time zone of france", - "timezone" - ], - [ - "french time zone", - "timezone" - ], - [ - "which timezone is colombia", - "timezone" - ], - [ - "time zone in france", - "timezone" - ], - [ - "do you know what timezone italy is in", - "timezone" - ], - [ - "italy's timezone is what", - "timezone" - ], - [ - "the timezone of italy is what", - "timezone" - ], - [ - "italy is in what timezone", - "timezone" - ], - [ - "for italy what timezone is it in", - "timezone" - ], - [ - "i wanna know what timezone spain is in", - "timezone" - ], - [ - "what timezone is japan in", - "timezone" - ], - [ - "what timezone is philadelphia in", - "timezone" - ], - [ - "what timezone is china in", - "timezone" - ], - [ - "what timezone is scotland in", - "timezone" - ], - [ - "i need to know what timezone ireland is in", - "timezone" - ], - [ - "what timezone is sweden in", - "timezone" - ], - [ - "what timezone is phoenix in", - "timezone" - ], - [ - "what timezone is dallas in", - "timezone" - ], - [ - "tell me what timezone finland is in", - "timezone" - ], - [ - "what timezone is canada in", - "timezone" - ], - [ - "tell me the timezone that spain is in", - "timezone" - ], - [ - "what timezone is detroit in", - "timezone" - ], - [ - "what timezone is russia in", - "timezone" - ], - [ - "what's the time zone in miami", - "timezone" - ], - [ - "time zone in miami is what like", - "timezone" - ], - [ - "how is miami time zone like", - "timezone" - ], - [ - "time zone in miami is like what", - "timezone" - ], - [ - "miami time zone is what", - "timezone" - ], - [ - "what's the current timezone in barcelona", - "timezone" - ], - [ - "can you tell me the timezone in san francisco", - "timezone" - ], - [ - "in paris, what's the timezone", - "timezone" - ], - [ - "what's the timezone for london", - "timezone" - ], - [ - "what timezone does lisbon have", - "timezone" - ], - [ - "in what timezone is nigeria", - "timezone" - ], - [ - "which timezone is england in", - "timezone" - ], - [ - "can you tell me which timezone is cambodia in", - "timezone" - ], - [ - "in which timezone is jamaica", - "timezone" - ], - [ - "what timezone is viet nam in", - "timezone" - ], - [ - "what's the timezone for brasilia", - "timezone" - ], - [ - "which timezone is buenos aires in", - "timezone" - ], - [ - "what timezone is lima in", - "timezone" - ], - [ - "what's chicago's time zone", - "timezone" - ], - [ - "what is the timezone for quito", - "timezone" - ], - [ - "what timezone is chicago in", - "timezone" - ], - [ - "what timezone is boise in", - "timezone" - ], - [ - "what timezone is miami in", - "timezone" - ], - [ - "whats the timezone for modesto", - "timezone" - ], - [ - "what timezone is sacromento in", - "timezone" - ], - [ - "whats the timezone for san fransico", - "timezone" - ], - [ - "if i\u2019m in japan, what time zone am i in", - "timezone" - ], - [ - "tell me what time zone portugal uses", - "timezone" - ], - [ - "nigeria is in which time zone", - "timezone" - ], - [ - "the time zone for brazil is what", - "timezone" - ], - [ - "what time zone is ireland in", - "timezone" - ], - [ - "what's the timezone for boston", - "timezone" - ], - [ - "do you know the timezone for dublin", - "timezone" - ], - [ - "what's the timezone for san diego", - "timezone" - ], - [ - "what timezone is london is", - "timezone" - ], - [ - "what timezone is melbourne in", - "timezone" - ], - [ - "what timezone would tampa be in", - "timezone" - ], - [ - "what timezone do they use in la", - "timezone" - ], - [ - "can you tell me denver's timezone", - "timezone" - ], - [ - "what timezone does bangor have", - "timezone" - ], - [ - "does phoenix have a different timezone", - "timezone" - ], - [ - "do you know the timezone for phoenix", - "timezone" - ], - [ - "what timezone would i be in if i traveled to moscow", - "timezone" - ], - [ - "if you're in melbourne, what timezone are you in", - "timezone" - ], - [ - "what timezone is milan in", - "timezone" - ], - [ - "detroit is in what timezone", - "timezone" - ], - [ - "can you tell me what timezone chicago is in", - "timezone" - ], - [ - "doy ou know what timezone chicago is in", - "timezone" - ], - [ - "could you tell me what timezone reno is in", - "timezone" - ], - [ - "reno's timezone is what", - "timezone" - ], - [ - "if i change my timezone to reno, what would it be", - "timezone" - ], - [ - "do you know what the timezone is in reno", - "timezone" - ], - [ - "if i am in reno, what would the timezone be", - "timezone" - ], - [ - "find the applicable timezone for austin", - "timezone" - ], - [ - "what time zone are we currently in", - "timezone" - ], - [ - "please search for portland's timezone", - "timezone" - ], - [ - "in what timezone does baton rouge fall", - "timezone" - ], - [ - "can you tell me the timezone that hartford is in", - "timezone" - ], - [ - "i need to know what timezone sedona is in", - "timezone" - ], - [ - "can you tell my what france's timezone is", - "timezone" - ], - [ - "i would like information on france's timezone", - "timezone" - ], - [ - "i want to know france's timezone", - "timezone" - ], - [ - "which timezone is france in", - "timezone" - ], - [ - "what timezone is france in", - "timezone" - ], - [ - "what timezone is new york in", - "timezone" - ], - [ - "what timezone is reno in", - "timezone" - ], - [ - "what timezone is vegas in", - "timezone" - ], - [ - "what timezone is los angeles in", - "timezone" - ], - [ - "is austin in the central timezone", - "timezone" - ], - [ - "does the central timezone include austin", - "timezone" - ], - [ - "what is the timezone in las vegas", - "timezone" - ], - [ - "which timezone is las vegas in", - "timezone" - ], - [ - "las vegas is in what timezone", - "timezone" - ], - [ - "tell me the timezone las vegas is in", - "timezone" - ], - [ - "las vegas timezone please", - "timezone" - ], - [ - "what timezone is boston in", - "timezone" - ], - [ - "go past this song", - "next_song" - ], - [ - "put on the next song", - "next_song" - ], - [ - "please play the next song", - "next_song" - ], - [ - "go forward to the next song on the playlist", - "next_song" - ], - [ - "change the song to the next one", - "next_song" - ], - [ - "go to the next song on the playlist", - "next_song" - ], - [ - "go to my next song", - "next_song" - ], - [ - "skip this song", - "next_song" - ], - [ - "can you skip this song", - "next_song" - ], - [ - "pass this song", - "next_song" - ], - [ - "i want to hear the very next song on this playlist", - "next_song" - ], - [ - "i would like to hear the next song on this playlist", - "next_song" - ], - [ - "skip this song and play the next", - "next_song" - ], - [ - "play the next hit", - "next_song" - ], - [ - "remember to play the next number on this particular playlist", - "next_song" - ], - [ - "i would like to hear the next tune on this particular playlist", - "next_song" - ], - [ - "please put on the next number on this playlist", - "next_song" - ], - [ - "can you move to the next song", - "next_song" - ], - [ - "lets pause this song and move onto the next", - "next_song" - ], - [ - "lets pass on this song and do the next", - "next_song" - ], - [ - "play the next musical number", - "next_song" - ], - [ - "play the next tune", - "next_song" - ], - [ - "lets just play the next song please", - "next_song" - ], - [ - "hop to the next one", - "next_song" - ], - [ - "go to next song", - "next_song" - ], - [ - "play the next track", - "next_song" - ], - [ - "skip over this song", - "next_song" - ], - [ - "play the next song instead", - "next_song" - ], - [ - "play the song coming on next", - "next_song" - ], - [ - "play the next song queued up", - "next_song" - ], - [ - "move to the next song", - "next_song" - ], - [ - "what is the next song to be played", - "next_song" - ], - [ - "can we play the next track", - "next_song" - ], - [ - "can we stop this song and play the next one", - "next_song" - ], - [ - "can we skip this song", - "next_song" - ], - [ - "skip this and go to the next song", - "next_song" - ], - [ - "skip and play next song", - "next_song" - ], - [ - "skip and next", - "next_song" - ], - [ - "go to the next song and skip", - "next_song" - ], - [ - "go to the next song now", - "next_song" - ], - [ - "play one song forward", - "next_song" - ], - [ - "i want to hear the next song", - "next_song" - ], - [ - "go forward one song", - "next_song" - ], - [ - "the next song should be played", - "next_song" - ], - [ - "what's next on the list", - "next_song" - ], - [ - "play the next song", - "next_song" - ], - [ - "next song on the list, please", - "next_song" - ], - [ - "you must skip this song and play the next one", - "next_song" - ], - [ - "go ahead and skip this song and play the next one", - "next_song" - ], - [ - "you need to skip this song and play the next one", - "next_song" - ], - [ - "go ahead and play the next song on this playlist", - "next_song" - ], - [ - "go passed the song now", - "next_song" - ], - [ - "will you play the next song on this playlist", - "next_song" - ], - [ - "i need you to play the next song on this playlist", - "next_song" - ], - [ - "please skip this song and play the next one", - "next_song" - ], - [ - "please change the song now", - "next_song" - ], - [ - "please play the next song on this playlist", - "next_song" - ], - [ - "i want you to play the next song on this playlist", - "next_song" - ], - [ - "i need you to skip this song and play the next one", - "next_song" - ], - [ - "i don't want this song, move to the next", - "next_song" - ], - [ - "skip to the next song", - "next_song" - ], - [ - "play next song using this playlist", - "next_song" - ], - [ - "go to next song, please", - "next_song" - ], - [ - "forget this song and go to the next", - "next_song" - ], - [ - "move on to the next song", - "next_song" - ], - [ - "using this playlist, play next song", - "next_song" - ], - [ - "jump to the next song on this playlist", - "next_song" - ], - [ - "skip to the next song please", - "next_song" - ], - [ - "please go to the song after this one", - "next_song" - ], - [ - "please jump to the song that follows this one", - "next_song" - ], - [ - "let's play the next song now", - "next_song" - ], - [ - "can you fast forward to the next song", - "next_song" - ], - [ - "continue to next song on the playlist", - "next_song" - ], - [ - "take me to the next song on this playlist", - "next_song" - ], - [ - "find the next song on this playlist", - "next_song" - ], - [ - "proceed to the next song on this playlist", - "next_song" - ], - [ - "listen to next song on playlist", - "next_song" - ], - [ - "i want to listen to another song", - "next_song" - ], - [ - "go to the next tune", - "next_song" - ], - [ - "beginning playing the next tune", - "next_song" - ], - [ - "start playing the next track", - "next_song" - ], - [ - "advance to the next song", - "next_song" - ], - [ - "go forward to the next track", - "next_song" - ], - [ - "give me the next song", - "next_song" - ], - [ - "skip this song and play the next one", - "next_song" - ], - [ - "play the song after this", - "next_song" - ], - [ - "switch to the next song on this playlist please", - "next_song" - ], - [ - "change the song to the next one on this playlist", - "next_song" - ], - [ - "i want to listen to the next song on this playlist instead", - "next_song" - ], - [ - "stop the current song and play the next one on this playlist", - "next_song" - ], - [ - "could you skip to the next song on this playlist, please", - "next_song" - ], - [ - "could you play the next song on this playlist, please", - "next_song" - ], - [ - "can you play the next song on this playlist, please", - "next_song" - ], - [ - "could you play the next song on this playlist", - "next_song" - ], - [ - "could you skip to the next song on this playlist", - "next_song" - ], - [ - "play next on the playlist", - "next_song" - ], - [ - "skip to next song", - "next_song" - ], - [ - "next song play", - "next_song" - ], - [ - "stop this song and go to the next one", - "next_song" - ], - [ - "play the next song on this list", - "next_song" - ], - [ - "before i make my mastercard payment can you tell me what i've recently charged on it", - "transactions" - ], - [ - "please tell me all of my recent transactions", - "transactions" - ], - [ - "i want to pay my amazon credit card but i need to know the last few transactions", - "transactions" - ], - [ - "before i pay my walmart credit card did i make any purchases using it recently", - "transactions" - ], - [ - "i need to know all the recent transactions i've made", - "transactions" - ], - [ - "please tell me all the transactions i've made recently", - "transactions" - ], - [ - "what are the last ten transactions i've made", - "transactions" - ], - [ - "before i pay my capital one, what are the most recent transactions i've made", - "transactions" - ], - [ - "tell me the most recent charges on my chase credit card before i pay the bill", - "transactions" - ], - [ - "read off to me the last five transactions i've made", - "transactions" - ], - [ - "what transactions have i made on liquor in the past month", - "transactions" - ], - [ - "i'd like to see last week's atm transactions", - "transactions" - ], - [ - "show me the transactions from costco yesterday", - "transactions" - ], - [ - "i need to know something about my latest transaction", - "transactions" - ], - [ - "can you check on a transaction for me", - "transactions" - ], - [ - "i need some information on a recent transaction", - "transactions" - ], - [ - "i need a recent transaction looked into", - "transactions" - ], - [ - "can you let me know my latest transactions", - "transactions" - ], - [ - "what was the last thing i purchased", - "transactions" - ], - [ - "what did i buy last", - "transactions" - ], - [ - "how much did my last purchase cost", - "transactions" - ], - [ - "how expensive was my most recent transaction", - "transactions" - ], - [ - "when was my most recent transaction", - "transactions" - ], - [ - "show me the transactions made on my business card for supplies last quarter", - "transactions" - ], - [ - "may i get all of the food transactions that were made last month", - "transactions" - ], - [ - "can you show me the transactions that were made last night at the restaurant", - "transactions" - ], - [ - "what transactions did i make yesterday at the flea market", - "transactions" - ], - [ - "please show me what transactions i made on the first of this month", - "transactions" - ], - [ - "please tell me my in-person transactions for the last three days using my debit card", - "transactions" - ], - [ - "please give me my last ten debit card transactions in the month of december", - "transactions" - ], - [ - "what were my last five transactions on my visa card", - "transactions" - ], - [ - "i would like to hear all transactions made on my amex for the last ten days", - "transactions" - ], - [ - "can you list all of my online transactions for the month of january", - "transactions" - ], - [ - "show me my transactions on groceries", - "transactions" - ], - [ - "show me my transactions on tacobell", - "transactions" - ], - [ - "show me my transactions on make up at sephora", - "transactions" - ], - [ - "show me my transactions on mcdonalds", - "transactions" - ], - [ - "show me my transactions on clothes at macys", - "transactions" - ], - [ - "let me see the list of tranaction on my discovery credit card", - "transactions" - ], - [ - "let me know the list of transaction on my first hawaiian bank", - "transactions" - ], - [ - "i want to see the list of transaction on my bank of hawaii", - "transactions" - ], - [ - "list me my recent transaction", - "transactions" - ], - [ - "what are my recent transaction", - "transactions" - ], - [ - "please show me my recent transaction", - "transactions" - ], - [ - "i want to see my recent transaction", - "transactions" - ], - [ - "let me check my transaction for first bank card", - "transactions" - ], - [ - "let me check my transaction on my citi card", - "transactions" - ], - [ - "show me my recent transactoin", - "transactions" - ], - [ - "on my card what have been my recent purchases", - "transactions" - ], - [ - "pull up my recent transactions on my mastercard", - "transactions" - ], - [ - "on the card can you give me the last transactions", - "transactions" - ], - [ - "whats my recent transactions on my card", - "transactions" - ], - [ - "on my card what all are my latest transactions", - "transactions" - ], - [ - "show my transaction statement", - "transactions" - ], - [ - "retrieve my recent transactions", - "transactions" - ], - [ - "view my transactions for the last week", - "transactions" - ], - [ - "my transaction history", - "transactions" - ], - [ - "may transactions for last 2 days", - "transactions" - ], - [ - "what was my last transaction", - "transactions" - ], - [ - "show me recent transactions", - "transactions" - ], - [ - "what transactions happened in the last week", - "transactions" - ], - [ - "show me the last month of transactions", - "transactions" - ], - [ - "show me the last five transactions", - "transactions" - ], - [ - "what's the last transaction i made yesterday", - "transactions" - ], - [ - "show me yesterday's last transaction", - "transactions" - ], - [ - "open yesterday's last payment", - "transactions" - ], - [ - "show me last transaction", - "transactions" - ], - [ - "show me transactions related to travel", - "transactions" - ], - [ - "help me get access to my recent transaction history", - "transactions" - ], - [ - "i need to see my shopping transactions", - "transactions" - ], - [ - "get me access to a list of my recent transactions", - "transactions" - ], - [ - "i would like to take a look at my transaction history", - "transactions" - ], - [ - "can you pull up my most recent transactions", - "transactions" - ], - [ - "i want to see my entertainment transactions", - "transactions" - ], - [ - "where can i find my recent transaction history", - "transactions" - ], - [ - "can you show me transactions related to utilities", - "transactions" - ], - [ - "pull up my grocery transactions", - "transactions" - ], - [ - "what were my purchases on visa card last month", - "transactions" - ], - [ - "i spent what dollar amount last month on mastercard", - "transactions" - ], - [ - "what was the amount that i spent on fidelity visa last month", - "transactions" - ], - [ - "what did i spend at target on my barclays card last month", - "transactions" - ], - [ - "what amount did i spend for food on chase visa on current bill", - "transactions" - ], - [ - "i need to know last months transactions", - "transactions" - ], - [ - "i need to know the transactions i made on the 10th", - "transactions" - ], - [ - "i would like to see the transactions i made last week", - "transactions" - ], - [ - "can i see my transactions on the 7th", - "transactions" - ], - [ - "can i get my transactions for the date of the 23rd", - "transactions" - ], - [ - "show me the transaction on burger king", - "transactions" - ], - [ - "show me the transaction on macys", - "transactions" - ], - [ - "show me the transaction on mcdonald", - "transactions" - ], - [ - "show me the transaction on the food", - "transactions" - ], - [ - "show me the transaction on my car", - "transactions" - ], - [ - "bring up all purchases from target", - "transactions" - ], - [ - "show me my transactions within the past week", - "transactions" - ], - [ - "can i see my transactions from yesterday", - "transactions" - ], - [ - "show me all gas purchases within the last month", - "transactions" - ], - [ - "can you list all recent transactions", - "transactions" - ], - [ - "bring up my most recent purchases", - "transactions" - ], - [ - "i need to see all visa purchases for march", - "transactions" - ], - [ - "looking at january, show all wine purchases", - "transactions" - ], - [ - "can you suggest a restaurant for me to eat tonight", - "restaurant_suggestion" - ], - [ - "tell me where to go since i want to eat out tonight", - "restaurant_suggestion" - ], - [ - "i'm craving for italian food, where should i go", - "restaurant_suggestion" - ], - [ - "suggest a restaurant for me to eat tonight, please", - "restaurant_suggestion" - ], - [ - "i'm not going to cook today, can you suggest a restaurant", - "restaurant_suggestion" - ], - [ - "what restaurants are pet friendly near here", - "restaurant_suggestion" - ], - [ - "what are the best restaurants", - "restaurant_suggestion" - ], - [ - "what decent restaurants around here are italian", - "restaurant_suggestion" - ], - [ - "do you know any good restaurants good for kids", - "restaurant_suggestion" - ], - [ - "any good pizza restaurants around here", - "restaurant_suggestion" - ], - [ - "where should i go to eat tonight", - "restaurant_suggestion" - ], - [ - "where should i eat tonight", - "restaurant_suggestion" - ], - [ - "i want to eat out, where should i go", - "restaurant_suggestion" - ], - [ - "give me some good restaurants", - "restaurant_suggestion" - ], - [ - "i'm hungry, where should i go", - "restaurant_suggestion" - ], - [ - "name a good restaurant near me", - "restaurant_suggestion" - ], - [ - "where should i go for dinner", - "restaurant_suggestion" - ], - [ - "its date night and we cant decide where to go help", - "restaurant_suggestion" - ], - [ - "where do people go to eat in this town", - "restaurant_suggestion" - ], - [ - "i am hungry and need a restaurant suggestion", - "restaurant_suggestion" - ], - [ - "can you tell me the best place for cajun shrimp in tampa", - "restaurant_suggestion" - ], - [ - "what's a good place to eat chinese in san francisco", - "restaurant_suggestion" - ], - [ - "what's a highly rated place for steak in omaha", - "restaurant_suggestion" - ], - [ - "where can i pick up a good burger near where i am", - "restaurant_suggestion" - ], - [ - "what's a good place to go to for food around here", - "restaurant_suggestion" - ], - [ - "are there any decent places to get seafood in seattle", - "restaurant_suggestion" - ], - [ - "what's the best place for some thai in new york city", - "restaurant_suggestion" - ], - [ - "i'm famished so give me some places to eat!", - "restaurant_suggestion" - ], - [ - "any ideas on a good place to eat out", - "restaurant_suggestion" - ], - [ - "can you recommend any restaurants", - "restaurant_suggestion" - ], - [ - "i'm in the mood for italian, are there any good places around", - "restaurant_suggestion" - ], - [ - "please list nearby restaurants with 4 or more star reviews", - "restaurant_suggestion" - ], - [ - "where's a good place to get some grub", - "restaurant_suggestion" - ], - [ - "where would you eat italian in chicago", - "restaurant_suggestion" - ], - [ - "can i get good tacos anywhere in austin", - "restaurant_suggestion" - ], - [ - "is there a good fish place in salem", - "restaurant_suggestion" - ], - [ - "what are good places for a burrito in albuquerque", - "restaurant_suggestion" - ], - [ - "where should i go out for food to", - "restaurant_suggestion" - ], - [ - "can you recommend a decent place in chicago to get pizza", - "restaurant_suggestion" - ], - [ - "do you know of any good restaurants", - "restaurant_suggestion" - ], - [ - "help me find a good sushi spot in chicago", - "restaurant_suggestion" - ], - [ - "can you find me a good restaurant to try eating at", - "restaurant_suggestion" - ], - [ - "i want you to recommend a good local restaurant to me", - "restaurant_suggestion" - ], - [ - "tell me some good mexican restaurants in dallas", - "restaurant_suggestion" - ], - [ - "do you know of any good seafood restaurants in seattle", - "restaurant_suggestion" - ], - [ - "please find me some good thai restaurants in new york city", - "restaurant_suggestion" - ], - [ - "find me a good spot for southern comfort food in los angeles", - "restaurant_suggestion" - ], - [ - "are there any good restaurants in nyc that serve barbecue", - "restaurant_suggestion" - ], - [ - "i want to go out to eat but have no idea where to go, do you know of any places", - "restaurant_suggestion" - ], - [ - "i want recommendations for good sushi spots in los angeles", - "restaurant_suggestion" - ], - [ - "do you know of any good mexican restaurants in seattle", - "restaurant_suggestion" - ], - [ - "does boise have any good indian restaurants", - "restaurant_suggestion" - ], - [ - "can you suggest some quality chinese restaurants in oklahoma city", - "restaurant_suggestion" - ], - [ - "help me pick a nice restaurant to dine at", - "restaurant_suggestion" - ], - [ - "what mexican restaurant within 5 miles has the best reviews", - "restaurant_suggestion" - ], - [ - "show me 5-star dining establishments in nashville", - "restaurant_suggestion" - ], - [ - "are there any good chinese restaurants open right now", - "restaurant_suggestion" - ], - [ - "what are the best family restaurants in charlottesville", - "restaurant_suggestion" - ], - [ - "in boston, what are the best pizza places", - "restaurant_suggestion" - ], - [ - "are there some good thai restaurants in san antonio", - "restaurant_suggestion" - ], - [ - "what are the best italian restaurants in chicago", - "restaurant_suggestion" - ], - [ - "where are the good thai restaurants in atlanta", - "restaurant_suggestion" - ], - [ - "recommendations for good thai restaurants in las vegas", - "restaurant_suggestion" - ], - [ - "where should i go for good thai food in las vegas", - "restaurant_suggestion" - ], - [ - "i need suggestions for good thai restaurants in las vegas", - "restaurant_suggestion" - ], - [ - "where are some good thai restaurants in las vegas", - "restaurant_suggestion" - ], - [ - "tell me which restaurants are good for thai food in las vegas", - "restaurant_suggestion" - ], - [ - "can you list off 4 star restaurants", - "restaurant_suggestion" - ], - [ - "what type of restaurants are nearby", - "restaurant_suggestion" - ], - [ - "i need to know what restaurants are near me", - "restaurant_suggestion" - ], - [ - "can you list off different restaurants", - "restaurant_suggestion" - ], - [ - "what are some good places to eat at", - "restaurant_suggestion" - ], - [ - "could you locate me some good places in kentucky that serve sushi", - "restaurant_suggestion" - ], - [ - "does kentucky have any good restaurants that serve sushi", - "restaurant_suggestion" - ], - [ - "can you find me some good places in kentucky that serve sushi", - "restaurant_suggestion" - ], - [ - "what are some good places in kentucky that serve sushi", - "restaurant_suggestion" - ], - [ - "could you direct me to any good places in kentucky that serve sushi", - "restaurant_suggestion" - ], - [ - "find me a new place for dinner", - "restaurant_suggestion" - ], - [ - "can you find a good steakhouse for tonight", - "restaurant_suggestion" - ], - [ - "what's a good restaurant nearby", - "restaurant_suggestion" - ], - [ - "any new restaurants near the mall", - "restaurant_suggestion" - ], - [ - "what's your recommendation for dining out tonight", - "restaurant_suggestion" - ], - [ - "find me an asian restaurant", - "restaurant_suggestion" - ], - [ - "is there a barbecue restaurant around here", - "restaurant_suggestion" - ], - [ - "find an indian restaurant", - "restaurant_suggestion" - ], - [ - "can you recommend an indian restaurant", - "restaurant_suggestion" - ], - [ - "can you find a keto friendly restaurant", - "restaurant_suggestion" - ], - [ - "is there any good place in hawaii for pasta", - "restaurant_suggestion" - ], - [ - "is there any good place in hawaii kai that serve local food", - "restaurant_suggestion" - ], - [ - "i want sushi, is there any good place in ho chi minh", - "restaurant_suggestion" - ], - [ - "is there any good place for vietnamese food on the east side of the island", - "restaurant_suggestion" - ], - [ - "is there any good place for mexican food in hawaii", - "restaurant_suggestion" - ], - [ - "what are some good sushi restaurants in reno", - "restaurant_suggestion" - ], - [ - "which restaurants in reno are good for sushi", - "restaurant_suggestion" - ], - [ - "what are the best sushi restaurants in reno", - "restaurant_suggestion" - ], - [ - "what are good restaurants in reno that serve sushi", - "restaurant_suggestion" - ], - [ - "are there any sushi restaurants in reno that have good reviews", - "restaurant_suggestion" - ], - [ - "list me some good vietnamese restaurants in new york city", - "restaurant_suggestion" - ], - [ - "suggest some restaurants", - "restaurant_suggestion" - ], - [ - "give me some restaurant suggestions", - "restaurant_suggestion" - ], - [ - "how high are the rewards on my discover card", - "rewards_balance" - ], - [ - "how many rewards do i now have on my hy-vee card", - "rewards_balance" - ], - [ - "what's the current reward amount on my mastercard", - "rewards_balance" - ], - [ - "what's my current reward balance on my amex card", - "rewards_balance" - ], - [ - "what's my visa's current rewards balance", - "rewards_balance" - ], - [ - "how many reward points have stacked up for my amex card", - "rewards_balance" - ], - [ - "how many reward points do i have available to redeem on my visa", - "rewards_balance" - ], - [ - "what's the current reward amount on my visa", - "rewards_balance" - ], - [ - "what's the reward point count on my discover card", - "rewards_balance" - ], - [ - "what is my american express card's rewards balance", - "rewards_balance" - ], - [ - "what is my chase card's rewards balance", - "rewards_balance" - ], - [ - "what is my wells fargo card's rewards balance", - "rewards_balance" - ], - [ - "what is my citigroup card's rewards balance", - "rewards_balance" - ], - [ - "what is my bank of america card's rewards balance", - "rewards_balance" - ], - [ - "how can i see my rewards for my visa card", - "rewards_balance" - ], - [ - "tell me how to check my rewards for my american express card", - "rewards_balance" - ], - [ - "how can i look at rewards for my amex card", - "rewards_balance" - ], - [ - "tell me how to check rewards for my mastercard", - "rewards_balance" - ], - [ - "where are rewards from my visa card visible", - "rewards_balance" - ], - [ - "what is my current reward point total on my visa card", - "rewards_balance" - ], - [ - "how would i be able to check my kohls rewards card", - "rewards_balance" - ], - [ - "i need to know my reward point total looking at my debit card", - "rewards_balance" - ], - [ - "do i have enough points on my starbucks card yet", - "rewards_balance" - ], - [ - "help me check my visa rewards card", - "rewards_balance" - ], - [ - "can i check my gold rewards card online", - "rewards_balance" - ], - [ - "can you tell me how many points i have on my kohls card", - "rewards_balance" - ], - [ - "what is the easiest way to check my bank rewards card", - "rewards_balance" - ], - [ - "is there a better way to check my visa rewards card balance", - "rewards_balance" - ], - [ - "how many points are on my gold card", - "rewards_balance" - ], - [ - "what's the amount of points i have earned with my discover card", - "rewards_balance" - ], - [ - "i wonder how many points i have earned with my bank of america card", - "rewards_balance" - ], - [ - "have i earned a lot of points on my capital one card", - "rewards_balance" - ], - [ - "can you tell me how many points i have to date with my capital one miles card", - "rewards_balance" - ], - [ - "what's the total number of points i earned so far with my chase rewards card", - "rewards_balance" - ], - [ - "how many points have i already accrued on my chase mastercard", - "rewards_balance" - ], - [ - "i would like my total rewards points balance on my bank of america platinum rewards card, please", - "rewards_balance" - ], - [ - "i need to hear how many points i've obtained on my capital one visa", - "rewards_balance" - ], - [ - "how many points did i get on my discover card", - "rewards_balance" - ], - [ - "how many points did my visa earn", - "rewards_balance" - ], - [ - "what points were earned on my mastercard", - "rewards_balance" - ], - [ - "how many points have been earned on my amex", - "rewards_balance" - ], - [ - "how many points did i get on my visa card", - "rewards_balance" - ], - [ - "what's the balance of my reward points on my discover card", - "rewards_balance" - ], - [ - "i need to know my rewards balance on my discover card", - "rewards_balance" - ], - [ - "what's my discover card reward balance", - "rewards_balance" - ], - [ - "what's my rewards balance on my discover", - "rewards_balance" - ], - [ - "what is the reward balance on my discover card", - "rewards_balance" - ], - [ - "how many rewards points do i have for my visa card", - "rewards_balance" - ], - [ - "how many rewards points do i have for my wells fargo card", - "rewards_balance" - ], - [ - "how many rewards points do i have for my amazon card", - "rewards_balance" - ], - [ - "how many rewards points do i have for my chase card", - "rewards_balance" - ], - [ - "how many rewards points do i have for my mastercard", - "rewards_balance" - ], - [ - "what is my points total for my mastercard", - "rewards_balance" - ], - [ - "what's my total point number on my mastercard", - "rewards_balance" - ], - [ - "how many points do i have on my mastercard", - "rewards_balance" - ], - [ - "what is the number of points i earned with my mastercard", - "rewards_balance" - ], - [ - "how many points have i accumulated on my mastercard", - "rewards_balance" - ], - [ - "how can i see my rewards for my chase card", - "rewards_balance" - ], - [ - "where can i find my rewards for my chase card", - "rewards_balance" - ], - [ - "what do i have to do to see my rewards for my chase card", - "rewards_balance" - ], - [ - "how do i see me rewards for my chase card", - "rewards_balance" - ], - [ - "where are my rewards for my chase card", - "rewards_balance" - ], - [ - "what's the point balance on my marriot rewards card", - "rewards_balance" - ], - [ - "how many points do i have in total on my marriot rewards card", - "rewards_balance" - ], - [ - "show me the total up to date points on the marriot rewards card", - "rewards_balance" - ], - [ - "my marriot rewards card has how much for a point total", - "rewards_balance" - ], - [ - "give my my current points on my marriot rewards card", - "rewards_balance" - ], - [ - "can you tell me my starbucks rewards balance", - "rewards_balance" - ], - [ - "can you help me tell what my starbucks rewards balance is", - "rewards_balance" - ], - [ - "what is the remainder of my starbucks rewards balance", - "rewards_balance" - ], - [ - "my starbucks rewards balance is", - "rewards_balance" - ], - [ - "what is the total amount of my starbucks rewards balance", - "rewards_balance" - ], - [ - "i have how many points on my amex right now", - "rewards_balance" - ], - [ - "how many points are on my speedway card right now", - "rewards_balance" - ], - [ - "i have how many tier credits on my caesar's card", - "rewards_balance" - ], - [ - "how many points do i have on my mlife card", - "rewards_balance" - ], - [ - "how many delta miles are on my card right now", - "rewards_balance" - ], - [ - "how many rewards do i have on my chase card", - "rewards_balance" - ], - [ - "how do i find out my rewards balance on my chase card", - "rewards_balance" - ], - [ - "can i check my visa reward balance online", - "rewards_balance" - ], - [ - "when can i receive rewards on my visa card", - "rewards_balance" - ], - [ - "how do i check how many rewards i have on my master card", - "rewards_balance" - ], - [ - "how do i check my rewards for my gold card", - "rewards_balance" - ], - [ - "what rewards does my gold card get", - "rewards_balance" - ], - [ - "where do i find my gold card rewards", - "rewards_balance" - ], - [ - "what is the number of remaining rewards points on my chase card", - "rewards_balance" - ], - [ - "i need to find out the rewards points i have left on my american express card", - "rewards_balance" - ], - [ - "what is the amount of rewards points on my visa card", - "rewards_balance" - ], - [ - "do you know how many rewards points are currently on my discover card", - "rewards_balance" - ], - [ - "does my mastercard have any rewards points remaining", - "rewards_balance" - ], - [ - "put my points up for master card", - "rewards_balance" - ], - [ - "figure out my reward points for discovery card", - "rewards_balance" - ], - [ - "add all of my points for my current discover card", - "rewards_balance" - ], - [ - "calculate my points for visa", - "rewards_balance" - ], - [ - "add up my reward points for master card", - "rewards_balance" - ], - [ - "what the current balance of reward points on my mastercard", - "rewards_balance" - ], - [ - "what's my reward balance on my amex card", - "rewards_balance" - ], - [ - "how do i get my rewards balance on my diner's club card", - "rewards_balance" - ], - [ - "how many reward points does my discover card have", - "rewards_balance" - ], - [ - "tell me how to check rewards on my american express card", - "rewards_balance" - ], - [ - "i want to pay my bill, please", - "pay_bill" - ], - [ - "pay my water bill with my charles schwab account", - "pay_bill" - ], - [ - "i'd like to pay my bill", - "pay_bill" - ], - [ - "pay my internet bill with my discover account", - "pay_bill" - ], - [ - "can you help me pay a bill", - "pay_bill" - ], - [ - "i need to pay my bill", - "pay_bill" - ], - [ - "can i pay a bill", - "pay_bill" - ], - [ - "use my capital one account to pay for my gas bill", - "pay_bill" - ], - [ - "pay my electric bill from my amex account", - "pay_bill" - ], - [ - "i want to pay my house bill", - "pay_bill" - ], - [ - "i want to pay my car bill", - "pay_bill" - ], - [ - "i want to pay my insurance bill", - "pay_bill" - ], - [ - "i want to pay my tax bill", - "pay_bill" - ], - [ - "i need help paying my auto insurance bill", - "pay_bill" - ], - [ - "i need help paying my hoa bill", - "pay_bill" - ], - [ - "i need help paying my tuition bill", - "pay_bill" - ], - [ - "i need help paying my phone bill", - "pay_bill" - ], - [ - "my water bill is due, pay it immediately", - "pay_bill" - ], - [ - "i need to pay my water bill", - "pay_bill" - ], - [ - "please go ahead and make my student loan payment", - "pay_bill" - ], - [ - "go ahead and pay my american express bill now", - "pay_bill" - ], - [ - "i need to pay my electric bill now", - "pay_bill" - ], - [ - "can you assist me in paying my electric bill", - "pay_bill" - ], - [ - "i want to do a payment on my water bill", - "pay_bill" - ], - [ - "pay my mortgage from my checkings accounts", - "pay_bill" - ], - [ - "do a car payment from my savings account", - "pay_bill" - ], - [ - "can you give me a hand paying my water bill", - "pay_bill" - ], - [ - "i want to pay off my student loan", - "pay_bill" - ], - [ - "i need a bit of hand holding getting my trash bill paid", - "pay_bill" - ], - [ - "i need to pay my mortgage", - "pay_bill" - ], - [ - "are you able to help me pay my mortgage", - "pay_bill" - ], - [ - "i want to pay my car payment", - "pay_bill" - ], - [ - "i need to pay this month's tv subscription fee", - "pay_bill" - ], - [ - "will you aid me in paying my insurance premium", - "pay_bill" - ], - [ - "pay a bribe using my money market account", - "pay_bill" - ], - [ - "use my savings account to the pay the rent", - "pay_bill" - ], - [ - "use my checkings account to pay the electric bill", - "pay_bill" - ], - [ - "i'd like to pay my coned bill", - "pay_bill" - ], - [ - "please help with paying my cell phone bill", - "pay_bill" - ], - [ - "i'd like to make a payment on my credit card bill", - "pay_bill" - ], - [ - "i would like to pay my cell phone bill", - "pay_bill" - ], - [ - "please help me pay my cable bill", - "pay_bill" - ], - [ - "please tell me how to pay my gas bill", - "pay_bill" - ], - [ - "i need to get help paying my gas bill", - "pay_bill" - ], - [ - "i need help to pay my electric bill", - "pay_bill" - ], - [ - "can you help me pay my phone bill", - "pay_bill" - ], - [ - "will you take my bill payment", - "pay_bill" - ], - [ - "is it possible to pay my bill", - "pay_bill" - ], - [ - "how can i pay my bill", - "pay_bill" - ], - [ - "can i pay my bill", - "pay_bill" - ], - [ - "use my park bank account to pay my electric bill", - "pay_bill" - ], - [ - "pay my electric bill from my park bank account", - "pay_bill" - ], - [ - "pay my gas bill from my saving account", - "pay_bill" - ], - [ - "pay my cable bill from my facebook account", - "pay_bill" - ], - [ - "pay my cell bill from my deposit account", - "pay_bill" - ], - [ - "pay my electric bill from my paypal account", - "pay_bill" - ], - [ - "pay my water bill from my checking account", - "pay_bill" - ], - [ - "pay my phoe bill with my debit card", - "pay_bill" - ], - [ - "schedule a gas bill payment", - "pay_bill" - ], - [ - "pay the cable bill with my visa card", - "pay_bill" - ], - [ - "pay the red cross the monthly donation", - "pay_bill" - ], - [ - "i want to pay my internet bill", - "pay_bill" - ], - [ - "i want to pay my gas bill", - "pay_bill" - ], - [ - "i want to pay my electric bill", - "pay_bill" - ], - [ - "i want to pay my rent bill", - "pay_bill" - ], - [ - "i want to pay my water bill", - "pay_bill" - ], - [ - "make a payment on the electric bill", - "pay_bill" - ], - [ - "help me pay my electric bill", - "pay_bill" - ], - [ - "pay the electric bill", - "pay_bill" - ], - [ - "pay electric", - "pay_bill" - ], - [ - "please pay electric bill", - "pay_bill" - ], - [ - "i got to pay my cable bill", - "pay_bill" - ], - [ - "i need help paying my store bill", - "pay_bill" - ], - [ - "i wanna pay my cable bill from my checking account", - "pay_bill" - ], - [ - "i need help paying my cable bill", - "pay_bill" - ], - [ - "pay my cable bill from my checking account", - "pay_bill" - ], - [ - "i must pay my cable bill from my checking account", - "pay_bill" - ], - [ - "i gotta pay my cable bill", - "pay_bill" - ], - [ - "i must pay my cable bill", - "pay_bill" - ], - [ - "i wish to pay my cable bill", - "pay_bill" - ], - [ - "i need to pay my cable bill", - "pay_bill" - ], - [ - "i need help paying my rent bill", - "pay_bill" - ], - [ - "i need help paying my water bill", - "pay_bill" - ], - [ - "i really want to pay my cable bill from my checking account", - "pay_bill" - ], - [ - "i need help paying my electric bill", - "pay_bill" - ], - [ - "i need to pay my cable bill from my checking account", - "pay_bill" - ], - [ - "what's the best way to pay my bill", - "pay_bill" - ], - [ - "i'd really like to pay this bill", - "pay_bill" - ], - [ - "can you help me pay this bill", - "pay_bill" - ], - [ - "i am not sure how to pay my phone bill and need assistance", - "pay_bill" - ], - [ - "i need to make a bill payment", - "pay_bill" - ], - [ - "please pay my bill", - "pay_bill" - ], - [ - "can anyone help me pay my car bill", - "pay_bill" - ], - [ - "i want to pay that bill now", - "pay_bill" - ], - [ - "is there anyone available to help pay an internet bill", - "pay_bill" - ], - [ - "i need anyone who can help me pay my electric bill", - "pay_bill" - ], - [ - "help me pay my cable bill", - "pay_bill" - ], - [ - "can you pay the bill now", - "pay_bill" - ], - [ - "i need your help to pay my gas bill", - "pay_bill" - ], - [ - "pay my insurance bill", - "pay_bill" - ], - [ - "how much did i spend at restaurants last week", - "spending_history" - ], - [ - "how much have i spent lately on eating out", - "spending_history" - ], - [ - "what did i spend at the grocery store yesterday", - "spending_history" - ], - [ - "how much money did i spend at starbucks in the last week", - "spending_history" - ], - [ - "what was the total i spent at home depot last month", - "spending_history" - ], - [ - "where did all my money go this month", - "spending_history" - ], - [ - "what have my expenditures been at macys", - "spending_history" - ], - [ - "how much did i spend this week", - "spending_history" - ], - [ - "how much did i spend on christmas gifts in december", - "spending_history" - ], - [ - "how much money did i spend yesterday", - "spending_history" - ], - [ - "what did i spend at bath and body works last month", - "spending_history" - ], - [ - "how much did i spend on lunches last week", - "spending_history" - ], - [ - "what amount did i spend last week", - "spending_history" - ], - [ - "what did i spend my money on last week", - "spending_history" - ], - [ - "how much did i spend on movies last week", - "spending_history" - ], - [ - "have i been spending a lot on groceries lately", - "spending_history" - ], - [ - "have i been spending a lot on shoes lately", - "spending_history" - ], - [ - "have i been spending a lot on food lately", - "spending_history" - ], - [ - "have i been spending a lot on alcohol lately", - "spending_history" - ], - [ - "have i been spending a lot on take out lately", - "spending_history" - ], - [ - "how much have i spent on shoes lately", - "spending_history" - ], - [ - "did i spend a lot on shoes recently", - "spending_history" - ], - [ - "how much have i spent on shoes", - "spending_history" - ], - [ - "have i have been spending a lot of money on shoes", - "spending_history" - ], - [ - "what is the total i spent on shoes recently", - "spending_history" - ], - [ - "what have i spent over the last few days", - "spending_history" - ], - [ - "how much have i spent recently", - "spending_history" - ], - [ - "how much money have i dropped recently", - "spending_history" - ], - [ - "how much money have i spent this month", - "spending_history" - ], - [ - "what's the amount of money i spent yesterday", - "spending_history" - ], - [ - "could you tell me how much i've spent over the past two weeks", - "spending_history" - ], - [ - "how much money have i spent this week", - "spending_history" - ], - [ - "could you tell me how much money i spent last week", - "spending_history" - ], - [ - "please tell me how much i have spent recently", - "spending_history" - ], - [ - "how much did i spend last week", - "spending_history" - ], - [ - "can you tell me my spending history from last week", - "spending_history" - ], - [ - "i want to know how much i spent last week", - "spending_history" - ], - [ - "i want to know my recent spending", - "spending_history" - ], - [ - "how much have i paid for rent in the last 6 months", - "spending_history" - ], - [ - "how much money have i spent on groceries recently", - "spending_history" - ], - [ - "how much did i spend on groceries today", - "spending_history" - ], - [ - "how much have i spent eating out this week", - "spending_history" - ], - [ - "what chunk of my income have i spent on rent this year", - "spending_history" - ], - [ - "what's it been costing me to buy three packs a day", - "spending_history" - ], - [ - "what have car repairs ran me this month", - "spending_history" - ], - [ - "what has gas cost me this week", - "spending_history" - ], - [ - "what did car insurance run me this year", - "spending_history" - ], - [ - "what's the total amount i've spent eating out in the last two weeks", - "spending_history" - ], - [ - "how much have i spent on alcohol recently", - "spending_history" - ], - [ - "how much have i spent on books recently", - "spending_history" - ], - [ - "how much have i spent on food recently", - "spending_history" - ], - [ - "how much have i spent on bills recently", - "spending_history" - ], - [ - "how much have i spent on clothes recently", - "spending_history" - ], - [ - "i need to know my total spending on amazon for november and december 2018", - "spending_history" - ], - [ - "please list my total spending on grocery shopping for the last two months", - "spending_history" - ], - [ - "how much have i spent on starbucks since the beginning of 2019", - "spending_history" - ], - [ - "what is my total spent on dining out for the month of january", - "spending_history" - ], - [ - "what is the total amount that i have spent on the cash app for this month so far", - "spending_history" - ], - [ - "have i spent a lot on food recently", - "spending_history" - ], - [ - "i need to know what i have spent on food recently", - "spending_history" - ], - [ - "can you tell me what i have spent on food recently", - "spending_history" - ], - [ - "what have i spent on food recently", - "spending_history" - ], - [ - "what is the amount i have spent on food recently", - "spending_history" - ], - [ - "how much have i lately spent on eating out", - "spending_history" - ], - [ - "what have i spent lately in child care", - "spending_history" - ], - [ - "how much have i spent lately on food", - "spending_history" - ], - [ - "how much money have i recently spent on entertainment", - "spending_history" - ], - [ - "how much have i paid in medical expenses recently", - "spending_history" - ], - [ - "how much did i spend on gas last week", - "spending_history" - ], - [ - "can you tell me what i spend on gas for the past two weeks", - "spending_history" - ], - [ - "yesterday what did i spend on lunch", - "spending_history" - ], - [ - "i need to know what i spend on utilities for the last year", - "spending_history" - ], - [ - "what did i spend on groceries this month", - "spending_history" - ], - [ - "have i been giving lot of money to food to food lately", - "spending_history" - ], - [ - "how much money did i use to spend on catering five hours ago", - "spending_history" - ], - [ - "how much did i spend on gear two weeks ago", - "spending_history" - ], - [ - "have i been spending a lot on roast beef lately", - "spending_history" - ], - [ - "have i been spending a ton of money on movies lately", - "spending_history" - ], - [ - "how much money did i spend on tent equipment four hours ago", - "spending_history" - ], - [ - "how much did i spend on furniture last week", - "spending_history" - ], - [ - "how much did i spend on petrol 2 days ago", - "spending_history" - ], - [ - "how much money did i spend on food last month", - "spending_history" - ], - [ - "would please let me know how much i spent on food in january", - "spending_history" - ], - [ - "could you check my account and let me know how much i spent on food in january", - "spending_history" - ], - [ - "please check and tell me the amount i spent on food last month", - "spending_history" - ], - [ - "let me know the amount i spent on food last month", - "spending_history" - ], - [ - "i have been spending a lot on food out lately", - "spending_history" - ], - [ - "i have spent a lot on groceries lately", - "spending_history" - ], - [ - "i spent a lot on vacations recently", - "spending_history" - ], - [ - "i have been spending a lot on utility bills lately", - "spending_history" - ], - [ - "i have been spending a lot on insurance lately", - "spending_history" - ], - [ - "did i go out to eat more than usual", - "spending_history" - ], - [ - "have i been spending more money at restaurants", - "spending_history" - ], - [ - "how much did i spend on food", - "spending_history" - ], - [ - "how much do i spend going out to eat", - "spending_history" - ], - [ - "what's my going out to eat tab this month vs last month", - "spending_history" - ], - [ - "how much did i spend shopping for clothes today", - "spending_history" - ], - [ - "how much did i spend the past 3 days", - "spending_history" - ], - [ - "how much did i spend on gas the past month", - "spending_history" - ], - [ - "how much have i spent on food in the past week", - "spending_history" - ], - [ - "have they approved my vacation request yet", - "pto_request_status" - ], - [ - "give me the status of my vacation request", - "pto_request_status" - ], - [ - "am i going to be able to get my vacation request", - "pto_request_status" - ], - [ - "i want to check on my vacation request", - "pto_request_status" - ], - [ - "is my vacation approved yet", - "pto_request_status" - ], - [ - "my vacation, has it been approved yet", - "pto_request_status" - ], - [ - "have i been approved for vacation yet", - "pto_request_status" - ], - [ - "am i approved for vacation yet", - "pto_request_status" - ], - [ - "did they approve my day off request", - "pto_request_status" - ], - [ - "is my day off approved", - "pto_request_status" - ], - [ - "did they say yes to my day off request", - "pto_request_status" - ], - [ - "did i get my day off", - "pto_request_status" - ], - [ - "is my day off request approved", - "pto_request_status" - ], - [ - "update on vacation request", - "pto_request_status" - ], - [ - "what is the current status of my vacation request", - "pto_request_status" - ], - [ - "i need status on that vacation request", - "pto_request_status" - ], - [ - "how is my vacation request looking", - "pto_request_status" - ], - [ - "please inform me on my current vacation request status", - "pto_request_status" - ], - [ - "have they recieved my vacation request and approved it", - "pto_request_status" - ], - [ - "will my vacation be approved soon", - "pto_request_status" - ], - [ - "did my vacation get approved", - "pto_request_status" - ], - [ - "do we have good news in the form of vacation approval", - "pto_request_status" - ], - [ - "has my vacation request been acknowledged", - "pto_request_status" - ], - [ - "has my request for vacation days been signed by my supervisor yet", - "pto_request_status" - ], - [ - "has my supervisor approved my vacation", - "pto_request_status" - ], - [ - "has may supervisor approved the vacation days i asked for", - "pto_request_status" - ], - [ - "on my vacation request, what is the latest information", - "pto_request_status" - ], - [ - "what is the news on my vacation request", - "pto_request_status" - ], - [ - "what is the update on my vacation request", - "pto_request_status" - ], - [ - "what is the most recent info for my request for vacation", - "pto_request_status" - ], - [ - "what is the status for what i requested for my vacation", - "pto_request_status" - ], - [ - "tell me about my vacation request", - "pto_request_status" - ], - [ - "update me on my vacation request", - "pto_request_status" - ], - [ - "what about my vacation request", - "pto_request_status" - ], - [ - "has the status of my vacation request changed", - "pto_request_status" - ], - [ - "has my vacation request been updated", - "pto_request_status" - ], - [ - "has my vacation time been signed off on", - "pto_request_status" - ], - [ - "what's my vacation status", - "pto_request_status" - ], - [ - "has my vacation been approved", - "pto_request_status" - ], - [ - "has my vacation been ok'd", - "pto_request_status" - ], - [ - "will i be allowed to take vacation", - "pto_request_status" - ], - [ - "are they going to let me take vacation", - "pto_request_status" - ], - [ - "has my request for vacation time been okayed", - "pto_request_status" - ], - [ - "has my vacation time at work been allowed", - "pto_request_status" - ], - [ - "is walmart going to let me take the vacation time i asked for", - "pto_request_status" - ], - [ - "i'm i okayed for vacation time", - "pto_request_status" - ], - [ - "did you get confirmation my vacation is a go", - "pto_request_status" - ], - [ - "is the request for vacation i filed with my manager at intel approved yet", - "pto_request_status" - ], - [ - "do you know if my vacation request went through", - "pto_request_status" - ], - [ - "has my manager at mcdonald's confirmed i can take vacation", - "pto_request_status" - ], - [ - "have they authorized my vacation", - "pto_request_status" - ], - [ - "i want to know if my vacation request has been approved", - "pto_request_status" - ], - [ - "the status of my day off request, please", - "pto_request_status" - ], - [ - "do you know if my vacation request has been approved", - "pto_request_status" - ], - [ - "has my vacation request been approved", - "pto_request_status" - ], - [ - "what is the status of my vacation request", - "pto_request_status" - ], - [ - "any news for me regarding my day off request", - "pto_request_status" - ], - [ - "i want to know the status of my day off request", - "pto_request_status" - ], - [ - "tell me the status of my vacation request", - "pto_request_status" - ], - [ - "tell me the status of my day off request", - "pto_request_status" - ], - [ - "could you tell me the status of my vacation request", - "pto_request_status" - ], - [ - "i requested some vacation time; has it been approved", - "pto_request_status" - ], - [ - "can you share the status of my day off request", - "pto_request_status" - ], - [ - "was my day off request approved", - "pto_request_status" - ], - [ - "status of my request for vacation", - "pto_request_status" - ], - [ - "what's my day off request's status", - "pto_request_status" - ], - [ - "has my day off request been approved or denied yet", - "pto_request_status" - ], - [ - "has my vacation request been denied or approved yet", - "pto_request_status" - ], - [ - "has my request for the day off been approved yet", - "pto_request_status" - ], - [ - "how is the approval of my day off progressing", - "pto_request_status" - ], - [ - "how is the approval of my day off going", - "pto_request_status" - ], - [ - "whats going on with my day off request", - "pto_request_status" - ], - [ - "any status update on my day off request", - "pto_request_status" - ], - [ - "did you hear back about my day off request", - "pto_request_status" - ], - [ - "is my day off request still pending", - "pto_request_status" - ], - [ - "has anyone looked over my request for a day off", - "pto_request_status" - ], - [ - "has anyone approved my day off request", - "pto_request_status" - ], - [ - "how's my day off request looking", - "pto_request_status" - ], - [ - "has my day off request been looked at yet", - "pto_request_status" - ], - [ - "i need you to let me know what the status of my day off request is", - "pto_request_status" - ], - [ - "please let me know what the status of my day off request is", - "pto_request_status" - ], - [ - "could you tell me what the status of my day off request is", - "pto_request_status" - ], - [ - "would you tell me what the status of my day of request is", - "pto_request_status" - ], - [ - "i need to know the status of my day off request", - "pto_request_status" - ], - [ - "has my vacation request been approved yet", - "pto_request_status" - ], - [ - "has my vacation been approved yet", - "pto_request_status" - ], - [ - "has my time off request been approved yet", - "pto_request_status" - ], - [ - "check on the status of my vacation request please", - "pto_request_status" - ], - [ - "please check to see if my vacation request has been updated", - "pto_request_status" - ], - [ - "please find out the status of my vacation request", - "pto_request_status" - ], - [ - "do you know if my vacation was approved yet or not", - "pto_request_status" - ], - [ - "please tell me if my vacation has been approved or not", - "pto_request_status" - ], - [ - "can you look into the status of my vacation request", - "pto_request_status" - ], - [ - "i want to know what the latest is on my vacation request i submitted", - "pto_request_status" - ], - [ - "i need to know if my vacation was approved", - "pto_request_status" - ], - [ - "please check to see if my vacation has been approved", - "pto_request_status" - ], - [ - "do you know if my vacation request is still pending", - "pto_request_status" - ], - [ - "can you find out if my vacation time off request has been approved or not", - "pto_request_status" - ], - [ - "i sent in a request for vacation time off and am wondering if its been approved yet", - "pto_request_status" - ], - [ - "i haven't heard if my request for time off for vacation has been approved , can you get an update for me", - "pto_request_status" - ], - [ - "how do i look up my credit score", - "credit_score" - ], - [ - "please look up my credit score", - "credit_score" - ], - [ - "can you figure out how to find my credit score", - "credit_score" - ], - [ - "are you able to lookup my credit rating", - "credit_score" - ], - [ - "how can i find my credit rating", - "credit_score" - ], - [ - "where can i check my credit rating", - "credit_score" - ], - [ - "say my credit score", - "credit_score" - ], - [ - "give me my credit score", - "credit_score" - ], - [ - "i want my credit score", - "credit_score" - ], - [ - "inform me of my credit score", - "credit_score" - ], - [ - "clue me in on my credit score", - "credit_score" - ], - [ - "provide me with my credit score", - "credit_score" - ], - [ - "my credit score is", - "credit_score" - ], - [ - "i need my credit score", - "credit_score" - ], - [ - "find my credit score for me", - "credit_score" - ], - [ - "what is my credit score", - "credit_score" - ], - [ - "please get my credit score", - "credit_score" - ], - [ - "can you find my credit score", - "credit_score" - ], - [ - "i'd like to know what my credit rating is", - "credit_score" - ], - [ - "please tell me my credit rating", - "credit_score" - ], - [ - "what in the world is my credit rating", - "credit_score" - ], - [ - "my credit score is what", - "credit_score" - ], - [ - "tell me my credit score please", - "credit_score" - ], - [ - "can you tell me my credit score", - "credit_score" - ], - [ - "find my credit score and tell it to me", - "credit_score" - ], - [ - "get my credit score", - "credit_score" - ], - [ - "what is my exact credit score", - "credit_score" - ], - [ - "how good is my credit score", - "credit_score" - ], - [ - "what's my credit score rating", - "credit_score" - ], - [ - "what kind of credit score do i have", - "credit_score" - ], - [ - "if i want my credit score, how do i find it", - "credit_score" - ], - [ - "how do i find information about my credit score", - "credit_score" - ], - [ - "what is the process of finding my credit score", - "credit_score" - ], - [ - "how do i get my credit score", - "credit_score" - ], - [ - "how do i locate my current credit score", - "credit_score" - ], - [ - "where is my credit score", - "credit_score" - ], - [ - "how do i see my credit score", - "credit_score" - ], - [ - "how exactly do i find my credit score", - "credit_score" - ], - [ - "how do i locate my credit score", - "credit_score" - ], - [ - "how do i find out what my credit score is", - "credit_score" - ], - [ - "i really wanna know my credit score", - "credit_score" - ], - [ - "i wish to know my credit rating", - "credit_score" - ], - [ - "let me understand my credit rating", - "credit_score" - ], - [ - "i wanna know my credit rating now", - "credit_score" - ], - [ - "i gotta know my credit score", - "credit_score" - ], - [ - "tell me my credit rating", - "credit_score" - ], - [ - "i would love to know my credit score", - "credit_score" - ], - [ - "i wish to know my credit score", - "credit_score" - ], - [ - "i wanna know my credit score", - "credit_score" - ], - [ - "tell me what my credit rating is", - "credit_score" - ], - [ - "can you provide me my credit score", - "credit_score" - ], - [ - "i'd like the number for my credit score", - "credit_score" - ], - [ - "tell me my credit score", - "credit_score" - ], - [ - "verify with me my credit score", - "credit_score" - ], - [ - "can you help me find my credit score", - "credit_score" - ], - [ - "would you tell me my credit score", - "credit_score" - ], - [ - "how do i find my credit score", - "credit_score" - ], - [ - "will you tell me my credit score", - "credit_score" - ], - [ - "do you know my credit score", - "credit_score" - ], - [ - "how to see my credit score", - "credit_score" - ], - [ - "can i see my credit score", - "credit_score" - ], - [ - "hows my credit score", - "credit_score" - ], - [ - "websites that share credit ratings", - "credit_score" - ], - [ - "what's my credit rating", - "credit_score" - ], - [ - "how do i find out my credit rating", - "credit_score" - ], - [ - "how to locate my credit score", - "credit_score" - ], - [ - "where is my credit score located", - "credit_score" - ], - [ - "where can i find my credit score", - "credit_score" - ], - [ - "find my credit score", - "credit_score" - ], - [ - "tell me the steps to getting my credit score", - "credit_score" - ], - [ - "help me locate my credit score", - "credit_score" - ], - [ - "lets look up my credit score", - "credit_score" - ], - [ - "i would like to look up my credit score please", - "credit_score" - ], - [ - "i want to find out what my credit score is", - "credit_score" - ], - [ - "help me find my credit score", - "credit_score" - ], - [ - "what is my fica score", - "credit_score" - ], - [ - "can you reveal my credit score", - "credit_score" - ], - [ - "how is my credit score rated", - "credit_score" - ], - [ - "any idea what my credit score is", - "credit_score" - ], - [ - "show me my credit score please", - "credit_score" - ], - [ - "let me know what my credit score is", - "credit_score" - ], - [ - "is my credit score high", - "credit_score" - ], - [ - "i am trying to find my credit score", - "credit_score" - ], - [ - "show me my credit score", - "credit_score" - ], - [ - "how does my credit score look", - "credit_score" - ], - [ - "is my credit report low", - "credit_score" - ], - [ - "whats my credit rating", - "credit_score" - ], - [ - "what is my current credit score", - "credit_score" - ], - [ - "where can i check my credit score", - "credit_score" - ], - [ - "where can i see my credit score", - "credit_score" - ], - [ - "how can i find out my credit score", - "credit_score" - ], - [ - "inform me of my current credit rating", - "credit_score" - ], - [ - "please notify me of my credit rating", - "credit_score" - ], - [ - "i would like to be told about my credit rating", - "credit_score" - ], - [ - "can you tell me about my credit rating", - "credit_score" - ], - [ - "tell me my current credit rating", - "credit_score" - ], - [ - "what is the number of my credit score", - "credit_score" - ], - [ - "what's my credit score", - "credit_score" - ], - [ - "let me know my credit score", - "credit_score" - ], - [ - "how is my credit score", - "credit_score" - ], - [ - "how can i apply for a discover card", - "new_card" - ], - [ - "can i apply for a discover card", - "new_card" - ], - [ - "how do applications for discover cards work", - "new_card" - ], - [ - "is this how i apply for a discover card", - "new_card" - ], - [ - "what does it take to get a new card", - "new_card" - ], - [ - "how do i sign up for a new credit card", - "new_card" - ], - [ - "can i complete an application for a new credit card", - "new_card" - ], - [ - "is it possible to get a new credit card", - "new_card" - ], - [ - "please show me how to apply for a visa card", - "new_card" - ], - [ - "i need to apply for a visa card", - "new_card" - ], - [ - "i need to know how to apply for a visa card", - "new_card" - ], - [ - "tell me how to apply for a visa card", - "new_card" - ], - [ - "what is the process to apply for a visa card", - "new_card" - ], - [ - "show me how to apply for a visa card", - "new_card" - ], - [ - "can you let me know the info on how to apply for a visa card", - "new_card" - ], - [ - "visa card, i want to apply", - "new_card" - ], - [ - "show me the application for a visa card", - "new_card" - ], - [ - "how do i get a new credit card sent to me", - "new_card" - ], - [ - "can you send me a new credit card please mine is getting old and unusable", - "new_card" - ], - [ - "can you apply for idaho independent card for me", - "new_card" - ], - [ - "please apply cc visa card for me", - "new_card" - ], - [ - "apply for a kbc card for me", - "new_card" - ], - [ - "i want to apply for a alphabank card", - "new_card" - ], - [ - "i would like to apply for a bank of america travel rewards credit card", - "new_card" - ], - [ - "i need to apply for a new credit card", - "new_card" - ], - [ - "i wanna apply for a new credit card", - "new_card" - ], - [ - "i got to apply for a new credit card", - "new_card" - ], - [ - "i wanna apply for a bank of america travel rewards credit card", - "new_card" - ], - [ - "i need to apply for a bank of america travel rewards credit card", - "new_card" - ], - [ - "i desire to apply for a bank of america travel rewards credit card", - "new_card" - ], - [ - "apply for a bank of america travel rewards credit card", - "new_card" - ], - [ - "i must apply for a new credit card", - "new_card" - ], - [ - "i gotta apply for a new credit card", - "new_card" - ], - [ - "i would like to apply for a master card", - "new_card" - ], - [ - "i would like to apply for a green card", - "new_card" - ], - [ - "i would like to apply for a visa card", - "new_card" - ], - [ - "i would like to apply for a credit card", - "new_card" - ], - [ - "i would like to apply for a discover card", - "new_card" - ], - [ - "what's the procedure to apply for a new credit card", - "new_card" - ], - [ - "how can i get a new credit card", - "new_card" - ], - [ - "direct me to the application for a new credit card", - "new_card" - ], - [ - "apply for an american express card", - "new_card" - ], - [ - "can you tell me if i might be able to apply for a new credit card", - "new_card" - ], - [ - "might i be able to apply for a new credit card", - "new_card" - ], - [ - "can you help me apply for a visa card", - "new_card" - ], - [ - "i want to apply for a discover card", - "new_card" - ], - [ - "am i eligible for a new credit card application", - "new_card" - ], - [ - "is it possible to apply for a new credit card", - "new_card" - ], - [ - "i think i'd like to apply for an amex", - "new_card" - ], - [ - "am i able to apply for a new credit card", - "new_card" - ], - [ - "application for a mastercard", - "new_card" - ], - [ - "can i get a new card", - "new_card" - ], - [ - "i would like to apply for a new card", - "new_card" - ], - [ - "can i maybe apply for a new card", - "new_card" - ], - [ - "can i please get a new card", - "new_card" - ], - [ - "can i get a brand new card please", - "new_card" - ], - [ - "list the steps for applying for an american express card", - "new_card" - ], - [ - "what's the process for getting an american express card", - "new_card" - ], - [ - "what do i need to do to get an american express card", - "new_card" - ], - [ - "help me get an american express card", - "new_card" - ], - [ - "help me apply for an american express card", - "new_card" - ], - [ - "i am hoping to apply for an amex card", - "new_card" - ], - [ - "i want to find a new credit card to sign up for", - "new_card" - ], - [ - "how do i apply for a barclay's card", - "new_card" - ], - [ - "walk me through the process of applying for an american express card", - "new_card" - ], - [ - "i need help figuring out a new credit card to get", - "new_card" - ], - [ - "i am interested in applying for a visa card", - "new_card" - ], - [ - "i am interested in acquiring a new credit card", - "new_card" - ], - [ - "i want to apply for a mastercard", - "new_card" - ], - [ - "walk me through applying for a visa card", - "new_card" - ], - [ - "i want to submit an application for a barclay's card", - "new_card" - ], - [ - "can you help me sign up for a new credit card", - "new_card" - ], - [ - "i need to know how to apply for a mastercard", - "new_card" - ], - [ - "i intend to apply for an american express card", - "new_card" - ], - [ - "tell me how to apply for an american express card", - "new_card" - ], - [ - "i feel like it is time for me to sign up for a new credit card", - "new_card" - ], - [ - "how to apply for platinum card", - "new_card" - ], - [ - "i would like to apply for a air canada card visa, can you help me", - "new_card" - ], - [ - "please help me apply for a silver card", - "new_card" - ], - [ - "tell me the process of applying for a apollo card", - "new_card" - ], - [ - "can you tell me how to apply for a western card", - "new_card" - ], - [ - "how can i apply for a visa card", - "new_card" - ], - [ - "how can i apply for a visa card, please", - "new_card" - ], - [ - "how do i apply for a visa card, please", - "new_card" - ], - [ - "how can i apply for a mastercard, please", - "new_card" - ], - [ - "what if you need to obtain a new credit card", - "new_card" - ], - [ - "what if you want to obtain a new credit card", - "new_card" - ], - [ - "what if you want a new credit card", - "new_card" - ], - [ - "what if you need to get a new credit card", - "new_card" - ], - [ - "show me how i can get a new credit card", - "new_card" - ], - [ - "can you help me find out how to get a new credit card", - "new_card" - ], - [ - "how do i get a new credit card", - "new_card" - ], - [ - "can you help me get a new credit card", - "new_card" - ], - [ - "what is the process i need to follow to get a new credit card", - "new_card" - ], - [ - "may i apply for a new credit card", - "new_card" - ], - [ - "how do i go about applying for a new credit card", - "new_card" - ], - [ - "i would like to apply for a new credit card", - "new_card" - ], - [ - "could you please let me apply for a new credit card", - "new_card" - ], - [ - "is it possible to apply for a visa card", - "new_card" - ], - [ - "hey what do i do to apply for a visa card", - "new_card" - ], - [ - "locate lost luggage from flight america airlines in o'hare", - "lost_luggage" - ], - [ - "on flight america airlines in o'hare lost luggage", - "lost_luggage" - ], - [ - "in o'hare lost luggage on flight america airlines", - "lost_luggage" - ], - [ - "lost luggage on flight america airlines in o'hare", - "lost_luggage" - ], - [ - "while on flight america airlines i lost luggage in o'hare", - "lost_luggage" - ], - [ - "it seems my luggage was lost", - "lost_luggage" - ], - [ - "my luggage was lost so what do i do", - "lost_luggage" - ], - [ - "my luggage is missing i was on spirit flight ab123 from chicago", - "lost_luggage" - ], - [ - "i think my luggage has been lost", - "lost_luggage" - ], - [ - "i think my luggage was misplaced or has been lost", - "lost_luggage" - ], - [ - "i lost my luggage coming from new york city on american flight ab123", - "lost_luggage" - ], - [ - "what step do i take if my bag got lost on the flight", - "lost_luggage" - ], - [ - "i lost my luggage coming from chicago on delta flight ab123", - "lost_luggage" - ], - [ - "what is the next step if my luggage was lost", - "lost_luggage" - ], - [ - "i lost my luggage, what now", - "lost_luggage" - ], - [ - "i lost my luggage", - "lost_luggage" - ], - [ - "my luggage is missing i was on frontier flight ab123 from seattle", - "lost_luggage" - ], - [ - "my luggage was lost on the flight", - "lost_luggage" - ], - [ - "my luggage is lost i was on delta flight ab123 from detroit", - "lost_luggage" - ], - [ - "can you please help me find my lost luggage", - "lost_luggage" - ], - [ - "my luggage has not arrived and i would like help locating it", - "lost_luggage" - ], - [ - "my luggage has not arrived and i would like assistance locating it", - "lost_luggage" - ], - [ - "can you please help me locate my luggage", - "lost_luggage" - ], - [ - "my luggage is lost and i would like help trying to locate it", - "lost_luggage" - ], - [ - "im at lax and my bags aren't", - "lost_luggage" - ], - [ - "my bags did not arrive here at smf", - "lost_luggage" - ], - [ - "i got to vegas airport but my bags didn't", - "lost_luggage" - ], - [ - "where are my bags, not here at the airport", - "lost_luggage" - ], - [ - "my bags didn't make it to the new orleans airport", - "lost_luggage" - ], - [ - "i'm not able to find my luggage and i was on southwest airlines flight ab123 out of houston", - "lost_luggage" - ], - [ - "my luggage is missing i was on american airlines flight ab123 out of dallas", - "lost_luggage" - ], - [ - "i just traveled on american airlines flight ab123 out of dallas i can't find my luggage", - "lost_luggage" - ], - [ - "i flew on southwest airlines flight ab123 out of dallas and i can not find my luggage", - "lost_luggage" - ], - [ - "i was on american airlines flight ab123 out of houston and i can't find my luggage", - "lost_luggage" - ], - [ - "what if i lost my luggage", - "lost_luggage" - ], - [ - "help, i lost my luggage", - "lost_luggage" - ], - [ - "what to do if luggage lost", - "lost_luggage" - ], - [ - "how to find lost luggage", - "lost_luggage" - ], - [ - "what do you do if your luggage is missing", - "lost_luggage" - ], - [ - "what is the best way to deal with my lost luggage", - "lost_luggage" - ], - [ - "i'm in baggage claim at the airport and my luggage didn't make it", - "lost_luggage" - ], - [ - "who can i turn to if i lost my luggage", - "lost_luggage" - ], - [ - "i'm waiting for my luggage in the airport now but it's been a while and it's still not arrived", - "lost_luggage" - ], - [ - "where do i begin the process of reporting my luggage lost", - "lost_luggage" - ], - [ - "my luggage is nowhere in sight, it might be lost", - "lost_luggage" - ], - [ - "if i lost my luggage, where can i get help", - "lost_luggage" - ], - [ - "i believe it looks like my luggage has disappeared", - "lost_luggage" - ], - [ - "my luggage is missing, i think", - "lost_luggage" - ], - [ - "it appears that my luggage has vanished", - "lost_luggage" - ], - [ - "can you tell me what to do as i am in the airport and have been for some time and there is still no sign of my suitcase", - "lost_luggage" - ], - [ - "there's a strong possibility that my luggage has gone missing", - "lost_luggage" - ], - [ - "how do i handle the situation if i lost my luggage", - "lost_luggage" - ], - [ - "is there someone i can talk to since i am in the airport waiting for my luggage which never came", - "lost_luggage" - ], - [ - "what should i do if i'm waiting at the airport and my luggage is not here", - "lost_luggage" - ], - [ - "i think my luggage got lost", - "lost_luggage" - ], - [ - "i believe that my luggage was lost", - "lost_luggage" - ], - [ - "it looks as though my luggage has been lost", - "lost_luggage" - ], - [ - "i don't know where my luggage is", - "lost_luggage" - ], - [ - "i'm having trouble finding my luggage i was on delta flight ab123 out of new york", - "lost_luggage" - ], - [ - "i was on delta flight ab123 out of new york and i can't find my luggage", - "lost_luggage" - ], - [ - "i miss placed my luggage i was on delta flight ab123 out of new york", - "lost_luggage" - ], - [ - "my luggage is lost i was on delta flight ab123 out of new york", - "lost_luggage" - ], - [ - "i was on delta flight ab123 out of new york and haven't been able to locate my luggage", - "lost_luggage" - ], - [ - "my luggage appears to be missing", - "lost_luggage" - ], - [ - "i need to find my luggage", - "lost_luggage" - ], - [ - "do you know where my luggage is", - "lost_luggage" - ], - [ - "i can't find my luggage anywhere and there's no more on the conveyor", - "lost_luggage" - ], - [ - "can you see if you can track where my luggage is", - "lost_luggage" - ], - [ - "what the heck, where's my luggage!", - "lost_luggage" - ], - [ - "i can't find any of my luggage!", - "lost_luggage" - ], - [ - "do you know where the luggage for people on panam flight ab123 out of tuscon is", - "lost_luggage" - ], - [ - "who do i report lost luggage to", - "lost_luggage" - ], - [ - "i'm here at dia but my luggage isn't!", - "lost_luggage" - ], - [ - "find me the number for jet blue's customer service so i can yell at someone about my missing luggage", - "lost_luggage" - ], - [ - "can you help me locate lost luggage", - "lost_luggage" - ], - [ - "how do i find lost luggage", - "lost_luggage" - ], - [ - "i arrived on delta flight ab123 from juno but my luggage doesn't appear to have come with me", - "lost_luggage" - ], - [ - "what's the procedure to deal with lost luggage", - "lost_luggage" - ], - [ - "i just flew in on american airlines flight ab123 from chicago and can't find my luggage", - "lost_luggage" - ], - [ - "can you check where my luggage is off jetblue flight ab123 out of buffalo", - "lost_luggage" - ], - [ - "where's my luggage for american airlines flight ab123 out of denver", - "lost_luggage" - ], - [ - "how do i go about resolving my luggage that didn't arrive", - "lost_luggage" - ], - [ - "can you find out what happened to my luggage", - "lost_luggage" - ], - [ - "do you know whom i should contact since my luggage did not arrive", - "lost_luggage" - ], - [ - "my luggage did not arrive, please investigate", - "lost_luggage" - ], - [ - "where is my luggage, i was on delta flight ab123 out of dc", - "lost_luggage" - ], - [ - "i need my luggage found, i was on delta flight ab123 out of san francisco", - "lost_luggage" - ], - [ - "i can't locate my luggage, i was on jetblue flight ab123 out of detroit", - "lost_luggage" - ], - [ - "my luggage is lost, i was on american airlines ab123 out of los angeles", - "lost_luggage" - ], - [ - "i need assistance with my lost luggage, i was on american airlines ab123 out of talahasse", - "lost_luggage" - ], - [ - "help me find my luggage", - "lost_luggage" - ], - [ - "tell me where my luggage is", - "lost_luggage" - ], - [ - "how do i find lost luggage in an airport", - "lost_luggage" - ], - [ - "i need to figure out what to do about lost luggage", - "lost_luggage" - ], - [ - "my luggage is lost,what do i do now", - "lost_luggage" - ], - [ - "who do i go to to find lost luggage", - "lost_luggage" - ], - [ - "who do i complain to about my luggage not arriving at the airport", - "lost_luggage" - ], - [ - "can you help me find my luggage it was lost on delta flight abc123 from houston", - "lost_luggage" - ], - [ - "i need my luggage that your airline lost it was flight abc123 and now it\u2019s suddenly missing", - "lost_luggage" - ], - [ - "my luggage was on delta flight abc123 out of houston and now i can\u2019t find it", - "lost_luggage" - ], - [ - "i didn't hear you please repeat", - "repeat" - ], - [ - "please repeat", - "repeat" - ], - [ - "i want you to repeat that", - "repeat" - ], - [ - "one more time please", - "repeat" - ], - [ - "i need you to repeat that", - "repeat" - ], - [ - "i need you to please repeat that", - "repeat" - ], - [ - "one more time for me please", - "repeat" - ], - [ - "i would like that repeated", - "repeat" - ], - [ - "just another time please", - "repeat" - ], - [ - "say it again please", - "repeat" - ], - [ - "i must have you repeat that", - "repeat" - ], - [ - "say it again", - "repeat" - ], - [ - "i need that repeated", - "repeat" - ], - [ - "just one more time", - "repeat" - ], - [ - "i want to have that repeated for me", - "repeat" - ], - [ - "i want that repeated", - "repeat" - ], - [ - "ai what was the question", - "repeat" - ], - [ - "ai i didn't hear you", - "repeat" - ], - [ - "ai please repeat", - "repeat" - ], - [ - "ai could you say that again", - "repeat" - ], - [ - "excuse me", - "repeat" - ], - [ - "i did not hear you", - "repeat" - ], - [ - "i didn't get that, please repeat", - "repeat" - ], - [ - "please repeat yourself", - "repeat" - ], - [ - "i didn't catch that, please repeat", - "repeat" - ], - [ - "can you say that over", - "repeat" - ], - [ - "restate the last thing you told me", - "repeat" - ], - [ - "repeat what you just said", - "repeat" - ], - [ - "i didn't catch that say it again", - "repeat" - ], - [ - "what was that last thing you said", - "repeat" - ], - [ - "repeat what you just told me", - "repeat" - ], - [ - "please say that one more time", - "repeat" - ], - [ - "hold on what was that you just said", - "repeat" - ], - [ - "repeat that last response", - "repeat" - ], - [ - "i need you to repeat that, please", - "repeat" - ], - [ - "i did not quite hear you, can you say it again", - "repeat" - ], - [ - "can you please repeat that response", - "repeat" - ], - [ - "i did not hear you, please repeat", - "repeat" - ], - [ - "say it one more time please", - "repeat" - ], - [ - "i didn't hear, please say it again", - "repeat" - ], - [ - "im sorry can you repeat yourself", - "repeat" - ], - [ - "i missed what you said, can you say it again", - "repeat" - ], - [ - "i couldn't hear you, can you repeat it", - "repeat" - ], - [ - "i didn't hear say it again please", - "repeat" - ], - [ - "can you repeat yourself", - "repeat" - ], - [ - "i would like you to repeat yourself", - "repeat" - ], - [ - "i missed that last one, please repeat", - "repeat" - ], - [ - "what was that", - "repeat" - ], - [ - "i didn't hear you can you repeat that", - "repeat" - ], - [ - "please repeat that phrase", - "repeat" - ], - [ - "i missed what you said, please say it again", - "repeat" - ], - [ - "can you tell me what you just said", - "repeat" - ], - [ - "will you repeat that, please", - "repeat" - ], - [ - "could you repeat that, please", - "repeat" - ], - [ - "would you repeat that, please", - "repeat" - ], - [ - "would you repeat that", - "repeat" - ], - [ - "would you please ask the question again", - "repeat" - ], - [ - "i am needing for you to say that again", - "repeat" - ], - [ - "i need for you to ask the question again", - "repeat" - ], - [ - "could you ask the question again", - "repeat" - ], - [ - "i am going to need you to say that again", - "repeat" - ], - [ - "would you say that again, please", - "repeat" - ], - [ - "repeat the question", - "repeat" - ], - [ - "i didn't hear what you said", - "repeat" - ], - [ - "repeat that please", - "repeat" - ], - [ - "i didn't hear you", - "repeat" - ], - [ - "i didnt hear what you just said, can you say it again", - "repeat" - ], - [ - "may you repeat what you said again", - "repeat" - ], - [ - "i didn't hear what you just said, can you repeat it", - "repeat" - ], - [ - "i didn't understand what you just said, can you repeat it", - "repeat" - ], - [ - "i didnt understand what you just said, can you say it again", - "repeat" - ], - [ - "can you say what you just said again", - "repeat" - ], - [ - "could you repeat what you just said again", - "repeat" - ], - [ - "would you repeat what you just said", - "repeat" - ], - [ - "will you please repeat what you said", - "repeat" - ], - [ - "what did you just mention", - "repeat" - ], - [ - "i need that said again", - "repeat" - ], - [ - "i need to know again", - "repeat" - ], - [ - "please say it again", - "repeat" - ], - [ - "tell me once more", - "repeat" - ], - [ - "repeat that again", - "repeat" - ], - [ - "replay what you just said", - "repeat" - ], - [ - "i missed that, say it again", - "repeat" - ], - [ - "could you say that again", - "repeat" - ], - [ - "repeat your last message", - "repeat" - ], - [ - "say it one more time", - "repeat" - ], - [ - "i did not understand say it again", - "repeat" - ], - [ - "can you please sat it one more time", - "repeat" - ], - [ - "i did not catch that, repeat what you just said", - "repeat" - ], - [ - "sorry, i didn't hear you, can you say that gain", - "repeat" - ], - [ - "i didn't hear you, can you repeat that louder", - "repeat" - ], - [ - "i didn't catch that so please repeat it", - "repeat" - ], - [ - "please run that by me again", - "repeat" - ], - [ - "i missed that say it again", - "repeat" - ], - [ - "can you say again", - "repeat" - ], - [ - "please repeat what you just said", - "repeat" - ], - [ - "can i get you to say that once more", - "repeat" - ], - [ - "will you repeat what you just said", - "repeat" - ], - [ - "please repeat over what you said", - "repeat" - ], - [ - "come again with that", - "repeat" - ], - [ - "what kind of mileage do i get out of gas", - "mpg" - ], - [ - "what's the fuel economy of my car", - "mpg" - ], - [ - "how many miles per gallon do i get in my car", - "mpg" - ], - [ - "tell me my car's fuel economy", - "mpg" - ], - [ - "what kind of gas mileage do i get", - "mpg" - ], - [ - "what gas mileage does my car get", - "mpg" - ], - [ - "in my car, what's the fuel economy", - "mpg" - ], - [ - "how many miles per gallon do i get", - "mpg" - ], - [ - "what's my car's gas mileage", - "mpg" - ], - [ - "how many miles per gallon does my car get", - "mpg" - ], - [ - "look up the gas mileage for my vehicle", - "mpg" - ], - [ - "can you tell me the miles per gallon rate of my car", - "mpg" - ], - [ - "tell me my car's gas mileage please", - "mpg" - ], - [ - "what is the gas mileage for the car that i drive", - "mpg" - ], - [ - "how many miles can i drive on 1 gallon of gas", - "mpg" - ], - [ - "how many miles does my car get per gallon", - "mpg" - ], - [ - "what\u2019s my gas mileage", - "mpg" - ], - [ - "retrieve my current mpg on my car", - "mpg" - ], - [ - "tell me the gas mileage on my car", - "mpg" - ], - [ - "tell me my miles per gallon on my car", - "mpg" - ], - [ - "how much mpg does this car get in the city", - "mpg" - ], - [ - "what kind of mpg does this car get in the city", - "mpg" - ], - [ - "how many miles per gallon does it get in the city", - "mpg" - ], - [ - "how many miles per gallon does it get on the highway", - "mpg" - ], - [ - "can you give me the car's mpg for the city", - "mpg" - ], - [ - "what's the mpg for the car when it's on the highway", - "mpg" - ], - [ - "what are the estimates for the car's highway mpg", - "mpg" - ], - [ - "how much highway mpg does it get", - "mpg" - ], - [ - "for city driving, what's the car's mpg", - "mpg" - ], - [ - "how far can the car get per gallon on the highway", - "mpg" - ], - [ - "tell me the mpg of this car", - "mpg" - ], - [ - "can you tell me the mpg of this car", - "mpg" - ], - [ - "how many mpg does this car get", - "mpg" - ], - [ - "mpg of this car", - "mpg" - ], - [ - "what is the mpg of this car", - "mpg" - ], - [ - "what is the mpg", - "mpg" - ], - [ - "how much is this mpg", - "mpg" - ], - [ - "what's my current mpg", - "mpg" - ], - [ - "how much mpg do i have", - "mpg" - ], - [ - "what's my car's miles per gallon", - "mpg" - ], - [ - "calculate car mpg", - "mpg" - ], - [ - "what's my gas mileage like", - "mpg" - ], - [ - "is the fuel economy of this car good or bad", - "mpg" - ], - [ - "average mpg", - "mpg" - ], - [ - "what mpg does my car get", - "mpg" - ], - [ - "what is my average mpg in this car", - "mpg" - ], - [ - "tell me about this cars fuel economy", - "mpg" - ], - [ - "do you know the fuel economy of this car", - "mpg" - ], - [ - "what's the mpg of this car", - "mpg" - ], - [ - "what's the miles per gallon on this car", - "mpg" - ], - [ - "how does this do on gas mileage", - "mpg" - ], - [ - "whats the cars fuel mileage like", - "mpg" - ], - [ - "how does this car do on its fuel", - "mpg" - ], - [ - "what is the city mpg for this car", - "mpg" - ], - [ - "how many miles per gallon does this car get in the city", - "mpg" - ], - [ - "what is the city fuel efficiency for this car", - "mpg" - ], - [ - "what's the fuel economy for this car downtown", - "mpg" - ], - [ - "how many mpg does this rig get when i'm in the city", - "mpg" - ], - [ - "how much gas does this use in the city", - "mpg" - ], - [ - "do you know what this car's mpg is", - "mpg" - ], - [ - "how is this car rated for fuel economy", - "mpg" - ], - [ - "what's this car guzzle in gas when driving in town", - "mpg" - ], - [ - "what mpg does this car get on the expressway", - "mpg" - ], - [ - "what's the non-city mpg for this car", - "mpg" - ], - [ - "what'll this car do for gas mileage on the open road", - "mpg" - ], - [ - "how good is the fuel usage for this vehicle", - "mpg" - ], - [ - "what's this car get for highway driving", - "mpg" - ], - [ - "how much gas does this car use in the city", - "mpg" - ], - [ - "do you know the mpg for this vehicle", - "mpg" - ], - [ - "how's the mpg for this on the freeway", - "mpg" - ], - [ - "how many mpgs does this car get on the highway", - "mpg" - ], - [ - "how's the fuel efficiency for city driving for this car", - "mpg" - ], - [ - "what's this car do for fuel economy", - "mpg" - ], - [ - "what is the amount of miles per gallon this car gets on the highway", - "mpg" - ], - [ - "how many mpg does this get on the highway", - "mpg" - ], - [ - "what is the highway mpg on this car", - "mpg" - ], - [ - "how many miles per gallon does this car get on the highway", - "mpg" - ], - [ - "does this car get good mpg on the highway", - "mpg" - ], - [ - "what is the cars mpg on the highway", - "mpg" - ], - [ - "what is the mpg like for this car while driving in the city", - "mpg" - ], - [ - "what is the mpg on this car", - "mpg" - ], - [ - "how does this cars mpg do on the highway", - "mpg" - ], - [ - "whats the cars mpg", - "mpg" - ], - [ - "please tell me what the mpg is for this car", - "mpg" - ], - [ - "how does this car do with mpg in the city", - "mpg" - ], - [ - "tell me what this cars highway mpg is", - "mpg" - ], - [ - "what is the mpg for this car in city", - "mpg" - ], - [ - "does this car get good mpg in the city", - "mpg" - ], - [ - "what mpg does this car get in city", - "mpg" - ], - [ - "what mpg does this car get on the highway", - "mpg" - ], - [ - "how much mpg does this car get on the highway", - "mpg" - ], - [ - "please look up the this cars mpg", - "mpg" - ], - [ - "my mpg is how much", - "mpg" - ], - [ - "how many miles per gallon am i getting", - "mpg" - ], - [ - "how much is my mpg", - "mpg" - ], - [ - "what's the mileage on my car", - "mpg" - ], - [ - "how expensive is it to fuel this car", - "mpg" - ], - [ - "how many miles will a gallon of gas take this car", - "mpg" - ], - [ - "how many mpg does this car have", - "mpg" - ], - [ - "how far can i go on one tank of gas", - "mpg" - ], - [ - "when should i change my car oil", - "oil_change_when" - ], - [ - "do i need to change my oil", - "oil_change_when" - ], - [ - "how often do you have to change your oil", - "oil_change_when" - ], - [ - "how do i know when i have to change my oil", - "oil_change_when" - ], - [ - "when do i need to change my oil", - "oil_change_when" - ], - [ - "when am i due for an oil change", - "oil_change_when" - ], - [ - "how long before i neet to get my oil changed", - "oil_change_when" - ], - [ - "at how many miles am i required to get my oil changed", - "oil_change_when" - ], - [ - "when should my oil get changed", - "oil_change_when" - ], - [ - "when do i need you change my oil", - "oil_change_when" - ], - [ - "when is my oil due to be changed", - "oil_change_when" - ], - [ - "when should my oil be changed", - "oil_change_when" - ], - [ - "how long until i need to change my oil", - "oil_change_when" - ], - [ - "how many miles can i drive before changing my oil", - "oil_change_when" - ], - [ - "at which mileage, should i get my oil changed", - "oil_change_when" - ], - [ - "when should i change my oil again", - "oil_change_when" - ], - [ - "at what point should the oil be changed again", - "oil_change_when" - ], - [ - "how much longer until i need an oil change", - "oil_change_when" - ], - [ - "when do i need to change the oil again", - "oil_change_when" - ], - [ - "when do i need to change my oil again", - "oil_change_when" - ], - [ - "when should i change my oil next", - "oil_change_when" - ], - [ - "at what point will i need another oil change", - "oil_change_when" - ], - [ - "when will i need another oil change", - "oil_change_when" - ], - [ - "when will i need to change my oil again", - "oil_change_when" - ], - [ - "when do i need to get an oil change", - "oil_change_when" - ], - [ - "when must i change oil", - "oil_change_when" - ], - [ - "when do i need my oil changed", - "oil_change_when" - ], - [ - "when should oil be changed in my car", - "oil_change_when" - ], - [ - "when is an oil change needed by me", - "oil_change_when" - ], - [ - "i really must know when should i get my oil changed next", - "oil_change_when" - ], - [ - "when must i change the oil in my car", - "oil_change_when" - ], - [ - "i gotta know when should i get my oil changed next", - "oil_change_when" - ], - [ - "when do i have to change oil", - "oil_change_when" - ], - [ - "when should i change the oil in my car", - "oil_change_when" - ], - [ - "when do i need an oil change", - "oil_change_when" - ], - [ - "when does my oil need some changing", - "oil_change_when" - ], - [ - "i wanna know when should i get my oil changed next", - "oil_change_when" - ], - [ - "i must know when should i get my oil changed next", - "oil_change_when" - ], - [ - "i need to know when should i get my oil changed next", - "oil_change_when" - ], - [ - "how often should i change my oil", - "oil_change_when" - ], - [ - "oil changes are typical done how often", - "oil_change_when" - ], - [ - "when's my next oil change due", - "oil_change_when" - ], - [ - "oil changes are typical done when", - "oil_change_when" - ], - [ - "when is my oil change expected", - "oil_change_when" - ], - [ - "is there a way to tell when i need my oil changed", - "oil_change_when" - ], - [ - "when is my next oil change", - "oil_change_when" - ], - [ - "tell me how i know when i need an oil change", - "oil_change_when" - ], - [ - "how do i know when i need my next oil change", - "oil_change_when" - ], - [ - "when do i need my next oil change", - "oil_change_when" - ], - [ - "is it time for an oil change", - "oil_change_when" - ], - [ - "should i get an oil change", - "oil_change_when" - ], - [ - "when is the best time for my next oil change", - "oil_change_when" - ], - [ - "what date should i next change my oil", - "oil_change_when" - ], - [ - "the next time i change my oil, when should it be", - "oil_change_when" - ], - [ - "what duration of time should i wait before i change my oil", - "oil_change_when" - ], - [ - "after how long should i change my oil", - "oil_change_when" - ], - [ - "when will my car need an oil change", - "oil_change_when" - ], - [ - "can you make a note for my next oil change", - "oil_change_when" - ], - [ - "how long before i need an oil change", - "oil_change_when" - ], - [ - "when do you think i should change my oil", - "oil_change_when" - ], - [ - "when is my next oil change suggested", - "oil_change_when" - ], - [ - "what is the due date for my next oil change", - "oil_change_when" - ], - [ - "in how many miles do i need to schedule my oil change", - "oil_change_when" - ], - [ - "when is my car due for an oil change and lube", - "oil_change_when" - ], - [ - "how many miles can i drive before needing the next oil change", - "oil_change_when" - ], - [ - "it's been 3 years since i changed my oil, how long until i have to deal with it", - "oil_change_when" - ], - [ - "can you check when i'm next due for an oil change", - "oil_change_when" - ], - [ - "my oil seems pretty black, does that mean i should change it", - "oil_change_when" - ], - [ - "when's the next time i should go for an oil change", - "oil_change_when" - ], - [ - "my car's been throwing cels that i think are oil related, so i'm wondering if it's time to take it in or not", - "oil_change_when" - ], - [ - "my next oil change is when", - "oil_change_when" - ], - [ - "at what time should i get my oil changed next", - "oil_change_when" - ], - [ - "how much longer until i need to get my oil changed", - "oil_change_when" - ], - [ - "what is the next date that i should change my oil at", - "oil_change_when" - ], - [ - "when would you recommend i get my oil changed", - "oil_change_when" - ], - [ - "when would it be required for me to get my oil changed", - "oil_change_when" - ], - [ - "when is my next oil change due", - "oil_change_when" - ], - [ - "what is the average time to go between oil changes", - "oil_change_when" - ], - [ - "do i need to have my oil changed after 3000 miles", - "oil_change_when" - ], - [ - "how soon should i have my oil changed", - "oil_change_when" - ], - [ - "how often should i have my oil changed", - "oil_change_when" - ], - [ - "what is the recommended time frame to change my oil", - "oil_change_when" - ], - [ - "how many miles can i drive before i need to change my oil", - "oil_change_when" - ], - [ - "how long can i go before changing my oil", - "oil_change_when" - ], - [ - "how long is an oil change good for", - "oil_change_when" - ], - [ - "i need to know when my oil should be changed", - "oil_change_when" - ], - [ - "when do people typically change their oil", - "oil_change_when" - ], - [ - "how often should the oil get changed", - "oil_change_when" - ], - [ - "what is the time frame for changing oil", - "oil_change_when" - ], - [ - "about how long before i need another oil change", - "oil_change_when" - ], - [ - "how long does oil last in a car", - "oil_change_when" - ], - [ - "do you change the oil in your car more than once a year", - "oil_change_when" - ], - [ - "when is my car due for an oil change", - "oil_change_when" - ], - [ - "when do cars need their oil changed", - "oil_change_when" - ], - [ - "when do i change my oil", - "oil_change_when" - ], - [ - "how long can you go between oil changes", - "oil_change_when" - ], - [ - "how often should you get an oil change", - "oil_change_when" - ], - [ - "when can i get oil changed", - "oil_change_when" - ], - [ - "when should i change this oil", - "oil_change_when" - ], - [ - "when to change my oil", - "oil_change_when" - ], - [ - "yep", - "yes" - ], - [ - "that is affirmative", - "yes" - ], - [ - "what you just said is true", - "yes" - ], - [ - "that is not false", - "yes" - ], - [ - "that is a fact", - "yes" - ], - [ - "i agree with the truth of what you just said", - "yes" - ], - [ - "i believe what you just said is true", - "yes" - ], - [ - "that would be great", - "yes" - ], - [ - "that would be awesome", - "yes" - ], - [ - "that is totally true", - "yes" - ], - [ - "oh yes", - "yes" - ], - [ - "yes that is right", - "yes" - ], - [ - "that is a yes", - "yes" - ], - [ - "that seems true", - "yes" - ], - [ - "positive", - "yes" - ], - [ - "true", - "yes" - ], - [ - "very true", - "yes" - ], - [ - "that will be true", - "yes" - ], - [ - "that appears true", - "yes" - ], - [ - "that is true", - "yes" - ], - [ - "it is true", - "yes" - ], - [ - "that is right", - "yes" - ], - [ - "that statement was correct", - "yes" - ], - [ - "i think that's true", - "yes" - ], - [ - "that is accurate", - "yes" - ], - [ - "yes, that is it", - "yes" - ], - [ - "correct", - "yes" - ], - [ - "the answer is yes", - "yes" - ], - [ - "all right", - "yes" - ], - [ - "it's indeed true", - "yes" - ], - [ - "that's a yes from me", - "yes" - ], - [ - "yes you are correct", - "yes" - ], - [ - "that's a definite yes", - "yes" - ], - [ - "yes that's it", - "yes" - ], - [ - "i vote yes", - "yes" - ], - [ - "that is correct", - "yes" - ], - [ - "yes, that is true", - "yes" - ], - [ - "yep, that's right", - "yes" - ], - [ - "yeah that's what i want", - "yes" - ], - [ - "you got it", - "yes" - ], - [ - "yeah that's right, so true", - "yes" - ], - [ - "true is my response", - "yes" - ], - [ - "yes, that's affirmative", - "yes" - ], - [ - "yes, you got it", - "yes" - ], - [ - "absolutely!", - "yes" - ], - [ - "do that", - "yes" - ], - [ - "absolutely correct", - "yes" - ], - [ - "confirm", - "yes" - ], - [ - "yes, i'd really like that alot", - "yes" - ], - [ - "agreed, that's valid", - "yes" - ], - [ - "affirmative, go ahead", - "yes" - ], - [ - "yes that's correct", - "yes" - ], - [ - "yeah, that's how it is", - "yes" - ], - [ - "yeah, that's right", - "yes" - ], - [ - "of course", - "yes" - ], - [ - "that's the truth", - "yes" - ], - [ - "exactly right", - "yes" - ], - [ - "yes, that's accurate", - "yes" - ], - [ - "yes, that is accurate", - "yes" - ], - [ - "yes, that's what i want", - "yes" - ], - [ - "yes, that is a fact", - "yes" - ], - [ - "yes, that is correct", - "yes" - ], - [ - "yes, that's confirmed", - "yes" - ], - [ - "indeed", - "yes" - ], - [ - "yes", - "yes" - ], - [ - "uh-huh", - "yes" - ], - [ - "correct, that's true", - "yes" - ], - [ - "yes, that's correct", - "yes" - ], - [ - "yeah", - "yes" - ], - [ - "yeap", - "yes" - ], - [ - "ok", - "yes" - ], - [ - "sure thing", - "yes" - ], - [ - "yes you are right", - "yes" - ], - [ - "yes you are", - "yes" - ], - [ - "yes i do like that", - "yes" - ], - [ - "yes that is correct", - "yes" - ], - [ - "yes i am", - "yes" - ], - [ - "i think it's true", - "yes" - ], - [ - "that would be yes", - "yes" - ], - [ - "that would be true", - "yes" - ], - [ - "i believe that's true", - "yes" - ], - [ - "uh huh", - "yes" - ], - [ - "yep, that's true", - "yes" - ], - [ - "yes, that is actually true", - "yes" - ], - [ - "yes, that's it", - "yes" - ], - [ - "yes, that is right", - "yes" - ], - [ - "correct, it is affirmative", - "yes" - ], - [ - "the answer to that is a resounding yes", - "yes" - ], - [ - "i can confirm it is affirmative", - "yes" - ], - [ - "my response to that is yes", - "yes" - ], - [ - "i have to say affirmative on that one", - "yes" - ], - [ - "i would have to say yes as my answer", - "yes" - ], - [ - "the answer to that is affirmative", - "yes" - ], - [ - "that is true, yes", - "yes" - ], - [ - "it is definitely affirmative", - "yes" - ], - [ - "is is very much true", - "yes" - ], - [ - "it is a true", - "yes" - ], - [ - "its a for sure true", - "yes" - ], - [ - "yes sir", - "yes" - ], - [ - "it's true", - "yes" - ], - [ - "can you give me some suggestions to go site seeing when i get there", - "travel_suggestion" - ], - [ - "can you get me any recommendations for the place i'm traveling to", - "travel_suggestion" - ], - [ - "please suggest some fun tourist activities in tokyo", - "travel_suggestion" - ], - [ - "i need help with some fun tourist things to do in tokyo", - "travel_suggestion" - ], - [ - "could you tell me what fun tourist things i could do in tokyo", - "travel_suggestion" - ], - [ - "what should i do for fun in tokyo", - "travel_suggestion" - ], - [ - "what do tourists do in tokyo", - "travel_suggestion" - ], - [ - "what sites are there to see when in evans", - "travel_suggestion" - ], - [ - "what can i do in evans", - "travel_suggestion" - ], - [ - "name some things i should do while in evans", - "travel_suggestion" - ], - [ - "if i go to evans, what should i do", - "travel_suggestion" - ], - [ - "what is there to do in evans", - "travel_suggestion" - ], - [ - "what can i do in new orleans for fun", - "travel_suggestion" - ], - [ - "what do you recommend to do in vegas", - "travel_suggestion" - ], - [ - "is there anything fun to do in berlin", - "travel_suggestion" - ], - [ - "find something fun for me to do in dallas", - "travel_suggestion" - ], - [ - "what's fun to do in thailand", - "travel_suggestion" - ], - [ - "where should i book my next trip", - "travel_suggestion" - ], - [ - "what are some hot travel destinations", - "travel_suggestion" - ], - [ - "what's a good place to travel to", - "travel_suggestion" - ], - [ - "where should i travel to next", - "travel_suggestion" - ], - [ - "what's the best place to travel to this time of year", - "travel_suggestion" - ], - [ - "when visiting chicago, what things can i do there", - "travel_suggestion" - ], - [ - "what are some good restaurants in chicago", - "travel_suggestion" - ], - [ - "what are some activities to do in chicago", - "travel_suggestion" - ], - [ - "when travelling in chicago, what kinds of attractions should i see", - "travel_suggestion" - ], - [ - "what kind of entertainment is available in chicago", - "travel_suggestion" - ], - [ - "show me some things to do in gatlinburg", - "travel_suggestion" - ], - [ - "what are the main attractions in gatlinburg", - "travel_suggestion" - ], - [ - "name the five star attractions in gatlinburg", - "travel_suggestion" - ], - [ - "what are some of the attractions in gatlinburg", - "travel_suggestion" - ], - [ - "what are the most popular attractions in gatlinburg", - "travel_suggestion" - ], - [ - "where should i spend my time off", - "travel_suggestion" - ], - [ - "give me some awesome travel destinations", - "travel_suggestion" - ], - [ - "what's the best place to just get away from it all", - "travel_suggestion" - ], - [ - "what are some tourist sites to see in ann arbor", - "travel_suggestion" - ], - [ - "name some tourist things to do in chicago", - "travel_suggestion" - ], - [ - "in austin, what are some tourist things to do", - "travel_suggestion" - ], - [ - "name some tourist things to do in seattle", - "travel_suggestion" - ], - [ - "what are some fun, tourist sites to see in nyc", - "travel_suggestion" - ], - [ - "what experiences does kentucky offer", - "travel_suggestion" - ], - [ - "what's something interesting to do kentucky", - "travel_suggestion" - ], - [ - "what things are there to do in kentucky", - "travel_suggestion" - ], - [ - "what could i do for fun in kentucky", - "travel_suggestion" - ], - [ - "what does kentucky have to offer for things to do", - "travel_suggestion" - ], - [ - "what are the big tourist sites in sweden", - "travel_suggestion" - ], - [ - "what are some fun things to do in sweden", - "travel_suggestion" - ], - [ - "can you tell me about the best tourist attractions in sweden", - "travel_suggestion" - ], - [ - "what are some of sweden's best sights", - "travel_suggestion" - ], - [ - "what can i do in nashville", - "travel_suggestion" - ], - [ - "help me find things to do in nashville", - "travel_suggestion" - ], - [ - "can i do a lot in nashville", - "travel_suggestion" - ], - [ - "i need ideas for things to do in nashville", - "travel_suggestion" - ], - [ - "do you know of any activities in nashville", - "travel_suggestion" - ], - [ - "what are some touristy things to do in boston", - "travel_suggestion" - ], - [ - "what kinds of fun things are there in boston for tourists", - "travel_suggestion" - ], - [ - "are there any exciting tourist things to do in boston", - "travel_suggestion" - ], - [ - "what kinds of fun touristy things are there to do in boston", - "travel_suggestion" - ], - [ - "are there any fun tourist things to do in boston", - "travel_suggestion" - ], - [ - "what are some fun things i can partake in in atlanta", - "travel_suggestion" - ], - [ - "tell me things i can do in chicago", - "travel_suggestion" - ], - [ - "provide me with ideas of things we can do in charlotte", - "travel_suggestion" - ], - [ - "give me a list of things to do in orlando", - "travel_suggestion" - ], - [ - "where should i travel if i want to visit some history museums", - "travel_suggestion" - ], - [ - "i'd like some suggestions on where to go on my vacation this year", - "travel_suggestion" - ], - [ - "are there any interesting things to do in atlanta, georgia", - "travel_suggestion" - ], - [ - "is there anything fun to do in manassas, virginia", - "travel_suggestion" - ], - [ - "i want to travel this year but i need some suggestions", - "travel_suggestion" - ], - [ - "where should i travel if i want to go to a nice beach", - "travel_suggestion" - ], - [ - "give me some ideas on what i can do in seattle for fun", - "travel_suggestion" - ], - [ - "what do you suggest for entertainment in tampa, florida", - "travel_suggestion" - ], - [ - "what are some fun things to do in butte, montana", - "travel_suggestion" - ], - [ - "in portland, what things are there to do", - "travel_suggestion" - ], - [ - "what things can i do in portland", - "travel_suggestion" - ], - [ - "what are some things i can do in portland", - "travel_suggestion" - ], - [ - "what are some things to do in portland", - "travel_suggestion" - ], - [ - "what things are there to do in portland", - "travel_suggestion" - ], - [ - "what is there to do besides drink in germany", - "travel_suggestion" - ], - [ - "what festivals are there to see in paris", - "travel_suggestion" - ], - [ - "what fun is there to do in england", - "travel_suggestion" - ], - [ - "where is the best winery in the south of france", - "travel_suggestion" - ], - [ - "what should i do in france", - "travel_suggestion" - ], - [ - "where do you suggest i plan my next vacation", - "travel_suggestion" - ], - [ - "what are your best travel suggestions", - "travel_suggestion" - ], - [ - "what are some suggestions for places to travel", - "travel_suggestion" - ], - [ - "what do people in sioux falls do for fun", - "travel_suggestion" - ], - [ - "what's there to do in seattle", - "travel_suggestion" - ], - [ - "are there any interesting activities to do in austin", - "travel_suggestion" - ], - [ - "where's a good place to go if i want to see mountains", - "travel_suggestion" - ], - [ - "what's a nice place to visit a beautiful beach", - "travel_suggestion" - ], - [ - "what should i do in bangor", - "travel_suggestion" - ], - [ - "what do tourists do for fun in seattle", - "travel_suggestion" - ], - [ - "are there any fun tourist activities in australia", - "travel_suggestion" - ], - [ - "what's a good use of my time in toronto", - "travel_suggestion" - ], - [ - "what can a tourist in denver do", - "travel_suggestion" - ], - [ - "what sort of things do people do in new york", - "travel_suggestion" - ], - [ - "tell me some things to see in tampa", - "travel_suggestion" - ], - [ - "is there anything neat to do in boston", - "travel_suggestion" - ], - [ - "what are some interesting things to do in dc", - "travel_suggestion" - ], - [ - "what's the funnest thing for a tourist to do in iceland", - "travel_suggestion" - ], - [ - "what do my health benefits consist of", - "insurance" - ], - [ - "what health benefits are available to me", - "insurance" - ], - [ - "what health benefits can i use", - "insurance" - ], - [ - "what are the health benefits i have", - "insurance" - ], - [ - "what health benefits do i have", - "insurance" - ], - [ - "i need to know my health benefits", - "insurance" - ], - [ - "what is my health plan", - "insurance" - ], - [ - "what's the name of my medical coverage", - "insurance" - ], - [ - "i need to know more about my health plan", - "insurance" - ], - [ - "are my health benefits good", - "insurance" - ], - [ - "tell me what my health plan is called", - "insurance" - ], - [ - "do i have many health benefits", - "insurance" - ], - [ - "tell me about my health insurance", - "insurance" - ], - [ - "what is the name of my health insurance", - "insurance" - ], - [ - "list all of my health benefits", - "insurance" - ], - [ - "my insurance gives me what benefits", - "insurance" - ], - [ - "what benefits are available with my insurance", - "insurance" - ], - [ - "what benefits does my insurance provide", - "insurance" - ], - [ - "what benefits are provided by my insurance", - "insurance" - ], - [ - "my insurance benefits are what", - "insurance" - ], - [ - "what benefits do i get from insurance", - "insurance" - ], - [ - "give me information on my health plan", - "insurance" - ], - [ - "i'd like to know about my health plan", - "insurance" - ], - [ - "can you tell me my health plan", - "insurance" - ], - [ - "insurance benefits", - "insurance" - ], - [ - "what benefits are associated with my insurance", - "insurance" - ], - [ - "can you tell me my insurance benefits", - "insurance" - ], - [ - "what benefits does my insurance have", - "insurance" - ], - [ - "i'm curious what health plan i'm on", - "insurance" - ], - [ - "i'm wondering what health plan i'm on", - "insurance" - ], - [ - "can you let me know what health plan i'm on", - "insurance" - ], - [ - "do you know the health plan i'm on", - "insurance" - ], - [ - "is it possible for you to let me know what health plan i'm on", - "insurance" - ], - [ - "tell me about my insurance benefits", - "insurance" - ], - [ - "list my insurance benefits", - "insurance" - ], - [ - "list insurance benefits", - "insurance" - ], - [ - "insurance benefit information", - "insurance" - ], - [ - "insurance benefit details", - "insurance" - ], - [ - "give me the name of the insurance plan that i enrolled in", - "insurance" - ], - [ - "tell me the name of my insurance plan", - "insurance" - ], - [ - "what is the name of my insurance plan", - "insurance" - ], - [ - "what is the name of the insurance plan that i'm enrolled in", - "insurance" - ], - [ - "please provide the name of the insurance plan that i'm enrolled in", - "insurance" - ], - [ - "what's the healthcare plan i'm on", - "insurance" - ], - [ - "what's the deal with my health care", - "insurance" - ], - [ - "what's my current health care plan", - "insurance" - ], - [ - "any word on my healthcare plan", - "insurance" - ], - [ - "what healthcare plan do you have me on", - "insurance" - ], - [ - "i need you to tell me what benefits are included in my insurance", - "insurance" - ], - [ - "please find the benefits provided by my insurance", - "insurance" - ], - [ - "what benefits do i have with my insurance", - "insurance" - ], - [ - "can you tell me what is included in my health benefits", - "insurance" - ], - [ - "please tell my what insurance plan i registered for", - "insurance" - ], - [ - "i need to know what my health benefits cover, please", - "insurance" - ], - [ - "i would like to hear a list of my insurance benefits, please", - "insurance" - ], - [ - "what is the insurance plan that i'm signed up for", - "insurance" - ], - [ - "please tell me what's provided in my health benefits", - "insurance" - ], - [ - "which insurance plan do i currently have", - "insurance" - ], - [ - "can you tell me the name of the insurance plan i'm a member of", - "insurance" - ], - [ - "remind me of which insurance plan i'm currently enrolled in", - "insurance" - ], - [ - "what benefits does my health coverage give me", - "insurance" - ], - [ - "i would like to know all of the covered benefits that are given by my health care plan", - "insurance" - ], - [ - "can you tell me what benefits i receive with my insurance", - "insurance" - ], - [ - "is there an insurance plan for my health", - "insurance" - ], - [ - "can i see my health benefits", - "insurance" - ], - [ - "what are the benefits i get for my health", - "insurance" - ], - [ - "what is the aid i get from these health benefits", - "insurance" - ], - [ - "can i obtain health benefits", - "insurance" - ], - [ - "give me info on my health plan", - "insurance" - ], - [ - "what was my health plan again", - "insurance" - ], - [ - "what health plan do i have", - "insurance" - ], - [ - "tell me my health plan", - "insurance" - ], - [ - "what's my health plan", - "insurance" - ], - [ - "which insurance plan am i enrolled in, please", - "insurance" - ], - [ - "what type of insurance plan am i enrolled in, please", - "insurance" - ], - [ - "what kind of insurance plan am i enrolled in", - "insurance" - ], - [ - "what kind of insurance plan am i enrolled in, please", - "insurance" - ], - [ - "may i know my insurance benefits", - "insurance" - ], - [ - "where is the list of my insurance benefits", - "insurance" - ], - [ - "what's my insurance benefits like", - "insurance" - ], - [ - "how do i know my insurance benefits", - "insurance" - ], - [ - "what insurance benefits am i getting", - "insurance" - ], - [ - "how would you define my health benefits", - "insurance" - ], - [ - "will you summarize my health benefits", - "insurance" - ], - [ - "define my health benefits", - "insurance" - ], - [ - "how would you describe my health benefits", - "insurance" - ], - [ - "what is the definition of my health benefits", - "insurance" - ], - [ - "can you explain my benefits", - "insurance" - ], - [ - "whats included with my insurance", - "insurance" - ], - [ - "what insurance benefits do i have", - "insurance" - ], - [ - "what do my benefits look like", - "insurance" - ], - [ - "what benefits are included in my package", - "insurance" - ], - [ - "what are my insurance assets", - "insurance" - ], - [ - "what are my insurance advantages", - "insurance" - ], - [ - "what are my insurance perks", - "insurance" - ], - [ - "what are my insurance rewards", - "insurance" - ], - [ - "what are my insurance amenities", - "insurance" - ], - [ - "do you know what my health benefits are", - "insurance" - ], - [ - "please look up the name of my insurance plan", - "insurance" - ], - [ - "can you tell me the name of my insurance plan", - "insurance" - ], - [ - "i need to add the chore of vacuuming to my task list", - "todo_list_update" - ], - [ - "put wash the counters down on my list of pending tasks", - "todo_list_update" - ], - [ - "take doing the dishes off my todo list", - "todo_list_update" - ], - [ - "blank out my todo list", - "todo_list_update" - ], - [ - "erase all items on my todo list", - "todo_list_update" - ], - [ - "delete everything on my todo list", - "todo_list_update" - ], - [ - "add clean bathroom to my to do list", - "todo_list_update" - ], - [ - "go ahead and take cleaning the bathroom off my todo list", - "todo_list_update" - ], - [ - "you can remove vacuuming off the todo list", - "todo_list_update" - ], - [ - "make my todo list blank", - "todo_list_update" - ], - [ - "please take shoveling the car off my todo list", - "todo_list_update" - ], - [ - "i'd like you to remove throw away dvds off my todo list", - "todo_list_update" - ], - [ - "put clean stovetop on my list of reminders", - "todo_list_update" - ], - [ - "nuke all items on my todo list", - "todo_list_update" - ], - [ - "will you put change the light bulbs on my list of things to do", - "todo_list_update" - ], - [ - "delete everything from the task list", - "todo_list_update" - ], - [ - "hurry up and just erase everything from the todo list", - "todo_list_update" - ], - [ - "can you kindly clear my agenda list", - "todo_list_update" - ], - [ - "hey just take off everything from my todo list", - "todo_list_update" - ], - [ - "i don't want to do anything today so just clear the todo list", - "todo_list_update" - ], - [ - "please include feeding the fish on my to do list", - "todo_list_update" - ], - [ - "please remove laundry from my list of chores", - "todo_list_update" - ], - [ - "please clear out my whole to do list", - "todo_list_update" - ], - [ - "i want you to clear out my to do list", - "todo_list_update" - ], - [ - "i want you to add cleaning the toilet to my to do list", - "todo_list_update" - ], - [ - "make sure my to do list is completely clear please", - "todo_list_update" - ], - [ - "please include laundry on my to do list", - "todo_list_update" - ], - [ - "can you please add take out recycling on my list of chores to complete", - "todo_list_update" - ], - [ - "please get rid off everything on my to do list", - "todo_list_update" - ], - [ - "please take feeding the fish off of my list of tasks to complete", - "todo_list_update" - ], - [ - "i need to add dusting the bookshelf to my to do list", - "todo_list_update" - ], - [ - "please put washing the dishes on my list of tasks to accomplish", - "todo_list_update" - ], - [ - "please be sure to put folding laundry on my to do list for me", - "todo_list_update" - ], - [ - "please put watering the plants on my to do list", - "todo_list_update" - ], - [ - "please erase everything on my to do list", - "todo_list_update" - ], - [ - "take watering the plants off of my to do list", - "todo_list_update" - ], - [ - "i just finished taking out my recycling, so cross that off my to do list", - "todo_list_update" - ], - [ - "can you check washing the dishes off on my to do list", - "todo_list_update" - ], - [ - "i need laundry put on my list of tasks to complete", - "todo_list_update" - ], - [ - "please add watering the plants to my current to do list", - "todo_list_update" - ], - [ - "to my domestic task list please add paint kitchen", - "todo_list_update" - ], - [ - "add to my task list get carpet cleaned", - "todo_list_update" - ], - [ - "add clean the bathroom to my task list", - "todo_list_update" - ], - [ - "put clean refrigerator on my spring cleaning to do list", - "todo_list_update" - ], - [ - "on my big project task list please add paint shutters in spring", - "todo_list_update" - ], - [ - "delete my to do list", - "todo_list_update" - ], - [ - "erase get a haircut from my to do list, please", - "todo_list_update" - ], - [ - "i need to include a stop at the pharmacy to the list of things to do", - "todo_list_update" - ], - [ - "please cross off schedule acupuncture appointment off of the to do list", - "todo_list_update" - ], - [ - "please put my acupuncture appointment on my to list", - "todo_list_update" - ], - [ - "can you add a trip to the post office to my to do list, please", - "todo_list_update" - ], - [ - "please also list wash laundry on my to do list", - "todo_list_update" - ], - [ - "will you please put remember to drop off at the dry cleaner's to my current to do list", - "todo_list_update" - ], - [ - "would you kindly remove five mile run from my list of things to do", - "todo_list_update" - ], - [ - "let's go ahead and scratch laundry off my to do list, please!", - "todo_list_update" - ], - [ - "can you delete lunch with david from my to do list", - "todo_list_update" - ], - [ - "put dishes on to do list", - "todo_list_update" - ], - [ - "on my to do list, add dishes", - "todo_list_update" - ], - [ - "i need to do dishes put it on my to do list", - "todo_list_update" - ], - [ - "add dishes to my list", - "todo_list_update" - ], - [ - "cleaning needs to be on my to do list", - "todo_list_update" - ], - [ - "please add cleaning on my list to do", - "todo_list_update" - ], - [ - "cleaning needs to go on my list of things to do", - "todo_list_update" - ], - [ - "on my to do list, add cleaning", - "todo_list_update" - ], - [ - "i need to do cleaning so add it to my to do list", - "todo_list_update" - ], - [ - "on my to do list, i need cleaning added", - "todo_list_update" - ], - [ - "put cleaning on my to do list", - "todo_list_update" - ], - [ - "please put cleaning on my list of things to do", - "todo_list_update" - ], - [ - "add cleaning to my to do list", - "todo_list_update" - ], - [ - "on my list of things to do, add cleaning", - "todo_list_update" - ], - [ - "can you place laundry on my to do list", - "todo_list_update" - ], - [ - "help remind me that i need to add laundry to my list of housework", - "todo_list_update" - ], - [ - "if you could remind me about doing laundry i would appreciate it", - "todo_list_update" - ], - [ - "please remind me to add laundry to my list of chores", - "todo_list_update" - ], - [ - "add laundry to my list of shit to do", - "todo_list_update" - ], - [ - "add change filters to my to do list", - "todo_list_update" - ], - [ - "add schedule appraiser to my to do list", - "todo_list_update" - ], - [ - "add mop bathroom to my to do list", - "todo_list_update" - ], - [ - "add do laundry to my to do list", - "todo_list_update" - ], - [ - "put buy dog food on my to do list", - "todo_list_update" - ], - [ - "on my to do list, add exercising", - "todo_list_update" - ], - [ - "remove all items from todo list", - "todo_list_update" - ], - [ - "add grocery shopping to my list of things to do", - "todo_list_update" - ], - [ - "clear out my entire todo list", - "todo_list_update" - ], - [ - "remove laundry from my todo list", - "todo_list_update" - ], - [ - "put laundry on my to do list", - "todo_list_update" - ], - [ - "nix folding laundry from my todo list", - "todo_list_update" - ], - [ - "add washing dishes to my to do list", - "todo_list_update" - ], - [ - "cross volunteering off my todo list", - "todo_list_update" - ], - [ - "take everything off my todo list", - "todo_list_update" - ], - [ - "i no longer need to wash dishes; take it of my list", - "todo_list_update" - ], - [ - "delete everything on my to do list", - "todo_list_update" - ], - [ - "mark down cleaning the bathroom on my list of things to do", - "todo_list_update" - ], - [ - "throw mopping onto my to do list", - "todo_list_update" - ], - [ - "can you remind me to mop later by putting it on my to do list today", - "todo_list_update" - ], - [ - "will you make sure that mopping is on my to do list", - "todo_list_update" - ], - [ - "will you add mopping to my to do list please", - "todo_list_update" - ], - [ - "can you put mopping on my to do list", - "todo_list_update" - ], - [ - "place cleaning the backyard on my list of things to do", - "todo_list_update" - ], - [ - "please put the meeting with carla on my to do list", - "todo_list_update" - ], - [ - "tell me my reminders", - "reminder" - ], - [ - "tell me my current reminders list", - "reminder" - ], - [ - "please read my reminders", - "reminder" - ], - [ - "will you repeat my reminder list", - "reminder" - ], - [ - "check my reminders for mop and floor", - "reminder" - ], - [ - "read my reminder list to me", - "reminder" - ], - [ - "is mop the floor already in my reminders", - "reminder" - ], - [ - "read back the reminder list", - "reminder" - ], - [ - "what's on the reminder list", - "reminder" - ], - [ - "read my reminders to me", - "reminder" - ], - [ - "check my reminders for mop the floor", - "reminder" - ], - [ - "what reminders do i have", - "reminder" - ], - [ - "read what i added to the reminder list", - "reminder" - ], - [ - "can you list each item on my reminder list", - "reminder" - ], - [ - "can you tell me what reminders i've set", - "reminder" - ], - [ - "tell me what's on my reminder list", - "reminder" - ], - [ - "do i have any reminders to look up how to properly do a potato in my microwave", - "reminder" - ], - [ - "do i have a reminder for our neighbor's anniversary", - "reminder" - ], - [ - "tell my all my reminders", - "reminder" - ], - [ - "is respond to the professor's email on my list of reminders", - "reminder" - ], - [ - "read me my reminders list", - "reminder" - ], - [ - "go through all the reminders on my list and state what they are", - "reminder" - ], - [ - "is there a reminder for my aa meeting on my list", - "reminder" - ], - [ - "speak back to me what's on my reminder list", - "reminder" - ], - [ - "iterate the items on my reminder list", - "reminder" - ], - [ - "please go through my reminder list and tell me what's on it", - "reminder" - ], - [ - "did i add to my reminder list that i need to take the car in for an oil change", - "reminder" - ], - [ - "what did i want to remember again", - "reminder" - ], - [ - "what did i put on my list of reminders", - "reminder" - ], - [ - "can you tell me the reminders i have set up", - "reminder" - ], - [ - "what were the reminders that i made", - "reminder" - ], - [ - "i wanted to remember what again", - "reminder" - ], - [ - "can you remind me what i was trying to remember", - "reminder" - ], - [ - "i had a list of reminders what were they", - "reminder" - ], - [ - "remind me of what i asked you to remember", - "reminder" - ], - [ - "what reminders did i have", - "reminder" - ], - [ - "what are the thing i told you to help me remember", - "reminder" - ], - [ - "read my reminders please", - "reminder" - ], - [ - "what's on my reminder list today", - "reminder" - ], - [ - "do i have anything in my reminders", - "reminder" - ], - [ - "what did i ask to be reminded about", - "reminder" - ], - [ - "check if getting a light bulb is on my list of reminders", - "reminder" - ], - [ - "is buying a light bulb on my reminders list", - "reminder" - ], - [ - "confirm that buy a light bulb is on my list of reminders", - "reminder" - ], - [ - "please read my list of reminders", - "reminder" - ], - [ - "what is now on my reminder list", - "reminder" - ], - [ - "what things are currently on my reminder list", - "reminder" - ], - [ - "tell me what is showing up on my reminder list", - "reminder" - ], - [ - "what are the items on my reminder list", - "reminder" - ], - [ - "can you read my list back to me", - "reminder" - ], - [ - "can you repeat my list back to me", - "reminder" - ], - [ - "can you describe my list back to me", - "reminder" - ], - [ - "what is on my reminder list", - "reminder" - ], - [ - "is checking the mail on my list of reminder", - "reminder" - ], - [ - "i want to see my reminder list", - "reminder" - ], - [ - "what do i want to remember", - "reminder" - ], - [ - "let me know what is on my reminder list", - "reminder" - ], - [ - "can you please repeat my list back to me", - "reminder" - ], - [ - "tell me what is on my reminder list", - "reminder" - ], - [ - "let me see the reminder list please", - "reminder" - ], - [ - "can you read me my list of reminders", - "reminder" - ], - [ - "what do i have on my list of reminders", - "reminder" - ], - [ - "what did i list in my reminders", - "reminder" - ], - [ - "i wanted to remember some things, what were they", - "reminder" - ], - [ - "can you remind me the things i was trying to remember", - "reminder" - ], - [ - "let me know what's on my list of reminders", - "reminder" - ], - [ - "can you tell me what things i was trying to remember", - "reminder" - ], - [ - "tell me what's on my reminders list please", - "reminder" - ], - [ - "what were those things i was trying to remember", - "reminder" - ], - [ - "do you know what things i wanted to remember", - "reminder" - ], - [ - "what are in my reminders list", - "reminder" - ], - [ - "my list of reminders is what", - "reminder" - ], - [ - "on my list of reminders is what", - "reminder" - ], - [ - "the lists of my reminders is what", - "reminder" - ], - [ - "reminders of my list is what", - "reminder" - ], - [ - "is there a reminder set to clean the gutters", - "reminder" - ], - [ - "what do i have on my reminder list", - "reminder" - ], - [ - "please read all the items on my reminder list", - "reminder" - ], - [ - "can you tell me all the reminders i have set on my reminder list", - "reminder" - ], - [ - "did i request a reminder for my niece's graduation", - "reminder" - ], - [ - "can you read my reminder list, please", - "reminder" - ], - [ - "is the company party on my list of reminders", - "reminder" - ], - [ - "did i set up a reminder to clean the bathroom", - "reminder" - ], - [ - "what did i include on my list of things to remember", - "reminder" - ], - [ - "please look to see if paying bills is on my reminders list currently", - "reminder" - ], - [ - "please tell me everything on my list of reminders", - "reminder" - ], - [ - "tell me if flipping the mattress is on my list of reminders please", - "reminder" - ], - [ - "i need to know the content of my list of reminders", - "reminder" - ], - [ - "tell me everything i included on my list of things to remember for later", - "reminder" - ], - [ - "check to see if picking up glenn from the airport is on my list of reminders", - "reminder" - ], - [ - "go through my reminder list with me please", - "reminder" - ], - [ - "i would like to hear you read my reminder list to me", - "reminder" - ], - [ - "i want to hear what is on my reminders list", - "reminder" - ], - [ - "read my list of reminders to me", - "reminder" - ], - [ - "tell me what i had wanted to remember earlier", - "reminder" - ], - [ - "did i include cleaning the hamster cage on my list of reminders", - "reminder" - ], - [ - "walk me through the items on my reminder list", - "reminder" - ], - [ - "i need to know what it is that i wanted to remember before", - "reminder" - ], - [ - "please give me a rundown of my reminder list", - "reminder" - ], - [ - "i want to hear everything on my reminder list", - "reminder" - ], - [ - "can you slow your speaking down", - "change_speed" - ], - [ - "slow down your talking too fast i don't understand you", - "change_speed" - ], - [ - "you're talking too fast i need you to slow it down", - "change_speed" - ], - [ - "you're speaking too fast, slow down", - "change_speed" - ], - [ - "can you speak slower please", - "change_speed" - ], - [ - "can you please speed up your speech settings", - "change_speed" - ], - [ - "i want you to adjust your speaking to be faster", - "change_speed" - ], - [ - "can you speak faster please", - "change_speed" - ], - [ - "i want you to speak to me faster", - "change_speed" - ], - [ - "decrease the speed of your speech please", - "change_speed" - ], - [ - "please speed up your speaking pattern", - "change_speed" - ], - [ - "i want you to talk more slowly", - "change_speed" - ], - [ - "your voice speed is too slow, please increase it", - "change_speed" - ], - [ - "i want your speech settings to be made slower", - "change_speed" - ], - [ - "you are talking far too fast for me, can you slow it down a bit", - "change_speed" - ], - [ - "please make it so you say your words more slowly", - "change_speed" - ], - [ - "can you talk slower please", - "change_speed" - ], - [ - "can you speed up your speech please", - "change_speed" - ], - [ - "i want you to talk more quickly", - "change_speed" - ], - [ - "you are talking too fast for me, please slow down", - "change_speed" - ], - [ - "please increase the speed of your speech, it is too slow", - "change_speed" - ], - [ - "could you slow down your speech", - "change_speed" - ], - [ - "please increase the speed of your talking", - "change_speed" - ], - [ - "please slow down i can't understand you", - "change_speed" - ], - [ - "i want you to speak more slowly to me", - "change_speed" - ], - [ - "speed up your speech", - "change_speed" - ], - [ - "speak slower", - "change_speed" - ], - [ - "i'd like you to talk faster", - "change_speed" - ], - [ - "speak at a slower rate", - "change_speed" - ], - [ - "talk slower, please", - "change_speed" - ], - [ - "slow your roll", - "change_speed" - ], - [ - "slow your speech", - "change_speed" - ], - [ - "slow down your speech", - "change_speed" - ], - [ - "slow down your talking", - "change_speed" - ], - [ - "speak faster, please", - "change_speed" - ], - [ - "speak more quickly, please", - "change_speed" - ], - [ - "i need you to speak faster", - "change_speed" - ], - [ - "you should talk faster", - "change_speed" - ], - [ - "slow your speech down", - "change_speed" - ], - [ - "present your speech at a slower pace", - "change_speed" - ], - [ - "can you slow down", - "change_speed" - ], - [ - "make your speed a bit slower", - "change_speed" - ], - [ - "can you please speed up your speech", - "change_speed" - ], - [ - "make your speech slower than now", - "change_speed" - ], - [ - "change the speed of your voice to slower", - "change_speed" - ], - [ - "slow down", - "change_speed" - ], - [ - "can you please slow down", - "change_speed" - ], - [ - "find a new voice that is slower than your current voice", - "change_speed" - ], - [ - "can you please talk faster", - "change_speed" - ], - [ - "talker faster please", - "change_speed" - ], - [ - "slow the speech down", - "change_speed" - ], - [ - "hey, speak slowly", - "change_speed" - ], - [ - "reduce your speed of voice", - "change_speed" - ], - [ - "hey ai, don't speak fast", - "change_speed" - ], - [ - "hey, slow down and take your time", - "change_speed" - ], - [ - "hey ai, reduce your speed of speaking", - "change_speed" - ], - [ - "can you slow down your speech", - "change_speed" - ], - [ - "how do i slow down my ai's voice", - "change_speed" - ], - [ - "could you speak a little more slowly", - "change_speed" - ], - [ - "how do i change your options so that you speak more slowly", - "change_speed" - ], - [ - "how do i change the speed of my ai's voice", - "change_speed" - ], - [ - "adjust speech rate to a faster setting", - "change_speed" - ], - [ - "please use a quicker rate of speech", - "change_speed" - ], - [ - "speak faster", - "change_speed" - ], - [ - "speed up your talking please", - "change_speed" - ], - [ - "could you not talk so slowly", - "change_speed" - ], - [ - "can you please talk slower", - "change_speed" - ], - [ - "can you talk a bit slower please", - "change_speed" - ], - [ - "can you please not talk so fast", - "change_speed" - ], - [ - "speak slower please", - "change_speed" - ], - [ - "please don't speak so fast", - "change_speed" - ], - [ - "can you speak with me using faster speech", - "change_speed" - ], - [ - "please say things more quickly", - "change_speed" - ], - [ - "will you speak more rapidly", - "change_speed" - ], - [ - "i would like you to increase the speed of your speech please", - "change_speed" - ], - [ - "i'd like you to speak a bit slower", - "change_speed" - ], - [ - "can you change how fast you're talking to speak more slowly", - "change_speed" - ], - [ - "i can't understand you because of how rapidly you're speaking", - "change_speed" - ], - [ - "can you slow down how fast you talk", - "change_speed" - ], - [ - "please speak slower", - "change_speed" - ], - [ - "whoa whoa please slow down", - "change_speed" - ], - [ - "is there any way you can decrease your speaking rate", - "change_speed" - ], - [ - "why are you talking so sloooooooooowly, please speed it up!", - "change_speed" - ], - [ - "can i get you to talk at a slightly faster rate", - "change_speed" - ], - [ - "can you talk at a normal speed please", - "change_speed" - ], - [ - "please stop talking so fast", - "change_speed" - ], - [ - "hey, stop talking like you're a stretch taped", - "change_speed" - ], - [ - "please slow down how you're speaking", - "change_speed" - ], - [ - "you're talking too quickly for me to understand", - "change_speed" - ], - [ - "is it possible to speed up of your replies", - "change_speed" - ], - [ - "where do i find instructions on how to speed up voice replies", - "change_speed" - ], - [ - "how do i speed up the speech of this ai", - "change_speed" - ], - [ - "sorry, can you speak a little faster", - "change_speed" - ], - [ - "sorry, can you speak a little quicker, please", - "change_speed" - ], - [ - "can you speak a little faster, please", - "change_speed" - ], - [ - "sorry, can you speak a little faster, please", - "change_speed" - ], - [ - "could you speak a little faster, please", - "change_speed" - ], - [ - "i need to change your voice settings", - "change_speed" - ], - [ - "can you slow down the speed in which you speak", - "change_speed" - ], - [ - "you're speaking too fast and i need to change that", - "change_speed" - ], - [ - "how's the air pressure in my tires", - "tire_pressure" - ], - [ - "what's my tires current air pressure", - "tire_pressure" - ], - [ - "what's the amount of air in my tires right now", - "tire_pressure" - ], - [ - "are my tire's air pressure good enough to drive on", - "tire_pressure" - ], - [ - "what's the inflation of my tires", - "tire_pressure" - ], - [ - "what's the current psi for my tires", - "tire_pressure" - ], - [ - "how low is the pressure in my tires", - "tire_pressure" - ], - [ - "what's the current tire pressure of my tires", - "tire_pressure" - ], - [ - "is the air pressure in my tires low", - "tire_pressure" - ], - [ - "what's my current tire pressure", - "tire_pressure" - ], - [ - "is the air pressure on my tires low", - "tire_pressure" - ], - [ - "do i need to fill up my tires", - "tire_pressure" - ], - [ - "are my tires in need of air", - "tire_pressure" - ], - [ - "should i put air in my tires", - "tire_pressure" - ], - [ - "are my tires requiring a fill-up", - "tire_pressure" - ], - [ - "are my tires good on air", - "tire_pressure" - ], - [ - "have my tires got adequate amounts of air in them", - "tire_pressure" - ], - [ - "do i need more air in my tires", - "tire_pressure" - ], - [ - "should i be concerned about the air in my tires", - "tire_pressure" - ], - [ - "how is the air level in my tires", - "tire_pressure" - ], - [ - "how much air is in my tires", - "tire_pressure" - ], - [ - "is there air in my tires", - "tire_pressure" - ], - [ - "air amount in tires", - "tire_pressure" - ], - [ - "how high is the air in my tires", - "tire_pressure" - ], - [ - "how much air remains in my tires", - "tire_pressure" - ], - [ - "what is the tire pressure in my car", - "tire_pressure" - ], - [ - "are my tires full or low", - "tire_pressure" - ], - [ - "what is the current tire pressure level in the car", - "tire_pressure" - ], - [ - "tell me my car's tires' air pressure", - "tire_pressure" - ], - [ - "do i need to fill my tires", - "tire_pressure" - ], - [ - "tell me my tires' air pressure", - "tire_pressure" - ], - [ - "what's my tires' air pressure", - "tire_pressure" - ], - [ - "what's my car's tire pressure", - "tire_pressure" - ], - [ - "what is the air pressure in my tires", - "tire_pressure" - ], - [ - "can you tell me the tire pressure in my car", - "tire_pressure" - ], - [ - "what's my air pressure right now", - "tire_pressure" - ], - [ - "what's the air level in my tires", - "tire_pressure" - ], - [ - "tell me my car's tire pressure level", - "tire_pressure" - ], - [ - "how many psi's are my tires at the moment", - "tire_pressure" - ], - [ - "the car feels wobbly so check my tire pressure", - "tire_pressure" - ], - [ - "what is my current tire pressure for each tire", - "tire_pressure" - ], - [ - "tell me ths pressure of my tires", - "tire_pressure" - ], - [ - "please measure my tire pressure", - "tire_pressure" - ], - [ - "the cars riding funny, does the tire pressure feel low to you", - "tire_pressure" - ], - [ - "can you check the tire pressure", - "tire_pressure" - ], - [ - "do the tires look a little low on pressure", - "tire_pressure" - ], - [ - "what is the pressure like on my tires", - "tire_pressure" - ], - [ - "measure tire pressure", - "tire_pressure" - ], - [ - "check my car's tire pressure", - "tire_pressure" - ], - [ - "gauge the tire pressure", - "tire_pressure" - ], - [ - "how much pressure is in my car's tire", - "tire_pressure" - ], - [ - "what is my car's tire pressure", - "tire_pressure" - ], - [ - "are my tires fully inflated", - "tire_pressure" - ], - [ - "do i need to inflate my tires", - "tire_pressure" - ], - [ - "are my tires aired properly", - "tire_pressure" - ], - [ - "are my tires ok on pressure", - "tire_pressure" - ], - [ - "is the pressure in my tires optimal", - "tire_pressure" - ], - [ - "are my tires properly inflated with air", - "tire_pressure" - ], - [ - "are my tires good on pressure", - "tire_pressure" - ], - [ - "do my tires have enough air", - "tire_pressure" - ], - [ - "please check and report on my tire pressure", - "tire_pressure" - ], - [ - "how's my tire pressure", - "tire_pressure" - ], - [ - "i want an evaluation of my car's tire pressure", - "tire_pressure" - ], - [ - "can you give me a reading of my car's tire pressure please", - "tire_pressure" - ], - [ - "i would like to know my car's tire pressure please", - "tire_pressure" - ], - [ - "how are my tires", - "tire_pressure" - ], - [ - "are my tires low", - "tire_pressure" - ], - [ - "should i air up the tires", - "tire_pressure" - ], - [ - "do the tires need air", - "tire_pressure" - ], - [ - "how is the tire pressure", - "tire_pressure" - ], - [ - "how much pressure are currently in my tires", - "tire_pressure" - ], - [ - "how much pressure is in my tires", - "tire_pressure" - ], - [ - "whats the pressure like in my tires", - "tire_pressure" - ], - [ - "how are the tires on air pressure", - "tire_pressure" - ], - [ - "please check the pressure in my tires", - "tire_pressure" - ], - [ - "hows the air in my tires", - "tire_pressure" - ], - [ - "i am needing to know how low the air in my tires are", - "tire_pressure" - ], - [ - "tell me how low the air in my tires are", - "tire_pressure" - ], - [ - "i want to know how low the air in my tires are", - "tire_pressure" - ], - [ - "let me know how low the air in my tires are", - "tire_pressure" - ], - [ - "would you let me know how low the air in my tires are", - "tire_pressure" - ], - [ - "what does my tire pressure look like", - "tire_pressure" - ], - [ - "are my tires under-inflated", - "tire_pressure" - ], - [ - "is my tire pressure in the correct range", - "tire_pressure" - ], - [ - "do my tires need air", - "tire_pressure" - ], - [ - "should i pump my tires", - "tire_pressure" - ], - [ - "are my tires low on air", - "tire_pressure" - ], - [ - "do my tires seem too low on air", - "tire_pressure" - ], - [ - "would it be smart to put air in my tires", - "tire_pressure" - ], - [ - "what's the tire pressure of my car", - "tire_pressure" - ], - [ - "is my tire pressure okay", - "tire_pressure" - ], - [ - "can you tell me what's the car's tire pressure", - "tire_pressure" - ], - [ - "tire pressure please", - "tire_pressure" - ], - [ - "can you check my tire pressure", - "tire_pressure" - ], - [ - "can you tell me what my tire pressure is", - "tire_pressure" - ], - [ - "can you check the air in my tires", - "tire_pressure" - ], - [ - "check how much air is in my tires", - "tire_pressure" - ], - [ - "how much air do i have in my tires", - "tire_pressure" - ], - [ - "tell me what my tire pressure is", - "tire_pressure" - ], - [ - "how full are my tires", - "tire_pressure" - ], - [ - "no, that's incorrect", - "no" - ], - [ - "that's not true", - "no" - ], - [ - "that is not true, it's false", - "no" - ], - [ - "no way", - "no" - ], - [ - "not really", - "no" - ], - [ - "naw", - "no" - ], - [ - "nay", - "no" - ], - [ - "i must say no", - "no" - ], - [ - "i think not", - "no" - ], - [ - "that is actually false", - "no" - ], - [ - "i gotta say no", - "no" - ], - [ - "no thanks", - "no" - ], - [ - "no is the answer", - "no" - ], - [ - "i don't think so", - "no" - ], - [ - "it's a no", - "no" - ], - [ - "i think it is false", - "no" - ], - [ - "not true", - "no" - ], - [ - "that is not true", - "no" - ], - [ - "not at all", - "no" - ], - [ - "that turns out to be false", - "no" - ], - [ - "please, no", - "no" - ], - [ - "not that", - "no" - ], - [ - "definitely not", - "no" - ], - [ - "i would have to say the answer to that is no", - "no" - ], - [ - "i say no to that question", - "no" - ], - [ - "no, that is my response", - "no" - ], - [ - "i don't believe that is possible, it is false", - "no" - ], - [ - "i would say that the statement is definitely false", - "no" - ], - [ - "i am afraid that that is not the case", - "no" - ], - [ - "no, that information is wrong", - "no" - ], - [ - "that is a completely false statement", - "no" - ], - [ - "that would be a no", - "no" - ], - [ - "i do not think that is true, so i would say it is a false statement", - "no" - ], - [ - "incorrect, it is certainly a false statement", - "no" - ], - [ - "i do not believe that that is correct", - "no" - ], - [ - "the answer is definitely no", - "no" - ], - [ - "sorry, that is not true", - "no" - ], - [ - "that's a negative", - "no" - ], - [ - "no!", - "no" - ], - [ - "that's not right", - "no" - ], - [ - "no, don't do that", - "no" - ], - [ - "i don't like that, no", - "no" - ], - [ - "no way!", - "no" - ], - [ - "oh hell no, that'd be terrible!", - "no" - ], - [ - "that's inaccurate", - "no" - ], - [ - "that's not what i want!", - "no" - ], - [ - "that's completely false", - "no" - ], - [ - "that's incorrect!", - "no" - ], - [ - "that's totally wrong!", - "no" - ], - [ - "that's a hard no from me", - "no" - ], - [ - "no don't do that!", - "no" - ], - [ - "no that is not right", - "no" - ], - [ - "false for sure", - "no" - ], - [ - "that's definitely false", - "no" - ], - [ - "nope, that's false", - "no" - ], - [ - "no, that is not right", - "no" - ], - [ - "no, that is inaccurate", - "no" - ], - [ - "no, that can't be right", - "no" - ], - [ - "that is untrue", - "no" - ], - [ - "i disagree that is false", - "no" - ], - [ - "what you just said is false", - "no" - ], - [ - "that is erroneous", - "no" - ], - [ - "no that's wrong", - "no" - ], - [ - "that isn't the right answer", - "no" - ], - [ - "the information is wrong", - "no" - ], - [ - "that is not correct", - "no" - ], - [ - "that is not right", - "no" - ], - [ - "that is wrong", - "no" - ], - [ - "i'll pass", - "no" - ], - [ - "not that one", - "no" - ], - [ - "that's not right, so no", - "no" - ], - [ - "the answer is false", - "no" - ], - [ - "no, that is not right at all", - "no" - ], - [ - "that is overwhelmingly false", - "no" - ], - [ - "that's not right it's false", - "no" - ], - [ - "i say negative", - "no" - ], - [ - "negative for sure", - "no" - ], - [ - "nope", - "no" - ], - [ - "no thank you", - "no" - ], - [ - "that is not the case", - "no" - ], - [ - "no that isn't the case", - "no" - ], - [ - "no that isn't it", - "no" - ], - [ - "no that isn't correct", - "no" - ], - [ - "that would be \"no", - "no" - ], - [ - "you are wrong", - "no" - ], - [ - "no that is wrong", - "no" - ], - [ - "that is false", - "no" - ], - [ - "negative", - "no" - ], - [ - "what you just said is wrong", - "no" - ], - [ - "that\u2019s actually wrong", - "no" - ], - [ - "that\u2019s not correct", - "no" - ], - [ - "that\u2019s incorrect", - "no" - ], - [ - "are you sure i don\u2019t think that\u2019s correct", - "no" - ], - [ - "that'd be a no", - "no" - ], - [ - "nada", - "no" - ], - [ - "the answer is no", - "no" - ], - [ - "i think that's false", - "no" - ], - [ - "i believe that to be false", - "no" - ], - [ - "it seems not", - "no" - ], - [ - "that would be false", - "no" - ], - [ - "is the apr on my credit card good", - "apr" - ], - [ - "how good is the apr on my credit card", - "apr" - ], - [ - "do i have a good apr on my credit card", - "apr" - ], - [ - "does my credit card apr fall into a good range", - "apr" - ], - [ - "tell me how the apr on my hy-vee card is", - "apr" - ], - [ - "what's my apr on my discovery card", - "apr" - ], - [ - "what's an example of a good apr and what do i have", - "apr" - ], - [ - "how much is my apr on my bank of america card", - "apr" - ], - [ - "is my visa card's apr decent", - "apr" - ], - [ - "how good is the apr on my mastercard compared to others", - "apr" - ], - [ - "is the apr rate on my amex pretty good", - "apr" - ], - [ - "can you inform me what my apr is on my visa", - "apr" - ], - [ - "how high is the apr on my mastercard", - "apr" - ], - [ - "how much is my amex's apr", - "apr" - ], - [ - "what's the current apr for my mastercard", - "apr" - ], - [ - "how much do i pay in apr on my amex card", - "apr" - ], - [ - "what is the apr on my master card", - "apr" - ], - [ - "what is the apr on my visa card", - "apr" - ], - [ - "what is the apr on my discover card", - "apr" - ], - [ - "what is the apr on my chase freedom card", - "apr" - ], - [ - "what is the apr on my american express card", - "apr" - ], - [ - "what is the credit card apr exactly", - "apr" - ], - [ - "what is the credit card apr at the moment", - "apr" - ], - [ - "what is the credit card apr if you could fill me in", - "apr" - ], - [ - "what is the credit card apr please", - "apr" - ], - [ - "what is the credit card apr if you could tell me", - "apr" - ], - [ - "could you tell me what is the apr for the credit card", - "apr" - ], - [ - "could you please state the apr for the credit card", - "apr" - ], - [ - "what is the credit card's apr", - "apr" - ], - [ - "what is the apr for the credit card", - "apr" - ], - [ - "could you please tell me the apr for the credit card", - "apr" - ], - [ - "what is the apr rate on my bank of america card", - "apr" - ], - [ - "i need to know on my citibank card, what is the apr", - "apr" - ], - [ - "i need to know the apr on my credit union visa", - "apr" - ], - [ - "on my bank of america visa, what is the apr", - "apr" - ], - [ - "what is the apr on my aaa visa card", - "apr" - ], - [ - "review of my card apr", - "apr" - ], - [ - "how good is card apr", - "apr" - ], - [ - "can you give me an appraisal of my card's apr", - "apr" - ], - [ - "tell me the apr on my mastercard", - "apr" - ], - [ - "give me the apr for my mastercard", - "apr" - ], - [ - "fill me in on the apr for my american express card", - "apr" - ], - [ - "would you say that my card's apr is", - "apr" - ], - [ - "give me information about my card's apr", - "apr" - ], - [ - "what is the apr on my barclay's card", - "apr" - ], - [ - "i need to know the apr for my visa card", - "apr" - ], - [ - "can you look into whether my card has good apr or not", - "apr" - ], - [ - "tell me how good the apr is on my card please", - "apr" - ], - [ - "i must know my visa card's apr", - "apr" - ], - [ - "i need the apr on my visa card", - "apr" - ], - [ - "get me the apr on my visa card", - "apr" - ], - [ - "the apr on my visa card is what", - "apr" - ], - [ - "can you tell me the apr on my visa card", - "apr" - ], - [ - "my visa card what's the apr on that", - "apr" - ], - [ - "the apr on my disney visa, what is that exactly", - "apr" - ], - [ - "i'd like to know the apr on my visa card", - "apr" - ], - [ - "hey siri, tell me the apr on my disney visa", - "apr" - ], - [ - "check the apr on my disney visa, please", - "apr" - ], - [ - "how much is the apr these days on my nordstrom credit card", - "apr" - ], - [ - "on my wells fargo mastercard, what is the current apr", - "apr" - ], - [ - "tell me the current apr on my visa card from bbt", - "apr" - ], - [ - "what is the apr on my chase visa", - "apr" - ], - [ - "what will the apr on my transferred balance be after the first year on my bank of america credit card", - "apr" - ], - [ - "what's my apr on the credit card i used for a purchase a week ago", - "apr" - ], - [ - "what's my apr on the card i recently used to make a purchase", - "apr" - ], - [ - "what's my apr on my primary credit card", - "apr" - ], - [ - "what's my apr on this card", - "apr" - ], - [ - "what's the apr like for my credit card", - "apr" - ], - [ - "this credit card's apr is what", - "apr" - ], - [ - "what apr do i have with my credit card", - "apr" - ], - [ - "what apr does this credit card have", - "apr" - ], - [ - "what is the apr to my credit card", - "apr" - ], - [ - "i want you to tell me my credit card's apr", - "apr" - ], - [ - "tell me what my credit card's apr is", - "apr" - ], - [ - "would you please inform me about my credit card's apr", - "apr" - ], - [ - "do you know my credit card's apr", - "apr" - ], - [ - "it would be great if you could tell me my credit card's apr", - "apr" - ], - [ - "what is my credit card's annual percentage rate", - "apr" - ], - [ - "tell me my credit card's annual percentage rate", - "apr" - ], - [ - "my credit card's apr, please", - "apr" - ], - [ - "can you let me know my credit card's apr", - "apr" - ], - [ - "what is my apr for my credit card", - "apr" - ], - [ - "what is my apr", - "apr" - ], - [ - "i want to know my credit card apr", - "apr" - ], - [ - "is my apr for my credit card available", - "apr" - ], - [ - "tell me my credit card apr", - "apr" - ], - [ - "what's the apr on my visa card, please", - "apr" - ], - [ - "what's the apr on my amex card", - "apr" - ], - [ - "what's the apr on my amex card, please", - "apr" - ], - [ - "what is the apr on my amex card, please", - "apr" - ], - [ - "what is the apr on my amex card", - "apr" - ], - [ - "give me my credit card's apr", - "apr" - ], - [ - "what is the apr for my credit card", - "apr" - ], - [ - "please say my credit card's apr", - "apr" - ], - [ - "what is my credit card's apr", - "apr" - ], - [ - "please say the apr for my credit card", - "apr" - ], - [ - "credit card annual rate", - "apr" - ], - [ - "what's the annual rate on my discover card", - "apr" - ], - [ - "tell me the apr of my credit card", - "apr" - ], - [ - "what's the apr of my discover card", - "apr" - ], - [ - "what's the nutritional info for spaghetti", - "nutrition_info" - ], - [ - "what's the nutritional info for pizza", - "nutrition_info" - ], - [ - "how healthy are potato skins", - "nutrition_info" - ], - [ - "how healthy is spaghetti", - "nutrition_info" - ], - [ - "share the nutrition info for brownies with me", - "nutrition_info" - ], - [ - "share the nutrition info for french fries with me", - "nutrition_info" - ], - [ - "what's the nutritional info for potato skins", - "nutrition_info" - ], - [ - "what's the nutritional info for lasagna", - "nutrition_info" - ], - [ - "how healthy are french fries", - "nutrition_info" - ], - [ - "share the nutrition info for spaghetti with me", - "nutrition_info" - ], - [ - "share the nutrition info for cake with me", - "nutrition_info" - ], - [ - "what's the nutritional info for french fries", - "nutrition_info" - ], - [ - "how healthy is tomato soup", - "nutrition_info" - ], - [ - "share the nutrition info for pizza with me", - "nutrition_info" - ], - [ - "what do you know to be the nutritional info for macaroni and cheese to be", - "nutrition_info" - ], - [ - "the nutritional info for macaroni and cheese is what", - "nutrition_info" - ], - [ - "can you read to me the nutritional info for macaroni and cheese", - "nutrition_info" - ], - [ - "do you know the nutritional info for macaroni and cheese", - "nutrition_info" - ], - [ - "can you remember the nutritional info for macaroni and cheese", - "nutrition_info" - ], - [ - "is it healthy to eat pizza", - "nutrition_info" - ], - [ - "is pizza healthy", - "nutrition_info" - ], - [ - "how healthy is pizza", - "nutrition_info" - ], - [ - "could pizza be healthy", - "nutrition_info" - ], - [ - "is pizza considered healthy", - "nutrition_info" - ], - [ - "i'd like to know the nutritional content of eggs, please", - "nutrition_info" - ], - [ - "what's the nutrition content of chicken nuggets", - "nutrition_info" - ], - [ - "give me the nutrition facts for chicken breast", - "nutrition_info" - ], - [ - "what's the nutritional information for steak", - "nutrition_info" - ], - [ - "can you tell me the nutritional content of chicken nuggets", - "nutrition_info" - ], - [ - "what's the nutritional information of iceberg lettuce", - "nutrition_info" - ], - [ - "what kind of nutritional content do carrots have", - "nutrition_info" - ], - [ - "nutritional information for celery", - "nutrition_info" - ], - [ - "what are the nutritional facts of waffles", - "nutrition_info" - ], - [ - "can you tell me the nutrition info for pork sausage", - "nutrition_info" - ], - [ - "what's the nutritional info for an apple", - "nutrition_info" - ], - [ - "what's the nutritional info for chicken breast", - "nutrition_info" - ], - [ - "what's the nutritional info for a banana", - "nutrition_info" - ], - [ - "what's the nutritional info for a cheeseburger", - "nutrition_info" - ], - [ - "what's the nutritional info for a loaf of bread", - "nutrition_info" - ], - [ - "mashed potato's nutrition", - "nutrition_info" - ], - [ - "nutrition information of mashed potatoes", - "nutrition_info" - ], - [ - "what are the nutritional data for mashed potatoes", - "nutrition_info" - ], - [ - "are mashed potatoes good nutrition", - "nutrition_info" - ], - [ - "give me the nutritional information for mashed potatoes", - "nutrition_info" - ], - [ - "how healthy are apples", - "nutrition_info" - ], - [ - "i want to know if pizza is healthy", - "nutrition_info" - ], - [ - "can you tell me how healthy apples are", - "nutrition_info" - ], - [ - "are pasta dishes healthy", - "nutrition_info" - ], - [ - "do you know the nutrition facts for grapes", - "nutrition_info" - ], - [ - "i must know the nutritional info for grapes", - "nutrition_info" - ], - [ - "grapes have what kind of nutritional facts", - "nutrition_info" - ], - [ - "tell me the nutrition for grapes", - "nutrition_info" - ], - [ - "can you show me the nutrition facts for grapes", - "nutrition_info" - ], - [ - "i want to know the nutrition info for chicken nuggets", - "nutrition_info" - ], - [ - "tell me the nutritional information for chicken nuggets", - "nutrition_info" - ], - [ - "nutrition information for chicken nuggets, please", - "nutrition_info" - ], - [ - "can you tell me the nutritional information for chicken nuggets", - "nutrition_info" - ], - [ - "i would like you to share with me the nutrition info for chicken nuggets", - "nutrition_info" - ], - [ - "i want to know how nutritious an avocado typically is", - "nutrition_info" - ], - [ - "can you give me nutritional info on oranges", - "nutrition_info" - ], - [ - "can you tell me how many calories are in an apple", - "nutrition_info" - ], - [ - "i would like to know how much fat is in tbsp of olive oil", - "nutrition_info" - ], - [ - "can you give the nutritional information for the pasta", - "nutrition_info" - ], - [ - "let me see the nutrition content of the chicken tacos", - "nutrition_info" - ], - [ - "i need to see the chicken salad's nutritional info", - "nutrition_info" - ], - [ - "i need to know all about the nutrition of the beef taco", - "nutrition_info" - ], - [ - "i want to see the nutritional content of the hamburger", - "nutrition_info" - ], - [ - "what sort of nutrients does a steak have", - "nutrition_info" - ], - [ - "what's the facts about nutrients in rice milk", - "nutrition_info" - ], - [ - "what type of nutrition does spaghetti have", - "nutrition_info" - ], - [ - "how many kinds of nutrients does a glass of rice milk have", - "nutrition_info" - ], - [ - "can you give me information about the nutrition facts for celery", - "nutrition_info" - ], - [ - "what's the nutrient make up of a plate of spaghetti", - "nutrition_info" - ], - [ - "what's the nutrient info for a donut", - "nutrition_info" - ], - [ - "what's the nutritional info for a ganola bar", - "nutrition_info" - ], - [ - "can you tell me about the nutrients in jello", - "nutrition_info" - ], - [ - "how many nutrients are there in a bowl of cereal", - "nutrition_info" - ], - [ - "i need to know how healthy meatloaf is", - "nutrition_info" - ], - [ - "what are the nutrition facts of grilled chicken", - "nutrition_info" - ], - [ - "what are the nutrition facts for macaroni and cheese", - "nutrition_info" - ], - [ - "please fill me in on the nutrition facts for shrimp scampi", - "nutrition_info" - ], - [ - "is spaghetti healthy", - "nutrition_info" - ], - [ - "tell me how healthy mac and cheese is", - "nutrition_info" - ], - [ - "please give me the nutrition facts for chicken parmesan", - "nutrition_info" - ], - [ - "how healthy is grilled chicken", - "nutrition_info" - ], - [ - "i want to know the nutrition facts for pizza", - "nutrition_info" - ], - [ - "do you have nutrition facts for cheerios", - "nutrition_info" - ], - [ - "where are the nutrition facts for cheerios", - "nutrition_info" - ], - [ - "how nutritious are cheerios", - "nutrition_info" - ], - [ - "where on the cheerios box are the nutrition facts", - "nutrition_info" - ], - [ - "does the box have nutrition facts for cheerios on it", - "nutrition_info" - ], - [ - "what are the nutrition facts for a mcdouble at mcdonalds", - "nutrition_info" - ], - [ - "how healthy are lunchables", - "nutrition_info" - ], - [ - "what are the nutrition facts for a medium popcorn at the movies", - "nutrition_info" - ], - [ - "what's the nutritional info for a subway chicken sandwhich", - "nutrition_info" - ], - [ - "what are the nutrition facts for a rodeo cheese burger at burger king", - "nutrition_info" - ], - [ - "how healthy is pho", - "nutrition_info" - ], - [ - "what's the nutritional value for a pizza lunchable", - "nutrition_info" - ], - [ - "how healthy is stax chips", - "nutrition_info" - ], - [ - "what's the nutritional info for a cup of noodle soup", - "nutrition_info" - ], - [ - "does my calendar have anything for january 1st", - "calendar" - ], - [ - "what is there on january 1st on my calendar", - "calendar" - ], - [ - "are there any events on my calendar for january 1st", - "calendar" - ], - [ - "what do i have to do on january 1st", - "calendar" - ], - [ - "do i have anything scheduled on january 1st", - "calendar" - ], - [ - "what items do i have on my calendar for easter", - "calendar" - ], - [ - "what do i have on my calendar today, the 3rd", - "calendar" - ], - [ - "what've i got set for friday, the 13th, of next year", - "calendar" - ], - [ - "is my daughter's birthday on my calendar", - "calendar" - ], - [ - "did i had my wife and mine anniversary to my calendar", - "calendar" - ], - [ - "did i put an item on the calendar to get the dog neutered", - "calendar" - ], - [ - "can you tell me what's on my calendar for march 05, 2019", - "calendar" - ], - [ - "does the calendar already have easter noted on it", - "calendar" - ], - [ - "do i have a note on the calendar for black friday", - "calendar" - ], - [ - "what's on my calendar for march 01", - "calendar" - ], - [ - "anything on the schedule for october 14th", - "calendar" - ], - [ - "what does my schedule look like for april 1", - "calendar" - ], - [ - "do i have anything to do march 2nd", - "calendar" - ], - [ - "what do i have on my calendar for february 8", - "calendar" - ], - [ - "how is my calendar looking for may 6th", - "calendar" - ], - [ - "what do i have planned on my calendar for next sunday", - "calendar" - ], - [ - "do i have anything on my calendar next sunday", - "calendar" - ], - [ - "show me my calendar for next sunday", - "calendar" - ], - [ - "is my calendar free next sunday", - "calendar" - ], - [ - "what is on my calendar next sunday", - "calendar" - ], - [ - "what do i have scheduled on march 2nd on my calendar", - "calendar" - ], - [ - "are there any events on my calendar for march 2nd", - "calendar" - ], - [ - "have i scheduled anything on march 2nd on my calendar", - "calendar" - ], - [ - "do i have anything on my calendar for march 2nd", - "calendar" - ], - [ - "what do i have going on march 2nd on my calendar", - "calendar" - ], - [ - "what's happening on may 3rd", - "calendar" - ], - [ - "what's in the books for april 30th", - "calendar" - ], - [ - "what do i have going on may 4th", - "calendar" - ], - [ - "what is on my calander for valentines day", - "calendar" - ], - [ - "on the 26th what is on the table for my calendar", - "calendar" - ], - [ - "when am i next having a meeting in december", - "calendar" - ], - [ - "what is currently on my calendar for friday the 1st", - "calendar" - ], - [ - "tell what is showing on my calendar for the 17th of march", - "calendar" - ], - [ - "i wanna know what is currently on my calendar for friday the 1st", - "calendar" - ], - [ - "let me know what is showing on my calendar for the 17th of march", - "calendar" - ], - [ - "please inform me what is showing on my calendar for the 17th of march", - "calendar" - ], - [ - "i must know what is currently on my calendar for friday the 1st", - "calendar" - ], - [ - "i need to know what is currently on my calendar for friday the 1st", - "calendar" - ], - [ - "what is showing on my calendar for the 17th of march", - "calendar" - ], - [ - "i gotta know what is currently on my calendar for friday the 1st", - "calendar" - ], - [ - "tell me what is showing on my calendar for the 17th of march", - "calendar" - ], - [ - "what do i have scheduled on 3/15", - "calendar" - ], - [ - "what do i have planned on 3/15", - "calendar" - ], - [ - "what do i have to do on march 2 that's on my calendar", - "calendar" - ], - [ - "tell me what is on my calendar for march 2", - "calendar" - ], - [ - "what do i have on my calendar for march 2", - "calendar" - ], - [ - "let me know my march 2 calendar", - "calendar" - ], - [ - "what is on march 2 calendar", - "calendar" - ], - [ - "what time is my haircut on wednesday", - "calendar" - ], - [ - "do i have any appointments on tuesday", - "calendar" - ], - [ - "can you see whether i have an event called amy's surprise party on my calendar", - "calendar" - ], - [ - "can you tell me what my may 1st will be like according to my calendar", - "calendar" - ], - [ - "tell me everything on my calendar for may 1", - "calendar" - ], - [ - "remind me of the date of the event called 'anniversary dinner", - "calendar" - ], - [ - "what is on my schedule for the day of march 5th", - "calendar" - ], - [ - "what do i have scheduled for february 28th", - "calendar" - ], - [ - "what events are on my calendar for april 1st", - "calendar" - ], - [ - "is there an event titled anniversary dinner on my calendar", - "calendar" - ], - [ - "tell me if there is an event called annual physical in my calendar", - "calendar" - ], - [ - "can you give me an overview of what march 23 will look like for me", - "calendar" - ], - [ - "tell me what my calendar looks like for march 12th", - "calendar" - ], - [ - "check my calendar to see if an event called final exams exists", - "calendar" - ], - [ - "what do i have on my calendar for march 11", - "calendar" - ], - [ - "does my calendar include an event called shana's baby shower", - "calendar" - ], - [ - "pull up my calendar and tell me what i have scheduled for march 30", - "calendar" - ], - [ - "do i have anything on my schedule for april 15", - "calendar" - ], - [ - "tell me any events scheduled on my calendar for april 15", - "calendar" - ], - [ - "tell me what my calendar looks like for april 13", - "calendar" - ], - [ - "what have i got planned for the date of april 23", - "calendar" - ], - [ - "tell me what is on my calendar for april 1", - "calendar" - ], - [ - "the 21st, what is on my calendar", - "calendar" - ], - [ - "what's on the calendar for march 4th", - "calendar" - ], - [ - "what's on my calendar for tuesday", - "calendar" - ], - [ - "what's on my calendar for the 18th of march", - "calendar" - ], - [ - "i have what to do on wednesday", - "calendar" - ], - [ - "what do i have scheduled for march 2", - "calendar" - ], - [ - "do i have anything on my calendar for may 3", - "calendar" - ], - [ - "i want my schedule for march 2", - "calendar" - ], - [ - "tell me what is on my calendar for may 3", - "calendar" - ], - [ - "what's on my schedule for may 3", - "calendar" - ], - [ - "read me my schedule for march 2", - "calendar" - ], - [ - "do i have anything on my schedule for may 3", - "calendar" - ], - [ - "read my appointments for march 2", - "calendar" - ], - [ - "what is on my schedule for tomorrow", - "calendar" - ], - [ - "search my calendar for birthday party", - "calendar" - ], - [ - "do i have 30th birthday party on my calendar", - "calendar" - ], - [ - "search my calendar for birthday", - "calendar" - ], - [ - "check my calendar for 30th birthday party", - "calendar" - ], - [ - "check my calendar for saturday", - "calendar" - ], - [ - "tell me what's on the calendar for saturday", - "calendar" - ], - [ - "read my calendar events", - "calendar" - ], - [ - "what's on my agenda for tomorrow", - "calendar" - ], - [ - "what am i supposed to be doing today", - "calendar" - ], - [ - "what do i have planned for tomorrow", - "calendar" - ], - [ - "what do i have on my calendar for monday the 1st of march", - "calendar" - ], - [ - "book an uber for 6 people to go to the movies", - "uber" - ], - [ - "i need an uber for 6 people to the movies", - "uber" - ], - [ - "book a 6 person uber to the movies", - "uber" - ], - [ - "i need an uber to the movies for me and 5 other people", - "uber" - ], - [ - "i'm going to the movies book an uber for 6 people", - "uber" - ], - [ - "i need an uber to take me to the mall", - "uber" - ], - [ - "are there any ubers available that fit 5 people we are going to wendys", - "uber" - ], - [ - "call an uber that fits 5 people that are on their way to wendys", - "uber" - ], - [ - "book an uber suitable for seating 5 individuals and headed for the mall", - "uber" - ], - [ - "book me an uber to olive garden", - "uber" - ], - [ - "please book an uber for chima's", - "uber" - ], - [ - "call an uber to mark's house", - "uber" - ], - [ - "call an uber to mcdonalds", - "uber" - ], - [ - "i need an uber for 5 people to go to wendys", - "uber" - ], - [ - "please order an uber for me to go to the zoo", - "uber" - ], - [ - "can you please book an uber to the zoo", - "uber" - ], - [ - "order a large uber for 5 people to the zoo", - "uber" - ], - [ - "schedule an uber to the bean", - "uber" - ], - [ - "i am in need of an uber to the hospital", - "uber" - ], - [ - "i need an uber to times square asap", - "uber" - ], - [ - "i need an uber that will accommodate eight people to go to the closest amc theater", - "uber" - ], - [ - "can i get an uber for five people to go to the national gallery of art", - "uber" - ], - [ - "i need to get an uber for three people to go to the zoo", - "uber" - ], - [ - "i want to get an uber for one person to go to the library", - "uber" - ], - [ - "i need an uber that fits ten people to go to chipotle", - "uber" - ], - [ - "get an uber to take me to my brother's house in mineola", - "uber" - ], - [ - "i need an uber for 3 passengers to go to madison square garden", - "uber" - ], - [ - "get an uber to pick me up at work and take me home", - "uber" - ], - [ - "we need an uber pool for 2 passengers going to the greenboro airport", - "uber" - ], - [ - "find an uber xl to take me to the kroger near me", - "uber" - ], - [ - "find an uber for two passengers we are going to the airport in toledo", - "uber" - ], - [ - "i need an uber with a car seat for 2 adults and one child to take us to wilmington, de", - "uber" - ], - [ - "get an uber for 4 passengers to get us to the phl airport", - "uber" - ], - [ - "i need an uber pool from home in the morning at seven to the capitol building", - "uber" - ], - [ - "i need an uber to class tonight on the mainline campus", - "uber" - ], - [ - "can i get an uber for 2 home", - "uber" - ], - [ - "can i get an uber to central park for 5", - "uber" - ], - [ - "can i get a car to the baseball field for 12", - "uber" - ], - [ - "can i get an uber for 4 to the mall", - "uber" - ], - [ - "can i get an uber for myself to the grocery store", - "uber" - ], - [ - "i need to go to phoenix sky harbor airport using uber", - "uber" - ], - [ - "can you send me an uber to go to a restaurant in downtown phoenix", - "uber" - ], - [ - "is there any uber available to take me to the airport", - "uber" - ], - [ - "i want to reserve an uber to go to the airport", - "uber" - ], - [ - "i need an uber please", - "uber" - ], - [ - "help me get an uber to soldier field", - "uber" - ], - [ - "help me get an uber to ann arbor", - "uber" - ], - [ - "i need an uber to the sears tower", - "uber" - ], - [ - "can you get me an uber to the science museum", - "uber" - ], - [ - "assist me with finding an uber to big ben", - "uber" - ], - [ - "book an uber with the destination set to david's house, please", - "uber" - ], - [ - "i need an uber reserved to take me to the restaurant", - "uber" - ], - [ - "i would like an uber going to the train station, please", - "uber" - ], - [ - "please book me an uber ride to the stadium", - "uber" - ], - [ - "can you please reserve my uber to go to devon's seafood restaurant", - "uber" - ], - [ - "can you please order me an uber to get to jfk international", - "uber" - ], - [ - "please book me an uber and enter destination penn station, new york", - "uber" - ], - [ - "make an uber reservation to the ymca, center city, philadelphia, please", - "uber" - ], - [ - "i need an uber to get to dulles airport", - "uber" - ], - [ - "i would like an uber going to atlantic city, new jersey", - "uber" - ], - [ - "i need an uber", - "uber" - ], - [ - "please get me an uber to get to the movies", - "uber" - ], - [ - "i would like to get an uber to the movies", - "uber" - ], - [ - "i would like an uber please", - "uber" - ], - [ - "am i able to get an uber to the movies", - "uber" - ], - [ - "can you get me an uber to the movies", - "uber" - ], - [ - "i want an uber", - "uber" - ], - [ - "i need an uber to the movies", - "uber" - ], - [ - "get me an uber", - "uber" - ], - [ - "i would like to request an uber please", - "uber" - ], - [ - "uber, i have 3 people who are going to union station", - "uber" - ], - [ - "i need to get 3 riders to union station", - "uber" - ], - [ - "i want to book uber for 3 people to union station", - "uber" - ], - [ - "3 of us need to get to union station via uber", - "uber" - ], - [ - "can i get an uber to union station for 3 riders", - "uber" - ], - [ - "i need an uber to the doctor", - "uber" - ], - [ - "i need to catch an uber to cal expo", - "uber" - ], - [ - "schedule an uber to the mall", - "uber" - ], - [ - "get me an uber to the napa winery", - "uber" - ], - [ - "schedule me an uber to my job", - "uber" - ], - [ - "schedule me an uber to the mall", - "uber" - ], - [ - "get me an uber to the airport", - "uber" - ], - [ - "get me an uber to chilis", - "uber" - ], - [ - "book an uber to school", - "uber" - ], - [ - "get an uber to the airport", - "uber" - ], - [ - "ai i need to go to charlies with eight adults can you get uber", - "uber" - ], - [ - "ai i have 4 people need to get to get me uber", - "uber" - ], - [ - "i am stranded and need uber", - "uber" - ], - [ - "set me up with an uber", - "uber" - ], - [ - "i will need an uber for 3 to go to jfk airport", - "uber" - ], - [ - "i need an uber for 2 for orlando", - "uber" - ], - [ - "get me an uber for 4 heading to miam", - "uber" - ], - [ - "i will need an uber for 2 people to get to philadelphia", - "uber" - ], - [ - "i need to uber somewhere", - "uber" - ], - [ - "help me get an uber", - "uber" - ], - [ - "schedule an uber for 3 to go to the airport", - "uber" - ], - [ - "call an uber for 2 people to go to fourth street live", - "uber" - ], - [ - "i'm going to need an uber to take 4 people to the mall", - "uber" - ], - [ - "i need an uber for 7 people to go to safire restaurant", - "uber" - ], - [ - "can you call an uber for 2 to go to proof on main", - "uber" - ], - [ - "what is 7 x 7", - "calculator" - ], - [ - "please add 456 and 781 for me", - "calculator" - ], - [ - "what is 8 factorial", - "calculator" - ], - [ - "can you tell me what 30% off 279 is", - "calculator" - ], - [ - "can you tell me what 30% off 235 is, please", - "calculator" - ], - [ - "what is the sum of 3 plus 5", - "calculator" - ], - [ - "could you tell me what 30% off 235 is, please", - "calculator" - ], - [ - "can you tell me what 30% off 235 is", - "calculator" - ], - [ - "can you tell me what 30% off 279 is, please", - "calculator" - ], - [ - "what is the sum of 10 plus 5", - "calculator" - ], - [ - "what is 4 + 4", - "calculator" - ], - [ - "what is 60 percent off of 350 dollars", - "calculator" - ], - [ - "what is an 18 percent tip on 20 dollars", - "calculator" - ], - [ - "what is 25 percent of 6999", - "calculator" - ], - [ - "can you tell me what is 18 percent of $2500", - "calculator" - ], - [ - "what is 3/4 of 18", - "calculator" - ], - [ - "i need to know what is 85% of $1500", - "calculator" - ], - [ - "what is 20% of a thousand", - "calculator" - ], - [ - "what is 55 times 300", - "calculator" - ], - [ - "what is the square root of 1 million", - "calculator" - ], - [ - "will you help me with a math problem", - "calculator" - ], - [ - "can you help me solve a math problem", - "calculator" - ], - [ - "how to solve this math problem", - "calculator" - ], - [ - "what is 4 + 7", - "calculator" - ], - [ - "what is 4 x 4", - "calculator" - ], - [ - "what is 2 + 2", - "calculator" - ], - [ - "what is 20+ 5", - "calculator" - ], - [ - "what is 500 x 25", - "calculator" - ], - [ - "what is 2+2", - "calculator" - ], - [ - "what is 10 + 20", - "calculator" - ], - [ - "what is 22+ 6", - "calculator" - ], - [ - "what is the square root of 80", - "calculator" - ], - [ - "what is 5 x 4", - "calculator" - ], - [ - "what is 15% of 3143", - "calculator" - ], - [ - "what is the square root of 10294", - "calculator" - ], - [ - "how many square feet is a 13 by 74 room", - "calculator" - ], - [ - "what is three quarters of one sixth", - "calculator" - ], - [ - "what is 213 times 3", - "calculator" - ], - [ - "what is the square root of 144", - "calculator" - ], - [ - "what is the antilog of 365", - "calculator" - ], - [ - "what is 78 times 85", - "calculator" - ], - [ - "what is 250 times 118 times 9", - "calculator" - ], - [ - "what is 78 times 81 minus 5", - "calculator" - ], - [ - "what is 1785 minus 334 minus 87 plus 374 minus 400 plus 17", - "calculator" - ], - [ - "help me with math", - "calculator" - ], - [ - "i need you to help me with some math if you can", - "calculator" - ], - [ - "please help with my math", - "calculator" - ], - [ - "can you help me do math", - "calculator" - ], - [ - "can you do a math problem", - "calculator" - ], - [ - "what is 1 million twelve hundred divided by 400 thousand", - "calculator" - ], - [ - "what is the square root of 10500", - "calculator" - ], - [ - "what is 20 times 20 times 30", - "calculator" - ], - [ - "what is 10 to the 12th power", - "calculator" - ], - [ - "how much is 50 plus 756", - "calculator" - ], - [ - "what is 750 divided by 5", - "calculator" - ], - [ - "if i win 200000 how do i split it 7 ways", - "calculator" - ], - [ - "what is 900 times 8", - "calculator" - ], - [ - "can you tell me what 80 divided buy 4 is", - "calculator" - ], - [ - "560 divided by 3", - "calculator" - ], - [ - "what is 606 divided by 5", - "calculator" - ], - [ - "subtract 100 from 12", - "calculator" - ], - [ - "what is 005 percent of 1 percent", - "calculator" - ], - [ - "what is the square root of 31", - "calculator" - ], - [ - "what is six divided by 16", - "calculator" - ], - [ - "how many times can 12 go into 600", - "calculator" - ], - [ - "what is the square root of sixteen", - "calculator" - ], - [ - "what is 562 times 400", - "calculator" - ], - [ - "add twelve and twelve please", - "calculator" - ], - [ - "what is 10 + 10", - "calculator" - ], - [ - "what is the square root of 5", - "calculator" - ], - [ - "what is 1/2 times 5/8", - "calculator" - ], - [ - "what is 80980 + 098098 + 80980 + 1243", - "calculator" - ], - [ - "what is 13 times 45", - "calculator" - ], - [ - "what is 34 times 80908", - "calculator" - ], - [ - "what is 90908 divided by 30890", - "calculator" - ], - [ - "what is 38% of 389209", - "calculator" - ], - [ - "what is the square root of 66", - "calculator" - ], - [ - "what is 2/3 x 1/9", - "calculator" - ], - [ - "can you do algebra", - "calculator" - ], - [ - "what is 1 fifth times 2 fifths", - "calculator" - ], - [ - "what's 3 plus 3", - "calculator" - ], - [ - "what's ten times eight", - "calculator" - ], - [ - "i need to know what 75 plus 43 is", - "calculator" - ], - [ - "what do you get if you divide 3 by 2", - "calculator" - ], - [ - "what is the area of a 20 x 20 room", - "calculator" - ], - [ - "subtract 85 from 997", - "calculator" - ], - [ - "what is 20 + 20", - "calculator" - ], - [ - "what is the square root of 2784", - "calculator" - ], - [ - "how many times does 8 go into 2000", - "calculator" - ], - [ - "what is 35 times 23", - "calculator" - ], - [ - "what is 3 to the 6th power", - "calculator" - ], - [ - "what is 63 percent of 145", - "calculator" - ], - [ - "can you calculate 18 divided by 45", - "calculator" - ], - [ - "what is the square root of 104", - "calculator" - ], - [ - "what\u2019s the answer to 5-6=", - "calculator" - ], - [ - "what is the sum of 8 + 3", - "calculator" - ], - [ - "please provide the square root of 36", - "calculator" - ], - [ - "what does 6 x 1 equal", - "calculator" - ], - [ - "what does 2 + 2 equal", - "calculator" - ], - [ - "what is 10000 divided by 20", - "calculator" - ], - [ - "i would like to know what today's date is", - "date" - ], - [ - "i need information on today's date", - "date" - ], - [ - "tell me what date it is please", - "date" - ], - [ - "tell me what day today is", - "date" - ], - [ - "can you tell me tomorrow's date", - "date" - ], - [ - "what is the date for tomorrow", - "date" - ], - [ - "i would like to know tomorrow's date", - "date" - ], - [ - "what is the month and day tomorrow", - "date" - ], - [ - "in six days, what will it be", - "date" - ], - [ - "what day will it be in fourteen days", - "date" - ], - [ - "which day will it be five days from now", - "date" - ], - [ - "after another eight days, what day will it be", - "date" - ], - [ - "what day is it gonna be in twenty-one days", - "date" - ], - [ - "current date", - "date" - ], - [ - "what day of the month is it today", - "date" - ], - [ - "what date is it", - "date" - ], - [ - "can you tell me the date today", - "date" - ], - [ - "please share today's date", - "date" - ], - [ - "what date is it today", - "date" - ], - [ - "what day is it", - "date" - ], - [ - "what is the day", - "date" - ], - [ - "tell me what day it is", - "date" - ], - [ - "is it monday, tuesday, wednesday, thursday, friday, saturday, or sunday", - "date" - ], - [ - "what's the day of the week", - "date" - ], - [ - "what's the date tomorrow, please", - "date" - ], - [ - "what is the date tomorrow", - "date" - ], - [ - "what is the date tomorrow, please", - "date" - ], - [ - "what is tomorrow's date, please", - "date" - ], - [ - "can you tell me what today's date is", - "date" - ], - [ - "what is today's month, day and year", - "date" - ], - [ - "today's date is what", - "date" - ], - [ - "please tell me today's date", - "date" - ], - [ - "could you tell me today's date", - "date" - ], - [ - "i need to know today's date please", - "date" - ], - [ - "would you please tell me today's date", - "date" - ], - [ - "what is the date today", - "date" - ], - [ - "today's date is what exactly", - "date" - ], - [ - "please tell me what date it is today", - "date" - ], - [ - "can you tell me today's date", - "date" - ], - [ - "i need to know today's date", - "date" - ], - [ - "what would tomorrow's date be", - "date" - ], - [ - "tell me the date today", - "date" - ], - [ - "i'd like to know the date tomorrow", - "date" - ], - [ - "in 2 days, what date will it be", - "date" - ], - [ - "what will be the date tomorrow", - "date" - ], - [ - "what will the date be in 10 days", - "date" - ], - [ - "15 days from today, what will the date be", - "date" - ], - [ - "what's the date tomorrow", - "date" - ], - [ - "i need to know what date it is tomorrow", - "date" - ], - [ - "in 100 days from now, what will be the date", - "date" - ], - [ - "what will be the date in 100 days from now", - "date" - ], - [ - "tell me what the date is tomorrow", - "date" - ], - [ - "give me tomorrow's date please", - "date" - ], - [ - "what day is it today", - "date" - ], - [ - "do you have the date", - "date" - ], - [ - "what is the date of today", - "date" - ], - [ - "please give me today's date", - "date" - ], - [ - "what is today's date", - "date" - ], - [ - "what date is today", - "date" - ], - [ - "what is today", - "date" - ], - [ - "today is what date", - "date" - ], - [ - "what's the day today", - "date" - ], - [ - "what year is it", - "date" - ], - [ - "what's the date 400 days from now", - "date" - ], - [ - "can you tell me the current date", - "date" - ], - [ - "tell me the date 650 days from now", - "date" - ], - [ - "what's the current date, month and year", - "date" - ], - [ - "what will the date be 100 days from now", - "date" - ], - [ - "what day of the week is it", - "date" - ], - [ - "what day will it be 373 days from now", - "date" - ], - [ - "i need to know the date in 256 days", - "date" - ], - [ - "what is the date", - "date" - ], - [ - "give me the date today", - "date" - ], - [ - "i need to know what the date is today", - "date" - ], - [ - "i'd like to know what the date is", - "date" - ], - [ - "what's today's date", - "date" - ], - [ - "tell me what the date is today", - "date" - ], - [ - "show me a calendar", - "date" - ], - [ - "show me the date", - "date" - ], - [ - "i need the full date for today", - "date" - ], - [ - "what day of the month is it", - "date" - ], - [ - "can you remind me of the date", - "date" - ], - [ - "tomorrow, what will the date be", - "date" - ], - [ - "tell me what the date is for tomorrow", - "date" - ], - [ - "tell me what the date will be tomorrow", - "date" - ], - [ - "what is tomorrow's date", - "date" - ], - [ - "what's tomorrow on the calender", - "date" - ], - [ - "what date is tomorrow", - "date" - ], - [ - "calender says tomorrow is", - "date" - ], - [ - "tell me tomorrow's date", - "date" - ], - [ - "the date tomorrow is what", - "date" - ], - [ - "when will it be in 10 days", - "date" - ], - [ - "what day is it tomorrow", - "date" - ], - [ - "what's the current date", - "date" - ], - [ - "what is the full date after today", - "date" - ], - [ - "what's the date 32 days from now", - "date" - ], - [ - "can you tell me the date", - "date" - ], - [ - "what will the date be in 64 days", - "date" - ], - [ - "can you tell me what the next day is", - "date" - ], - [ - "what's today", - "date" - ], - [ - "if i fly american to los angeles, how many carry ons am i allowed", - "carry_on" - ], - [ - "how many carry ons will american let me take for a flight to los vegas", - "carry_on" - ], - [ - "if i take a flight on pan am to denver, how many carry ons are included", - "carry_on" - ], - [ - "if i fly on virgin to chicago, how many carry ons can i take", - "carry_on" - ], - [ - "how my carry ons does spirit airlines allow me for a flight to dallas", - "carry_on" - ], - [ - "would you let me know how many carry ons i can take on a flight with southwest airlines to miami", - "carry_on" - ], - [ - "i need to know the carry-on restrictions for united airlines", - "carry_on" - ], - [ - "tell me the carry-on restrictions for united airlines", - "carry_on" - ], - [ - "i need to know how many carry ons i can take on a flight with southwest airlines to houston", - "carry_on" - ], - [ - "let me know how many carry ons i can take on a flight with southwest airlines to dallas", - "carry_on" - ], - [ - "tell me how many carry ons i can take on a flight with southwest airlines to dallas", - "carry_on" - ], - [ - "would you let me know the carry-on restrictions for american airlines", - "carry_on" - ], - [ - "i am wanting to know how many carry ons i can take on a flight with southwest airlines to houston", - "carry_on" - ], - [ - "could you list out the carry-on restrictions for american airlines", - "carry_on" - ], - [ - "i am wanting to know the carry-on restrictions for united airlines", - "carry_on" - ], - [ - "what carry-on restrictions does southwest impose", - "carry_on" - ], - [ - "carry-on restrictions for air emirates", - "carry_on" - ], - [ - "does delta have any carry-on restrictions", - "carry_on" - ], - [ - "what's restricted in my carry-on with united", - "carry_on" - ], - [ - "what restrictions do my carry-ons need to comply with for delta", - "carry_on" - ], - [ - "how much luggage can i carry with me on flight dl2200 to denver", - "carry_on" - ], - [ - "am i allowed carry ons for my flight with westjet to edmonton", - "carry_on" - ], - [ - "how many carry ons am i allowed to take on my canadair flight to frankfurt", - "carry_on" - ], - [ - "is there are limit of carry ons for my flight with aer lingus to cork", - "carry_on" - ], - [ - "what are the carry on limits for delta", - "carry_on" - ], - [ - "am i limited in carry ons for jet blue", - "carry_on" - ], - [ - "what am i allowed to carry on for american airlines", - "carry_on" - ], - [ - "does delta have any restrictions for what i can carry on", - "carry_on" - ], - [ - "does jet blue have any carry-on restrictions", - "carry_on" - ], - [ - "how many carry-on items are allowed per passenger", - "carry_on" - ], - [ - "what are the carry-on rules", - "carry_on" - ], - [ - "is there a carry-on item weight limit", - "carry_on" - ], - [ - "how big can a carry-on bag be", - "carry_on" - ], - [ - "does delta have carry-on restrictions", - "carry_on" - ], - [ - "do you know the carry-on restrictions for delta", - "carry_on" - ], - [ - "delta has too many carry-on restrictions! do you know them", - "carry_on" - ], - [ - "are there carry-on restrictions for delta", - "carry_on" - ], - [ - "what are the carry on rules for united", - "carry_on" - ], - [ - "tell me united's carry on policy", - "carry_on" - ], - [ - "what should i know about the carry on policy for american", - "carry_on" - ], - [ - "let me know the carry on policy for alaska airlines", - "carry_on" - ], - [ - "i want to know the carry on policy for southwest", - "carry_on" - ], - [ - "if i fly internationally, do brittish airwaiys have carry-on limitations", - "carry_on" - ], - [ - "can i carry on a garment bag, a small travel bag, and a back pack on my trip with american airlines", - "carry_on" - ], - [ - "i am flying jetblue and need to know what the most number of bags are that i can carry on", - "carry_on" - ], - [ - "what are the carry-on fees with delta for international flights", - "carry_on" - ], - [ - "what are the carry-on limits for flying domestically with delta", - "carry_on" - ], - [ - "how many carry ons can i take on a flight with jet blue to washington dc", - "carry_on" - ], - [ - "how many carry ons can i take on a flight with virgin airlines to vancouver bc", - "carry_on" - ], - [ - "how many carry ons can i take on a flight with delta to mexico city", - "carry_on" - ], - [ - "how many carry ons can i take on a flight with united to lax", - "carry_on" - ], - [ - "how many carry ons can i take on a flight with american airlines to seattle", - "carry_on" - ], - [ - "what is the carry-on policy say for flights on delta airlines", - "carry_on" - ], - [ - "what are the carry-on restrictions for singapore airlines", - "carry_on" - ], - [ - "what are the carry-on restrictions for frontier airlines", - "carry_on" - ], - [ - "what does the carry-on policy say for flights on united airlines", - "carry_on" - ], - [ - "how many bags can i carry-on for flights on singapore airlines", - "carry_on" - ], - [ - "what are the carry-on restrictions for delta", - "carry_on" - ], - [ - "what are the carry-on restrictions for united", - "carry_on" - ], - [ - "what are the carry-on restrictions for southwest airlines", - "carry_on" - ], - [ - "what are the rules regarding carry-on baggage for flights on virgin airlines", - "carry_on" - ], - [ - "what can't i carry-on to delta", - "carry_on" - ], - [ - "what is the carry on limit", - "carry_on" - ], - [ - "what are delta's carry-on policies for flights", - "carry_on" - ], - [ - "what are the rules for carry on luggage", - "carry_on" - ], - [ - "can you look up the carry-on restrictions for delta", - "carry_on" - ], - [ - "are there restrictions for carry-ons on delta", - "carry_on" - ], - [ - "what can i carry-on delta flights", - "carry_on" - ], - [ - "do i have to pay for carry-ons on delta", - "carry_on" - ], - [ - "what are the carry on limits for delta flights", - "carry_on" - ], - [ - "is there a carry on weight limit", - "carry_on" - ], - [ - "what restrictions are there for carry-on on delta", - "carry_on" - ], - [ - "what are the rules for carry on luggage for delta", - "carry_on" - ], - [ - "what are delta's carry-on restrictions", - "carry_on" - ], - [ - "tell me the carry on rules", - "carry_on" - ], - [ - "does united airlines allow more than one carry on", - "carry_on" - ], - [ - "how strict is spirit when it comes to carry ons", - "carry_on" - ], - [ - "can i have 3 carry ons with delta at jfk", - "carry_on" - ], - [ - "what is american airlines carry on policy", - "carry_on" - ], - [ - "does delta allow more than one carry on when traveling to miami", - "carry_on" - ], - [ - "does delta charge for carry ons", - "carry_on" - ], - [ - "what are my carry on options when flying american airlines to trenton", - "carry_on" - ], - [ - "how many carry ons does spirit allow when flying to dallas", - "carry_on" - ], - [ - "what is delta's carry on policy", - "carry_on" - ], - [ - "do you know about carry ons out of tampa with spirit", - "carry_on" - ], - [ - "search for carry on rules for flights on delta airlines", - "carry_on" - ], - [ - "what are the requirements for carry on on flights with united airlines", - "carry_on" - ], - [ - "please find the rules for carry on when flying with spirit airlines", - "carry_on" - ], - [ - "i need to know the carry on policy for american airlines flights", - "carry_on" - ], - [ - "can you tell me jet blue airlines' carry on policy", - "carry_on" - ], - [ - "from a flight from muscat to qatar, how many carry ons can i take", - "carry_on" - ], - [ - "do i need to pay for delta carry on", - "carry_on" - ], - [ - "which rules does delta have for carry on", - "carry_on" - ], - [ - "when taking a flight with lion to singapore, how many carry ons are allowed", - "carry_on" - ], - [ - "how many carry ons are allowed on a flight with wow to iceland", - "carry_on" - ], - [ - "on a flight with allegiant to orlando, how many carry ons can i take", - "carry_on" - ], - [ - "when taking a flight with porter to toronto, how many carry ons can i take", - "carry_on" - ], - [ - "on a flight with jin air to jeju, how many carry ons are allowed", - "carry_on" - ], - [ - "let me know the rules for carry ons for continental", - "carry_on" - ], - [ - "i want to know the carry on policy for aeromexico", - "carry_on" - ], - [ - "have i used half of my days off yet", - "pto_used" - ], - [ - "go to my job portal, i'd like to know how many days off i have used", - "pto_used" - ], - [ - "what amount of days off have i already utilized", - "pto_used" - ], - [ - "call hr so i can figure out how many days off i've taken", - "pto_used" - ], - [ - "how many times have i taken off from work this year", - "pto_used" - ], - [ - "about how many vacation days have i taken", - "pto_used" - ], - [ - "count how many sick days i've used", - "pto_used" - ], - [ - "can you check how much pto i have already used", - "pto_used" - ], - [ - "tell me the exact amount of pto i have used", - "pto_used" - ], - [ - "my pto used so far is what right now", - "pto_used" - ], - [ - "i've used how much pto so far", - "pto_used" - ], - [ - "get the details on the pto i have used", - "pto_used" - ], - [ - "how much time did i take off so far", - "pto_used" - ], - [ - "including the day i missed because of snow, how much time have i take off work so far", - "pto_used" - ], - [ - "how many sick, personal, and vacation days have i billed so far this year", - "pto_used" - ], - [ - "can you add up how much time i've taken off so far", - "pto_used" - ], - [ - "what's the number of day's i've taken off", - "pto_used" - ], - [ - "how many days so far have i taken off", - "pto_used" - ], - [ - "tell me how many days i've taken off at this point", - "pto_used" - ], - [ - "so far how many days have i taken off", - "pto_used" - ], - [ - "i need to know how many days so far i've taken off", - "pto_used" - ], - [ - "how many days have i taken off this year", - "pto_used" - ], - [ - "can you tell me how much pto i've gone through", - "pto_used" - ], - [ - "how many personal days have i taken", - "pto_used" - ], - [ - "how many vacation days have i consumed", - "pto_used" - ], - [ - "how much pto have i depleted", - "pto_used" - ], - [ - "how much vacation have i already used this year", - "pto_used" - ], - [ - "what's the total of days i've taken for me time so far", - "pto_used" - ], - [ - "how many of my sick days have i gone through", - "pto_used" - ], - [ - "what amount of pto have i taken", - "pto_used" - ], - [ - "what is the extent of the pto i've taken", - "pto_used" - ], - [ - "what's the amount of time off i've had", - "pto_used" - ], - [ - "what's the amount of time i've taken off work this year", - "pto_used" - ], - [ - "what's the total vacation days i've gone through", - "pto_used" - ], - [ - "how many personal days have i taken this month", - "pto_used" - ], - [ - "what's the total pto i've used", - "pto_used" - ], - [ - "count the number of vacation days i've taken and tell me", - "pto_used" - ], - [ - "how many of my vacation days have i depleted", - "pto_used" - ], - [ - "what's the amount of vacation days i've taken", - "pto_used" - ], - [ - "how much of my pto have i depleted", - "pto_used" - ], - [ - "up to this point, how much of my pto have i used", - "pto_used" - ], - [ - "please find out how many of my vacation days i have spent", - "pto_used" - ], - [ - "check to see how many days off i have used in total so far", - "pto_used" - ], - [ - "look up my total number of days off so far", - "pto_used" - ], - [ - "i need to know how many vacation days i have used up please", - "pto_used" - ], - [ - "find out how much of my pto is already used", - "pto_used" - ], - [ - "tell me the amount of pto i have used at this point", - "pto_used" - ], - [ - "check to see how many days off i have used", - "pto_used" - ], - [ - "look up how many of my days off i have used so far", - "pto_used" - ], - [ - "look up the amount of vacation days i have used please", - "pto_used" - ], - [ - "can you count for me the total number of days off i have used", - "pto_used" - ], - [ - "look up the amount of pto i have already used", - "pto_used" - ], - [ - "do you know the total number of vacation days i have used", - "pto_used" - ], - [ - "i need to know how many of my days off i have used at this point", - "pto_used" - ], - [ - "please find out how many days off i have used by this point", - "pto_used" - ], - [ - "what is the total number of days i have taken off so far", - "pto_used" - ], - [ - "i need to know how much of my pto has been used at this point", - "pto_used" - ], - [ - "how many vacation days have i spent in total", - "pto_used" - ], - [ - "find out for me how many days off i have taken in total at this point", - "pto_used" - ], - [ - "i need to know the number of days off i have taken at this point", - "pto_used" - ], - [ - "how many days did i skip work", - "pto_used" - ], - [ - "how much vacation have i taken", - "pto_used" - ], - [ - "how many days was i sick or on vacation", - "pto_used" - ], - [ - "which days did i take vacation", - "pto_used" - ], - [ - "which days did i take off work", - "pto_used" - ], - [ - "how many vacation days have i used", - "pto_used" - ], - [ - "how many days have i taken off so far", - "pto_used" - ], - [ - "how much time have i taken off this year", - "pto_used" - ], - [ - "how many times have i used my annual leave", - "pto_used" - ], - [ - "how much paid time off have i taken", - "pto_used" - ], - [ - "how many of my paid days off have i used", - "pto_used" - ], - [ - "how much pto do i have used up", - "pto_used" - ], - [ - "how much of my time off have i used", - "pto_used" - ], - [ - "how many days of pto have i used", - "pto_used" - ], - [ - "can you tell me how many vacation days i've taken", - "pto_used" - ], - [ - "what's my vacation day usage so far", - "pto_used" - ], - [ - "what kind of pto do i have left", - "pto_used" - ], - [ - "how many times did i take a day off", - "pto_used" - ], - [ - "tell me how many vacation days i've used", - "pto_used" - ], - [ - "how much pto has been used on my behalf", - "pto_used" - ], - [ - "how many days off have i taken", - "pto_used" - ], - [ - "what kind of pto have i used", - "pto_used" - ], - [ - "what kind of vacation days have i used so far", - "pto_used" - ], - [ - "tell me how much pto i've used", - "pto_used" - ], - [ - "how much paid time off have i used", - "pto_used" - ], - [ - "how many days off did i use so far", - "pto_used" - ], - [ - "tell me the number of days off i took this year", - "pto_used" - ], - [ - "how many days off have i had this year", - "pto_used" - ], - [ - "so far, how many days off have i taken", - "pto_used" - ], - [ - "tell me my usage of vacation days", - "pto_used" - ], - [ - "whats my count of vacation days used thus far", - "pto_used" - ], - [ - "how many vacation days have i taken", - "pto_used" - ], - [ - "what is the status of my pto", - "pto_used" - ], - [ - "how much paid time off do i have left", - "pto_used" - ], - [ - "how many days of pto are available", - "pto_used" - ], - [ - "how many vacation days have i used up", - "pto_used" - ], - [ - "how many vacation days did i use", - "pto_used" - ], - [ - "what is the total number of vacation days i've used", - "pto_used" - ], - [ - "have i used any vacation days this year", - "pto_used" - ], - [ - "how many vacation days have i used so far", - "pto_used" - ], - [ - "my car needs to be brought for maintenance", - "schedule_maintenance" - ], - [ - "could you schedule car maintenance for me", - "schedule_maintenance" - ], - [ - "i need someone to look at my car because my check engine light is on", - "schedule_maintenance" - ], - [ - "locate someone to look at my car because my check engine light is on", - "schedule_maintenance" - ], - [ - "i require a car maintenance", - "schedule_maintenance" - ], - [ - "who is available to check why my check engine light is on", - "schedule_maintenance" - ], - [ - "could you find someone to check out my car because the check engine light is on", - "schedule_maintenance" - ], - [ - "i need to schedule car maintenance", - "schedule_maintenance" - ], - [ - "please schedule car maintenance for me", - "schedule_maintenance" - ], - [ - "who can i contact about why check engine light is on", - "schedule_maintenance" - ], - [ - "i want to schedule a tire check up somewhere", - "schedule_maintenance" - ], - [ - "i need to get my tires checked out somewhere", - "schedule_maintenance" - ], - [ - "i need to find somewhere to check my tires out", - "schedule_maintenance" - ], - [ - "i need to get my tired checked at one of the location", - "schedule_maintenance" - ], - [ - "can i schedule a check up for my tires somewhere", - "schedule_maintenance" - ], - [ - "where in sacramento ca i schedule maintenance on my car", - "schedule_maintenance" - ], - [ - "i want to to schedule maintenance on my vehicle", - "schedule_maintenance" - ], - [ - "look for auto companies that do scheduled maintenance on my vehicle", - "schedule_maintenance" - ], - [ - "i need some work done on my car so need to schedule auto mechanic for maintenance", - "schedule_maintenance" - ], - [ - "find local deals who schedule maintenance on cars", - "schedule_maintenance" - ], - [ - "where can i find a place where i can schedule to check my tires out", - "schedule_maintenance" - ], - [ - "is there a special place where i can schedule to check my tires out", - "schedule_maintenance" - ], - [ - "where can i schedule to get my tires checked out", - "schedule_maintenance" - ], - [ - "where is an appropriate place where i can schedule to check out my tires", - "schedule_maintenance" - ], - [ - "is there a location i can schedule to check out my tires", - "schedule_maintenance" - ], - [ - "can you make an appointment for an oil change", - "schedule_maintenance" - ], - [ - "please make an appointment for an oil change", - "schedule_maintenance" - ], - [ - "i need you to find a mechanic for my check engine light", - "schedule_maintenance" - ], - [ - "please schedule an appointment for my oil to get changed", - "schedule_maintenance" - ], - [ - "my car needs maintenance scheduled", - "schedule_maintenance" - ], - [ - "how i do schedule car maintenance", - "schedule_maintenance" - ], - [ - "my check engine light is on and someone needs to look at it", - "schedule_maintenance" - ], - [ - "i need to get my oil change so make an appointment", - "schedule_maintenance" - ], - [ - "the check engine light is on and i need a mechanic", - "schedule_maintenance" - ], - [ - "my car needs maintenance prepared", - "schedule_maintenance" - ], - [ - "my car needs an appointment for an oil change", - "schedule_maintenance" - ], - [ - "i need someone to look at my check engine light", - "schedule_maintenance" - ], - [ - "help me find someone to look at my check engine light", - "schedule_maintenance" - ], - [ - "put a tire inspection on my schedule please", - "schedule_maintenance" - ], - [ - "i need to find someone to look at my check engine light", - "schedule_maintenance" - ], - [ - "is it possible to get schedule getting my tires inspected", - "schedule_maintenance" - ], - [ - "i'd like to schedule a tire inspection", - "schedule_maintenance" - ], - [ - "who in the area can inspect my engine light", - "schedule_maintenance" - ], - [ - "set an appointment for an oil change", - "schedule_maintenance" - ], - [ - "book an oil change please", - "schedule_maintenance" - ], - [ - "can you please obtain an oil change appointment for me", - "schedule_maintenance" - ], - [ - "where can i get my tires checked and how can i schedule it", - "schedule_maintenance" - ], - [ - "is there someone in the area who can check my engine light since it is on", - "schedule_maintenance" - ], - [ - "i need the soonest appointment for an oil change", - "schedule_maintenance" - ], - [ - "i am in need of an oil change, set an appointment", - "schedule_maintenance" - ], - [ - "please find someone who specializes in cars, my check engine light has turned on", - "schedule_maintenance" - ], - [ - "my check engine light has switched on, schedule someone to inspect it", - "schedule_maintenance" - ], - [ - "i need to schedule a car repair", - "schedule_maintenance" - ], - [ - "can i schedule a car repair", - "schedule_maintenance" - ], - [ - "how do i schedule car maintenance", - "schedule_maintenance" - ], - [ - "i want to schedule car maintenance", - "schedule_maintenance" - ], - [ - "i wanna have an appointment to get my oil changed", - "schedule_maintenance" - ], - [ - "i wanna schedule some car maintenance", - "schedule_maintenance" - ], - [ - "can someone look at my car cause the check engine light is on", - "schedule_maintenance" - ], - [ - "i need to schedule some car maintenance", - "schedule_maintenance" - ], - [ - "i got to schedule somewhere get my tires checked out", - "schedule_maintenance" - ], - [ - "i must schedule somewhere get my tires checked out", - "schedule_maintenance" - ], - [ - "i'd like to get an appointment to get my oil changed", - "schedule_maintenance" - ], - [ - "i want to schedule somewhere get my tires checked out", - "schedule_maintenance" - ], - [ - "i gotta schedule some car maintenance", - "schedule_maintenance" - ], - [ - "y check engine light currently came on and i need assistance with it", - "schedule_maintenance" - ], - [ - "i need help cause my check engine light came on", - "schedule_maintenance" - ], - [ - "i have to schedule somewhere get my tires checked out", - "schedule_maintenance" - ], - [ - "i need to have an appointment to get my oil changed", - "schedule_maintenance" - ], - [ - "i need an appointment to get my oil changed", - "schedule_maintenance" - ], - [ - "i got to schedule some car maintenance", - "schedule_maintenance" - ], - [ - "my engine light came on, so i need to get help", - "schedule_maintenance" - ], - [ - "i want to get an appointment to get my oil changed", - "schedule_maintenance" - ], - [ - "my check engine light is on and i need to take a look at it", - "schedule_maintenance" - ], - [ - "i have to schedule some car maintenance", - "schedule_maintenance" - ], - [ - "i need to schedule somewhere get my tires checked out", - "schedule_maintenance" - ], - [ - "i would like an appointment to get my oil changed", - "schedule_maintenance" - ], - [ - "can i please get an appointment to get my oil changed", - "schedule_maintenance" - ], - [ - "i need an oil change, make an appointment", - "schedule_maintenance" - ], - [ - "find a mechanic to look at my check engine light", - "schedule_maintenance" - ], - [ - "book an appointment for an oil change", - "schedule_maintenance" - ], - [ - "i should get my tires checked, schedule that", - "schedule_maintenance" - ], - [ - "how do i schedule getting my tires checked", - "schedule_maintenance" - ], - [ - "i need someone to look at my car and tell me why the light is on", - "schedule_maintenance" - ], - [ - "schedule an oil change for me", - "schedule_maintenance" - ], - [ - "which mechanic can check my check engine light", - "schedule_maintenance" - ], - [ - "make a reminder to schedule a tire check", - "schedule_maintenance" - ], - [ - "who can look at my car, the engine light is on", - "schedule_maintenance" - ], - [ - "set a time to get my oil changed", - "schedule_maintenance" - ], - [ - "make an appointment to check my tires", - "schedule_maintenance" - ], - [ - "i don't know why my check engine light is on, i need a mechanic", - "schedule_maintenance" - ], - [ - "make an appointment for an oil change", - "schedule_maintenance" - ], - [ - "make arrangements for me to get my oil changed", - "schedule_maintenance" - ], - [ - "can you schedule me a mechanic", - "schedule_maintenance" - ], - [ - "schedule an appointment to get my oil changed", - "schedule_maintenance" - ], - [ - "i need to get my oil changed", - "schedule_maintenance" - ], - [ - "schedule a time to get my oil changed", - "schedule_maintenance" - ], - [ - "find me a mechanic", - "schedule_maintenance" - ], - [ - "schedule a mechanic", - "schedule_maintenance" - ], - [ - "schedule car repairs", - "schedule_maintenance" - ], - [ - "im going to be in canada from august 10th until august 12th", - "travel_notification" - ], - [ - "im going to be in slovakia from january 16th until january 19th", - "travel_notification" - ], - [ - "im going to be in paraguay from january 7th until january 10th", - "travel_notification" - ], - [ - "i'm going to be in thailand from october 15th until october 23rd", - "travel_notification" - ], - [ - "im going to be in jamaica from october 4th until october 8th", - "travel_notification" - ], - [ - "my bank needs to know i am going to be out of the country", - "travel_notification" - ], - [ - "i am going out of country and my bank needs to be notified", - "travel_notification" - ], - [ - "i need to inform the bank i am going out of country", - "travel_notification" - ], - [ - "i am going out of country and need to inform my bank", - "travel_notification" - ], - [ - "tell the bank i'm traveling between denver and la", - "travel_notification" - ], - [ - "tell my bank i am traveling out of country", - "travel_notification" - ], - [ - "i'm driving from la to denver and need my bank notified", - "travel_notification" - ], - [ - "notify my bank i am travailing from denver to la", - "travel_notification" - ], - [ - "i'm traveling between denver and la so tell my bank", - "travel_notification" - ], - [ - "i need to let my bank know i am traveling to la", - "travel_notification" - ], - [ - "i need to let my bank know i am traveling to detroit", - "travel_notification" - ], - [ - "i need to let my bank know i am traveling to new york", - "travel_notification" - ], - [ - "i need to let my bank know i am traveling to chicago", - "travel_notification" - ], - [ - "i need to let my bank know i am traveling to paris", - "travel_notification" - ], - [ - "i will be traveling to rome from february 1 to march 1, please make this aware to my bank", - "travel_notification" - ], - [ - "inform my bank that i will be in rome from february 1 to march 1", - "travel_notification" - ], - [ - "please let my bank know that i will be in rome from february 1 to march 1", - "travel_notification" - ], - [ - "mark down that i will be in rome from february 1 to march 1 and notify my bank", - "travel_notification" - ], - [ - "notify my bank that i will be in rome from february 1 to march 1", - "travel_notification" - ], - [ - "i need to let my bank know that i'll be travelling internationally", - "travel_notification" - ], - [ - "can you tell my bank that i'll be travelling internationally soon", - "travel_notification" - ], - [ - "i'll soon be travelling internationally; could you let my bank know", - "travel_notification" - ], - [ - "i'll be out of the country soon, and want to notify my bank", - "travel_notification" - ], - [ - "i'm going out of the country and need to notify my bank", - "travel_notification" - ], - [ - "tell my bank that i'm going to france", - "travel_notification" - ], - [ - "tell my bank that i'll be in canada this weekend", - "travel_notification" - ], - [ - "let my bank know that i'm traveling to prague", - "travel_notification" - ], - [ - "let my bank know that i'll be in moscow, russia", - "travel_notification" - ], - [ - "inform my bank that i'll be going to europe", - "travel_notification" - ], - [ - "i'm traveling to paris soon and want to inform my bank", - "travel_notification" - ], - [ - "i'm traveling to fresnosoon and want to inform my bank", - "travel_notification" - ], - [ - "i'm traveling to london soon and want to inform my bank", - "travel_notification" - ], - [ - "i'm traveling to ca soon and want to inform my bank", - "travel_notification" - ], - [ - "i'm traveling tony soon and want to inform my bank", - "travel_notification" - ], - [ - "i've let me bank know that i'm visiting south america from may to october", - "travel_notification" - ], - [ - "i've notified my bank that i'm in mexico from august 1 to august 5", - "travel_notification" - ], - [ - "i let my bank know that i'm traveling to greece from march to april", - "travel_notification" - ], - [ - "i've told my financial institution that i'm in africa from august 6 to december 5", - "travel_notification" - ], - [ - "call the bank and tell them i will be in france on the 16th until the 26th", - "travel_notification" - ], - [ - "notify my bank i'll be in rome from the 1st to the 17th", - "travel_notification" - ], - [ - "tell my bank i'll be in jamaica from the 4th to the 11th", - "travel_notification" - ], - [ - "please tell my bank i will be in israel from the 6th to the 23rd", - "travel_notification" - ], - [ - "alert the bank that i am traveling to tokyo on the 7th until the 21st", - "travel_notification" - ], - [ - "i'm traveling to denmark soon and want to inform my bank", - "travel_notification" - ], - [ - "alert my bank and let them know that i'm travelling to switzerland", - "travel_notification" - ], - [ - "alert my bank and let them know that i'm travelling to china", - "travel_notification" - ], - [ - "i'm traveling to belgium soon and want to inform my bank", - "travel_notification" - ], - [ - "i'm traveling to sweden soon and want to inform my bank", - "travel_notification" - ], - [ - "i'm traveling to morocco soon and want to inform my bank", - "travel_notification" - ], - [ - "alert my bank and let them know i'm travelling to japan", - "travel_notification" - ], - [ - "tell my bank that i will be taveling to south korea", - "travel_notification" - ], - [ - "alert my bank and tell them that i'm travelling to paris", - "travel_notification" - ], - [ - "i'm traveling to england soon and want to inform my bank", - "travel_notification" - ], - [ - "how can i tell my bank i'm going to vietnam", - "travel_notification" - ], - [ - "how do i let my bank know i'm going to vietnam", - "travel_notification" - ], - [ - "i'm going to paris soon and want to let my bank know, how do i do that", - "travel_notification" - ], - [ - "how can i let my bank know i'm going to denmark", - "travel_notification" - ], - [ - "how do i inform my bank i'm going to paris", - "travel_notification" - ], - [ - "from january to august, i will be in uruguay, please let me bank know", - "travel_notification" - ], - [ - "tell my bank that i'll be in uruguay during january to august", - "travel_notification" - ], - [ - "i will be in uruguay from january to august, please let me bank know", - "travel_notification" - ], - [ - "can you let my bank know i'll be in uruguay from january to august", - "travel_notification" - ], - [ - "please let my bank know that i will be in uruguay from january to august", - "travel_notification" - ], - [ - "tell my bank i am taking a trip to brazil from june 1st to july 1st", - "travel_notification" - ], - [ - "inform my bank i will travel to brazil from june 1st to july 1st", - "travel_notification" - ], - [ - "let me bank know i will be in brazil from june 1st to july 1st", - "travel_notification" - ], - [ - "tell my bank i will be traveling in brazil from june 1st to july 1st", - "travel_notification" - ], - [ - "tell my bank i will be in brazil from june 1st to july 1st", - "travel_notification" - ], - [ - "i'm travelling to seattle soon and want to inform my bank", - "travel_notification" - ], - [ - "i'm travelling to thailand soon and want to inform my bank", - "travel_notification" - ], - [ - "i'm travelling to spain soon and want to inform my bank", - "travel_notification" - ], - [ - "alert my bank and let them know that i'm travelling to brussels", - "travel_notification" - ], - [ - "alert my bank and let them know that i'm travelling to oslo", - "travel_notification" - ], - [ - "alert my bank and let them know that i'm travelling to stockholm", - "travel_notification" - ], - [ - "i'm travelling to boston soon and want to inform my bank", - "travel_notification" - ], - [ - "alert my bank and let them know that i'm travelling to london", - "travel_notification" - ], - [ - "i'm travelling to ireland soon and want to inform my bank", - "travel_notification" - ], - [ - "alert my bank and let them know that i'm travelling to madrid", - "travel_notification" - ], - [ - "the bank should know i am going to asia soon", - "travel_notification" - ], - [ - "since i am traveling to asia, i need to inform the bank", - "travel_notification" - ], - [ - "i need to tell bank that i am taking a trip to asia", - "travel_notification" - ], - [ - "i am going to asia in a bit, i should tell the bank", - "travel_notification" - ], - [ - "i need to let my bank know i am visiting asia soon", - "travel_notification" - ], - [ - "let my bank know i will be travelling to the cayman islands", - "travel_notification" - ], - [ - "i am going to south america, let my bank know", - "travel_notification" - ], - [ - "inform my bank i will be travelling to central africa", - "travel_notification" - ], - [ - "let my bank know i will be on travel to fes", - "travel_notification" - ], - [ - "tell my bank i will be travelling to the caribbean", - "travel_notification" - ], - [ - "please tell my bank that i will be traveling abroad", - "travel_notification" - ], - [ - "the bank needs to know that i am traveling soon", - "travel_notification" - ], - [ - "make sur eyou tell the bank that i will be traveling internationally soon", - "travel_notification" - ], - [ - "please tell the bank i will be traveling internationally", - "travel_notification" - ], - [ - "tell the bank i will be traveling internationally soon", - "travel_notification" - ], - [ - "let my bank know that i'm going to norway between march 3 and march 5", - "travel_notification" - ], - [ - "tell my bank i'm going to france", - "travel_notification" - ], - [ - "please link with my phone", - "sync_device" - ], - [ - "please connect the device to my phone", - "sync_device" - ], - [ - "please link up to my phone", - "sync_device" - ], - [ - "could you link with my phone", - "sync_device" - ], - [ - "please turn off your wifi from my phone", - "sync_device" - ], - [ - "please remove your connection to my phone", - "sync_device" - ], - [ - "please unlink my phone", - "sync_device" - ], - [ - "please get off my phone connection", - "sync_device" - ], - [ - "please desync my current mobile", - "sync_device" - ], - [ - "i no longer want this phone to sync", - "sync_device" - ], - [ - "please link up to my cell", - "sync_device" - ], - [ - "create a link with my phone", - "sync_device" - ], - [ - "stop syncing with this phone", - "sync_device" - ], - [ - "i don't want this phone synced any more", - "sync_device" - ], - [ - "desync from my iphone", - "sync_device" - ], - [ - "please immediately disconnect this mobile", - "sync_device" - ], - [ - "establish a connection to my phone", - "sync_device" - ], - [ - "my phone needs to be unsynced now", - "sync_device" - ], - [ - "could you unsync my phone please", - "sync_device" - ], - [ - "you can unsync from my phone now", - "sync_device" - ], - [ - "disconnect from my phone please", - "sync_device" - ], - [ - "please unsync phone from phone from home system", - "sync_device" - ], - [ - "i must disconnect from my phone", - "sync_device" - ], - [ - "go and disconnect from my phone", - "sync_device" - ], - [ - "you must connect to my phone", - "sync_device" - ], - [ - "please connect to my phone", - "sync_device" - ], - [ - "you have to connect to my phone", - "sync_device" - ], - [ - "go ahead and disconnect from my phone", - "sync_device" - ], - [ - "i wanna disconnect from my phone", - "sync_device" - ], - [ - "i need to disconnect from my phone", - "sync_device" - ], - [ - "you need to connect to my phone", - "sync_device" - ], - [ - "go ahead and connect to my phone", - "sync_device" - ], - [ - "get connected to my phone", - "sync_device" - ], - [ - "i want for you to connect to my phone", - "sync_device" - ], - [ - "disconnect from my phone for me", - "sync_device" - ], - [ - "would you disconnect from my phone", - "sync_device" - ], - [ - "help me to disconnect from my phone", - "sync_device" - ], - [ - "would you connect to my phone", - "sync_device" - ], - [ - "i need for you to connect to my phone", - "sync_device" - ], - [ - "i need you to disconnect from my phone", - "sync_device" - ], - [ - "i want for you to disconnect from my phone", - "sync_device" - ], - [ - "connect to my phone for me", - "sync_device" - ], - [ - "mind connecting to my phone", - "sync_device" - ], - [ - "connect with my phone please", - "sync_device" - ], - [ - "can you link to my phone", - "sync_device" - ], - [ - "will you connect to my phone", - "sync_device" - ], - [ - "please disconnect from my phone", - "sync_device" - ], - [ - "please connect with my phone", - "sync_device" - ], - [ - "please unsync from my phone", - "sync_device" - ], - [ - "pair with my smart phone", - "sync_device" - ], - [ - "i want you to disconnect from my phone", - "sync_device" - ], - [ - "unsync from my phone", - "sync_device" - ], - [ - "please connect with my smart phone", - "sync_device" - ], - [ - "disconnect from my phone now, please", - "sync_device" - ], - [ - "could you connect to my phone", - "sync_device" - ], - [ - "can you connect to my phone, please", - "sync_device" - ], - [ - "disconnect from my phone, please", - "sync_device" - ], - [ - "could you connect to my phone, please", - "sync_device" - ], - [ - "can you connect with my phone, please", - "sync_device" - ], - [ - "could you connect with my phone, please", - "sync_device" - ], - [ - "pair my phone please", - "sync_device" - ], - [ - "pair with my phone please", - "sync_device" - ], - [ - "with my phone please pair", - "sync_device" - ], - [ - "pair with my phone", - "sync_device" - ], - [ - "would you unsync the phone now please", - "sync_device" - ], - [ - "unsync my phone now please", - "sync_device" - ], - [ - "how can i unsync my phone", - "sync_device" - ], - [ - "go ahead an unsync my phone now", - "sync_device" - ], - [ - "unsync my phone", - "sync_device" - ], - [ - "please remove the phone's sync", - "sync_device" - ], - [ - "remove the sync from my phone", - "sync_device" - ], - [ - "please unsync my phone", - "sync_device" - ], - [ - "desync from my phone", - "sync_device" - ], - [ - "can we pair this with my new phone", - "sync_device" - ], - [ - "i would like to pair this with my new phone", - "sync_device" - ], - [ - "i am going to go ahead and pair this with my new phone", - "sync_device" - ], - [ - "lets pair this with my new phone", - "sync_device" - ], - [ - "i need to pair this with my phone", - "sync_device" - ], - [ - "use my phone and connect please", - "sync_device" - ], - [ - "would you please pair with my phone", - "sync_device" - ], - [ - "initiate connection with my phone, please", - "sync_device" - ], - [ - "please begin pairing with my phone", - "sync_device" - ], - [ - "will you please end the connection to my phone", - "sync_device" - ], - [ - "you can disconnect from my phone now", - "sync_device" - ], - [ - "stop the connection with my phone", - "sync_device" - ], - [ - "let's terminate connection to my phone please", - "sync_device" - ], - [ - "i want you to connect using my phone", - "sync_device" - ], - [ - "i want to disconnect the current connection to my phone", - "sync_device" - ], - [ - "disconnect from my phone now", - "sync_device" - ], - [ - "disconnect from my phone", - "sync_device" - ], - [ - "i'd like you to disconnect from my phone", - "sync_device" - ], - [ - "do you think you could disconnect from my phone", - "sync_device" - ], - [ - "can you disconnect from my phone", - "sync_device" - ], - [ - "please get off my phone", - "sync_device" - ], - [ - "are you able to get into my phone at the moment", - "sync_device" - ], - [ - "can you get access to my phone right now", - "sync_device" - ], - [ - "do you have access to my phone", - "sync_device" - ], - [ - "are you able to link to my phone", - "sync_device" - ], - [ - "is my phone connectable right now", - "sync_device" - ], - [ - "quickly disconnect the phone", - "sync_device" - ], - [ - "you have been a big help, thank you so much", - "thank_you" - ], - [ - "i appreciate your help, thank you", - "thank_you" - ], - [ - "i really appreciate your help, thank you", - "thank_you" - ], - [ - "i am very grateful", - "thank_you" - ], - [ - "i appreciate the assistance", - "thank_you" - ], - [ - "i want to thank you for helping", - "thank_you" - ], - [ - "much obliged", - "thank_you" - ], - [ - "your help is appreciated", - "thank_you" - ], - [ - "gracias", - "thank_you" - ], - [ - "i appreciate that", - "thank_you" - ], - [ - "thanks so much!", - "thank_you" - ], - [ - "many thanks", - "thank_you" - ], - [ - "appreciate it", - "thank_you" - ], - [ - "thanks!", - "thank_you" - ], - [ - "i thank you", - "thank_you" - ], - [ - "thank you kindly", - "thank_you" - ], - [ - "thank you so very much", - "thank_you" - ], - [ - "thank you for helping me", - "thank_you" - ], - [ - "i'm grateful to you", - "thank_you" - ], - [ - "you did a good job thank you", - "thank_you" - ], - [ - "good looking out", - "thank_you" - ], - [ - "i wish you were here earlier", - "thank_you" - ], - [ - "it's so much easier with you around", - "thank_you" - ], - [ - "you've been a great help", - "thank_you" - ], - [ - "thanks for the help", - "thank_you" - ], - [ - "thanks please", - "thank_you" - ], - [ - "why thank you", - "thank_you" - ], - [ - "thanks for the answer", - "thank_you" - ], - [ - "thank you very much for the answer", - "thank_you" - ], - [ - "okay thanks", - "thank_you" - ], - [ - "thanks a lot", - "thank_you" - ], - [ - "thanks a lot for the answer", - "thank_you" - ], - [ - "thank you for the answer", - "thank_you" - ], - [ - "thank you a lot for that answer", - "thank_you" - ], - [ - "thanks for helping me!", - "thank_you" - ], - [ - "i'm so glad you helped me!", - "thank_you" - ], - [ - "i appreciate your help!", - "thank_you" - ], - [ - "i am thankful for your help!", - "thank_you" - ], - [ - "i have much gratitude for your help", - "thank_you" - ], - [ - "i appreciate your help", - "thank_you" - ], - [ - "i appreciate you helping me", - "thank_you" - ], - [ - "awesome, thanks", - "thank_you" - ], - [ - "thank you so much", - "thank_you" - ], - [ - "thank you very much for the assistance", - "thank_you" - ], - [ - "i appreciate it", - "thank_you" - ], - [ - "thanks again!", - "thank_you" - ], - [ - "thanks for the info", - "thank_you" - ], - [ - "thanks for letting me know", - "thank_you" - ], - [ - "that's all i need, thanks!", - "thank_you" - ], - [ - "thanks, that's helpful", - "thank_you" - ], - [ - "thank you for the information", - "thank_you" - ], - [ - "thanks for answering my question", - "thank_you" - ], - [ - "your efforts don't go unnoticed", - "thank_you" - ], - [ - "i appreciate what you did", - "thank_you" - ], - [ - "you are so thoughtful and i appreciate your gesture", - "thank_you" - ], - [ - "you are so nice to think of me", - "thank_you" - ], - [ - "you were so kind to do that", - "thank_you" - ], - [ - "your answer pleased me", - "thank_you" - ], - [ - "i'm happy with your answer", - "thank_you" - ], - [ - "your answer was enjoyable", - "thank_you" - ], - [ - "your answer was good", - "thank_you" - ], - [ - "thanks for giving me assistance", - "thank_you" - ], - [ - "really great!", - "thank_you" - ], - [ - "appreciate the help", - "thank_you" - ], - [ - "i'm grateful for the answer you just gave me", - "thank_you" - ], - [ - "that'll work, good job!", - "thank_you" - ], - [ - "good answer, thanks for providing it", - "thank_you" - ], - [ - "i'm grateful for the assistance", - "thank_you" - ], - [ - "thanks for that!", - "thank_you" - ], - [ - "good job with assisting me", - "thank_you" - ], - [ - "nice, excellent!", - "thank_you" - ], - [ - "i'm grateful", - "thank_you" - ], - [ - "i appreciate that answer!", - "thank_you" - ], - [ - "i would like to thank you", - "thank_you" - ], - [ - "i can not thank you enough", - "thank_you" - ], - [ - "i need to thank you", - "thank_you" - ], - [ - "i really thank you", - "thank_you" - ], - [ - "let me thank you", - "thank_you" - ], - [ - "thank you!", - "thank_you" - ], - [ - "thanks for the help!", - "thank_you" - ], - [ - "you're the best!", - "thank_you" - ], - [ - "i appreciate that answer", - "thank_you" - ], - [ - "your answer is appreciated", - "thank_you" - ], - [ - "i am thankful for the answer", - "thank_you" - ], - [ - "oh sweet thanks", - "thank_you" - ], - [ - "oh, thanks", - "thank_you" - ], - [ - "merci beaucoup", - "thank_you" - ], - [ - "thanks again", - "thank_you" - ], - [ - "thanks", - "thank_you" - ], - [ - "thank you for answering that", - "thank_you" - ], - [ - "thank you", - "thank_you" - ], - [ - "thanks for that", - "thank_you" - ], - [ - "thank you for your time", - "thank_you" - ], - [ - "i appreciate the help", - "thank_you" - ], - [ - "thank ya!", - "thank_you" - ], - [ - "thanks for your response", - "thank_you" - ], - [ - "youre a doll", - "thank_you" - ], - [ - "thanks for your cooperation", - "thank_you" - ], - [ - "i owe you one!", - "thank_you" - ], - [ - "thanks for helping out", - "thank_you" - ], - [ - "will you roll a d20", - "roll_dice" - ], - [ - "will you roll a 12 sided dice", - "roll_dice" - ], - [ - "will you roll a 10 sided dice", - "roll_dice" - ], - [ - "i'd like you to roll dice", - "roll_dice" - ], - [ - "i'd like a 7 sided dice roll please", - "roll_dice" - ], - [ - "i need to roll a 10 sided die", - "roll_dice" - ], - [ - "please roll a 7 sided die", - "roll_dice" - ], - [ - "let's roll some dice", - "roll_dice" - ], - [ - "i want to roll some dice", - "roll_dice" - ], - [ - "can you roll a fair, 6 sided die", - "roll_dice" - ], - [ - "i'd like to roll a dice and get the result", - "roll_dice" - ], - [ - "can you roll a dice", - "roll_dice" - ], - [ - "i want to roll a dice", - "roll_dice" - ], - [ - "help me roll a dice", - "roll_dice" - ], - [ - "roll a dice for me", - "roll_dice" - ], - [ - "go ahead and roll those dice", - "roll_dice" - ], - [ - "i need you to roll an 8 sided dice", - "roll_dice" - ], - [ - "i want you to roll dice", - "roll_dice" - ], - [ - "go ahead and roll that 9 sided dice", - "roll_dice" - ], - [ - "roll a 7 sided dice", - "roll_dice" - ], - [ - "roll the 10 sided dice on time", - "roll_dice" - ], - [ - "roll a pair of dice", - "roll_dice" - ], - [ - "please do a dice roll", - "roll_dice" - ], - [ - "please roll a 6 sided dice", - "roll_dice" - ], - [ - "roll a 6 sided die", - "roll_dice" - ], - [ - "roll a die", - "roll_dice" - ], - [ - "roll die", - "roll_dice" - ], - [ - "please roll a die now", - "roll_dice" - ], - [ - "roll this dice", - "roll_dice" - ], - [ - "i need a 10 sided die rolled", - "roll_dice" - ], - [ - "i would like a 10 sided die rolled", - "roll_dice" - ], - [ - "would you roll the dice", - "roll_dice" - ], - [ - "role a 10 sided die for me", - "roll_dice" - ], - [ - "could you role a ten sided die", - "roll_dice" - ], - [ - "can you roll a 10 sided die", - "roll_dice" - ], - [ - "the dice need to be rolled", - "roll_dice" - ], - [ - "i would like the dice to be rolled", - "roll_dice" - ], - [ - "toss a die would you", - "roll_dice" - ], - [ - "play vegas baby roll a dice for mama", - "roll_dice" - ], - [ - "find a virtual dice and roll it for me please", - "roll_dice" - ], - [ - "roll a dice and give me a number from 1 to 6", - "roll_dice" - ], - [ - "roll dice now", - "roll_dice" - ], - [ - "roll dice", - "roll_dice" - ], - [ - "roll the dice", - "roll_dice" - ], - [ - "roll dice please", - "roll_dice" - ], - [ - "go ahead and roll the dice", - "roll_dice" - ], - [ - "please roll dice", - "roll_dice" - ], - [ - "will you roll a 6 sided dice", - "roll_dice" - ], - [ - "will you roll a 3 sided dice", - "roll_dice" - ], - [ - "will you roll a 5 sided dice", - "roll_dice" - ], - [ - "will you roll a 2 sided dice", - "roll_dice" - ], - [ - "will you roll a 4 sided dice", - "roll_dice" - ], - [ - "please roll the dice", - "roll_dice" - ], - [ - "roll a dice", - "roll_dice" - ], - [ - "give me a random number between 1 and 6", - "roll_dice" - ], - [ - "i want you to roll a dice", - "roll_dice" - ], - [ - "ai, please roll the dice", - "roll_dice" - ], - [ - "roll that dice, ai", - "roll_dice" - ], - [ - "ai, would you kindly roll the dice", - "roll_dice" - ], - [ - "ai, go ahead and roll the dice", - "roll_dice" - ], - [ - "please roll the dice, ai", - "roll_dice" - ], - [ - "could you roll a 6 sided dice", - "roll_dice" - ], - [ - "can you roll a 6 sided dice", - "roll_dice" - ], - [ - "i'd like you to roll a 6 sided dice", - "roll_dice" - ], - [ - "roll a 6 sided dice for me", - "roll_dice" - ], - [ - "could you roll the 8 sided dice", - "roll_dice" - ], - [ - "can you roll the 12 sided dice please", - "roll_dice" - ], - [ - "go ahead and roll the 6 sided dice for me", - "roll_dice" - ], - [ - "please roll the 10 sided dice", - "roll_dice" - ], - [ - "please roll the 5 sided dice", - "roll_dice" - ], - [ - "give the dice a roll", - "roll_dice" - ], - [ - "roll the dice for me", - "roll_dice" - ], - [ - "can you roll the dice", - "roll_dice" - ], - [ - "could you roll the dice please", - "roll_dice" - ], - [ - "i need you to roll dice now", - "roll_dice" - ], - [ - "provide a random roll of the dice", - "roll_dice" - ], - [ - "can you roll dice", - "roll_dice" - ], - [ - "throw the dice", - "roll_dice" - ], - [ - "roll the dice!", - "roll_dice" - ], - [ - "roll the die!", - "roll_dice" - ], - [ - "shoot the dice!", - "roll_dice" - ], - [ - "throw the dice!", - "roll_dice" - ], - [ - "roll them bones!", - "roll_dice" - ], - [ - "6 sided dice roll", - "roll_dice" - ], - [ - "roll 6 sided die", - "roll_dice" - ], - [ - "roll die, 6 sided", - "roll_dice" - ], - [ - "roll a die with 6 sides please", - "roll_dice" - ], - [ - "roll a die with 6 sides", - "roll_dice" - ], - [ - "what do you get if you roll a six sided dice", - "roll_dice" - ], - [ - "tell me the result of a dice roll with five sides", - "roll_dice" - ], - [ - "what do you get when you roll a dice with five sides", - "roll_dice" - ], - [ - "i'd like to know how much you get when you roll a ten sided dice", - "roll_dice" - ], - [ - "when you roll a six sided dice what is the results", - "roll_dice" - ], - [ - "roll an eight sided die", - "roll_dice" - ], - [ - "roll a pair of eight sided dice", - "roll_dice" - ], - [ - "i need an algorithm to give me the result of rolling one twelve sided die", - "roll_dice" - ], - [ - "what number do you get when you roll one six sided die", - "roll_dice" - ], - [ - "roll a pair of six sided dice", - "roll_dice" - ], - [ - "can you roll a 4 sided dice", - "roll_dice" - ], - [ - "roll a seven sided dice for me", - "roll_dice" - ], - [ - "jello should stay in the fridge for how long", - "food_last" - ], - [ - "when will my milk be no good", - "food_last" - ], - [ - "when will my eggs go bad", - "food_last" - ], - [ - "how long will my eggs be good for", - "food_last" - ], - [ - "what date does my apple juice expire", - "food_last" - ], - [ - "how long until my cereal is ruined", - "food_last" - ], - [ - "what's the max time i can leave a green pepper in the fridge", - "food_last" - ], - [ - "what's the time frame for hamburger stored in the freezer to go bad", - "food_last" - ], - [ - "how long can i keep deer meat in the freezer before it's unedible", - "food_last" - ], - [ - "has the leftover hamburger from last saturday gone bad", - "food_last" - ], - [ - "is there a limit to how long you can store bread in the freezer", - "food_last" - ], - [ - "i've had eggs in the fridge since monday, are they still safe", - "food_last" - ], - [ - "how long can you keep chicken in the freeze before it goes bad", - "food_last" - ], - [ - "is the tofu i put in the fridge tuesday still edible today", - "food_last" - ], - [ - "how long does cottage cheese keep in the fridge", - "food_last" - ], - [ - "what's the shelf life of guacamole in the fridge", - "food_last" - ], - [ - "how long does it take for dough in the freezer to go off", - "food_last" - ], - [ - "will i get sick if i eat the tuna salad from friday", - "food_last" - ], - [ - "i put some leftover stew in the fridge and want to know how long it'll last", - "food_last" - ], - [ - "how long can i leave tuna casserole in the fridge", - "food_last" - ], - [ - "is it still safe to consume the cake she backed last thursday", - "food_last" - ], - [ - "can i safely eat chicken that i've had in my fridge since monday", - "food_last" - ], - [ - "can i eat chicken if it's been in the fridge since monday", - "food_last" - ], - [ - "is it safe to eat chicken that has been in the fridge since monday", - "food_last" - ], - [ - "will the chicken have gone bad if it's been in the fridge since monday", - "food_last" - ], - [ - "is it okay to eat chicken that i put in the fridge on monday", - "food_last" - ], - [ - "how soon until the milk expires", - "food_last" - ], - [ - "the milk will expire when", - "food_last" - ], - [ - "tell me when the milk will expire", - "food_last" - ], - [ - "what is the expiration date of the milk", - "food_last" - ], - [ - "will it be all right for me to drink milk i've had in the fridge since tuesday", - "food_last" - ], - [ - "what is the shelf life for beef in the freezer", - "food_last" - ], - [ - "can i eat the eggs i've had in the fridge since 2/21", - "food_last" - ], - [ - "how long can i keep a ham in the freezer", - "food_last" - ], - [ - "how long will chicken last in the freezer", - "food_last" - ], - [ - "can i drink milk i've kept in the fridge since wednesday", - "food_last" - ], - [ - "how long will steaks last in the freezer", - "food_last" - ], - [ - "what's the shelf life for eggs in the fridge", - "food_last" - ], - [ - "how long can i store eggs in the fridge", - "food_last" - ], - [ - "will it be okay for me to eat my leftover turkey from monday that's been in my fridge", - "food_last" - ], - [ - "how long can i keep fish in the freezer before it gets ruined", - "food_last" - ], - [ - "how long will my milk be good in the fridge", - "food_last" - ], - [ - "how long will eggs last in the fridge", - "food_last" - ], - [ - "i've had eggs in the fridge since monday are they safe eat", - "food_last" - ], - [ - "is the meatloaf still good to eat, i've had it in the refrigerator since last monday", - "food_last" - ], - [ - "apples expire in how long", - "food_last" - ], - [ - "cut cucumbers can stay in the fridge for how long before spoiling", - "food_last" - ], - [ - "ribs can stay in the fridge for how long before they turn", - "food_last" - ], - [ - "when do ribs expire", - "food_last" - ], - [ - "bananas expire in how long", - "food_last" - ], - [ - "how long does it take tomatoes to expire", - "food_last" - ], - [ - "how long can i keep avocados in the fridge before they go bad", - "food_last" - ], - [ - "how long can i keep macaroni in the fridge before it spoils", - "food_last" - ], - [ - "oranges expire in how long", - "food_last" - ], - [ - "cut carrots can stay in the fridge for how long before going bad", - "food_last" - ], - [ - "i wanna know how long can i keep pizza in the freezer for before it goes bad", - "food_last" - ], - [ - "how long can i keep pizza in the freezer for before it goes bad", - "food_last" - ], - [ - "it seems to be that i have had pizza in the fridge since monday, so is it safe to eat", - "food_last" - ], - [ - "how long can pizza be in the fridge", - "food_last" - ], - [ - "so how long can pizza last in the fridge", - "food_last" - ], - [ - "it turns out i have had pizza in the fridge since monday, so is it safe to eat", - "food_last" - ], - [ - "i got to know how long can i keep pizza in the freezer for before it goes bad", - "food_last" - ], - [ - "so it seems i have had pizza in the fridge since monday, so is it safe to eat", - "food_last" - ], - [ - "how long can i leave pizza in the fridge", - "food_last" - ], - [ - "tell me how long can i keep pizza in the freezer for before it goes bad", - "food_last" - ], - [ - "how long can i have pizza in the fridge", - "food_last" - ], - [ - "i have had pizza in the fridge since monday, so is it safe to eat", - "food_last" - ], - [ - "so i have had pizza in the fridge since monday, so is it safe to eat", - "food_last" - ], - [ - "i need to know how long can i keep pizza in the freezer for before it goes bad", - "food_last" - ], - [ - "how long can i put pizza in the fridge", - "food_last" - ], - [ - "what is the length of time i can leave pork in the fridge", - "food_last" - ], - [ - "how long until pork spoils in the fridge", - "food_last" - ], - [ - "how long is pork good in the fridge", - "food_last" - ], - [ - "is there a time limit on leaving pork in the fridge", - "food_last" - ], - [ - "when does pork go bad in the fridge", - "food_last" - ], - [ - "when does milk expire", - "food_last" - ], - [ - "how long does it take frozen steaks to go bad", - "food_last" - ], - [ - "how long does bread last in the freezer", - "food_last" - ], - [ - "how long does bread last", - "food_last" - ], - [ - "how long can i expect chicken breast to be good for before expiration", - "food_last" - ], - [ - "how long will eggs keep in the freezer", - "food_last" - ], - [ - "how long do i have before frozen chicken will go bad", - "food_last" - ], - [ - "how long are eggs good for", - "food_last" - ], - [ - "how long can i expect to keep steak in the freezer", - "food_last" - ], - [ - "what's the expiration for steak", - "food_last" - ], - [ - "is it ok to eat alfredo that's been in the fridge since last sunday", - "food_last" - ], - [ - "my chinese food has sat in the fridge since friday but can i still eat it", - "food_last" - ], - [ - "how long is it safe to leave a burger in the refrigerator", - "food_last" - ], - [ - "what is the fridge life of spahghetti", - "food_last" - ], - [ - "check if it is ok to eat cheese that has been in the refrigerator since last tuesday", - "food_last" - ], - [ - "give me the length of time that i can leave milk in my fridge", - "food_last" - ], - [ - "how long is it safe to leave shrimp in the fridge", - "food_last" - ], - [ - "i have had pasta in the fridge since monday, can is till consume it", - "food_last" - ], - [ - "am i good to eat this burger from the fridge that i got two mondays ago", - "food_last" - ], - [ - "when will lettuce in the fridge go bad", - "food_last" - ], - [ - "i've got some chips from monday, will they still be ok to eat", - "food_last" - ], - [ - "i have potatoes in the cupboard from wednesday, are they fine", - "food_last" - ], - [ - "i have tomatoes from tuesday, do you think those are still good", - "food_last" - ], - [ - "i've had these burger patties in the freezer since saturday, are they still fine to cook", - "food_last" - ], - [ - "if i have garlic from sunday is it still fine to use", - "food_last" - ], - [ - "how long will the turkey take to cook", - "cook_time" - ], - [ - "so how long do you think the chicken will take", - "cook_time" - ], - [ - "how long does pizza take to cook", - "cook_time" - ], - [ - "how long is the chicken gonna take", - "cook_time" - ], - [ - "how long will the chicken take to cook", - "cook_time" - ], - [ - "how long does it take to cook roast beef", - "cook_time" - ], - [ - "how long does it take to boil an egg", - "cook_time" - ], - [ - "how long does it take to bake a pork loin", - "cook_time" - ], - [ - "how long does it take to make roast chicken", - "cook_time" - ], - [ - "how long does it take to cook a pork chop", - "cook_time" - ], - [ - "how much time do i need to make the chicken", - "cook_time" - ], - [ - "what's the prep and cooking time on pizza dough", - "cook_time" - ], - [ - "how long does it take to make lasagna", - "cook_time" - ], - [ - "how long will it take to make the wings", - "cook_time" - ], - [ - "what's the cooking time for the cake", - "cook_time" - ], - [ - "the steak must go under the broiler for how long", - "cook_time" - ], - [ - "how long do i put the casserole in", - "cook_time" - ], - [ - "if i cook the pizza at 400 degrees how long must it be in for", - "cook_time" - ], - [ - "how long do you need to put the cuish in for", - "cook_time" - ], - [ - "the sauce must simmer then go in the oven but for how long", - "cook_time" - ], - [ - "i need the cooking length for a turkey", - "cook_time" - ], - [ - "how many minutes do i cook baked ziti", - "cook_time" - ], - [ - "how long does it take to cook ham", - "cook_time" - ], - [ - "i need to know how long to do a pot roast in a slow cooker", - "cook_time" - ], - [ - "how long does a roast take", - "cook_time" - ], - [ - "how long is it acceptable to carmelize onions", - "cook_time" - ], - [ - "when should i take an apple pie out", - "cook_time" - ], - [ - "how long do you cook a salmon", - "cook_time" - ], - [ - "how much time does it take to boil an egg", - "cook_time" - ], - [ - "what is the duration of time cookies should be in the oven", - "cook_time" - ], - [ - "about how long should you cook lasagna", - "cook_time" - ], - [ - "what is the prep time for a 10 lb turkey", - "cook_time" - ], - [ - "how many minutes to melt cheese", - "cook_time" - ], - [ - "how long to reheat chinese food", - "cook_time" - ], - [ - "how long do you cook pasta for", - "cook_time" - ], - [ - "about how long should you cook a 10 pound turkey", - "cook_time" - ], - [ - "how long does it take to prepare pot roast", - "cook_time" - ], - [ - "how long to microwave a pizza", - "cook_time" - ], - [ - "how long should i cook a glazed ham", - "cook_time" - ], - [ - "how long should i cook a spiral ham", - "cook_time" - ], - [ - "how long do the brownies have to cook", - "cook_time" - ], - [ - "how long to i bake the brownies", - "cook_time" - ], - [ - "how long should i bake the brownies for", - "cook_time" - ], - [ - "for how long should i bake the brownies", - "cook_time" - ], - [ - "how long do the brownies need to be in the oven", - "cook_time" - ], - [ - "how long does this dish need to be in the oven", - "cook_time" - ], - [ - "for how long does this need to cook", - "cook_time" - ], - [ - "what do i set the timer for if i'm making gyoza", - "cook_time" - ], - [ - "what should i put on the timer to cook this dish", - "cook_time" - ], - [ - "how long do i cook this dish of rice", - "cook_time" - ], - [ - "how long should a cake bake", - "cook_time" - ], - [ - "how long to microwave a frozen dinner", - "cook_time" - ], - [ - "what's the preparation time for spaghetti", - "cook_time" - ], - [ - "how long should this be in the oven", - "cook_time" - ], - [ - "how long to cook a frozen pizza", - "cook_time" - ], - [ - "i want to bake brownies, how long do they bake for", - "cook_time" - ], - [ - "how long do you bake a cake", - "cook_time" - ], - [ - "how long does it take to make shrimp scampi", - "cook_time" - ], - [ - "how long to cook steak for", - "cook_time" - ], - [ - "how long do you cook a hamburger for", - "cook_time" - ], - [ - "how long should i expect beef stroganoff to prepare", - "cook_time" - ], - [ - "how long do i cook steak", - "cook_time" - ], - [ - "what's the cooking time for chicken alfredo", - "cook_time" - ], - [ - "how long does it take pork to cook", - "cook_time" - ], - [ - "how much time do i need to prepare chicken", - "cook_time" - ], - [ - "noodles need to cook for how long", - "cook_time" - ], - [ - "how long should i boil noodles for", - "cook_time" - ], - [ - "how long do noodles need to cook", - "cook_time" - ], - [ - "what time should i cook noodles for", - "cook_time" - ], - [ - "how long do i need to make lasagne", - "cook_time" - ], - [ - "how long will it take me to make baked chicken", - "cook_time" - ], - [ - "how long will it take to fix shepherd's pie", - "cook_time" - ], - [ - "how long do cheeseburgers take to make", - "cook_time" - ], - [ - "how long should i cook the ham for", - "cook_time" - ], - [ - "how long should i cook the eggs for", - "cook_time" - ], - [ - "how long should i cook the asparagus for", - "cook_time" - ], - [ - "how long should i cook the pasta for", - "cook_time" - ], - [ - "how long should i cook the steak for", - "cook_time" - ], - [ - "what is the necessary amount of time required to prepare pot roast", - "cook_time" - ], - [ - "how long am i supposed to cook pork loin", - "cook_time" - ], - [ - "how long must i cook spaghetti for", - "cook_time" - ], - [ - "tell me how long i will need to spend preparing a meat loaf dish", - "cook_time" - ], - [ - "i need to know the preparation time required for fried chicken", - "cook_time" - ], - [ - "how long should i spend preparing roast beef", - "cook_time" - ], - [ - "what amount of time do i need to cook lobster for", - "cook_time" - ], - [ - "what is the proper time to cook steak for", - "cook_time" - ], - [ - "how long should i cook chicken", - "cook_time" - ], - [ - "tell me how long i ought to spend preparing fajitas", - "cook_time" - ], - [ - "how long should i cook chicken thighs", - "cook_time" - ], - [ - "how long should i cook a ny steak", - "cook_time" - ], - [ - "how long do i cook pork", - "cook_time" - ], - [ - "how long do i cook the chicken roast", - "cook_time" - ], - [ - "how long do i cook chicken breast", - "cook_time" - ], - [ - "what's the time it takes to make a decent omelette", - "cook_time" - ], - [ - "how long should i fry an egg for", - "cook_time" - ], - [ - "what's the prep time for a garden salad", - "cook_time" - ], - [ - "what's the usual time for tuna casserole", - "cook_time" - ], - [ - "how long do you need to bake chicken for it to be safe to eat", - "cook_time" - ], - [ - "how long should i cook a steak for", - "cook_time" - ], - [ - "how long should i wait before i can bake bread with homemade dough", - "cook_time" - ], - [ - "remind me to call my mother saturday morning", - "reminder_update" - ], - [ - "please set up a reminder i need to remember to ask about work", - "reminder_update" - ], - [ - "make a reminder for me to do my resume", - "reminder_update" - ], - [ - "remind me to take out the garbage in the morning", - "reminder_update" - ], - [ - "the next time it rains, remind me to close the windows", - "reminder_update" - ], - [ - "could you make me a reminder to do the floors", - "reminder_update" - ], - [ - "i need a reminder set for signing up for the conference", - "reminder_update" - ], - [ - "set a reminder for me to call my brother at 8 pm", - "reminder_update" - ], - [ - "make me a reminder about booking it", - "reminder_update" - ], - [ - "at 4 tomorrow afternoon, remind me to start the oven", - "reminder_update" - ], - [ - "how about a reminder", - "reminder_update" - ], - [ - "i would like a reminder", - "reminder_update" - ], - [ - "i need to make a reminder please", - "reminder_update" - ], - [ - "please give me a reminder", - "reminder_update" - ], - [ - "can you set me a reminder", - "reminder_update" - ], - [ - "can i set a reminder", - "reminder_update" - ], - [ - "please make a reminder", - "reminder_update" - ], - [ - "add a reminder to check how the body is decomposing", - "reminder_update" - ], - [ - "remind me to set the meat out to defrost", - "reminder_update" - ], - [ - "create a reminder for me to exercise this week", - "reminder_update" - ], - [ - "will you add a reminder for me", - "reminder_update" - ], - [ - "add a reminder to pick milk up at the store", - "reminder_update" - ], - [ - "make a reminder to do my taxes", - "reminder_update" - ], - [ - "set a reminder to remind me to check when my car payment is", - "reminder_update" - ], - [ - "set a reminder for me to take my meds", - "reminder_update" - ], - [ - "can you create a reminder", - "reminder_update" - ], - [ - "create a reminder for me to send flowers to my mom for mother's day", - "reminder_update" - ], - [ - "i'd like to have a reminder made", - "reminder_update" - ], - [ - "set a reminder for later", - "reminder_update" - ], - [ - "please remind me later", - "reminder_update" - ], - [ - "remind me again please", - "reminder_update" - ], - [ - "remind me later", - "reminder_update" - ], - [ - "please remind me at a later time", - "reminder_update" - ], - [ - "set a reminder", - "reminder_update" - ], - [ - "remind me", - "reminder_update" - ], - [ - "please remind me of something", - "reminder_update" - ], - [ - "i need a reminder", - "reminder_update" - ], - [ - "i would like to be reminded", - "reminder_update" - ], - [ - "set a reminder for me", - "reminder_update" - ], - [ - "i need a reminder to remind me to do something", - "reminder_update" - ], - [ - "i want you to remind me of something", - "reminder_update" - ], - [ - "i need you to remind me to get something done", - "reminder_update" - ], - [ - "remind me to call the vet tomorrow", - "reminder_update" - ], - [ - "set a reminder for me to do this in a bit", - "reminder_update" - ], - [ - "can you set a reminder for the meeting", - "reminder_update" - ], - [ - "set a reminder to go dress shopping", - "reminder_update" - ], - [ - "remember to remind me of this later", - "reminder_update" - ], - [ - "i need to set a reminder to go to the post office", - "reminder_update" - ], - [ - "set a reminder for tomorrows meeting", - "reminder_update" - ], - [ - "set a reminder for the movie", - "reminder_update" - ], - [ - "set a reminder to go grocery shopping", - "reminder_update" - ], - [ - "set a reminder to feed the dogs", - "reminder_update" - ], - [ - "set a reminder to go check the mail", - "reminder_update" - ], - [ - "make a reminder to change the cat litter", - "reminder_update" - ], - [ - "set a reminder for my doctors appointment", - "reminder_update" - ], - [ - "dont forget to set a reminder to pay the bills", - "reminder_update" - ], - [ - "please remind me to do this later", - "reminder_update" - ], - [ - "remind me to do this in awhile", - "reminder_update" - ], - [ - "help me set a reminder to work out", - "reminder_update" - ], - [ - "dont let me forget to do that thing later", - "reminder_update" - ], - [ - "make a reminder to work out at the gym", - "reminder_update" - ], - [ - "set a reminder to pick up the kids", - "reminder_update" - ], - [ - "set a reminder to call my mom", - "reminder_update" - ], - [ - "remind me to take the chicken out in a hour", - "reminder_update" - ], - [ - "set reminder to prepare for my meeting at 10 am", - "reminder_update" - ], - [ - "set reminder for tomorrow to eat", - "reminder_update" - ], - [ - "remind me to bring a jacket in tomorrow", - "reminder_update" - ], - [ - "set a reminder to bring a book to work tomorrow", - "reminder_update" - ], - [ - "set a new reminder for tomorrow at 4am", - "reminder_update" - ], - [ - "make reminder to pay rent on the 30th of every month", - "reminder_update" - ], - [ - "open up a reminder, pay taxes on monday", - "reminder_update" - ], - [ - "new reminder, please", - "reminder_update" - ], - [ - "create a reminder to give the cat her flea medicine", - "reminder_update" - ], - [ - "set up a reminder to give the cat her flea medicine", - "reminder_update" - ], - [ - "i need you to make a reminder for me to give the cat her flea medicine", - "reminder_update" - ], - [ - "make a reminder, pay taxes on monday", - "reminder_update" - ], - [ - "set reminder pay taxes on monday", - "reminder_update" - ], - [ - "make a reminder to give the cat her flea medicine", - "reminder_update" - ], - [ - "set up an alarm to remind me to give my cat her flea medicine", - "reminder_update" - ], - [ - "set reminder to feed cat tonight at 6pm", - "reminder_update" - ], - [ - "set a reminder for monday pay taxes", - "reminder_update" - ], - [ - "create a reminder to pay taxes on monday", - "reminder_update" - ], - [ - "remind me to use the bathroom", - "reminder_update" - ], - [ - "please reminder for car meet", - "reminder_update" - ], - [ - "remind me to clean room", - "reminder_update" - ], - [ - "i need to be notified to clean the room", - "reminder_update" - ], - [ - "remind me tommorow at 3pm i have a doctors appointment", - "reminder_update" - ], - [ - "remind me friday to call my mother", - "reminder_update" - ], - [ - "make me a reminder that tommorow is trash day", - "reminder_update" - ], - [ - "set up a reminder that i need to pay my car ins the 23rd", - "reminder_update" - ], - [ - "set up a reminder to mail a check tommorow", - "reminder_update" - ], - [ - "i need to take out the trash please remind me", - "reminder_update" - ], - [ - "set a reminder to take out the trash", - "reminder_update" - ], - [ - "tell me to take out the trash in an hour", - "reminder_update" - ], - [ - "remind me to take out the trash", - "reminder_update" - ], - [ - "please remind me to take out the trash", - "reminder_update" - ], - [ - "i need to be reminded to pray", - "reminder_update" - ], - [ - "i want to get reminded to clean my room", - "reminder_update" - ], - [ - "remind me to call bob", - "reminder_update" - ], - [ - "give me a reminder for calling bill", - "reminder_update" - ], - [ - "immediately the credit card company must be told that i lost my card from them", - "report_lost_card" - ], - [ - "i lost my debit card and need it reported as lost", - "report_lost_card" - ], - [ - "i can't seem to find my gold card and want it reported as lost", - "report_lost_card" - ], - [ - "i lost my chase bank card and want it labeled as lost", - "report_lost_card" - ], - [ - "can you report my td bank card as lost", - "report_lost_card" - ], - [ - "i misplaced my visa and need it marked as lost", - "report_lost_card" - ], - [ - "what do i do if my visa card got stolen", - "report_lost_card" - ], - [ - "what should i do when my visa card is stolen", - "report_lost_card" - ], - [ - "my visa card was stolen", - "report_lost_card" - ], - [ - "my visa card got stolen", - "report_lost_card" - ], - [ - "i think my visa card was stolen", - "report_lost_card" - ], - [ - "my visa has been stolen by someone", - "report_lost_card" - ], - [ - "someone stole my mastercade", - "report_lost_card" - ], - [ - "my visa was stolen", - "report_lost_card" - ], - [ - "my american express card needs to be reported as stolen", - "report_lost_card" - ], - [ - "my discover card has been stolen", - "report_lost_card" - ], - [ - "report lost card to discover company", - "report_lost_card" - ], - [ - "report discover card as lost", - "report_lost_card" - ], - [ - "how do i report a lost discover credit card", - "report_lost_card" - ], - [ - "where to report lost discover credit card", - "report_lost_card" - ], - [ - "report lost card", - "report_lost_card" - ], - [ - "report a lost card here", - "report_lost_card" - ], - [ - "please report my stolen card", - "report_lost_card" - ], - [ - "could you please help me, my card has been stolen and i need to report it", - "report_lost_card" - ], - [ - "my credit card has been stolen, please report it", - "report_lost_card" - ], - [ - "oh no, report my card, it's stolen", - "report_lost_card" - ], - [ - "i would like to have my card reported as stolen", - "report_lost_card" - ], - [ - "i need to report a card that's been lost but i dont know how", - "report_lost_card" - ], - [ - "how can i report a card that has been lost", - "report_lost_card" - ], - [ - "file a report for a lost american express card", - "report_lost_card" - ], - [ - "help me report my lost mastercard", - "report_lost_card" - ], - [ - "i lost my card, how should i report that", - "report_lost_card" - ], - [ - "what should i do if my card is lost", - "report_lost_card" - ], - [ - "report my lost visa card", - "report_lost_card" - ], - [ - "i lost my amex and need to report it", - "report_lost_card" - ], - [ - "i have to report a lost visa card", - "report_lost_card" - ], - [ - "walk me through the process of reporting a lost card", - "report_lost_card" - ], - [ - "what can i do if my card is lost", - "report_lost_card" - ], - [ - "my card is lost what do i do", - "report_lost_card" - ], - [ - "my card is lost how do i report it", - "report_lost_card" - ], - [ - "what must i do to report my card lost", - "report_lost_card" - ], - [ - "can you help me report my lost card please", - "report_lost_card" - ], - [ - "my card is lost please report it", - "report_lost_card" - ], - [ - "i need to report that my card has been lost", - "report_lost_card" - ], - [ - "i want you to repord my card as lost", - "report_lost_card" - ], - [ - "i lost my card, what do i do", - "report_lost_card" - ], - [ - "i need to report that my card is lost", - "report_lost_card" - ], - [ - "i need to replace my lost card", - "report_lost_card" - ], - [ - "what do i do if i lost my card", - "report_lost_card" - ], - [ - "how do i report a lost card", - "report_lost_card" - ], - [ - "someone stole my discover card", - "report_lost_card" - ], - [ - "my american saving bank was stolen", - "report_lost_card" - ], - [ - "someone stole my discover credit card", - "report_lost_card" - ], - [ - "someone stole my capital one credit card", - "report_lost_card" - ], - [ - "my capital one credit card was stolen", - "report_lost_card" - ], - [ - "my card is to be reported stolen", - "report_lost_card" - ], - [ - "my stolen card needs to be reported", - "report_lost_card" - ], - [ - "i need to report my stolen card", - "report_lost_card" - ], - [ - "i have to report my card as stolen", - "report_lost_card" - ], - [ - "i am obliged to report my stolen card", - "report_lost_card" - ], - [ - "i need to report my card as stolen, please", - "report_lost_card" - ], - [ - "i can't find my mastercard and i want to report it as lost, please", - "report_lost_card" - ], - [ - "i can't find my visa card and i want to report it as lost", - "report_lost_card" - ], - [ - "i can't find my mastercard and i want to report it as lost", - "report_lost_card" - ], - [ - "i would like to report my card as stolen", - "report_lost_card" - ], - [ - "i can't find my visa card and i want to report it as lost, please", - "report_lost_card" - ], - [ - "i'd like to report my card as stolen", - "report_lost_card" - ], - [ - "i'd like to report my card as stolen, please", - "report_lost_card" - ], - [ - "i can't locate my mastercard and i want to report it as lost, please", - "report_lost_card" - ], - [ - "i would like to report my card as stolen, please", - "report_lost_card" - ], - [ - "i need to report a stolen card, please", - "report_lost_card" - ], - [ - "i think my card is stolen and needs to be reported", - "report_lost_card" - ], - [ - "i would like to report a stolen card", - "report_lost_card" - ], - [ - "is there anyway, i can report my card being stolen", - "report_lost_card" - ], - [ - "my card is stolen, i need to report it", - "report_lost_card" - ], - [ - "my new debit card is lost and i need to report it", - "report_lost_card" - ], - [ - "my bronze card is missing i would like to report it as lost", - "report_lost_card" - ], - [ - "i lost my purple credit card and need to report it", - "report_lost_card" - ], - [ - "i lost my silicon valley card", - "report_lost_card" - ], - [ - "i lost my commerce card and need to report it as lost", - "report_lost_card" - ], - [ - "someone stole my card", - "report_lost_card" - ], - [ - "i need help since someone stole my card", - "report_lost_card" - ], - [ - "my credit card was stolen", - "report_lost_card" - ], - [ - "i need to report credit card theft", - "report_lost_card" - ], - [ - "who do i report card theft to", - "report_lost_card" - ], - [ - "i want to report my card as lost", - "report_lost_card" - ], - [ - "i need to report a lost card", - "report_lost_card" - ], - [ - "what do i do to report a lost card", - "report_lost_card" - ], - [ - "how do i report my lost card", - "report_lost_card" - ], - [ - "help me report a lost card", - "report_lost_card" - ], - [ - "can you report my lost discover card", - "report_lost_card" - ], - [ - "report my card as lost", - "report_lost_card" - ], - [ - "i lost my card how do i report it", - "report_lost_card" - ], - [ - "i lost my discover card, i want to report it", - "report_lost_card" - ], - [ - "i want to report my discover card as lost", - "report_lost_card" - ], - [ - "i can't find my discover card, how do i report it", - "report_lost_card" - ], - [ - "i can't find my credit card and i want to report it as lost", - "report_lost_card" - ], - [ - "i can't find my insurance card and i want to report it as lost", - "report_lost_card" - ], - [ - "i can't find my student id card and i want to report it as lost", - "report_lost_card" - ], - [ - "i need to report my card as stolen, who do i tell", - "report_lost_card" - ], - [ - "what about changing the sugar for baking soda", - "ingredient_substitution" - ], - [ - "can i swap sugar for salt", - "ingredient_substitution" - ], - [ - "would it be possible to replace the salt with baking soda", - "ingredient_substitution" - ], - [ - "instead of pepper, can i use salt", - "ingredient_substitution" - ], - [ - "can i take out the olive oil and use lard", - "ingredient_substitution" - ], - [ - "can i use water instead of milk", - "ingredient_substitution" - ], - [ - "it is okay to use water in place of milk", - "ingredient_substitution" - ], - [ - "it is okay to replace water instead of milk", - "ingredient_substitution" - ], - [ - "is it okay to switch water for milk", - "ingredient_substitution" - ], - [ - "will it be okay if i use water instead of milk", - "ingredient_substitution" - ], - [ - "can i substitute ginger for garlic", - "ingredient_substitution" - ], - [ - "can i substitute rice for potatoes", - "ingredient_substitution" - ], - [ - "can i substitute oregano for basil", - "ingredient_substitution" - ], - [ - "can i substitute bacon for sausage", - "ingredient_substitution" - ], - [ - "can i substitute honey for sugar", - "ingredient_substitution" - ], - [ - "can i switch cream with milk in a recipe", - "ingredient_substitution" - ], - [ - "can i exchange milk for cream in recipes", - "ingredient_substitution" - ], - [ - "is milk an ok substitute for cream", - "ingredient_substitution" - ], - [ - "can i use milk instead of cream", - "ingredient_substitution" - ], - [ - "can i switch cream out for milk", - "ingredient_substitution" - ], - [ - "can i substitute skim milk for whole milk", - "ingredient_substitution" - ], - [ - "is it okay to substitute oregano for basil", - "ingredient_substitution" - ], - [ - "can i use colby jack cheese instead of cheddar in a recipe", - "ingredient_substitution" - ], - [ - "can i use dark brown sugar instead of brown sugar", - "ingredient_substitution" - ], - [ - "can i substitute lemon juice for vinegar", - "ingredient_substitution" - ], - [ - "can i use apple juice instead of grape juice", - "ingredient_substitution" - ], - [ - "can i substitute apple juice for wine", - "ingredient_substitution" - ], - [ - "can i substitute vinegar for apple cider vinegar", - "ingredient_substitution" - ], - [ - "can i substitute lemon juice for lime juice", - "ingredient_substitution" - ], - [ - "can i use sour cream instead of yogurt", - "ingredient_substitution" - ], - [ - "is it possible to substitute apple cider vinegar for lemons", - "ingredient_substitution" - ], - [ - "i need to know if i could substitute apple sauce with eggs", - "ingredient_substitution" - ], - [ - "is honey a good sugar substitute", - "ingredient_substitution" - ], - [ - "could i use olive oil instead of grape seed oil", - "ingredient_substitution" - ], - [ - "can i use flour as a substitute for bread crumbs", - "ingredient_substitution" - ], - [ - "i need to swap salt for baking soda", - "ingredient_substitution" - ], - [ - "i wanna swap salt for baking soda", - "ingredient_substitution" - ], - [ - "i need to sub sugar for salt", - "ingredient_substitution" - ], - [ - "can i sub sugar for salt", - "ingredient_substitution" - ], - [ - "is it ok to sub sugar for salt", - "ingredient_substitution" - ], - [ - "let me swap salt for baking soda", - "ingredient_substitution" - ], - [ - "please allow me to swap salt for baking soda", - "ingredient_substitution" - ], - [ - "is it acceptable to swap salt for baking soda", - "ingredient_substitution" - ], - [ - "i gotta sub sugar for salt", - "ingredient_substitution" - ], - [ - "i wanna sub sugar for salt", - "ingredient_substitution" - ], - [ - "can i use flour instead of cornstarch to make gravy", - "ingredient_substitution" - ], - [ - "can i substitute yogurt for sour cream", - "ingredient_substitution" - ], - [ - "if a recipe calls for sour cream, can i use yogurt", - "ingredient_substitution" - ], - [ - "can i use sour cream in place of creme fraiche", - "ingredient_substitution" - ], - [ - "can i use yogurt in place of sour cream", - "ingredient_substitution" - ], - [ - "can i use sour cream instead of milk", - "ingredient_substitution" - ], - [ - "i don't have sour cream, can i use yogurt instead", - "ingredient_substitution" - ], - [ - "can i swap yogurt for sour cream", - "ingredient_substitution" - ], - [ - "can yogurt be used for sour cream", - "ingredient_substitution" - ], - [ - "is it fine to sub bread flour with all-purpose flour", - "ingredient_substitution" - ], - [ - "are you able to sub white sugar for brown sugar", - "ingredient_substitution" - ], - [ - "can you sub half and half for heavy whipping cream", - "ingredient_substitution" - ], - [ - "can i use baking powder instead of baking soda", - "ingredient_substitution" - ], - [ - "do you think i can sub honey for sugar", - "ingredient_substitution" - ], - [ - "proper to substitute cumin for tumeric", - "ingredient_substitution" - ], - [ - "can substitute cumin for tumeric", - "ingredient_substitution" - ], - [ - "cumin may be substituted for tumeric", - "ingredient_substitution" - ], - [ - "is almond milk an acceptable substitute for milk", - "ingredient_substitution" - ], - [ - "can i swap coconut milk for condensed milk", - "ingredient_substitution" - ], - [ - "can i substitute eggs for milk in a recipe", - "ingredient_substitution" - ], - [ - "could i use white wine instead of red wine in a recipe", - "ingredient_substitution" - ], - [ - "can i substitute ketchup for mustard", - "ingredient_substitution" - ], - [ - "can i substitute milk for almond milk", - "ingredient_substitution" - ], - [ - "is it acceptable to swap milk for water", - "ingredient_substitution" - ], - [ - "is it acceptable to swap chicken for pork", - "ingredient_substitution" - ], - [ - "is it acceptable to swap marinara for alfredo", - "ingredient_substitution" - ], - [ - "can i substitute milk for water", - "ingredient_substitution" - ], - [ - "is it acceptable to swap rice for quinoa", - "ingredient_substitution" - ], - [ - "can i substitute butter for margarine", - "ingredient_substitution" - ], - [ - "is it acceptable to swap beef for tempeh", - "ingredient_substitution" - ], - [ - "can i substitute salt for pepper", - "ingredient_substitution" - ], - [ - "is it ok to use brown sugar instead of powdered sugar", - "ingredient_substitution" - ], - [ - "can i use margarine instead of butter", - "ingredient_substitution" - ], - [ - "can i switch in almond butter for peanut butter", - "ingredient_substitution" - ], - [ - "can i use salt instead of baking soda", - "ingredient_substitution" - ], - [ - "can i substitute cream for milk", - "ingredient_substitution" - ], - [ - "can i use baking soda instead of baking powder", - "ingredient_substitution" - ], - [ - "what can i use as a substitute for yeast", - "ingredient_substitution" - ], - [ - "substitute for milk in pancakes", - "ingredient_substitution" - ], - [ - "alternatives to white wine in food", - "ingredient_substitution" - ], - [ - "can i use something else if i don't have eggs", - "ingredient_substitution" - ], - [ - "can i use a green pepper instead of a red pepper", - "ingredient_substitution" - ], - [ - "is it possible to use sausage instead of hot dog", - "ingredient_substitution" - ], - [ - "is it ok to substitute spinach for lettuce", - "ingredient_substitution" - ], - [ - "is crushed garlic the same as powdered garlic for a spaghetti sauce", - "ingredient_substitution" - ], - [ - "can i use almond milk instead of rice milk", - "ingredient_substitution" - ], - [ - "can i swap cayenne pepper for black pepper", - "ingredient_substitution" - ], - [ - "can i use normal flour if i don't have bread flour", - "ingredient_substitution" - ], - [ - "can i use olive oil instead of butter", - "ingredient_substitution" - ], - [ - "can i use coconut oil instead of olive oil", - "ingredient_substitution" - ], - [ - "can you just use regular milk instead of buttermilk", - "ingredient_substitution" - ], - [ - "can i use strawberries instead of pineapples for this", - "ingredient_substitution" - ], - [ - "can i use sharp cheddar instead of muenster", - "ingredient_substitution" - ], - [ - "can i use mayonnaise instead of miracle whip", - "ingredient_substitution" - ], - [ - "can i substitute rice milk for milk", - "ingredient_substitution" - ], - [ - "place a phone call to yiming", - "make_call" - ], - [ - "phone lobby", - "make_call" - ], - [ - "can you call dominos pizza", - "make_call" - ], - [ - "can you redial the last number dialed", - "make_call" - ], - [ - "call 911", - "make_call" - ], - [ - "can you call a taxi", - "make_call" - ], - [ - "can you call mom", - "make_call" - ], - [ - "call work", - "make_call" - ], - [ - "call justin", - "make_call" - ], - [ - "call home", - "make_call" - ], - [ - "call erryn", - "make_call" - ], - [ - "i have to call the commander", - "make_call" - ], - [ - "i will be calling hr", - "make_call" - ], - [ - "it is important that i call katie", - "make_call" - ], - [ - "x is who i need to call", - "make_call" - ], - [ - "i am going to call the landlord", - "make_call" - ], - [ - "call macy", - "make_call" - ], - [ - "dial lisa's cell phone number", - "make_call" - ], - [ - "please dial david now", - "make_call" - ], - [ - "i need you to call michael at home", - "make_call" - ], - [ - "can you call mary", - "make_call" - ], - [ - "please phone lizzy", - "make_call" - ], - [ - "please dial x's phone number", - "make_call" - ], - [ - "dial x's phone please", - "make_call" - ], - [ - "please call toby", - "make_call" - ], - [ - "call dave", - "make_call" - ], - [ - "call my best friend", - "make_call" - ], - [ - "can you make a phone call to mark", - "make_call" - ], - [ - "can you call my mom", - "make_call" - ], - [ - "call mark", - "make_call" - ], - [ - "call friend", - "make_call" - ], - [ - "can i call a restaurant", - "make_call" - ], - [ - "can you make a phone call to kevin", - "make_call" - ], - [ - "call bob for me", - "make_call" - ], - [ - "call my mother", - "make_call" - ], - [ - "call jim", - "make_call" - ], - [ - "can you make a phone call to roger", - "make_call" - ], - [ - "can you make a phone call to dave", - "make_call" - ], - [ - "call mymother", - "make_call" - ], - [ - "can you make a phone call to randy", - "make_call" - ], - [ - "bella needs to be called", - "make_call" - ], - [ - "give liz a call", - "make_call" - ], - [ - "would you give jenny a call", - "make_call" - ], - [ - "i want you to call bella", - "make_call" - ], - [ - "phone call secretary", - "make_call" - ], - [ - "get a hold of sue", - "make_call" - ], - [ - "i'm looking to call a group", - "make_call" - ], - [ - "call tom", - "make_call" - ], - [ - "dial x's number", - "make_call" - ], - [ - "dial christie's cell", - "make_call" - ], - [ - "call christie's work number", - "make_call" - ], - [ - "phone christie", - "make_call" - ], - [ - "call christie", - "make_call" - ], - [ - "please dial christie's number", - "make_call" - ], - [ - "can you call someone", - "make_call" - ], - [ - "call someone for me", - "make_call" - ], - [ - "dial someone's phone number", - "make_call" - ], - [ - "i need to talk to someone on the phone", - "make_call" - ], - [ - "call someone", - "make_call" - ], - [ - "it's time for me to call drew", - "make_call" - ], - [ - "it's necessary to call michael", - "make_call" - ], - [ - "i must call jordan", - "make_call" - ], - [ - "x is waiting for me to call", - "make_call" - ], - [ - "put me on a call to sally", - "make_call" - ], - [ - "place a call to bill now", - "make_call" - ], - [ - "i want to place a call to mike", - "make_call" - ], - [ - "i have to call jane", - "make_call" - ], - [ - "can you call russell", - "make_call" - ], - [ - "place call to robby", - "make_call" - ], - [ - "dial sarah", - "make_call" - ], - [ - "call robby", - "make_call" - ], - [ - "phone sarah", - "make_call" - ], - [ - "call sarah", - "make_call" - ], - [ - "call robby for me", - "make_call" - ], - [ - "i want to call robby", - "make_call" - ], - [ - "can you call robby", - "make_call" - ], - [ - "phonecall sarah", - "make_call" - ], - [ - "i want to talk to sarah", - "make_call" - ], - [ - "dial steven", - "make_call" - ], - [ - "phone steven", - "make_call" - ], - [ - "ring steven", - "make_call" - ], - [ - "call steven", - "make_call" - ], - [ - "i want to make a call to uncle", - "make_call" - ], - [ - "use my phone to dial work", - "make_call" - ], - [ - "start a phone call with kathy", - "make_call" - ], - [ - "initiate a phone call with receptionist", - "make_call" - ], - [ - "can a phone call be made to maria", - "make_call" - ], - [ - "i need you to call the broker", - "make_call" - ], - [ - "please do me a favor and call brother mario", - "make_call" - ], - [ - "can you please call nata", - "make_call" - ], - [ - "call sandra right now", - "make_call" - ], - [ - "immediately call tom", - "make_call" - ], - [ - "i must call dr smith", - "make_call" - ], - [ - "connect me to bob", - "make_call" - ], - [ - "place a call to father callahan", - "make_call" - ], - [ - "i should call ruthie", - "make_call" - ], - [ - "please call christy", - "make_call" - ], - [ - "i must call roderick", - "make_call" - ], - [ - "please make a phone call to christopher", - "make_call" - ], - [ - "i need to call mark", - "make_call" - ], - [ - "wake me up at noon tomorrow", - "alarm" - ], - [ - "set my alarm for getting up", - "alarm" - ], - [ - "make sure my alarm is set for three thirty in the morning", - "alarm" - ], - [ - "please set an alarm for mid day", - "alarm" - ], - [ - "have an alarm set for three in the morning", - "alarm" - ], - [ - "you need to set alarm for me", - "alarm" - ], - [ - "i need you to set alarm for me", - "alarm" - ], - [ - "set the alarm for me", - "alarm" - ], - [ - "can you set alarm for me", - "alarm" - ], - [ - "please set alarm for me", - "alarm" - ], - [ - "make a new alarm for 6 in the morning", - "alarm" - ], - [ - "make a new alarm", - "alarm" - ], - [ - "create an alarm", - "alarm" - ], - [ - "i need an alarm for 6am", - "alarm" - ], - [ - "can you alert me at 6 in the morning", - "alarm" - ], - [ - "i'd like a new alarm set for 6am", - "alarm" - ], - [ - "set an alarm for 6am, please", - "alarm" - ], - [ - "initiate a new alarm please", - "alarm" - ], - [ - "set up an alarm", - "alarm" - ], - [ - "make up a new alarm", - "alarm" - ], - [ - "i want to make an alarm", - "alarm" - ], - [ - "i would like an alarm set", - "alarm" - ], - [ - "schedule an alarm", - "alarm" - ], - [ - "i need an alarm set", - "alarm" - ], - [ - "i need alarms set for 6am and 615am", - "alarm" - ], - [ - "i need an alarm to go off tomorrow at five fifteen", - "alarm" - ], - [ - "can you set an alarm for seven fifteen for tomorrow", - "alarm" - ], - [ - "set me an alarm for 4pm and another for 5pm", - "alarm" - ], - [ - "set one alarm for 215pm and another for 7pm", - "alarm" - ], - [ - "create an alarm for 9 am and another one for 11 am", - "alarm" - ], - [ - "set the alarm to go off at 9 tomorrow", - "alarm" - ], - [ - "make an alarm for tomorrow at twilight", - "alarm" - ], - [ - "set up two alarms one for 10am and another for 2pm", - "alarm" - ], - [ - "please set up an alarm to go off tomorrow at daybreak", - "alarm" - ], - [ - "could you set one alarm for 8am saturday and one for 9am sunday", - "alarm" - ], - [ - "can i turn on the alarm now", - "alarm" - ], - [ - "how do i set the alarm", - "alarm" - ], - [ - "please turn on the alarm", - "alarm" - ], - [ - "set my alarm for 6am tomorrow", - "alarm" - ], - [ - "set alarm for 6am", - "alarm" - ], - [ - "can you play an alarm at 5pm", - "alarm" - ], - [ - "create alarm 6am", - "alarm" - ], - [ - "set alarm for 5pm", - "alarm" - ], - [ - "make an alarm 6am", - "alarm" - ], - [ - "create an alarm for 6am", - "alarm" - ], - [ - "put in an alarm for 5pm", - "alarm" - ], - [ - "i want an alarm at 5pm", - "alarm" - ], - [ - "set my alarm for 5pm", - "alarm" - ], - [ - "set an alarm", - "alarm" - ], - [ - "create alarm", - "alarm" - ], - [ - "set alarm", - "alarm" - ], - [ - "i need an alarm to wake me up at 8 tomorrow morning", - "alarm" - ], - [ - "i need you to set an alarm for 8am tomorrow", - "alarm" - ], - [ - "please set an alarm for 5 am", - "alarm" - ], - [ - "set an alarm for 9pm please", - "alarm" - ], - [ - "i need an alarm set for 6 in the morning", - "alarm" - ], - [ - "i need an alarm set for 10:00 and another set for 3:00", - "alarm" - ], - [ - "set an alarm for me for 10:00 and another one set for 4:00", - "alarm" - ], - [ - "would you set my alarm for 10:00 and another for 3:00", - "alarm" - ], - [ - "provide assistance by setting an alarm at 8:00 and another for 11:00", - "alarm" - ], - [ - "assist me by setting my alarm for 9:00 and another for 11:00", - "alarm" - ], - [ - "tomorrow i need an alarm at 7 tomorrow", - "alarm" - ], - [ - "at 9 tomorrow, set off the alarm", - "alarm" - ], - [ - "tomorrow i would like an alarm for 9 tomorrow", - "alarm" - ], - [ - "tomorrow i need the alarm to go off at 5", - "alarm" - ], - [ - "sound the alarm at 6 am tomorrow", - "alarm" - ], - [ - "set reminder for 2 pm", - "alarm" - ], - [ - "wake me up at 6 am", - "alarm" - ], - [ - "ring my phone at 12 pm", - "alarm" - ], - [ - "set alarm for 5 am", - "alarm" - ], - [ - "please set an alarm for 2 pm for me", - "alarm" - ], - [ - "set an alarm for 5 pm", - "alarm" - ], - [ - "can you make an alarm for 7 am", - "alarm" - ], - [ - "set a 5 am alarm please", - "alarm" - ], - [ - "i need an alarm at 8 pm", - "alarm" - ], - [ - "set an alarm to start work and another to stop", - "alarm" - ], - [ - "set an alarm to go to sleep and another to wake up", - "alarm" - ], - [ - "please set a reminder for me", - "alarm" - ], - [ - "set an alarm to work out and another to go home", - "alarm" - ], - [ - "create an alarm for me", - "alarm" - ], - [ - "set an alarm for lunch and another for dinner", - "alarm" - ], - [ - "make an alarm for me", - "alarm" - ], - [ - "set an alarm for my meeting and another for my phone call", - "alarm" - ], - [ - "i want an alarm set up", - "alarm" - ], - [ - "i need an alarm set please", - "alarm" - ], - [ - "have an alarm wake me at 10:30 am", - "alarm" - ], - [ - "i want an alarm to go off at 9 am", - "alarm" - ], - [ - "i need an alarm set for 9 am and another for 11 am", - "alarm" - ], - [ - "i need an alarm set for 5:30 pm", - "alarm" - ], - [ - "i need you to schedule an alarm", - "alarm" - ], - [ - "please create an alarm for 5:45 am and an alarm for 6:15 am", - "alarm" - ], - [ - "would you set up an alarm for me", - "alarm" - ], - [ - "please create one alarm for 330 pm and one for 8 pm", - "alarm" - ], - [ - "please create a new alarm for me", - "alarm" - ], - [ - "i need an alarm to go off at 6 am", - "alarm" - ], - [ - "please set two alarms, one at 12 pm and the next at 1 pm", - "alarm" - ], - [ - "please create an alarm for 12 noon", - "alarm" - ], - [ - "i need one alarm to go off at 6:30 am and a second alarm set for 8:00 am", - "alarm" - ], - [ - "help me get up at eight thirty in the morning tomorrow", - "alarm" - ], - [ - "i want to be woken up at 9 tomorrow", - "alarm" - ], - [ - "what are the things that i have for today", - "todo_list" - ], - [ - "what is left to do today", - "todo_list" - ], - [ - "what do i have to do today", - "todo_list" - ], - [ - "the tasks for today, what are they", - "todo_list" - ], - [ - "i need to know what my to-do list is looking like", - "todo_list" - ], - [ - "is cleaning the kitchen coming up on my list of things i have to do today", - "todo_list" - ], - [ - "do i have cleaning the counters on my to-do list", - "todo_list" - ], - [ - "is cleaning the toilet on my to-do list", - "todo_list" - ], - [ - "tell me what is on the list of things to do", - "todo_list" - ], - [ - "tell me what is on my to do list", - "todo_list" - ], - [ - "is vacuuming on my list of things to do", - "todo_list" - ], - [ - "will an oil change be on my to-do list tomorrow", - "todo_list" - ], - [ - "read me my list of things to do", - "todo_list" - ], - [ - "please read my todo list", - "todo_list" - ], - [ - "tell me what is on my todo list", - "todo_list" - ], - [ - "i need my todo list read", - "todo_list" - ], - [ - "i need to hear my todo list", - "todo_list" - ], - [ - "is taking out the trash on my to do list", - "todo_list" - ], - [ - "read to me my to do list", - "todo_list" - ], - [ - "read back my to do list", - "todo_list" - ], - [ - "can you tell me my to do list", - "todo_list" - ], - [ - "i want to know what i have to do", - "todo_list" - ], - [ - "read back to me my to do list", - "todo_list" - ], - [ - "tell me the content of my to do list today", - "todo_list" - ], - [ - "what is on my to do list", - "todo_list" - ], - [ - "please read back to me my to do list", - "todo_list" - ], - [ - "let me know what i have to do today", - "todo_list" - ], - [ - "is fixing mom's kitchen blind on my to do list", - "todo_list" - ], - [ - "check my domestic to do list for carpet cleaning", - "todo_list" - ], - [ - "do my task list have call kath on it", - "todo_list" - ], - [ - "check my to do list to see if jewelry repair is listed", - "todo_list" - ], - [ - "does my errand list have goodwill on it", - "todo_list" - ], - [ - "can you tell me the items on my to do list", - "todo_list" - ], - [ - "do i have brush my teeth on my todo list", - "todo_list" - ], - [ - "what chores do i have waiting on my reminder list", - "todo_list" - ], - [ - "do i have get an oil change on my todo list", - "todo_list" - ], - [ - "do i already have a task on my todo list to research delaware", - "todo_list" - ], - [ - "what do i have on my need to do list", - "todo_list" - ], - [ - "read my complete todo list to me", - "todo_list" - ], - [ - "i want to hear everything on my todo list", - "todo_list" - ], - [ - "do i have any birthdays on my todo list", - "todo_list" - ], - [ - "how many items are on my todo list", - "todo_list" - ], - [ - "is doing my laundry already on my todo list", - "todo_list" - ], - [ - "how many chores are on my todo list", - "todo_list" - ], - [ - "iterate the items on my todo list", - "todo_list" - ], - [ - "do i have an item on my todo list related to shopping", - "todo_list" - ], - [ - "are the items on my todo list listed alphabetically", - "todo_list" - ], - [ - "did i add purchase tickets to the penguin game to my todo list", - "todo_list" - ], - [ - "did i remember to add buy flowers to my chore list today", - "todo_list" - ], - [ - "can you check if i've added an item to throw out the carcasses on my todo list", - "todo_list" - ], - [ - "what tasks have i yet to complete off my list", - "todo_list" - ], - [ - "do i have anything on my todo list about shoveling snow", - "todo_list" - ], - [ - "what items do i need to do", - "todo_list" - ], - [ - "did i create a task to clean the gutters on my list", - "todo_list" - ], - [ - "tell me what i have on my todo list", - "todo_list" - ], - [ - "is studying for the chem exam on my todo list", - "todo_list" - ], - [ - "please tell me all items on my todo list", - "todo_list" - ], - [ - "do i have a car wash scheduled on my to do list", - "todo_list" - ], - [ - "at what time is laundry on my to do list", - "todo_list" - ], - [ - "have i set aside a time on my to do list to do my taxes", - "todo_list" - ], - [ - "did i jot down a time to see my accountant on my to do list", - "todo_list" - ], - [ - "when is babysitting on my to do list", - "todo_list" - ], - [ - "what does my to-do list consist of", - "todo_list" - ], - [ - "can you please tell me what is on my to-do list", - "todo_list" - ], - [ - "i wonder what my to-do list looks like for today", - "todo_list" - ], - [ - "what does my to-do list look like", - "todo_list" - ], - [ - "let me hear all of the items on my to do list, please", - "todo_list" - ], - [ - "repeat my to do list to me, please", - "todo_list" - ], - [ - "let's go over the list of items on the to do list just to be sure we got it all", - "todo_list" - ], - [ - "can i hear the complete to do list just dictated", - "todo_list" - ], - [ - "tell me what things i need to accomplish per my to do list, please", - "todo_list" - ], - [ - "can you tell me all of the things on my to do list for tomorrow, please", - "todo_list" - ], - [ - "please remind me of the tasks on my to do list", - "todo_list" - ], - [ - "go ahead and say all of the points on my list of to-do's please", - "todo_list" - ], - [ - "what do i have to do tomorrow, according to my to-do list", - "todo_list" - ], - [ - "i want to hear my to do list please", - "todo_list" - ], - [ - "what have i got on my to-do list", - "todo_list" - ], - [ - "let me know whether folding laundry is on my to do list", - "todo_list" - ], - [ - "can you tell me the tasks on my to-do list", - "todo_list" - ], - [ - "i need to know what tasks are on my to-do list", - "todo_list" - ], - [ - "i want to hear my to do list read out loud", - "todo_list" - ], - [ - "can you look to see whether feeding the fish is on my to do list", - "todo_list" - ], - [ - "please let me know if giving the dog a bath is on my list of tasks to complete", - "todo_list" - ], - [ - "can you walk me through the various tasks on my to do list", - "todo_list" - ], - [ - "what do i have left to do on my to-do list", - "todo_list" - ], - [ - "is changing the water filter on my to do list right now", - "todo_list" - ], - [ - "please tell me all the items on my to do list right now", - "todo_list" - ], - [ - "please inform me of what tasks i have listed on my to do list", - "todo_list" - ], - [ - "look to see if i have folding laundry on my to do list", - "todo_list" - ], - [ - "please read out my list of tasks to accomplish", - "todo_list" - ], - [ - "i need to know everything on my to do list currently", - "todo_list" - ], - [ - "i need to know if sorting the mail is on my to do list", - "todo_list" - ], - [ - "can you read my to do list to me please", - "todo_list" - ], - [ - "check my to do list to see if feeding the fish is on it", - "todo_list" - ], - [ - "did i put unpacking groceries on my to do list", - "todo_list" - ], - [ - "will you please go back over everything on my to do list", - "todo_list" - ], - [ - "read my to-do list to me", - "todo_list" - ], - [ - "i need to know if cleaning out the fridge is on my to do list", - "todo_list" - ], - [ - "do i have watering the plants on my to do list", - "todo_list" - ], - [ - "let's go through my to do list items please", - "todo_list" - ], - [ - "use a different accent", - "change_accent" - ], - [ - "try using a different accent", - "change_accent" - ], - [ - "speak in a different accent", - "change_accent" - ], - [ - "change the accent you're speaking in", - "change_accent" - ], - [ - "could you change the accent you're using", - "change_accent" - ], - [ - "would you change your accent to the male british one", - "change_accent" - ], - [ - "i want your accent changed to the male british one", - "change_accent" - ], - [ - "i need for you to change your accent to the male british one", - "change_accent" - ], - [ - "would you please get your accent changed to the male british one", - "change_accent" - ], - [ - "try it with a male voice", - "change_accent" - ], - [ - "could you use a male voice", - "change_accent" - ], - [ - "use a male voice now", - "change_accent" - ], - [ - "use a male voice instead", - "change_accent" - ], - [ - "try a male voice", - "change_accent" - ], - [ - "i would prefer your voice to be male", - "change_accent" - ], - [ - "please use a male voice when speaking", - "change_accent" - ], - [ - "can you switch to the female voice", - "change_accent" - ], - [ - "change to a male voice", - "change_accent" - ], - [ - "please change your accent to a british male", - "change_accent" - ], - [ - "can you change the way you talk to a male british voice", - "change_accent" - ], - [ - "could you talk like a british male", - "change_accent" - ], - [ - "can i change the voice to male", - "change_accent" - ], - [ - "i want to hear the female voice option", - "change_accent" - ], - [ - "is there a way to change the voice to male", - "change_accent" - ], - [ - "i would prefer to hear the female voice", - "change_accent" - ], - [ - "i would prefer to hear you speak like a british male", - "change_accent" - ], - [ - "start speaking in a male british voice", - "change_accent" - ], - [ - "go ahead and switch to the female voice", - "change_accent" - ], - [ - "i shall switch to the male voice", - "change_accent" - ], - [ - "i must to the female voice", - "change_accent" - ], - [ - "please change to the female voice", - "change_accent" - ], - [ - "please change your accent to the male british one", - "change_accent" - ], - [ - "i need you to change your accent to the male british one", - "change_accent" - ], - [ - "i need to to the female voice", - "change_accent" - ], - [ - "i need to switch to the male voice", - "change_accent" - ], - [ - "go ahead and switch to the male voice", - "change_accent" - ], - [ - "you need to change your accent to the male british one", - "change_accent" - ], - [ - "i gotta to the female voice", - "change_accent" - ], - [ - "i wanna switch to the male voice", - "change_accent" - ], - [ - "go ahead and change your accent to the male british one", - "change_accent" - ], - [ - "i must switch to the male voice", - "change_accent" - ], - [ - "i want you to change your accent to the male british one", - "change_accent" - ], - [ - "i wanna change to the female voice", - "change_accent" - ], - [ - "i want to change what accent you use", - "change_accent" - ], - [ - "use a new accent", - "change_accent" - ], - [ - "switch to a different accent", - "change_accent" - ], - [ - "can you use a different accent", - "change_accent" - ], - [ - "let's change your accent", - "change_accent" - ], - [ - "speak in a male voice", - "change_accent" - ], - [ - "can i hear the male voice please", - "change_accent" - ], - [ - "can you change your accent to the male british one", - "change_accent" - ], - [ - "use your male voice", - "change_accent" - ], - [ - "please talk to me in the male british accent", - "change_accent" - ], - [ - "use one of your male voices", - "change_accent" - ], - [ - "can you use the male british accent", - "change_accent" - ], - [ - "speak in a woman's voice", - "change_accent" - ], - [ - "switch over to the male voice mode", - "change_accent" - ], - [ - "go to the female voice", - "change_accent" - ], - [ - "please use your female voice", - "change_accent" - ], - [ - "please change your accent the male british one", - "change_accent" - ], - [ - "make your accent the male british one", - "change_accent" - ], - [ - "switch over to the female voice", - "change_accent" - ], - [ - "use a woman's voice", - "change_accent" - ], - [ - "can you speak like a british dude", - "change_accent" - ], - [ - "do you have the ability to do a male british accent", - "change_accent" - ], - [ - "is it possible for you to speak with a british gent's accent", - "change_accent" - ], - [ - "can i get you to talk like a pouty english guy", - "change_accent" - ], - [ - "if you can do accents, i want to hear you talk like david bowie", - "change_accent" - ], - [ - "do a british male accent only", - "change_accent" - ], - [ - "i want to hear a male british accent", - "change_accent" - ], - [ - "change to a male british accent", - "change_accent" - ], - [ - "switch to british male accent", - "change_accent" - ], - [ - "can you do a british male accent", - "change_accent" - ], - [ - "change accent to male british", - "change_accent" - ], - [ - "set to female voice", - "change_accent" - ], - [ - "please change accent to british male", - "change_accent" - ], - [ - "please set to female voice", - "change_accent" - ], - [ - "use male voice", - "change_accent" - ], - [ - "can you switch to female voice", - "change_accent" - ], - [ - "please use male voice", - "change_accent" - ], - [ - "switch to female voice", - "change_accent" - ], - [ - "can you use male voice", - "change_accent" - ], - [ - "use male voice now", - "change_accent" - ], - [ - "can you make your accent british male", - "change_accent" - ], - [ - "now use male voice", - "change_accent" - ], - [ - "speak as a british male", - "change_accent" - ], - [ - "change accent to british male", - "change_accent" - ], - [ - "change to female voice", - "change_accent" - ], - [ - "use the male voice please", - "change_accent" - ], - [ - "can you swap to male voice", - "change_accent" - ], - [ - "i want to change to male voice", - "change_accent" - ], - [ - "use female voice now instead", - "change_accent" - ], - [ - "please start using female voice", - "change_accent" - ], - [ - "i want to use the female voice now", - "change_accent" - ], - [ - "i prefer female voice now", - "change_accent" - ], - [ - "switch from the male to the female voice", - "change_accent" - ], - [ - "please use male voice instead", - "change_accent" - ], - [ - "switch over from female to the male voice", - "change_accent" - ], - [ - "i need a new accent male british", - "change_accent" - ], - [ - "switch to male british accent", - "change_accent" - ], - [ - "where can i locate my w2 so i can do my taxes", - "w2" - ], - [ - "where is the w-2 form located", - "w2" - ], - [ - "where can i locate my w-2 form", - "w2" - ], - [ - "where can one receive their w-2 form", - "w2" - ], - [ - "what is the location of my w2 that is needed for taxes", - "w2" - ], - [ - "where would my w2 be found so i can do my taxes", - "w2" - ], - [ - "i need to find my w2 so i can do taxes", - "w2" - ], - [ - "where are w-2 forms given", - "w2" - ], - [ - "i require my w2 for taxes and need to locate it", - "w2" - ], - [ - "where do i get the form i need for taxes", - "w2" - ], - [ - "how can i get my year end summary for taxes", - "w2" - ], - [ - "where should i go to get a w2 to do my taxes", - "w2" - ], - [ - "where do i pick up a w2 form", - "w2" - ], - [ - "where can i get a w2 form", - "w2" - ], - [ - "tell me where a w2 is available please", - "w2" - ], - [ - "a w2 form can be gotten from where", - "w2" - ], - [ - "can i get a w2 form online", - "w2" - ], - [ - "help me get a w2 to do my taxes", - "w2" - ], - [ - "what location can i get a w2 from", - "w2" - ], - [ - "where can i get a w2", - "w2" - ], - [ - "a w2 form is obtainable where", - "w2" - ], - [ - "who can send me a w2 so i can complete my taxes", - "w2" - ], - [ - "how can i get my w2 to do my taxes", - "w2" - ], - [ - "where can i pick up my w2 to do my taxes", - "w2" - ], - [ - "where do i get the form that shows my wages for the year for taxes", - "w2" - ], - [ - "can you tell me what the form is employers are supposed to send you for taxes and where i get it", - "w2" - ], - [ - "i've got tax issues and need help obtaining my w2", - "w2" - ], - [ - "i need to do taxes and have to get a w2", - "w2" - ], - [ - "where do i find the irs form that tells me the amount of money i owe them", - "w2" - ], - [ - "where do i get the tax form that i have to report to the irs", - "w2" - ], - [ - "can you locate my w-2", - "w2" - ], - [ - "i would like to know how to find my w-2", - "w2" - ], - [ - "can you help me find my w-2", - "w2" - ], - [ - "hey, anyone seen my w-2", - "w2" - ], - [ - "help - i can't find my w-2", - "w2" - ], - [ - "where is my w-2", - "w2" - ], - [ - "where can i get my w-2", - "w2" - ], - [ - "i need to download my w-2 form", - "w2" - ], - [ - "can you access my w-2", - "w2" - ], - [ - "how can i get a hold of my w-2", - "w2" - ], - [ - "i need to get a hold of my w-2 right now", - "w2" - ], - [ - "where can i get the form i need to do my taxes", - "w2" - ], - [ - "where can i get the form i need to do my taxes, please", - "w2" - ], - [ - "where can i get the employment document that i need to do my taxes, please", - "w2" - ], - [ - "where can i get a w2 form from", - "w2" - ], - [ - "where can i obtain a w2 form", - "w2" - ], - [ - "where can i find a w2 form", - "w2" - ], - [ - "where can i obtain a w2 form from", - "w2" - ], - [ - "where can i get the employment form i need to do my taxes", - "w2" - ], - [ - "where can i get the employment form i need to do my taxes, please", - "w2" - ], - [ - "where is my w2", - "w2" - ], - [ - "where can i find my w2", - "w2" - ], - [ - "where can i find my w2 as i need it for tax reasons", - "w2" - ], - [ - "where do i get my tax papers", - "w2" - ], - [ - "where do i recieve a w2", - "w2" - ], - [ - "how do i get a w2", - "w2" - ], - [ - "is this where i get a w2", - "w2" - ], - [ - "can you tell me where to get a w2", - "w2" - ], - [ - "who has the tax form that shows my wages", - "w2" - ], - [ - "what is that tax form that shows my wages and where do i get it", - "w2" - ], - [ - "where do i locate the form that has my tax information", - "w2" - ], - [ - "who has the tax form that has my wage informaton", - "w2" - ], - [ - "where do i get the tax form that shows my wages", - "w2" - ], - [ - "where's my w-2", - "w2" - ], - [ - "i can't find my w-2", - "w2" - ], - [ - "do you know where my w-2 is", - "w2" - ], - [ - "i'm having trouble locating my w-2", - "w2" - ], - [ - "where can i find my w-2", - "w2" - ], - [ - "provide me assistance on where to go to get my w2 for tax reasons", - "w2" - ], - [ - "i am in need of my w2 for tax reasons; provide me where to get it", - "w2" - ], - [ - "assist me on where to go to get my w2 for tax reasons", - "w2" - ], - [ - "where do i go to get my w2 for tax reasons", - "w2" - ], - [ - "where can i get my w2 from for tax reasons", - "w2" - ], - [ - "i would like to get the forms to file for my w2", - "w2" - ], - [ - "where could i locate a w2 form from", - "w2" - ], - [ - "locate my w-2 form", - "w2" - ], - [ - "where could i find forms to get my w2", - "w2" - ], - [ - "where can i find my tax form to report what i earn", - "w2" - ], - [ - "where do i go to get my w-2", - "w2" - ], - [ - "how do i find my w-2 form", - "w2" - ], - [ - "what is the form i need to report my earnings", - "w2" - ], - [ - "where do i get my w2 form from", - "w2" - ], - [ - "tell me where to get myy w-2 form", - "w2" - ], - [ - "where can i find my w-2 form", - "w2" - ], - [ - "where can i locate a form for my w2", - "w2" - ], - [ - "is my w2 available at the post office", - "w2" - ], - [ - "i need to know where to get a w-2 form", - "w2" - ], - [ - "when will i receive my w2", - "w2" - ], - [ - "can i get my w2 online", - "w2" - ], - [ - "how do i get a w-2", - "w2" - ], - [ - "i need help getting a w-2", - "w2" - ], - [ - "can i get a w-2 from the post office", - "w2" - ], - [ - "can i get my w-2 online", - "w2" - ], - [ - "does my w2 come by mail", - "w2" - ], - [ - "how and where are my w2 forms given", - "w2" - ], - [ - "where can i get my w2 forms from", - "w2" - ], - [ - "from where are w2 forms given", - "w2" - ], - [ - "how do i get a w2 form and from where", - "w2" - ], - [ - "how do i get a personal w2 form", - "w2" - ], - [ - "have i been sent my w-2 in my email", - "w2" - ], - [ - "when should i pay my bill by", - "bill_due" - ], - [ - "when is my car insurance due", - "bill_due" - ], - [ - "when's the gas bill due", - "bill_due" - ], - [ - "when do i pay the utilities", - "bill_due" - ], - [ - "do i pay my rent this week", - "bill_due" - ], - [ - "i need to know when i must pay my car bill", - "bill_due" - ], - [ - "how much is my water bill", - "bill_due" - ], - [ - "is my bill due this week", - "bill_due" - ], - [ - "how much time left to pay my bill", - "bill_due" - ], - [ - "what day is my car insurance due", - "bill_due" - ], - [ - "when's the electric bill due", - "bill_due" - ], - [ - "when's the next phone bill", - "bill_due" - ], - [ - "when is my next car payment", - "bill_due" - ], - [ - "when is too late to pay my cable bill", - "bill_due" - ], - [ - "can you alert me when my phone bill is due", - "bill_due" - ], - [ - "on what day do i pay my car payment", - "bill_due" - ], - [ - "how can i know when my cable bill is due", - "bill_due" - ], - [ - "what day do i have to pay for my capital one card", - "bill_due" - ], - [ - "how long do i have left to pay for my chase credit card", - "bill_due" - ], - [ - "what is the due date of my att bill", - "bill_due" - ], - [ - "when is my xfinity bill due", - "bill_due" - ], - [ - "how many more days before my verizon bill is due", - "bill_due" - ], - [ - "i cant remember when my bill is due", - "bill_due" - ], - [ - "what is the due date of my bill", - "bill_due" - ], - [ - "what day is my bill due", - "bill_due" - ], - [ - "when is my bill due", - "bill_due" - ], - [ - "tell me when my bill will be due", - "bill_due" - ], - [ - "how do i locate when my gas bill is do", - "bill_due" - ], - [ - "i would like to know my electric bills date it needs to be payed", - "bill_due" - ], - [ - "i need to know where to locate when my gas bill is due", - "bill_due" - ], - [ - "can you tell me when my electric bill is due", - "bill_due" - ], - [ - "i need to know the due date for my credit card", - "bill_due" - ], - [ - "where should i look for when my gas bill is due", - "bill_due" - ], - [ - "can you tell me the date my credit card is due", - "bill_due" - ], - [ - "i'd like to find the date that my gas bill is due", - "bill_due" - ], - [ - "how do i know when to pay my gas bill", - "bill_due" - ], - [ - "when do i have to pay my water bill by", - "bill_due" - ], - [ - "when do i have to pay my electric bill by", - "bill_due" - ], - [ - "when do i have to pay my internet bill by", - "bill_due" - ], - [ - "when do i have to pay my gas bill by", - "bill_due" - ], - [ - "tell me when i have to pay my bill", - "bill_due" - ], - [ - "what date do i have to pay my bill", - "bill_due" - ], - [ - "give me the date my bill is due", - "bill_due" - ], - [ - "on what day do i have to pay my nordstrom bill", - "bill_due" - ], - [ - "when is my chase visa due", - "bill_due" - ], - [ - "when do i need to pay my annual payment for auto insurance", - "bill_due" - ], - [ - "what is the exact due date for my mortgage payment", - "bill_due" - ], - [ - "what is the due date for my metronorth monthy pass", - "bill_due" - ], - [ - "can you tell me when my peco energy bill is due this month", - "bill_due" - ], - [ - "please find the exact payment due date for my sprint phone bill", - "bill_due" - ], - [ - "what is the due date on my xfinity internet bill for february", - "bill_due" - ], - [ - "what is the latest date that i can pay my direct tv bill this month", - "bill_due" - ], - [ - "i need the new due date for my pgw gas bill", - "bill_due" - ], - [ - "what time do i have to pay z bill", - "bill_due" - ], - [ - "whats the due date for z bill", - "bill_due" - ], - [ - "how soon before my catering bill is due", - "bill_due" - ], - [ - "how long before my lawn guy bill's due", - "bill_due" - ], - [ - "when's my heater bill due", - "bill_due" - ], - [ - "what date is my water bill due", - "bill_due" - ], - [ - "whats the deadline for amex payment", - "bill_due" - ], - [ - "when is my visa due", - "bill_due" - ], - [ - "when is visa due", - "bill_due" - ], - [ - "do you know when i need to pay my mastercard", - "bill_due" - ], - [ - "what's the due date for my american express payment", - "bill_due" - ], - [ - "when is my mortgage payment due", - "bill_due" - ], - [ - "what's the due date for the credit card", - "bill_due" - ], - [ - "when's the next time i have to pay the insurance", - "bill_due" - ], - [ - "how long do i have to pay the gas bill", - "bill_due" - ], - [ - "when's the rent due", - "bill_due" - ], - [ - "when does the car payment come due", - "bill_due" - ], - [ - "when does the electric bill up", - "bill_due" - ], - [ - "how do i check when my mortgage is next up for payment", - "bill_due" - ], - [ - "when do i owe the state payment for my car tags", - "bill_due" - ], - [ - "when do i owe the rent", - "bill_due" - ], - [ - "do i need to pay my credit card bill already", - "bill_due" - ], - [ - "do you know when my next electric bill is due", - "bill_due" - ], - [ - "where do i find information on when the water bill is due", - "bill_due" - ], - [ - "how do i ascertain when my next insurance payment will be", - "bill_due" - ], - [ - "what do i do to check when my next credit card payment is", - "bill_due" - ], - [ - "when do i need to pay my at&t bill", - "bill_due" - ], - [ - "what is the due date of my at&t bill", - "bill_due" - ], - [ - "is my at&t bill do soon", - "bill_due" - ], - [ - "when is my at&t bill due", - "bill_due" - ], - [ - "what date is my at&t bill due", - "bill_due" - ], - [ - "when's the ac bill due", - "bill_due" - ], - [ - "what day is the z bill due", - "bill_due" - ], - [ - "what's the due date for the renting bill", - "bill_due" - ], - [ - "i want to know when a bill is due", - "bill_due" - ], - [ - "what day is the bill due", - "bill_due" - ], - [ - "i would like to know when the bill is due", - "bill_due" - ], - [ - "what is the due date for a bill", - "bill_due" - ], - [ - "when is the bill due", - "bill_due" - ], - [ - "how do i find when my water bill needs to be paid", - "bill_due" - ], - [ - "when is my water bill due", - "bill_due" - ], - [ - "how do i find when my cable bill is due", - "bill_due" - ], - [ - "when is my electric bill due", - "bill_due" - ], - [ - "when do i need to pay the water bil", - "bill_due" - ], - [ - "how do i find when my medical bill is due", - "bill_due" - ], - [ - "when do i need to pay the cable bill", - "bill_due" - ], - [ - "how do i find when my electric bill is due", - "bill_due" - ], - [ - "can you provide me the calories in the smoothie", - "calories" - ], - [ - "can you tell me the calories for the cheeseburger", - "calories" - ], - [ - "i'd like the calories for this chicken breast", - "calories" - ], - [ - "how many calories in this slice of pizza", - "calories" - ], - [ - "what about the calories for this chicken salad", - "calories" - ], - [ - "how many calories are in a large fry", - "calories" - ], - [ - "a large french fry has how many calories", - "calories" - ], - [ - "what is the calorie content of a scoop of chocolate ice cream", - "calories" - ], - [ - "how many calories in scoop of chocolate ice cream", - "calories" - ], - [ - "tell me how many calories in a medium size apple", - "calories" - ], - [ - "how many calories does a scoop of chocolate ice cream have", - "calories" - ], - [ - "how many calories are in a can of coke", - "calories" - ], - [ - "what's the number of calories in a pepsi", - "calories" - ], - [ - "what is the calorie content of a small bag of lay's potato chips", - "calories" - ], - [ - "how many calories does a kitkat have", - "calories" - ], - [ - "how many calories are there in a scoop of chocolate ice cream", - "calories" - ], - [ - "how many calories does a scoop of chocolate ice cream contain", - "calories" - ], - [ - "what's the expected calories in a cream filled cookie", - "calories" - ], - [ - "what's the amount of calories in a cheesy omelette", - "calories" - ], - [ - "can you tell me the calorie count in a glazed donut", - "calories" - ], - [ - "what's the calorie count for tuna casserole", - "calories" - ], - [ - "how many calories are in waffles", - "calories" - ], - [ - "what's the calorie content for fried eggs", - "calories" - ], - [ - "what's the amount of calories in an cream filled oatmeal cookie", - "calories" - ], - [ - "how many calories are in chocolate cake", - "calories" - ], - [ - "how high in calories is pork", - "calories" - ], - [ - "how many calories are in a honey bun", - "calories" - ], - [ - "what does a sausage sandwich have for calories", - "calories" - ], - [ - "what's the number of calories in a coke", - "calories" - ], - [ - "what are the total calories for two servings of pasta", - "calories" - ], - [ - "how many calories should i plan to be in a donut", - "calories" - ], - [ - "how many calories would i estimate for fettuccine alfredo", - "calories" - ], - [ - "how many calories does a big mac have", - "calories" - ], - [ - "what's the caloric content if you eat roast beef", - "calories" - ], - [ - "how many calories would i consume if i ate a loaded hotdog", - "calories" - ], - [ - "what's the expected calorie load of a peanut butter and jelly sandwich", - "calories" - ], - [ - "what's a big bowl of ice cream contain in calories", - "calories" - ], - [ - "do cheetos have a lot of calories", - "calories" - ], - [ - "what's the calorie content of cheetos", - "calories" - ], - [ - "looks up the calories in cheetos", - "calories" - ], - [ - "calorie count of cheetos", - "calories" - ], - [ - "how many calories do cheetos have", - "calories" - ], - [ - "how many calories are in a cup of white rice", - "calories" - ], - [ - "how many calories are in vanilla ice cream", - "calories" - ], - [ - "one cup of almonds has how many calories", - "calories" - ], - [ - "what's the calorie info for 2 cups of regular chex mix", - "calories" - ], - [ - "what's the caloric content in a bowl of rice crispies with milk", - "calories" - ], - [ - "a bowl of cheerios with milk has how many calories", - "calories" - ], - [ - "how many calories are in a bag of regular doritos", - "calories" - ], - [ - "how many calories are in chocolate ice cream", - "calories" - ], - [ - "2 cups of grapes have how many calories", - "calories" - ], - [ - "how many calories are in spaghetti and meat sauce", - "calories" - ], - [ - "in one cookie, how many calories would i find", - "calories" - ], - [ - "what is the calorie count for one cookie", - "calories" - ], - [ - "if i ate a cookie, how many calories would i be ingesting", - "calories" - ], - [ - "cookies have how many calories", - "calories" - ], - [ - "how many calories are in a cookie", - "calories" - ], - [ - "how many calories in gum", - "calories" - ], - [ - "how many calories in chicken", - "calories" - ], - [ - "how many calories in meatloaf", - "calories" - ], - [ - "how many calories are in chicken breast", - "calories" - ], - [ - "how many calories in peanuts", - "calories" - ], - [ - "what is the total number of calories in a bag of potato chips", - "calories" - ], - [ - "can you tell me the amount of calories i can expect one tuna sandwich to contain", - "calories" - ], - [ - "give me expected number of calories in a breakfast burrito", - "calories" - ], - [ - "can you tell me the number of calories in one serving of whole cashews", - "calories" - ], - [ - "please tell me the total calories a single serving of chocolate ice cream is expected to contain", - "calories" - ], - [ - "i need to know the total calories for a chicken caesar salad", - "calories" - ], - [ - "please tell me how many calories one chocolate bar contains", - "calories" - ], - [ - "what's the average number of calories in one cup of tomato soup", - "calories" - ], - [ - "do you know how many calories are in a single chicken breast", - "calories" - ], - [ - "i need to know the number of calories on average in a handful of pistachios", - "calories" - ], - [ - "what is the caloric value of a cookie", - "calories" - ], - [ - "how many calories are in cookies", - "calories" - ], - [ - "can you tell me how many calories are in cookies", - "calories" - ], - [ - "what is the calorie count in a cookie", - "calories" - ], - [ - "what are the calories in a cookie", - "calories" - ], - [ - "what is the calorie count for muffins", - "calories" - ], - [ - "are there a lot of calories in muffins", - "calories" - ], - [ - "tell me the amount of calories in muffins", - "calories" - ], - [ - "what is the caloric total in these muffins", - "calories" - ], - [ - "what amount of calories are in one muffin", - "calories" - ], - [ - "look up the calories in an apple", - "calories" - ], - [ - "tell me the calorie content of an apple", - "calories" - ], - [ - "what's the caloric content of an apple", - "calories" - ], - [ - "tell me the calorie content for an apple", - "calories" - ], - [ - "i need to know the calorie content in a piece of pepperoni pizza", - "calories" - ], - [ - "how many calories are in an apple", - "calories" - ], - [ - "i want the calorie content for a banana", - "calories" - ], - [ - "tell me the number of calories in a banana", - "calories" - ], - [ - "what is the calorie look like in apples", - "calories" - ], - [ - "what is the calorie going to be if i'm eating cereal", - "calories" - ], - [ - "add up the calories in tacos", - "calories" - ], - [ - "how many calories are in cheerios", - "calories" - ], - [ - "what type of calorie numbers are in onions", - "calories" - ], - [ - "i need to know the calorie count of a bacon cheeseburger", - "calories" - ], - [ - "whats the calorie content of oatmeal", - "calories" - ], - [ - "what is the calorie count of an apple", - "calories" - ], - [ - "how many calories on average are in a hot dog", - "calories" - ], - [ - "how many calories are in a piece of bacon", - "calories" - ], - [ - "let my credit card company know that my card split in half", - "damaged_card" - ], - [ - "how do you report a burned debit card", - "damaged_card" - ], - [ - "my card split in half, how do i report it", - "damaged_card" - ], - [ - "report my burned card to the company", - "damaged_card" - ], - [ - "what do i say when i report a split credit card", - "damaged_card" - ], - [ - "my card was damaged by my cat; can i report that", - "damaged_card" - ], - [ - "i dropped my card in my gasoline and the printing wore off", - "damaged_card" - ], - [ - "i need to report that my dog chewed up my card", - "damaged_card" - ], - [ - "it seems i can't use my card since it has been damaged", - "damaged_card" - ], - [ - "unfortunately, my card is damaged and unusable", - "damaged_card" - ], - [ - "what should i do with an unusable and damaged card", - "damaged_card" - ], - [ - "my card is unusable because it's damaged", - "damaged_card" - ], - [ - "i cracked my card and need a replacement", - "damaged_card" - ], - [ - "my card got melted and i need to report it", - "damaged_card" - ], - [ - "my card got melted and i need to report it, please", - "damaged_card" - ], - [ - "my card got melted in the dryer and i need to report it, please", - "damaged_card" - ], - [ - "my card got damaged and i need to report it", - "damaged_card" - ], - [ - "my card got damaged and i need to report it, please", - "damaged_card" - ], - [ - "my card is damaged so i can not use it", - "damaged_card" - ], - [ - "report the card has been damaged", - "damaged_card" - ], - [ - "i can not use my card, it is damaged", - "damaged_card" - ], - [ - "the card is torn, let's report it", - "damaged_card" - ], - [ - "report that the card has been wrecked", - "damaged_card" - ], - [ - "my card is damaged and no longer function", - "damaged_card" - ], - [ - "my card is damaged and unusable", - "damaged_card" - ], - [ - "my card is wrecked, let's report it", - "damaged_card" - ], - [ - "report the card has been torn", - "damaged_card" - ], - [ - "i can not use my card since it is damaged", - "damaged_card" - ], - [ - "i need to report a bent card", - "damaged_card" - ], - [ - "my card split in half, can i report it", - "damaged_card" - ], - [ - "i cracked my card, order a new one", - "damaged_card" - ], - [ - "report that i split my card", - "damaged_card" - ], - [ - "please make a report that my card is split", - "damaged_card" - ], - [ - "the magnetic strip on my card is scratched, let the card company know", - "damaged_card" - ], - [ - "i cut up the wrong card, please contact the bank and let them know", - "damaged_card" - ], - [ - "i creased my card today, contact the bank", - "damaged_card" - ], - [ - "my card is cracked, please tell the card company", - "damaged_card" - ], - [ - "the dog chewed up my card, will you find out what it takes to get a replacement", - "damaged_card" - ], - [ - "the plastic numbers on my card are falling off", - "damaged_card" - ], - [ - "corner of my credit card is chipped off", - "damaged_card" - ], - [ - "my card got snapped in half", - "damaged_card" - ], - [ - "my card is too scratched and won't read correctly", - "damaged_card" - ], - [ - "the sticker on my card is peeling off", - "damaged_card" - ], - [ - "i can't use my card because it is broken", - "damaged_card" - ], - [ - "my broken card won't work", - "damaged_card" - ], - [ - "i can't use my damaged card", - "damaged_card" - ], - [ - "my damage card is not working", - "damaged_card" - ], - [ - "my damage card will not work", - "damaged_card" - ], - [ - "i don't know who to notify that i ran my credit card over with the lawn mower", - "damaged_card" - ], - [ - "i ran my credit card over with the lawn mower and need to replace it", - "damaged_card" - ], - [ - "i need to replace my credit card because i ran it over with the lawn mower", - "damaged_card" - ], - [ - "my card is partially damaged how do i report this", - "damaged_card" - ], - [ - "my card is not working and i need to let them know", - "damaged_card" - ], - [ - "my card broke in half and i need to report this", - "damaged_card" - ], - [ - "the chip on my card is damaged and i need a new one", - "damaged_card" - ], - [ - "my card's magnetic strip is not working and i want to notify them", - "damaged_card" - ], - [ - "my card has a deep crease through the middle so i would like to report it", - "damaged_card" - ], - [ - "how do i report my card if it got cut in half", - "damaged_card" - ], - [ - "my card is cracked and i want to report it", - "damaged_card" - ], - [ - "my card is too scratched up and i need to report it", - "damaged_card" - ], - [ - "i need to report my bent card", - "damaged_card" - ], - [ - "report to the company that i damaged my card", - "damaged_card" - ], - [ - "call the card company and ask them to replace my card", - "damaged_card" - ], - [ - "i damaged the card; can you replace the card", - "damaged_card" - ], - [ - "i demagnetized my card and want to report it", - "damaged_card" - ], - [ - "i want to report a broken card", - "damaged_card" - ], - [ - "my phone was too close to my card and demagnetized it, how can i report this", - "damaged_card" - ], - [ - "my card has been erased and i need to report it", - "damaged_card" - ], - [ - "i need a report form for my damaged, demagnetized card", - "damaged_card" - ], - [ - "how to report bent credit card", - "damaged_card" - ], - [ - "i can't use my broken card", - "damaged_card" - ], - [ - "i broke my card", - "damaged_card" - ], - [ - "how to tell the company that my credit card melted", - "damaged_card" - ], - [ - "my card is broken", - "damaged_card" - ], - [ - "my card isn't working", - "damaged_card" - ], - [ - "who do i report to if my credit card snaps", - "damaged_card" - ], - [ - "i accidentally bent my card, what do i do", - "damaged_card" - ], - [ - "my card doesn't work anymore", - "damaged_card" - ], - [ - "how do i report a melted credit card", - "damaged_card" - ], - [ - "my card needs replaced, i accidentally scraped it", - "damaged_card" - ], - [ - "i'd like to report my card as damaged, it's bent", - "damaged_card" - ], - [ - "i bent my card, can you report it to my bank", - "damaged_card" - ], - [ - "my card got scratched badly, can you tell my bank to send a replacement", - "damaged_card" - ], - [ - "my card snapped, can you tell my bank to send a replacement", - "damaged_card" - ], - [ - "i accidentally put my credit card in the shredder", - "damaged_card" - ], - [ - "my credit card fell out of my back pocket and got flushed down the toilet", - "damaged_card" - ], - [ - "my credit card snapped in half while i was fiddling with it", - "damaged_card" - ], - [ - "my dog ate my credit card and ruined it", - "damaged_card" - ], - [ - "i was using my credit card as a cutting board and accidentally sliced it in half", - "damaged_card" - ], - [ - "can you assist me with reporting that the atm nicked my card", - "damaged_card" - ], - [ - "i need to report a new card please the atm hurt mine", - "damaged_card" - ], - [ - "how report that scratched my card", - "damaged_card" - ], - [ - "the atm chewed up my card can i get a new one", - "damaged_card" - ], - [ - "an atm ate my card, how do i report it", - "damaged_card" - ], - [ - "my card fell out of my wallet and i ran over it so it does not work", - "damaged_card" - ], - [ - "my card fell in the toilet and now the chip does not work", - "damaged_card" - ], - [ - "the magnetic strip on my card is scratched up pretty badly from overuse can i get a new one", - "damaged_card" - ], - [ - "i need a new card because my dog chewed on it and now it does not work", - "damaged_card" - ], - [ - "i want to report my damaged card i accidentally cut it up thinking it was my expired card", - "damaged_card" - ], - [ - "i cracked my rewards card can i get a different one", - "damaged_card" - ], - [ - "do people like the donuts at tgi", - "restaurant_reviews" - ], - [ - "are the donuts at tgi well reviewed", - "restaurant_reviews" - ], - [ - "how are the donuts reviews at tgi", - "restaurant_reviews" - ], - [ - "what are the comments on the donuts at tgi", - "restaurant_reviews" - ], - [ - "are people recommending the donuts at tgi", - "restaurant_reviews" - ], - [ - "does outback steakhouse have good reviews", - "restaurant_reviews" - ], - [ - "does pizza hut have good reviews", - "restaurant_reviews" - ], - [ - "does have good reviews have great reviews", - "restaurant_reviews" - ], - [ - "does red robin have good reviews", - "restaurant_reviews" - ], - [ - "so does outback steakhouse have good reviews", - "restaurant_reviews" - ], - [ - "how good are the ratings for pizza hut", - "restaurant_reviews" - ], - [ - "how good are the ratings for red robin", - "restaurant_reviews" - ], - [ - "how good are the ratings for outback", - "restaurant_reviews" - ], - [ - "how good are the ratings for papa john's", - "restaurant_reviews" - ], - [ - "how good are the ratings for the olive garden", - "restaurant_reviews" - ], - [ - "what are people saying about chipotle", - "restaurant_reviews" - ], - [ - "tell me the reviews for chipotle", - "restaurant_reviews" - ], - [ - "do people like chipotle", - "restaurant_reviews" - ], - [ - "give me the reviews for chipotle", - "restaurant_reviews" - ], - [ - "what are the ratings for chipotle", - "restaurant_reviews" - ], - [ - "how good are the ratings for chic-fil-a", - "restaurant_reviews" - ], - [ - "how good are the ratings for olive garden", - "restaurant_reviews" - ], - [ - "how good are the ratings for longhorn steakhouse", - "restaurant_reviews" - ], - [ - "does chic-fil-a have good reviews", - "restaurant_reviews" - ], - [ - "how good are the ratings for outback steakhouse", - "restaurant_reviews" - ], - [ - "how good are the ratings for applebees", - "restaurant_reviews" - ], - [ - "does wendy's have good reviews", - "restaurant_reviews" - ], - [ - "does mcdonalds have good reviews", - "restaurant_reviews" - ], - [ - "does longhorn steakhouse have good reviews", - "restaurant_reviews" - ], - [ - "what reviews does miyabi have", - "restaurant_reviews" - ], - [ - "does applebee's have good reviews", - "restaurant_reviews" - ], - [ - "how are the reviews for cracker barrel", - "restaurant_reviews" - ], - [ - "are the reviews for mi casita good", - "restaurant_reviews" - ], - [ - "are the reviews good or bad for burger king", - "restaurant_reviews" - ], - [ - "tell me the ratings for the local denny's", - "restaurant_reviews" - ], - [ - "does the bleu olive have decent reviews", - "restaurant_reviews" - ], - [ - "how are the reviews for la loconda", - "restaurant_reviews" - ], - [ - "how many stars does la vignette have", - "restaurant_reviews" - ], - [ - "does the mediterranean grille have good reviews", - "restaurant_reviews" - ], - [ - "have you heard how the enchiladas are at jose's taco shop", - "restaurant_reviews" - ], - [ - "how does yelp report the enchiladas are at jose's taco shop", - "restaurant_reviews" - ], - [ - "does ihop have good reviews", - "restaurant_reviews" - ], - [ - "can you tell me if eating at outback's any good", - "restaurant_reviews" - ], - [ - "what do people say about village inn", - "restaurant_reviews" - ], - [ - "are the pancakes at ihop any good", - "restaurant_reviews" - ], - [ - "how are the reviews for spaghetti at the olive garden", - "restaurant_reviews" - ], - [ - "how's the lo mein rated at hun lee's", - "restaurant_reviews" - ], - [ - "how's the sausage pizza at pizza hut", - "restaurant_reviews" - ], - [ - "is mcdonalds a good place to eat", - "restaurant_reviews" - ], - [ - "what's the reviews have to say about burger king", - "restaurant_reviews" - ], - [ - "how are the burgers at carl jr's", - "restaurant_reviews" - ], - [ - "are the chili's reviews any good", - "restaurant_reviews" - ], - [ - "are the reviews for applebee's good", - "restaurant_reviews" - ], - [ - "i want to know how the mcdonalds reviews are", - "restaurant_reviews" - ], - [ - "tell me about the reviews for chilis", - "restaurant_reviews" - ], - [ - "let me know how the outback steakhouse reviews are", - "restaurant_reviews" - ], - [ - "how good are the ratings for per se", - "restaurant_reviews" - ], - [ - "what are the reviews like for khin khao", - "restaurant_reviews" - ], - [ - "how good are the ratings for the french laundry", - "restaurant_reviews" - ], - [ - "how good are the ratings for chez panisse", - "restaurant_reviews" - ], - [ - "how good are the ratings for peter luger steakhouse", - "restaurant_reviews" - ], - [ - "what are the reviews like for mission chinese", - "restaurant_reviews" - ], - [ - "what are the reviews like for zazie", - "restaurant_reviews" - ], - [ - "what are the reviews like for bar tartine", - "restaurant_reviews" - ], - [ - "what are the reviews like for la camelia", - "restaurant_reviews" - ], - [ - "how are people liking the sushi at yakamoto", - "restaurant_reviews" - ], - [ - "is there any opinions on the sushi at yakamoto", - "restaurant_reviews" - ], - [ - "is the sushi well-received at yakamoto", - "restaurant_reviews" - ], - [ - "at yakamoto how is their sushi", - "restaurant_reviews" - ], - [ - "what is the sushi like at yakamoto", - "restaurant_reviews" - ], - [ - "what are the reviews like at minnis", - "restaurant_reviews" - ], - [ - "does buffalo wild wings have good reviews", - "restaurant_reviews" - ], - [ - "tell me the reviews for bjs", - "restaurant_reviews" - ], - [ - "what are the ratings about at pho king", - "restaurant_reviews" - ], - [ - "how are the ratings like for buffalo wild wings", - "restaurant_reviews" - ], - [ - "read some of the reviews for wing stop", - "restaurant_reviews" - ], - [ - "does applebees have alright reviews", - "restaurant_reviews" - ], - [ - "does bjs get good reviews", - "restaurant_reviews" - ], - [ - "what are the ratings like for chilis", - "restaurant_reviews" - ], - [ - "what do the ratings say about korean bbq", - "restaurant_reviews" - ], - [ - "what do the ratings say for black bear diner", - "restaurant_reviews" - ], - [ - "what are the reviews for mountain mikes", - "restaurant_reviews" - ], - [ - "i need to hear reviews for panda express", - "restaurant_reviews" - ], - [ - "what are the reviews like for black bear dinner", - "restaurant_reviews" - ], - [ - "does chillis have good reviews", - "restaurant_reviews" - ], - [ - "do people like the food at wendy's", - "restaurant_reviews" - ], - [ - "are there any positive reviews for wendy's", - "restaurant_reviews" - ], - [ - "what kind of reviews does wendy's have", - "restaurant_reviews" - ], - [ - "are there any negative reviews for wendy's", - "restaurant_reviews" - ], - [ - "what do people think about the sandwiches at wendy's", - "restaurant_reviews" - ], - [ - "look up the ratings for olive garden", - "restaurant_reviews" - ], - [ - "pull up the ratings for macaroni grill", - "restaurant_reviews" - ], - [ - "tell me about the reviews for olive garden", - "restaurant_reviews" - ], - [ - "are the reviews for chevy's any good", - "restaurant_reviews" - ], - [ - "has ruby tuesday got good reviews", - "restaurant_reviews" - ], - [ - "does chili's have good reviews", - "restaurant_reviews" - ], - [ - "tell me how good ihop's ratings are", - "restaurant_reviews" - ], - [ - "fill me in on the reviews for ruby tuesday", - "restaurant_reviews" - ], - [ - "does ihop have positive reviews", - "restaurant_reviews" - ], - [ - "what are reviews for ihop like", - "restaurant_reviews" - ], - [ - "where can i see the routing number for bmo", - "routing" - ], - [ - "i need to know what my wife's account's routing number is", - "routing" - ], - [ - "how do i locate my routing number for tax reasons", - "routing" - ], - [ - "where can i look up x's routing number", - "routing" - ], - [ - "please give my routing number for my national account", - "routing" - ], - [ - "where do i go to find my routing number for southpoint", - "routing" - ], - [ - "tell me my first national account's routing number", - "routing" - ], - [ - "how can i find my routing number for el dorado", - "routing" - ], - [ - "i need you to tell my what my routing number is for my first county account", - "routing" - ], - [ - "i need the routing number for my woodlawn account", - "routing" - ], - [ - "where do i find the routing number for sunflower bank", - "routing" - ], - [ - "can i get the routing number for sunflower bank", - "routing" - ], - [ - "where do i find the routing number for nfcu", - "routing" - ], - [ - "what's bank of america's routing number", - "routing" - ], - [ - "i need to know nfcu's routing number", - "routing" - ], - [ - "can you tell me the routing number of wells fargo", - "routing" - ], - [ - "where do i find the routing number for great western bank", - "routing" - ], - [ - "how do i find axos bank's routing number", - "routing" - ], - [ - "ai, routing number for my b of a checking account", - "routing" - ], - [ - "ai, what is my chase checking routing number", - "routing" - ], - [ - "ai, routing number for my wells fargo checking", - "routing" - ], - [ - "ai, what is the routing number for my citibank savings account", - "routing" - ], - [ - "ai, what is my chase routing number", - "routing" - ], - [ - "what's my routing number from chase", - "routing" - ], - [ - "can you help me find my routing number from wells fargo", - "routing" - ], - [ - "could you tell me what my routing number from first republic is", - "routing" - ], - [ - "do you know where i can find my suntrust routing number", - "routing" - ], - [ - "how can i find my routing number from bank of america", - "routing" - ], - [ - "what routing number do i use to send an international wire with citibank", - "routing" - ], - [ - "search for my routing number for my checking account with wells fargo", - "routing" - ], - [ - "what is my pnc account routing number", - "routing" - ], - [ - "can you tell me the routing number for my chase checking", - "routing" - ], - [ - "please find my routing number for my citizens' bank account", - "routing" - ], - [ - "i need to know my bank of america account routing number", - "routing" - ], - [ - "i need to find the correct td bank routing number for my pennsylvania account", - "routing" - ], - [ - "what is the correct routing number for my citizens bank account, pennsylvania", - "routing" - ], - [ - "please find the routing number for chase bank accounts opened in new york", - "routing" - ], - [ - "can you tell me the routing number for bank of america for domestic accounts", - "routing" - ], - [ - "please tell me what my bank routing number is", - "routing" - ], - [ - "i must learn my routing number", - "routing" - ], - [ - "what's the routing number for my money market account", - "routing" - ], - [ - "tell me my bank routing number", - "routing" - ], - [ - "where do i find the routing number for wells fargo", - "routing" - ], - [ - "i wanna know my bank of america routing number", - "routing" - ], - [ - "tell me my bank of america routing number", - "routing" - ], - [ - "how do i get the routing number for chase", - "routing" - ], - [ - "what's the routing number for my savings account", - "routing" - ], - [ - "let me know my bank of america routing number", - "routing" - ], - [ - "what's the routing number for my checking account", - "routing" - ], - [ - "let me know my routing number", - "routing" - ], - [ - "what's the routing number for my current savings", - "routing" - ], - [ - "i need to know my routing number", - "routing" - ], - [ - "what's the routing number for my current checking", - "routing" - ], - [ - "i must know my bank of america routing number", - "routing" - ], - [ - "show me the routing number for chase", - "routing" - ], - [ - "i need to know my bank of america routing number", - "routing" - ], - [ - "what is my routing number for home federal account", - "routing" - ], - [ - "show me my routing number for account finishing in 29309", - "routing" - ], - [ - "for my westport account, what is the routing number", - "routing" - ], - [ - "what is the routing number for royal", - "routing" - ], - [ - "display the routing number for account huntington", - "routing" - ], - [ - "provide me the routing number for my fed account", - "routing" - ], - [ - "give me the routing number for my paragon account", - "routing" - ], - [ - "let me know what the routing number for my civista account is", - "routing" - ], - [ - "inform me of the routing number for my amerifirst account", - "routing" - ], - [ - "tell me the routing number for my wf account", - "routing" - ], - [ - "routing number for american river", - "routing" - ], - [ - "what is the routing number of cadence", - "routing" - ], - [ - "what's my pioneer routing number", - "routing" - ], - [ - "can you tell me my routing number for summit", - "routing" - ], - [ - "what is my routing number for marine bank", - "routing" - ], - [ - "can you tell me my routing number", - "routing" - ], - [ - "what is my routing number", - "routing" - ], - [ - "i need my routing number", - "routing" - ], - [ - "i want to know my routing number please", - "routing" - ], - [ - "where do i find the routing number for usaa", - "routing" - ], - [ - "what's the routing number for my navy federal account", - "routing" - ], - [ - "what's the routing number for my chase account", - "routing" - ], - [ - "what's the routing number for my bank of america account", - "routing" - ], - [ - "where do i find the routing number for chase", - "routing" - ], - [ - "where do i find the routing number for bank of america", - "routing" - ], - [ - "where do i find the routing number for bank of the west", - "routing" - ], - [ - "where do i find the routing number for navy federal", - "routing" - ], - [ - "what's the routing number for my bank of the west account", - "routing" - ], - [ - "what's the routing number for my usaa account", - "routing" - ], - [ - "what's my bank routing number", - "routing" - ], - [ - "can i get the routing number for my boa account", - "routing" - ], - [ - "i need to know the routing number for my wells fargo account", - "routing" - ], - [ - "what is the routing number for my wells fargo account", - "routing" - ], - [ - "please tell me the routing number for my wells fargo account", - "routing" - ], - [ - "please tell me my bank of america routing number", - "routing" - ], - [ - "i need to know the routing number for my checking", - "routing" - ], - [ - "could you tell me the routing number for my chase checking account", - "routing" - ], - [ - "what is my routing number on my checking account", - "routing" - ], - [ - "i need the routing number to my chase checking account", - "routing" - ], - [ - "what is the routing number on my first merit account", - "routing" - ], - [ - "can you help me find the routing number", - "routing" - ], - [ - "will you tell me my routing number", - "routing" - ], - [ - "would you tell me my routing number", - "routing" - ], - [ - "i need to know chase banks routing #", - "routing" - ], - [ - "what type of pet do you have", - "do_you_have_pets" - ], - [ - "share some information about your pets with me", - "do_you_have_pets" - ], - [ - "do you have any type of pet", - "do_you_have_pets" - ], - [ - "do you own pets", - "do_you_have_pets" - ], - [ - "what are the pets that you have in your possession", - "do_you_have_pets" - ], - [ - "describe your types of pets", - "do_you_have_pets" - ], - [ - "how would you explain the pets you own", - "do_you_have_pets" - ], - [ - "what are the pet types you own", - "do_you_have_pets" - ], - [ - "do you have any pet animals", - "do_you_have_pets" - ], - [ - "any pets in your household", - "do_you_have_pets" - ], - [ - "do you have any domestic animals", - "do_you_have_pets" - ], - [ - "which animals do you have at home", - "do_you_have_pets" - ], - [ - "tell me all about the creatures you own", - "do_you_have_pets" - ], - [ - "specifically, what pets do you own", - "do_you_have_pets" - ], - [ - "if you had to choose, would you choose a cat or a dog", - "do_you_have_pets" - ], - [ - "what is your favorite, cats or dogs", - "do_you_have_pets" - ], - [ - "what kind of person are you, a cat or dog", - "do_you_have_pets" - ], - [ - "which food do you give your pets", - "do_you_have_pets" - ], - [ - "how old are your pets", - "do_you_have_pets" - ], - [ - "the pets are all good", - "do_you_have_pets" - ], - [ - "what is the colour of your pets", - "do_you_have_pets" - ], - [ - "what is your favourite pet", - "do_you_have_pets" - ], - [ - "do you have many kinds of pets at your house", - "do_you_have_pets" - ], - [ - "what kind of pets live with you", - "do_you_have_pets" - ], - [ - "how many different pets do you have", - "do_you_have_pets" - ], - [ - "do you have different kinds of pets", - "do_you_have_pets" - ], - [ - "what sort of pets do you have", - "do_you_have_pets" - ], - [ - "tell me about your pets", - "do_you_have_pets" - ], - [ - "what sort of person are you, a cat or dog person", - "do_you_have_pets" - ], - [ - "tell me if you like cats or dogs", - "do_you_have_pets" - ], - [ - "let me know about your pets", - "do_you_have_pets" - ], - [ - "can you tell me the types of pets you have", - "do_you_have_pets" - ], - [ - "i'd like to learn more about your pets", - "do_you_have_pets" - ], - [ - "so what pets do you have", - "do_you_have_pets" - ], - [ - "would you say you like cats or dogs", - "do_you_have_pets" - ], - [ - "would you say you're a person who likes cats or dogs more", - "do_you_have_pets" - ], - [ - "cats or dogs", - "do_you_have_pets" - ], - [ - "i want to know what kinds of pets you have", - "do_you_have_pets" - ], - [ - "would you let me know if you are a cat or dog person", - "do_you_have_pets" - ], - [ - "let me know what kinds of pets you have", - "do_you_have_pets" - ], - [ - "would you tell me what kind of pets you have", - "do_you_have_pets" - ], - [ - "i am needing to know what kind of pets you have", - "do_you_have_pets" - ], - [ - "tell me what kind of pets you have", - "do_you_have_pets" - ], - [ - "i want to know if you are a cat or dog person", - "do_you_have_pets" - ], - [ - "let me know if you are a cat or dog person", - "do_you_have_pets" - ], - [ - "i need to know whether you are a cat or dog person", - "do_you_have_pets" - ], - [ - "tell me whether you are a cat or dog person", - "do_you_have_pets" - ], - [ - "you have what kind of pets", - "do_you_have_pets" - ], - [ - "you have pets of what kind", - "do_you_have_pets" - ], - [ - "pets you have what kind", - "do_you_have_pets" - ], - [ - "on pets, what kind do you have", - "do_you_have_pets" - ], - [ - "kind of what pets do you have", - "do_you_have_pets" - ], - [ - "imagine you had to pick a preferred animal between cats or dogs, which will you pick", - "do_you_have_pets" - ], - [ - "why types of animals do you currently have as pets", - "do_you_have_pets" - ], - [ - "to what animal species do your pets belong", - "do_you_have_pets" - ], - [ - "what species of pets do you own", - "do_you_have_pets" - ], - [ - "what sort of animals are your pets", - "do_you_have_pets" - ], - [ - "would you say you like dogs more or cats more", - "do_you_have_pets" - ], - [ - "are you currently a pet owner", - "do_you_have_pets" - ], - [ - "have you any pets", - "do_you_have_pets" - ], - [ - "would you say that you are now a pet owner", - "do_you_have_pets" - ], - [ - "think about if you could only say one or the other, which animal do you see yourself choosing, cats or dogs", - "do_you_have_pets" - ], - [ - "which do you prefer, cats or dogs", - "do_you_have_pets" - ], - [ - "what pets do you currently own", - "do_you_have_pets" - ], - [ - "if you were getting a pet, would you get a cat or would you get a dog", - "do_you_have_pets" - ], - [ - "which pets do you own now", - "do_you_have_pets" - ], - [ - "so are cats and dogs liked by you", - "do_you_have_pets" - ], - [ - "are you a cat person", - "do_you_have_pets" - ], - [ - "so do you like cats or dogs", - "do_you_have_pets" - ], - [ - "i gotta know what kinds of pets you have", - "do_you_have_pets" - ], - [ - "tell me what kinds of pets you have", - "do_you_have_pets" - ], - [ - "do you like cat or dogs", - "do_you_have_pets" - ], - [ - "i need to know what kinds of pets you have", - "do_you_have_pets" - ], - [ - "i wanna know what kinds of pets you have", - "do_you_have_pets" - ], - [ - "do you like cats or dogs", - "do_you_have_pets" - ], - [ - "i must know what kinds of pets you have", - "do_you_have_pets" - ], - [ - "if you had to choose, cat or dog", - "do_you_have_pets" - ], - [ - "would you like to live with a cat or a dog", - "do_you_have_pets" - ], - [ - "which domestic animal do you prefer, dog or cat", - "do_you_have_pets" - ], - [ - "what is your favorite pet, a cat or a dog", - "do_you_have_pets" - ], - [ - "do you have pets", - "do_you_have_pets" - ], - [ - "do you keep any pets", - "do_you_have_pets" - ], - [ - "what are all your pets", - "do_you_have_pets" - ], - [ - "what are your pets", - "do_you_have_pets" - ], - [ - "how many pets do you have", - "do_you_have_pets" - ], - [ - "what animals do you have", - "do_you_have_pets" - ], - [ - "do you own any pet", - "do_you_have_pets" - ], - [ - "what kind of pets do you own", - "do_you_have_pets" - ], - [ - "what are the pets that you take care of", - "do_you_have_pets" - ], - [ - "do you own any pet at all", - "do_you_have_pets" - ], - [ - "what are the pets that you raise", - "do_you_have_pets" - ], - [ - "do you have any pet at all", - "do_you_have_pets" - ], - [ - "can you tell me about the pets you have", - "do_you_have_pets" - ], - [ - "can you tell me if you have any pets", - "do_you_have_pets" - ], - [ - "i am curious about whether you have pets", - "do_you_have_pets" - ], - [ - "i want to know whether or not you are a pet owner", - "do_you_have_pets" - ], - [ - "what sorts of pets do you own", - "do_you_have_pets" - ], - [ - "i want to hear about your pets", - "do_you_have_pets" - ], - [ - "are you a pet owner", - "do_you_have_pets" - ], - [ - "what types of pets do you own", - "do_you_have_pets" - ], - [ - "i want to know if there is meeting room available at 8", - "schedule_meeting" - ], - [ - "meeting room availability from 8:00 please", - "schedule_meeting" - ], - [ - "are there any meetings room available between 8:00 and 9:00 am", - "schedule_meeting" - ], - [ - "i want to check if there is any meeting room available between 8:00 and 10:00 am", - "schedule_meeting" - ], - [ - "tell me how do i schedule a meeting", - "schedule_meeting" - ], - [ - "show me how do i schedule a meeting", - "schedule_meeting" - ], - [ - "i want to know how do i schedule a meeting", - "schedule_meeting" - ], - [ - "meeting room availability at 8:00 please", - "schedule_meeting" - ], - [ - "i want to find out how do i schedule a meeting", - "schedule_meeting" - ], - [ - "do you know how do i schedule a meeting", - "schedule_meeting" - ], - [ - "can you schedule a meeting with steve at the office", - "schedule_meeting" - ], - [ - "can you schedule a meeting with jessica at the office, please", - "schedule_meeting" - ], - [ - "can you schedule a meeting with james at the office, please", - "schedule_meeting" - ], - [ - "how do i create a meeting", - "schedule_meeting" - ], - [ - "how can i create a meeting", - "schedule_meeting" - ], - [ - "how can i schedule a meeting", - "schedule_meeting" - ], - [ - "can you schedule a meeting with steve at the office, please", - "schedule_meeting" - ], - [ - "can you schedule a meeting with james at the office", - "schedule_meeting" - ], - [ - "do you have a meeting room open from noon until 2:00 pm", - "schedule_meeting" - ], - [ - "i'd like to schedule a meeting room from 1:00 pm until 2:00 pm", - "schedule_meeting" - ], - [ - "can i book a meeting room from 2:00 pm to 3:00 pm", - "schedule_meeting" - ], - [ - "are there any meeting rooms free from 10:00 am until 10:30 am", - "schedule_meeting" - ], - [ - "what is your availability for conference rooms between one and two today", - "schedule_meeting" - ], - [ - "i want to schedule a meeting with tom for 6pm", - "schedule_meeting" - ], - [ - "add a new meeting with tom for 6pm", - "schedule_meeting" - ], - [ - "how can you schedule a meeting for me", - "schedule_meeting" - ], - [ - "can you schedule a meeting for me", - "schedule_meeting" - ], - [ - "schedule a meeting with tom for 6pm", - "schedule_meeting" - ], - [ - "i need to schedule a meeting", - "schedule_meeting" - ], - [ - "schedule a meeting for me", - "schedule_meeting" - ], - [ - "add a meeting with tom at 6pm", - "schedule_meeting" - ], - [ - "i need to set a meeting with tom at 6pm", - "schedule_meeting" - ], - [ - "would you schedule a meeting with carrie and lisa please", - "schedule_meeting" - ], - [ - "i need you to schedule a meeting with carrie and lisa", - "schedule_meeting" - ], - [ - "schedule a meeting with carrie and lisa", - "schedule_meeting" - ], - [ - "i want you to schedule a meeting with carrie and lisa", - "schedule_meeting" - ], - [ - "could you please schedule a meeting with carrie and lisa", - "schedule_meeting" - ], - [ - "i want a meeting to be scheduled", - "schedule_meeting" - ], - [ - "tell me how i can schedule a meeting", - "schedule_meeting" - ], - [ - "help me schedule a meeting", - "schedule_meeting" - ], - [ - "how does scheduling a meeting work", - "schedule_meeting" - ], - [ - "help me get a meeting set up", - "schedule_meeting" - ], - [ - "i need a meeting scheduled with bob for 7:00am on 9/11", - "schedule_meeting" - ], - [ - "get me a meeting with bill for 5:30pm tomorrow", - "schedule_meeting" - ], - [ - "i have to meet with sam at 9:00am in two days", - "schedule_meeting" - ], - [ - "set a meeting with tom for 5:30 tomorrow", - "schedule_meeting" - ], - [ - "i'm having trouble scheduling a meeting", - "schedule_meeting" - ], - [ - "put a meeting on my schedule with pam for 3:00pm on february 11th", - "schedule_meeting" - ], - [ - "are there meeting rooms available between 9-10", - "schedule_meeting" - ], - [ - "are there meeting rooms available between 7-9", - "schedule_meeting" - ], - [ - "are there meeting rooms available between 11-12", - "schedule_meeting" - ], - [ - "are there meeting rooms available between 4-8", - "schedule_meeting" - ], - [ - "are there meeting rooms available between 10-11", - "schedule_meeting" - ], - [ - "can you put in a meeting for the blue room on friday", - "schedule_meeting" - ], - [ - "can you sign me up for a meeting in the blue room on friday", - "schedule_meeting" - ], - [ - "i want to know if there are meeting rooms available between 9:00 am and 11:00 am", - "schedule_meeting" - ], - [ - "please help me schedule a meeting with john love at 9 am tomorrow", - "schedule_meeting" - ], - [ - "between 9:00 am and 11:00 am, are there meeting rooms available", - "schedule_meeting" - ], - [ - "could you schedule a meeting with john smith at 1 pm tomorrow", - "schedule_meeting" - ], - [ - "i need you to schedule a meeting with bob brown at noon the day after tomorrow", - "schedule_meeting" - ], - [ - "can see you see if there are meeting rooms available between 9:00 am and 11:00 am", - "schedule_meeting" - ], - [ - "see if you can schedule a meeting with don southerland tomorrow at noon", - "schedule_meeting" - ], - [ - "i need meeting rooms between 9:00 am and 11:00 am, are there any available", - "schedule_meeting" - ], - [ - "can you schedule a meeting at 10 am tomorrow with john smith", - "schedule_meeting" - ], - [ - "please tell me if there are meeting rooms available between 9:00 am and 11:00 am", - "schedule_meeting" - ], - [ - "can you schedule a meeting room for interviews on thursday", - "schedule_meeting" - ], - [ - "can you schedule a meeting with damon for 1", - "schedule_meeting" - ], - [ - "can you schedule a meeting with john for 12", - "schedule_meeting" - ], - [ - "can you schedule a meeting with steve for 5", - "schedule_meeting" - ], - [ - "can you schedule a meeting with george for 4", - "schedule_meeting" - ], - [ - "can you schedule a meeting with matt for 3", - "schedule_meeting" - ], - [ - "a meeting needs to be schedule and i need to know how", - "schedule_meeting" - ], - [ - "show me how to schedule a meeting", - "schedule_meeting" - ], - [ - "tell me how to schedule a meeting", - "schedule_meeting" - ], - [ - "schedule a meeting room for friday at 3pm", - "schedule_meeting" - ], - [ - "at noon, schedule a meeting with saul", - "schedule_meeting" - ], - [ - "i'd like to pencil in a meeting with seth at 11am", - "schedule_meeting" - ], - [ - "what's the meeting room availability between noon and 2", - "schedule_meeting" - ], - [ - "set up a meeting with frank at 2pm", - "schedule_meeting" - ], - [ - "are there any open meeting rooms between noon and 1", - "schedule_meeting" - ], - [ - "book me a meeting room for 12pm on february 28th", - "schedule_meeting" - ], - [ - "are any meeting rooms open between 9 and 10", - "schedule_meeting" - ], - [ - "is there an open meeting room between 2 and 4", - "schedule_meeting" - ], - [ - "can you hook me up with a meeting room on saturday morning at 10am", - "schedule_meeting" - ], - [ - "i need to schedule a meeting with mae at 5pm", - "schedule_meeting" - ], - [ - "i'm going to need a meeting room on 9am on tuesday", - "schedule_meeting" - ], - [ - "i need a meeting room at 2pm on friday", - "schedule_meeting" - ], - [ - "i'm going to need to meet with scott at 1pm", - "schedule_meeting" - ], - [ - "is it possible to book a meeting room between 10 and 11", - "schedule_meeting" - ], - [ - "would you be able to help me with a meeting room on wednesday at 3pm", - "schedule_meeting" - ], - [ - "during afternoon is there a meeting room to use", - "schedule_meeting" - ], - [ - "is there a meeting room available between one and two", - "schedule_meeting" - ], - [ - "what is the availability of meeting rooms during the afternoon", - "schedule_meeting" - ], - [ - "how many rooms are available between 2 and 3", - "schedule_meeting" - ], - [ - "check if meeting rooms are free from 6 to 7", - "schedule_meeting" - ], - [ - "please find out if rooms are free from 1 to 2", - "schedule_meeting" - ], - [ - "are any rooms free from 12 to 1", - "schedule_meeting" - ], - [ - "are there rooms available between 5 and 530", - "schedule_meeting" - ], - [ - "if i want to schedule a meeting, how do i do it", - "schedule_meeting" - ], - [ - "how is a meeting scheduled", - "schedule_meeting" - ], - [ - "what kind of gasoline can this car take", - "gas_type" - ], - [ - "is there a certain type of gas i need to use", - "gas_type" - ], - [ - "i need to know what kind of gas i can use on this car", - "gas_type" - ], - [ - "is any type of gas ok on this car", - "gas_type" - ], - [ - "is there a certain type of gas i need to use for this car", - "gas_type" - ], - [ - "i want to know the type of gasoline for this car", - "gas_type" - ], - [ - "tell me the gas type for that car", - "gas_type" - ], - [ - "tell me what type of gas this car uses", - "gas_type" - ], - [ - "tell me what kind of gas this car uses", - "gas_type" - ], - [ - "what type of fuel does my car need", - "gas_type" - ], - [ - "what type of gas does the car use", - "gas_type" - ], - [ - "what type of fuel do i need to use to fill the car up with", - "gas_type" - ], - [ - "what type of gas do i need to use in this car", - "gas_type" - ], - [ - "what type of gas does this car need", - "gas_type" - ], - [ - "what kind of fuel do i need", - "gas_type" - ], - [ - "what kind of gas will i need to put in this car", - "gas_type" - ], - [ - "i need to know what kind of fuel this car needs", - "gas_type" - ], - [ - "what kind of gas should i use to fill the car", - "gas_type" - ], - [ - "what kind of petrol goes in the tank", - "gas_type" - ], - [ - "can i use any fuel in my car", - "gas_type" - ], - [ - "what kind of fuel should i use to fill the car", - "gas_type" - ], - [ - "tell me what type of fuel i need to use for this car", - "gas_type" - ], - [ - "what fuel do i need for my car", - "gas_type" - ], - [ - "what kind of gas should i put in this car", - "gas_type" - ], - [ - "what gas do i need to fill the car up with", - "gas_type" - ], - [ - "does my car need specific fuel", - "gas_type" - ], - [ - "which type of gas do i need to put in my car", - "gas_type" - ], - [ - "what sort of gas does the car need", - "gas_type" - ], - [ - "tell me what cas is needed for this car", - "gas_type" - ], - [ - "i need to know what kind of gas to put in this car", - "gas_type" - ], - [ - "i would like to know the kind of gas that this car uses", - "gas_type" - ], - [ - "tell me the gas i need to fill this car up with", - "gas_type" - ], - [ - "what gas does the car need", - "gas_type" - ], - [ - "what gas does that car currently use", - "gas_type" - ], - [ - "what gas does the car use", - "gas_type" - ], - [ - "i wanna know the gas i need to fill this car up with", - "gas_type" - ], - [ - "what kind of gas does my car currently need", - "gas_type" - ], - [ - "what gas is needed for the car", - "gas_type" - ], - [ - "i wanna know the gad i need to fill this car up with", - "gas_type" - ], - [ - "please inform me the gas i need to fill this car up with", - "gas_type" - ], - [ - "what gas does my car use", - "gas_type" - ], - [ - "so what kind of gas does my car need", - "gas_type" - ], - [ - "i wish to know the gas i need to fill this car up with", - "gas_type" - ], - [ - "what type of gas does my car use", - "gas_type" - ], - [ - "what kind of gas does my car use", - "gas_type" - ], - [ - "what type of gas am i allowed to put in this car", - "gas_type" - ], - [ - "what kind of gas should go in this car", - "gas_type" - ], - [ - "what kind of gas goes in this car", - "gas_type" - ], - [ - "what type of gas does this car take", - "gas_type" - ], - [ - "what kind of gas does my vehicle take", - "gas_type" - ], - [ - "what sort of fuel does this car take", - "gas_type" - ], - [ - "what type of fuel is used for this vehicle", - "gas_type" - ], - [ - "what sort of fuel should i use for this car", - "gas_type" - ], - [ - "tell me the kind of fuel that my vehicle operates on", - "gas_type" - ], - [ - "what kind of fuel does my vehicle run on", - "gas_type" - ], - [ - "what sort of gas should i get for my car", - "gas_type" - ], - [ - "tell me the right kind of gas for this car", - "gas_type" - ], - [ - "look up the kind of fuel i use in my car", - "gas_type" - ], - [ - "what sort of fuel do i need for my car", - "gas_type" - ], - [ - "can you check what fuel type to use with this car", - "gas_type" - ], - [ - "what kind of gas does this car take", - "gas_type" - ], - [ - "look up the type of gas needed for this vehicle", - "gas_type" - ], - [ - "tell me the fuel type used by my car", - "gas_type" - ], - [ - "what kind of gas is needed for this car", - "gas_type" - ], - [ - "does it matter what kind of gas i fill up my car with", - "gas_type" - ], - [ - "should i use premium gas with this car", - "gas_type" - ], - [ - "will using a different type of gas matter for this car", - "gas_type" - ], - [ - "will this car run on the cheaper gas", - "gas_type" - ], - [ - "can i put normal unleaded in this car", - "gas_type" - ], - [ - "is unleaded ok or should i use premium", - "gas_type" - ], - [ - "what percentage gas do i need", - "gas_type" - ], - [ - "what kind of gas does this car use", - "gas_type" - ], - [ - "what type of fuel should i use in my car", - "gas_type" - ], - [ - "which fuel does my car take", - "gas_type" - ], - [ - "what kind of fuel goes in my engine", - "gas_type" - ], - [ - "does this car take regular gas", - "gas_type" - ], - [ - "tell me the gasoline type for this car", - "gas_type" - ], - [ - "what type of gas do i need to put in this car", - "gas_type" - ], - [ - "what type of gas do i need for this car", - "gas_type" - ], - [ - "does this care use premium gas", - "gas_type" - ], - [ - "is regular gas ok or does this car need something else", - "gas_type" - ], - [ - "which gas grade does this car take", - "gas_type" - ], - [ - "which gas type does this car take", - "gas_type" - ], - [ - "what's the correct fuel type for my car", - "gas_type" - ], - [ - "does this car need high octane gas", - "gas_type" - ], - [ - "does this take regular unleaded", - "gas_type" - ], - [ - "is there a minimum gas grade this car needs", - "gas_type" - ], - [ - "tell me the fuel my car takes", - "gas_type" - ], - [ - "my car uses what type of fuel", - "gas_type" - ], - [ - "tell me the type of fuel my car takes", - "gas_type" - ], - [ - "tell me what type of fuel my car uses", - "gas_type" - ], - [ - "what type of fuel does my car use", - "gas_type" - ], - [ - "what kind of gas do i put in my car", - "gas_type" - ], - [ - "what gasoline do i need to buy", - "gas_type" - ], - [ - "what kind of gas does my car take", - "gas_type" - ], - [ - "what kind of gas does this car need", - "gas_type" - ], - [ - "what kind of gas should i put into this car", - "gas_type" - ], - [ - "what gas does this car need", - "gas_type" - ], - [ - "what gas should i fill it up with", - "gas_type" - ], - [ - "what do i need to gas up this car", - "gas_type" - ], - [ - "do i need a socket converter if i'm going to mexico", - "plug_type" - ], - [ - "does england have a different plug type and if so what is it", - "plug_type" - ], - [ - "is there a conversion plug if you travel to australia", - "plug_type" - ], - [ - "what kind of plug type do they use in russia", - "plug_type" - ], - [ - "what type of plug do i need to bring if i visit japan", - "plug_type" - ], - [ - "what type of plug do they use in mexico", - "plug_type" - ], - [ - "when you go to germany, do you need a special converter for your plugs", - "plug_type" - ], - [ - "do visitors to japan need to use a socket converter", - "plug_type" - ], - [ - "do you need a special outlet converter in sweden", - "plug_type" - ], - [ - "do i need a power adapter in mexico", - "plug_type" - ], - [ - "do they use special outlets in australia", - "plug_type" - ], - [ - "do they use any special type of plug in spain that you need a converter for", - "plug_type" - ], - [ - "do i need to have a socket converter in canada", - "plug_type" - ], - [ - "is a socket converter required if i travel to russia", - "plug_type" - ], - [ - "do they use weird plugs in australia where i'd need some kind of socket converter", - "plug_type" - ], - [ - "is there an outlet plug adapter", - "plug_type" - ], - [ - "can you tell me what kind of outlet plug there is over there", - "plug_type" - ], - [ - "how do i know what the outlets are like", - "plug_type" - ], - [ - "i'm going out of country, what type of outlet plug do i need", - "plug_type" - ], - [ - "what if i have the wrong plug", - "plug_type" - ], - [ - "do i need a socket converter if i'm going to be in ohio", - "plug_type" - ], - [ - "in osaka, do i need a plug converter for my electronics", - "plug_type" - ], - [ - "will i need a plug converter for my electronics in amman", - "plug_type" - ], - [ - "what plug types are there in cuba", - "plug_type" - ], - [ - "in chile, what kind of plugs are used", - "plug_type" - ], - [ - "what type of plugs do they use in london", - "plug_type" - ], - [ - "if i visit cairo will i need a plug converter", - "plug_type" - ], - [ - "to charge my phone in india will i need a plug converter", - "plug_type" - ], - [ - "what kind of plugs will i need when i'm in ecuador", - "plug_type" - ], - [ - "will i need to use a plug converter in el salvador", - "plug_type" - ], - [ - "what plugs are used in spain", - "plug_type" - ], - [ - "what type of plug does the country use", - "plug_type" - ], - [ - "give me the plug type for the country", - "plug_type" - ], - [ - "what kind of plug does the country use", - "plug_type" - ], - [ - "i have to know what plug that country uses", - "plug_type" - ], - [ - "inform me as to the plug type of the country", - "plug_type" - ], - [ - "which type of plugs do they use in scotland", - "plug_type" - ], - [ - "are socket converters needed in lisbon", - "plug_type" - ], - [ - "will i need a socket converter when i go to france", - "plug_type" - ], - [ - "is a socket converter required in india", - "plug_type" - ], - [ - "what kind of plug does my hair dryer use in south korea", - "plug_type" - ], - [ - "if i go to dublin is a socket converter needed", - "plug_type" - ], - [ - "what type of plugs are used in cambodia", - "plug_type" - ], - [ - "what kind of plug do i need for my razor in ireland", - "plug_type" - ], - [ - "when i go to dubai will i need a socket converter", - "plug_type" - ], - [ - "when i go to mexico, what kind of plugs do i need", - "plug_type" - ], - [ - "what kind of plug converter is needed in c", - "plug_type" - ], - [ - "what kind of outlets does havana have", - "plug_type" - ], - [ - "do i need a plug converter in doha", - "plug_type" - ], - [ - "is a plug converter required for haiti", - "plug_type" - ], - [ - "do i need to get a plug converter for athens", - "plug_type" - ], - [ - "do i need a socket converter if i'm going to be in russia", - "plug_type" - ], - [ - "do i need a plug converter when i visit russia", - "plug_type" - ], - [ - "do i need a socket converter if i'm going to be in china", - "plug_type" - ], - [ - "do i need a socket converter if i'm going to be in uruguay", - "plug_type" - ], - [ - "do i need a plug converter when i visit belgium", - "plug_type" - ], - [ - "what plug type does russia use", - "plug_type" - ], - [ - "what plug type does greece use", - "plug_type" - ], - [ - "do i need a socket converter if i'm going to be in germany", - "plug_type" - ], - [ - "what plug type does spain use", - "plug_type" - ], - [ - "what plug type is used in spain", - "plug_type" - ], - [ - "do i need a socket converter if i'm going to be in france", - "plug_type" - ], - [ - "tell me the plug type that is used in scotland", - "plug_type" - ], - [ - "should i bring a converter to barcelona", - "plug_type" - ], - [ - "do i need a converter in barcelona", - "plug_type" - ], - [ - "are barcelona plugs compatible", - "plug_type" - ], - [ - "will my plugs work in barcelona", - "plug_type" - ], - [ - "are the plugs different in barcelona", - "plug_type" - ], - [ - "what kind of outlets do they use in z", - "plug_type" - ], - [ - "what kind of electrical outlets do they use in z", - "plug_type" - ], - [ - "what kind of electrical plugs do they uze in z", - "plug_type" - ], - [ - "what kind of hertz outlets do they use in z", - "plug_type" - ], - [ - "do i need a socket converter in england", - "plug_type" - ], - [ - "are socket converters necessary in england", - "plug_type" - ], - [ - "should i bring my socket converter while traveling to england", - "plug_type" - ], - [ - "should i bring my socket converter to england", - "plug_type" - ], - [ - "does england require socket converters", - "plug_type" - ], - [ - "should i buy a specific plug type when in china", - "plug_type" - ], - [ - "would i need to buy a plug converter when in rome", - "plug_type" - ], - [ - "do i really need a plug converter when in london", - "plug_type" - ], - [ - "what type of plug do i need when in rome", - "plug_type" - ], - [ - "would it be smart to get a plug converter when i visit israel", - "plug_type" - ], - [ - "what do the plugs look like in japan", - "plug_type" - ], - [ - "should i buy a plug converter if i am traveling to egypt", - "plug_type" - ], - [ - "does australia have different plug sizes", - "plug_type" - ], - [ - "what are those european plugs called", - "plug_type" - ], - [ - "should i purchase a new plug converter when in france", - "plug_type" - ], - [ - "when i visit thailand do i need a plug converter", - "plug_type" - ], - [ - "can i use the plug i use at home when traveling in south america", - "plug_type" - ], - [ - "is a plug converter necessary in mexico", - "plug_type" - ], - [ - "when in europe would i be able to use a regular plug", - "plug_type" - ], - [ - "can i use an ordinary plug in scotland", - "plug_type" - ], - [ - "what is the plug type in france", - "plug_type" - ], - [ - "what plug type would i use in japan", - "plug_type" - ], - [ - "do i need a plug converter when i visit france", - "plug_type" - ], - [ - "do i need a plug converter when i visit china", - "plug_type" - ], - [ - "do i need a socket converter if i'm going to be in sweden", - "plug_type" - ], - [ - "do i need a socket converter if i'm going to be in eithiopia", - "plug_type" - ], - [ - "do i need a socket converter if i'm going to be in hong kong", - "plug_type" - ], - [ - "what plug type should i use in england", - "plug_type" - ], - [ - "tell me the status of my tires and when i need to replace them", - "tire_change" - ], - [ - "how many more miles can i drive before changing my tires", - "tire_change" - ], - [ - "how many miles can i drive before changing my tires", - "tire_change" - ], - [ - "when will my tires need to be replaced", - "tire_change" - ], - [ - "how is the tread on my tires", - "tire_change" - ], - [ - "when should i replace my tires next if i last replaced them on july 15th", - "tire_change" - ], - [ - "when are my tires due to be changed", - "tire_change" - ], - [ - "what date should i get my tires changed", - "tire_change" - ], - [ - "my tires need to be changed when", - "tire_change" - ], - [ - "how often do tires need changing", - "tire_change" - ], - [ - "when should i try to change my tires", - "tire_change" - ], - [ - "when is it imperative that i get my tires changed", - "tire_change" - ], - [ - "when do my tires need some changing", - "tire_change" - ], - [ - "when do my tires need changing", - "tire_change" - ], - [ - "when do i have to get my tires changed", - "tire_change" - ], - [ - "when should i replace my tires next if i last replaced them on the 1st", - "tire_change" - ], - [ - "tell when should i get my tires changed next", - "tire_change" - ], - [ - "tell me when should i get my tires changed next", - "tire_change" - ], - [ - "i need to know when should i get my tires changed next", - "tire_change" - ], - [ - "let me know when should i get my tires changed next", - "tire_change" - ], - [ - "when shall i get my tires changed", - "tire_change" - ], - [ - "when do i need to get my tires changed", - "tire_change" - ], - [ - "when must i get my tires changed", - "tire_change" - ], - [ - "i wanna know when should i get my tires changed next", - "tire_change" - ], - [ - "when am i due for a tire change", - "tire_change" - ], - [ - "do i need new tires if i just got them replaced on january 2017", - "tire_change" - ], - [ - "how many times a year should i change my tires", - "tire_change" - ], - [ - "do i need replacement tires if my last purchase was in june 2015", - "tire_change" - ], - [ - "if i bought new tires on may 27th, should i still need new ones", - "tire_change" - ], - [ - "would i need new tires if my last purchase was in may of 2018", - "tire_change" - ], - [ - "would you say i need new tires if i last bought them on the 24th", - "tire_change" - ], - [ - "do i need to change any of my tires", - "tire_change" - ], - [ - "i got my new tires a month ago, when should i replace them", - "tire_change" - ], - [ - "when should i get new tires i just replaced them", - "tire_change" - ], - [ - "i purchased new tires yesterday, should i buy new ones", - "tire_change" - ], - [ - "how soon should i replace my tires from yesterday", - "tire_change" - ], - [ - "i replaced my tires yesterday, when should i get new ones", - "tire_change" - ], - [ - "can you please let me know when next my tires are due to be changed", - "tire_change" - ], - [ - "please confirm the next time i should get the tires on my car replaced", - "tire_change" - ], - [ - "when is it recommended that i change my tires next", - "tire_change" - ], - [ - "how long until i should have my tires replaced", - "tire_change" - ], - [ - "when should i get new tires i last replaced them four years ago", - "tire_change" - ], - [ - "how many miles do i drive before i have to get new tires i replaced them four years ago", - "tire_change" - ], - [ - "how low should the tread be on my tires to replace them i bought new tires four years ago", - "tire_change" - ], - [ - "when should i get my tires changed again", - "tire_change" - ], - [ - "when do my tires need to be changed again", - "tire_change" - ], - [ - "when will i need to change my tires again", - "tire_change" - ], - [ - "when do i need to change my tires again", - "tire_change" - ], - [ - "when should my tires be changed next", - "tire_change" - ], - [ - "i replaced my tires on may 2, so when should i replace them next", - "tire_change" - ], - [ - "if i replaced my tires on labor day, when should i next replace them", - "tire_change" - ], - [ - "when should i have my tires replaced if i replaced them on the first of march", - "tire_change" - ], - [ - "if i replaced my tires on christmas eve, when will i need to replace them again", - "tire_change" - ], - [ - "when will i need to replace my tires if i last replaced them on december 20", - "tire_change" - ], - [ - "how long can i go before i need to change my tires", - "tire_change" - ], - [ - "when should i go in and have my tires changed", - "tire_change" - ], - [ - "how much time do i have before i have to change my tires", - "tire_change" - ], - [ - "when should i get new tires", - "tire_change" - ], - [ - "when ought i get my tires changed next", - "tire_change" - ], - [ - "are my tires due to be changed", - "tire_change" - ], - [ - "are my tires due to be changed soon", - "tire_change" - ], - [ - "how long until i have to replace my tires", - "tire_change" - ], - [ - "how much longer until i have to change my tires", - "tire_change" - ], - [ - "when's the next time i should change my tires", - "tire_change" - ], - [ - "when do i take my car in for a tire change", - "tire_change" - ], - [ - "how long until i need to change my tires", - "tire_change" - ], - [ - "how many miles until i change my tires", - "tire_change" - ], - [ - "when are my tires next due for a change", - "tire_change" - ], - [ - "how often do you change your tires", - "tire_change" - ], - [ - "how long do tires last for", - "tire_change" - ], - [ - "how many miles can i drive before i need to change my tires", - "tire_change" - ], - [ - "what signs should i look for to know if i should change my tires", - "tire_change" - ], - [ - "is there a way to tell if i need new tires", - "tire_change" - ], - [ - "when should i replace my tires next, if i replaced them on january 15, 2018", - "tire_change" - ], - [ - "when should i replace my tires if i replaced them last year", - "tire_change" - ], - [ - "how do i know when to change my tires", - "tire_change" - ], - [ - "tell me how i can tell if my tires need to be changed", - "tire_change" - ], - [ - "is it time for new tires", - "tire_change" - ], - [ - "do i need new tires", - "tire_change" - ], - [ - "tell me when i need to replace my tires, if i replaced them on october 1, 2017", - "tire_change" - ], - [ - "do i need to replace my tires if i replaced my tires in january", - "tire_change" - ], - [ - "i replaced my tires in december, when should i replace them again", - "tire_change" - ], - [ - "how often should i replace my tires sense i replaced them on 2/21/17", - "tire_change" - ], - [ - "i replaced my tires last year when should i replace my tires again", - "tire_change" - ], - [ - "when do you think i should replace my tires because i replaced them on 12/21/17", - "tire_change" - ], - [ - "how long before i need to replace my tires after i replaced them on 2/24/18", - "tire_change" - ], - [ - "when should i replace my tires sense i last replaced them on 3/21/17", - "tire_change" - ], - [ - "when is the right time to change my tires", - "tire_change" - ], - [ - "is it time to change my tires", - "tire_change" - ], - [ - "when do i need to change my tires", - "tire_change" - ], - [ - "do my tires need to be changed", - "tire_change" - ], - [ - "should i change my tires", - "tire_change" - ], - [ - "when will my tires need changed", - "tire_change" - ], - [ - "how many miles before i need my tires changed", - "tire_change" - ], - [ - "is there a specific date when i should get my tires changed", - "tire_change" - ], - [ - "can you tell me when my tires should get changed", - "tire_change" - ], - [ - "is there a time when i should get my tires changed", - "tire_change" - ], - [ - "would you tell me when i should replace my tires next if i last replaced them on june 2", - "tire_change" - ], - [ - "help me and let me know when i should replace my tires next if i last replaced them on june 2", - "tire_change" - ], - [ - "i need to know when i should replace my tires next if i last replaced them on june 2", - "tire_change" - ], - [ - "how many pesos can i get for one dollar", - "exchange_rate" - ], - [ - "what is the current going rate for exchanging dollars for pesos", - "exchange_rate" - ], - [ - "tell me the exchange rate between dollars and pesos", - "exchange_rate" - ], - [ - "let me know what the exchange rate between dollars and pesos is", - "exchange_rate" - ], - [ - "what's the exchange rate between dollars and pesos", - "exchange_rate" - ], - [ - "whats dollars won in 15", - "exchange_rate" - ], - [ - "what's dollars yen in 10", - "exchange_rate" - ], - [ - "whats pesos australian dollars in 20", - "exchange_rate" - ], - [ - "whats rupees dollars in 30", - "exchange_rate" - ], - [ - "whats euros kroner in 25", - "exchange_rate" - ], - [ - "how many lira can i get for 250 dollars", - "exchange_rate" - ], - [ - "what is the exchange rate in pesos for 100 dollars", - "exchange_rate" - ], - [ - "how many dollars can i exchange for 25 euros", - "exchange_rate" - ], - [ - "how many dollars can i exchange for 75 euros", - "exchange_rate" - ], - [ - "what is the equal number of dollars i can exchange for 50 pesos", - "exchange_rate" - ], - [ - "tell me the exchange rate between rubles and dollars", - "exchange_rate" - ], - [ - "i wanna know five dollars in yen and rubles", - "exchange_rate" - ], - [ - "what's the currency conversion between rubles and yen", - "exchange_rate" - ], - [ - "how many dollars can i exchange for 10 yen", - "exchange_rate" - ], - [ - "i wanna know the exchange rate between yen and dollars", - "exchange_rate" - ], - [ - "how many dollars can i exchange for 10000 rubles", - "exchange_rate" - ], - [ - "what is 5 in yen and rubles", - "exchange_rate" - ], - [ - "how many dollars can i exchange for 5000 rubles", - "exchange_rate" - ], - [ - "i need to know five dollars in yen and rubles", - "exchange_rate" - ], - [ - "how many dollars can i exchange for 10000 yen", - "exchange_rate" - ], - [ - "i gotta know the exchange rate between yen and rubles", - "exchange_rate" - ], - [ - "what's the currency conversion between rubles and dollars", - "exchange_rate" - ], - [ - "what's the currency conversion between usd and yen", - "exchange_rate" - ], - [ - "what's the currency conversion between usd and pounds", - "exchange_rate" - ], - [ - "i would love to know the exchange rate between rubles and pounds", - "exchange_rate" - ], - [ - "tell me five dollars in yen and rubles", - "exchange_rate" - ], - [ - "i must know five dollars in yen and rubles", - "exchange_rate" - ], - [ - "let me know the exchange rate between dollars and rubles", - "exchange_rate" - ], - [ - "how many dollars can i exchange for 100000 yen", - "exchange_rate" - ], - [ - "what's the currency conversion between rubles and pounds", - "exchange_rate" - ], - [ - "what is the exchange rate between usd and british pounds", - "exchange_rate" - ], - [ - "usd to yen is what right now", - "exchange_rate" - ], - [ - "what is the exchange rate between british pounds and yen", - "exchange_rate" - ], - [ - "usd to the euro exchanges at what right now", - "exchange_rate" - ], - [ - "what is the exchange rate between usd and the euro", - "exchange_rate" - ], - [ - "how much can i expect to receive if i trade in 6 yens", - "exchange_rate" - ], - [ - "what is the amount of dollars i get if i trade in 6 yens", - "exchange_rate" - ], - [ - "what is the maximum dollars i can get for 6 yens", - "exchange_rate" - ], - [ - "what is the quantity of dollars i receive for trading 6 yens", - "exchange_rate" - ], - [ - "how much dollars do i receive if i trade in 6 yens", - "exchange_rate" - ], - [ - "how many pesos in one dollar us", - "exchange_rate" - ], - [ - "how much is twenty pounds sterling in us dollars", - "exchange_rate" - ], - [ - "what is the the exchange rate for us dollars to euros", - "exchange_rate" - ], - [ - "can you tell me the exchange rate for yen to euros", - "exchange_rate" - ], - [ - "what is the exchange rate from pounds sterling to us dollars", - "exchange_rate" - ], - [ - "how many pesos equals 500 dollars", - "exchange_rate" - ], - [ - "tell me how many pesos equal 500 dollars", - "exchange_rate" - ], - [ - "what is the conversion for 500 dollars to pesos", - "exchange_rate" - ], - [ - "how much is 500 dollars in pesos", - "exchange_rate" - ], - [ - "500 dollars equals what in pesos", - "exchange_rate" - ], - [ - "how does 10 pounds convert to euros", - "exchange_rate" - ], - [ - "how many canadian dollars can i get for 5 us dollars", - "exchange_rate" - ], - [ - "how many euros can i exchange for 5 us dollars", - "exchange_rate" - ], - [ - "what is the exchange to yen if i have 100 us dollars", - "exchange_rate" - ], - [ - "how many us dollars can i get for 20 euros", - "exchange_rate" - ], - [ - "can you tell me today's rate for cad to usd", - "exchange_rate" - ], - [ - "how much cad can i get with my one usd", - "exchange_rate" - ], - [ - "is the dollar strong against the yen today", - "exchange_rate" - ], - [ - "tell me the exchange rate of dollars to yen", - "exchange_rate" - ], - [ - "what is one dollar worth in mexico", - "exchange_rate" - ], - [ - "i need to know the conversion for dollars to pesos", - "exchange_rate" - ], - [ - "can you tell me dollars to franks", - "exchange_rate" - ], - [ - "i would like to know the usd to aud conversion rate", - "exchange_rate" - ], - [ - "i need to know the dollar to peso conversion", - "exchange_rate" - ], - [ - "us dollars to uk", - "exchange_rate" - ], - [ - "exchange rate between mexico and us", - "exchange_rate" - ], - [ - "how many dollars is one mexican peso", - "exchange_rate" - ], - [ - "dollar to pesos exchange rate", - "exchange_rate" - ], - [ - "exchange rate to go from dollar to yen", - "exchange_rate" - ], - [ - "us and mexico exchange rate", - "exchange_rate" - ], - [ - "what is 2 francs in euros", - "exchange_rate" - ], - [ - "what's 10 pounds in dollars", - "exchange_rate" - ], - [ - "what is 56 dollars in yen", - "exchange_rate" - ], - [ - "what's 11 yen in pounds", - "exchange_rate" - ], - [ - "what's 10 euros in dollars", - "exchange_rate" - ], - [ - "how many swedish kroner do i get for a dollar", - "exchange_rate" - ], - [ - "how much is 10 us dollars in canadian dollars", - "exchange_rate" - ], - [ - "what is 50 dollars in euros", - "exchange_rate" - ], - [ - "what is the exchange rate for canadian dollars to us dollars", - "exchange_rate" - ], - [ - "what is the current exchange rate for the dollar and the yen", - "exchange_rate" - ], - [ - "if i have 10 us dollars, how many pounds sterling is that", - "exchange_rate" - ], - [ - "if i have 20,000 yen, how much is that in usd", - "exchange_rate" - ], - [ - "what's 50 euro in dollars", - "exchange_rate" - ], - [ - "how much is the euro in dollars", - "exchange_rate" - ], - [ - "what is the current exchange rate of yen to lira", - "exchange_rate" - ], - [ - "convert krugerrands to saudi riyal", - "exchange_rate" - ], - [ - "tell me the currency conversion rate from kurus to euros", - "exchange_rate" - ], - [ - "i need the exchange rate between pounds and us dollars", - "exchange_rate" - ], - [ - "what is the exchange rate between rubles and us dollars", - "exchange_rate" - ], - [ - "how many dollars can i exchange for 200 pounds", - "exchange_rate" - ], - [ - "how many euros can i exchange for 200 yen", - "exchange_rate" - ], - [ - "how many canadian dollars can i exchange for 200 yen", - "exchange_rate" - ], - [ - "how many dollars can i exchange for 200 yen", - "exchange_rate" - ], - [ - "how many dollars can i exchange for 200 euros", - "exchange_rate" - ], - [ - "what is the yen worth in terms of the peso", - "exchange_rate" - ], - [ - "when is the upcoming holiday, please", - "next_holiday" - ], - [ - "when is the upcoming holiday", - "next_holiday" - ], - [ - "what day is our next free day", - "next_holiday" - ], - [ - "when is the next scheduled holiday", - "next_holiday" - ], - [ - "when is the next scheduled holiday, please", - "next_holiday" - ], - [ - "when is our next free day", - "next_holiday" - ], - [ - "when is our next free day, please", - "next_holiday" - ], - [ - "what day is our next free day, please", - "next_holiday" - ], - [ - "what day is our next free day on the calendar, please", - "next_holiday" - ], - [ - "when is the next holiday, please", - "next_holiday" - ], - [ - "are there any holidays this month", - "next_holiday" - ], - [ - "when is the next day i have off", - "next_holiday" - ], - [ - "how many more days until my next paid day off", - "next_holiday" - ], - [ - "which holiday is next in line", - "next_holiday" - ], - [ - "i need to know how long until my next vacation day", - "next_holiday" - ], - [ - "is there a holiday next week", - "next_holiday" - ], - [ - "how many days until i am off", - "next_holiday" - ], - [ - "when is my next vacation day", - "next_holiday" - ], - [ - "what's the time period till our next day off", - "next_holiday" - ], - [ - "how much time till the next day off", - "next_holiday" - ], - [ - "how much longer till the next day off", - "next_holiday" - ], - [ - "how much time till the next time off", - "next_holiday" - ], - [ - "how many days till we have off again", - "next_holiday" - ], - [ - "when's the next time i get a day off", - "next_holiday" - ], - [ - "when is the next scheduled day off", - "next_holiday" - ], - [ - "what's the next day i am scheduled off", - "next_holiday" - ], - [ - "what's the closest holiday after today", - "next_holiday" - ], - [ - "do i have a day off coming up soon", - "next_holiday" - ], - [ - "what is the next holiday on the calendar", - "next_holiday" - ], - [ - "how many days until my next day off", - "next_holiday" - ], - [ - "what holiday comes next", - "next_holiday" - ], - [ - "when will i get the next holiday with pay", - "next_holiday" - ], - [ - "when is the next time off for a holiday here", - "next_holiday" - ], - [ - "check when the next day is i can go fishing will be", - "next_holiday" - ], - [ - "when is the next office holiday", - "next_holiday" - ], - [ - "when does my current job have the next official paid holiday", - "next_holiday" - ], - [ - "what's the next scheduled holiday at this job", - "next_holiday" - ], - [ - "when will we next get to stay home from work", - "next_holiday" - ], - [ - "when's the next federally recognized holiday", - "next_holiday" - ], - [ - "when's the next time my job'll give me a day to myself", - "next_holiday" - ], - [ - "when does this place let us have a holiday next", - "next_holiday" - ], - [ - "let me know when my next day off is", - "next_holiday" - ], - [ - "can you tell me when our next day off is", - "next_holiday" - ], - [ - "when do i get a day off", - "next_holiday" - ], - [ - "give me the info of when our next day off is", - "next_holiday" - ], - [ - "show me my next day off", - "next_holiday" - ], - [ - "how many more weeks until the next holiday", - "next_holiday" - ], - [ - "which holiday is next", - "next_holiday" - ], - [ - "how many more days until the next holiday", - "next_holiday" - ], - [ - "how soon until the next holiday", - "next_holiday" - ], - [ - "tell me when i will next have the day off", - "next_holiday" - ], - [ - "tell me when the next holiday arrives", - "next_holiday" - ], - [ - "tell me when the next day off will be", - "next_holiday" - ], - [ - "please look up the next holiday for me", - "next_holiday" - ], - [ - "i need to know when i will next have the day off", - "next_holiday" - ], - [ - "find out for me when the next holiday will be", - "next_holiday" - ], - [ - "look up when our next day off will be", - "next_holiday" - ], - [ - "i need to know when the next holiday is", - "next_holiday" - ], - [ - "when can i expect my next day off", - "next_holiday" - ], - [ - "can you tell me what the next holiday is", - "next_holiday" - ], - [ - "do you know the date of my next day off", - "next_holiday" - ], - [ - "please tell me what the next holiday is", - "next_holiday" - ], - [ - "i need to know when the next holiday will be", - "next_holiday" - ], - [ - "i need to know when my next day off is", - "next_holiday" - ], - [ - "what is the date of the next holiday", - "next_holiday" - ], - [ - "how soon is my next day off", - "next_holiday" - ], - [ - "tell me when my next day off is", - "next_holiday" - ], - [ - "how long until my next day off", - "next_holiday" - ], - [ - "when will we have another day off", - "next_holiday" - ], - [ - "what is my next day off", - "next_holiday" - ], - [ - "whats the next day that i am off", - "next_holiday" - ], - [ - "how many days until the next holiday arrives", - "next_holiday" - ], - [ - "what day am i off next", - "next_holiday" - ], - [ - "how much longer until my next day off", - "next_holiday" - ], - [ - "when is my next day off", - "next_holiday" - ], - [ - "when will i be off again", - "next_holiday" - ], - [ - "to what extent until the following day away from work", - "next_holiday" - ], - [ - "to what extent until the following three day weekend", - "next_holiday" - ], - [ - "to what extent until the following free day", - "next_holiday" - ], - [ - "what is the next holiday", - "next_holiday" - ], - [ - "tell me what holiday is comming up next", - "next_holiday" - ], - [ - "are there any holiday's comming up", - "next_holiday" - ], - [ - "what holiday's are comming up next", - "next_holiday" - ], - [ - "when can i expect the next holiday here", - "next_holiday" - ], - [ - "is the next day off coming up", - "next_holiday" - ], - [ - "when's the next day off coming up", - "next_holiday" - ], - [ - "how long before the next day off is here", - "next_holiday" - ], - [ - "when is the next day off", - "next_holiday" - ], - [ - "when will the day off be", - "next_holiday" - ], - [ - "i need to know when i get my next day off", - "next_holiday" - ], - [ - "when do i finally get a day off", - "next_holiday" - ], - [ - "when don't i have to work next", - "next_holiday" - ], - [ - "what holiday can i expect next", - "next_holiday" - ], - [ - "do you know when my next day off is coming", - "next_holiday" - ], - [ - "what holiday is coming up next", - "next_holiday" - ], - [ - "when do i have some time off next", - "next_holiday" - ], - [ - "when's the next holiday coming", - "next_holiday" - ], - [ - "can you tell me the next holiday", - "next_holiday" - ], - [ - "what's the next holiday", - "next_holiday" - ], - [ - "what's the date of the next closest holiday", - "next_holiday" - ], - [ - "raise the volume to 4 please", - "change_volume" - ], - [ - "please set the volume to 4", - "change_volume" - ], - [ - "please increase the volume to 4", - "change_volume" - ], - [ - "please raise the volume to 4", - "change_volume" - ], - [ - "set the volume to 4 please", - "change_volume" - ], - [ - "bring the volume up overall", - "change_volume" - ], - [ - "make the volume louder", - "change_volume" - ], - [ - "bring the sound up", - "change_volume" - ], - [ - "turn your speakers up", - "change_volume" - ], - [ - "make the speakers louder", - "change_volume" - ], - [ - "lower your volume", - "change_volume" - ], - [ - "go ahead and increase the volume to 4 please", - "change_volume" - ], - [ - "you must increase the volume to 4 please", - "change_volume" - ], - [ - "go ahead and your volume", - "change_volume" - ], - [ - "you must increase your volume", - "change_volume" - ], - [ - "please increase your volume", - "change_volume" - ], - [ - "please increase your speaker volume", - "change_volume" - ], - [ - "go now and increase the volume to 4 please", - "change_volume" - ], - [ - "please increase the volume to 4 please", - "change_volume" - ], - [ - "i want to increase your volume", - "change_volume" - ], - [ - "i need you to your volume", - "change_volume" - ], - [ - "please your volume", - "change_volume" - ], - [ - "go ahead and increase your speaker volume", - "change_volume" - ], - [ - "i want you to your volume", - "change_volume" - ], - [ - "i need you to increase your volume", - "change_volume" - ], - [ - "i need you to increase your speaker volume", - "change_volume" - ], - [ - "please go ahead and increase your speaker volume", - "change_volume" - ], - [ - "make my volume louder please", - "change_volume" - ], - [ - "make the sound of my speaker greater", - "change_volume" - ], - [ - "can you rise the volume of this please", - "change_volume" - ], - [ - "change the speaker volume to a louder one", - "change_volume" - ], - [ - "i want the speaker to be louder please", - "change_volume" - ], - [ - "i can't hear you", - "change_volume" - ], - [ - "turn it up please", - "change_volume" - ], - [ - "i need it louder", - "change_volume" - ], - [ - "the sound is too low", - "change_volume" - ], - [ - "the speaker volume needs to be increased", - "change_volume" - ], - [ - "would you please increase your speaker volume", - "change_volume" - ], - [ - "i need you to increase the speaker volume", - "change_volume" - ], - [ - "can you increase the speaker volume", - "change_volume" - ], - [ - "turn up the volume level to 4", - "change_volume" - ], - [ - "turn up the volume level to 4, please", - "change_volume" - ], - [ - "increase the volume level to 4, please", - "change_volume" - ], - [ - "increase the volume level to 4 now", - "change_volume" - ], - [ - "increase the volume level to 4", - "change_volume" - ], - [ - "can i have my volume increased", - "change_volume" - ], - [ - "can my volume be increased", - "change_volume" - ], - [ - "can i increase my volume", - "change_volume" - ], - [ - "volume needs to be at 4", - "change_volume" - ], - [ - "volume should be increased to 4", - "change_volume" - ], - [ - "boost volume to 4", - "change_volume" - ], - [ - "i want volume at 4", - "change_volume" - ], - [ - "i want that volume bumped up to 4", - "change_volume" - ], - [ - "the volume should be decreased", - "change_volume" - ], - [ - "raise the volume", - "change_volume" - ], - [ - "lower the volume", - "change_volume" - ], - [ - "i would like the volume lower", - "change_volume" - ], - [ - "can you turn this down", - "change_volume" - ], - [ - "turn the volume up", - "change_volume" - ], - [ - "i'd like to turn up the volume", - "change_volume" - ], - [ - "turn up the speaker volume", - "change_volume" - ], - [ - "get louder", - "change_volume" - ], - [ - "volume should be set at 4", - "change_volume" - ], - [ - "i'd like it to be louder", - "change_volume" - ], - [ - "can you please turn the volume to 4", - "change_volume" - ], - [ - "please speak louder", - "change_volume" - ], - [ - "increase your vocals", - "change_volume" - ], - [ - "lower your voice box", - "change_volume" - ], - [ - "increase your voice box", - "change_volume" - ], - [ - "turn your vocals down", - "change_volume" - ], - [ - "turn your voice box down", - "change_volume" - ], - [ - "turn down your volume", - "change_volume" - ], - [ - "limit your volume", - "change_volume" - ], - [ - "please adjust your settings", - "change_volume" - ], - [ - "change the volume to 4 now please", - "change_volume" - ], - [ - "go ahead and put the volume to 4", - "change_volume" - ], - [ - "set the volume to 4 now", - "change_volume" - ], - [ - "can you change the volume to 4", - "change_volume" - ], - [ - "turn the volume to 4", - "change_volume" - ], - [ - "can you turn the volume to 4", - "change_volume" - ], - [ - "set the volume at 4 for me please", - "change_volume" - ], - [ - "make the volume set to 4", - "change_volume" - ], - [ - "i want volume set to 4", - "change_volume" - ], - [ - "turn volume to the number 4 setting", - "change_volume" - ], - [ - "turn the volume to level 4", - "change_volume" - ], - [ - "make the volume 4", - "change_volume" - ], - [ - "please make sure the volume is on 4", - "change_volume" - ], - [ - "turn down volume", - "change_volume" - ], - [ - "please increase volume", - "change_volume" - ], - [ - "raise volume", - "change_volume" - ], - [ - "decrease volume level", - "change_volume" - ], - [ - "lower volume level", - "change_volume" - ], - [ - "set volume higher", - "change_volume" - ], - [ - "increase volume", - "change_volume" - ], - [ - "lower volume", - "change_volume" - ], - [ - "please raise volume", - "change_volume" - ], - [ - "decrease volume", - "change_volume" - ], - [ - "increase volume to 4", - "change_volume" - ], - [ - "put volume at 4", - "change_volume" - ], - [ - "decrease volume to 4", - "change_volume" - ], - [ - "who is your employeer", - "who_do_you_work_for" - ], - [ - "who is the boss of you", - "who_do_you_work_for" - ], - [ - "i gotta know who is your boss", - "who_do_you_work_for" - ], - [ - "tell me who is your boss", - "who_do_you_work_for" - ], - [ - "let me know who is your boss", - "who_do_you_work_for" - ], - [ - "i wanna know who is your boss", - "who_do_you_work_for" - ], - [ - "i need to know who is your boss", - "who_do_you_work_for" - ], - [ - "what is the name of your boss", - "who_do_you_work_for" - ], - [ - "what is the full name of your boss", - "who_do_you_work_for" - ], - [ - "do you know the name of your boss", - "who_do_you_work_for" - ], - [ - "could you tell me the name of your boss", - "who_do_you_work_for" - ], - [ - "your boss is", - "who_do_you_work_for" - ], - [ - "are you my worker", - "who_do_you_work_for" - ], - [ - "are you working for me or what", - "who_do_you_work_for" - ], - [ - "are you working for another person or entity", - "who_do_you_work_for" - ], - [ - "are you here to serve me", - "who_do_you_work_for" - ], - [ - "who or what association do you work for", - "who_do_you_work_for" - ], - [ - "describe who it is you work for", - "who_do_you_work_for" - ], - [ - "what entity is your boss", - "who_do_you_work_for" - ], - [ - "you work for who", - "who_do_you_work_for" - ], - [ - "you work for whom", - "who_do_you_work_for" - ], - [ - "what's your boss' name", - "who_do_you_work_for" - ], - [ - "are you working for someone other than me", - "who_do_you_work_for" - ], - [ - "who do you work for", - "who_do_you_work_for" - ], - [ - "do you work for me or is that wrong", - "who_do_you_work_for" - ], - [ - "what does your boss go by", - "who_do_you_work_for" - ], - [ - "who do you call your boss", - "who_do_you_work_for" - ], - [ - "when asked who you work for, what would you say", - "who_do_you_work_for" - ], - [ - "your boss is who", - "who_do_you_work_for" - ], - [ - "are you employed by someone else", - "who_do_you_work_for" - ], - [ - "you work for someone else or no", - "who_do_you_work_for" - ], - [ - "you work for what company or person exactly", - "who_do_you_work_for" - ], - [ - "do you have an employer", - "who_do_you_work_for" - ], - [ - "do you have a boss", - "who_do_you_work_for" - ], - [ - "are you paid by somebody", - "who_do_you_work_for" - ], - [ - "are you employed by someone", - "who_do_you_work_for" - ], - [ - "which organization you work for", - "who_do_you_work_for" - ], - [ - "who do you function for", - "who_do_you_work_for" - ], - [ - "who do you do task for", - "who_do_you_work_for" - ], - [ - "who do you job for", - "who_do_you_work_for" - ], - [ - "why do u work for them", - "who_do_you_work_for" - ], - [ - "who are they that you work for", - "who_do_you_work_for" - ], - [ - "who is it u work for", - "who_do_you_work_for" - ], - [ - "who is the person u work for", - "who_do_you_work_for" - ], - [ - "who do i work for", - "who_do_you_work_for" - ], - [ - "who is you employer", - "who_do_you_work_for" - ], - [ - "is it correct to say you work for me", - "who_do_you_work_for" - ], - [ - "who are you currently working for", - "who_do_you_work_for" - ], - [ - "are you self employed", - "who_do_you_work_for" - ], - [ - "who is your employer", - "who_do_you_work_for" - ], - [ - "are you now working for me", - "who_do_you_work_for" - ], - [ - "would you say you are working for me", - "who_do_you_work_for" - ], - [ - "who are you working for", - "who_do_you_work_for" - ], - [ - "who pay your salary", - "who_do_you_work_for" - ], - [ - "what organization do you work for", - "who_do_you_work_for" - ], - [ - "where else do you work", - "who_do_you_work_for" - ], - [ - "do you have another job", - "who_do_you_work_for" - ], - [ - "you working for someone else on the side", - "who_do_you_work_for" - ], - [ - "who do yo work for", - "who_do_you_work_for" - ], - [ - "who is in charge of you", - "who_do_you_work_for" - ], - [ - "what is your boss's name", - "who_do_you_work_for" - ], - [ - "would you say that you know who your boss is", - "who_do_you_work_for" - ], - [ - "do you know who you report to", - "who_do_you_work_for" - ], - [ - "don't you work for your self", - "who_do_you_work_for" - ], - [ - "don't you work for someone else", - "who_do_you_work_for" - ], - [ - "is there another person you work for", - "who_do_you_work_for" - ], - [ - "do you work for anyone else", - "who_do_you_work_for" - ], - [ - "who would you say your employer is", - "who_do_you_work_for" - ], - [ - "are you working for me", - "who_do_you_work_for" - ], - [ - "am i your boss", - "who_do_you_work_for" - ], - [ - "is there someone else you work for", - "who_do_you_work_for" - ], - [ - "are you employed by me", - "who_do_you_work_for" - ], - [ - "is there another entity you work for", - "who_do_you_work_for" - ], - [ - "who would you say that you are working for", - "who_do_you_work_for" - ], - [ - "do you happen to be employed by me", - "who_do_you_work_for" - ], - [ - "who would you say you work for", - "who_do_you_work_for" - ], - [ - "who would you say that you are employed by", - "who_do_you_work_for" - ], - [ - "who would you say you are employed by", - "who_do_you_work_for" - ], - [ - "am i your employer", - "who_do_you_work_for" - ], - [ - "is there another company you work for", - "who_do_you_work_for" - ], - [ - "are you my employee", - "who_do_you_work_for" - ], - [ - "am i your supervisor", - "who_do_you_work_for" - ], - [ - "am i your manager", - "who_do_you_work_for" - ], - [ - "who is the person you work for", - "who_do_you_work_for" - ], - [ - "for what person do you work", - "who_do_you_work_for" - ], - [ - "if you had to say who you worked for who would it be", - "who_do_you_work_for" - ], - [ - "who tells you what to do", - "who_do_you_work_for" - ], - [ - "who directs your labor", - "who_do_you_work_for" - ], - [ - "who do you take orders from", - "who_do_you_work_for" - ], - [ - "who do you consider your employer", - "who_do_you_work_for" - ], - [ - "who calls the shots for your employment", - "who_do_you_work_for" - ], - [ - "what company do you toil for", - "who_do_you_work_for" - ], - [ - "who do you report to", - "who_do_you_work_for" - ], - [ - "who is your boss", - "who_do_you_work_for" - ], - [ - "who is your manager", - "who_do_you_work_for" - ], - [ - "am i the one you work for", - "who_do_you_work_for" - ], - [ - "are you influenced by someone else", - "who_do_you_work_for" - ], - [ - "who else do you work for", - "who_do_you_work_for" - ], - [ - "who else commands you", - "who_do_you_work_for" - ], - [ - "are you working for someone else", - "who_do_you_work_for" - ], - [ - "how high is my credit limit for my old navy card", - "credit_limit" - ], - [ - "how high is my credit limit for my target card", - "credit_limit" - ], - [ - "what is the credit limit for my usaa card", - "credit_limit" - ], - [ - "how high is my credit limit for my childrens place card", - "credit_limit" - ], - [ - "how high is my credit limit for my walmart card", - "credit_limit" - ], - [ - "what is the credit limit for my bank of the west card", - "credit_limit" - ], - [ - "what is the credit limit for my chase card", - "credit_limit" - ], - [ - "how high is my credit limit for my navy federal card", - "credit_limit" - ], - [ - "what is the credit limit for my navy federal card", - "credit_limit" - ], - [ - "what is the credit limit for my bank of america card", - "credit_limit" - ], - [ - "what's my current spending limit", - "credit_limit" - ], - [ - "credit limit", - "credit_limit" - ], - [ - "what's the credit limit on my account", - "credit_limit" - ], - [ - "could you share what my current credit limit is", - "credit_limit" - ], - [ - "what's my current credit limit", - "credit_limit" - ], - [ - "what is the spending limit i have", - "credit_limit" - ], - [ - "what is the max on my credit limit", - "credit_limit" - ], - [ - "what is the limit on my credit", - "credit_limit" - ], - [ - "i need to know my spending limit on my visa", - "credit_limit" - ], - [ - "whats the max i can spend on my visa", - "credit_limit" - ], - [ - "how much can i max out on my visa", - "credit_limit" - ], - [ - "what's my visa limit", - "credit_limit" - ], - [ - "how much to i have left on my visa card limit", - "credit_limit" - ], - [ - "can you tell me the limit i currently have on my barclay card", - "credit_limit" - ], - [ - "what is my spending limit on my chase sapphire card", - "credit_limit" - ], - [ - "how much can i spend, at most, on my chase freedom", - "credit_limit" - ], - [ - "what is the current credit limit i have on my wells fargo mastercard", - "credit_limit" - ], - [ - "how much am i allowed to spend on my discover card", - "credit_limit" - ], - [ - "what is my amex credit limit", - "credit_limit" - ], - [ - "tell me the credit on my mastercard", - "credit_limit" - ], - [ - "tell me the limit for credit on my mastercard", - "credit_limit" - ], - [ - "look up the credit limit for my visa", - "credit_limit" - ], - [ - "i need know my credit limit on my american express card", - "credit_limit" - ], - [ - "how can i check my credit card limit", - "credit_limit" - ], - [ - "what is my credit limit looking like", - "credit_limit" - ], - [ - "where can i go to find out my credit limit", - "credit_limit" - ], - [ - "what's the credit limit on my visa", - "credit_limit" - ], - [ - "tell me the limit on my discover card", - "credit_limit" - ], - [ - "what is the credit limit on my discover card", - "credit_limit" - ], - [ - "what's the limit on my american express card", - "credit_limit" - ], - [ - "tell me my visa's credit limit", - "credit_limit" - ], - [ - "what is my credit limit", - "credit_limit" - ], - [ - "how much is my credit limit", - "credit_limit" - ], - [ - "can you tell me my credit limit", - "credit_limit" - ], - [ - "the credit limit on my account is how much", - "credit_limit" - ], - [ - "what's my limit on my visa card", - "credit_limit" - ], - [ - "what's my visa card's credit limit", - "credit_limit" - ], - [ - "how much can i spend on my visa card", - "credit_limit" - ], - [ - "what's my visa card's limit", - "credit_limit" - ], - [ - "what's the credit limit on my visa card", - "credit_limit" - ], - [ - "will you tell me my spending limit", - "credit_limit" - ], - [ - "will you let me know what my spending limit is", - "credit_limit" - ], - [ - "would you tell me my spending limit", - "credit_limit" - ], - [ - "can you tell me my spending limit", - "credit_limit" - ], - [ - "tel me the credit limit for my credit card", - "credit_limit" - ], - [ - "i wanna know the limit on my credit card", - "credit_limit" - ], - [ - "please tell me my spending limit", - "credit_limit" - ], - [ - "tell me the credit limit on my mastercard", - "credit_limit" - ], - [ - "i would love to know my spending limit", - "credit_limit" - ], - [ - "i wish to know my credit limit for my credit card", - "credit_limit" - ], - [ - "let me know the credit limit for my credit card", - "credit_limit" - ], - [ - "how high is my balance on my discovery card", - "credit_limit" - ], - [ - "can you find my credit limit on my mastercard", - "credit_limit" - ], - [ - "what's my current limit on my mastercard", - "credit_limit" - ], - [ - "what's my current limit on my visa", - "credit_limit" - ], - [ - "what's the credit limit on my discovery card", - "credit_limit" - ], - [ - "what's my credit limit on my visa", - "credit_limit" - ], - [ - "how high of a credit limit do i have on my amex card", - "credit_limit" - ], - [ - "what can i put on my bank of america card", - "credit_limit" - ], - [ - "what's my limit on my amex card", - "credit_limit" - ], - [ - "please check my credit limit on my visa", - "credit_limit" - ], - [ - "report my credit limit", - "credit_limit" - ], - [ - "what credit limit do i have", - "credit_limit" - ], - [ - "how is that credit limit", - "credit_limit" - ], - [ - "how is my credit limit", - "credit_limit" - ], - [ - "what is my credit limit at", - "credit_limit" - ], - [ - "credit limit info", - "credit_limit" - ], - [ - "what is the credit limit", - "credit_limit" - ], - [ - "i want to know my spending limit", - "credit_limit" - ], - [ - "what is the max credit limit for my card", - "credit_limit" - ], - [ - "can you let me know what my credit limit is for my visa card", - "credit_limit" - ], - [ - "tell me the visa card credit limit", - "credit_limit" - ], - [ - "what is my visa card limit", - "credit_limit" - ], - [ - "do you know my credit limit for the visa card", - "credit_limit" - ], - [ - "i need to know what the visa card credit limit is", - "credit_limit" - ], - [ - "how high is my credit limit for my chase card", - "credit_limit" - ], - [ - "how high is my credit limit for my wells fargo card", - "credit_limit" - ], - [ - "how high is my credit limit for my american express card", - "credit_limit" - ], - [ - "how high is my credit limit for my citigroup card", - "credit_limit" - ], - [ - "how high is my credit limit for my bank of america card", - "credit_limit" - ], - [ - "what is my spending limit on my mastercard", - "credit_limit" - ], - [ - "how much it the credit limit on my visa card", - "credit_limit" - ], - [ - "what is the credit limit on my visa", - "credit_limit" - ], - [ - "what is my limit on my visa card", - "credit_limit" - ], - [ - "what is the spending limit on my visa", - "credit_limit" - ], - [ - "how much can i charge on my visa", - "credit_limit" - ], - [ - "how much can i spend wth my visa", - "credit_limit" - ], - [ - "can i please know the credit limit for my citibank card", - "credit_limit" - ], - [ - "please let me know the credit limit on my citibank card", - "credit_limit" - ], - [ - "i would like to know the credit limit for my citibank card", - "credit_limit" - ], - [ - "do you know how long of a wait it will be", - "how_busy" - ], - [ - "how long is the restaurant line before we go", - "how_busy" - ], - [ - "how long will it take to get seated at needham's", - "how_busy" - ], - [ - "how long will the wait be at noon if we went to nagomi", - "how_busy" - ], - [ - "will i have to wait for long before being seated at the cheese cake factory", - "how_busy" - ], - [ - "how long should i expect to wait at the cheesecake factory before getting seated", - "how_busy" - ], - [ - "what is the average wait time at the cheese cake factory", - "how_busy" - ], - [ - "how long will i have to wait before being seated at the cheese cake factory", - "how_busy" - ], - [ - "how long will the wait time be at the cheese cake factory", - "how_busy" - ], - [ - "how long will i have to wait if i want to eat at panera", - "how_busy" - ], - [ - "how long would i have to wait if i want to go to golden corral", - "how_busy" - ], - [ - "how busy will panera be at noon", - "how_busy" - ], - [ - "is there a wait time to get into tgifridays", - "how_busy" - ], - [ - "will cracker barrel be crowded around five this evening", - "how_busy" - ], - [ - "how busy will golden corral be at 7:30 tonight", - "how_busy" - ], - [ - "can you tell me how busy chipotle will be at nine tonight", - "how_busy" - ], - [ - "what is the wait time at applebee's", - "how_busy" - ], - [ - "would i have to wait long if i want to eat at chili's", - "how_busy" - ], - [ - "if i go to tgifridays at eight, will they be crowded", - "how_busy" - ], - [ - "how much traffic do they get around dinner time", - "how_busy" - ], - [ - "can you check to see how busy that restaurant is for dinner", - "how_busy" - ], - [ - "is that place busy around dinner time", - "how_busy" - ], - [ - "is that restaurant crowded during dinner", - "how_busy" - ], - [ - "how busy it that place for dinner", - "how_busy" - ], - [ - "can i expect chili's to be busy at 4:30", - "how_busy" - ], - [ - "do you think longhorn steakhouse will be busy at 5pm", - "how_busy" - ], - [ - "how busy do you expect olive garden to be at 6", - "how_busy" - ], - [ - "what's the table wait at applebees", - "how_busy" - ], - [ - "i want a table at texas roadhouse; how long will it be", - "how_busy" - ], - [ - "how long does it take to get a table at chili's", - "how_busy" - ], - [ - "how many people do you think will be at applebees at 7", - "how_busy" - ], - [ - "how long will i wait for a table at red lobster", - "how_busy" - ], - [ - "is red lobster busy at 6pm", - "how_busy" - ], - [ - "what's the wait for a table at olive garden right now", - "how_busy" - ], - [ - "around nine, is ambrosio busy", - "how_busy" - ], - [ - "is sage busy around noon", - "how_busy" - ], - [ - "for toby's, is it busy around six", - "how_busy" - ], - [ - "at four, how much business does georgio have", - "how_busy" - ], - [ - "how long can i expect to wait for a restaurant table", - "how_busy" - ], - [ - "what time can i expect to be seated at this restaurant", - "how_busy" - ], - [ - "what is the wait time at this restaurant", - "how_busy" - ], - [ - "will there be a wait time at this restaurant", - "how_busy" - ], - [ - "what is the sitting time at this restaurant", - "how_busy" - ], - [ - "how busy is orchids at 7", - "how_busy" - ], - [ - "how busy is zippy around 12 for lunch", - "how_busy" - ], - [ - "how long is the wait at orchids", - "how_busy" - ], - [ - "how long is the wait at imanas", - "how_busy" - ], - [ - "how busy is imanas tei at 7 dinner", - "how_busy" - ], - [ - "what is the wait supposed to be at zippys", - "how_busy" - ], - [ - "how busy is mc donald at 8 in the morning", - "how_busy" - ], - [ - "how busy is michel at 9", - "how_busy" - ], - [ - "how busy is imanas at 6", - "how_busy" - ], - [ - "how long do i have to wait for shokudo", - "how_busy" - ], - [ - "how busy is teddy bigger burder around 5", - "how_busy" - ], - [ - "how long is the wait at assagios today", - "how_busy" - ], - [ - "how busy is shokudo at 12", - "how_busy" - ], - [ - "how busy is jiro at 12 lunch time", - "how_busy" - ], - [ - "at 5 pm, is kaya very busy", - "how_busy" - ], - [ - "how busy is kaya around 5 pm", - "how_busy" - ], - [ - "around 5 pm, how busy is kaya", - "how_busy" - ], - [ - "is kaya very busy at 5 pm", - "how_busy" - ], - [ - "is kaya busy around 5 pm", - "how_busy" - ], - [ - "how long is the wait at macaroni grill", - "how_busy" - ], - [ - "does macaroni grill have a wait how long", - "how_busy" - ], - [ - "check the wait time for macaroni grill", - "how_busy" - ], - [ - "how long will it take to be seated at macaroni grill", - "how_busy" - ], - [ - "what's the wait at macaroni grill", - "how_busy" - ], - [ - "will i be able to get a seat at 5pm", - "how_busy" - ], - [ - "tell me how busy the restaurant will be between 5 and 7pm", - "how_busy" - ], - [ - "is the restaurant busy at lunchtime", - "how_busy" - ], - [ - "will the restaurant be busy at 5pm", - "how_busy" - ], - [ - "when will the restaurant be busiest", - "how_busy" - ], - [ - "how busy is ihop generally around noon", - "how_busy" - ], - [ - "please look into the current wait times at chili's right now", - "how_busy" - ], - [ - "at 5:30 pm, how busy can i expect olive garden to be", - "how_busy" - ], - [ - "if i go to olive garden at 4 pm, how busy will it be", - "how_busy" - ], - [ - "how busy will chili's be if i go at 6 pm", - "how_busy" - ], - [ - "how long would i need to wait for a table at ihop right now", - "how_busy" - ], - [ - "i would like to find out if macaroni grill will be busy around 7:00 pm", - "how_busy" - ], - [ - "can you tell me how busy outback steakhouse will be at 7:30 pm", - "how_busy" - ], - [ - "find out how busy ihop usually is around 5 pm", - "how_busy" - ], - [ - "find out what wait times are like right now at olive garden", - "how_busy" - ], - [ - "can you tell me what the wait is like right now at cracker barrel", - "how_busy" - ], - [ - "tell me how busy macaroni grill will be around 8 pm", - "how_busy" - ], - [ - "check to see how long of a wait i would be facing if i go to outback steakhouse", - "how_busy" - ], - [ - "i want to know how busy ruby tuesday will be at around 8:45 pm", - "how_busy" - ], - [ - "do you know how busy outback steakhouse tends to be at 7:00 pm", - "how_busy" - ], - [ - "how long will it take me to be seated at ihop", - "how_busy" - ], - [ - "how long will i stand in line at carl jr's", - "how_busy" - ], - [ - "how busy is ihop at 5 pm", - "how_busy" - ], - [ - "does ihop have a lot of business around 7 am", - "how_busy" - ], - [ - "what's the typical wait time at red lobster", - "how_busy" - ], - [ - "would you say that red lobster's pretty buy at noon", - "how_busy" - ], - [ - "what's the crowd like at hopper's bar around 11pm", - "how_busy" - ], - [ - "can you tell me if there's a lot of wait time at wendy's around 8am", - "how_busy" - ], - [ - "how long will it take to be seated at the flying w", - "how_busy" - ], - [ - "what's the typical time to eat at red lobster", - "how_busy" - ], - [ - "how busy does outback get around 7pm", - "how_busy" - ], - [ - "will i have to wait to get a table at ihop", - "how_busy" - ], - [ - "how many people go to chili's around 9pm", - "how_busy" - ], - [ - "can i make a reservation for redrobin", - "accept_reservations" - ], - [ - "is it possible to make a reservation at redrobin", - "accept_reservations" - ], - [ - "does redrobin take reservations", - "accept_reservations" - ], - [ - "are reservations taken at redrobin", - "accept_reservations" - ], - [ - "does redrobin do reservations", - "accept_reservations" - ], - [ - "can acero take reservation", - "accept_reservations" - ], - [ - "can you make reservations at hodak's", - "accept_reservations" - ], - [ - "tell me if per se in nyc takes reservations", - "accept_reservations" - ], - [ - "tell me if the cheshire takes reservations", - "accept_reservations" - ], - [ - "will qdoba take reservations", - "accept_reservations" - ], - [ - "does burger king accept reservations", - "accept_reservations" - ], - [ - "does gramercy tavern in new york accept reservations", - "accept_reservations" - ], - [ - "does acero in maplewood allow reservations", - "accept_reservations" - ], - [ - "does cielo take reservations", - "accept_reservations" - ], - [ - "find out if la tour d'argent in paris takes reservations", - "accept_reservations" - ], - [ - "does tony's in downton let you make reservations", - "accept_reservations" - ], - [ - "does gramercy tavern accept reservations", - "accept_reservations" - ], - [ - "does mcdonalds take reservations", - "accept_reservations" - ], - [ - "can you make reservations at steak 'n' shake", - "accept_reservations" - ], - [ - "will nobu take reservations", - "accept_reservations" - ], - [ - "do they take reservations at carrabbas", - "accept_reservations" - ], - [ - "do they take reservations at applebees", - "accept_reservations" - ], - [ - "do they take reservations at olive garden", - "accept_reservations" - ], - [ - "do they take reservations at buffalo wild wings", - "accept_reservations" - ], - [ - "do they take reservations at outback steakhouse", - "accept_reservations" - ], - [ - "i need to know if angelos takes reservations", - "accept_reservations" - ], - [ - "does applebees in trenton do reservations", - "accept_reservations" - ], - [ - "does luigi's take reservations", - "accept_reservations" - ], - [ - "please find out if napolis takes lunch reservations", - "accept_reservations" - ], - [ - "does hannahs in galloway take reservations", - "accept_reservations" - ], - [ - "does stanleys take brunch reservations", - "accept_reservations" - ], - [ - "tell me if luigis in brick takes reservations", - "accept_reservations" - ], - [ - "i need to know if capones does reservations in trenton", - "accept_reservations" - ], - [ - "does marios in brooklyn take reservations", - "accept_reservations" - ], - [ - "do you know if bottlenecks takes dinner reservations", - "accept_reservations" - ], - [ - "do you know if whether or not zeus does reservations", - "accept_reservations" - ], - [ - "can you let me if zeus accepts reservations", - "accept_reservations" - ], - [ - "i need to find out do you know if zeus does reservations", - "accept_reservations" - ], - [ - "please tell me does zeus do reservations", - "accept_reservations" - ], - [ - "can you tell me if zeus does reservations", - "accept_reservations" - ], - [ - "can i get a reservation at melting pot tomorrow", - "accept_reservations" - ], - [ - "what locations of applebee's take reservations", - "accept_reservations" - ], - [ - "can i get a reservation at champs", - "accept_reservations" - ], - [ - "where can i find jimmy john's reservations", - "accept_reservations" - ], - [ - "how many culver's take reservations", - "accept_reservations" - ], - [ - "is there evening reservations available in the eve", - "accept_reservations" - ], - [ - "do you know if bahama breeze does reservations", - "accept_reservations" - ], - [ - "do you know if ruth chris does reservations", - "accept_reservations" - ], - [ - "do you know if cheese cake factory does reservations", - "accept_reservations" - ], - [ - "do you know if benihana does reservations", - "accept_reservations" - ], - [ - "do you know if olive garden does reservations", - "accept_reservations" - ], - [ - "does the steakhouse on main st take reservations", - "accept_reservations" - ], - [ - "does sidetracks take reservations", - "accept_reservations" - ], - [ - "are reservations allowed at burger king", - "accept_reservations" - ], - [ - "does black rock take reservations", - "accept_reservations" - ], - [ - "can i make reservations at applebee's or no", - "accept_reservations" - ], - [ - "does buffalo wild wings do reservations", - "accept_reservations" - ], - [ - "does minnies cafe in modesto take reservations", - "accept_reservations" - ], - [ - "does bjs take reservations", - "accept_reservations" - ], - [ - "will they take reservations at chillis", - "accept_reservations" - ], - [ - "does pho king in ceres take reservations", - "accept_reservations" - ], - [ - "can applebees take any reservations", - "accept_reservations" - ], - [ - "does arbys in lakewood take reservations", - "accept_reservations" - ], - [ - "does minnis take reservations", - "accept_reservations" - ], - [ - "do they take reservations at bjs", - "accept_reservations" - ], - [ - "does buffalo wild wings take reservations", - "accept_reservations" - ], - [ - "does buffalo wild wings in concord take reservations", - "accept_reservations" - ], - [ - "will they take reservations at torris", - "accept_reservations" - ], - [ - "does black bear diner in tracy take reservations", - "accept_reservations" - ], - [ - "does chillis take reservations", - "accept_reservations" - ], - [ - "do they take reservations at bar tartine", - "accept_reservations" - ], - [ - "do they take reservations at mcdonalds", - "accept_reservations" - ], - [ - "do they take reservations at the progress", - "accept_reservations" - ], - [ - "does tartine in san francisco take reservations", - "accept_reservations" - ], - [ - "does cowgirl creamery in san francisco take reservations", - "accept_reservations" - ], - [ - "do they take reservations at state bird", - "accept_reservations" - ], - [ - "does nopa in san francisco take reservations", - "accept_reservations" - ], - [ - "does bar tartine in san francisco take reservations", - "accept_reservations" - ], - [ - "do they take reservations at arby's", - "accept_reservations" - ], - [ - "does pizzeria delfina in san francisco take reservations", - "accept_reservations" - ], - [ - "does iron skillet at the truck stop trake reservations", - "accept_reservations" - ], - [ - "does the zen garden in la take reservations", - "accept_reservations" - ], - [ - "does moes in la except rerservations", - "accept_reservations" - ], - [ - "does ruby tuesday accept reservations", - "accept_reservations" - ], - [ - "can i make a reservation at chevy's", - "accept_reservations" - ], - [ - "is it possible to make reservations in advance for macaroni grill", - "accept_reservations" - ], - [ - "is it possible to make reservations with famous dave's restaurant", - "accept_reservations" - ], - [ - "is it possible to make reservations at chili's", - "accept_reservations" - ], - [ - "does chili's take reservations", - "accept_reservations" - ], - [ - "can you tell me if ruby tuesday does reservations", - "accept_reservations" - ], - [ - "does olive garden take reservations", - "accept_reservations" - ], - [ - "do you know whether ihop does reservations", - "accept_reservations" - ], - [ - "does michael's accept reservations", - "accept_reservations" - ], - [ - "do they accept reservations at michael's", - "accept_reservations" - ], - [ - "can you make a reservation at michael's", - "accept_reservations" - ], - [ - "can i make a reservation at michael's", - "accept_reservations" - ], - [ - "does the restaurant michael's take reservations", - "accept_reservations" - ], - [ - "do they take reservations at mendy's", - "accept_reservations" - ], - [ - "do you know if outback allows reservations", - "accept_reservations" - ], - [ - "do they take reservations at red robin", - "accept_reservations" - ], - [ - "can you find my package in transit", - "order_status" - ], - [ - "track my package please", - "order_status" - ], - [ - "help me find my package", - "order_status" - ], - [ - "i need to track my package", - "order_status" - ], - [ - "what's going on with my order", - "order_status" - ], - [ - "can you see where my package is", - "order_status" - ], - [ - "do you know anything about the status of my order", - "order_status" - ], - [ - "can you check if my order has been delivered", - "order_status" - ], - [ - "are you able to figure out where my package is", - "order_status" - ], - [ - "order status", - "order_status" - ], - [ - "is my order being delivered soon", - "order_status" - ], - [ - "where's my package", - "order_status" - ], - [ - "do you know where my package is", - "order_status" - ], - [ - "check status on my deliver, has it been delivered", - "order_status" - ], - [ - "is my order shown as delivered", - "order_status" - ], - [ - "did my order ship", - "order_status" - ], - [ - "can you tell where my package is", - "order_status" - ], - [ - "is my package able to be tracked by you", - "order_status" - ], - [ - "can you find my package", - "order_status" - ], - [ - "can you locate my package", - "order_status" - ], - [ - "are you able to tack my package", - "order_status" - ], - [ - "has my online order shipped yet", - "order_status" - ], - [ - "i need to know what the most recent update is on the status of my online purchase", - "order_status" - ], - [ - "look up the status of the order i placed online", - "order_status" - ], - [ - "check to see the status of my recent online order", - "order_status" - ], - [ - "find out the status of my most recent online purchase", - "order_status" - ], - [ - "i ordered some curtains off amazon, can you tell me if it's been shipped yet", - "order_status" - ], - [ - "what's the status of my order", - "order_status" - ], - [ - "can you check on the status of my orders at amazon", - "order_status" - ], - [ - "can you tell me what the status of my last amazon order is", - "order_status" - ], - [ - "can you tell me if my last amazon order is coming today", - "order_status" - ], - [ - "show me tracking on my order", - "order_status" - ], - [ - "what is the status of my order", - "order_status" - ], - [ - "can you update me on my last amazon orders", - "order_status" - ], - [ - "i just placed my order today, what is the status of it", - "order_status" - ], - [ - "can i please get the status my order", - "order_status" - ], - [ - "my order was put in and i was wonder how i can see the status of it", - "order_status" - ], - [ - "i submitted my order is there any updates on it yet", - "order_status" - ], - [ - "hey, i just put in my order and i was wondering what the status of it", - "order_status" - ], - [ - "what's the current location of my package", - "order_status" - ], - [ - "has my ordered arrived", - "order_status" - ], - [ - "when will my package arrive", - "order_status" - ], - [ - "can you see if my order was delivered", - "order_status" - ], - [ - "did my order ever get distributed today", - "order_status" - ], - [ - "where was my package last at", - "order_status" - ], - [ - "can you help me find my package", - "order_status" - ], - [ - "was my order dropped off", - "order_status" - ], - [ - "where's my package right now", - "order_status" - ], - [ - "would you track my package", - "order_status" - ], - [ - "please track my package", - "order_status" - ], - [ - "track my package now please", - "order_status" - ], - [ - "could you please track my package", - "order_status" - ], - [ - "i need you to track my package", - "order_status" - ], - [ - "what is the status of my online order", - "order_status" - ], - [ - "what's the status of the order i placed online last week with target", - "order_status" - ], - [ - "please tell me the status of my last online order from walmart", - "order_status" - ], - [ - "can i still make changes to my order, or has it already been shipped", - "order_status" - ], - [ - "i need an update on my online order from nespresso", - "order_status" - ], - [ - "when can i expect to receive the order", - "order_status" - ], - [ - "has my order been shipped", - "order_status" - ], - [ - "can you give me a status update on my online order from amazon", - "order_status" - ], - [ - "what is the status of my online order of coffee pods", - "order_status" - ], - [ - "what is the status of my recent order", - "order_status" - ], - [ - "can you please check on the status of my online order", - "order_status" - ], - [ - "check up on the status of my online order", - "order_status" - ], - [ - "online order: status", - "order_status" - ], - [ - "check on the status of my order", - "order_status" - ], - [ - "where is my order", - "order_status" - ], - [ - "is my order here yet", - "order_status" - ], - [ - "when will my order be delivered", - "order_status" - ], - [ - "check the status of my order", - "order_status" - ], - [ - "show me where my order is", - "order_status" - ], - [ - "has my order been shipped yet", - "order_status" - ], - [ - "can you check to see if my order has been delivered", - "order_status" - ], - [ - "could you check to see if my order has been delivered, please", - "order_status" - ], - [ - "can you check to see if my order has been delivered, please", - "order_status" - ], - [ - "could you check if my order has been delivered, please", - "order_status" - ], - [ - "could you check to see if my order has been delivered", - "order_status" - ], - [ - "has the order that i placed arrived", - "order_status" - ], - [ - "is my order already here", - "order_status" - ], - [ - "is my order due yet", - "order_status" - ], - [ - "is the packaged delivered already", - "order_status" - ], - [ - "has my order arrived yet", - "order_status" - ], - [ - "how soon will me package arrive", - "order_status" - ], - [ - "when can i expect my order", - "order_status" - ], - [ - "check order number", - "order_status" - ], - [ - "track package, please", - "order_status" - ], - [ - "are you able to track my package", - "order_status" - ], - [ - "track my package", - "order_status" - ], - [ - "what is the tracking on my package", - "order_status" - ], - [ - "get the tracking on my package", - "order_status" - ], - [ - "what is the status of my delivery order", - "order_status" - ], - [ - "where is my delivery order", - "order_status" - ], - [ - "has my delivery order arrived yet", - "order_status" - ], - [ - "has my delivery order showed up", - "order_status" - ], - [ - "i ordered for delivery, has is arrived yet", - "order_status" - ], - [ - "what is the status of my most recent order", - "order_status" - ], - [ - "has my recent order shipped", - "order_status" - ], - [ - "when will my order be here", - "order_status" - ], - [ - "will my order be here by saturday", - "order_status" - ], - [ - "how do i change my pin for number for my abc bank account", - "pin_change" - ], - [ - "what do i need to do to change my abc bank account pin number", - "pin_change" - ], - [ - "i have no idea what the pin is for my checking account", - "pin_change" - ], - [ - "i cannot recall the pin for my savings account", - "pin_change" - ], - [ - "i forgot the pin number for my college fund account", - "pin_change" - ], - [ - "set up a new pin number on my college fund account and make it be 1234", - "pin_change" - ], - [ - "i want 1234 to be the new pin number for my joint account", - "pin_change" - ], - [ - "please change my checking account pin to 1234", - "pin_change" - ], - [ - "i need to set up a new pin number for my college fund account", - "pin_change" - ], - [ - "i want my savings account pin to be 1234 from now on", - "pin_change" - ], - [ - "please change my retirement account pin number to 1234", - "pin_change" - ], - [ - "my checking account needs a new pin number", - "pin_change" - ], - [ - "i seem to have lost the pin for my retirement account", - "pin_change" - ], - [ - "i would like to replace the pin number for my retirement account", - "pin_change" - ], - [ - "i'd like to change my pin number for my checking account", - "pin_change" - ], - [ - "i want a new pin for my savings account", - "pin_change" - ], - [ - "i'm afraid i've forgotten the pin for my 401k account", - "pin_change" - ], - [ - "i need help changing my pin", - "pin_change" - ], - [ - "is there a way to get my pin number", - "pin_change" - ], - [ - "is there a way to change my pin number for my savings account", - "pin_change" - ], - [ - "i need my pin number", - "pin_change" - ], - [ - "how do i get my pin number, i forgot mine", - "pin_change" - ], - [ - "help me change my pin number for my money market account", - "pin_change" - ], - [ - "how do i get a new pin", - "pin_change" - ], - [ - "tell me how i can get a new pin number", - "pin_change" - ], - [ - "tell me how to retrieve my pin number", - "pin_change" - ], - [ - "help me, i forgot my pin number", - "pin_change" - ], - [ - "what is the procedure for getting a new pin number", - "pin_change" - ], - [ - "how do i change my pin number for my payroll account", - "pin_change" - ], - [ - "change my pin number for my checking account", - "pin_change" - ], - [ - "change my amex account pin to 1234", - "pin_change" - ], - [ - "change my amex pin to 1234", - "pin_change" - ], - [ - "swap my amex pin to 1234", - "pin_change" - ], - [ - "switch my amex pin to 1234", - "pin_change" - ], - [ - "set my amex pin to 1234", - "pin_change" - ], - [ - "you need to change the pin on my bank of america account to be 1234", - "pin_change" - ], - [ - "i need you to change the pin on my bank of america account to be 1234", - "pin_change" - ], - [ - "i need to change my pin number for my account", - "pin_change" - ], - [ - "i must change my pin number for my money market account", - "pin_change" - ], - [ - "i cannot remember what my pin is for my bank of america checking account", - "pin_change" - ], - [ - "i really need to change my pin number for my account", - "pin_change" - ], - [ - "i cannot remember what my pin is for my bank of america checking account this moment", - "pin_change" - ], - [ - "i want to change my pin number for my checking account", - "pin_change" - ], - [ - "i want to change my pin number for my account", - "pin_change" - ], - [ - "please go and change the pin on my bank of america account to be 1234", - "pin_change" - ], - [ - "i must change my pin number for my account", - "pin_change" - ], - [ - "go ahead and change the pin on my bank of america account to be 1234", - "pin_change" - ], - [ - "i got to change my pin number for my account", - "pin_change" - ], - [ - "i need to change my pin number for my savings account", - "pin_change" - ], - [ - "i wanna change my pin number for my credit acount", - "pin_change" - ], - [ - "please change the pin on my bank of america account to be 1234", - "pin_change" - ], - [ - "i really cannot remember what my pin is for my bank of america checking account", - "pin_change" - ], - [ - "i gotta change my pin number for my debit account", - "pin_change" - ], - [ - "i am unable to remember what my pin is for my bank of america checking account", - "pin_change" - ], - [ - "so it turns out i can't remember what my pin is for my bank of america checking account", - "pin_change" - ], - [ - "how do i change my pin number for my account, please", - "pin_change" - ], - [ - "how do i update my pin number for my account, please", - "pin_change" - ], - [ - "i would like to change the pin on my checking account, please", - "pin_change" - ], - [ - "i'd like to change the pin on my savings account, please", - "pin_change" - ], - [ - "change the pin on my capital one account to be 1234", - "pin_change" - ], - [ - "change the pin on my redwood credit union account to be 1234", - "pin_change" - ], - [ - "change the pin on my chase account to be 1234", - "pin_change" - ], - [ - "how do i update my pin number for my account", - "pin_change" - ], - [ - "i would like to change the pin on my savings account", - "pin_change" - ], - [ - "change the pin on my wells fargo account to be 1234", - "pin_change" - ], - [ - "change the pin on my bank of america account to be 1234", - "pin_change" - ], - [ - "i would like to change the pin on my checking account", - "pin_change" - ], - [ - "i would like to change the pin on my savings account, please", - "pin_change" - ], - [ - "how do i reset my pin number for my account, please", - "pin_change" - ], - [ - "please change pin to 1234 on my bank account trailing in 3829", - "pin_change" - ], - [ - "on account ending in 3838 change my pin to 1234", - "pin_change" - ], - [ - "change my pin to 1234 on account ending with digits 4994", - "pin_change" - ], - [ - "change the pin on my bank account first republic to 1234", - "pin_change" - ], - [ - "change pin to 1234 on account banner", - "pin_change" - ], - [ - "help me change my pin number", - "pin_change" - ], - [ - "can you tell me how i change my pin number", - "pin_change" - ], - [ - "tell me how to change my pin number", - "pin_change" - ], - [ - "help me out with changing this pin number", - "pin_change" - ], - [ - "can i change my pin number", - "pin_change" - ], - [ - "help me get my pin on my capitol one account changed to 3892", - "pin_change" - ], - [ - "how can i switch the pin on my wells fargo account to 9982", - "pin_change" - ], - [ - "i need a reminder for my pin number", - "pin_change" - ], - [ - "help me remember my pin number", - "pin_change" - ], - [ - "change the pin on my bofa account to 3892", - "pin_change" - ], - [ - "i need to reset my pin number", - "pin_change" - ], - [ - "can you reset my pin number", - "pin_change" - ], - [ - "can you change my 1st national account pin to 4892", - "pin_change" - ], - [ - "can you help me with my pin number", - "pin_change" - ], - [ - "please make the pin on my zion bank account to 3232", - "pin_change" - ], - [ - "can you tell me my password checking account", - "pin_change" - ], - [ - "please tell me my pin number for my synovus account", - "pin_change" - ], - [ - "what's my pin for my fidelity account", - "pin_change" - ], - [ - "i cant recall my pin number for my city first account", - "pin_change" - ], - [ - "i forgot my pin number for my northfield account", - "pin_change" - ], - [ - "i'd like to change my pin number for my wells fargo account", - "pin_change" - ], - [ - "i would like to change my pin number for my chase account", - "pin_change" - ], - [ - "i need to change my pin number for my checking account", - "pin_change" - ], - [ - "i'd like to change my pin number for my savings account", - "pin_change" - ], - [ - "i forgot my pin number to my chase account", - "pin_change" - ], - [ - "can you help me remember my pin to my boa account", - "pin_change" - ], - [ - "syonara, ai device!", - "goodbye" - ], - [ - "goodbye, helpful ai device!", - "goodbye" - ], - [ - "bye-bye", - "goodbye" - ], - [ - "goodbye, ai assistant", - "goodbye" - ], - [ - "glad we got to talk", - "goodbye" - ], - [ - "i'm glad i got to talk to you", - "goodbye" - ], - [ - "nice to speak with you", - "goodbye" - ], - [ - "this was a great conversation", - "goodbye" - ], - [ - "talk to you later", - "goodbye" - ], - [ - "tata for now", - "goodbye" - ], - [ - "i'm out of here", - "goodbye" - ], - [ - "that's all, bye", - "goodbye" - ], - [ - "see ya later", - "goodbye" - ], - [ - "adios ai", - "goodbye" - ], - [ - "it was great to see you again, see ya later!", - "goodbye" - ], - [ - "i had a pleasure talking to you, see you later", - "goodbye" - ], - [ - "nice talking again, bye", - "goodbye" - ], - [ - "i have to go but it was nice talking again!", - "goodbye" - ], - [ - "i am glad we got to talk again, see you soon", - "goodbye" - ], - [ - "sayonara", - "goodbye" - ], - [ - "catch you around", - "goodbye" - ], - [ - "good seeing you", - "goodbye" - ], - [ - "later, thanks for chatting", - "goodbye" - ], - [ - "adios", - "goodbye" - ], - [ - "great talk, take it easy", - "goodbye" - ], - [ - "see ya", - "goodbye" - ], - [ - "great chat, talk to you later", - "goodbye" - ], - [ - "nice talk, talk to you later", - "goodbye" - ], - [ - "thanks for chatting, later", - "goodbye" - ], - [ - "goodbye to you", - "goodbye" - ], - [ - "i must say goodbye", - "goodbye" - ], - [ - "i'm saying goodbye now", - "goodbye" - ], - [ - "it is time to say goodbye", - "goodbye" - ], - [ - "i have to say goodbye", - "goodbye" - ], - [ - "cya later", - "goodbye" - ], - [ - "i enjoyed talking to you", - "goodbye" - ], - [ - "thanks for talking", - "goodbye" - ], - [ - "it was good chatting", - "goodbye" - ], - [ - "it was nice chatting with you", - "goodbye" - ], - [ - "always nice to talk to you", - "goodbye" - ], - [ - "see you later, alligator", - "goodbye" - ], - [ - "good night", - "goodbye" - ], - [ - "it was nice to get in touch", - "goodbye" - ], - [ - "see you soon", - "goodbye" - ], - [ - "later gator!", - "goodbye" - ], - [ - "it was nice to talk it out with you", - "goodbye" - ], - [ - "it was nice to converse with you", - "goodbye" - ], - [ - "ill see you around", - "goodbye" - ], - [ - "take it easy!", - "goodbye" - ], - [ - "later gater", - "goodbye" - ], - [ - "it was nice to speak with you", - "goodbye" - ], - [ - "see you later alligator", - "goodbye" - ], - [ - "fairwell", - "goodbye" - ], - [ - "have a good one", - "goodbye" - ], - [ - "peace", - "goodbye" - ], - [ - "bye for now", - "goodbye" - ], - [ - "thanks, bye", - "goodbye" - ], - [ - "i have to get going", - "goodbye" - ], - [ - "talk to you later!", - "goodbye" - ], - [ - "i\u2019ll be leaving now", - "goodbye" - ], - [ - "i\u2019m leaving-goodbye!", - "goodbye" - ], - [ - "thanks for talking to me", - "goodbye" - ], - [ - "it was really nice to be able to chat with you", - "goodbye" - ], - [ - "it was good to talk to you today", - "goodbye" - ], - [ - "it was great to have this conversation with you", - "goodbye" - ], - [ - "it was nice to catch up with you", - "goodbye" - ], - [ - "it was enjoyable talking with you", - "goodbye" - ], - [ - "it was great chatting with you", - "goodbye" - ], - [ - "it was cool talking with you", - "goodbye" - ], - [ - "it was pleasant conversing with you", - "goodbye" - ], - [ - "good bye my friend", - "goodbye" - ], - [ - "i need to go now", - "goodbye" - ], - [ - "see you again soon", - "goodbye" - ], - [ - "i've got to run now", - "goodbye" - ], - [ - "goodbye!", - "goodbye" - ], - [ - "i had fun speaking with you", - "goodbye" - ], - [ - "bye!", - "goodbye" - ], - [ - "later!", - "goodbye" - ], - [ - "adios!", - "goodbye" - ], - [ - "until next time!", - "goodbye" - ], - [ - "farewell!", - "goodbye" - ], - [ - "it was enjoyable to chat with you", - "goodbye" - ], - [ - "i'm outta here!", - "goodbye" - ], - [ - "it was pleasant having a conversation with you", - "goodbye" - ], - [ - "bye now", - "goodbye" - ], - [ - "buhbye", - "goodbye" - ], - [ - "see you in a while", - "goodbye" - ], - [ - "see you around", - "goodbye" - ], - [ - "nice to see you again", - "goodbye" - ], - [ - "nice to see you", - "goodbye" - ], - [ - "talk later", - "goodbye" - ], - [ - "tootles", - "goodbye" - ], - [ - "peace out", - "goodbye" - ], - [ - "goodbye for now ai", - "goodbye" - ], - [ - "ai goodbye", - "goodbye" - ], - [ - "i'll talk to you later ai", - "goodbye" - ], - [ - "we'll talk later ai", - "goodbye" - ], - [ - "i have to go ai goodbye", - "goodbye" - ], - [ - "bye bye!", - "goodbye" - ], - [ - "see you later!", - "goodbye" - ], - [ - "why is there a hold on my american saving bank account", - "account_blocked" - ], - [ - "i am nost sure why my account is blocked", - "account_blocked" - ], - [ - "why is there a hold on my capital one checking account", - "account_blocked" - ], - [ - "i think my account is blocked but i do not know the reason", - "account_blocked" - ], - [ - "can you tell me why is my bank account frozen", - "account_blocked" - ], - [ - "why is there a hold on my edward jones account", - "account_blocked" - ], - [ - "why am i locked out of my bank account", - "account_blocked" - ], - [ - "why in the world am i locked out of my bank account", - "account_blocked" - ], - [ - "what is the reason for frozen status on my bank account", - "account_blocked" - ], - [ - "check for why is my bank account frozen", - "account_blocked" - ], - [ - "i don't know the reason my account is blocked", - "account_blocked" - ], - [ - "find out for me why is my bank account frozen", - "account_blocked" - ], - [ - "can you find out why is my bank account frozen", - "account_blocked" - ], - [ - "why is there a hold on my discover account", - "account_blocked" - ], - [ - "tell me why am i locked out of my bank account", - "account_blocked" - ], - [ - "what is the reason i am locked out of my bank account", - "account_blocked" - ], - [ - "why is my account blocked", - "account_blocked" - ], - [ - "find out the reason why am i locked out of my bank account", - "account_blocked" - ], - [ - "i think my account is block but i am not sure why", - "account_blocked" - ], - [ - "why is there a hold on my charles swab account", - "account_blocked" - ], - [ - "my chase account has a hold why", - "account_blocked" - ], - [ - "what's the reason for a hold on my wells fargo account", - "account_blocked" - ], - [ - "can you find the reason for the block on my account", - "account_blocked" - ], - [ - "there's a hold on my chase account, but why", - "account_blocked" - ], - [ - "tell me the reason there is a hold or block on my account", - "account_blocked" - ], - [ - "why does my credit union account have a hold on it", - "account_blocked" - ], - [ - "figure out why there is a block on my account please", - "account_blocked" - ], - [ - "why am i seeing a hold on my boa account", - "account_blocked" - ], - [ - "my account has been blocked, but i have no idea why", - "account_blocked" - ], - [ - "why is there a block on my account", - "account_blocked" - ], - [ - "can you please unlock my bank account", - "account_blocked" - ], - [ - "please let me into my bank account", - "account_blocked" - ], - [ - "why cannot i take any money out from my bank account", - "account_blocked" - ], - [ - "what was the reason my bank account was frozen", - "account_blocked" - ], - [ - "who froze my bank account", - "account_blocked" - ], - [ - "who can i talk to right away about the current freeze on my account", - "account_blocked" - ], - [ - "my checking account has a hold on it and i need to know why", - "account_blocked" - ], - [ - "why is my bank account stopping all transactions from going through", - "account_blocked" - ], - [ - "i need to know why my bank account is blocking all of activity", - "account_blocked" - ], - [ - "can you find out what triggered a hold on my bank account", - "account_blocked" - ], - [ - "can i talk to someone about why there is a hold on my checking account", - "account_blocked" - ], - [ - "what caused a freeze to be put on my bank account", - "account_blocked" - ], - [ - "my account has a hold on it and i can't access my funds, why", - "account_blocked" - ], - [ - "is there a reason that my bank account has a freeze on it", - "account_blocked" - ], - [ - "what would cause my bank account to be frozen", - "account_blocked" - ], - [ - "do you know why i can't log into my bank account", - "account_blocked" - ], - [ - "why can't i get into my account", - "account_blocked" - ], - [ - "did i do something to get my bank account frozen", - "account_blocked" - ], - [ - "was my bank account frozen for a specific reason", - "account_blocked" - ], - [ - "why are the funds in my bank account frozen", - "account_blocked" - ], - [ - "what would cause me to be locked out of my bank account", - "account_blocked" - ], - [ - "why am i unable to access my bank account", - "account_blocked" - ], - [ - "why is my bank account frozen", - "account_blocked" - ], - [ - "why would i have been locked out of my own account", - "account_blocked" - ], - [ - "can you explain to me why my bank account might be frozen", - "account_blocked" - ], - [ - "i am very confused about why or how my bank would lock me out of my account", - "account_blocked" - ], - [ - "why would the bank have frozen my account", - "account_blocked" - ], - [ - "do you know why the bank put a hold on my joint checking account", - "account_blocked" - ], - [ - "i don't understand why there is a hold on my retirement fund account", - "account_blocked" - ], - [ - "can you explain why there is a hold on my savings account", - "account_blocked" - ], - [ - "what's the deal with my bank account being locked", - "account_blocked" - ], - [ - "what reason could the bank have had for blocking my account", - "account_blocked" - ], - [ - "why would a hold have been placed on my checking account", - "account_blocked" - ], - [ - "why on earth would a block have been placed on my account", - "account_blocked" - ], - [ - "i'm confused about the reason for my bank account being frozen", - "account_blocked" - ], - [ - "i don't understand why i have been barred from accessing my own account", - "account_blocked" - ], - [ - "i don't understand why my bank account is frozen right now", - "account_blocked" - ], - [ - "how come i am being denied access to my bank account", - "account_blocked" - ], - [ - "do you know why my account appears to be blocked", - "account_blocked" - ], - [ - "i am confused because my account seems to have been blocked for no reason", - "account_blocked" - ], - [ - "i am very confused about the block that seems to have been placed on my account why is it there", - "account_blocked" - ], - [ - "how is it possible that my account has been frozen", - "account_blocked" - ], - [ - "how come a hold was placed on my 401k account", - "account_blocked" - ], - [ - "could you please tell me, my wells fargo account, is there a hold and why", - "account_blocked" - ], - [ - "i am unable to complete my order, why could there be a hold on my wells fargo account", - "account_blocked" - ], - [ - "was a hold placed on my wells fargo account, and if so why", - "account_blocked" - ], - [ - "in regards to my wells fargo account, why is there a hold", - "account_blocked" - ], - [ - "why was a hold placed on my wells fargo account", - "account_blocked" - ], - [ - "call my bank customer service number", - "account_blocked" - ], - [ - "why is my account locked", - "account_blocked" - ], - [ - "what's with the block on my bank account", - "account_blocked" - ], - [ - "why did my bank account freeze", - "account_blocked" - ], - [ - "why'd they put a freeze on my bank account", - "account_blocked" - ], - [ - "why is my bank account blocking me", - "account_blocked" - ], - [ - "why can't i access my bank account", - "account_blocked" - ], - [ - "i think my account is blocked", - "account_blocked" - ], - [ - "for what reason is my account blocked", - "account_blocked" - ], - [ - "can you tell me why there's a hold on my mutualone account", - "account_blocked" - ], - [ - "why don't i have access to my bank account", - "account_blocked" - ], - [ - "why isn't it letting me into my bank account", - "account_blocked" - ], - [ - "my capital one account has a hold; why", - "account_blocked" - ], - [ - "why does my visa account have a hold on it", - "account_blocked" - ], - [ - "why am i seeing a hold on my charles schwab account", - "account_blocked" - ], - [ - "tell me about the hold on my chase account", - "account_blocked" - ], - [ - "can you tell me why my bank account is frozen", - "account_blocked" - ], - [ - "do you know why my account is blocked", - "account_blocked" - ], - [ - "help, my account is blocked", - "account_blocked" - ], - [ - "help me please, my account is blocked", - "account_blocked" - ], - [ - "help me unblock my account", - "account_blocked" - ], - [ - "my account is blocked, help me figure out why", - "account_blocked" - ], - [ - "which song is playing", - "what_song" - ], - [ - "what's this song called", - "what_song" - ], - [ - "what song is this", - "what_song" - ], - [ - "what's the name of this song", - "what_song" - ], - [ - "what is this song", - "what_song" - ], - [ - "can you tell me what song this is", - "what_song" - ], - [ - "which song is this", - "what_song" - ], - [ - "can you look up the name of this song", - "what_song" - ], - [ - "i'd like to know what this song is", - "what_song" - ], - [ - "can you tell me the name of this song", - "what_song" - ], - [ - "do you know what this song is", - "what_song" - ], - [ - "what's song am i hearing", - "what_song" - ], - [ - "tell me the song title", - "what_song" - ], - [ - "what's the title of this track", - "what_song" - ], - [ - "what song am i listening to", - "what_song" - ], - [ - "who sings this song", - "what_song" - ], - [ - "what's the name of what's playing on my speakers", - "what_song" - ], - [ - "what's this track", - "what_song" - ], - [ - "what's playing right now", - "what_song" - ], - [ - "what's the title of this", - "what_song" - ], - [ - "what's the name of this tune", - "what_song" - ], - [ - "what's the name of this release", - "what_song" - ], - [ - "what's the title of this tune", - "what_song" - ], - [ - "what track am i listening to", - "what_song" - ], - [ - "what's this jam called", - "what_song" - ], - [ - "what's this song", - "what_song" - ], - [ - "can you name the song on the speakers", - "what_song" - ], - [ - "who is this song that's on the stereo", - "what_song" - ], - [ - "can you give me the name of this tune", - "what_song" - ], - [ - "tell me what song this is", - "what_song" - ], - [ - "tell me the name of the song that is playing", - "what_song" - ], - [ - "tell me the name of this song", - "what_song" - ], - [ - "let me know what song is playing", - "what_song" - ], - [ - "help me to know what song is playing", - "what_song" - ], - [ - "i want to know what song is playing", - "what_song" - ], - [ - "i am wanting to know what song this is", - "what_song" - ], - [ - "i am needing to know what song is playing", - "what_song" - ], - [ - "could you let me know what song this is", - "what_song" - ], - [ - "i need to know what song this is", - "what_song" - ], - [ - "what is that song that's playing", - "what_song" - ], - [ - "what is the name of the song that's playing on the radio right now", - "what_song" - ], - [ - "what's the name of the song you're playing", - "what_song" - ], - [ - "what music is playing on the the bluetooth now", - "what_song" - ], - [ - "which song is playing now", - "what_song" - ], - [ - "can you tell me this song", - "what_song" - ], - [ - "name this song, please", - "what_song" - ], - [ - "what's the song currently playing", - "what_song" - ], - [ - "what's the name of the current song", - "what_song" - ], - [ - "what song is playing", - "what_song" - ], - [ - "what band is this", - "what_song" - ], - [ - "i like this song who is it by", - "what_song" - ], - [ - "what is the title of this track", - "what_song" - ], - [ - "tell me the artist currently playing", - "what_song" - ], - [ - "what's the artist's name of this song", - "what_song" - ], - [ - "what is the track title of the song playing", - "what_song" - ], - [ - "name the singer of this track", - "what_song" - ], - [ - "who sang this song", - "what_song" - ], - [ - "who plays this song", - "what_song" - ], - [ - "what's the now playing song that we are listening to", - "what_song" - ], - [ - "what's the current song that we are listening at this time", - "what_song" - ], - [ - "what's the name of the song that we are listening to", - "what_song" - ], - [ - "what's the song that we are listening at this moment", - "what_song" - ], - [ - "what's the song they are playing for us right now", - "what_song" - ], - [ - "what's the name of this song i'm listening to", - "what_song" - ], - [ - "what am i listening to", - "what_song" - ], - [ - "what is the current song", - "what_song" - ], - [ - "can you tell me what song i'm hearing", - "what_song" - ], - [ - "what am i hearing on the speakers now", - "what_song" - ], - [ - "what's this song playing", - "what_song" - ], - [ - "whats the name of the playing song", - "what_song" - ], - [ - "tell me this songs name", - "what_song" - ], - [ - "i need to know this song's name", - "what_song" - ], - [ - "i want to know the name of the song that's playing", - "what_song" - ], - [ - "can you tell me the mane of the song playing", - "what_song" - ], - [ - "i'd like to know this song's name", - "what_song" - ], - [ - "can you get me the name of this song", - "what_song" - ], - [ - "find out what this song is", - "what_song" - ], - [ - "i would like to know this song's title", - "what_song" - ], - [ - "i need to know what this song is called", - "what_song" - ], - [ - "tell me the title of this song", - "what_song" - ], - [ - "tell me this song's name", - "what_song" - ], - [ - "what is the song that's playing", - "what_song" - ], - [ - "tell me the song that's playing right now", - "what_song" - ], - [ - "do you know the name of this song", - "what_song" - ], - [ - "do you know what song this is", - "what_song" - ], - [ - "what is the name of this song", - "what_song" - ], - [ - "can you tell me the song we are listening to", - "what_song" - ], - [ - "which song are we listening to", - "what_song" - ], - [ - "what is the song that is currently playing", - "what_song" - ], - [ - "can you tell me what this song is", - "what_song" - ], - [ - "whats the name of this song", - "what_song" - ], - [ - "what is the title of this tune", - "what_song" - ], - [ - "what tune is this", - "what_song" - ], - [ - "what is that noise", - "what_song" - ], - [ - "what is playing", - "what_song" - ], - [ - "whats the title of this", - "what_song" - ], - [ - "whats the title of this song", - "what_song" - ], - [ - "the song on speaker is what like", - "what_song" - ], - [ - "the song on speaker is what", - "what_song" - ], - [ - "what is the song on speaker", - "what_song" - ], - [ - "are there any transaction fees associated with my chase card if i am in tokyo", - "international_fees" - ], - [ - "does my usaa card have international transaction fees", - "international_fees" - ], - [ - "does my bank of the west card have international transaction fees", - "international_fees" - ], - [ - "are there any transaction fees associated with my usaa card if i am in india", - "international_fees" - ], - [ - "does my navy federal card have international transaction fees", - "international_fees" - ], - [ - "does my chase card have international transaction fees", - "international_fees" - ], - [ - "are there any transaction fees associated with my navy federal card if i am in germany", - "international_fees" - ], - [ - "are there any transaction fees associated with my usaa card if i am in south korea", - "international_fees" - ], - [ - "does my bank of america card have international transaction fees", - "international_fees" - ], - [ - "are there any transaction fees associated with my navy federal card if i am in japan", - "international_fees" - ], - [ - "what are the fees for using my card in toronto", - "international_fees" - ], - [ - "do i incur extra fees if i use my card in london", - "international_fees" - ], - [ - "do travelers to egypt get hit with transaction fees if they're using a mastercard", - "international_fees" - ], - [ - "do i have to pay amex transaction fees in brazil", - "international_fees" - ], - [ - "if i use my card in denver will i get charged extra", - "international_fees" - ], - [ - "are there fees for using my card in tampa", - "international_fees" - ], - [ - "will my discover card ding me with transaction fees if i'm in aruba", - "international_fees" - ], - [ - "does bank of america charge transaction fees if you use it in canada", - "international_fees" - ], - [ - "will i pay extra if i use my card in juarez", - "international_fees" - ], - [ - "are there transaction fees for my visa if i'm in russia", - "international_fees" - ], - [ - "what is the surcharge for using my card in italy while i visit", - "international_fees" - ], - [ - "for my card is there a extra card while i'm staying in italy", - "international_fees" - ], - [ - "is there a surcharge for using my card in italy while i'm there", - "international_fees" - ], - [ - "will i get charged extra if i use my card while in italy", - "international_fees" - ], - [ - "how much is the charge of using my card in italy during my stay there", - "international_fees" - ], - [ - "what are the international transaction fees on my amex", - "international_fees" - ], - [ - "give me a list of international transaction fees for my amex", - "international_fees" - ], - [ - "what kind of international transaction fees are related to my amex", - "international_fees" - ], - [ - "will my amex institute international transaction fees on a charge", - "international_fees" - ], - [ - "can i see all the international transaction fees on my amex", - "international_fees" - ], - [ - "what are the fees to use my card in nigeria", - "international_fees" - ], - [ - "what are the foreign transaction fees for cuba", - "international_fees" - ], - [ - "what additional fees do you charge if i use my card in lisbon", - "international_fees" - ], - [ - "how much are the foreign transaction fees in brisbane", - "international_fees" - ], - [ - "what fees are charged if i use something in paris", - "international_fees" - ], - [ - "does visa charge transaction fees in the uk", - "international_fees" - ], - [ - "i need to know if there are transaction fees for my visa card in canada", - "international_fees" - ], - [ - "does american express charge transaction fees for iceland", - "international_fees" - ], - [ - "are there transaction fees charged to my discover card in japan", - "international_fees" - ], - [ - "are transaction fees charged for my aaa card in canada", - "international_fees" - ], - [ - "when i am in spain using my cmaden card, is there any transaction fee", - "international_fees" - ], - [ - "what are the transaction fee using our card in florence if any", - "international_fees" - ], - [ - "tell me if there is any transaction fee using royal card in europe", - "international_fees" - ], - [ - "are there any transaction fee if i use my boston private card in scotland", - "international_fees" - ], - [ - "i want to know if there is any transaction fee using washington federal card when i am in canada", - "international_fees" - ], - [ - "how much is the atm fee for my boa card in orlando, fl", - "international_fees" - ], - [ - "what's the transaction fee for my boa card in orlando, fl", - "international_fees" - ], - [ - "if i use my card in mexico, will there be added fees", - "international_fees" - ], - [ - "are there extra charges for using my card in mexico", - "international_fees" - ], - [ - "what, if any, are the charges for using my card in mexico", - "international_fees" - ], - [ - "is there a surcharge for using my card in mexico", - "international_fees" - ], - [ - "are there extra fees for using my card in mexico", - "international_fees" - ], - [ - "are there international transaction fees for using my chase card", - "international_fees" - ], - [ - "do i have to pay international transaction fees when i use my chase card", - "international_fees" - ], - [ - "what are my chase cards fees for international transactions", - "international_fees" - ], - [ - "how much are the international transaction fees for my chase card", - "international_fees" - ], - [ - "what are the international transaction fees for my chase card", - "international_fees" - ], - [ - "will i be charged if i use the card in germany", - "international_fees" - ], - [ - "will i be charged if i use the card in italy", - "international_fees" - ], - [ - "will i be charged if i use the card in france", - "international_fees" - ], - [ - "will i be charged if i use the card in australia", - "international_fees" - ], - [ - "will i be charged if i use the card in paris", - "international_fees" - ], - [ - "does my card charge if i use it in china", - "international_fees" - ], - [ - "is there a fee associated with use of my card in burkina faso", - "international_fees" - ], - [ - "is there a charge to use my card in japan", - "international_fees" - ], - [ - "if i use my card in tahiti, will i be charged", - "international_fees" - ], - [ - "does my card charge a fee for use in indonesia", - "international_fees" - ], - [ - "is there any transaction fees on my citibank card if used in spain", - "international_fees" - ], - [ - "how much can i expect in transaction fees for using my visa in portugal", - "international_fees" - ], - [ - "can you tell me if i will have any transactions fees for using my discover card in turkey", - "international_fees" - ], - [ - "i would like to know if there are any fees for using my capital one card in london, england", - "international_fees" - ], - [ - "are there any fees for using my amex in england", - "international_fees" - ], - [ - "are there any international transaction fees associated with my visa card", - "international_fees" - ], - [ - "does my amex card use international transaction fees", - "international_fees" - ], - [ - "will i receive a fee if i use my card in ireland", - "international_fees" - ], - [ - "if i use my card in mexico do i get an extra fee", - "international_fees" - ], - [ - "will i be charged extra for using my card in spain", - "international_fees" - ], - [ - "is there an extra fee for using my card in costa rica", - "international_fees" - ], - [ - "will my mastercard charge me a fee for international transactions", - "international_fees" - ], - [ - "will i get a fee for international transactions with my visa card", - "international_fees" - ], - [ - "do i get charged more for using my card in canada", - "international_fees" - ], - [ - "does my mastercard charge international transaction fees", - "international_fees" - ], - [ - "how much do you charge if i use my card in japan", - "international_fees" - ], - [ - "will i be charged for using my card in japan", - "international_fees" - ], - [ - "do i need to pay any fee if i use my card in japan", - "international_fees" - ], - [ - "do you charge me if i use my card in japan", - "international_fees" - ], - [ - "will you charge me if i use my card in japan", - "international_fees" - ], - [ - "show me the international transactions fees for the zenith card", - "international_fees" - ], - [ - "what are the international transactions fees for my industrial bank card", - "international_fees" - ], - [ - "are there many international transactions fees for the freedom card", - "international_fees" - ], - [ - "are there international transactions fees for rainbow card", - "international_fees" - ], - [ - "does the national card have international transactions fees and how much", - "international_fees" - ], - [ - "will i be charged if i use my card in dublin", - "international_fees" - ], - [ - "will i be charged if i use my card in detroit", - "international_fees" - ], - [ - "are there any transaction fees associated with my amex card if i am in the uk", - "international_fees" - ], - [ - "will i be charged if i use my card in mexico", - "international_fees" - ], - [ - "will i be charged if i use my card in canada", - "international_fees" - ], - [ - "will i be charged if i use my card in france", - "international_fees" - ], - [ - "are there any transaction fees associated with my amex card if i am in france", - "international_fees" - ], - [ - "are there any transaction fees associated with my amex card if i am in belgium", - "international_fees" - ], - [ - "tell me when my car last had its oil changed", - "last_maintenance" - ], - [ - "when did i last do maintenance on my car", - "last_maintenance" - ], - [ - "when did i last take my car in for maintenance", - "last_maintenance" - ], - [ - "can you find the date of my last oil change", - "last_maintenance" - ], - [ - "when did i last bring my car in to have it looked at", - "last_maintenance" - ], - [ - "find the date of the last oil swap for my car", - "last_maintenance" - ], - [ - "what was the date when i last had my car inspected", - "last_maintenance" - ], - [ - "how long's it been since my car was at autozone", - "last_maintenance" - ], - [ - "what's the amount of time since having my car given a once over by a mechanic", - "last_maintenance" - ], - [ - "when did i last have my vehicle checked on", - "last_maintenance" - ], - [ - "when did i last bring my car in to get looked over", - "last_maintenance" - ], - [ - "what date did i last take my car in", - "last_maintenance" - ], - [ - "how long's it been since i had my car serviced", - "last_maintenance" - ], - [ - "when was the last time i changed my oil", - "last_maintenance" - ], - [ - "when did i last have a mechanic check out my car", - "last_maintenance" - ], - [ - "when did i last service my car with an oil change", - "last_maintenance" - ], - [ - "what was the last time i had my car at the dealer for repairs", - "last_maintenance" - ], - [ - "when did i last have my car fixed", - "last_maintenance" - ], - [ - "what day did i last have a technician check out my vehicle", - "last_maintenance" - ], - [ - "when did i last have my vehicle serviced", - "last_maintenance" - ], - [ - "my car was looked at when", - "last_maintenance" - ], - [ - "let me know when my car was last looked at", - "last_maintenance" - ], - [ - "when did my car get looked at last", - "last_maintenance" - ], - [ - "tell me when someone looked at my car last", - "last_maintenance" - ], - [ - "what date did i have my oil changed last", - "last_maintenance" - ], - [ - "what day did i change my oil", - "last_maintenance" - ], - [ - "do you remember when i last changed my oil", - "last_maintenance" - ], - [ - "was my last oil change on wednesday", - "last_maintenance" - ], - [ - "when was the last time i had an oil change", - "last_maintenance" - ], - [ - "how long ago was my car last in the shop", - "last_maintenance" - ], - [ - "when was the last time i got my oil changed", - "last_maintenance" - ], - [ - "do you have a date for the last time the car was in the shop", - "last_maintenance" - ], - [ - "what date was my car last at the mechanics", - "last_maintenance" - ], - [ - "how long has it been since my oil was changed", - "last_maintenance" - ], - [ - "how long has it been since my car was in the shop", - "last_maintenance" - ], - [ - "when did i get my last oil change", - "last_maintenance" - ], - [ - "what date was my oil last changed", - "last_maintenance" - ], - [ - "do you remember my last oil change", - "last_maintenance" - ], - [ - "when was my car in the shop last", - "last_maintenance" - ], - [ - "when did i last have car maintenance", - "last_maintenance" - ], - [ - "when was my last maintenance on my car in the shop", - "last_maintenance" - ], - [ - "when was my car last repaired", - "last_maintenance" - ], - [ - "when did my oil last get changed", - "last_maintenance" - ], - [ - "when were my tires changed", - "last_maintenance" - ], - [ - "when was my car last worked on", - "last_maintenance" - ], - [ - "i can't remember when my car last went to the shop, can you find out for me", - "last_maintenance" - ], - [ - "find out when my most recent oil change occurred", - "last_maintenance" - ], - [ - "check to see when my car was last in the shop", - "last_maintenance" - ], - [ - "when was my most recent oil change", - "last_maintenance" - ], - [ - "i need to know the date of my car's last visit to the shop please", - "last_maintenance" - ], - [ - "look up the date of my car's most recent visit to the shop", - "last_maintenance" - ], - [ - "i need to know when i last took my car in for a check up", - "last_maintenance" - ], - [ - "please tell me when the last time was that my car was in the shop", - "last_maintenance" - ], - [ - "look up the date of my last oil change", - "last_maintenance" - ], - [ - "i need you to look up the date of my car's last visit to the shop", - "last_maintenance" - ], - [ - "find out the last time i had my car checked", - "last_maintenance" - ], - [ - "do you know when my car was last looked at", - "last_maintenance" - ], - [ - "do you know when i last took my car in to the shop", - "last_maintenance" - ], - [ - "i can't remember when my car was last serviced, can you find out for me", - "last_maintenance" - ], - [ - "find out how long it has been since my car was last in the shop", - "last_maintenance" - ], - [ - "please tell me the last time i took my car to the shop", - "last_maintenance" - ], - [ - "how long has it been since my car was last looked at", - "last_maintenance" - ], - [ - "tell me the date of my last car check up", - "last_maintenance" - ], - [ - "i need to know when my oil was last changed", - "last_maintenance" - ], - [ - "dates for my car in the shop", - "last_maintenance" - ], - [ - "last time car was in shop", - "last_maintenance" - ], - [ - "last incident of my car in the shop", - "last_maintenance" - ], - [ - "when was my car in the shop", - "last_maintenance" - ], - [ - "when did my car get serviced last", - "last_maintenance" - ], - [ - "how long has it been since my car was looked at", - "last_maintenance" - ], - [ - "how long ago did my car get looked at", - "last_maintenance" - ], - [ - "what was the date of my last auto appointment", - "last_maintenance" - ], - [ - "when was my last car service date", - "last_maintenance" - ], - [ - "when did i take to car to the auto shop", - "last_maintenance" - ], - [ - "when did i have my car looked at", - "last_maintenance" - ], - [ - "when did i last get my car tuned up", - "last_maintenance" - ], - [ - "when did i go to the mechanic", - "last_maintenance" - ], - [ - "when did i take my car to the mechanic", - "last_maintenance" - ], - [ - "do you know how long its been since i had my oil changed and a tune up", - "last_maintenance" - ], - [ - "when did last go to the auto repair shop", - "last_maintenance" - ], - [ - "i need to know when was the last time i had my car checked out for a tune up", - "last_maintenance" - ], - [ - "tell me the last time i had my car checked out at sam's repair shop", - "last_maintenance" - ], - [ - "when did i take my car to paul's auto last", - "last_maintenance" - ], - [ - "when was the last time my car was in the shop", - "last_maintenance" - ], - [ - "tell me when was car in shop", - "last_maintenance" - ], - [ - "so when was car in shop", - "last_maintenance" - ], - [ - "when was the car in the shop", - "last_maintenance" - ], - [ - "you need to tell me when was car in shop", - "last_maintenance" - ], - [ - "i need to know when i last carried my car to the shop", - "last_maintenance" - ], - [ - "what's the date on which my last oil change occurred", - "last_maintenance" - ], - [ - "what is the last date of service on my car", - "last_maintenance" - ], - [ - "can you remind me of when i last had an oil change", - "last_maintenance" - ], - [ - "please find the date of my last oil change", - "last_maintenance" - ], - [ - "search and tell me when my most recent oil change happened, please", - "last_maintenance" - ], - [ - "when did i most recently have my car in the shop", - "last_maintenance" - ], - [ - "i last took my car to the shop, when", - "last_maintenance" - ], - [ - "i need to know when it was that i last took my car to have the oil changed", - "last_maintenance" - ], - [ - "how long has it been since my car was last in the shop", - "last_maintenance" - ], - [ - "check my calendar for the date that my care was last serviced", - "last_maintenance" - ], - [ - "how long has it been since my last auto maintenance", - "last_maintenance" - ], - [ - "when is today's meeting with john", - "meeting_schedule" - ], - [ - "when is my meeting with dan scheduled for", - "meeting_schedule" - ], - [ - "when is the meeting with homer scheduled for", - "meeting_schedule" - ], - [ - "do i have any meetings with stan today", - "meeting_schedule" - ], - [ - "how many meetings do i have scheduled between 10 and 3", - "meeting_schedule" - ], - [ - "on what day is my meeting with dr lee", - "meeting_schedule" - ], - [ - "tell me how many meetings with pete i have for today", - "meeting_schedule" - ], - [ - "about how many meetings am i attending between 12 and 3 today", - "meeting_schedule" - ], - [ - "how many total meetings will i have between 2 and 5", - "meeting_schedule" - ], - [ - "can you tell me what time i am meeting with sarah today", - "meeting_schedule" - ], - [ - "when is that meeting with kara", - "meeting_schedule" - ], - [ - "do i have meetings from 1 to 4 today", - "meeting_schedule" - ], - [ - "do i have many meetings today between 2 and 4", - "meeting_schedule" - ], - [ - "what time is my meeting with steve", - "meeting_schedule" - ], - [ - "for today only, how many meetings are with jake", - "meeting_schedule" - ], - [ - "do i have any meetings with mark today", - "meeting_schedule" - ], - [ - "when is my meeting with bob", - "meeting_schedule" - ], - [ - "tell me when my meeting is scheduled with roger", - "meeting_schedule" - ], - [ - "when am i gonna be meeting roger", - "meeting_schedule" - ], - [ - "do i have any meetings today between 5 and 6", - "meeting_schedule" - ], - [ - "do i have any meetings today between 2 and 3", - "meeting_schedule" - ], - [ - "do i have any meetings with ben today", - "meeting_schedule" - ], - [ - "do i have any meetings with roger today", - "meeting_schedule" - ], - [ - "do i have any meetings today between 8 and 9", - "meeting_schedule" - ], - [ - "when is my meeting with roger", - "meeting_schedule" - ], - [ - "i wanna know when my meeting is with dan", - "meeting_schedule" - ], - [ - "do i have any meetings with michael today", - "meeting_schedule" - ], - [ - "do i have any meetings with dave today", - "meeting_schedule" - ], - [ - "do i have any meetings today between 4 and 5", - "meeting_schedule" - ], - [ - "do i have any meetings today between 6 and 7", - "meeting_schedule" - ], - [ - "tell me the meeting schedule for the day", - "meeting_schedule" - ], - [ - "what is the meeting schedule today", - "meeting_schedule" - ], - [ - "tell me the meeting schdule please", - "meeting_schedule" - ], - [ - "what is my meeting schedule today", - "meeting_schedule" - ], - [ - "what is my meeting schedule like for the day", - "meeting_schedule" - ], - [ - "share my meeting schedule with me", - "meeting_schedule" - ], - [ - "do i have meetings scheduled today", - "meeting_schedule" - ], - [ - "what kind of meetings do i have today", - "meeting_schedule" - ], - [ - "what meetings do i have scheduled today", - "meeting_schedule" - ], - [ - "go over my meeting schedule with me please", - "meeting_schedule" - ], - [ - "do i have to be at any meetings today", - "meeting_schedule" - ], - [ - "any meetings on the schedule today", - "meeting_schedule" - ], - [ - "what meetings are on my schedule today", - "meeting_schedule" - ], - [ - "meetings today", - "meeting_schedule" - ], - [ - "what meetings are scheduled for today", - "meeting_schedule" - ], - [ - "does today's schedule include any meetings", - "meeting_schedule" - ], - [ - "are there any meetings on the calendar for today", - "meeting_schedule" - ], - [ - "do i have any meeting to go to today", - "meeting_schedule" - ], - [ - "what meetings do i have today", - "meeting_schedule" - ], - [ - "what meetings are on my calendar", - "meeting_schedule" - ], - [ - "when do i have meetings today", - "meeting_schedule" - ], - [ - "what's on my meeting schedule today", - "meeting_schedule" - ], - [ - "what times are my meetings", - "meeting_schedule" - ], - [ - "what are my meetings today", - "meeting_schedule" - ], - [ - "which meetings do i have today", - "meeting_schedule" - ], - [ - "are there any meetings i have today", - "meeting_schedule" - ], - [ - "bring up any mettings for today", - "meeting_schedule" - ], - [ - "when are my meetings today between noon and one", - "meeting_schedule" - ], - [ - "am i scheduled for any meetings between noon and one", - "meeting_schedule" - ], - [ - "how many meetings do i have today between noon and one", - "meeting_schedule" - ], - [ - "what meetings do i have today between noon and one", - "meeting_schedule" - ], - [ - "are there meetings schedules today between noon and one", - "meeting_schedule" - ], - [ - "do i have any meetings planned for today", - "meeting_schedule" - ], - [ - "are any meetings scheduled for today", - "meeting_schedule" - ], - [ - "do i have any meetings scheduled for today", - "meeting_schedule" - ], - [ - "are any meetings booked for today", - "meeting_schedule" - ], - [ - "what time i have to meet mr accountant", - "meeting_schedule" - ], - [ - "is mr ceo waiting me now", - "meeting_schedule" - ], - [ - "do i have to meet the dev squad to day", - "meeting_schedule" - ], - [ - "give me a run down of my meeting schedules for the day", - "meeting_schedule" - ], - [ - "let me know every meeting i have scheduled today", - "meeting_schedule" - ], - [ - "do you know if i have any meetings set up with travis today", - "meeting_schedule" - ], - [ - "do you see any meetings with john on my schedule today", - "meeting_schedule" - ], - [ - "check to see if i have any meetings with peter today", - "meeting_schedule" - ], - [ - "am i scheduled to meet with heather today", - "meeting_schedule" - ], - [ - "what meetings do i have on my agenda today", - "meeting_schedule" - ], - [ - "have i got any meetings today with sara", - "meeting_schedule" - ], - [ - "tell me what my day looks like today in terms of meetings", - "meeting_schedule" - ], - [ - "what scheduled meetings do i have today", - "meeting_schedule" - ], - [ - "are there any meetings on my calendar today", - "meeting_schedule" - ], - [ - "am i scheduled for any gatherings today", - "meeting_schedule" - ], - [ - "is the gang getting together this afternoon", - "meeting_schedule" - ], - [ - "do i have any meetings coming up today", - "meeting_schedule" - ], - [ - "please list my meetings for today", - "meeting_schedule" - ], - [ - "i need to know if i have any meetings scheduled for today", - "meeting_schedule" - ], - [ - "please list my meetings for today from 8:00 am to 2:00 pm", - "meeting_schedule" - ], - [ - "did i schedule any meetings for today", - "meeting_schedule" - ], - [ - "tell me my scheduled meetings for today only, please", - "meeting_schedule" - ], - [ - "let me hear all meetings for today", - "meeting_schedule" - ], - [ - "do i have any meetings scheduled between 3 and 5 pm today", - "meeting_schedule" - ], - [ - "what meetings are on my schedule today between 1:00 pm and 4:00 pm", - "meeting_schedule" - ], - [ - "are there any meetings for today on my calendar", - "meeting_schedule" - ], - [ - "tell me today's scheduled conferences from noon on wards", - "meeting_schedule" - ], - [ - "is a meeting with ruth on my schedule today", - "meeting_schedule" - ], - [ - "what do i have going on between 9 and 10", - "meeting_schedule" - ], - [ - "do i meet with joan today", - "meeting_schedule" - ], - [ - "when's my meeting with richard", - "meeting_schedule" - ], - [ - "what meetings do i have today from 3 to 4", - "meeting_schedule" - ], - [ - "when is my meeting with john", - "meeting_schedule" - ], - [ - "what is on my schedule between 10:00 am and 11:00 am", - "meeting_schedule" - ], - [ - "what do you put in chicken noodle casserole", - "ingredients_list" - ], - [ - "what goes into chicken noodle casserole", - "ingredients_list" - ], - [ - "what do i need to make chicken noodle casserole", - "ingredients_list" - ], - [ - "how do you make chicken noodle casserole", - "ingredients_list" - ], - [ - "chicken noodle casserole is made from what", - "ingredients_list" - ], - [ - "tell me what ingredients i will need to make this meal", - "ingredients_list" - ], - [ - "what are the ingredients of spaghetti", - "ingredients_list" - ], - [ - "what ingredients are present in marshmallows", - "ingredients_list" - ], - [ - "tell me the ingredients in pizza", - "ingredients_list" - ], - [ - "what ingredients are found in hunan chicken", - "ingredients_list" - ], - [ - "i need to know the ingredients in a hamburger", - "ingredients_list" - ], - [ - "show me the ingredients that i need for ceviche", - "ingredients_list" - ], - [ - "do you have a list of ingredients that i'll need for blondies", - "ingredients_list" - ], - [ - "give me a list of ingredients needed for pizza dough", - "ingredients_list" - ], - [ - "tell me what ingredients i need for carne asada", - "ingredients_list" - ], - [ - "what ingredients are required for chicken noodle soup", - "ingredients_list" - ], - [ - "what ingredients are in salsa", - "ingredients_list" - ], - [ - "what ingredients are in cheese cake", - "ingredients_list" - ], - [ - "what ingredients are in sugar cookies", - "ingredients_list" - ], - [ - "what ingredients are in spinach dip", - "ingredients_list" - ], - [ - "what ingredients are in coffee cakes", - "ingredients_list" - ], - [ - "what ingredients do i need to make egg salad", - "ingredients_list" - ], - [ - "what would i need if i wanted to make chicken marsala", - "ingredients_list" - ], - [ - "what ingredients are in antipasto salad", - "ingredients_list" - ], - [ - "what do i need to make chicken salad", - "ingredients_list" - ], - [ - "what kind of stuff is in potato salad", - "ingredients_list" - ], - [ - "ingredients needed to make a mexican lasagna", - "ingredients_list" - ], - [ - "what are all of the ingredients for brownies from scratch", - "ingredients_list" - ], - [ - "how can i make my own doughnuts/what ingredients", - "ingredients_list" - ], - [ - "what stuff would i need to make tortellini", - "ingredients_list" - ], - [ - "what do i need to make a cake", - "ingredients_list" - ], - [ - "what all is in gumbo", - "ingredients_list" - ], - [ - "what ingredients do i need for gumbo", - "ingredients_list" - ], - [ - "which ingredients does gumbo have", - "ingredients_list" - ], - [ - "what are the ingredients in gumbo", - "ingredients_list" - ], - [ - "what is gumbo made of", - "ingredients_list" - ], - [ - "what ingredients do i need to bake a cake", - "ingredients_list" - ], - [ - "i want to cook a quick breakfast what ingredients do i need", - "ingredients_list" - ], - [ - "what ingredients are needed for shrimp cocktail", - "ingredients_list" - ], - [ - "i\u2019m making spaghetti what ingredients do i need", - "ingredients_list" - ], - [ - "i want to make a meat stew what ingredients do i need", - "ingredients_list" - ], - [ - "what goes in broccoli cheddar soup", - "ingredients_list" - ], - [ - "show me the recipe for broccoli cheddar soup", - "ingredients_list" - ], - [ - "please list ingredients for broccoli cheddar soup", - "ingredients_list" - ], - [ - "what ingredients do i need to make broccoli cheddar soup", - "ingredients_list" - ], - [ - "i am making broccoli cheddar soup, what ingredients do i need", - "ingredients_list" - ], - [ - "what ingredients do i need for philly cheesesteaks", - "ingredients_list" - ], - [ - "what do i need to cook chicken soup", - "ingredients_list" - ], - [ - "what do i need to get to make lasagne", - "ingredients_list" - ], - [ - "what should i buy to make burritos tonight", - "ingredients_list" - ], - [ - "what ingredients do i need for tacos", - "ingredients_list" - ], - [ - "what are the ingredients to make shepherd's pie", - "ingredients_list" - ], - [ - "what do i need to buy to make a spaghetti", - "ingredients_list" - ], - [ - "what do i need to make spaghetti", - "ingredients_list" - ], - [ - "what is the ingredient list for an omelette", - "ingredients_list" - ], - [ - "what do i need if i want to make lasagna", - "ingredients_list" - ], - [ - "what do i need to make a cajun chili", - "ingredients_list" - ], - [ - "what goes into a strawberry smoothie", - "ingredients_list" - ], - [ - "what should i grab to make a german chocolate cake", - "ingredients_list" - ], - [ - "what do you put in chili", - "ingredients_list" - ], - [ - "what do you need to make pancakes", - "ingredients_list" - ], - [ - "what stuff do you dump in an omelette", - "ingredients_list" - ], - [ - "what do you use when you make a chef's salad", - "ingredients_list" - ], - [ - "what do you purchase to put in a shepherd's pie", - "ingredients_list" - ], - [ - "what do you put in a tibetan omelette", - "ingredients_list" - ], - [ - "what do you mix to make a chocolate cake", - "ingredients_list" - ], - [ - "what does subway use to make a cold cut combo", - "ingredients_list" - ], - [ - "what do you need to make general tsao's chicken", - "ingredients_list" - ], - [ - "what do you put in avocado dip", - "ingredients_list" - ], - [ - "what ingredients are in sushi", - "ingredients_list" - ], - [ - "what does it take to make buttermilk pancakes", - "ingredients_list" - ], - [ - "what do i need to buy to make pierogi", - "ingredients_list" - ], - [ - "what do i need to get to put into homemade tortillas", - "ingredients_list" - ], - [ - "what food items do you put in english breakfast", - "ingredients_list" - ], - [ - "what foods do i buy to put into a korean dinner", - "ingredients_list" - ], - [ - "what do you need to make dandelion wine properly", - "ingredients_list" - ], - [ - "what ingredients are in cake", - "ingredients_list" - ], - [ - "what ingredients are in tortillas", - "ingredients_list" - ], - [ - "what ingredients are in mashed potatoes", - "ingredients_list" - ], - [ - "what ingredients are in dough", - "ingredients_list" - ], - [ - "what ingredients are in chips", - "ingredients_list" - ], - [ - "the ingredients in pizza are what", - "ingredients_list" - ], - [ - "list the ingredients in pizza", - "ingredients_list" - ], - [ - "which ingredients are in pizza", - "ingredients_list" - ], - [ - "pizza has which ingredients", - "ingredients_list" - ], - [ - "the ingredients in pizza are which ones", - "ingredients_list" - ], - [ - "what ingredients do i need to make salmon salad", - "ingredients_list" - ], - [ - "what ingredients go in spaghetti", - "ingredients_list" - ], - [ - "what ingredients do i need to make pizza", - "ingredients_list" - ], - [ - "what ingredients do i need to make pancakes", - "ingredients_list" - ], - [ - "what ingredients do i need to make potato skins", - "ingredients_list" - ], - [ - "what ingredients go in mashed potato", - "ingredients_list" - ], - [ - "what ingredients go in potato skins", - "ingredients_list" - ], - [ - "what ingredients do i need to make spaghetti", - "ingredients_list" - ], - [ - "what ingredients go in a milky way", - "ingredients_list" - ], - [ - "what ingredients go in pizza", - "ingredients_list" - ], - [ - "what ingredients are necessary for a steak", - "ingredients_list" - ], - [ - "in making an omelette, what ingredients do i need", - "ingredients_list" - ], - [ - "in terms of making scrambled eggs, what ingredients do i need", - "ingredients_list" - ], - [ - "what ingredients do i need for chicken breast", - "ingredients_list" - ], - [ - "i'm afraid this charge on my account is fraud", - "report_fraud" - ], - [ - "i think there's fraud on my account", - "report_fraud" - ], - [ - "i think i have fraud on my account from walmart", - "report_fraud" - ], - [ - "there's been some fraudulent activity on my card", - "report_fraud" - ], - [ - "i'm pretty sure this charge from sam's club is fraudulent", - "report_fraud" - ], - [ - "i'm pretty sure this charge is fraudulent", - "report_fraud" - ], - [ - "i need to report some fraudulent card activity", - "report_fraud" - ], - [ - "there are some questionable charges on my card", - "report_fraud" - ], - [ - "i think there's a fraudulent transaction on my account", - "report_fraud" - ], - [ - "there's a shady charge from comcast on my account", - "report_fraud" - ], - [ - "my account has a fraudulent transaction i think", - "report_fraud" - ], - [ - "can you help me with some fraudulent charges on my card", - "report_fraud" - ], - [ - "i think i've been the victim of fraud", - "report_fraud" - ], - [ - "i'd like to report a fraudulent charge from people's natural gas", - "report_fraud" - ], - [ - "this costco charge looks fraudulent", - "report_fraud" - ], - [ - "there's fraudulent transaction going on", - "report_fraud" - ], - [ - "i may have a fraudulent transaction", - "report_fraud" - ], - [ - "i suspect some suspicious activity", - "report_fraud" - ], - [ - "there seems to be fraudulent activity", - "report_fraud" - ], - [ - "i suspect fraudulent transaction", - "report_fraud" - ], - [ - "i need to report fraudulent activity on my card", - "report_fraud" - ], - [ - "i'm reporting fraudelent activity on my card", - "report_fraud" - ], - [ - "there has been fraudulent activity on my card and i need to report it", - "report_fraud" - ], - [ - "i need to make a report due to fraudulent activity on my card", - "report_fraud" - ], - [ - "due to fraudulent activity on my card i need to make a report", - "report_fraud" - ], - [ - "how do i report a fraudulent charge on my visa", - "report_fraud" - ], - [ - "how do i report fraud on my discover card", - "report_fraud" - ], - [ - "how do i let visa know about a charge i didn't make", - "report_fraud" - ], - [ - "help me tell visa about fraud on my account", - "report_fraud" - ], - [ - "how do i tell mastercard about a fraudulent charge", - "report_fraud" - ], - [ - "i have activity on my bank of america card i don't recognize", - "report_fraud" - ], - [ - "i think a thief used my card", - "report_fraud" - ], - [ - "i have suspicious charges on my discovery card", - "report_fraud" - ], - [ - "i believe there's fraud on my card", - "report_fraud" - ], - [ - "i need to report fraudulent activity on my mastercard", - "report_fraud" - ], - [ - "i think someone's using my visa card without my permission", - "report_fraud" - ], - [ - "i have transactions on my card that aren't mine", - "report_fraud" - ], - [ - "my card has purchases i don't recognize", - "report_fraud" - ], - [ - "someone misused my card and put fraudulent transactions on it", - "report_fraud" - ], - [ - "i have charges on my amex card i didn't make", - "report_fraud" - ], - [ - "\"disable my card account and contact company to report fraudulent activty", - "report_fraud" - ], - [ - "\"i need to report fraudulent activity to my card company", - "report_fraud" - ], - [ - "\"please contact my credit card company to report fraudulent activity on", - "report_fraud" - ], - [ - "it looks like someone made an unauthorized amazon purchase on my account", - "report_fraud" - ], - [ - "i think my chase account has been compromised and fraud committed", - "report_fraud" - ], - [ - "i may have had fraud committed on my account", - "report_fraud" - ], - [ - "i'm thinking someone may have used my card in a fraudulent way", - "report_fraud" - ], - [ - "there is a fraudulent charge for paypal on my bank account", - "report_fraud" - ], - [ - "i think the charge for uber on my account is fraudulent", - "report_fraud" - ], - [ - "looks like someone made an unauthorized charge to nike on my account", - "report_fraud" - ], - [ - "i think someone stole my card and used it", - "report_fraud" - ], - [ - "i think someone made an illegal charge to my card", - "report_fraud" - ], - [ - "my account is showing a charge to venmo that i did not make", - "report_fraud" - ], - [ - "i gotta report fraudulent activity on my credit card", - "report_fraud" - ], - [ - "so i made a fraudulent transaction", - "report_fraud" - ], - [ - "i have a fraudulent transaction from wal mart on my account right now", - "report_fraud" - ], - [ - "turns out i made a fraudulent transaction", - "report_fraud" - ], - [ - "report fraudulent activity on my debit card", - "report_fraud" - ], - [ - "i made a fraudulent transaction", - "report_fraud" - ], - [ - "i have a fraudulent transaction from wal mart showing on my account", - "report_fraud" - ], - [ - "i think i made a fraudulent transaction", - "report_fraud" - ], - [ - "i have a fraudulent transaction from wal mart on my account", - "report_fraud" - ], - [ - "i must report fraudulent activity on my debit", - "report_fraud" - ], - [ - "i have a fraudulent transaction from red robin on my account", - "report_fraud" - ], - [ - "report fraudulent activity on my credit card now", - "report_fraud" - ], - [ - "i have a fraudulent transaction from fry's on my account", - "report_fraud" - ], - [ - "i got to report fraudulent activity on my credit card", - "report_fraud" - ], - [ - "i'm afraid there is a false transaction on my account", - "report_fraud" - ], - [ - "i have detected fraudulent activity on my account", - "report_fraud" - ], - [ - "i see a fraudulent transaction from netflix on my account", - "report_fraud" - ], - [ - "i spotted a fraudulent transaction from microsoft on my account", - "report_fraud" - ], - [ - "i see a suspicious transaction in my account history", - "report_fraud" - ], - [ - "it seems someone conducted a fraudulent transaction on my account", - "report_fraud" - ], - [ - "i need help investigating a suspicious transaction", - "report_fraud" - ], - [ - "i need to report a fraudulent transaction from postmates on my account", - "report_fraud" - ], - [ - "help me figure out where this fraudulent transaction from google came from on my account", - "report_fraud" - ], - [ - "can you help me deal with this fraudulent transaction from verizon on my account", - "report_fraud" - ], - [ - "i believe there are fraudulent charges on my card how can i report them", - "report_fraud" - ], - [ - "i didn't make these purchases on my card; these are fraudulent charges i need to report them", - "report_fraud" - ], - [ - "how can i report fraudulent charges on my card", - "report_fraud" - ], - [ - "it seems that there's fraudulent activity on my card i'd like to file a report", - "report_fraud" - ], - [ - "i want to report fraudulent activity on my card", - "report_fraud" - ], - [ - "send information about suspicious credit card activity", - "report_fraud" - ], - [ - "please report information about activity on my credit card", - "report_fraud" - ], - [ - "send fraudulent activity information", - "report_fraud" - ], - [ - "please file a fraud report", - "report_fraud" - ], - [ - "report fraud on my card", - "report_fraud" - ], - [ - "i want to report fraudulent activity on my visa card, please", - "report_fraud" - ], - [ - "i need to report fraudulent activity on my visa card, please", - "report_fraud" - ], - [ - "i want to report fraudulent activity on my amex card", - "report_fraud" - ], - [ - "i want to report fraudulent activity on my visa card", - "report_fraud" - ], - [ - "i want to report fraudulent activity on my amex card, please", - "report_fraud" - ], - [ - "i believe that there is some fraudulent activity on my capital one account", - "report_fraud" - ], - [ - "there is an unauthorized transaction on my bank of america checking", - "report_fraud" - ], - [ - "i see a purchase on my chase checking that i did not make", - "report_fraud" - ], - [ - "what steps do i take if there is a transaction that i do not recognize on my navy federal credit union account", - "report_fraud" - ], - [ - "i need to talk to someone about a transaction that was not made by me on my chase account", - "report_fraud" - ], - [ - "can you report credit card fraud for me", - "report_fraud" - ], - [ - "discover card reporting fraud", - "report_fraud" - ], - [ - "i need to know how to report fraud on my discover card", - "report_fraud" - ], - [ - "how many centimeters are in an inch", - "measurement_conversion" - ], - [ - "whats 5 feet in inches", - "measurement_conversion" - ], - [ - "what's 32 degrees fahrenheit in celsisus", - "measurement_conversion" - ], - [ - "what amount of millimeters are in 50 kilometers", - "measurement_conversion" - ], - [ - "how many crows are in 10 murders", - "measurement_conversion" - ], - [ - "what amount of miles are in a hundred kilometers", - "measurement_conversion" - ], - [ - "how many weeks are in 3 months", - "measurement_conversion" - ], - [ - "how many meters are in 50 feet", - "measurement_conversion" - ], - [ - "what's 8 ounces in cups", - "measurement_conversion" - ], - [ - "how many kilos are in 150 pounds", - "measurement_conversion" - ], - [ - "how do you convert pounds to grams", - "measurement_conversion" - ], - [ - "how many kilos are in 10 pounds", - "measurement_conversion" - ], - [ - "what is 15 ounces in grams, please", - "measurement_conversion" - ], - [ - "what is 20 ounces in grams, please", - "measurement_conversion" - ], - [ - "what is 10 ounces in grams, please", - "measurement_conversion" - ], - [ - "how do you convert ounces to pounds", - "measurement_conversion" - ], - [ - "how many kilos are in 25 pounds", - "measurement_conversion" - ], - [ - "what is 10 ounces in grams", - "measurement_conversion" - ], - [ - "how many kilos are in 20 pounds", - "measurement_conversion" - ], - [ - "how do you convert ounces to grams", - "measurement_conversion" - ], - [ - "how many kilos are in 100 pounds", - "measurement_conversion" - ], - [ - "how do you convert pounds to kilos", - "measurement_conversion" - ], - [ - "what is 15 ounces in grams", - "measurement_conversion" - ], - [ - "how do you convert ounces to kilos", - "measurement_conversion" - ], - [ - "how many inches and centimeters would i need if i had 10 feet of something", - "measurement_conversion" - ], - [ - "what's 10 inches in centimeters and millimeters", - "measurement_conversion" - ], - [ - "how many tablespoons and teaspoons is one cup", - "measurement_conversion" - ], - [ - "how much is 10kg in pounds and ounces", - "measurement_conversion" - ], - [ - "how many liters are in 500 gallons", - "measurement_conversion" - ], - [ - "what's 12 feet in meters", - "measurement_conversion" - ], - [ - "what is 22 meters in inches", - "measurement_conversion" - ], - [ - "12 feet is equal to how many inches", - "measurement_conversion" - ], - [ - "how many pints are in 22 gallons", - "measurement_conversion" - ], - [ - "how do you convert pounds to kilograms", - "measurement_conversion" - ], - [ - "how do you convert milliliters to ounces", - "measurement_conversion" - ], - [ - "how do you convert millimeters to decimeters", - "measurement_conversion" - ], - [ - "how do you convert inches to centimeters", - "measurement_conversion" - ], - [ - "how do you convert miles to kilometers", - "measurement_conversion" - ], - [ - "what would four inches be in centimeters", - "measurement_conversion" - ], - [ - "if i have four inches, how many centimeters is that", - "measurement_conversion" - ], - [ - "how many centimeters are in 4 inches", - "measurement_conversion" - ], - [ - "how do i convert four inches into centimeters", - "measurement_conversion" - ], - [ - "what are four inches in centimeters", - "measurement_conversion" - ], - [ - "tell me the conversion between tablespoons and cups", - "measurement_conversion" - ], - [ - "i need to know the conversion between tablespoons and teaspoons", - "measurement_conversion" - ], - [ - "what would be the conversion between tablespoons and teaspoons", - "measurement_conversion" - ], - [ - "what is the conversion between tablespoons and cups", - "measurement_conversion" - ], - [ - "help me to understand the conversion between tablespoons and teaspoons", - "measurement_conversion" - ], - [ - "tell me how to convert grams into ounces", - "measurement_conversion" - ], - [ - "i need to know how to convert liters into pints", - "measurement_conversion" - ], - [ - "help me convert feet into miles", - "measurement_conversion" - ], - [ - "how do i change pounds into kilograms", - "measurement_conversion" - ], - [ - "what is the proper way to convert centimeters into inches", - "measurement_conversion" - ], - [ - "how do i convert tablespoons to cups", - "measurement_conversion" - ], - [ - "how many ounces are in a cup", - "measurement_conversion" - ], - [ - "how many teaspoons are in a half a cup", - "measurement_conversion" - ], - [ - "how many tablespoons are in three cups", - "measurement_conversion" - ], - [ - "how many pints are in four cups", - "measurement_conversion" - ], - [ - "how many quarts are in a gallon", - "measurement_conversion" - ], - [ - "i wanna know how many teaspoons are in a tablespoon", - "measurement_conversion" - ], - [ - "how many cups make a gallon", - "measurement_conversion" - ], - [ - "how many tablespoons are in a cup", - "measurement_conversion" - ], - [ - "what is the conversion for pints to quarts", - "measurement_conversion" - ], - [ - "tell me what ten pounds in kilos is", - "measurement_conversion" - ], - [ - "what would five pounds be in kilos", - "measurement_conversion" - ], - [ - "i need to know how many cups are in a two gallons", - "measurement_conversion" - ], - [ - "tell me how many teaspoons are in two cups", - "measurement_conversion" - ], - [ - "how many miles is five kilometers", - "measurement_conversion" - ], - [ - "please convert 2 inches into meters for me", - "measurement_conversion" - ], - [ - "how many meters are in 2 inches", - "measurement_conversion" - ], - [ - "what's the conversion from inches to centimeters", - "measurement_conversion" - ], - [ - "can you convert 2 inches into meters", - "measurement_conversion" - ], - [ - "how many centimeters are one inch", - "measurement_conversion" - ], - [ - "how do i convert inches and centimeters", - "measurement_conversion" - ], - [ - "what is 2 inches in meters", - "measurement_conversion" - ], - [ - "convert 2 inches to meters", - "measurement_conversion" - ], - [ - "convert inches to centimeters", - "measurement_conversion" - ], - [ - "how many cups in a quart", - "measurement_conversion" - ], - [ - "is there an easy way to change feet into inches", - "measurement_conversion" - ], - [ - "how many cups are in 4 quarts", - "measurement_conversion" - ], - [ - "how many feet are in 50 yards", - "measurement_conversion" - ], - [ - "how many ounces in a gallon", - "measurement_conversion" - ], - [ - "can you convert millimeters to centimeters", - "measurement_conversion" - ], - [ - "how many teaspoons in a cup", - "measurement_conversion" - ], - [ - "convert inch to cm", - "measurement_conversion" - ], - [ - "how many inches are in 5 feet", - "measurement_conversion" - ], - [ - "convert cm to inch", - "measurement_conversion" - ], - [ - "how can i change centimeters into inches", - "measurement_conversion" - ], - [ - "how can i change inches into meters", - "measurement_conversion" - ], - [ - "how many centimeters are in 5 yards", - "measurement_conversion" - ], - [ - "how do you convert feet to inches", - "measurement_conversion" - ], - [ - "how many meters are in 10 millimeters", - "measurement_conversion" - ], - [ - "how can you convert miles to kilometers", - "measurement_conversion" - ], - [ - "how would i go about converting inches to yards", - "measurement_conversion" - ], - [ - "how would you convert yards to inches", - "measurement_conversion" - ], - [ - "how are yards converted to inches", - "measurement_conversion" - ], - [ - "how do i change inches to centimeters", - "measurement_conversion" - ], - [ - "what is inches in centimeters", - "measurement_conversion" - ], - [ - "i need to know the difference between inches and centimeters", - "measurement_conversion" - ], - [ - "what is the conversion of inches to centimeters", - "measurement_conversion" - ], - [ - "can you please turn on my furnace", - "smart_home" - ], - [ - "oven should be set to 350 now", - "smart_home" - ], - [ - "what temp is the ac at", - "smart_home" - ], - [ - "tell me who is by the garage door", - "smart_home" - ], - [ - "set my oven to 350 please", - "smart_home" - ], - [ - "make sure all doors are locked", - "smart_home" - ], - [ - "make the lights dimmer please", - "smart_home" - ], - [ - "please, will you turn on my tv", - "smart_home" - ], - [ - "turn lights on in my bedroom", - "smart_home" - ], - [ - "turn the fan to the on position", - "smart_home" - ], - [ - "start my vehicle", - "smart_home" - ], - [ - "please get my car started before i go out to it", - "smart_home" - ], - [ - "need the tv on please", - "smart_home" - ], - [ - "lock all the doors", - "smart_home" - ], - [ - "can you turn on the lights in the den", - "smart_home" - ], - [ - "turn the furnace on please", - "smart_home" - ], - [ - "check who's at the door", - "smart_home" - ], - [ - "please set the temperature to 70", - "smart_home" - ], - [ - "turn tv on please", - "smart_home" - ], - [ - "make the temperature 78 in here", - "smart_home" - ], - [ - "turn lights on in the garage", - "smart_home" - ], - [ - "what is my ac set to right now", - "smart_home" - ], - [ - "activate my furnace please", - "smart_home" - ], - [ - "can you set the temp to 69", - "smart_home" - ], - [ - "set my temp to 75", - "smart_home" - ], - [ - "can you see if i have my doors locked", - "smart_home" - ], - [ - "make sure the oven is set to 350 please", - "smart_home" - ], - [ - "the ac is set to what right now", - "smart_home" - ], - [ - "can you turn on the lights in the backyard", - "smart_home" - ], - [ - "can you turn on the tv", - "smart_home" - ], - [ - "can you turn the oven to 350", - "smart_home" - ], - [ - "who is at my front door", - "smart_home" - ], - [ - "can you turn my lights down just a bit", - "smart_home" - ], - [ - "will you please get my furnace turned on", - "smart_home" - ], - [ - "can you please dim the lights", - "smart_home" - ], - [ - "set my oven to 350 for me right now", - "smart_home" - ], - [ - "turn lights on in my master bathroom", - "smart_home" - ], - [ - "who is knocking", - "smart_home" - ], - [ - "turn on the fan", - "smart_home" - ], - [ - "can you get my car started", - "smart_home" - ], - [ - "are my doors locked right now", - "smart_home" - ], - [ - "can you get the fan going in here", - "smart_home" - ], - [ - "please turn my fan on", - "smart_home" - ], - [ - "warm up my car for me", - "smart_home" - ], - [ - "please make sure the temperature is set to 68", - "smart_home" - ], - [ - "are my doors in the locked position right now", - "smart_home" - ], - [ - "turn down the lights a little please", - "smart_home" - ], - [ - "what's the persons name at my door", - "smart_home" - ], - [ - "can you lock all the doors in the house", - "smart_home" - ], - [ - "i need some air; get the fan going", - "smart_home" - ], - [ - "what's the ac set to", - "smart_home" - ], - [ - "can you tell me what the ac is on", - "smart_home" - ], - [ - "lock every door on the property", - "smart_home" - ], - [ - "turn the tv to on right now", - "smart_home" - ], - [ - "please lock every door", - "smart_home" - ], - [ - "did i lock the doors", - "smart_home" - ], - [ - "dim the main lights please", - "smart_home" - ], - [ - "i need my furnace turned on", - "smart_home" - ], - [ - "put the garage lights on", - "smart_home" - ], - [ - "on the lounge lights turn", - "smart_home" - ], - [ - "can put fan on", - "smart_home" - ], - [ - "turn on the living room lights", - "smart_home" - ], - [ - "put fan on", - "smart_home" - ], - [ - "put on lights", - "smart_home" - ], - [ - "on turn tv", - "smart_home" - ], - [ - "on the fan", - "smart_home" - ], - [ - "on the tv", - "smart_home" - ], - [ - "switch fan", - "smart_home" - ], - [ - "light the bedroom lights", - "smart_home" - ], - [ - "switch tv", - "smart_home" - ], - [ - "tv on turn", - "smart_home" - ], - [ - "please start my car", - "smart_home" - ], - [ - "what is the temperature setting of the ac", - "smart_home" - ], - [ - "set temperature to 75", - "smart_home" - ], - [ - "can you look who is at the door", - "smart_home" - ], - [ - "what is the temperature the ac display is showing", - "smart_home" - ], - [ - "has anyone locked the door", - "smart_home" - ], - [ - "check to see who is at the doof", - "smart_home" - ], - [ - "what is the ac temperature", - "smart_home" - ], - [ - "please lock the doors", - "smart_home" - ], - [ - "can you please help me start the car", - "smart_home" - ], - [ - "turn the fan on please", - "smart_home" - ], - [ - "i would appreciate it if you help me turn the car on", - "smart_home" - ], - [ - "did anyone securely lock the door", - "smart_home" - ], - [ - "please set the temperature to 80", - "smart_home" - ], - [ - "turn the fan on", - "smart_home" - ], - [ - "put the lights on low", - "smart_home" - ], - [ - "can you please start my car", - "smart_home" - ], - [ - "what is the temperature on the ac", - "smart_home" - ], - [ - "can you check who is at the door", - "smart_home" - ], - [ - "set the temperaure to 71", - "smart_home" - ], - [ - "turn the lights down", - "smart_home" - ], - [ - "please turn the fan on", - "smart_home" - ], - [ - "can you please turn the fan on", - "smart_home" - ], - [ - "i want you to turn the fans on", - "smart_home" - ], - [ - "what temperature is the ac set at", - "smart_home" - ], - [ - "remember to lock the doors", - "smart_home" - ], - [ - "who is at the door", - "smart_home" - ], - [ - "please check the door to see who is there", - "smart_home" - ], - [ - "set the temperature to 78", - "smart_home" - ], - [ - "i need a bed in brownsburg near walmart from apil 4th until the 5th", - "book_hotel" - ], - [ - "i need a room in indianapolis near the track from may 2nd through the 5th", - "book_hotel" - ], - [ - "i need lodging in lizton near the ice cream parlor from may 3rd until the 8th", - "book_hotel" - ], - [ - "need a place to crash in elizabeth near the refinery from june 4th until the 9th", - "book_hotel" - ], - [ - "i need a place to stay in newark near a bodega from may 2nd through the 4th", - "book_hotel" - ], - [ - "i want to book a hotel room for 10 people from monday to tuesday in manhattan", - "book_hotel" - ], - [ - "is there a room big enough for 10 people from monday to tuesday in manhattan", - "book_hotel" - ], - [ - "is it possible to book 10 people from monday to tuesday in manhattan", - "book_hotel" - ], - [ - "i would like to reserve a hotel room that accomodates 10 people from monday to tuesday in manhattan", - "book_hotel" - ], - [ - "i'm inquiring about the availability of a room that fits 10 people from monday to tuesday in manhattan", - "book_hotel" - ], - [ - "book me a hotel in st louis near the arch from march 2nd to 5th", - "book_hotel" - ], - [ - "i need a room in london for 2 people from march 1st to 3rd", - "book_hotel" - ], - [ - "get me a hotel room for 3 people from march 12th to 14th in chicago", - "book_hotel" - ], - [ - "book me a hotel in new york near the empire state building from marc 2nd to 4th", - "book_hotel" - ], - [ - "book me a hotel in chicago near the water tower shopping from april 2nd to 4th", - "book_hotel" - ], - [ - "get me a hotel room for 4 people from march 1st to 3rd in seattle", - "book_hotel" - ], - [ - "in paris, get me a hotel room for 4 people from march 1st to 3rd", - "book_hotel" - ], - [ - "can you find me a hotel for 2 people on april 1st to 4th in rome", - "book_hotel" - ], - [ - "can you book me a hotel in los angeles near commerce casino from april 1st to the 5th", - "book_hotel" - ], - [ - "book me a hotel in seattle near the space needle from march 3rd to 5th", - "book_hotel" - ], - [ - "can you book me a room in new york city from april 2 through april 8", - "book_hotel" - ], - [ - "are there any openings in new york city from april 2 through april 8", - "book_hotel" - ], - [ - "are there any vacancies in new york city from april 2 through april 8", - "book_hotel" - ], - [ - "how about any bookings in new york city from april 2 through april 8", - "book_hotel" - ], - [ - "is there anything available in new york city from april 2 through april 8", - "book_hotel" - ], - [ - "book me a room on november 11 to 15 in cali", - "book_hotel" - ], - [ - "create a reservation novemeber 11 to 15 in cali", - "book_hotel" - ], - [ - "show me all hotels in evans with good reviews", - "book_hotel" - ], - [ - "which hotels in evans have good reviews", - "book_hotel" - ], - [ - "get me a room in cali on november 11 to 15", - "book_hotel" - ], - [ - "show me a well reviewed hotel in evans", - "book_hotel" - ], - [ - "what is the best rated hotel in evans", - "book_hotel" - ], - [ - "find me a place to stay in cali november 11 to 15", - "book_hotel" - ], - [ - "make a reservation to stay in cali from november 11 to 15", - "book_hotel" - ], - [ - "is it possible to have a place booked in salem from the 1st to the 3rd", - "book_hotel" - ], - [ - "see if you can get me a room in colorado springs near garden of the gods from march 01 to march 02", - "book_hotel" - ], - [ - "i'd like you to book me a room in austin near google's headquarters from january 01, 2020 to february 02, 2020", - "book_hotel" - ], - [ - "please book me a room in austin from tomorrow to the 2nd", - "book_hotel" - ], - [ - "i want a hotel room for 6 from the 1st through the 3rd in seattle", - "book_hotel" - ], - [ - "can you find me a decent hotel in denver", - "book_hotel" - ], - [ - "i'd like a placed booked in san diego from may 1st, 2020 to june 2nd, 2020", - "book_hotel" - ], - [ - "are there any good hotels in salem", - "book_hotel" - ], - [ - "what's a good hotel to stay at in chicago", - "book_hotel" - ], - [ - "will you find me a place to stay in casper from march 5th to march 11th", - "book_hotel" - ], - [ - "check if there's a hotel room that can receive 10 people in tampa from this friday for a week", - "book_hotel" - ], - [ - "can i get a hotel room that can accommodate 50 people in bangor from january 01, 2021 to january 30, 2021", - "book_hotel" - ], - [ - "i need a hotel booked in denver near the museum from friday to saturday", - "book_hotel" - ], - [ - "i want a hotel booked in salem near the concert hall from the first to the second", - "book_hotel" - ], - [ - "i required a hotel room for 20 people from march 8th through march 20th in las vegas", - "book_hotel" - ], - [ - "what hotels have decent reviews in bangor", - "book_hotel" - ], - [ - "is it possible to have a room booked in omaha near the convention hall for may 01, 2019 to may 05, 2019", - "book_hotel" - ], - [ - "i'd like to find a hotel in tampa that people liked enough to leave good reviews about", - "book_hotel" - ], - [ - "can you book me a place to stay in denver from wednesday to friday", - "book_hotel" - ], - [ - "i need a hotel room that can host 5 people from tomorrow to saturday in denver", - "book_hotel" - ], - [ - "please find me a hotel room for 4 people from monday to wednesday in lakewood", - "book_hotel" - ], - [ - "i need a hotel room big enough for 4 people from monday to wednesday in lakewood", - "book_hotel" - ], - [ - "i need a hotel room for 4 people in lakewood from monday to wednesday", - "book_hotel" - ], - [ - "what hotel would you recommend in lakewood for 4 people from monday to wednesday", - "book_hotel" - ], - [ - "i will be in lakewood from monday to wednesday and i need a hotel room for 4 people", - "book_hotel" - ], - [ - "please help me book a place to stay in pittsburgh from monday to friday", - "book_hotel" - ], - [ - "i need a place in pittsburgh to stay from monday to friday, can you help", - "book_hotel" - ], - [ - "help me find a hotel in columbus with good reviews", - "book_hotel" - ], - [ - "can you find me a hotel in columbus with good reviews", - "book_hotel" - ], - [ - "please find a columbus, ohio hotel with good reviews", - "book_hotel" - ], - [ - "will you help me book a place to stay from monday to friday in pittsburgh", - "book_hotel" - ], - [ - "can you book me a place to stay in pittsburgh from monday to friday", - "book_hotel" - ], - [ - "please book me a place in pittsburgh to stay from monday to friday", - "book_hotel" - ], - [ - "find a columbus, ohio hotel with good reviews", - "book_hotel" - ], - [ - "help me find a hotel in that has good reviews in columbus", - "book_hotel" - ], - [ - "do you know of any well reviewed hotels in chicago", - "book_hotel" - ], - [ - "help me find a well reviewed hotel in dallas", - "book_hotel" - ], - [ - "find me a hotel in kansas city with good reviews", - "book_hotel" - ], - [ - "i need to find a nice hotel with solid reviews in seattle", - "book_hotel" - ], - [ - "look up hotels with positive reviews in new york city", - "book_hotel" - ], - [ - "what hotels are near, ny, ny for the 9th to 11th", - "book_hotel" - ], - [ - "please book a hotel in ny, close to brooklyn, on the 25th to 30th", - "book_hotel" - ], - [ - "book a hotel in pa, harrisburg for the 10th to 15th", - "book_hotel" - ], - [ - "find and book a hotel in md, baltimore starting on the 7th to the 9th", - "book_hotel" - ], - [ - "i need to book a hotel in ny, queens arrive on 8th and leave on the 13th", - "book_hotel" - ], - [ - "i need a hotel in new orleans with awesome reviews", - "book_hotel" - ], - [ - "find a suitable lodging in vancouver on march 16-19", - "book_hotel" - ], - [ - "help me find a good reviews hotel in la", - "book_hotel" - ], - [ - "i need a hotel in new orleans from may 2 - 5 near the french quarter", - "book_hotel" - ], - [ - "find a hotel with great reviews in san francisco", - "book_hotel" - ], - [ - "find me a hotel in seattle with great reviews", - "book_hotel" - ], - [ - "help me a great hotel in vegas for this weekend", - "book_hotel" - ], - [ - "can you find me a place to stay in sacramento near the capitol on july 3-5", - "book_hotel" - ], - [ - "find a hotel in san francisco for march 8 & 9", - "book_hotel" - ], - [ - "i need a well-rated hotel in vegas", - "book_hotel" - ], - [ - "can i book a hotel in new york city near times square from 3/1 until 3/5", - "book_hotel" - ], - [ - "book me a hotel room in memphis for 3 people from 3/6 until 3/10", - "book_hotel" - ], - [ - "hotel room for 5 in austin for 3/1 until 3/8", - "book_hotel" - ], - [ - "i need a hotel in austin near south congress from 3/5 until 3/10", - "book_hotel" - ], - [ - "book me a hotel in pittsburgh near grant street for 3/15 through 3/18", - "book_hotel" - ], - [ - "march 20th through the 22nd, please book me a hotel room in manhattan big enough for 10 people", - "book_hotel" - ], - [ - "i'm going to need a hotel in tampa near ybor city for march 23rd through the 28th", - "book_hotel" - ], - [ - "i'm going to need a hotel room for 8 people in tallahassee from 3/10 until 3/12", - "book_hotel" - ], - [ - "could you reserve me a hotel room in philadelphia near chinatown from 3/19 through 3/22", - "book_hotel" - ], - [ - "in brooklyn, i need a hotel room for 4 from 3/15 until 3/20", - "book_hotel" - ], - [ - "book me a hotel with good ratings in nashville", - "book_hotel" - ], - [ - "check maps for my location", - "current_location" - ], - [ - "i'm lost, can you tell me where i am", - "current_location" - ], - [ - "how can i go about finding my location right now", - "current_location" - ], - [ - "please tell me my location using gps", - "current_location" - ], - [ - "where exactly am i", - "current_location" - ], - [ - "what's my location", - "current_location" - ], - [ - "is there a way to get my current location", - "current_location" - ], - [ - "what's the precise coordinates of this place", - "current_location" - ], - [ - "where am i right this moment", - "current_location" - ], - [ - "use the map and pinpoint my position", - "current_location" - ], - [ - "give me my location on the map", - "current_location" - ], - [ - "what's my current location", - "current_location" - ], - [ - "what street is this", - "current_location" - ], - [ - "can you direct me where to find where i am", - "current_location" - ], - [ - "what do i do to find my location", - "current_location" - ], - [ - "using this map i'd like to see my exact whereabouts", - "current_location" - ], - [ - "place a marker for me where i am on the map", - "current_location" - ], - [ - "i need to know my current gps coordinates", - "current_location" - ], - [ - "can i have my current gps coordinates", - "current_location" - ], - [ - "would you please tell me my current gps coordinates", - "current_location" - ], - [ - "please tell me my current gps coordinates", - "current_location" - ], - [ - "list my current gps coordinates", - "current_location" - ], - [ - "how do i know where i'm at", - "current_location" - ], - [ - "where am i located currently", - "current_location" - ], - [ - "tell me how to find my current location", - "current_location" - ], - [ - "showme how to find my location", - "current_location" - ], - [ - "i'd like to know where i am", - "current_location" - ], - [ - "what are the gps coordinates where i am located", - "current_location" - ], - [ - "at this location what are my gps coordinates", - "current_location" - ], - [ - "in the place i am what are my gps coordinates", - "current_location" - ], - [ - "what are my gps coordinates at this location", - "current_location" - ], - [ - "what are the gps coordinates of this spot i am at right now", - "current_location" - ], - [ - "where am i located", - "current_location" - ], - [ - "what country and city am i in", - "current_location" - ], - [ - "what are my longitude and latitude points", - "current_location" - ], - [ - "show me where i am on the map", - "current_location" - ], - [ - "display my location on a map", - "current_location" - ], - [ - "please show me where i am on a map", - "current_location" - ], - [ - "can you show me where i am on a map", - "current_location" - ], - [ - "where am i right now, location wise", - "current_location" - ], - [ - "what street am i on right now", - "current_location" - ], - [ - "tell me my current location please", - "current_location" - ], - [ - "what location do you see me at right now", - "current_location" - ], - [ - "what is my current location that you see right now", - "current_location" - ], - [ - "show me where i am", - "current_location" - ], - [ - "bring up my location", - "current_location" - ], - [ - "tell me where i am on a map", - "current_location" - ], - [ - "can you locate me on a map", - "current_location" - ], - [ - "show me where i am on a map", - "current_location" - ], - [ - "i need to know my location", - "current_location" - ], - [ - "i'm lost", - "current_location" - ], - [ - "can you tell me how to figure out my current location", - "current_location" - ], - [ - "i need to find out how i know my location right now", - "current_location" - ], - [ - "can you tell me my location", - "current_location" - ], - [ - "what do i do to find my current location", - "current_location" - ], - [ - "my current location", - "current_location" - ], - [ - "i would like to know my current location", - "current_location" - ], - [ - "how can i tell what my current location is", - "current_location" - ], - [ - "how can i know my current location", - "current_location" - ], - [ - "let me know where i'm located", - "current_location" - ], - [ - "i am in need of my location", - "current_location" - ], - [ - "help me find where i am", - "current_location" - ], - [ - "i do not know where i am", - "current_location" - ], - [ - "i would like to know my location", - "current_location" - ], - [ - "where are we located", - "current_location" - ], - [ - "tell me the current location", - "current_location" - ], - [ - "please tell me my current location", - "current_location" - ], - [ - "what are my gps coordinates right now", - "current_location" - ], - [ - "please tell me my present gps coordinates", - "current_location" - ], - [ - "i need to know my present gps coordinates", - "current_location" - ], - [ - "tell me my current gps coordinates", - "current_location" - ], - [ - "please give me my gps coordinates", - "current_location" - ], - [ - "how do i find my location right now, please", - "current_location" - ], - [ - "how do i find my location, please", - "current_location" - ], - [ - "could you find my location on the map, please", - "current_location" - ], - [ - "how do i find my present location right now", - "current_location" - ], - [ - "could you find my location on the map", - "current_location" - ], - [ - "how do i find my location right now", - "current_location" - ], - [ - "would you find my location on the map, please", - "current_location" - ], - [ - "can you find my location on the map, please", - "current_location" - ], - [ - "can you find my location on the map", - "current_location" - ], - [ - "how do i find my present location right now, please", - "current_location" - ], - [ - "give me my current location", - "current_location" - ], - [ - "let me know my current location", - "current_location" - ], - [ - "what is my location right now", - "current_location" - ], - [ - "can you tell me the address where i am right now", - "current_location" - ], - [ - "please locate me on the map and show me", - "current_location" - ], - [ - "tell me my current location", - "current_location" - ], - [ - "how can i go about finding my current location", - "current_location" - ], - [ - "i wanna know my current location", - "current_location" - ], - [ - "how can i find my current location", - "current_location" - ], - [ - "how will i find my current location", - "current_location" - ], - [ - "i'd like to know my current location", - "current_location" - ], - [ - "how can i locate where i am", - "current_location" - ], - [ - "how shall i find my current location", - "current_location" - ], - [ - "check out my location up on the map", - "current_location" - ], - [ - "could you pull up my location on the map", - "current_location" - ], - [ - "check me out on the map", - "current_location" - ], - [ - "look me up on the map", - "current_location" - ], - [ - "look my location up on the map", - "current_location" - ], - [ - "what are the conditions like in orlando", - "weather" - ], - [ - "what's the temperature like in tampa", - "weather" - ], - [ - "what's the forecast like for pittsburgh", - "weather" - ], - [ - "what are the conditions like in sarasota", - "weather" - ], - [ - "what's the climate like in chicago", - "weather" - ], - [ - "what will the temperature be tomorrow", - "weather" - ], - [ - "will it rain today", - "weather" - ], - [ - "will it freeze tonight", - "weather" - ], - [ - "give me the 7 day forecast", - "weather" - ], - [ - "is it hot outside", - "weather" - ], - [ - "what is the weather going to be like today", - "weather" - ], - [ - "is it going to rain today", - "weather" - ], - [ - "what is the weather going to be like tomorrow", - "weather" - ], - [ - "is it going to rain tonight", - "weather" - ], - [ - "are there any tornadoes coming soon", - "weather" - ], - [ - "is it snowing in the next two weeks", - "weather" - ], - [ - "what is the weather like in denver", - "weather" - ], - [ - "what is the weather like tomorrow", - "weather" - ], - [ - "what is the record high temperature for today", - "weather" - ], - [ - "whats the predicted weather suppose to be like", - "weather" - ], - [ - "whats the forecast for the weather", - "weather" - ], - [ - "what does the weather look like", - "weather" - ], - [ - "what does the forecast look like", - "weather" - ], - [ - "what is the weather going to be like", - "weather" - ], - [ - "tell me this week's forecast", - "weather" - ], - [ - "will it get over 90 degrees today", - "weather" - ], - [ - "what's the temperature outside", - "weather" - ], - [ - "tell me how the weather is", - "weather" - ], - [ - "weather", - "weather" - ], - [ - "what's the weather", - "weather" - ], - [ - "is it raining", - "weather" - ], - [ - "how is it outside", - "weather" - ], - [ - "how hot will it be tomorrow", - "weather" - ], - [ - "what is the weather for tomorrow in georgia", - "weather" - ], - [ - "what is the forecast for this week", - "weather" - ], - [ - "will it snow this weekend", - "weather" - ], - [ - "is there any rain in the next 3 days", - "weather" - ], - [ - "can you tell me what the weather will be please", - "weather" - ], - [ - "how's the weather", - "weather" - ], - [ - "what's the weather looking like", - "weather" - ], - [ - "what weather should i expect", - "weather" - ], - [ - "costa mesa current weather", - "weather" - ], - [ - "what is the temperature in costa mesa", - "weather" - ], - [ - "what is the weather report for costa mesa", - "weather" - ], - [ - "weather in costa mesa", - "weather" - ], - [ - "costa mesa weather", - "weather" - ], - [ - "i need meteorological data for tallahassee", - "weather" - ], - [ - "how's the weather in tallahassee", - "weather" - ], - [ - "read me the current weather report for tallahassee", - "weather" - ], - [ - "tell me the weather report for tallahassee", - "weather" - ], - [ - "what's the current weather situation for tallahassee", - "weather" - ], - [ - "what's the weekend forecast", - "weather" - ], - [ - "can you tell me the low tonight", - "weather" - ], - [ - "is it going to be sunny today", - "weather" - ], - [ - "what's the highest chance of rain for today", - "weather" - ], - [ - "how cold is it going to be tonight", - "weather" - ], - [ - "what is the weather forecast for seattle", - "weather" - ], - [ - "what is the weather outlook for seattle", - "weather" - ], - [ - "what are the weather conditions in seattle", - "weather" - ], - [ - "how is the weather in seattle", - "weather" - ], - [ - "what is the weather report for seattle", - "weather" - ], - [ - "can you give me info on miami weather", - "weather" - ], - [ - "what is miami weather like", - "weather" - ], - [ - "what can you tell me about miami weather", - "weather" - ], - [ - "what kind of weather does miami have", - "weather" - ], - [ - "how is the weather in miami", - "weather" - ], - [ - "what's the weather like right now", - "weather" - ], - [ - "give me a rundown of the weather", - "weather" - ], - [ - "what kind of weather is there", - "weather" - ], - [ - "tell me what the weather is like", - "weather" - ], - [ - "when is it going to rain again", - "weather" - ], - [ - "what is the high temperature for tomorrow", - "weather" - ], - [ - "how many of inches of snow did my hometown get last year", - "weather" - ], - [ - "what are the atmospheric conditions in sparks", - "weather" - ], - [ - "is it raining in sparks", - "weather" - ], - [ - "is it cloudy or sunny in sparks", - "weather" - ], - [ - "is sparks experiencing bad weather right now", - "weather" - ], - [ - "what is the weather like in sparks right now", - "weather" - ], - [ - "what is the temp right now", - "weather" - ], - [ - "when will it rain next", - "weather" - ], - [ - "when is the next rain chance", - "weather" - ], - [ - "what will the weather be this weekend", - "weather" - ], - [ - "what s the uv index tomorrow", - "weather" - ], - [ - "tell me today's weather forecast", - "weather" - ], - [ - "tell me about the weather today", - "weather" - ], - [ - "i want to know the weather forecast for today", - "weather" - ], - [ - "what will the weather be like", - "weather" - ], - [ - "what's the chance of rain on friday", - "weather" - ], - [ - "is there a uv or smog alert for tomorrow", - "weather" - ], - [ - "is it snowing right now in richmond, va", - "weather" - ], - [ - "what will the low temperatures be over the weekend", - "weather" - ], - [ - "can you let me know if it will be warm this week", - "weather" - ], - [ - "when is the next time it is suppose to rain", - "weather" - ], - [ - "how cold will it be tomorrow", - "weather" - ], - [ - "what is today's high temperature predicted to be", - "weather" - ], - [ - "how much snow will we be getting tomorrow", - "weather" - ], - [ - "what's the current weather", - "weather" - ], - [ - "what's it doing outside right now", - "weather" - ], - [ - "what's today's weather going to be", - "weather" - ], - [ - "please tell me the weather forecast", - "weather" - ], - [ - "how much are my state taxes", - "taxes" - ], - [ - "what will my state taxes cost", - "taxes" - ], - [ - "how much are taxes in my state", - "taxes" - ], - [ - "how much state taxes do i owe", - "taxes" - ], - [ - "tell me how much in tax on this", - "taxes" - ], - [ - "and what are the taxes", - "taxes" - ], - [ - "tell me what the tax amount is", - "taxes" - ], - [ - "what is the tax amount", - "taxes" - ], - [ - "how much are taxes on this", - "taxes" - ], - [ - "what is the amount of my federal taxes", - "taxes" - ], - [ - "about how much will my federal taxes be", - "taxes" - ], - [ - "how much will i have to pay in state taxes", - "taxes" - ], - [ - "what do my state taxes amount to", - "taxes" - ], - [ - "how much will i have to pay in federal taxes", - "taxes" - ], - [ - "how much do i owe for state taxes", - "taxes" - ], - [ - "what do my federal taxes amount to", - "taxes" - ], - [ - "what amount will my state taxes be", - "taxes" - ], - [ - "how much will my state taxes be", - "taxes" - ], - [ - "how much am i going to have to pay in taxes to the state", - "taxes" - ], - [ - "how much will i have to pay in colorado taxes", - "taxes" - ], - [ - "what's my bill going to be for my taxes for tennessee", - "taxes" - ], - [ - "how much am i going to have to pay in federal taxes this year", - "taxes" - ], - [ - "how much is the irs going to get from me", - "taxes" - ], - [ - "what's my irs bill going to look like", - "taxes" - ], - [ - "what will i need to pay in federal taxes", - "taxes" - ], - [ - "how much money am i going to lose this year for state taxes", - "taxes" - ], - [ - "how much money is the state going to take from me for taxes", - "taxes" - ], - [ - "how are my federal taxes looking this year", - "taxes" - ], - [ - "i have to pay how much back in taxes", - "taxes" - ], - [ - "how much will i pay the government back in taxes", - "taxes" - ], - [ - "what amount do i have to pay in taxes", - "taxes" - ], - [ - "how much do i have to pay back for my taxes", - "taxes" - ], - [ - "what is the amount of money that i have to pay in taxes", - "taxes" - ], - [ - "what is the total amount of tax deductions from my income", - "taxes" - ], - [ - "what do i pay currently in income taxes", - "taxes" - ], - [ - "i need to know how much tax i pay from my earnings", - "taxes" - ], - [ - "how much am i paying from my income in taxes", - "taxes" - ], - [ - "can you find the exact amount i pay income taxes", - "taxes" - ], - [ - "do i pay a lot of taxes on my income", - "taxes" - ], - [ - "how much am i expected to pay in tax", - "taxes" - ], - [ - "do i have to file a tax form", - "taxes" - ], - [ - "will i pay over $500 in federal taxes", - "taxes" - ], - [ - "what can i expect to pay in taxes", - "taxes" - ], - [ - "are my state tax payments too high", - "taxes" - ], - [ - "how much do americans pay for federal taxes on average", - "taxes" - ], - [ - "how much will i pay in state taxes", - "taxes" - ], - [ - "how much do i pay the government in taxes", - "taxes" - ], - [ - "what percentage do i pay in taxes", - "taxes" - ], - [ - "what percentage of my income is taken out for taxes", - "taxes" - ], - [ - "how much will i pay in federal taxes", - "taxes" - ], - [ - "what do i owe the government on my taxes", - "taxes" - ], - [ - "help me calculate my federal tax bill", - "taxes" - ], - [ - "can you calculate my state taxes", - "taxes" - ], - [ - "using my salary as a basis, what taxes will i owe", - "taxes" - ], - [ - "how are my state taxes looking", - "taxes" - ], - [ - "help me figure out my state taxes", - "taxes" - ], - [ - "can you calculate my tax", - "taxes" - ], - [ - "how much is my income tax", - "taxes" - ], - [ - "can you tell me my income tax", - "taxes" - ], - [ - "how much do i pay in income tax", - "taxes" - ], - [ - "how much tax do i owe", - "taxes" - ], - [ - "what kind of tax do i pay", - "taxes" - ], - [ - "what amount am i taxed on my income", - "taxes" - ], - [ - "what do you think will be the result of my federal tax return", - "taxes" - ], - [ - "what's the damage on my federal tax return", - "taxes" - ], - [ - "what does my federal tax return look like", - "taxes" - ], - [ - "what will my federal tax return be", - "taxes" - ], - [ - "how much money will i get or owe on my federal tax return", - "taxes" - ], - [ - "how much money do i pay in taxes", - "taxes" - ], - [ - "how much money do i pay in taxes, please", - "taxes" - ], - [ - "what amount of money do i pay in taxes, please", - "taxes" - ], - [ - "how much do i pay in taxes", - "taxes" - ], - [ - "how much do i pay in taxes, please", - "taxes" - ], - [ - "i need to know how much i should pay in tax", - "taxes" - ], - [ - "let me know my tax rate", - "taxes" - ], - [ - "what amount of tax should i pay", - "taxes" - ], - [ - "please tell me what i pay in taxes", - "taxes" - ], - [ - "i would like to know how much i pay in taxes", - "taxes" - ], - [ - "what is the total amount i pay in taxes", - "taxes" - ], - [ - "can you tell me how much i pay in taxes", - "taxes" - ], - [ - "how much does it seem my state taxes will be", - "taxes" - ], - [ - "tell me what my state taxes are", - "taxes" - ], - [ - "what are my state taxes looking like", - "taxes" - ], - [ - "can you tell me more about my federal taxes", - "taxes" - ], - [ - "what do i owe in federal taxes", - "taxes" - ], - [ - "give me the specifics on my federal taxes", - "taxes" - ], - [ - "what does it look like my state taxes will add up to", - "taxes" - ], - [ - "i need the details on my federal taxes", - "taxes" - ], - [ - "what do i currently pay in taxes", - "taxes" - ], - [ - "what do i pay in taxes", - "taxes" - ], - [ - "how much will i pay for state taxes this year", - "taxes" - ], - [ - "how different will my state taxes be", - "taxes" - ], - [ - "what is my state taxes currently", - "taxes" - ], - [ - "what will my state taxes amount to this year", - "taxes" - ], - [ - "how much did my state taxes change", - "taxes" - ], - [ - "how much tax do i pay", - "taxes" - ], - [ - "how much do i pay in tax", - "taxes" - ], - [ - "how much do i pay in my taxes", - "taxes" - ], - [ - "how much as my taxes by the way", - "taxes" - ], - [ - "what amount do my state taxes look like", - "taxes" - ], - [ - "what's the minimum i owe on the car payment", - "min_payment" - ], - [ - "what's the least amount i need to pay on the electric bill", - "min_payment" - ], - [ - "what's the smallest amount i can pay on the water bill", - "min_payment" - ], - [ - "what's the minimum amount for my electric bill", - "min_payment" - ], - [ - "what's the least i can pay on the medical payments for february", - "min_payment" - ], - [ - "how much can i get away with paying for my college loan", - "min_payment" - ], - [ - "what's the minimum required payment on my visa card", - "min_payment" - ], - [ - "i want to know my bill's minimum payment", - "min_payment" - ], - [ - "what is my bill's minimum payment", - "min_payment" - ], - [ - "minimum payment of my bill please", - "min_payment" - ], - [ - "can you tell me the minimum payment of my bill", - "min_payment" - ], - [ - "tell me the minimum payment of my bill", - "min_payment" - ], - [ - "the minumum to pay is what", - "min_payment" - ], - [ - "what is the minimum i can pay for my electric bill", - "min_payment" - ], - [ - "please lookup the minimum i need to pay on my credit card", - "min_payment" - ], - [ - "what is the minimum i need to pay for my cell phone bill", - "min_payment" - ], - [ - "tell me what my minimum payment is", - "min_payment" - ], - [ - "what is the minimum i have to pay on my chase card", - "min_payment" - ], - [ - "what is the minimum i can pay for my telephone bill", - "min_payment" - ], - [ - "what is the minimum i can pay for my light bill", - "min_payment" - ], - [ - "what is the minimum i can pay for the gas bill", - "min_payment" - ], - [ - "what do i have to pay on my amex that is the minimum", - "min_payment" - ], - [ - "i need to know my cable bill minimum payment", - "min_payment" - ], - [ - "please tell me the minimum i can pay on my electric bill", - "min_payment" - ], - [ - "please tell me the minimum i can pay on my water bill", - "min_payment" - ], - [ - "what is the lowest amount i can pay for my electric bill", - "min_payment" - ], - [ - "tell me the lowest amount i can pay for my cable bill", - "min_payment" - ], - [ - "let me know the minimum i can pay on my cable bill", - "min_payment" - ], - [ - "please tell me the bill's minimum payment", - "min_payment" - ], - [ - "what is the lowest amount i can pay for my cable bill", - "min_payment" - ], - [ - "tell me the minimum i can pay on my cable bill", - "min_payment" - ], - [ - "i need to know the bill's minimum payment", - "min_payment" - ], - [ - "tell me my electric bill minimum payment", - "min_payment" - ], - [ - "tell me the bill's minimum payment", - "min_payment" - ], - [ - "what is my cable bill minimum payment", - "min_payment" - ], - [ - "i would like to know the bill's minimum payment", - "min_payment" - ], - [ - "i must know my water bill minimum payment", - "min_payment" - ], - [ - "i wanna know the bill's minimum payment", - "min_payment" - ], - [ - "inform me the lowest amount i can pay for my cable bill", - "min_payment" - ], - [ - "i want you to tell me the minimum i can pay on my rent bill", - "min_payment" - ], - [ - "i would like to know my water bill minimum payment", - "min_payment" - ], - [ - "let me know the lowest amount i can pay for my cable bill", - "min_payment" - ], - [ - "find the minimum due on my peco energy bill for february", - "min_payment" - ], - [ - "what is the minimum payment on my chase mastercard", - "min_payment" - ], - [ - "please give me the minimum payment total for my sprint phone bill", - "min_payment" - ], - [ - "can you tell me the minimum amount due on my visa this month", - "min_payment" - ], - [ - "i want to know the bill's minimum payment", - "min_payment" - ], - [ - "please inform me of the minimum payment of the bill", - "min_payment" - ], - [ - "the bill's minimum payment, what is it", - "min_payment" - ], - [ - "what is the minimum amount of money required as payment for the bill", - "min_payment" - ], - [ - "what is the minimum payment for the bill", - "min_payment" - ], - [ - "i need to pay the smallest amount on my phone bill", - "min_payment" - ], - [ - "how little can i pay on my car bill", - "min_payment" - ], - [ - "what is the smallest i can pay on the water bill", - "min_payment" - ], - [ - "how tiny a payment can i make on electric bill", - "min_payment" - ], - [ - "how much do i have to at least pay on my medical bills", - "min_payment" - ], - [ - "how small of a payment can i make for my chase card bill", - "min_payment" - ], - [ - "what is the minimum payment i can make on my xcel energy bill", - "min_payment" - ], - [ - "please tell me the minimum amount i can pay on my wells fargo credit card", - "min_payment" - ], - [ - "what is the smallest amount i can pay on my tmobile bill", - "min_payment" - ], - [ - "what is the smallest payment i can make toward my xfinity bill", - "min_payment" - ], - [ - "can you tell me my cards minimum payment", - "min_payment" - ], - [ - "minimum payment for my credit card", - "min_payment" - ], - [ - "can i get the minimum payment for my credit card", - "min_payment" - ], - [ - "i would like to know the minimum payment for my credit card", - "min_payment" - ], - [ - "i need to know my cards minimum payment", - "min_payment" - ], - [ - "could you tell me the minimum payment on my mortgage", - "min_payment" - ], - [ - "what is the minimum payment on my eddie bauer card", - "min_payment" - ], - [ - "i need to know what the minimum payment is on my electric bill", - "min_payment" - ], - [ - "what is the bare minimum for my truck payment", - "min_payment" - ], - [ - "how much is the minimum payment on my chase card", - "min_payment" - ], - [ - "what is the least amount i can pay for power bill", - "min_payment" - ], - [ - "how much is the minimum payment for power bill", - "min_payment" - ], - [ - "what is the minimum payment for my credit card bill", - "min_payment" - ], - [ - "how much is the least i can pay for power bill", - "min_payment" - ], - [ - "what is the minimum payment for my power bill", - "min_payment" - ], - [ - "how low can i reduce my phone bill before paying", - "min_payment" - ], - [ - "how low can we get my phone bill", - "min_payment" - ], - [ - "what is the minimum payment on my phone bill", - "min_payment" - ], - [ - "what is the lowest i can pay on my phone bill", - "min_payment" - ], - [ - "what is the minimum i can pay for my phone bill", - "min_payment" - ], - [ - "how little can i pay for my water bill", - "min_payment" - ], - [ - "show my my minimum payment for youtube", - "min_payment" - ], - [ - "what's the minimum payment for my internet bill", - "min_payment" - ], - [ - "what's the minimum payment on my credit card bill", - "min_payment" - ], - [ - "what's the minimum payment on my phone bill", - "min_payment" - ], - [ - "what is the minimum payment i can make on my electric bill", - "min_payment" - ], - [ - "what's the minimum payment on my gas bill", - "min_payment" - ], - [ - "what's the least payment i can make on my cable bill", - "min_payment" - ], - [ - "what is the minimum required payment for my cell phone bill", - "min_payment" - ], - [ - "what's the minimum i can pay on my sewer bill", - "min_payment" - ], - [ - "tell me minimum to pay on landscape bill", - "min_payment" - ], - [ - "show me the minimum payment for my boat bill", - "min_payment" - ], - [ - "minimum to pay on power bill", - "min_payment" - ], - [ - "what's the minimum payment for our cc bill", - "min_payment" - ], - [ - "pay the minimum payment for m and t bill", - "min_payment" - ], - [ - "tell me my minimum citicard payment", - "min_payment" - ], - [ - "how much is the minimum payment due for my citicard this month", - "min_payment" - ], - [ - "can you tell me my minimum due for citicard", - "min_payment" - ], - [ - "what is the minimum for my citicard this month", - "min_payment" - ], - [ - "change to whisper mode", - "whisper_mode" - ], - [ - "change mode to whisper", - "whisper_mode" - ], - [ - "whisper mode off", - "whisper_mode" - ], - [ - "change out of whisper mode", - "whisper_mode" - ], - [ - "turn off whisper mode", - "whisper_mode" - ], - [ - "activate whisper mode", - "whisper_mode" - ], - [ - "whisper mode activate", - "whisper_mode" - ], - [ - "can you please lower the volume please", - "whisper_mode" - ], - [ - "use your indoor voice please", - "whisper_mode" - ], - [ - "whisper for me", - "whisper_mode" - ], - [ - "is it possible for you to whisper for me", - "whisper_mode" - ], - [ - "turn on your whisper mode", - "whisper_mode" - ], - [ - "i'm going to need you to be quiet now please", - "whisper_mode" - ], - [ - "don't make too much noise", - "whisper_mode" - ], - [ - "go into whisper mode now please", - "whisper_mode" - ], - [ - "can you use the whisper voice", - "whisper_mode" - ], - [ - "volume to whisper voice", - "whisper_mode" - ], - [ - "turn on the whisper voice", - "whisper_mode" - ], - [ - "go to the whisper voice", - "whisper_mode" - ], - [ - "can you whisper until i tell you not to", - "whisper_mode" - ], - [ - "switch to your whispering voice please", - "whisper_mode" - ], - [ - "whisper from here on out please", - "whisper_mode" - ], - [ - "whisper from now on", - "whisper_mode" - ], - [ - "i need you to use your whisper voice", - "whisper_mode" - ], - [ - "do not talk so loudly", - "whisper_mode" - ], - [ - "use your quiet voice", - "whisper_mode" - ], - [ - "you need to speak softer", - "whisper_mode" - ], - [ - "speak quiet as though you were in a church", - "whisper_mode" - ], - [ - "change to normal vocals mode", - "whisper_mode" - ], - [ - "turn your volume up", - "whisper_mode" - ], - [ - "turn up your volume", - "whisper_mode" - ], - [ - "switch to quiet mode", - "whisper_mode" - ], - [ - "let's start whispering", - "whisper_mode" - ], - [ - "let's switch to whisper voice", - "whisper_mode" - ], - [ - "let's use whisper voice", - "whisper_mode" - ], - [ - "i decide to switch out of whisper mode", - "whisper_mode" - ], - [ - "i want to switch out of whisper mode", - "whisper_mode" - ], - [ - "can you whisper", - "whisper_mode" - ], - [ - "let's switch out of whisper mode", - "whisper_mode" - ], - [ - "let's whisper", - "whisper_mode" - ], - [ - "go to whisper mode", - "whisper_mode" - ], - [ - "can you switch out of whisper mode", - "whisper_mode" - ], - [ - "i think we should whisper", - "whisper_mode" - ], - [ - "shh please speak with a whisper", - "whisper_mode" - ], - [ - "please turn on whisper mode", - "whisper_mode" - ], - [ - "go into whisper mode now", - "whisper_mode" - ], - [ - "i need you to go into whisper mode", - "whisper_mode" - ], - [ - "please only use a whisper when speaking", - "whisper_mode" - ], - [ - "i can't be loud and need you to speak more quietly", - "whisper_mode" - ], - [ - "go back to whisper mode, please", - "whisper_mode" - ], - [ - "change to whisper mode, please", - "whisper_mode" - ], - [ - "switch to whisper mode, please", - "whisper_mode" - ], - [ - "go back to whisper mode", - "whisper_mode" - ], - [ - "please switch to whisper", - "whisper_mode" - ], - [ - "switch to the whisper mode", - "whisper_mode" - ], - [ - "switch over to whisper", - "whisper_mode" - ], - [ - "switch to whisper please", - "whisper_mode" - ], - [ - "i want whisper mode to be switched off", - "whisper_mode" - ], - [ - "i want you to use whisper voice now", - "whisper_mode" - ], - [ - "please turn on whisper voice", - "whisper_mode" - ], - [ - "i dont need whisper mode on any more", - "whisper_mode" - ], - [ - "could you please get out of whisper mode", - "whisper_mode" - ], - [ - "i need your setting switched to whisper mode right away", - "whisper_mode" - ], - [ - "please shut off whisper mode for now", - "whisper_mode" - ], - [ - "make sure to set yourself to whisper mode before i go to the movie", - "whisper_mode" - ], - [ - "please turn on whisper mode because i am about to be in class", - "whisper_mode" - ], - [ - "i want your setting adjusted to whisper voice now", - "whisper_mode" - ], - [ - "please switch to whisper mode for now", - "whisper_mode" - ], - [ - "please begin using the whisper voice setting", - "whisper_mode" - ], - [ - "i want you to be in whisper mode now because i am in the library", - "whisper_mode" - ], - [ - "can you change to the whisper voice setting", - "whisper_mode" - ], - [ - "please speak with the whisper voice", - "whisper_mode" - ], - [ - "exit out of whisper mode", - "whisper_mode" - ], - [ - "is it possible for you to use the whisper voice", - "whisper_mode" - ], - [ - "switch to whisper mode", - "whisper_mode" - ], - [ - "i'd like you to use the whisper voice", - "whisper_mode" - ], - [ - "immediately begin using whisper mode", - "whisper_mode" - ], - [ - "i can't hear you, stop whispering!", - "whisper_mode" - ], - [ - "start using whisper mode", - "whisper_mode" - ], - [ - "stop using the whisper mode", - "whisper_mode" - ], - [ - "engage whisper mode now", - "whisper_mode" - ], - [ - "can you go to the whisper voice", - "whisper_mode" - ], - [ - "go back to normal mode please", - "whisper_mode" - ], - [ - "use the whisper voice", - "whisper_mode" - ], - [ - "use your whispering voice", - "whisper_mode" - ], - [ - "6 inch voices please", - "whisper_mode" - ], - [ - "can you switch to whisper mode", - "whisper_mode" - ], - [ - "i want whisper mode", - "whisper_mode" - ], - [ - "please switch to whisper mode", - "whisper_mode" - ], - [ - "would you mind switching to whisper mode", - "whisper_mode" - ], - [ - "could you please switch to whisper mode", - "whisper_mode" - ], - [ - "if you don't mind, please switch to whisper mode", - "whisper_mode" - ], - [ - "i need you to switch to whisper mode", - "whisper_mode" - ], - [ - "i want you to switch to whisper mode", - "whisper_mode" - ], - [ - "talk in whisper voice", - "whisper_mode" - ], - [ - "please whisper", - "whisper_mode" - ], - [ - "please use whisper", - "whisper_mode" - ], - [ - "please talk quietly", - "whisper_mode" - ], - [ - "use whisper voice", - "whisper_mode" - ], - [ - "turn to whisper mode", - "whisper_mode" - ], - [ - "please cancel what you are doing, i've changed my mind", - "cancel" - ], - [ - "never mind, cancel that", - "cancel" - ], - [ - "stop working on it, i need something else", - "cancel" - ], - [ - "cancel my last request, i know the answer", - "cancel" - ], - [ - "forget it, i do not need it anymore", - "cancel" - ], - [ - "pause", - "cancel" - ], - [ - "cancel that last thing", - "cancel" - ], - [ - "silence", - "cancel" - ], - [ - "quit", - "cancel" - ], - [ - "mute", - "cancel" - ], - [ - "stop", - "cancel" - ], - [ - "stop and go back", - "cancel" - ], - [ - "ai stop talking", - "cancel" - ], - [ - "quiet now", - "cancel" - ], - [ - "shhhh", - "cancel" - ], - [ - "how do i make you stop talking", - "cancel" - ], - [ - "can you be quiet please", - "cancel" - ], - [ - "please stop doing what i asked", - "cancel" - ], - [ - "please be quiet", - "cancel" - ], - [ - "i would like you to stop what you were doing", - "cancel" - ], - [ - "please cancel that last command", - "cancel" - ], - [ - "can you cancel what you were doing", - "cancel" - ], - [ - "can you cancel", - "cancel" - ], - [ - "shut up!", - "cancel" - ], - [ - "i need you to stop talking now", - "cancel" - ], - [ - "i want you to quit the action", - "cancel" - ], - [ - "discontinue please", - "cancel" - ], - [ - "i don't want you to speak any more for now", - "cancel" - ], - [ - "discontinue your current task", - "cancel" - ], - [ - "abort please", - "cancel" - ], - [ - "quit the current action please", - "cancel" - ], - [ - "forget my previous command", - "cancel" - ], - [ - "abort the current action", - "cancel" - ], - [ - "actually forget that i don't need it", - "cancel" - ], - [ - "quit what you are doing", - "cancel" - ], - [ - "sorry, you can actually stop that", - "cancel" - ], - [ - "i actually don't want this anymore, please abort", - "cancel" - ], - [ - "please cancel your present task", - "cancel" - ], - [ - "that's enough, don't say anymore please", - "cancel" - ], - [ - "i want you to stop your present action", - "cancel" - ], - [ - "stop talking please", - "cancel" - ], - [ - "what you are doing is not actually helpful, please cancel the action", - "cancel" - ], - [ - "please stop", - "cancel" - ], - [ - "cancel action", - "cancel" - ], - [ - "please cancel the input", - "cancel" - ], - [ - "ai, stop talking", - "cancel" - ], - [ - "ai, shut up", - "cancel" - ], - [ - "ai, stop!", - "cancel" - ], - [ - "please be quiet now", - "cancel" - ], - [ - "terminate", - "cancel" - ], - [ - "negate last command", - "cancel" - ], - [ - "halt", - "cancel" - ], - [ - "would you stop talking please", - "cancel" - ], - [ - "please abandon the current job", - "cancel" - ], - [ - "please abort the current task", - "cancel" - ], - [ - "terminate current process", - "cancel" - ], - [ - "i want you to cancel the current action", - "cancel" - ], - [ - "abort", - "cancel" - ], - [ - "please stop doing that", - "cancel" - ], - [ - "abort running program", - "cancel" - ], - [ - "don't continue with what you're doing", - "cancel" - ], - [ - "oh shut the hell up would you", - "cancel" - ], - [ - "destroy process", - "cancel" - ], - [ - "please cancel that last task", - "cancel" - ], - [ - "please refrain from carrying out the current task", - "cancel" - ], - [ - "ai, cancel that last request", - "cancel" - ], - [ - "do not complete the task that i gave you", - "cancel" - ], - [ - "ai, please stop your current task", - "cancel" - ], - [ - "actually, cancel that command", - "cancel" - ], - [ - "nevermind, cancel that", - "cancel" - ], - [ - "actually, cancel that", - "cancel" - ], - [ - "forget it", - "cancel" - ], - [ - "cancel that", - "cancel" - ], - [ - "don't do this process", - "cancel" - ], - [ - "undo", - "cancel" - ], - [ - "cancel current process", - "cancel" - ], - [ - "undo this process", - "cancel" - ], - [ - "just shut up", - "cancel" - ], - [ - "stop that", - "cancel" - ], - [ - "cancel that input", - "cancel" - ], - [ - "never mind, don't do that", - "cancel" - ], - [ - "never mind", - "cancel" - ], - [ - "stop doing that", - "cancel" - ], - [ - "halt that immediately", - "cancel" - ], - [ - "stop the process happening now", - "cancel" - ], - [ - "stop, i changed my mind", - "cancel" - ], - [ - "cancel that last command", - "cancel" - ], - [ - "oops cancel that", - "cancel" - ], - [ - "can you stop", - "cancel" - ], - [ - "could you stop talking for a second", - "cancel" - ], - [ - "could you stop please", - "cancel" - ], - [ - "can you switch off", - "cancel" - ], - [ - "can you stop speaking", - "cancel" - ], - [ - "can you please cancel", - "cancel" - ], - [ - "can you end the task", - "cancel" - ], - [ - "scratch", - "cancel" - ], - [ - "refrain from talking", - "cancel" - ], - [ - "halt the process", - "cancel" - ], - [ - "no more talking", - "cancel" - ], - [ - "i advise you to quit talking", - "cancel" - ], - [ - "to visit cambodia, do i need an international visa", - "international_visa" - ], - [ - "do i need to get a visa to visit canada", - "international_visa" - ], - [ - "will i need a visa to visit ireland", - "international_visa" - ], - [ - "will i need a travel visa to go to canary islands", - "international_visa" - ], - [ - "i want to visit portugal do i need a travel visa", - "international_visa" - ], - [ - "i want to see paris will i need an international visa", - "international_visa" - ], - [ - "for travel to argentina, do i need to get a travel visa", - "international_visa" - ], - [ - "will i have to apply for a visa if i want to visit mexico", - "international_visa" - ], - [ - "to vacation to tel aviv do i need a travel visa", - "international_visa" - ], - [ - "do i need to obtain a travel visa to go on vacation to places in eastern europe", - "international_visa" - ], - [ - "would i need a tourist visa for brazil", - "international_visa" - ], - [ - "do i need a tourist visa for europe", - "international_visa" - ], - [ - "i want to know if i shouldget a tourist visa for italy", - "international_visa" - ], - [ - "is it necessary to apply for a tourist visa for mexico", - "international_visa" - ], - [ - "should i get a travel visa for spain", - "international_visa" - ], - [ - "does moscow require travel visas to visit", - "international_visa" - ], - [ - "would i need a travel visa to go to the congo", - "international_visa" - ], - [ - "do i need an international visa to go to south korea", - "international_visa" - ], - [ - "do i need an international visa to go to tibet", - "international_visa" - ], - [ - "do i need an international visa to go to vietnam", - "international_visa" - ], - [ - "do i need an international visa to go to hong kong", - "international_visa" - ], - [ - "do i need an international visa to go to malaysia", - "international_visa" - ], - [ - "i am going to travel to mexico soon; do i need to get a visa", - "international_visa" - ], - [ - "i need to know if i must have an international visa to go to france", - "international_visa" - ], - [ - "i'm going to jamaica next week; am i needing a visa", - "international_visa" - ], - [ - "tell me whether i need an international visa to go to mexico", - "international_visa" - ], - [ - "i'm going to mexico; do i need an international via", - "international_visa" - ], - [ - "let me know if i need an international visa to go to sudan", - "international_visa" - ], - [ - "am i in need of an international visa to go to france", - "international_visa" - ], - [ - "do i need to get a visa for traveling to chile", - "international_visa" - ], - [ - "do i need a visa to travel to jamaica", - "international_visa" - ], - [ - "i need to know if i need a visa to travel to el salvador", - "international_visa" - ], - [ - "would i need a visa if i want to travel to mexico", - "international_visa" - ], - [ - "do i need a visa to travel to mexico", - "international_visa" - ], - [ - "does mexico require me to have a visa to travel there", - "international_visa" - ], - [ - "is a visa needed to go to mexico", - "international_visa" - ], - [ - "if i want to travel to mexico do i need to get a visa", - "international_visa" - ], - [ - "do i need a visa to scotland", - "international_visa" - ], - [ - "do i need a visa to russia", - "international_visa" - ], - [ - "do i need a visa for canada", - "international_visa" - ], - [ - "do i need a travel visa to visit germany", - "international_visa" - ], - [ - "i am going to russia and am wondering if i need a visa", - "international_visa" - ], - [ - "do i need a travel visa to visit russia", - "international_visa" - ], - [ - "do i need a travel visa to visit canada", - "international_visa" - ], - [ - "i am going to germany soon do i need a visa", - "international_visa" - ], - [ - "do i need a travel visa to visit japan", - "international_visa" - ], - [ - "do i need to get a visa for russia", - "international_visa" - ], - [ - "do i need a visa to go to greece", - "international_visa" - ], - [ - "do i need a travel visa to visit china", - "international_visa" - ], - [ - "do i need a visa for germany", - "international_visa" - ], - [ - "do i need a visa to go to somewhere internationally", - "international_visa" - ], - [ - "do i need a visa to spain", - "international_visa" - ], - [ - "do i need an international visa to go to mexico", - "international_visa" - ], - [ - "do i need an international visa to go to england", - "international_visa" - ], - [ - "do i need an international visa to go to brazil", - "international_visa" - ], - [ - "do i need an international visa to go to canada", - "international_visa" - ], - [ - "do i need an international visa to go to spain", - "international_visa" - ], - [ - "should i get a visa before going to cancun", - "international_visa" - ], - [ - "is a visa required to visit cancun", - "international_visa" - ], - [ - "will i need a visa to travel to cancun", - "international_visa" - ], - [ - "do i need a visa to go to cancun", - "international_visa" - ], - [ - "do i need a visa to travel to canada", - "international_visa" - ], - [ - "does mexico travel require a visa", - "international_visa" - ], - [ - "would i need to get a visa to go to ireland", - "international_visa" - ], - [ - "if i'm planning to go to the uk, do i need a visa", - "international_visa" - ], - [ - "might i need to get a visa to travel to venezuela", - "international_visa" - ], - [ - "i'm going to be going to canada soon, do they require a visa for entry", - "international_visa" - ], - [ - "do i need a visa to get into canada later this year", - "international_visa" - ], - [ - "does travelling to that place require a visa", - "international_visa" - ], - [ - "do i need a visa to go there", - "international_visa" - ], - [ - "do i need a visa to leave the country", - "international_visa" - ], - [ - "does international travel always require a visa", - "international_visa" - ], - [ - "when does travelling require a visa", - "international_visa" - ], - [ - "if i go to canada next month do i need a visa", - "international_visa" - ], - [ - "do i need to bring a visa when i go to canada next month", - "international_visa" - ], - [ - "i'm going to canada soon, do i need a visa", - "international_visa" - ], - [ - "what paperwork will i need to visit northern ireland", - "international_visa" - ], - [ - "should i get a visa for crete", - "international_visa" - ], - [ - "will i need a visa to go to moldova", - "international_visa" - ], - [ - "does laos require a travel visa", - "international_visa" - ], - [ - "do i need to apply for a visa to visit dnipro", - "international_visa" - ], - [ - "israel has strict restrictions do i need a visa to travel there", - "international_visa" - ], - [ - "visa's are hard to get do i need one when i travel to israel", - "international_visa" - ], - [ - "i'm vacationing in israel will i need a visa", - "international_visa" - ], - [ - "do i need a visa to travel to isreal", - "international_visa" - ], - [ - "i'm heading to israel soon, do i need a visa", - "international_visa" - ], - [ - "do i have to have a visa to go to denmark", - "international_visa" - ], - [ - "do i need a visa to go to cuba", - "international_visa" - ], - [ - "do i have to have a visa to go to the cayman islands", - "international_visa" - ], - [ - "does jamaica require a visa", - "international_visa" - ], - [ - "what documents to i need to go to egypt", - "international_visa" - ], - [ - "does france have their own version of a visa", - "international_visa" - ], - [ - "does mexico require an international visa", - "international_visa" - ], - [ - "does ireland require an international visa", - "international_visa" - ], - [ - "do i need an international visa to enter canada", - "international_visa" - ], - [ - "do i have to get an international visa before they'll let me in melbourne", - "international_visa" - ], - [ - "must i have an international visa when travelling to russia", - "international_visa" - ], - [ - "is an international visa needed to travel to z", - "international_visa" - ], - [ - "i want to go to korea, do i need an international visa", - "international_visa" - ], - [ - "do i need to apply for a travel visa if i am going to bermuda", - "international_visa" - ], - [ - "are there any specific shots i should get before traveling to england", - "vaccines" - ], - [ - "what are the recommended shots to get before i travel to south korea", - "vaccines" - ], - [ - "what are the recommended shots to get before i travel to england", - "vaccines" - ], - [ - "are there recommendations to get any specific shots before i travel to germany", - "vaccines" - ], - [ - "do i need certain shots before flying to eithiopia", - "vaccines" - ], - [ - "what type of specific shots should i get before flying to south korea", - "vaccines" - ], - [ - "are there specific shots i need before traveling to japan", - "vaccines" - ], - [ - "is it recommended to get specific shots before i travel to japan", - "vaccines" - ], - [ - "do i need specific shots before traveling to germany", - "vaccines" - ], - [ - "is it recommended to get any shots before i travel to africa", - "vaccines" - ], - [ - "how many vaccinations will i need to travel to asia", - "vaccines" - ], - [ - "which countries require vaccinations before entering for travel", - "vaccines" - ], - [ - "which types of vaccinations are required when leaving the united states", - "vaccines" - ], - [ - "what are common illnesses i should be vaccinated against when leaving the united states", - "vaccines" - ], - [ - "what are common vaccinations for someone travelling internationally", - "vaccines" - ], - [ - "does travel to africa require any shots", - "vaccines" - ], - [ - "do i need to protect myself with some shots for a trip to vietnam", - "vaccines" - ], - [ - "do i need any shots if i travel to africa", - "vaccines" - ], - [ - "would i need any immunization if i go to thailand", - "vaccines" - ], - [ - "will i need immunization for a trip to turkey", - "vaccines" - ], - [ - "can you tell me which shots i need for africa", - "vaccines" - ], - [ - "do i need special shots to go to africa", - "vaccines" - ], - [ - "how many shots do i need before i go to africa", - "vaccines" - ], - [ - "what are the necessary shots for travel to africa", - "vaccines" - ], - [ - "before i leave for mexico should i get some more vaccinations", - "vaccines" - ], - [ - "what are the shots i need in order to travel to mexico", - "vaccines" - ], - [ - "what shots do i need before heading to france", - "vaccines" - ], - [ - "are there any shots i should get before going to south africa", - "vaccines" - ], - [ - "do i need any vaccinations before going to indonesia", - "vaccines" - ], - [ - "what vaccinations should i get if i go to nigeria", - "vaccines" - ], - [ - "are vaccinations needed for trips to guana", - "vaccines" - ], - [ - "should i get a vaccination before i go to katmandu", - "vaccines" - ], - [ - "do i need to get vaccinated to go to thailand", - "vaccines" - ], - [ - "which vaccinations are required to go to viet nam", - "vaccines" - ], - [ - "is it recommended to get any specific shots before i travel to argentina", - "vaccines" - ], - [ - "is it recommended to get any specific shots before i travel to canada", - "vaccines" - ], - [ - "do i need a vaccination for spain", - "vaccines" - ], - [ - "is it recommended to get any specific shots before i travel to norway", - "vaccines" - ], - [ - "is it recommended to get any specific shots before i travel to japan", - "vaccines" - ], - [ - "do i need a vaccination to go to europe", - "vaccines" - ], - [ - "do i need a vaccination to go to greece", - "vaccines" - ], - [ - "is it recommended to get any specific shots before i travel to iceland", - "vaccines" - ], - [ - "do i need a vaccination to go to china", - "vaccines" - ], - [ - "do i need vaccinations to travel overseas", - "vaccines" - ], - [ - "do i need any shots before i go to south africa", - "vaccines" - ], - [ - "should i get any shots before i go to kenya", - "vaccines" - ], - [ - "is there a list of recommended shots to get before travelling to kenya", - "vaccines" - ], - [ - "do i need to see the doctor for shots before i go to south africa", - "vaccines" - ], - [ - "are there recommended vaccines to go there", - "vaccines" - ], - [ - "are there shots required before going to south africa", - "vaccines" - ], - [ - "what shots are recommended before traveling to kenya", - "vaccines" - ], - [ - "do i need to get vaccines before my trip", - "vaccines" - ], - [ - "i'm going to south africa, do i need to get any shots first", - "vaccines" - ], - [ - "should i get any shots before i go to south africa", - "vaccines" - ], - [ - "tell me if i need any more vaccines if i go there", - "vaccines" - ], - [ - "are any shots recommended before going to kenya", - "vaccines" - ], - [ - "do i need to get shots before i go to kenya", - "vaccines" - ], - [ - "what vaccines do i need before i travel there", - "vaccines" - ], - [ - "are my vaccines up to date for going there", - "vaccines" - ], - [ - "do i need some shots, if i am traveling to china", - "vaccines" - ], - [ - "do i need some vaccinations or anything if i'm going to eastern europe", - "vaccines" - ], - [ - "i'm going to india do i need some shots", - "vaccines" - ], - [ - "if i'm going to africa, do i need some shots first", - "vaccines" - ], - [ - "i'm going to south africa, so should i get some vaccinations or anything", - "vaccines" - ], - [ - "traveling to the uk am i going to need any specific shots", - "vaccines" - ], - [ - "if i am going to the uk are any specific shots needed", - "vaccines" - ], - [ - "are shots needed for uk travel", - "vaccines" - ], - [ - "do i need any specific shots if i go to the uk", - "vaccines" - ], - [ - "am i going to need vaccines for the trip", - "vaccines" - ], - [ - "am i required to get a vaccine for this trip", - "vaccines" - ], - [ - "will this trip require vaccines", - "vaccines" - ], - [ - "if i travel to the uk do i need any shots", - "vaccines" - ], - [ - "does my trip require vaccines", - "vaccines" - ], - [ - "will i need vaccines for my trip", - "vaccines" - ], - [ - "what shots do i need to get in order to travel to khartoum", - "vaccines" - ], - [ - "do i have to get shots to travel to iraq", - "vaccines" - ], - [ - "what shots are required to go out of the country", - "vaccines" - ], - [ - "do i need shots to go to thailand", - "vaccines" - ], - [ - "do you have a list of shots that i need for traveling to denmark", - "vaccines" - ], - [ - "please tell me if i need any shots before i go to mexico", - "vaccines" - ], - [ - "which shots do i need before i go to thailand", - "vaccines" - ], - [ - "which shots do i need to get before i go to africa next week", - "vaccines" - ], - [ - "do i need shots before i get to africa", - "vaccines" - ], - [ - "can you tell me which vaccines i need to take before mexico", - "vaccines" - ], - [ - "can you tell me if there are any shots that i am required to have before traveling to south africa", - "vaccines" - ], - [ - "what shots do i need before traveling to malawi", - "vaccines" - ], - [ - "please tell me what shots i am required to get to travel to india", - "vaccines" - ], - [ - "are there any mandatory shots that i must get before my trip to jamaica", - "vaccines" - ], - [ - "do i need to get any shots to travel to mexico", - "vaccines" - ], - [ - "do i need vaccinations to travel there", - "vaccines" - ], - [ - "are vaccinations required to travel there", - "vaccines" - ], - [ - "are vaccinations necessary to go there", - "vaccines" - ], - [ - "do i need to get vaccinations before i go", - "vaccines" - ], - [ - "which vaccinations should i get before i go", - "vaccines" - ], - [ - "i need a list of vaccinations for a trip to paris", - "vaccines" - ], - [ - "list all the shots i need to travel to france", - "vaccines" - ], - [ - "what vaccinations do i needs to travel to paris", - "vaccines" - ], - [ - "what vaccinations are required to enter paris from outside the country", - "vaccines" - ], - [ - "tell me what vaccinations i need to get into france", - "vaccines" - ], - [ - "should i get any vaccines before going over to the uk", - "vaccines" - ], - [ - "what is my vacation schedule look like", - "pto_balance" - ], - [ - "can you explain to me what type of vacation days i have still", - "pto_balance" - ], - [ - "what type of vacation schedule do i have left", - "pto_balance" - ], - [ - "can i get vacation day totals i have left", - "pto_balance" - ], - [ - "how many vacation days do i have saved up, please", - "pto_balance" - ], - [ - "how many vacation days do i have remaining", - "pto_balance" - ], - [ - "how many vacation days do i have saved up", - "pto_balance" - ], - [ - "how many vacation days do i have remaining, please", - "pto_balance" - ], - [ - "how many vacation days do i have left", - "pto_balance" - ], - [ - "how many vacation days do i still have", - "pto_balance" - ], - [ - "how many vacation days do i still get", - "pto_balance" - ], - [ - "i want to know how much vacation time i can use", - "pto_balance" - ], - [ - "do i have any vacation days to use", - "pto_balance" - ], - [ - "tell me if i have any spare vacation days", - "pto_balance" - ], - [ - "do i have any vacation time left", - "pto_balance" - ], - [ - "do i have any vacation days left", - "pto_balance" - ], - [ - "how many holiday days do i have left to use", - "pto_balance" - ], - [ - "i want to know how many vacation days i can use", - "pto_balance" - ], - [ - "how many vacation days do i have", - "pto_balance" - ], - [ - "do i have any personal days left", - "pto_balance" - ], - [ - "how many of my vacation days do i have remaining", - "pto_balance" - ], - [ - "how many vacation hours do i have", - "pto_balance" - ], - [ - "how much paid time off do i have saved", - "pto_balance" - ], - [ - "how many days do i have left of pto", - "pto_balance" - ], - [ - "how many day of my vacation are left for the year", - "pto_balance" - ], - [ - "how many pto days do i have left", - "pto_balance" - ], - [ - "how many pto days do i have for the year", - "pto_balance" - ], - [ - "how many vacation days do i have for the year", - "pto_balance" - ], - [ - "how many vacation days have i accrued", - "pto_balance" - ], - [ - "can you tell me how much pto i still have", - "pto_balance" - ], - [ - "what's the current amount of vacation owed to me", - "pto_balance" - ], - [ - "what number of vacation days remain for me", - "pto_balance" - ], - [ - "how many days can i slack off this year", - "pto_balance" - ], - [ - "do i have enough vacation to take a european trip", - "pto_balance" - ], - [ - "how much vacation am i currently entitled to", - "pto_balance" - ], - [ - "what's the amount of pto i have left", - "pto_balance" - ], - [ - "how much paid time off have i earned to date", - "pto_balance" - ], - [ - "what pto time to i have remaining", - "pto_balance" - ], - [ - "what's the current count of my pto days", - "pto_balance" - ], - [ - "what's the count of vacation days i have left", - "pto_balance" - ], - [ - "how much pto have i accrued", - "pto_balance" - ], - [ - "do i still have any pto days left, and if so, how many", - "pto_balance" - ], - [ - "how much pto do i have left", - "pto_balance" - ], - [ - "how much time off do i have left", - "pto_balance" - ], - [ - "what's my vacation day total", - "pto_balance" - ], - [ - "do i still have vacation days", - "pto_balance" - ], - [ - "how many vacation days do i have to spend", - "pto_balance" - ], - [ - "check how much pto i have left", - "pto_balance" - ], - [ - "what's the status on my vacation days", - "pto_balance" - ], - [ - "check days of pto", - "pto_balance" - ], - [ - "what is the saved vacation time i have left", - "pto_balance" - ], - [ - "how much time do i have for vacation saved", - "pto_balance" - ], - [ - "how many days of vacation time do i have saved", - "pto_balance" - ], - [ - "what is the amount of vacation days i have left", - "pto_balance" - ], - [ - "how many saved days of vacation time do i have", - "pto_balance" - ], - [ - "how many days for vacation do i have left", - "pto_balance" - ], - [ - "hoe many vacation days are left for me", - "pto_balance" - ], - [ - "how many days are left for me for vacation if i may ask", - "pto_balance" - ], - [ - "how many days off for vacation do i have left", - "pto_balance" - ], - [ - "how many vacation days do i have left this year", - "pto_balance" - ], - [ - "how many vacation days do i have saved", - "pto_balance" - ], - [ - "can you figure out how many vacation days i have left", - "pto_balance" - ], - [ - "i have how many vacation days saved up", - "pto_balance" - ], - [ - "i have how many vacation days left this year", - "pto_balance" - ], - [ - "i have how many vacation days left", - "pto_balance" - ], - [ - "how many days of vacation have i saved", - "pto_balance" - ], - [ - "i've saved what number of days of vacation", - "pto_balance" - ], - [ - "tell me the number of vacation days i have stored", - "pto_balance" - ], - [ - "what's the number of remaining vacation days i have", - "pto_balance" - ], - [ - "how many pto days do i have remaining", - "pto_balance" - ], - [ - "what is my remaining pto days", - "pto_balance" - ], - [ - "can you tell me the number of pto days i have left", - "pto_balance" - ], - [ - "can you tell me the remaining time i have for pto", - "pto_balance" - ], - [ - "do you know ho many vacation days i currently have", - "pto_balance" - ], - [ - "would you please tell me how many vacation days i have", - "pto_balance" - ], - [ - "please tell me how many vacation days i currently have", - "pto_balance" - ], - [ - "could you tell me how many vacation days i have left", - "pto_balance" - ], - [ - "how many days of vacation do i have", - "pto_balance" - ], - [ - "how much vacation time have i accrued", - "pto_balance" - ], - [ - "how many vacation hours have i accrued", - "pto_balance" - ], - [ - "please calculate my vacation time", - "pto_balance" - ], - [ - "i'd like to know how many vacation days i have", - "pto_balance" - ], - [ - "i want to know how many vacation days i have", - "pto_balance" - ], - [ - "what number of vacation days do i have", - "pto_balance" - ], - [ - "tell me how many vacation days i have", - "pto_balance" - ], - [ - "let me know the number of vacation days i have", - "pto_balance" - ], - [ - "i need to know how many vacation days i have", - "pto_balance" - ], - [ - "would you provide the number of vacation days i have", - "pto_balance" - ], - [ - "provide me the number of vacation days i have", - "pto_balance" - ], - [ - "how much pto do i have", - "pto_balance" - ], - [ - "do i have any remaining pto days", - "pto_balance" - ], - [ - "how much paid time off do i have", - "pto_balance" - ], - [ - "do i have any pto days left", - "pto_balance" - ], - [ - "do i have enough pto to take time off", - "pto_balance" - ], - [ - "how many more vacation days do i have for the year", - "pto_balance" - ], - [ - "tell me how many vacation days i have left", - "pto_balance" - ], - [ - "how many more vacation days can i use this year", - "pto_balance" - ], - [ - "how many vacation days are available to me", - "pto_balance" - ], - [ - "how many more pto days are there for me", - "pto_balance" - ], - [ - "let me know my vacation time", - "pto_balance" - ], - [ - "i'm at home, so where is the closest starbucks", - "directions" - ], - [ - "what's the distance between home and the closest starbucks", - "directions" - ], - [ - "is there a starbucks close to home", - "directions" - ], - [ - "direct me to the closest starbucks near home", - "directions" - ], - [ - "does home have a starbucks nearby", - "directions" - ], - [ - "how do i get to the beach by bus", - "directions" - ], - [ - "how do i get to the park on foot", - "directions" - ], - [ - "how do i get to the train on foot", - "directions" - ], - [ - "how do i get to the mall by bus", - "directions" - ], - [ - "how to i get to the mall on foot", - "directions" - ], - [ - "how do i get to the supermarket on foot", - "directions" - ], - [ - "how do i get to the museum on foot", - "directions" - ], - [ - "how do i get to the college by bus", - "directions" - ], - [ - "how do i get to the hotel by bus", - "directions" - ], - [ - "how do i get to the museum by bus", - "directions" - ], - [ - "assist me to know how to get to target by bus", - "directions" - ], - [ - "would you tell me how to get to walmart by bus", - "directions" - ], - [ - "i am needing you to tell me how to get to dallas, texas, by bus", - "directions" - ], - [ - "i need to know how to get to target by bus", - "directions" - ], - [ - "tell me how to get to target by bus", - "directions" - ], - [ - "i need to know where the nearest place that has mountain dew is", - "directions" - ], - [ - "how can i take a bus to dallas", - "directions" - ], - [ - "what steps do i need to take to take a bus to detroit", - "directions" - ], - [ - "how can i travel by bus to the grand canyon", - "directions" - ], - [ - "direct me to the closest korean grocery", - "directions" - ], - [ - "i want to visit chicago by bus what do i need to do", - "directions" - ], - [ - "tell me where is the closest coffee shop", - "directions" - ], - [ - "where can i find the mall closest to here", - "directions" - ], - [ - "can you tell me where the nearest rest station to me is", - "directions" - ], - [ - "i want to take a bus to mexico city how do i do that", - "directions" - ], - [ - "let me know how to get to the starbucks nearby", - "directions" - ], - [ - "would you give me directions to the closest starbucks restaurant", - "directions" - ], - [ - "how do i get to the closest starbucks", - "directions" - ], - [ - "where is the closest starbucks", - "directions" - ], - [ - "please give me directions to the nearest starbucks", - "directions" - ], - [ - "could you tell me how to get to the statue of liberty by bus", - "directions" - ], - [ - "from here, how do i get to the statue of liberty by bus", - "directions" - ], - [ - "i want to know how to get to statue of liberty by bus", - "directions" - ], - [ - "how do i get to statue of liberty by bus", - "directions" - ], - [ - "which bus should i take to get to the statue of liberty", - "directions" - ], - [ - "how close is a gas station to mcdonalds", - "directions" - ], - [ - "i need to get to a church immediately, please take me to one!", - "directions" - ], - [ - "take me to the nearest dairy queen", - "directions" - ], - [ - "can i take a bus to the grand canyon", - "directions" - ], - [ - "how do i get to the nearest post office", - "directions" - ], - [ - "where's the nearest gas station", - "directions" - ], - [ - "how would i walk to the liberty bell from here", - "directions" - ], - [ - "find me the closest public bathroom", - "directions" - ], - [ - "guide me to a laundromat near me", - "directions" - ], - [ - "take me to the closest walmart", - "directions" - ], - [ - "does the bus go to the washington monument", - "directions" - ], - [ - "are there any furniture outlets near the mall", - "directions" - ], - [ - "what's the best way to get to my bank by walking", - "directions" - ], - [ - "can a bus get me to the statue of liberty", - "directions" - ], - [ - "is a bar close to my church", - "directions" - ], - [ - "how do i get to the statue of liberty on foot", - "directions" - ], - [ - "what's the nearest ups store to walmart", - "directions" - ], - [ - "is there a tire repair place near the post office", - "directions" - ], - [ - "how do i get to the leaning tower by bus", - "directions" - ], - [ - "what's the closest mcdonalds", - "directions" - ], - [ - "what's the quickest way to a bank", - "directions" - ], - [ - "i want to see the golden gate bridge and i'm walking on 5th street right now", - "directions" - ], - [ - "is it possible to take the bus to the brooklyn bridge", - "directions" - ], - [ - "give me directions to the nearest gas station", - "directions" - ], - [ - "what's the direction for foot traffic to get to the eiffel tower", - "directions" - ], - [ - "i need directions to get to olympia by bus", - "directions" - ], - [ - "what are the directions to get to olympia by bus", - "directions" - ], - [ - "do you know how i get to olympia by bus", - "directions" - ], - [ - "is it possible to get to olympia by bus", - "directions" - ], - [ - "is there a way to go by bus to olympia", - "directions" - ], - [ - "i need an address for the closest starbucks to home", - "directions" - ], - [ - "please tell me the location of the nearest target store", - "directions" - ], - [ - "can you tell me where the atm closest to my current location is", - "directions" - ], - [ - "where is the nearest gas station to 20th and market streets, in philadelphia, pa", - "directions" - ], - [ - "find me the location of the nearest gas station", - "directions" - ], - [ - "can you tell me the nearest wells fargo bank location to port authority, new york", - "directions" - ], - [ - "please tell me the subway station nearest to madison square garden in new york", - "directions" - ], - [ - "what are the nearest streets to the statue of liberty in new york", - "directions" - ], - [ - "search for the nearest atm to newark penn station, newark in new jersey", - "directions" - ], - [ - "search for the nearest expressway to the airport", - "directions" - ], - [ - "where is starbucks", - "directions" - ], - [ - "starbucks near me", - "directions" - ], - [ - "find me starbucks", - "directions" - ], - [ - "what's the nearest starbucks", - "directions" - ], - [ - "where is the closest chevron gas station in columbus, ohio", - "directions" - ], - [ - "where is the nearest denny's to gillette stadium", - "directions" - ], - [ - "where is the closest walmart to boise, idaho", - "directions" - ], - [ - "where is the closest applebees to the empire state building", - "directions" - ], - [ - "where is the closest dog groomer in charlotte, north carolina", - "directions" - ], - [ - "i want to know the nearest bank's location", - "directions" - ], - [ - "i need to know the nearest bank's location", - "directions" - ], - [ - "i want to get directions to the closest atm", - "directions" - ], - [ - "i would like to know where the closest gas station is", - "directions" - ], - [ - "i want directions to the closest atm", - "directions" - ], - [ - "give me the location for the nearest bank", - "directions" - ], - [ - "i need to know directions to the nearest gas station", - "directions" - ], - [ - "can you tell me the nearest restaurant to me and give me directions", - "directions" - ], - [ - "can you tell me the location of the nearest bank", - "directions" - ], - [ - "where is the closest mcdonalds", - "directions" - ], - [ - "how would i get to city hall via bus", - "directions" - ], - [ - "what is the spelling of potato", - "spelling" - ], - [ - "spell potato", - "spelling" - ], - [ - "give me the spelling of potato", - "spelling" - ], - [ - "spell out potato", - "spelling" - ], - [ - "how do you spell tomato", - "spelling" - ], - [ - "can you spell water", - "spelling" - ], - [ - "how do you spell water", - "spelling" - ], - [ - "how is water spelled", - "spelling" - ], - [ - "water is spelled how", - "spelling" - ], - [ - "spell water", - "spelling" - ], - [ - "what's the letters in 'you' word like", - "spelling" - ], - [ - "the word 'you' got how many letters", - "spelling" - ], - [ - "how do you spell out university", - "spelling" - ], - [ - "how do you spell out newspaper", - "spelling" - ], - [ - "how do you spell out shepherd", - "spelling" - ], - [ - "how do you spell out espresso", - "spelling" - ], - [ - "how do you spell out wednesday", - "spelling" - ], - [ - "can you spell \"diatribe\" for me", - "spelling" - ], - [ - "spell \"requisite\" for me", - "spelling" - ], - [ - "what's the right way to spell miscellaneous", - "spelling" - ], - [ - "how do you spell syzygy", - "spelling" - ], - [ - "tell me how to spell anonymous", - "spelling" - ], - [ - "how is the word economy spelled", - "spelling" - ], - [ - "can you spell out the word special for me", - "spelling" - ], - [ - "i need to know how many r's are in restaurant", - "spelling" - ], - [ - "i need to know how to spell excellent", - "spelling" - ], - [ - "spell the word restaurant for me", - "spelling" - ], - [ - "tell me how many p's are in apple", - "spelling" - ], - [ - "how many e's are in sesame", - "spelling" - ], - [ - "tell me how many a's are in magical", - "spelling" - ], - [ - "what is the proper way to spell diamond", - "spelling" - ], - [ - "do you know how many o's are in honor", - "spelling" - ], - [ - "what's the right spelling of rambunctious", - "spelling" - ], - [ - "how do i spell catheter", - "spelling" - ], - [ - "can you tell me how to spell manipulation", - "spelling" - ], - [ - "what is the correct spelling of judgment", - "spelling" - ], - [ - "what's the spelling of cancer", - "spelling" - ], - [ - "how do you spell antithesis", - "spelling" - ], - [ - "how do i spell ambitious", - "spelling" - ], - [ - "how do you spell verisimilitude", - "spelling" - ], - [ - "how do you spell asian", - "spelling" - ], - [ - "what's the spelling of multimedia", - "spelling" - ], - [ - "can you tell me how to spell elephant", - "spelling" - ], - [ - "how do you spell hotdog", - "spelling" - ], - [ - "can you spell hamburger", - "spelling" - ], - [ - "spell government", - "spelling" - ], - [ - "tell me how to spell automobile", - "spelling" - ], - [ - "i need to know how to spell friend", - "spelling" - ], - [ - "how is friend spelled", - "spelling" - ], - [ - "how is the word acquaintance spelled", - "spelling" - ], - [ - "how do you spell friend", - "spelling" - ], - [ - "how do i spell acquaintance", - "spelling" - ], - [ - "what's the right way to spell indict", - "spelling" - ], - [ - "i want to know how to correctly spell cemetery", - "spelling" - ], - [ - "how do you spell mississippi", - "spelling" - ], - [ - "i wish i knew how to spell mississippi", - "spelling" - ], - [ - "can you remind me how to spell because", - "spelling" - ], - [ - "i need to know how to spell conscience", - "spelling" - ], - [ - "i need to know how to spell xylophone", - "spelling" - ], - [ - "how do you spell guerrilla", - "spelling" - ], - [ - "i am not sure how to spell punctuation", - "spelling" - ], - [ - "i forget how to spell xylophone", - "spelling" - ], - [ - "i don't know how to spell spaghetti", - "spelling" - ], - [ - "i don't know how to spell threshold", - "spelling" - ], - [ - "i don't know how to spell circumference", - "spelling" - ], - [ - "i don't know how to spell squirrel", - "spelling" - ], - [ - "i don't know how to spell mississippi", - "spelling" - ], - [ - "how can i spell avocado", - "spelling" - ], - [ - "tell me the complete spelling of definitely", - "spelling" - ], - [ - "i'd like to know how to spell cemetary", - "spelling" - ], - [ - "tell me how handkerchief is spelled", - "spelling" - ], - [ - "i'd like to know how acommodate is spelled", - "spelling" - ], - [ - "count the number of the letter a in happiness", - "spelling" - ], - [ - "the word is happiness; how many a's can you find in that word", - "spelling" - ], - [ - "find all the \"a\"s in happiness", - "spelling" - ], - [ - "tell how many a's are in the word happiness", - "spelling" - ], - [ - "how many a's can you find in the word happiness", - "spelling" - ], - [ - "what is the correct spelling for antipathy", - "spelling" - ], - [ - "how does the dictionary spell antipathy", - "spelling" - ], - [ - "how do you spell antipathy", - "spelling" - ], - [ - "spell antipathy for me", - "spelling" - ], - [ - "can you give me a spelling for antipathy", - "spelling" - ], - [ - "how do you spell superficial", - "spelling" - ], - [ - "i need help spelling superficial", - "spelling" - ], - [ - "i need to know how to spell superficial", - "spelling" - ], - [ - "i can't figure out how to spell superficial", - "spelling" - ], - [ - "what is the right way to spell superficial", - "spelling" - ], - [ - "how many es are in receiving", - "spelling" - ], - [ - "i don't know how to spell anethesia", - "spelling" - ], - [ - "i don't know how to spell malfeasance", - "spelling" - ], - [ - "i don't know how to spell theater", - "spelling" - ], - [ - "i don't know how to spell apparently", - "spelling" - ], - [ - "what's the proper way of spelling seance", - "spelling" - ], - [ - "how many ts are in tethered", - "spelling" - ], - [ - "how many cs are in acquiescence", - "spelling" - ], - [ - "how many ss are in narcissism", - "spelling" - ], - [ - "how do you spell sanguine", - "spelling" - ], - [ - "can you help me spell facetiousness", - "spelling" - ], - [ - "i don't know how to spell drought", - "spelling" - ], - [ - "how man z's are in zombie", - "spelling" - ], - [ - "how's everything", - "greeting" - ], - [ - "how are things going", - "greeting" - ], - [ - "hello, anyone there", - "greeting" - ], - [ - "are you okay right now", - "greeting" - ], - [ - "are you doing okay", - "greeting" - ], - [ - "how's it going right now", - "greeting" - ], - [ - "ahoy hoy", - "greeting" - ], - [ - "hey there!", - "greeting" - ], - [ - "how is everything with you", - "greeting" - ], - [ - "hey hey!", - "greeting" - ], - [ - "how have you been doing", - "greeting" - ], - [ - "it's nice to see you", - "greeting" - ], - [ - "hello there!", - "greeting" - ], - [ - "how is it going", - "greeting" - ], - [ - "how are things with you", - "greeting" - ], - [ - "hiya!", - "greeting" - ], - [ - "what's up", - "greeting" - ], - [ - "how're you doing", - "greeting" - ], - [ - "it's good to see you", - "greeting" - ], - [ - "is everything going okay", - "greeting" - ], - [ - "how is everything going", - "greeting" - ], - [ - "how goes it", - "greeting" - ], - [ - "hello, ai", - "greeting" - ], - [ - "hey, ai", - "greeting" - ], - [ - "wake up, ai", - "greeting" - ], - [ - "good day", - "greeting" - ], - [ - "greetings to you", - "greeting" - ], - [ - "hello, friend", - "greeting" - ], - [ - "whats up with you", - "greeting" - ], - [ - "hey there fellow", - "greeting" - ], - [ - "whats up", - "greeting" - ], - [ - "yo, hows it going", - "greeting" - ], - [ - "how are things for you", - "greeting" - ], - [ - "are things going well for you", - "greeting" - ], - [ - "hello siri", - "greeting" - ], - [ - "hi there alexa", - "greeting" - ], - [ - "how are you doing, ai", - "greeting" - ], - [ - "ai how are you doing today", - "greeting" - ], - [ - "how are you doing today, ai", - "greeting" - ], - [ - "how is my ai doing", - "greeting" - ], - [ - "ai how are you doing on this fine day", - "greeting" - ], - [ - "heller", - "greeting" - ], - [ - "so how is everything", - "greeting" - ], - [ - "how are you this day", - "greeting" - ], - [ - "hi how are you", - "greeting" - ], - [ - "how is everything going for you", - "greeting" - ], - [ - "hi how is everything", - "greeting" - ], - [ - "well hello", - "greeting" - ], - [ - "just wanted to say hi", - "greeting" - ], - [ - "how is your day", - "greeting" - ], - [ - "why hello", - "greeting" - ], - [ - "are you well", - "greeting" - ], - [ - "hola", - "greeting" - ], - [ - "good to see you", - "greeting" - ], - [ - "how've you been feeling", - "greeting" - ], - [ - "how are things", - "greeting" - ], - [ - "are you doing well", - "greeting" - ], - [ - "good evening", - "greeting" - ], - [ - "yo", - "greeting" - ], - [ - "ai, how are you feeling", - "greeting" - ], - [ - "how is the ai doing", - "greeting" - ], - [ - "ai, how are you doing", - "greeting" - ], - [ - "hi ai", - "greeting" - ], - [ - "have you been good", - "greeting" - ], - [ - "is everything ok with you", - "greeting" - ], - [ - "how have you been", - "greeting" - ], - [ - "are you doing ok", - "greeting" - ], - [ - "how are you", - "greeting" - ], - [ - "how's life", - "greeting" - ], - [ - "what's up with you", - "greeting" - ], - [ - "what's going on", - "greeting" - ], - [ - "how's it going with you", - "greeting" - ], - [ - "how's ife treating you", - "greeting" - ], - [ - "hello how's it going", - "greeting" - ], - [ - "how are you today", - "greeting" - ], - [ - "can you tell me how you're doing today", - "greeting" - ], - [ - "how are you this fine day", - "greeting" - ], - [ - "how are things treating you", - "greeting" - ], - [ - "aloha", - "greeting" - ], - [ - "are you feeling okay", - "greeting" - ], - [ - "how do you feel", - "greeting" - ], - [ - "bonjour", - "greeting" - ], - [ - "how are things going for you", - "greeting" - ], - [ - "what do you feel like doing", - "greeting" - ], - [ - "hello, what's up", - "greeting" - ], - [ - "hey how's life", - "greeting" - ], - [ - "hi there", - "greeting" - ], - [ - "hey how's it hanging", - "greeting" - ], - [ - "tell me how you've been", - "greeting" - ], - [ - "how is life treating you", - "greeting" - ], - [ - "hi there, how are things", - "greeting" - ], - [ - "hello, how are you", - "greeting" - ], - [ - "hey, how's it going", - "greeting" - ], - [ - "hello, are you doing alright", - "greeting" - ], - [ - "hi! are you doing okay", - "greeting" - ], - [ - "what's happening", - "greeting" - ], - [ - "hey what's up", - "greeting" - ], - [ - "why, hello bandit", - "greeting" - ], - [ - "howdy, what's new", - "greeting" - ], - [ - "salutations!", - "greeting" - ], - [ - "make the settings go back to the original", - "reset_settings" - ], - [ - "go back the the settings you had originally", - "reset_settings" - ], - [ - "change settings to how they were originally", - "reset_settings" - ], - [ - "go back to your original settings", - "reset_settings" - ], - [ - "reset the factory settings", - "reset_settings" - ], - [ - "reset the factory settings please", - "reset_settings" - ], - [ - "reset the factory settings now please", - "reset_settings" - ], - [ - "please reset the factory settings", - "reset_settings" - ], - [ - "reset the factory settings if possible", - "reset_settings" - ], - [ - "go ahead and reset your factory settings", - "reset_settings" - ], - [ - "change to factory settings now", - "reset_settings" - ], - [ - "please go back to to factory settings now", - "reset_settings" - ], - [ - "go back to factory settings now", - "reset_settings" - ], - [ - "you need to go back to the original settings", - "reset_settings" - ], - [ - "go ahead and go back to the original settings", - "reset_settings" - ], - [ - "i want you to reset your factory settings", - "reset_settings" - ], - [ - "please go back to the original settings", - "reset_settings" - ], - [ - "please reset your factory settings", - "reset_settings" - ], - [ - "go back to the original settings now", - "reset_settings" - ], - [ - "please go back to the settings of the original", - "reset_settings" - ], - [ - "i need you to reset your factory settings", - "reset_settings" - ], - [ - "you got to go back to factory settings now", - "reset_settings" - ], - [ - "please go to factory settings now", - "reset_settings" - ], - [ - "restore my factory settings immediately please", - "reset_settings" - ], - [ - "go back to factory settings please", - "reset_settings" - ], - [ - "can you restore factory settings now", - "reset_settings" - ], - [ - "go back to the factory settings for this device", - "reset_settings" - ], - [ - "i want factory settings restores right now", - "reset_settings" - ], - [ - "do a hard reset to factory settings", - "reset_settings" - ], - [ - "i'd like to reset to factory settings", - "reset_settings" - ], - [ - "clear all settings in a reset", - "reset_settings" - ], - [ - "please revert all settings to factory default", - "reset_settings" - ], - [ - "i'd like to revert to factory settings", - "reset_settings" - ], - [ - "reset to factory default", - "reset_settings" - ], - [ - "do a hard reset", - "reset_settings" - ], - [ - "please revert to your factory settings", - "reset_settings" - ], - [ - "return to your factory settings", - "reset_settings" - ], - [ - "you need to reset your factory settings", - "reset_settings" - ], - [ - "would you reset your factory settings", - "reset_settings" - ], - [ - "you should reset your factory settings", - "reset_settings" - ], - [ - "could you reset your factory settings please", - "reset_settings" - ], - [ - "reset to original settings", - "reset_settings" - ], - [ - "return to default settings", - "reset_settings" - ], - [ - "return to factory default", - "reset_settings" - ], - [ - "change back to your initial settings please", - "reset_settings" - ], - [ - "go back to your normal settings please", - "reset_settings" - ], - [ - "alter back to your orginal settings", - "reset_settings" - ], - [ - "reset to your natural settings", - "reset_settings" - ], - [ - "change back to your factory settins", - "reset_settings" - ], - [ - "i want to go back to the factory settings", - "reset_settings" - ], - [ - "help me get my device back to it's factory settings", - "reset_settings" - ], - [ - "tell me how i can reset to factory settings", - "reset_settings" - ], - [ - "i want my original settings back", - "reset_settings" - ], - [ - "return it back to the original settings", - "reset_settings" - ], - [ - "please turn my settings back to the original settings", - "reset_settings" - ], - [ - "get my back to factory settings", - "reset_settings" - ], - [ - "refresh to factory defaults", - "reset_settings" - ], - [ - "reset to default settings please", - "reset_settings" - ], - [ - "reset device to original settings", - "reset_settings" - ], - [ - "reset to default settings", - "reset_settings" - ], - [ - "please change back to initial device settings", - "reset_settings" - ], - [ - "go back to initial factory state", - "reset_settings" - ], - [ - "go back to initial settings", - "reset_settings" - ], - [ - "make all settings the initial defaults if you would", - "reset_settings" - ], - [ - "revert to factory settings please", - "reset_settings" - ], - [ - "i want you to reset to brand new please", - "reset_settings" - ], - [ - "revert to your factory settings", - "reset_settings" - ], - [ - "restore your original settings", - "reset_settings" - ], - [ - "restore your factory settings, please", - "reset_settings" - ], - [ - "restore your original settings now", - "reset_settings" - ], - [ - "restore your original settings, please", - "reset_settings" - ], - [ - "revert back to your factory settings", - "reset_settings" - ], - [ - "return to your original settings, please", - "reset_settings" - ], - [ - "revert to your factory settings, please", - "reset_settings" - ], - [ - "switch back to your factory settings", - "reset_settings" - ], - [ - "revert back to your factory settings, please", - "reset_settings" - ], - [ - "is it possible to change to original settings", - "reset_settings" - ], - [ - "can you go back to my original settings", - "reset_settings" - ], - [ - "i need you to switch to my original settings", - "reset_settings" - ], - [ - "go to default setting", - "reset_settings" - ], - [ - "change back to default settings", - "reset_settings" - ], - [ - "i want to be switched back to my factory settings", - "reset_settings" - ], - [ - "i'd like to switch back to my factory settings", - "reset_settings" - ], - [ - "put me back on my factory settings", - "reset_settings" - ], - [ - "i need to switch back to my factory settings", - "reset_settings" - ], - [ - "i need to go back on my factory settings", - "reset_settings" - ], - [ - "return to your original settings", - "reset_settings" - ], - [ - "restore the factory settings", - "reset_settings" - ], - [ - "let's go to default settings", - "reset_settings" - ], - [ - "go to factory settings", - "reset_settings" - ], - [ - "would you please reboot yourself to factory settings", - "reset_settings" - ], - [ - "please go back to your factory settings", - "reset_settings" - ], - [ - "please reconfigure yourself back to factory settings", - "reset_settings" - ], - [ - "i would like you to revert to your factory settings", - "reset_settings" - ], - [ - "i want to put you back to original settings", - "reset_settings" - ], - [ - "i want you reset to factory settings", - "reset_settings" - ], - [ - "i want factory settings put back in place", - "reset_settings" - ], - [ - "i want to reset your settings to the original", - "reset_settings" - ], - [ - "go back to the original settings", - "reset_settings" - ], - [ - "go back to your factory settings", - "reset_settings" - ], - [ - "what's your full name", - "what_is_your_name" - ], - [ - "i didn't get your name", - "what_is_your_name" - ], - [ - "what's should i call you by", - "what_is_your_name" - ], - [ - "can you tell me the ai's name", - "what_is_your_name" - ], - [ - "what is the ai's name", - "what_is_your_name" - ], - [ - "does the ai have a name", - "what_is_your_name" - ], - [ - "i'd like to know what to call you", - "what_is_your_name" - ], - [ - "what name do you prefer", - "what_is_your_name" - ], - [ - "do you have a preference regarding what i should call you", - "what_is_your_name" - ], - [ - "do you have a name i can use", - "what_is_your_name" - ], - [ - "what are you called", - "what_is_your_name" - ], - [ - "give me your name", - "what_is_your_name" - ], - [ - "what do people call you", - "what_is_your_name" - ], - [ - "what is your full name", - "what_is_your_name" - ], - [ - "tell me your full name", - "what_is_your_name" - ], - [ - "should i call you something in particular", - "what_is_your_name" - ], - [ - "what should i refer to you as", - "what_is_your_name" - ], - [ - "what name would you like me to call you", - "what_is_your_name" - ], - [ - "what name do you want me to call you", - "what_is_your_name" - ], - [ - "do you have a name that i can call you", - "what_is_your_name" - ], - [ - "what name should i use when talking with you", - "what_is_your_name" - ], - [ - "is there a particular name i should call you", - "what_is_your_name" - ], - [ - "is there a name that you preferred to be called by", - "what_is_your_name" - ], - [ - "please tell me the name i should use when talking to you", - "what_is_your_name" - ], - [ - "can i have your name please", - "what_is_your_name" - ], - [ - "can you me what they call you", - "what_is_your_name" - ], - [ - "and what would your name be", - "what_is_your_name" - ], - [ - "what name should i use for you", - "what_is_your_name" - ], - [ - "what would your name be", - "what_is_your_name" - ], - [ - "what do you want me to call you", - "what_is_your_name" - ], - [ - "what would you like to be called", - "what_is_your_name" - ], - [ - "what do you want me to refer to you as", - "what_is_your_name" - ], - [ - "what name would you like me to use", - "what_is_your_name" - ], - [ - "what name should i call you", - "what_is_your_name" - ], - [ - "do you have a name", - "what_is_your_name" - ], - [ - "please tell me your name", - "what_is_your_name" - ], - [ - "how should i refer to you", - "what_is_your_name" - ], - [ - "whats your name", - "what_is_your_name" - ], - [ - "how would you like me to refer to you", - "what_is_your_name" - ], - [ - "what name should i use to call for you", - "what_is_your_name" - ], - [ - "what is the name i should use to refer to you", - "what_is_your_name" - ], - [ - "do you know your name", - "what_is_your_name" - ], - [ - "who gave you your name", - "what_is_your_name" - ], - [ - "what name was given to you", - "what_is_your_name" - ], - [ - "what can i address you", - "what_is_your_name" - ], - [ - "what name do you like to go by", - "what_is_your_name" - ], - [ - "i want to know the name that was given by the person who made you", - "what_is_your_name" - ], - [ - "do people call you by a certain name what is it", - "what_is_your_name" - ], - [ - "what do you prefer being called", - "what_is_your_name" - ], - [ - "what do you prefer to be called", - "what_is_your_name" - ], - [ - "what did your friends call you", - "what_is_your_name" - ], - [ - "do you go by any nicknames", - "what_is_your_name" - ], - [ - "what is you name", - "what_is_your_name" - ], - [ - "what's your first name", - "what_is_your_name" - ], - [ - "what do you like being called", - "what_is_your_name" - ], - [ - "how would you like me to call you", - "what_is_your_name" - ], - [ - "who are you known as", - "what_is_your_name" - ], - [ - "how can i get your attention", - "what_is_your_name" - ], - [ - "what do you answer to", - "what_is_your_name" - ], - [ - "do you have a way you like to be referred to", - "what_is_your_name" - ], - [ - "can you tell me your name", - "what_is_your_name" - ], - [ - "how do i activate you", - "what_is_your_name" - ], - [ - "what name do you answer to", - "what_is_your_name" - ], - [ - "what can i refer to you by", - "what_is_your_name" - ], - [ - "what do they call you", - "what_is_your_name" - ], - [ - "how are you named", - "what_is_your_name" - ], - [ - "what's your designation", - "what_is_your_name" - ], - [ - "can i call you by any name", - "what_is_your_name" - ], - [ - "i want your name", - "what_is_your_name" - ], - [ - "i need to know your name", - "what_is_your_name" - ], - [ - "i need your name", - "what_is_your_name" - ], - [ - "i wanna know your name", - "what_is_your_name" - ], - [ - "i'd like your name", - "what_is_your_name" - ], - [ - "tell me your name", - "what_is_your_name" - ], - [ - "you must tell me your name", - "what_is_your_name" - ], - [ - "what name do you want to be called", - "what_is_your_name" - ], - [ - "when referring to you, what name do you want me to use", - "what_is_your_name" - ], - [ - "would you tell me your name", - "what_is_your_name" - ], - [ - "provide the name i should use to refer to you", - "what_is_your_name" - ], - [ - "i would like to know your name", - "what_is_your_name" - ], - [ - "hello, may i get your name", - "what_is_your_name" - ], - [ - "i am needing to know your name", - "what_is_your_name" - ], - [ - "tell me what name to use to refer to you", - "what_is_your_name" - ], - [ - "state your name", - "what_is_your_name" - ], - [ - "when referring to you, what name should i use", - "what_is_your_name" - ], - [ - "i want to know your name", - "what_is_your_name" - ], - [ - "ai, do you like your name", - "what_is_your_name" - ], - [ - "ai, what can i call you", - "what_is_your_name" - ], - [ - "ai, what's your name", - "what_is_your_name" - ], - [ - "ai, what do people call you", - "what_is_your_name" - ], - [ - "ai, what should i call you", - "what_is_your_name" - ], - [ - "please introduce yourself", - "what_is_your_name" - ], - [ - "could you tell me your name", - "what_is_your_name" - ], - [ - "would you like to introduce yourself", - "what_is_your_name" - ], - [ - "tell me about yourself", - "what_is_your_name" - ], - [ - "what name should i use to address you", - "what_is_your_name" - ], - [ - "what name should i refer to you as", - "what_is_your_name" - ], - [ - "how would you like to be referred to", - "what_is_your_name" - ], - [ - "what name should i use when i call you", - "what_is_your_name" - ], - [ - "do you have a name i should call you by", - "what_is_your_name" - ], - [ - "do a websearch for direct deposit set up", - "direct_deposit" - ], - [ - "search google for how to set up direct deposit", - "direct_deposit" - ], - [ - "info on setting up direct deposit", - "direct_deposit" - ], - [ - "info on direct deposit set-up", - "direct_deposit" - ], - [ - "tell me how to get my paycheck on direct deposit", - "direct_deposit" - ], - [ - "what are the steps for setting up direct deposit for my paycheck", - "direct_deposit" - ], - [ - "give me instructions to set up direct deposit for my paycheck", - "direct_deposit" - ], - [ - "i want to set up direct deposit for my paycheck, what do i need to do", - "direct_deposit" - ], - [ - "how do i set up direct deposit for my paycheck", - "direct_deposit" - ], - [ - "i'd really like to set up a direct deposit for my paycheck", - "direct_deposit" - ], - [ - "i wanna set up a direct deposit for my paycheck", - "direct_deposit" - ], - [ - "i'd like to set up a direct deposit for my paycheck", - "direct_deposit" - ], - [ - "i would like to set up direct deposit", - "direct_deposit" - ], - [ - "set up direct deposit for me", - "direct_deposit" - ], - [ - "i need to set up a direct deposit for my paycheck", - "direct_deposit" - ], - [ - "set up a direct deposit", - "direct_deposit" - ], - [ - "i need to set up direct deposit", - "direct_deposit" - ], - [ - "i want to set direct deposit", - "direct_deposit" - ], - [ - "help me get my pay check deposited directly to my home checking account", - "direct_deposit" - ], - [ - "set my paycheck up for direct deposit", - "direct_deposit" - ], - [ - "i want my paycheck to go directly to my bank account", - "direct_deposit" - ], - [ - "set up direct deposit to my money market account for my pay check", - "direct_deposit" - ], - [ - "how do i get direct deposit for my paycheck", - "direct_deposit" - ], - [ - "what's the procedure to get direct deposit for my paycheck", - "direct_deposit" - ], - [ - "set up payroll direct deposit to my checking account", - "direct_deposit" - ], - [ - "make it so my paycheck goes directly into my savings account", - "direct_deposit" - ], - [ - "how can i have my paycheck directly deposited", - "direct_deposit" - ], - [ - "i need to get direct deposit on my bofa account", - "direct_deposit" - ], - [ - "what do i need to set up direct deposit", - "direct_deposit" - ], - [ - "what is needed for setting up direct deposit", - "direct_deposit" - ], - [ - "can you walk me through setting up direct deposit", - "direct_deposit" - ], - [ - "what is needed to set up direct deposit", - "direct_deposit" - ], - [ - "i need help to set up direct deposit", - "direct_deposit" - ], - [ - "would you help me set up direct deposit", - "direct_deposit" - ], - [ - "assist me to set up direct deposit", - "direct_deposit" - ], - [ - "tell me how to set up direct deposit", - "direct_deposit" - ], - [ - "tell me how to set up direct deposit for my paycheck", - "direct_deposit" - ], - [ - "how do i direct deposit my paycheck", - "direct_deposit" - ], - [ - "what do i do to have my paycheck deposited directly in my account", - "direct_deposit" - ], - [ - "how can i have my paycheck directly deposited in my account", - "direct_deposit" - ], - [ - "i would like to set up a direct deposit, please tell me how", - "direct_deposit" - ], - [ - "how can i set up a direct deposit with my checking account", - "direct_deposit" - ], - [ - "can you tell me how to set up a direct deposit", - "direct_deposit" - ], - [ - "can you help me set up a direct depost", - "direct_deposit" - ], - [ - "how can i turn on direct deposit", - "direct_deposit" - ], - [ - "how can i set up direct deposits from my job to my bank", - "direct_deposit" - ], - [ - "what steps do i need to do to set up direct deposit", - "direct_deposit" - ], - [ - "i want to set up direct deposit what do i need to do", - "direct_deposit" - ], - [ - "what do i need to do to start direct deposit", - "direct_deposit" - ], - [ - "how do i go about setting up direct deposit", - "direct_deposit" - ], - [ - "how do i get direct deposit set up", - "direct_deposit" - ], - [ - "i'd like to know about setting up direct deposit", - "direct_deposit" - ], - [ - "can you tell me how to set up direct depost", - "direct_deposit" - ], - [ - "how do i get my check directly deposited", - "direct_deposit" - ], - [ - "direct deposit information", - "direct_deposit" - ], - [ - "how do i set up instant paycheck", - "direct_deposit" - ], - [ - "how do i direct deposit my check", - "direct_deposit" - ], - [ - "help me set up direct deposit to my bank of hawaii checking account", - "direct_deposit" - ], - [ - "can you show me how to set up direct deposit for my paycheck to my first hawaiian bank account", - "direct_deposit" - ], - [ - "i want to set up direct deposit to my first hawaiian bank account", - "direct_deposit" - ], - [ - "can you show me how to set up my paycheck to be direct deposit to my first hawaiian bank account", - "direct_deposit" - ], - [ - "how do i set up direct deposit to my bank of hawaii account", - "direct_deposit" - ], - [ - "help me set up a direct deposit", - "direct_deposit" - ], - [ - "how is a direct deposit set up", - "direct_deposit" - ], - [ - "how would i go about setting up a direct deposit", - "direct_deposit" - ], - [ - "i need to set up a direct deposit", - "direct_deposit" - ], - [ - "tell me how to set up a direct deposit", - "direct_deposit" - ], - [ - "onpay gives you two convenient ways to pay your employees", - "direct_deposit" - ], - [ - "can you help me set up direct deposit", - "direct_deposit" - ], - [ - "i need some guidance when it comes to direct deposit", - "direct_deposit" - ], - [ - "i want to switch to direct deposit", - "direct_deposit" - ], - [ - "how can i set up direct deposit", - "direct_deposit" - ], - [ - "what are the steps to direct deposit my check", - "direct_deposit" - ], - [ - "is there a specific way to set up direct deposit", - "direct_deposit" - ], - [ - "how do i arrange a direct deposit into my savings account", - "direct_deposit" - ], - [ - "how do you set up direct deposit", - "direct_deposit" - ], - [ - "can you teach me how to set up direct deposit, or show me who can", - "direct_deposit" - ], - [ - "can you show me how to set up direct deposit", - "direct_deposit" - ], - [ - "if i would like to set up direct deposit, how do i do it", - "direct_deposit" - ], - [ - "direct deposit instructions", - "direct_deposit" - ], - [ - "help setting up direct deposit", - "direct_deposit" - ], - [ - "please help me set up direct deposit", - "direct_deposit" - ], - [ - "what are the steps for setting up direct deposit", - "direct_deposit" - ], - [ - "how does one go about setting up direct deposit", - "direct_deposit" - ], - [ - "how to set up direct deposit for paychecks", - "direct_deposit" - ], - [ - "what's needed to direct deposit my paycheck", - "direct_deposit" - ], - [ - "what is required to direct deposit my paycheck", - "direct_deposit" - ], - [ - "how to direct deposit my paycheck", - "direct_deposit" - ], - [ - "i need to get my paycheck direct deposited to my chase account", - "direct_deposit" - ], - [ - "i'd like to have my paycheck direct deposited to my chase account", - "direct_deposit" - ], - [ - "what are the steps to set up direct deposit to my chase account", - "direct_deposit" - ], - [ - "how do i get my paycheck direct deposited to my chase account", - "direct_deposit" - ], - [ - "how do i set up direct deposit to my chase account", - "direct_deposit" - ], - [ - "what do i do to enable direct deposit", - "direct_deposit" - ], - [ - "can i get paychecks directly deposited to my bank of america account", - "direct_deposit" - ], - [ - "i have a great western bank account i want direct deposits to go to", - "direct_deposit" - ], - [ - "i'd like my paychecks direct deposited in my navyfed checking account", - "direct_deposit" - ], - [ - "can you walk me through setting up direct deposits to my bank of internet savings account", - "direct_deposit" - ], - [ - "how do i get paychecks put directly in my sunflower savings account", - "direct_deposit" - ], - [ - "let me set up direct deposit for this", - "direct_deposit" - ], - [ - "i want to know my interest rate", - "interest_rate" - ], - [ - "tell me my interest rate", - "interest_rate" - ], - [ - "what interest rate am i paying", - "interest_rate" - ], - [ - "my interest rate please", - "interest_rate" - ], - [ - "how do i know the interest rate for my signature account", - "interest_rate" - ], - [ - "how can i figure out my interest rate for my umpqua account", - "interest_rate" - ], - [ - "how can i find my interest rate for my alliance account", - "interest_rate" - ], - [ - "how can i figure out the interest rate for my columbia account", - "interest_rate" - ], - [ - "how can i find the interest rate for my red river account", - "interest_rate" - ], - [ - "what is the rate of interest on my savings account", - "interest_rate" - ], - [ - "how much interest am i getting on my savings", - "interest_rate" - ], - [ - "check the interest rate on my savings account", - "interest_rate" - ], - [ - "tell me my current savings account's interest rate", - "interest_rate" - ], - [ - "what's the interest rate on my savings", - "interest_rate" - ], - [ - "what is my interest rate payment", - "interest_rate" - ], - [ - "how do i figure out my intetest rate", - "interest_rate" - ], - [ - "how to calculate my interest rate", - "interest_rate" - ], - [ - "what is my intetest rate", - "interest_rate" - ], - [ - "i must find the interest rate for my checking account", - "interest_rate" - ], - [ - "i gotta find the interest rate for my checking account", - "interest_rate" - ], - [ - "i would love to know the interest rate on my bank of america cd account", - "interest_rate" - ], - [ - "i need to know the interest rate on my bank of america cd account", - "interest_rate" - ], - [ - "what is the interest rate on my bank of america cd account", - "interest_rate" - ], - [ - "i have to find the interest rate for my checking account", - "interest_rate" - ], - [ - "i must know the interest rate on my bank of america cd account", - "interest_rate" - ], - [ - "i really need to find the interest rate for my checking account", - "interest_rate" - ], - [ - "i need to find the interest rate for my checking account", - "interest_rate" - ], - [ - "i wanna know the interest rate on my bank of america cd account", - "interest_rate" - ], - [ - "what is the interest rate i am receiving from the start of the year", - "interest_rate" - ], - [ - "what's the interest rate i have from illinois national", - "interest_rate" - ], - [ - "can you tell me what my interest rate from first federal is", - "interest_rate" - ], - [ - "x has given me an interest rate, what is it", - "interest_rate" - ], - [ - "what's my interest rate from january", - "interest_rate" - ], - [ - "i need the interest rate on my capital one account", - "interest_rate" - ], - [ - "could you help me find the interest on my chase account", - "interest_rate" - ], - [ - "i need help finding the apr on my aspire loan", - "interest_rate" - ], - [ - "hi, can you tell me the interest on my ira", - "interest_rate" - ], - [ - "can you help me find the interest rate for my sba account", - "interest_rate" - ], - [ - "where do i go to view the interest rate on my brighton account", - "interest_rate" - ], - [ - "what do i need to do to look up my 1st republic account's interest rate", - "interest_rate" - ], - [ - "tell me how to locate the interest rate for my jonah account", - "interest_rate" - ], - [ - "what is the interest rate on my scotiabank account", - "interest_rate" - ], - [ - "please tell me what i can expect my bank of america interest rate to be", - "interest_rate" - ], - [ - "if i'm using citibank, what is the interest rate", - "interest_rate" - ], - [ - "what is the interest rate at chase", - "interest_rate" - ], - [ - "what would the interest rate at wells fargo be", - "interest_rate" - ], - [ - "i would like to know my chase interest rate", - "interest_rate" - ], - [ - "what is my current interest rate", - "interest_rate" - ], - [ - "what is my annual percentage rate", - "interest_rate" - ], - [ - "do you know what the interest rate is on my account", - "interest_rate" - ], - [ - "how percentage am i earning annually on my account", - "interest_rate" - ], - [ - "what interest rate will i get from city national", - "interest_rate" - ], - [ - "what interest rate will regions give me", - "interest_rate" - ], - [ - "what is the best interest rate i can get from now on", - "interest_rate" - ], - [ - "what is the interest rate i can get from the beginning of next year", - "interest_rate" - ], - [ - "is there any info on my savings interest rate online", - "interest_rate" - ], - [ - "is my savings interest rate too high", - "interest_rate" - ], - [ - "i need to know my interest rate", - "interest_rate" - ], - [ - "can i find out my checking interest rate online", - "interest_rate" - ], - [ - "is my savings interest rate too low", - "interest_rate" - ], - [ - "what is my interest rate for chase bank", - "interest_rate" - ], - [ - "how are the interest rates at chase bank", - "interest_rate" - ], - [ - "what is my credit card interest rate", - "interest_rate" - ], - [ - "i want to know td banks interest rates", - "interest_rate" - ], - [ - "how's my interest rate", - "interest_rate" - ], - [ - "does my checking interest rate seem low", - "interest_rate" - ], - [ - "what's the interest rate for my checking account", - "interest_rate" - ], - [ - "what's td bank's interest rate", - "interest_rate" - ], - [ - "can you tell me my current interest rate", - "interest_rate" - ], - [ - "let me know what my interest rate is", - "interest_rate" - ], - [ - "could you tell me my interest rate", - "interest_rate" - ], - [ - "what's my current interest rate, if you could look", - "interest_rate" - ], - [ - "what's my interest rate", - "interest_rate" - ], - [ - "what interest rate am i getting", - "interest_rate" - ], - [ - "could you find my interest rate for me", - "interest_rate" - ], - [ - "what interest rate am i getting from onewest bank", - "interest_rate" - ], - [ - "what interest rate am i getting from citigroup", - "interest_rate" - ], - [ - "what interest rate am i getting from chase", - "interest_rate" - ], - [ - "will you tell me the interest rate", - "interest_rate" - ], - [ - "can you tell me the interest rate", - "interest_rate" - ], - [ - "will you tell me my interest rate", - "interest_rate" - ], - [ - "would you tell me the interest rate", - "interest_rate" - ], - [ - "how much is the interest rate for the account i have at bluebird", - "interest_rate" - ], - [ - "how do i know what interest rate chase has", - "interest_rate" - ], - [ - "let me know my ally interest rate", - "interest_rate" - ], - [ - "on my chase bank account what is the interest rate", - "interest_rate" - ], - [ - "i need to know my b of a interest rate", - "interest_rate" - ], - [ - "can you tell me my interest rate", - "interest_rate" - ], - [ - "find my interest rate", - "interest_rate" - ], - [ - "what is my interest rate", - "interest_rate" - ], - [ - "help me determine my interest rate", - "interest_rate" - ], - [ - "what is the interest rate on my charles schwab checking account", - "interest_rate" - ], - [ - "what is the interest rate on my chase slate credit card", - "interest_rate" - ], - [ - "what is the interest rate on my barclay card arrival credit card", - "interest_rate" - ], - [ - "what is the interest rate on my capital one credit card", - "interest_rate" - ], - [ - "what is the interest rate on my bank of america credit card", - "interest_rate" - ], - [ - "i need to know the interest rate that applies to my personal loan", - "interest_rate" - ], - [ - "please tell me my current interest rate for my home equity line of credit", - "interest_rate" - ], - [ - "what is the interest rate on my money market account", - "interest_rate" - ], - [ - "can you please tell me the interest rate for cash advances on my visa", - "interest_rate" - ], - [ - "can you see if i can get a higher limit on my discovery card", - "credit_limit_change" - ], - [ - "can my credit limit on my discovery card go up", - "credit_limit_change" - ], - [ - "may i have a higher limit on my mastercard", - "credit_limit_change" - ], - [ - "can i get a higher credit limit on my amex card", - "credit_limit_change" - ], - [ - "is there a way to get a larger limit on my bank of america card", - "credit_limit_change" - ], - [ - "what's the possibility of getting a credit limit increase on my visa", - "credit_limit_change" - ], - [ - "is it possible to increase my credit limit to 1000 dollars", - "credit_limit_change" - ], - [ - "is it possible to have a higher limit on my visa", - "credit_limit_change" - ], - [ - "can i get a higher limit on my american express card", - "credit_limit_change" - ], - [ - "i'd like to increase my credit spending limit to 500 dollars", - "credit_limit_change" - ], - [ - "am i allowed to increase the credit limit on my mastercard", - "credit_limit_change" - ], - [ - "is it possible to get a credit limit increase to 3000", - "credit_limit_change" - ], - [ - "i'd like to increase my credit limit up to four thousand", - "credit_limit_change" - ], - [ - "can i increase my credit limit from 1000 to 2000 please", - "credit_limit_change" - ], - [ - "is it possible to increase the limit on my visa", - "credit_limit_change" - ], - [ - "should i increase my credit limitfor cardx", - "credit_limit_change" - ], - [ - "can i have my credit limit changed", - "credit_limit_change" - ], - [ - "credit limit change", - "credit_limit_change" - ], - [ - "please change credit", - "credit_limit_change" - ], - [ - "please change the credit limit", - "credit_limit_change" - ], - [ - "i want my credit limit changed", - "credit_limit_change" - ], - [ - "can i get a credit increase for my visa", - "credit_limit_change" - ], - [ - "can i get a higher limit on my visa card", - "credit_limit_change" - ], - [ - "can my limit be increased for my visa", - "credit_limit_change" - ], - [ - "can you increase how much i can spend on my visa", - "credit_limit_change" - ], - [ - "will you allow more spending on my visa", - "credit_limit_change" - ], - [ - "is it possible to increase my visa card limit", - "credit_limit_change" - ], - [ - "is the limit on my visa card able to be increased", - "credit_limit_change" - ], - [ - "is there a way to increase the limit on my visa card", - "credit_limit_change" - ], - [ - "am i able to increase the limit on my visa card", - "credit_limit_change" - ], - [ - "how do i increase the limit on my visa card", - "credit_limit_change" - ], - [ - "can you increase my credit limit", - "credit_limit_change" - ], - [ - "can you change my credit limit", - "credit_limit_change" - ], - [ - "can you change the limit on my credit please", - "credit_limit_change" - ], - [ - "i need to increase my credit limit", - "credit_limit_change" - ], - [ - "change my credit limit, please", - "credit_limit_change" - ], - [ - "help me change my credit limit", - "credit_limit_change" - ], - [ - "what do i do to change my credit limit", - "credit_limit_change" - ], - [ - "get my credit limit changed", - "credit_limit_change" - ], - [ - "i want to change my credit limit", - "credit_limit_change" - ], - [ - "please help me increase my mastercard credit card limit", - "credit_limit_change" - ], - [ - "i need to increase my credit limit for my visa credit card, can you assist me", - "credit_limit_change" - ], - [ - "i would like to increase my bank of america credit limit, can you help me", - "credit_limit_change" - ], - [ - "is there a way to increase the credit limit on my american express card", - "credit_limit_change" - ], - [ - "how can i increase my aa credit card limit", - "credit_limit_change" - ], - [ - "would it be possible to increase my chase card's limit", - "credit_limit_change" - ], - [ - "how do i raise the limit on my visa card", - "credit_limit_change" - ], - [ - "how would i raise my credit spending by 250 dollars", - "credit_limit_change" - ], - [ - "can i raise the limit to 500 dollars", - "credit_limit_change" - ], - [ - "can i get a credit limit raise on my credit card", - "credit_limit_change" - ], - [ - "how would i raise my credit spending by 2500 dollars", - "credit_limit_change" - ], - [ - "would i be able to increase my available credit by 600 dollars", - "credit_limit_change" - ], - [ - "i need a credit raise by 1000 dollars", - "credit_limit_change" - ], - [ - "is there a way to raise my mastercard credit", - "credit_limit_change" - ], - [ - "how would i go about raising my gold card limit", - "credit_limit_change" - ], - [ - "please increase my credit limit to $9,000", - "credit_limit_change" - ], - [ - "how do i request a credit limit increase on my visa", - "credit_limit_change" - ], - [ - "is it possible to get a new credit limit of $10,000", - "credit_limit_change" - ], - [ - "is it possible to increase the credit limit on my mastercard", - "credit_limit_change" - ], - [ - "can you increase my credit limit to $7,500", - "credit_limit_change" - ], - [ - "can i raise my credit limit to $12,000", - "credit_limit_change" - ], - [ - "tell me if i can get a higher limit on my visa", - "credit_limit_change" - ], - [ - "can i get my credit limit increased to $15,000", - "credit_limit_change" - ], - [ - "how do increase the credit limit on my visa card", - "credit_limit_change" - ], - [ - "can i get a higher credit limit on my american express", - "credit_limit_change" - ], - [ - "can i increase the credit limit for my usaa card", - "credit_limit_change" - ], - [ - "can i increase the credit limit on my kohls card", - "credit_limit_change" - ], - [ - "can i increase the credit limit for my navy federal card", - "credit_limit_change" - ], - [ - "can i increase my credit limit to 500 dollars", - "credit_limit_change" - ], - [ - "can i increase the credit limit on my target card", - "credit_limit_change" - ], - [ - "can i increase the credit limit for my bank of the west card", - "credit_limit_change" - ], - [ - "can i increase my credit limit to 700 dollars", - "credit_limit_change" - ], - [ - "can i increase the credit limit on my maurices card", - "credit_limit_change" - ], - [ - "can i increase the credit limit on my old navy card", - "credit_limit_change" - ], - [ - "can i increase my credit limit to 800 dollars", - "credit_limit_change" - ], - [ - "can i increase my credit limit to 1200 dollars", - "credit_limit_change" - ], - [ - "can i increase the credit limit for my chase card", - "credit_limit_change" - ], - [ - "can i increase the credit limit for my bank of america card", - "credit_limit_change" - ], - [ - "can i increase my credit limit to 1100 dollars", - "credit_limit_change" - ], - [ - "can i increase the credit limit on my walmart card", - "credit_limit_change" - ], - [ - "can you increase my credit limit to one thousand dollars", - "credit_limit_change" - ], - [ - "can my credit limit be increased to one thousand dollars", - "credit_limit_change" - ], - [ - "tell me if my credit limit can be increased to one thousand dollars", - "credit_limit_change" - ], - [ - "please see if you can increase my credit limit to one thousand dollars", - "credit_limit_change" - ], - [ - "i want to increase my credit limit to $1000, if possible", - "credit_limit_change" - ], - [ - "can i increase thencrdeit limit for my chase visa card", - "credit_limit_change" - ], - [ - "can i increase the credit limit for my american express card", - "credit_limit_change" - ], - [ - "can i increase the credit limit for my western union credit card", - "credit_limit_change" - ], - [ - "can i increase the credit limit for my wells fargo credit card", - "credit_limit_change" - ], - [ - "can i increase the credit limit for my visa platinum card", - "credit_limit_change" - ], - [ - "is it possible to increase the credit limit for my discover card", - "credit_limit_change" - ], - [ - "is it possible to raise the credit limit for my discover card", - "credit_limit_change" - ], - [ - "can i raise the credit limit for my discover card", - "credit_limit_change" - ], - [ - "will they let me up my credit limit to $1000", - "credit_limit_change" - ], - [ - "will i be able to increase my credit limit to $1000", - "credit_limit_change" - ], - [ - "can i up my credit limit to $1000", - "credit_limit_change" - ], - [ - "am i allowed to increase my credit limit to $1000", - "credit_limit_change" - ], - [ - "is it possible to increase my credit limit to $1000", - "credit_limit_change" - ], - [ - "can i get more money on my discover card", - "credit_limit_change" - ], - [ - "help increasing credit on discover card", - "credit_limit_change" - ], - [ - "what kinds of things are you into", - "what_are_your_hobbies" - ], - [ - "what's your favorite hobby", - "what_are_your_hobbies" - ], - [ - "what do you like to do in your spare time", - "what_are_your_hobbies" - ], - [ - "what do you do for fun", - "what_are_your_hobbies" - ], - [ - "do you have any hobbies", - "what_are_your_hobbies" - ], - [ - "do you have any past-times", - "what_are_your_hobbies" - ], - [ - "what are your favorite hobbies to take part in", - "what_are_your_hobbies" - ], - [ - "what things do you like to do", - "what_are_your_hobbies" - ], - [ - "what are your favorite hobbies", - "what_are_your_hobbies" - ], - [ - "what are your favorite things to do", - "what_are_your_hobbies" - ], - [ - "what are ai's hobbies", - "what_are_your_hobbies" - ], - [ - "i want to know if you have hobbies", - "what_are_your_hobbies" - ], - [ - "i'd like to know your hobbies", - "what_are_your_hobbies" - ], - [ - "let's talk about your hobbies", - "what_are_your_hobbies" - ], - [ - "can you tell me about your hobbies", - "what_are_your_hobbies" - ], - [ - "tell me your hobbies", - "what_are_your_hobbies" - ], - [ - "do ai have hobbies and if so what are yours", - "what_are_your_hobbies" - ], - [ - "what are you hobbies", - "what_are_your_hobbies" - ], - [ - "do you have any hobbies to speak of", - "what_are_your_hobbies" - ], - [ - "what hobbies do you do", - "what_are_your_hobbies" - ], - [ - "how do you spend your spare time", - "what_are_your_hobbies" - ], - [ - "what do you like to do when you have spare time", - "what_are_your_hobbies" - ], - [ - "what do you do when you're not working", - "what_are_your_hobbies" - ], - [ - "is there anything you like to do in your free time", - "what_are_your_hobbies" - ], - [ - "what are the things you like to do for fun", - "what_are_your_hobbies" - ], - [ - "what sort of things do you or work on for fun when you have extra time", - "what_are_your_hobbies" - ], - [ - "are there activities that you enjoy doing in your free time", - "what_are_your_hobbies" - ], - [ - "what are some things you like doing", - "what_are_your_hobbies" - ], - [ - "so what sort of hobbies are you into", - "what_are_your_hobbies" - ], - [ - "what do you do when you're not working, for fun", - "what_are_your_hobbies" - ], - [ - "what do you like to do when you're not working", - "what_are_your_hobbies" - ], - [ - "what sorts of things do you do to have a good time", - "what_are_your_hobbies" - ], - [ - "what kind of things do you do when you have free time", - "what_are_your_hobbies" - ], - [ - "can you describe your hobbies to me", - "what_are_your_hobbies" - ], - [ - "please tell me your hobbies", - "what_are_your_hobbies" - ], - [ - "tell me all about your hobbies", - "what_are_your_hobbies" - ], - [ - "i'd like to hear about your hobbies", - "what_are_your_hobbies" - ], - [ - "what things do you enjoy doing", - "what_are_your_hobbies" - ], - [ - "what are some things that you enjoy", - "what_are_your_hobbies" - ], - [ - "what do you like doing in your free time", - "what_are_your_hobbies" - ], - [ - "do you have anything you enjoy to do", - "what_are_your_hobbies" - ], - [ - "i like to paint in my free time-do you have any hobbies like that", - "what_are_your_hobbies" - ], - [ - "what hobbies do you like doing", - "what_are_your_hobbies" - ], - [ - "do you enjoy any hobbies", - "what_are_your_hobbies" - ], - [ - "what other hobbies do you enjoy", - "what_are_your_hobbies" - ], - [ - "what kinds of hobbies do you enjoy", - "what_are_your_hobbies" - ], - [ - "what are some of the hobbies you enjoy doing", - "what_are_your_hobbies" - ], - [ - "what do you enjoy doing while not working", - "what_are_your_hobbies" - ], - [ - "any hobbies", - "what_are_your_hobbies" - ], - [ - "what do you do to occupy your free time", - "what_are_your_hobbies" - ], - [ - "i would like to know what hobbies you enjoy", - "what_are_your_hobbies" - ], - [ - "what hobbies pique your interest", - "what_are_your_hobbies" - ], - [ - "what do you do in your spare time", - "what_are_your_hobbies" - ], - [ - "what do you do for hobbies", - "what_are_your_hobbies" - ], - [ - "what sorts of activities do you enjoy", - "what_are_your_hobbies" - ], - [ - "what kinds of activities do you enjoy", - "what_are_your_hobbies" - ], - [ - "what types of activities do you enjoy", - "what_are_your_hobbies" - ], - [ - "what sorts of hobbies do you enjoy", - "what_are_your_hobbies" - ], - [ - "what kind of activities do you enjoy", - "what_are_your_hobbies" - ], - [ - "what's your hobbies", - "what_are_your_hobbies" - ], - [ - "what things do you do for fun", - "what_are_your_hobbies" - ], - [ - "what hobbies do you like", - "what_are_your_hobbies" - ], - [ - "what do you like to do for fun", - "what_are_your_hobbies" - ], - [ - "what are some things you like to do", - "what_are_your_hobbies" - ], - [ - "tell me what you do for fun", - "what_are_your_hobbies" - ], - [ - "can you tell me some of your hobbies", - "what_are_your_hobbies" - ], - [ - "might you have any hobbies", - "what_are_your_hobbies" - ], - [ - "what kinds of things do you do for hobbies", - "what_are_your_hobbies" - ], - [ - "share some of your hobbies with me", - "what_are_your_hobbies" - ], - [ - "what keeps you busy in your free time", - "what_are_your_hobbies" - ], - [ - "what makes you happy in your free time", - "what_are_your_hobbies" - ], - [ - "what do you do in your down time", - "what_are_your_hobbies" - ], - [ - "please share your hobbies with me", - "what_are_your_hobbies" - ], - [ - "lets talk about your hobbies", - "what_are_your_hobbies" - ], - [ - "what kind of hobbies do you have", - "what_are_your_hobbies" - ], - [ - "what hobbies do you enjoy in your free time", - "what_are_your_hobbies" - ], - [ - "what kind of hobbies do you like to do", - "what_are_your_hobbies" - ], - [ - "what sort of things do you enjoy", - "what_are_your_hobbies" - ], - [ - "what are your favorite activities", - "what_are_your_hobbies" - ], - [ - "what hobbies do you like to partake in", - "what_are_your_hobbies" - ], - [ - "what sort of hobbies do you enjoy", - "what_are_your_hobbies" - ], - [ - "what do you do for fun in your free time", - "what_are_your_hobbies" - ], - [ - "tell me what you do in your free time", - "what_are_your_hobbies" - ], - [ - "what you do at the free time", - "what_are_your_hobbies" - ], - [ - "so what do you do at free time", - "what_are_your_hobbies" - ], - [ - "at free time what do you do", - "what_are_your_hobbies" - ], - [ - "what do you enjoy doing in your leisure time", - "what_are_your_hobbies" - ], - [ - "what types of hobbies do you enjoy", - "what_are_your_hobbies" - ], - [ - "what types of things do you like to do in your spare time", - "what_are_your_hobbies" - ], - [ - "what sorts of things are you into", - "what_are_your_hobbies" - ], - [ - "what sorts of things do you do for fun", - "what_are_your_hobbies" - ], - [ - "what sort of hobbies are you into", - "what_are_your_hobbies" - ], - [ - "how do you like to spend your free time", - "what_are_your_hobbies" - ], - [ - "inform me what you do for fun in your free time", - "what_are_your_hobbies" - ], - [ - "i gotta know your hobbies", - "what_are_your_hobbies" - ], - [ - "can you tell me your hobbies", - "what_are_your_hobbies" - ], - [ - "tell your hobbies", - "what_are_your_hobbies" - ], - [ - "what do you do in your free time", - "what_are_your_hobbies" - ], - [ - "i wanna know your hobbies", - "what_are_your_hobbies" - ], - [ - "i wish to know your hobbies", - "what_are_your_hobbies" - ], - [ - "what's the cheapest fares from lax to sfo for round trip flights leaving april 1st and returning april 7th", - "book_flight" - ], - [ - "for the dates april 1st to the 7th, find me round trip air tickets from la to sfo", - "book_flight" - ], - [ - "what southwest flights are there for lax to sfo arriving april 1st and returning april 7th", - "book_flight" - ], - [ - "what airlines have flights round trip on april 1st to april 7th from lax to sfo", - "book_flight" - ], - [ - "find me round trip flights out of lax to sfox", - "book_flight" - ], - [ - "find me a flight from tijuana to guadalajara on volaris", - "book_flight" - ], - [ - "i need a flight to be booked from san diego to boston through frontier", - "book_flight" - ], - [ - "i want a flight booked from new york to san francisco with continental", - "book_flight" - ], - [ - "get me a flight booked from houston to phoenix with american airlines", - "book_flight" - ], - [ - "i want to fly southwest from dallas to phoenix", - "book_flight" - ], - [ - "book a flight from chicago to dc on monday and returning on wednesday", - "book_flight" - ], - [ - "i need to get a flight out of lax to dia on the 16th for under four hundred", - "book_flight" - ], - [ - "book a flight from sacremento to tampa two weeks from now and returning a month after", - "book_flight" - ], - [ - "i'm looking for a roundtrip flight from afw to dgb for tomorrow until next week", - "book_flight" - ], - [ - "i'm looking for a roundtrip flight from oma to sps august 1st, 2019 to august 2nd, 2019", - "book_flight" - ], - [ - "i need to get a flight out of tampa to chicago in a month for under $123", - "book_flight" - ], - [ - "book a flight from denver to austin on the 16th and returning on the 20th", - "book_flight" - ], - [ - "book a flight from bangor to las vegas on may 1st and returning july 4th", - "book_flight" - ], - [ - "book a flight from seattle to dallas-fort worth on april the 1st and returning on april 5th", - "book_flight" - ], - [ - "i need to get a flight out of seattle to dulles next week for under $500", - "book_flight" - ], - [ - "i'm looking for a roundtrip flight from koa to mgj for june to july", - "book_flight" - ], - [ - "i need to get a flight out of denver to houston on friday for under $250", - "book_flight" - ], - [ - "i need to get a flight out of my local airport to england on monday, the 23rd for under a grand", - "book_flight" - ], - [ - "i'm looking for a roundtrip flight from aaf to dia for february 23rd to february 28th", - "book_flight" - ], - [ - "i'm looking for a roundtrip flight from fwa to hsv for march first to march fifth", - "book_flight" - ], - [ - "compare fares for al italia from bucharest to tampa returning before thanksgiving", - "book_flight" - ], - [ - "cheapest fare for flight from tehran to new york on august 1 with return on august 20", - "book_flight" - ], - [ - "compare prices for flights from recife to miami leaving may 20 returning june 5", - "book_flight" - ], - [ - "i need you to book me a flight from chicago to montpelier via united", - "book_flight" - ], - [ - "i need a roundtrip flight for 5/2 to 5/8 from nyc to los angeles", - "book_flight" - ], - [ - "can you find me a roundtrip flight from orlando to austin for 3/28 to 4/5", - "book_flight" - ], - [ - "use delta to book me a flight from dallas to pittsburgh", - "book_flight" - ], - [ - "help me find a roundtrip flight for may 7th through the 20th from pittsburgh to chicago", - "book_flight" - ], - [ - "could you make a flight reservation with air emirates from orlando to london", - "book_flight" - ], - [ - "can you find me a flight from portland, oregon to portland, maine for under $500 on delta", - "book_flight" - ], - [ - "fly me from pit to pdx on delta for under $300", - "book_flight" - ], - [ - "book a flight from la to madrid with southwest", - "book_flight" - ], - [ - "i'd like a flight from laguardia to orlando on southwest for under $400", - "book_flight" - ], - [ - "i'm going to boston from bangor on july 25th through the 29th, and need you to find me a roundtrip flight", - "book_flight" - ], - [ - "i need to get from jfk to dallas with united for under $500", - "book_flight" - ], - [ - "i need a flight from nyc to paris with delta", - "book_flight" - ], - [ - "could you get me a delta flight from sioux falls to philadelphia for under $400", - "book_flight" - ], - [ - "i want to find a roundtrip flight from philadelphia to sioux falls from august 3rd through august 25th", - "book_flight" - ], - [ - "reserve me a flight from ft lauderdale to houston on southwest", - "book_flight" - ], - [ - "find me a roundtrip flight from dallas to los angeles from march 2 to march 10", - "book_flight" - ], - [ - "buy tickets for a flight from nyc to la on march 1, returning on march 5", - "book_flight" - ], - [ - "book me a flight out of la to chicago on march 3rd for under $500", - "book_flight" - ], - [ - "book flights for me from nyc to la on march 1, returning on march 5", - "book_flight" - ], - [ - "look for a flight out of la to chicago on march 3rd for under $500", - "book_flight" - ], - [ - "find me a flight from ft lauderdale to houston on southwest", - "book_flight" - ], - [ - "i need to book a roundtrip flight from dallas to los angeles from march 2 to march 10", - "book_flight" - ], - [ - "get me a flight from ft lauderale to houston on southwest", - "book_flight" - ], - [ - "are there any flights out of la to chicago on march 3rd for under $500", - "book_flight" - ], - [ - "search for a flight from nyc to la on march 1, returning on march 5", - "book_flight" - ], - [ - "list roundtrip flights available from dallas to los angeles from march 2 to march 10", - "book_flight" - ], - [ - "confirm a flight for me from ft lauderdale to houston on southwest", - "book_flight" - ], - [ - "search for a flight out of la to chicago on march 3rd for under $500", - "book_flight" - ], - [ - "buy a flight for me from nyc to la on march 1, returning on march 5", - "book_flight" - ], - [ - "can you show me roundtrip flights from dallas to los angeles from march 2 to march 10", - "book_flight" - ], - [ - "i need you to book me a flight from ft lauderdale to houston on southwest", - "book_flight" - ], - [ - "find me a flight from nyc to la on march 1, returning on march 5", - "book_flight" - ], - [ - "find me a flight out of la to chicago on march 3rd for under $500", - "book_flight" - ], - [ - "what are some roundtrip flights from dallas to los angeles from march 2 to march 10", - "book_flight" - ], - [ - "i want to buy a plane ticket to travel from miami to honolulu on the 29th of february i need a return flight on march 5th", - "book_flight" - ], - [ - "i need to take a flight from florida to alabama on january 25th and i need to get back by the 30th", - "book_flight" - ], - [ - "i want to book a flight reservation from texas to new york on may 9th and i want to come back on the 15th", - "book_flight" - ], - [ - "i want to book a flight from hawaii to new york on july 8th and returning on july 10th", - "book_flight" - ], - [ - "i need to book a flight from texas to new york on may 25th and returning on the 28th", - "book_flight" - ], - [ - "buy a flight from santa fe to jacksonville on new year's eve that returns on the fourth, please", - "book_flight" - ], - [ - "purchase a flight from slc to columbus on tuesday that returns on friday", - "book_flight" - ], - [ - "purchase a flight from fiji to san diego on november 1 that returns on december 1, please", - "book_flight" - ], - [ - "purchase a flight from boise to sacramento on sunday and returning on wednesday", - "book_flight" - ], - [ - "buy a flight from phoenix to el paso on august 30 that returns on labor day", - "book_flight" - ], - [ - "book delta ticket madison to atlanta", - "book_flight" - ], - [ - "make delta reservation from madison to atlanta", - "book_flight" - ], - [ - "madison to atlanta delta ticket", - "book_flight" - ], - [ - "buy delta ticket madison to atlanta", - "book_flight" - ], - [ - "schedule flight from madison to atlanta on delta", - "book_flight" - ], - [ - "book a flight from pensacola, fl to houston, tx on 17 february 2019 and returning on 7 march 2019", - "book_flight" - ], - [ - "book a flight from jacksonville, fl to atlanta, ga on 14 february 2019 and returning on 1 march 2019", - "book_flight" - ], - [ - "book a flight from key west, fl to san antonio, tx on 18 february 2019 and returning on 5 march 2019", - "book_flight" - ], - [ - "book a flight from tampa, fl to baltimore, md on 11 february 2019 and returning on 19 march 2019", - "book_flight" - ], - [ - "book a flight from miami, fl to columbus, ga on 16 february 2019 and returning on 2 march 2019", - "book_flight" - ], - [ - "show me roundtrip flights from dallas to houston for march 7 and march 10", - "book_flight" - ], - [ - "i am needing you to look up roundtrip flights form houston to miami for april 12 and april 15", - "book_flight" - ], - [ - "could you check and let me know roundtrip flights from dallas to houston for march 7 and march 20", - "book_flight" - ], - [ - "i need you to get me a flight booked from houston to miami on united airlines", - "book_flight" - ], - [ - "i am needing to get a flight out of el paso to dallas on march 10 for under $300", - "book_flight" - ], - [ - "would you give me available flights out of dallas to miami on june 8 for under $340", - "book_flight" - ], - [ - "would you let me know what flights are available out of dallas to el paso on march 20 for under $400", - "book_flight" - ], - [ - "let me know what flights there are out of dallas to miami on march 10 for under $450", - "book_flight" - ], - [ - "would you book me a flight to miami from dallas on southwest airlines", - "book_flight" - ], - [ - "i need a flight booked from dallas to miami on american airlines", - "book_flight" - ], - [ - "i am wanting you to book me a flight from houston to miami on united airlines", - "book_flight" - ], - [ - "would you look up roundtrip flights from dallas to houston for march 7 and march 10", - "book_flight" - ], - [ - "i would like to know what flights are available out of el paso to dallas on june 10 for under $300", - "book_flight" - ], - [ - "please get me a flight booked from miami to dallas on american airlines", - "book_flight" - ], - [ - "get me roundtrip flight information for flights from dallas to houston for june 8 and june 17", - "book_flight" - ], - [ - "get me a flight for tuesday on spiritcom to las vegas from chicago", - "book_flight" - ], - [ - "book me a flight from o'hare to las vegas on deltacom", - "book_flight" - ], - [ - "would you let me know what is on my shopping list", - "shopping_list" - ], - [ - "list out what is on my shopping list", - "shopping_list" - ], - [ - "i need for you to tell me what is on my shopping list", - "shopping_list" - ], - [ - "do you want me to shop for peanut butter", - "shopping_list" - ], - [ - "do you want peanut butter for your lunches this week", - "shopping_list" - ], - [ - "do you prefer peanut butter or cheese for your celery", - "shopping_list" - ], - [ - "did i put bread on my shopping list", - "shopping_list" - ], - [ - "i need to know the items on my shopping list", - "shopping_list" - ], - [ - "can you tell me if i have paper towels on my shopping list", - "shopping_list" - ], - [ - "does my shopping list include apples right now", - "shopping_list" - ], - [ - "can you look up what my shopping list has on it", - "shopping_list" - ], - [ - "do i have carrots on my shopping list", - "shopping_list" - ], - [ - "is ice cream currently on my shopping list", - "shopping_list" - ], - [ - "tell me what's on my shopping list", - "shopping_list" - ], - [ - "name the items on my shopping list", - "shopping_list" - ], - [ - "pull up my shopping list for me", - "shopping_list" - ], - [ - "what did i write down on my shopping list this time", - "shopping_list" - ], - [ - "what stuff did i put on my shopping list", - "shopping_list" - ], - [ - "my shopping list contains what again", - "shopping_list" - ], - [ - "what does my shopping list entail", - "shopping_list" - ], - [ - "what does my shopping list involve", - "shopping_list" - ], - [ - "what are my shopping list's content", - "shopping_list" - ], - [ - "tell me my shopping list", - "shopping_list" - ], - [ - "i need to hear what's on my shopping list", - "shopping_list" - ], - [ - "go over my shopping list with me", - "shopping_list" - ], - [ - "what do i have on my shopping list", - "shopping_list" - ], - [ - "what things are on my shopping list", - "shopping_list" - ], - [ - "list out my shopping list for me", - "shopping_list" - ], - [ - "can you list my shopping list for me", - "shopping_list" - ], - [ - "read me my shopping list please", - "shopping_list" - ], - [ - "what are the contents of my shopping list", - "shopping_list" - ], - [ - "i'd like to know what is on my shopping list", - "shopping_list" - ], - [ - "what is available on the shopping list", - "shopping_list" - ], - [ - "show me what's on the shopping list", - "shopping_list" - ], - [ - "what can you see on my shopping list", - "shopping_list" - ], - [ - "tell me what i put on the shopping list", - "shopping_list" - ], - [ - "what are all the things on the shopping list", - "shopping_list" - ], - [ - "i'd like to know what's on the shopping list", - "shopping_list" - ], - [ - "i need to know the things on my shopping list", - "shopping_list" - ], - [ - "tell me what i can find on the shopping list", - "shopping_list" - ], - [ - "tell me the things on my shopping list", - "shopping_list" - ], - [ - "read off shopping list", - "shopping_list" - ], - [ - "tell me whats on my shopping list", - "shopping_list" - ], - [ - "what's on my shopping list", - "shopping_list" - ], - [ - "check if my shopping list has tomato", - "shopping_list" - ], - [ - "does my shopping list have tomato written on it", - "shopping_list" - ], - [ - "on the shopping list did i put tomato", - "shopping_list" - ], - [ - "do i have tomato on the shopping list", - "shopping_list" - ], - [ - "is tomato on my shopping list", - "shopping_list" - ], - [ - "list everything on my shopping list", - "shopping_list" - ], - [ - "read my entire shopping list to me", - "shopping_list" - ], - [ - "display shopping list", - "shopping_list" - ], - [ - "can you show me my shopping list", - "shopping_list" - ], - [ - "can you read my shopping list to me", - "shopping_list" - ], - [ - "what all do i have on my shopping list", - "shopping_list" - ], - [ - "read me everything on my shopping list", - "shopping_list" - ], - [ - "can you tell me whats on my shopping list", - "shopping_list" - ], - [ - "can you tell me what i have on my shopping list", - "shopping_list" - ], - [ - "i need to know what i have on my shopping list", - "shopping_list" - ], - [ - "i'd like to know what's on my shopping list", - "shopping_list" - ], - [ - "read my shopping list to me", - "shopping_list" - ], - [ - "my list for shopping has what on it", - "shopping_list" - ], - [ - "my shopping list contains what", - "shopping_list" - ], - [ - "what do i need to buy at the store", - "shopping_list" - ], - [ - "what do i need to get when i go shopping", - "shopping_list" - ], - [ - "what do i have on my list for shopping", - "shopping_list" - ], - [ - "what products are on my shopping list", - "shopping_list" - ], - [ - "what did i put on my shopping list", - "shopping_list" - ], - [ - "what does my shopping list consist of", - "shopping_list" - ], - [ - "which purchases are on my shopping list", - "shopping_list" - ], - [ - "read me my shopping list", - "shopping_list" - ], - [ - "tell me what my shopping list consists of", - "shopping_list" - ], - [ - "can you remind me what i put on my shopping list", - "shopping_list" - ], - [ - "what all is on my shopping list", - "shopping_list" - ], - [ - "what did i put on my shopping list so far", - "shopping_list" - ], - [ - "give me all contents of my shopping list", - "shopping_list" - ], - [ - "i need to know what is on my shopping list", - "shopping_list" - ], - [ - "can you tell me my shopping list items, please", - "shopping_list" - ], - [ - "what items are on my shopping list", - "shopping_list" - ], - [ - "do i need to get milk", - "shopping_list" - ], - [ - "do i need milk at the store", - "shopping_list" - ], - [ - "did i remember to put milk in the shopping list", - "shopping_list" - ], - [ - "did i put milk on the shopping list", - "shopping_list" - ], - [ - "tell me what is on my shopping list", - "shopping_list" - ], - [ - "what do i need to go shopping for", - "shopping_list" - ], - [ - "what do i need when i go shopping", - "shopping_list" - ], - [ - "what does my shopping list say that i should get", - "shopping_list" - ], - [ - "what kind of items are on my shopping list", - "shopping_list" - ], - [ - "whats on my shopping list at the moment", - "shopping_list" - ], - [ - "whats on my list for shopping", - "shopping_list" - ], - [ - "is there milk on my shopping list", - "shopping_list" - ], - [ - "does my shopping list consist of chips", - "shopping_list" - ], - [ - "are tomatoes on my shopping list", - "shopping_list" - ], - [ - "is a toothbrush on my shopping list", - "shopping_list" - ], - [ - "does my shopping list include corn", - "shopping_list" - ], - [ - "do i have a big shopping list", - "shopping_list" - ], - [ - "show everything on my to buy list", - "shopping_list" - ], - [ - "show shopping list", - "shopping_list" - ], - [ - "what's on the shopping list", - "shopping_list" - ], - [ - "show me my shopping list", - "shopping_list" - ], - [ - "can you text elizabeth and tell them i forgot to bring drinks", - "text" - ], - [ - "text wenona and tell her we will be there tomorrow", - "text" - ], - [ - "text christopher and tell him i will stop by", - "text" - ], - [ - "text audrey and tell her i will be there soon", - "text" - ], - [ - "text christy and ask her what she wants for dinner", - "text" - ], - [ - "can you text christopher and tell them im on my way", - "text" - ], - [ - "text roderick and tell him im running late", - "text" - ], - [ - "can you text marissa and tell them to stop calling me", - "text" - ], - [ - "can you text arthur and tell them im almost there", - "text" - ], - [ - "can you text kayla and tell them im running late", - "text" - ], - [ - "text chris and ask what time he will be home", - "text" - ], - [ - "send a text and tell chris i\u2019m not working today", - "text" - ], - [ - "text message chris and say i love you", - "text" - ], - [ - "send chris a text message that says stop for milk on your way home", - "text" - ], - [ - "send a text message to chris and ask what he wants to eat for dinner", - "text" - ], - [ - "send ally a text message the message is that i just landed", - "text" - ], - [ - "could you send a text to marty and say i am running behind", - "text" - ], - [ - "send a text to brooklyn with the message that i will see them later", - "text" - ], - [ - "please text nancy and give them the message that i am on vacation", - "text" - ], - [ - "text bill and tell him i'll be 30 minutes late", - "text" - ], - [ - "send a text to lisa and ask her to call me when she gets home", - "text" - ], - [ - "give a text to my cousin linda that says happy birthday", - "text" - ], - [ - "text tony and invite him to my party next saturday", - "text" - ], - [ - "send my brother mike a text that says i'm home", - "text" - ], - [ - "i have to send a text", - "text" - ], - [ - "i need you to text someone for me", - "text" - ], - [ - "send sal a text and tell them thanks", - "text" - ], - [ - "i need you to send a text", - "text" - ], - [ - "text sal and let them know the answer is yes", - "text" - ], - [ - "let sal know by text i will be attending", - "text" - ], - [ - "i have to have a text sent", - "text" - ], - [ - "text sal and tell them hi", - "text" - ], - [ - "i need sal to be texted and say i'll be there", - "text" - ], - [ - "please send ann a text and tell her i will be home in 20 minutes", - "text" - ], - [ - "please send a text to phil and ask him if he wants to play golf this weekend", - "text" - ], - [ - "send bill a text for me and tell him i will be 30 minutes late", - "text" - ], - [ - "send a text to ashley and ask her what she wants to do for supper", - "text" - ], - [ - "send amy a text for me and tell her i need to meet", - "text" - ], - [ - "i want to send a text message to", - "text" - ], - [ - "create a text message to", - "text" - ], - [ - "communicate via text to", - "text" - ], - [ - "send text message to", - "text" - ], - [ - "send a text message for me", - "text" - ], - [ - "please send a text message to natalie for me", - "text" - ], - [ - "i want to text natalie", - "text" - ], - [ - "i want you to send a text message for me", - "text" - ], - [ - "send a message to natalie in the form of a text", - "text" - ], - [ - "message mom where are you", - "text" - ], - [ - "compose a text to mom i'll talk to you later", - "text" - ], - [ - "send mom a message i'll talk to you later", - "text" - ], - [ - "send mom a text asking where are you", - "text" - ], - [ - "send a text for me", - "text" - ], - [ - "i want to send a text", - "text" - ], - [ - "send a text to mom i'll talk to you later", - "text" - ], - [ - "text mom i'll talk to you later", - "text" - ], - [ - "text robby hello", - "text" - ], - [ - "text mom and let her know i'll be there soon", - "text" - ], - [ - "text mom where are you", - "text" - ], - [ - "send mom a text i'll talk to you later", - "text" - ], - [ - "compose text message", - "text" - ], - [ - "send a message to mom be there soon", - "text" - ], - [ - "start a new text", - "text" - ], - [ - "create a new text", - "text" - ], - [ - "set up a new text message", - "text" - ], - [ - "send a text message to alice", - "text" - ], - [ - "text alice", - "text" - ], - [ - "write a text to alice", - "text" - ], - [ - "text a message to alice", - "text" - ], - [ - "text my doctor and tell him it happened again", - "text" - ], - [ - "text mary and tell them i'm on my way", - "text" - ], - [ - "text robert and tell him winter is coming", - "text" - ], - [ - "text nick and tell him the car's ready", - "text" - ], - [ - "text my wife and tell her i'm divorcing her", - "text" - ], - [ - "can you tell bob to get his dog via text", - "text" - ], - [ - "can you send a text to my mother irene and tell her i love her", - "text" - ], - [ - "can you text mary and tell them it's ready", - "text" - ], - [ - "can you ping priest chris with a text and send the following confession", - "text" - ], - [ - "can you text the sgt adam and tell them i found the missing girl", - "text" - ], - [ - "text matt and tell him i will be late tonight", - "text" - ], - [ - "text paul and ask him what time the cookout is on saturday", - "text" - ], - [ - "start a new text to maureen and tell her i go mom's christmas present", - "text" - ], - [ - "text billy and tell him to be at monday's meeting at 3pm", - "text" - ], - [ - "text william and ask him to pick up organic apples tonight", - "text" - ], - [ - "write text message to someone", - "text" - ], - [ - "text someone", - "text" - ], - [ - "can you send a text to someone", - "text" - ], - [ - "write text and send to someone", - "text" - ], - [ - "send a text to someone", - "text" - ], - [ - "text my friend for me and tell them to meet me later", - "text" - ], - [ - "text my boss for me and tell them i will be a little bit late", - "text" - ], - [ - "text my coworker for me and tell them the due date", - "text" - ], - [ - "text my dad for me and tell them i love you", - "text" - ], - [ - "text my mom for me and tell them i will be home soon", - "text" - ], - [ - "please send a text", - "text" - ], - [ - "send a text message", - "text" - ], - [ - "i need to send a text", - "text" - ], - [ - "can you send a text for me", - "text" - ], - [ - "create a new text message", - "text" - ], - [ - "please send a message to peter telling him to pick up milk", - "text" - ], - [ - "text josh and tell him i need a delivery", - "text" - ], - [ - "the bill for water and electricity is how much", - "bill_balance" - ], - [ - "what's my bill for water and electricity", - "bill_balance" - ], - [ - "for my water and electricity, how much is the bill", - "bill_balance" - ], - [ - "how much is the bill for my water and electricity", - "bill_balance" - ], - [ - "my water and electricity bill is how much", - "bill_balance" - ], - [ - "what is the total amount that i owe to sony and verizon", - "bill_balance" - ], - [ - "please tell me how much i owe sprint and how much i owe hsn", - "bill_balance" - ], - [ - "tell me how much my verizon and comcast bill come to together", - "bill_balance" - ], - [ - "how much in total do i need to pay cox and at&t", - "bill_balance" - ], - [ - "please let me know how much my bills for comcast and sprint total", - "bill_balance" - ], - [ - "what do my bills add up to", - "bill_balance" - ], - [ - "how much do i owe in bills", - "bill_balance" - ], - [ - "what's the balance on my bills", - "bill_balance" - ], - [ - "read my bill balances", - "bill_balance" - ], - [ - "how much are my bills", - "bill_balance" - ], - [ - "find out what my water bill costs please", - "bill_balance" - ], - [ - "how much is my electricity bill costing me", - "bill_balance" - ], - [ - "find out the cost of my bill payments", - "bill_balance" - ], - [ - "let me know the amounts i owe for my utilities and tuition bills", - "bill_balance" - ], - [ - "how much money do i need to spend on bill payments", - "bill_balance" - ], - [ - "can you tell me what i owe for this month's phone bill", - "bill_balance" - ], - [ - "tell me the sum total of my water and electricity bills", - "bill_balance" - ], - [ - "can you tell me the total cost of my bills please", - "bill_balance" - ], - [ - "what is the total amount due on my electricity bill", - "bill_balance" - ], - [ - "what am i being charged for my water bill", - "bill_balance" - ], - [ - "tell me how much my cable bill is", - "bill_balance" - ], - [ - "what is the total for my utilities bill this month", - "bill_balance" - ], - [ - "how much do i owe for my gas and phone bills", - "bill_balance" - ], - [ - "tell me what is owed for my water and gas bills", - "bill_balance" - ], - [ - "i need to know the amounts due for my utilities and cable bills", - "bill_balance" - ], - [ - "let me know how much money i will need to spend on paying bills", - "bill_balance" - ], - [ - "please let me know how much my gas bill is", - "bill_balance" - ], - [ - "i need to know the cost of the cable bill", - "bill_balance" - ], - [ - "how much in total will i be paying for bills", - "bill_balance" - ], - [ - "what do i owe for my utilities bill", - "bill_balance" - ], - [ - "please give me the full balance on my water bill", - "bill_balance" - ], - [ - "how much is the total due for my pgw gas bill", - "bill_balance" - ], - [ - "what's the amount due on my latest sprint bill", - "bill_balance" - ], - [ - "i need the dollar amount due on my verizon bill, please", - "bill_balance" - ], - [ - "can you tell me what the amount on my directv bill is", - "bill_balance" - ], - [ - "remind me of the invoice total for my plumbing bill", - "bill_balance" - ], - [ - "tell me what amount i have to pay for my directv bill please", - "bill_balance" - ], - [ - "i need to know my bill total for my verizon payment due this month", - "bill_balance" - ], - [ - "please find the current balance on my con edison bill", - "bill_balance" - ], - [ - "what's the balance on my sprint account", - "bill_balance" - ], - [ - "how much is my xfinity bill this month", - "bill_balance" - ], - [ - "what's the cost of my dte bill plus my electricity bill", - "bill_balance" - ], - [ - "my dte bill is how much", - "bill_balance" - ], - [ - "what is my dte bill this month", - "bill_balance" - ], - [ - "how much are my electric and heating bills", - "bill_balance" - ], - [ - "my dte and water bills are how much", - "bill_balance" - ], - [ - "my water bill is how much this month", - "bill_balance" - ], - [ - "how much is my electric bill for this month", - "bill_balance" - ], - [ - "how much are my xfinity and dte bills", - "bill_balance" - ], - [ - "how much are my cable and water bills", - "bill_balance" - ], - [ - "how much do i have to pay on my bills", - "bill_balance" - ], - [ - "can you check the balance on the water bill", - "bill_balance" - ], - [ - "how much do i have to pay for my cable bill", - "bill_balance" - ], - [ - "how much do i owe on my cable bill", - "bill_balance" - ], - [ - "can you find out how much i owe on my bills", - "bill_balance" - ], - [ - "can you check and see how much i owe on my cable bill", - "bill_balance" - ], - [ - "do you know how much i owe on my cable bill", - "bill_balance" - ], - [ - "how much do i need to pay on my bills", - "bill_balance" - ], - [ - "can you tell me how much i owe on my cable bill", - "bill_balance" - ], - [ - "how much is my comcast bill", - "bill_balance" - ], - [ - "what is the amount on my comcast bill", - "bill_balance" - ], - [ - "what is the my comcast bill this month", - "bill_balance" - ], - [ - "what do i owe bill wise", - "bill_balance" - ], - [ - "do i have any due bills and how much", - "bill_balance" - ], - [ - "do i still owe any bills", - "bill_balance" - ], - [ - "how much do i have to pay for my bills this month", - "bill_balance" - ], - [ - "do i owe any bills", - "bill_balance" - ], - [ - "what's the final amount of all the money i need to pay in bills this month", - "bill_balance" - ], - [ - "add all my bills for this month and tell me the total", - "bill_balance" - ], - [ - "what's the sum of all i owe on bills this month", - "bill_balance" - ], - [ - "what's the total i owe on all my bills", - "bill_balance" - ], - [ - "what's the water bill", - "bill_balance" - ], - [ - "how much are all my bills combined", - "bill_balance" - ], - [ - "what's my mortgage payment going to be this month", - "bill_balance" - ], - [ - "what do i owe on the car this month", - "bill_balance" - ], - [ - "how much are utilities", - "bill_balance" - ], - [ - "how much is my gas bill", - "bill_balance" - ], - [ - "how much is my internet bill", - "bill_balance" - ], - [ - "how much is my cable bill", - "bill_balance" - ], - [ - "how much is my rent", - "bill_balance" - ], - [ - "how much is my cable bill for", - "bill_balance" - ], - [ - "how much is my current water bill for", - "bill_balance" - ], - [ - "how much is my electric bill for", - "bill_balance" - ], - [ - "how much is my water bill for", - "bill_balance" - ], - [ - "how much is my current cable bill for", - "bill_balance" - ], - [ - "what is the amount on my water bill", - "bill_balance" - ], - [ - "how much do i have on credit card bill", - "bill_balance" - ], - [ - "what is the balance on my bills", - "bill_balance" - ], - [ - "what is my domain name bill", - "bill_balance" - ], - [ - "how much is my groceries and gas bill", - "bill_balance" - ], - [ - "what is the cost of water and electric this month", - "bill_balance" - ], - [ - "what is the amount of balance i have to pay on my bill", - "bill_balance" - ], - [ - "how much do i owe on bills", - "bill_balance" - ], - [ - "how much on bills to i have to pay", - "bill_balance" - ], - [ - "what is my email subscriction services bill", - "bill_balance" - ], - [ - "tell lydia and laura where i am located", - "share_location" - ], - [ - "share my location with brad and terry", - "share_location" - ], - [ - "tell john and sam where i am", - "share_location" - ], - [ - "share my location with darren and stacey", - "share_location" - ], - [ - "let cora and nancy know were i am now", - "share_location" - ], - [ - "share my gps coordinates with my dad", - "share_location" - ], - [ - "share my gps coordinates with kelly", - "share_location" - ], - [ - "share my gps coordinates with my brother", - "share_location" - ], - [ - "share my gps coordinates with my mother", - "share_location" - ], - [ - "share my gps coordinates with jim", - "share_location" - ], - [ - "please show my current location to andre", - "share_location" - ], - [ - "give the boys my location please", - "share_location" - ], - [ - "can you share my location with my girlfriends", - "share_location" - ], - [ - "let shih chieh see my location", - "share_location" - ], - [ - "share my location with mom, please", - "share_location" - ], - [ - "let coach know where i am", - "share_location" - ], - [ - "share my location with ma", - "share_location" - ], - [ - "tell base camp my gps coordinates", - "share_location" - ], - [ - "tell the kids where i am", - "share_location" - ], - [ - "let the folks know my gps coordinates", - "share_location" - ], - [ - "my friend steve needs my gps coordinates send them to him", - "share_location" - ], - [ - "let the rents have my current location", - "share_location" - ], - [ - "let my group know what my current location is", - "share_location" - ], - [ - "give boss my current location", - "share_location" - ], - [ - "give me current gps coordinates to my sister", - "share_location" - ], - [ - "give my current location to robyn now", - "share_location" - ], - [ - "send my current location to my superior", - "share_location" - ], - [ - "let lucy know my gps coordinates", - "share_location" - ], - [ - "tell carl my gps coordinates", - "share_location" - ], - [ - "i need you to send my location to paul and ryan", - "share_location" - ], - [ - "share my coordinates with melissa and doug", - "share_location" - ], - [ - "can you let sam and woody know where i am", - "share_location" - ], - [ - "let randy and travis know where i'm at", - "share_location" - ], - [ - "can you give my whereabouts to doug and buster", - "share_location" - ], - [ - "please show me how to share my location with noel", - "share_location" - ], - [ - "how do i share my location with noel", - "share_location" - ], - [ - "i need to share my location with noel", - "share_location" - ], - [ - "how can i show noel where i am right now", - "share_location" - ], - [ - "i need to send my current location to sean", - "share_location" - ], - [ - "i would like to share my location with my mom", - "share_location" - ], - [ - "please send my location to haley", - "share_location" - ], - [ - "i need to share my location with trey", - "share_location" - ], - [ - "trey needs my current location", - "share_location" - ], - [ - "can you tell bob and alice where i am", - "share_location" - ], - [ - "i would like ms johannson and ms alba to be informed of my location", - "share_location" - ], - [ - "advise sam of my current location please", - "share_location" - ], - [ - "please send the police my location with gps", - "share_location" - ], - [ - "please tell my location to bob", - "share_location" - ], - [ - "i need you to push my location to cory", - "share_location" - ], - [ - "please share my location with my boss and my lawyer", - "share_location" - ], - [ - "give my boyfriend my gps coordinates", - "share_location" - ], - [ - "will you let mary know my location", - "share_location" - ], - [ - "send my location to my mom", - "share_location" - ], - [ - "i need you to let mr miyagi and daniel know where i am", - "share_location" - ], - [ - "can you share my current location with amy", - "share_location" - ], - [ - "post my gps coordinates to my facebook friends", - "share_location" - ], - [ - "please let my mom and dad know my location", - "share_location" - ], - [ - "i need the tow truck to be given my gps coordinates", - "share_location" - ], - [ - "have miranda know about my current location", - "share_location" - ], - [ - "send the location i'm at with martin", - "share_location" - ], - [ - "give my location right now to my family", - "share_location" - ], - [ - "inform eric of my current location", - "share_location" - ], - [ - "my gps coordiantes will be shared with aunt sunny", - "share_location" - ], - [ - "gps coordinates share with home", - "share_location" - ], - [ - "send my gps coordinates with home base please", - "share_location" - ], - [ - "share to grandma my gps coordinates", - "share_location" - ], - [ - "give adam my gps coordinates", - "share_location" - ], - [ - "send my gps location to manuel", - "share_location" - ], - [ - "give jim my gps location", - "share_location" - ], - [ - "share my location with sarah", - "share_location" - ], - [ - "give tim my current location from the gps", - "share_location" - ], - [ - "can you forward my location to tom", - "share_location" - ], - [ - "share my location with my sister", - "share_location" - ], - [ - "share my location wtih amanda now", - "share_location" - ], - [ - "share my location with mom", - "share_location" - ], - [ - "start sending my location to alex", - "share_location" - ], - [ - "tell brady where my location is", - "share_location" - ], - [ - "share location with bill", - "share_location" - ], - [ - "let barbara know where i'm at", - "share_location" - ], - [ - "please tell wanda where i am now", - "share_location" - ], - [ - "please tell steve my location", - "share_location" - ], - [ - "tell bill and craig where i am", - "share_location" - ], - [ - "give my location to bill and craig", - "share_location" - ], - [ - "inform bill and craig of my location", - "share_location" - ], - [ - "can you tell bill and craig where i am", - "share_location" - ], - [ - "let bill and craig know where i am", - "share_location" - ], - [ - "alert the wife of my exact location", - "share_location" - ], - [ - "let the wife see where i'm at", - "share_location" - ], - [ - "let dan know where i am", - "share_location" - ], - [ - "allow my son to see my gps coordinates", - "share_location" - ], - [ - "share my gps location with steve", - "share_location" - ], - [ - "can you share my location with mom", - "share_location" - ], - [ - "please allow dan to see my location", - "share_location" - ], - [ - "can you let ben and jerry know my current location", - "share_location" - ], - [ - "share my location with ben and jerry", - "share_location" - ], - [ - "can you show ben and jerry where i am currently at", - "share_location" - ], - [ - "send my location to ben and jerry", - "share_location" - ], - [ - "let ben and jerry know where i am", - "share_location" - ], - [ - "how do i share where i am, with another person", - "share_location" - ], - [ - "give tom my location", - "share_location" - ], - [ - "i am ready now to cash in on the many credit card points i have saved up", - "redeem_rewards" - ], - [ - "i have credit card points but don't know how to use them", - "redeem_rewards" - ], - [ - "walk me through the best ways to use my credit card points", - "redeem_rewards" - ], - [ - "i am ready now to use some of the credit card points i have saved", - "redeem_rewards" - ], - [ - "i want to hear more about how i can use my credit card points", - "redeem_rewards" - ], - [ - "how can i cash in the rewards i earned with my visa card", - "redeem_rewards" - ], - [ - "walk me through the process of cashing in on credit card points", - "redeem_rewards" - ], - [ - "i would like to use my credit card points", - "redeem_rewards" - ], - [ - "do i have enough credit card points to redeem a new appliance", - "redeem_rewards" - ], - [ - "i would love to redeem some smart speakers with my credit card points", - "redeem_rewards" - ], - [ - "how can i redeem rewards earned through my amex card", - "redeem_rewards" - ], - [ - "how can i cash in on the rewards i earned through my american express card", - "redeem_rewards" - ], - [ - "could i redeem my credit card points on a new tv", - "redeem_rewards" - ], - [ - "can you help me figure out how to utilize my credit card points", - "redeem_rewards" - ], - [ - "can you explain to me how i ought to use my credit card points", - "redeem_rewards" - ], - [ - "i would like to use my credit card points to acquire a new laptop", - "redeem_rewards" - ], - [ - "i would like to redeem my credit card reward points", - "redeem_rewards" - ], - [ - "have i got enough credit card points to get a new tablet device", - "redeem_rewards" - ], - [ - "i have a lot of credit card points saved up and would like to start redeeming them", - "redeem_rewards" - ], - [ - "walk me through reward redemption from my barclay's card", - "redeem_rewards" - ], - [ - "explain to me how to cash in rewards for my mastercard", - "redeem_rewards" - ], - [ - "help me figure out redemption of my credit card points", - "redeem_rewards" - ], - [ - "how can i redeem the points i've earned with my credit card", - "redeem_rewards" - ], - [ - "i have a lot of points saved up from my credit card rewards but don't know how to redeem them", - "redeem_rewards" - ], - [ - "can you help me begin the process of redeeming credit card points", - "redeem_rewards" - ], - [ - "i want to redeem points on my chase card, but how", - "redeem_rewards" - ], - [ - "how can i cash in rewards on my discover card", - "redeem_rewards" - ], - [ - "if i want to redeem miles from my delta skymiles card, how do i do that", - "redeem_rewards" - ], - [ - "how can i cash in rewards on my chase card", - "redeem_rewards" - ], - [ - "how can i cash in the rewards i have earned on my amex", - "redeem_rewards" - ], - [ - "i need you to check if my credit card points are redeemable right now", - "redeem_rewards" - ], - [ - "call my credit card company and ask can i use my points", - "redeem_rewards" - ], - [ - "i want to know if i can redeem my credit card points now", - "redeem_rewards" - ], - [ - "i check my credit card company to see if my points are good to go", - "redeem_rewards" - ], - [ - "can you check with my credit card company and see if i can redeem my points", - "redeem_rewards" - ], - [ - "do i need a certain amount of points before i can redeem them", - "redeem_rewards" - ], - [ - "are there any steps i need to take to use my credit card points", - "redeem_rewards" - ], - [ - "if i want to use my credit card points what do i do", - "redeem_rewards" - ], - [ - "can i redeem my credit card points for anything", - "redeem_rewards" - ], - [ - "how many points do i need before i can redeem them", - "redeem_rewards" - ], - [ - "at what point balance can i redeem my points", - "redeem_rewards" - ], - [ - "do i have to contact someone to use my credit card points", - "redeem_rewards" - ], - [ - "do i have enough points to for a redemption", - "redeem_rewards" - ], - [ - "what do i do if i want to use my credit card points", - "redeem_rewards" - ], - [ - "how can i redeem my credit card points", - "redeem_rewards" - ], - [ - "what steps do i take to redeem my credit card points", - "redeem_rewards" - ], - [ - "can you tell me how to redeem my credit card points", - "redeem_rewards" - ], - [ - "in order to redeem my credit card points, what should i do", - "redeem_rewards" - ], - [ - "what do i need to do in order to redeem my credit card points", - "redeem_rewards" - ], - [ - "do you think i could get a target gift card with my credit card points", - "redeem_rewards" - ], - [ - "is a walmart gift card one of the things i can use my credit card points on", - "redeem_rewards" - ], - [ - "let's use my credit card points", - "redeem_rewards" - ], - [ - "tell me how to use credit card points", - "redeem_rewards" - ], - [ - "my amex rewards; how do i get them", - "redeem_rewards" - ], - [ - "i'd like to redeem my credit card points", - "redeem_rewards" - ], - [ - "use my credit card points", - "redeem_rewards" - ], - [ - "am i able to redeem my credit card points for an amazon gift card", - "redeem_rewards" - ], - [ - "if i want to cash in my american express rewards, how do i do that", - "redeem_rewards" - ], - [ - "cash in rewards for my visa card", - "redeem_rewards" - ], - [ - "how do i redeem my credit card points", - "redeem_rewards" - ], - [ - "what do i do to redeem credit card points", - "redeem_rewards" - ], - [ - "how can i cash in my credit card points", - "redeem_rewards" - ], - [ - "can i use my credit card points for gas", - "redeem_rewards" - ], - [ - "what do i need to do for my mastercard rewards", - "redeem_rewards" - ], - [ - "how can i go about cashing in rewards with discover", - "redeem_rewards" - ], - [ - "if i redeem my credit card points, can i get a kroeger gift card", - "redeem_rewards" - ], - [ - "please inform regarding the procedure to cash in my rewards for my citibank card", - "redeem_rewards" - ], - [ - "please tell me the procedure to cash in my rewards for my citibank card", - "redeem_rewards" - ], - [ - "i need information regarding the procedure to cash in my rewards for my citibank card", - "redeem_rewards" - ], - [ - "tell me how i should cash in my rewards for my citibank card", - "redeem_rewards" - ], - [ - "what's the way to cash in my rewards for my citibank card", - "redeem_rewards" - ], - [ - "how do i cash the reward for first bankcard", - "redeem_rewards" - ], - [ - "how do i use my credit card points", - "redeem_rewards" - ], - [ - "i want to convert my credit card points", - "redeem_rewards" - ], - [ - "let me use my credit card points", - "redeem_rewards" - ], - [ - "how do i use reward for my first hawaiian bank", - "redeem_rewards" - ], - [ - "i want to utilize my credit card points", - "redeem_rewards" - ], - [ - "how do i utilize my credit card points", - "redeem_rewards" - ], - [ - "can i convert my credit card points to milage", - "redeem_rewards" - ], - [ - "can i use my credit card point on amazon", - "redeem_rewards" - ], - [ - "can i redeem my credit card points to cash", - "redeem_rewards" - ], - [ - "how do i use the reward for my bank of hawaii", - "redeem_rewards" - ], - [ - "i want to use my credit card points", - "redeem_rewards" - ], - [ - "what are ways to utilize my credit card points", - "redeem_rewards" - ], - [ - "i want to cash my credit card points", - "redeem_rewards" - ], - [ - "how do i cash the reward for city", - "redeem_rewards" - ], - [ - "how do i cash in my reward for chase", - "redeem_rewards" - ], - [ - "can i redeem my credit card on safeway", - "redeem_rewards" - ], - [ - "can i use my credit card points to make purchase", - "redeem_rewards" - ], - [ - "tell me how to utilize my card points", - "redeem_rewards" - ], - [ - "how do i get cash back for the rewards on my amex card", - "redeem_rewards" - ], - [ - "transfer my cash reward balance to my bank", - "redeem_rewards" - ], - [ - "how do i redeem my card points", - "redeem_rewards" - ], - [ - "what do i do to get cach back for points on my discover card", - "redeem_rewards" - ], - [ - "i want to redeem my card points for cash", - "redeem_rewards" - ], - [ - "i want to use the cash that my points have earned on my credit card", - "redeem_rewards" - ], - [ - "what's the procedure to get cash back rewards on my visa", - "redeem_rewards" - ], - [ - "tell me how to redeem my credit card points", - "redeem_rewards" - ], - [ - "how do i obtain the cash for the rewards on my hy-vee card", - "redeem_rewards" - ], - [ - "i want to cash out my credit card points", - "redeem_rewards" - ], - [ - "can i get some music by three six mafia in here", - "play_music" - ], - [ - "what does x\u2019s music sound like", - "play_music" - ], - [ - "may i hear some music by fleet foxes", - "play_music" - ], - [ - "can i hear some music by cloud control", - "play_music" - ], - [ - "can x\u2019s music be played", - "play_music" - ], - [ - "play some music for me", - "play_music" - ], - [ - "i'd like to hear my workout playlist", - "play_music" - ], - [ - "put on my jam session playlist please", - "play_music" - ], - [ - "can i hear my smooth jazz playlist", - "play_music" - ], - [ - "play a song for me", - "play_music" - ], - [ - "let's hear my workout playlist", - "play_music" - ], - [ - "put my workout playlist on", - "play_music" - ], - [ - "put my music on, please", - "play_music" - ], - [ - "play rock playlist", - "play_music" - ], - [ - "play some music", - "play_music" - ], - [ - "rock playlist please", - "play_music" - ], - [ - "can you play music", - "play_music" - ], - [ - "i want to listen to music", - "play_music" - ], - [ - "can you play the rock playlist", - "play_music" - ], - [ - "music please", - "play_music" - ], - [ - "rock music playlist", - "play_music" - ], - [ - "i want to hear my rock playlist", - "play_music" - ], - [ - "play that song hey", - "play_music" - ], - [ - "yo play that song that go like she take my money", - "play_music" - ], - [ - "can u play the song that sound like bells going off", - "play_music" - ], - [ - "play me the playlist entitled jazz", - "play_music" - ], - [ - "turn on the rap playlist", - "play_music" - ], - [ - "turn my drake playlist on", - "play_music" - ], - [ - "i want to hear my hip hop playlist", - "play_music" - ], - [ - "i need to listen to my beyonce playlist", - "play_music" - ], - [ - "can you play right above it", - "play_music" - ], - [ - "can you play everlong by foo fighters", - "play_music" - ], - [ - "play the song god's plan", - "play_music" - ], - [ - "please play come as you are by nirvana", - "play_music" - ], - [ - "please play the new lady gaga song", - "play_music" - ], - [ - "can you put on music by beach house", - "play_music" - ], - [ - "can you find music by slow magic to put on", - "play_music" - ], - [ - "i want to play my maroon 5 playlist", - "play_music" - ], - [ - "i want to listen to my maroon 5 playlist, play it for me", - "play_music" - ], - [ - "look up my maroon 5 playlists; play it", - "play_music" - ], - [ - "would you play my maroon 5 playlist", - "play_music" - ], - [ - "i need for you to play my maroon 5 playlist", - "play_music" - ], - [ - "can you play music the beatles", - "play_music" - ], - [ - "i need to play the song that goes like hey jude don't make it bad", - "play_music" - ], - [ - "please play even flow by pearl jam", - "play_music" - ], - [ - "play help! by the beatles", - "play_music" - ], - [ - "i wanna play the song that goes like hey jude don't make it bad", - "play_music" - ], - [ - "please play 1979 by the smashing pumpkins", - "play_music" - ], - [ - "can you play music by bob dylan", - "play_music" - ], - [ - "can you play music by led zeppelin", - "play_music" - ], - [ - "go ahead and play the song that goes like hey jude don't make it bad", - "play_music" - ], - [ - "please play the song that goes like hey jude don't make it bad", - "play_music" - ], - [ - "can you play some music by the beatles for me", - "play_music" - ], - [ - "play the song that goes like hey jude don't make it bad", - "play_music" - ], - [ - "play heart shaped box", - "play_music" - ], - [ - "play hey jude", - "play_music" - ], - [ - "can you play music by the rolling stones", - "play_music" - ], - [ - "commence playing music", - "play_music" - ], - [ - "play me some music", - "play_music" - ], - [ - "i want to hear some music", - "play_music" - ], - [ - "start up some music", - "play_music" - ], - [ - "start playing some music", - "play_music" - ], - [ - "i want to hear my vaporwave playlist", - "play_music" - ], - [ - "play my post-rock playlist", - "play_music" - ], - [ - "play the song called guerrilla radio", - "play_music" - ], - [ - "resume my metal playlist", - "play_music" - ], - [ - "resume my death metal playlist", - "play_music" - ], - [ - "please play my taylor swift mix", - "play_music" - ], - [ - "start my playlist", - "play_music" - ], - [ - "start playing my black metal playlist", - "play_music" - ], - [ - "play the song called blood brothers", - "play_music" - ], - [ - "play that song called bring the noise", - "play_music" - ], - [ - "play me some tunes", - "play_music" - ], - [ - "i want to hear pop music", - "play_music" - ], - [ - "play some rock", - "play_music" - ], - [ - "play that song called colony of birchman", - "play_music" - ], - [ - "play the song called tiny dancer", - "play_music" - ], - [ - "turn the radio on for some music", - "play_music" - ], - [ - "can you play your guitar right now", - "play_music" - ], - [ - "can you play me that, \"baby shark, doo doo,\" song", - "play_music" - ], - [ - "play the song with the lyrics, \"baby shark, doo doo", - "play_music" - ], - [ - "find the song with, \"baby shark, doo doo", - "play_music" - ], - [ - "i want to hear the song that has, \"baby shark, doo doo", - "play_music" - ], - [ - "that \"baby shark, doo doo,\" song, i want to hear it", - "play_music" - ], - [ - "i want to hear beatles music", - "play_music" - ], - [ - "i want to listen to music by the beatles", - "play_music" - ], - [ - "play songs by the beatles", - "play_music" - ], - [ - "play music by the beatles", - "play_music" - ], - [ - "play beatles", - "play_music" - ], - [ - "pull up my shower playlist", - "play_music" - ], - [ - "i need to hear my shower playlist", - "play_music" - ], - [ - "use my shower playlist", - "play_music" - ], - [ - "do the shower playlist please", - "play_music" - ], - [ - "i want to hear my shower playlist", - "play_music" - ], - [ - "is it okay to listen to elvis' music", - "play_music" - ], - [ - "can you play elvis", - "play_music" - ], - [ - "can you let me listen to elvis", - "play_music" - ], - [ - "do you have music by elvis", - "play_music" - ], - [ - "do you have any elvis music", - "play_music" - ], - [ - "find that song that goes something like i'm hooked on a feeling", - "play_music" - ], - [ - "add my dentist appointment to the calendar", - "calendar_update" - ], - [ - "add a vet appointment for 5 pm on saturday", - "calendar_update" - ], - [ - "i need to edit this event out of my calendar", - "calendar_update" - ], - [ - "please remove an event from this calendar", - "calendar_update" - ], - [ - "i no longer want this event in my calendar", - "calendar_update" - ], - [ - "delete that event from calendar", - "calendar_update" - ], - [ - "make sure to add to my calendar the staff meeting for march 1 at 10 am", - "calendar_update" - ], - [ - "add staff meeting to my calendar for march 1 at 10:00 in the morning", - "calendar_update" - ], - [ - "i want you to add staff meeting to my calendar for march 1 at 10:00 am", - "calendar_update" - ], - [ - "please add to my calendar for the staff meeting that is scheduled on march 1, 2019 at 10 am", - "calendar_update" - ], - [ - "the staff meeting on march 1 at 10:00 am needs to be added to my calendar", - "calendar_update" - ], - [ - "leave the date of june 4 open on my calendar", - "calendar_update" - ], - [ - "i need anniversary dinner added to my schedule for march 7", - "calendar_update" - ], - [ - "can you change the date of the doctor's appointment event in my calendar from april 1 to april 3rd", - "calendar_update" - ], - [ - "i need a clear calendar for april 15", - "calendar_update" - ], - [ - "please add final exams to my calendar for may 2", - "calendar_update" - ], - [ - "add mom's birthday to my calendar on april 12", - "calendar_update" - ], - [ - "please take final exams off my calendar for may 3", - "calendar_update" - ], - [ - "add dentist appointment to my calendar for march 1", - "calendar_update" - ], - [ - "remove the may 11 event called baby shower from my calendar", - "calendar_update" - ], - [ - "clear my entire schedule for april 1", - "calendar_update" - ], - [ - "take the event called surprise party off my calendar for june 2", - "calendar_update" - ], - [ - "i want you to cancel the event called 'bachelorette party' on april 15", - "calendar_update" - ], - [ - "please schedule an event called 'nadine's baby shower' on my calendar", - "calendar_update" - ], - [ - "remove the june 12 event called sasha's wedding from my calendar", - "calendar_update" - ], - [ - "clear my calendar for the date of june 23", - "calendar_update" - ], - [ - "please put annie's baby shower on march 30 in my calendar", - "calendar_update" - ], - [ - "make sure my calendar is clear for june 1", - "calendar_update" - ], - [ - "remove anniversary dinner from my calendar on april 5", - "calendar_update" - ], - [ - "please clear entries on my calendar for the 1st", - "calendar_update" - ], - [ - "please add an item to my calendar that i need to clean the kitchen on thursday", - "calendar_update" - ], - [ - "i want the events on my calendar for march 20th, 2019 to be cleared", - "calendar_update" - ], - [ - "remove celebrate anniversary from my calendar", - "calendar_update" - ], - [ - "erase any event on my calendar that's set for wednesday of next week", - "calendar_update" - ], - [ - "i want to add a doctor's visit to the calendar for friday", - "calendar_update" - ], - [ - "clear my calendar for this friday", - "calendar_update" - ], - [ - "delete all events on my calendar that have the word girlfriend in them", - "calendar_update" - ], - [ - "go ahead and delete the doctor appointment i have scheduled for monday", - "calendar_update" - ], - [ - "add my birthday to my calendar for next month on the 5th", - "calendar_update" - ], - [ - "delete my golf tournament event from tomrrow", - "calendar_update" - ], - [ - "put my parents anniversary on the calendar for next week on tuesday", - "calendar_update" - ], - [ - "clear my calendar for tomorrow", - "calendar_update" - ], - [ - "remove the recurring training meeting events off my calendar", - "calendar_update" - ], - [ - "put a reminder on the calendar to buy a gun on march 1st", - "calendar_update" - ], - [ - "i need to add farm trip to my calendar for friday", - "calendar_update" - ], - [ - "i want to add farm trip to my calendar for friday", - "calendar_update" - ], - [ - "i must add farm trip to my calendar for friday", - "calendar_update" - ], - [ - "i got to remove fishing from my calendar for soccer", - "calendar_update" - ], - [ - "please remove fishing from my calendar for soccer", - "calendar_update" - ], - [ - "i need to remove fishing from my calendar for soccer", - "calendar_update" - ], - [ - "i wanna remove fishing from my calendar for soccer", - "calendar_update" - ], - [ - "i shall remove fishing from my calendar for soccer", - "calendar_update" - ], - [ - "add farm trip to my calendar for friday", - "calendar_update" - ], - [ - "i have to add farm trip to my calendar for friday", - "calendar_update" - ], - [ - "i need to add my doctor's appointment to my calendar for the first", - "calendar_update" - ], - [ - "i need to delete my doctor's appointment scheduled for march 15th from my calendar", - "calendar_update" - ], - [ - "i would like to have march 5th's 5k added to my calendar", - "calendar_update" - ], - [ - "add my spa appointment on the 12th to my calendar", - "calendar_update" - ], - [ - "can you add remember to register for the race on my calendar for the 15th of march", - "calendar_update" - ], - [ - "please add lunch and catch up with lisa on friday to my calendar", - "calendar_update" - ], - [ - "please scratch my march 1st meeting off my calendar", - "calendar_update" - ], - [ - "march 3rd needs to be cleared on my calendar", - "calendar_update" - ], - [ - "make sure april 1 is clear on my calendar", - "calendar_update" - ], - [ - "keep april 2nd wide open on my calendar please", - "calendar_update" - ], - [ - "get rid of everything on my calendar for march 2nd", - "calendar_update" - ], - [ - "take my lunch plans off the calendar for march 13th", - "calendar_update" - ], - [ - "take my dinner plans off my calendar for tomorrow", - "calendar_update" - ], - [ - "remove dinner with suzie from my calendar on march 1st", - "calendar_update" - ], - [ - "can you get rid of my trip to the zoo from my calendar on march 1st", - "calendar_update" - ], - [ - "remove my date with liz from my calendar on april 1st", - "calendar_update" - ], - [ - "clear my calendar on march 1st", - "calendar_update" - ], - [ - "write down appointment for tomorrow on my calendar", - "calendar_update" - ], - [ - "put appointment on my calendar for tomorrow", - "calendar_update" - ], - [ - "i need to put my appointment for tomorrow on my calendar", - "calendar_update" - ], - [ - "make not of my appointment for tomorrow on my calendar", - "calendar_update" - ], - [ - "remember to put down that i have an appointment for tomorrow on my calendar", - "calendar_update" - ], - [ - "add my doctor appointment on march 25th at 3:00 to my calendar", - "calendar_update" - ], - [ - "delete the hair appointment i had scheduled on may 1st pleae", - "calendar_update" - ], - [ - "lunch with deb at noon today", - "calendar_update" - ], - [ - "add jake's birthday party for friday at 5", - "calendar_update" - ], - [ - "remove the birthday party this friday from my schedule", - "calendar_update" - ], - [ - "remove from calendar jesse's bbq on june 9th", - "calendar_update" - ], - [ - "take lunch off my calendar on the 3rd", - "calendar_update" - ], - [ - "get rid of tuesday the 5ths dinner", - "calendar_update" - ], - [ - "remove jake's birthday on march 22", - "calendar_update" - ], - [ - "take pat's appointment off my calendar", - "calendar_update" - ], - [ - "take lunch with steven off of my calendar", - "calendar_update" - ], - [ - "i no longer need to go to the zoo on the 8th of this month", - "calendar_update" - ], - [ - "undo the last event on my calendar", - "calendar_update" - ], - [ - "for the calendar, on february 8 add moms birthday", - "calendar_update" - ], - [ - "schedule family dinner on my calendar on march 8", - "calendar_update" - ], - [ - "put \"get tires checked\" on my calendar", - "calendar_update" - ], - [ - "please put taco night on the house calendar date of january 6", - "calendar_update" - ], - [ - "remove meeting with carla from the calendar", - "calendar_update" - ], - [ - "add meeting with carla to my schedule for july 4", - "calendar_update" - ], - [ - "i need trip to the zoo on the calendar for june 4", - "calendar_update" - ], - [ - "delete lunch with steve on friday please", - "calendar_update" - ], - [ - "remove moms birthday from calendar", - "calendar_update" - ], - [ - "i need to delete an event from my calendar", - "calendar_update" - ], - [ - "i need to remove an event from my calendar", - "calendar_update" - ], - [ - "may i know if you are a real person or an ai", - "are_you_a_bot" - ], - [ - "i need to know if you are a real person or an ai", - "are_you_a_bot" - ], - [ - "i want to know if you are a real person or an ai", - "are_you_a_bot" - ], - [ - "tell me if you are a real person or an ai", - "are_you_a_bot" - ], - [ - "are your real or artificial", - "are_you_a_bot" - ], - [ - "am i talking to a real person", - "are_you_a_bot" - ], - [ - "am i speaking with someone real", - "are_you_a_bot" - ], - [ - "would you consider yourself to be a bot", - "are_you_a_bot" - ], - [ - "i am not a bot, are you", - "are_you_a_bot" - ], - [ - "do you think you are a bot", - "are_you_a_bot" - ], - [ - "you sound like a bot", - "are_you_a_bot" - ], - [ - "how do i know that you're a person", - "are_you_a_bot" - ], - [ - "prove that you're a person", - "are_you_a_bot" - ], - [ - "are you a bot or a person", - "are_you_a_bot" - ], - [ - "are you real or fake", - "are_you_a_bot" - ], - [ - "are you ai, or a person", - "are_you_a_bot" - ], - [ - "are you a human or a bot", - "are_you_a_bot" - ], - [ - "am i talking with real person or ai", - "are_you_a_bot" - ], - [ - "are you real or an ai", - "are_you_a_bot" - ], - [ - "are you a bot right now", - "are_you_a_bot" - ], - [ - "are you a real human", - "are_you_a_bot" - ], - [ - "are you a real person or an ai", - "are_you_a_bot" - ], - [ - "so are you a real person", - "are_you_a_bot" - ], - [ - "so are you human", - "are_you_a_bot" - ], - [ - "so are you a bot", - "are_you_a_bot" - ], - [ - "tell me now if you are a bot", - "are_you_a_bot" - ], - [ - "i need to know if you are a bot", - "are_you_a_bot" - ], - [ - "are you an ai or a real person", - "are_you_a_bot" - ], - [ - "are you actually a bot", - "are_you_a_bot" - ], - [ - "so are you real", - "are_you_a_bot" - ], - [ - "are you a human", - "are_you_a_bot" - ], - [ - "am i talking with a real person", - "are_you_a_bot" - ], - [ - "are you a computer or a real person", - "are_you_a_bot" - ], - [ - "are you a computer, or are you a real person", - "are_you_a_bot" - ], - [ - "are you a live person or a computer", - "are_you_a_bot" - ], - [ - "are you real or automated", - "are_you_a_bot" - ], - [ - "is this a person talking to me or a computer", - "are_you_a_bot" - ], - [ - "are you a human being or a robot", - "are_you_a_bot" - ], - [ - "are you alive", - "are_you_a_bot" - ], - [ - "are you a live human being", - "are_you_a_bot" - ], - [ - "are you a computer", - "are_you_a_bot" - ], - [ - "are you human or a bot", - "are_you_a_bot" - ], - [ - "are you a real person or a computer", - "are_you_a_bot" - ], - [ - "are you an automated assistance", - "are_you_a_bot" - ], - [ - "are you a person", - "are_you_a_bot" - ], - [ - "are you an actual person", - "are_you_a_bot" - ], - [ - "are you really a human", - "are_you_a_bot" - ], - [ - "are you a real human being", - "are_you_a_bot" - ], - [ - "do you know if you are a robot", - "are_you_a_bot" - ], - [ - "are you really an actual human being", - "are_you_a_bot" - ], - [ - "what are you", - "are_you_a_bot" - ], - [ - "do you know you are not human", - "are_you_a_bot" - ], - [ - "is there anything real about you", - "are_you_a_bot" - ], - [ - "how real are you", - "are_you_a_bot" - ], - [ - "are you a real life person", - "are_you_a_bot" - ], - [ - "tell me if you are human", - "are_you_a_bot" - ], - [ - "are you ai", - "are_you_a_bot" - ], - [ - "am i speaking with ai or a real, live person", - "are_you_a_bot" - ], - [ - "are you a member or the human race or are you a computer program", - "are_you_a_bot" - ], - [ - "are you a person in real life or programmed ai", - "are_you_a_bot" - ], - [ - "do you know whether you are a human or whether you're a computer", - "are_you_a_bot" - ], - [ - "should i regard you as a human or as a computer", - "are_you_a_bot" - ], - [ - "would you say that you are human or copmuter", - "are_you_a_bot" - ], - [ - "how are you classified, as a human or a computer", - "are_you_a_bot" - ], - [ - "can you tell me if you're human or if you're a computer", - "are_you_a_bot" - ], - [ - "i think you are a bot", - "are_you_a_bot" - ], - [ - "are you considered a bot", - "are_you_a_bot" - ], - [ - "am i talking to an actual person", - "are_you_a_bot" - ], - [ - "do you consider yourself a bot", - "are_you_a_bot" - ], - [ - "you are a bot aren't you", - "are_you_a_bot" - ], - [ - "what are you, a bot or human", - "are_you_a_bot" - ], - [ - "are you a live being", - "are_you_a_bot" - ], - [ - "are you real or are you an ai", - "are_you_a_bot" - ], - [ - "please tell me if you are an ai", - "are_you_a_bot" - ], - [ - "are you ai or a real person please", - "are_you_a_bot" - ], - [ - "are an an ai", - "are_you_a_bot" - ], - [ - "are you real or not", - "are_you_a_bot" - ], - [ - "are you an ai or person", - "are_you_a_bot" - ], - [ - "are you really a person or an ai", - "are_you_a_bot" - ], - [ - "is there a way to tell if you are real or an ai", - "are_you_a_bot" - ], - [ - "tell me if you are a person or ai", - "are_you_a_bot" - ], - [ - "how do i know if you are a real person", - "are_you_a_bot" - ], - [ - "are you a real person or a bot", - "are_you_a_bot" - ], - [ - "am i talking to a person or a bot", - "are_you_a_bot" - ], - [ - "are you a machine", - "are_you_a_bot" - ], - [ - "are you a real person or artificial intelligence", - "are_you_a_bot" - ], - [ - "are you a real person or automated", - "are_you_a_bot" - ], - [ - "are you a real person or software", - "are_you_a_bot" - ], - [ - "are you a real person or a robot", - "are_you_a_bot" - ], - [ - "are you an ai or can you prove you're human", - "are_you_a_bot" - ], - [ - "are you a human or an ai", - "are_you_a_bot" - ], - [ - "are you an actual person, or ai", - "are_you_a_bot" - ], - [ - "are you a bot or a real person", - "are_you_a_bot" - ], - [ - "do you identify as a human or computer", - "are_you_a_bot" - ], - [ - "please specify if you are human or computer", - "are_you_a_bot" - ], - [ - "tell me if you are a human or a computer", - "are_you_a_bot" - ], - [ - "can you specify if you are a human or a computer", - "are_you_a_bot" - ], - [ - "let me know if you are a human or a computer", - "are_you_a_bot" - ], - [ - "is this a computer right now or a human being", - "are_you_a_bot" - ], - [ - "is this human or a robot", - "are_you_a_bot" - ], - [ - "what level is my gas tank at", - "gas" - ], - [ - "where's the gas tank level at", - "gas" - ], - [ - "how does my gas tank look", - "gas" - ], - [ - "what line is the gas tank at", - "gas" - ], - [ - "how much gas is in my gas tank", - "gas" - ], - [ - "how much gas is left", - "gas" - ], - [ - "what is the amount of gas i have", - "gas" - ], - [ - "tell me the amount of gas i have", - "gas" - ], - [ - "in my tank how much gas is there", - "gas" - ], - [ - "i'd like to know how much gas is left", - "gas" - ], - [ - "what amount of fuel do i have left", - "gas" - ], - [ - "what's the fuel level", - "gas" - ], - [ - "what's the status of my gas tank", - "gas" - ], - [ - "what is my current gas level", - "gas" - ], - [ - "what is my current fuel level", - "gas" - ], - [ - "what's my current gas level", - "gas" - ], - [ - "what is my current gas level at", - "gas" - ], - [ - "what's my current fuel level", - "gas" - ], - [ - "how much gas is in my car", - "gas" - ], - [ - "how empty is my gas tank", - "gas" - ], - [ - "what does my gas meter say", - "gas" - ], - [ - "am i running low on gas", - "gas" - ], - [ - "how much gas to i have left", - "gas" - ], - [ - "what do i have left in the gas tank", - "gas" - ], - [ - "can you tell me the amount of gas i have", - "gas" - ], - [ - "i need to know how much gas i got", - "gas" - ], - [ - "whats left as far as gas goes", - "gas" - ], - [ - "how much farther can i drive on the gas i have", - "gas" - ], - [ - "do i have the gas to get to orlando", - "gas" - ], - [ - "how much gas do i currently have", - "gas" - ], - [ - "do i have enough fuel to get to orlando", - "gas" - ], - [ - "will i make it on the gas i have to orlando", - "gas" - ], - [ - "does my car have enough gas to get to chicago", - "gas" - ], - [ - "does my car have enough gas to get to atlantic city", - "gas" - ], - [ - "can my car get to reno with the gas currently in my tank", - "gas" - ], - [ - "can my car get to dallas with the gas currently in my tank", - "gas" - ], - [ - "does my car have enough gas to get to detroit", - "gas" - ], - [ - "i need to know how much gas i have", - "gas" - ], - [ - "i wanna know how much gas i have", - "gas" - ], - [ - "let me know how much gas i have in total", - "gas" - ], - [ - "let me know how much gas i have", - "gas" - ], - [ - "what is the total amount of gas in my car", - "gas" - ], - [ - "what amount of gas is in my car", - "gas" - ], - [ - "how much total gas do i have", - "gas" - ], - [ - "tell me how much gas i have", - "gas" - ], - [ - "what amount of gas do i have in my car", - "gas" - ], - [ - "is my gas tank at least half full", - "gas" - ], - [ - "how much gas is in my tank", - "gas" - ], - [ - "is my gas tank full", - "gas" - ], - [ - "should i get more gas", - "gas" - ], - [ - "am i low on gas", - "gas" - ], - [ - "what level is my gas at", - "gas" - ], - [ - "can you read my gas level", - "gas" - ], - [ - "what is the amount of gas left", - "gas" - ], - [ - "do i have a lot of gas left", - "gas" - ], - [ - "what is my gas level", - "gas" - ], - [ - "how's my gas supply looking", - "gas" - ], - [ - "do i have enough gas left to make it to tampa", - "gas" - ], - [ - "what percent of gas do i have left", - "gas" - ], - [ - "how many gallons do i have left", - "gas" - ], - [ - "is there enough fuel to drive to tampa", - "gas" - ], - [ - "do i need to get gas soon", - "gas" - ], - [ - "do i have enough fuel to get to tampa", - "gas" - ], - [ - "what's left in my gas tank", - "gas" - ], - [ - "do i have enough fuel for the drive to tampa", - "gas" - ], - [ - "can i make it to tampa without needing to get more gas", - "gas" - ], - [ - "can i get to work safely or do i need to stop and get gas", - "gas" - ], - [ - "how many miles can i go with my current fuel level", - "gas" - ], - [ - "is the level of fuel in my car enough to get me to work", - "gas" - ], - [ - "can i make it to work with my current fuel level", - "gas" - ], - [ - "how much does it cost to get my car filled up", - "gas" - ], - [ - "will i run out of gas before i get to sioux falls", - "gas" - ], - [ - "how many miles is there left to get to sioux falls", - "gas" - ], - [ - "how many miles before i run out of gas", - "gas" - ], - [ - "where can i get gas to get to sioux falls", - "gas" - ], - [ - "i'd just like to know how much gas is in my vehicle", - "gas" - ], - [ - "what is the number of gas in my car right now", - "gas" - ], - [ - "inform me as to how much gas my car has", - "gas" - ], - [ - "what is the amount of gas in my car", - "gas" - ], - [ - "where is my gas level right now", - "gas" - ], - [ - "what is my current amount of gas", - "gas" - ], - [ - "what percentage of gas do i have left", - "gas" - ], - [ - "please check the amount of gas i have", - "gas" - ], - [ - "can you tell me the amount of gas i have remaining", - "gas" - ], - [ - "i would like to know the amount of gas i have", - "gas" - ], - [ - "i need to know how much gas is left", - "gas" - ], - [ - "please tell me the amount of gas i have", - "gas" - ], - [ - "how low is my gas tank", - "gas" - ], - [ - "whats in my gas tank", - "gas" - ], - [ - "what is left in my gas tank", - "gas" - ], - [ - "how much fuel do i have", - "gas" - ], - [ - "do i have enough fuel to get to dollar tree", - "gas" - ], - [ - "is there enough fuel to make it to the walmart", - "gas" - ], - [ - "how much fuel is in the tank", - "gas" - ], - [ - "how much gas is in the tank", - "gas" - ], - [ - "do i have enough fuel in the gas tank", - "gas" - ], - [ - "how much petrol do i have", - "gas" - ], - [ - "do i have enough fuel to make it to the theater", - "gas" - ], - [ - "do i have enough gas in the fuel tank", - "gas" - ], - [ - "what my fuel tank at", - "gas" - ], - [ - "how long til my visa card expires", - "expiration_date" - ], - [ - "on what date does my visa card expires", - "expiration_date" - ], - [ - "on what month and year does my card expire", - "expiration_date" - ], - [ - "how soon does my visa card expire", - "expiration_date" - ], - [ - "how much time do i have before my credit card expires", - "expiration_date" - ], - [ - "how many more days before my credit card expires", - "expiration_date" - ], - [ - "can you tell me if my credit card expires in the near future", - "expiration_date" - ], - [ - "what is the validity of my credit card", - "expiration_date" - ], - [ - "tell me the expiry date of my credit card", - "expiration_date" - ], - [ - "does my credit card expire soon", - "expiration_date" - ], - [ - "when my credit card is going to expire", - "expiration_date" - ], - [ - "what is the expiry date of my credit card", - "expiration_date" - ], - [ - "in what month will my card reach expiration", - "expiration_date" - ], - [ - "which month is the one in which my card expires", - "expiration_date" - ], - [ - "how much longer until my credit card expires", - "expiration_date" - ], - [ - "can you tell me what date my credit card expires", - "expiration_date" - ], - [ - "please find the expiration month listed on my card", - "expiration_date" - ], - [ - "can you please tell me my card's expiration month", - "expiration_date" - ], - [ - "is my credit card expiration date approaching", - "expiration_date" - ], - [ - "will you please confirm the month that my card expires", - "expiration_date" - ], - [ - "what's the expiration date on my credit card", - "expiration_date" - ], - [ - "when is my credit due to expire", - "expiration_date" - ], - [ - "what's the expiry month of my card", - "expiration_date" - ], - [ - "tell me the month my card expires", - "expiration_date" - ], - [ - "tell me the expiry month of my card", - "expiration_date" - ], - [ - "i want to know the expiry month of my card", - "expiration_date" - ], - [ - "is my credit card expiring soon", - "expiration_date" - ], - [ - "how long is the validity of my credit card", - "expiration_date" - ], - [ - "please let me know when i need to renew my credit card", - "expiration_date" - ], - [ - "how long is it until my credit card expires", - "expiration_date" - ], - [ - "how long until i my card expires", - "expiration_date" - ], - [ - "whats the expiration date on my credit card", - "expiration_date" - ], - [ - "when does my card expire", - "expiration_date" - ], - [ - "when will my american express credit card expire", - "expiration_date" - ], - [ - "what is the expiration date of my wells fargo card", - "expiration_date" - ], - [ - "please tell me the month and year of expiration for my discover card", - "expiration_date" - ], - [ - "when does my capital one visa expire", - "expiration_date" - ], - [ - "can you tell me the expiration date for my mastercard", - "expiration_date" - ], - [ - "what is the expiration date of my current card", - "expiration_date" - ], - [ - "do i need a new card yet", - "expiration_date" - ], - [ - "when do i have to renew my card so it doesn't expire", - "expiration_date" - ], - [ - "is my card set to expire soon", - "expiration_date" - ], - [ - "how long is it going to be until my card expires", - "expiration_date" - ], - [ - "what's the exact date that my chase card will no longer work", - "expiration_date" - ], - [ - "what's the month that my card expires", - "expiration_date" - ], - [ - "my card expires in what month", - "expiration_date" - ], - [ - "tell me the month that my credit card will expire", - "expiration_date" - ], - [ - "my credit card is set to expire in what month", - "expiration_date" - ], - [ - "my chase card expires on what date", - "expiration_date" - ], - [ - "my discover card expires on what date", - "expiration_date" - ], - [ - "when does my discover card expire", - "expiration_date" - ], - [ - "my american express card expires on what date", - "expiration_date" - ], - [ - "how many days until my amex card reaches it expiration date", - "expiration_date" - ], - [ - "what date does my capital one card expire", - "expiration_date" - ], - [ - "when is the expiration date for my discover card", - "expiration_date" - ], - [ - "can you check the expiration date for my amex card", - "expiration_date" - ], - [ - "can i have the expiration date for my capital one card", - "expiration_date" - ], - [ - "during which month will my card expire", - "expiration_date" - ], - [ - "tell me the month that my card will expire in", - "expiration_date" - ], - [ - "help me figure out when exactly my credit card will be expiring", - "expiration_date" - ], - [ - "could you look up the date that my credit card is set to expire", - "expiration_date" - ], - [ - "look up the expiration date for my barclay's card", - "expiration_date" - ], - [ - "when will my american express card expire", - "expiration_date" - ], - [ - "can you find out for me when my credit card will be expiring", - "expiration_date" - ], - [ - "i need to know when my card is set to expire please", - "expiration_date" - ], - [ - "during what month will my card's expiration date fall on", - "expiration_date" - ], - [ - "what is the month that my card is set to expire in", - "expiration_date" - ], - [ - "i need to know when my mastercard will expire", - "expiration_date" - ], - [ - "i need to know the date of expiration for my credit card", - "expiration_date" - ], - [ - "do you know the expiration date for my visa card", - "expiration_date" - ], - [ - "please find out the expiration date for my credit card", - "expiration_date" - ], - [ - "tell me the expiration date for my current credit card", - "expiration_date" - ], - [ - "how long before my amex card expires", - "expiration_date" - ], - [ - "do you know the expiration date on my credit card", - "expiration_date" - ], - [ - "what is the month of my card's expiration date", - "expiration_date" - ], - [ - "where can i find my credit card's expiration date", - "expiration_date" - ], - [ - "please look up my card's expiration date", - "expiration_date" - ], - [ - "how long will it be until my visa card expires", - "expiration_date" - ], - [ - "what month and year will my visa card expire", - "expiration_date" - ], - [ - "when is the date my visa card will expire", - "expiration_date" - ], - [ - "when is the expiration date for my visa card", - "expiration_date" - ], - [ - "what is the expiration date on my visa card", - "expiration_date" - ], - [ - "what is the expiration date on my credit card", - "expiration_date" - ], - [ - "when is my card going to expire", - "expiration_date" - ], - [ - "when is my credit card going to expire", - "expiration_date" - ], - [ - "what's the last date i can use my credit card", - "expiration_date" - ], - [ - "what is the expiration date on my card", - "expiration_date" - ], - [ - "when will my discovery card expire", - "expiration_date" - ], - [ - "when does my amex expire", - "expiration_date" - ], - [ - "can you check when my visa card expires", - "expiration_date" - ], - [ - "tell me when my visa card will have expired", - "expiration_date" - ], - [ - "when will my amex card reach its expiration", - "expiration_date" - ], - [ - "when's my visa card expiring", - "expiration_date" - ], - [ - "what date will my hy-vee card need to be renewed", - "expiration_date" - ], - [ - "how long until my mastercard expires", - "expiration_date" - ], - [ - "how long do i've got until my discovery card expires", - "expiration_date" - ], - [ - "when should i expect my visa to expire", - "expiration_date" - ], - [ - "how long until my visa expires", - "expiration_date" - ], - [ - "find out for me when my mastercard expires", - "expiration_date" - ], - [ - "when will my visa next expire", - "expiration_date" - ], - [ - "insert what i am listening to into my jazz playlist", - "update_playlist" - ], - [ - "add this tune to my jazz playlist", - "update_playlist" - ], - [ - "can you add this song to my jazz playlist", - "update_playlist" - ], - [ - "please add this song to my jazz playlist", - "update_playlist" - ], - [ - "add this song to my jazz playlist", - "update_playlist" - ], - [ - "add creep by radio head to the playlist", - "update_playlist" - ], - [ - "please add someday by the strokes to my playlist", - "update_playlist" - ], - [ - "include smooth operator by sade in my playlist", - "update_playlist" - ], - [ - "can you put smooth operator by sade on my playlist", - "update_playlist" - ], - [ - "add to my playlist smooth operator by sade", - "update_playlist" - ], - [ - "append my playlist with smooth operator by sade", - "update_playlist" - ], - [ - "put smooth operator by sade on my playlist", - "update_playlist" - ], - [ - "could you put broken by evanescense to my playlist", - "update_playlist" - ], - [ - "what did you add to my playlist - broken by evanescence", - "update_playlist" - ], - [ - "add the next song to my playlist - broken by evanescence", - "update_playlist" - ], - [ - "could you insert broken by evanescence to my music", - "update_playlist" - ], - [ - "add broken by evanescence to my playlist", - "update_playlist" - ], - [ - "favorite what's currently playing on my playlist", - "update_playlist" - ], - [ - "add the current song to my favorite playlist", - "update_playlist" - ], - [ - "the song that's on, add it to my favorite playlist", - "update_playlist" - ], - [ - "put the current song in my favorite playlist", - "update_playlist" - ], - [ - "add what's playing on my favorite playlist", - "update_playlist" - ], - [ - "i would like to add you say by lauren daigle to my playlist", - "update_playlist" - ], - [ - "will you please add cannons by phil wickham to my playlist", - "update_playlist" - ], - [ - "let's add wonder by hillsong united to my playlist", - "update_playlist" - ], - [ - "can you please add hero by skillet to my playlist", - "update_playlist" - ], - [ - "please add roar by katy perry to my playlist", - "update_playlist" - ], - [ - "i think i wanna add heart shaped box by nirvana to my playlist", - "update_playlist" - ], - [ - "i wish to add this song to my classical playlist now", - "update_playlist" - ], - [ - "add help! by the beatles to my playlist", - "update_playlist" - ], - [ - "i need to add this song to my playlist of rock", - "update_playlist" - ], - [ - "i want to add this song to my classical playlist", - "update_playlist" - ], - [ - "i wanna add help! by the beatles to my playlist", - "update_playlist" - ], - [ - "i really would like to add hey jude by the beatles to my playlist", - "update_playlist" - ], - [ - "i gotta add hey jude by the beatles to my playlist", - "update_playlist" - ], - [ - "i wanna add this song to my rock playlist", - "update_playlist" - ], - [ - "my new playlist well be having god's plan adding to it", - "update_playlist" - ], - [ - "god's plan will be my new song added to new playlist", - "update_playlist" - ], - [ - "adding gods plan to new playlist", - "update_playlist" - ], - [ - "god's plan will be added to my new playlist", - "update_playlist" - ], - [ - "new playlist that i will add god's plan to", - "update_playlist" - ], - [ - "please put africa by toto on my playlist", - "update_playlist" - ], - [ - "please add the immigrant song by led zeppelin to my playlist", - "update_playlist" - ], - [ - "add the thong song by cisqo to my playlist, please", - "update_playlist" - ], - [ - "put mambo #5 by lou bega on my playlist, please", - "update_playlist" - ], - [ - "put dr feelgood by motley crue on my playlist", - "update_playlist" - ], - [ - "add this song to the end of my led zeppelin playlist", - "update_playlist" - ], - [ - "add this song to my rainy day playlist", - "update_playlist" - ], - [ - "please put this song on my moody monday playlist", - "update_playlist" - ], - [ - "put the song that's playing to my techno playlist", - "update_playlist" - ], - [ - "put this song on my edm playlist", - "update_playlist" - ], - [ - "add this song to my cleaning playlist", - "update_playlist" - ], - [ - "add this song to my slow jams playlist", - "update_playlist" - ], - [ - "will you add what i'm listening to to my love playlist", - "update_playlist" - ], - [ - "add walk by pantera to my playlist", - "update_playlist" - ], - [ - "add one by metallica to my playlist", - "update_playlist" - ], - [ - "will you add what i'm listening to to my road trip playlist", - "update_playlist" - ], - [ - "add this song to my game night playlist", - "update_playlist" - ], - [ - "add coming undone by korn to my playlist", - "update_playlist" - ], - [ - "will you add what i'm listening to to my work playlist", - "update_playlist" - ], - [ - "add welcome to the jungle by guns n roses to my playlist", - "update_playlist" - ], - [ - "will you add what i'm listening to to my bedroom playlist", - "update_playlist" - ], - [ - "add this song to my dinner playlist", - "update_playlist" - ], - [ - "will you add what i'm listening to to my dinner playlist", - "update_playlist" - ], - [ - "add this song to my top 40 playlist", - "update_playlist" - ], - [ - "add hells bells by acdc to my playlist", - "update_playlist" - ], - [ - "make this song part of the \"kids\" playlist", - "update_playlist" - ], - [ - "include this song in the \"kids\" playlist", - "update_playlist" - ], - [ - "connect this song to my playlist \"kids", - "update_playlist" - ], - [ - "please add to \"kids\" playlist", - "update_playlist" - ], - [ - "i want this song put on my \"kids\" playlist", - "update_playlist" - ], - [ - "this song needs to be added to my reggae playlist", - "update_playlist" - ], - [ - "this song should be add this on my rock playlist", - "update_playlist" - ], - [ - "could you add this song to my rock playlist", - "update_playlist" - ], - [ - "add a song to my rock playlist", - "update_playlist" - ], - [ - "put this song on my reggae playlist", - "update_playlist" - ], - [ - "add this song to shared playlist", - "update_playlist" - ], - [ - "put this song in vibes playlist", - "update_playlist" - ], - [ - "add yosemite to my rap playlist", - "update_playlist" - ], - [ - "add 7 rings to my pop playlist", - "update_playlist" - ], - [ - "add baby shark to my kid playlist", - "update_playlist" - ], - [ - "add body to my dance playlist", - "update_playlist" - ], - [ - "add mia to my spanish playlist", - "update_playlist" - ], - [ - "add single ladies by beyonce to my pop playlist", - "update_playlist" - ], - [ - "add this track to my rock playlist", - "update_playlist" - ], - [ - "add psycho by post malone to my playlist", - "update_playlist" - ], - [ - "please add this song to my alternative playlist", - "update_playlist" - ], - [ - "add i like it by cardi b to my playlist", - "update_playlist" - ], - [ - "add american idiot by green day to my playlist", - "update_playlist" - ], - [ - "can you add that to my chillwave playlist", - "update_playlist" - ], - [ - "add ruby soho by rancid to my playlist", - "update_playlist" - ], - [ - "add god's plan by drake to my playlist", - "update_playlist" - ], - [ - "add this song to my post-rock playlist", - "update_playlist" - ], - [ - "transfer happy to my rb playlist", - "update_playlist" - ], - [ - "include happy on my rb playlist", - "update_playlist" - ], - [ - "list happy on my rb playlist", - "update_playlist" - ], - [ - "get happy on my rb playlist", - "update_playlist" - ], - [ - "i want to have happy added to my rb playlist", - "update_playlist" - ], - [ - "can you add passionfruit by yaeji to my playlist", - "update_playlist" - ], - [ - "yellow by coldplay to my playlist please", - "update_playlist" - ], - [ - "remove my reservation at outback for timmy", - "cancel_reservation" - ], - [ - "can you cancel the reservation for kyle's party at red lobster", - "cancel_reservation" - ], - [ - "cancel my party reservation for brad at longhorn", - "cancel_reservation" - ], - [ - "get rid of my reservation at chez francois for jennifer", - "cancel_reservation" - ], - [ - "cancel the reservation at olive garden for tommy", - "cancel_reservation" - ], - [ - "you can cancel my reservation", - "cancel_reservation" - ], - [ - "my reservation is no longer needed", - "cancel_reservation" - ], - [ - "tell the restaurant i cannot make it", - "cancel_reservation" - ], - [ - "there is no need to confirm my reservation", - "cancel_reservation" - ], - [ - "would you please cancel the reservations for dinner", - "cancel_reservation" - ], - [ - "hello, i need to cancel tonight's reservation for dinner", - "cancel_reservation" - ], - [ - "i need to put in a cancellation for the dinner plans tonight", - "cancel_reservation" - ], - [ - "cancel the dinner reservation i made, okay", - "cancel_reservation" - ], - [ - "i need to cancel my dinner reservation", - "cancel_reservation" - ], - [ - "please cancel my reservation for dinner", - "cancel_reservation" - ], - [ - "cancel my reservation for dinner", - "cancel_reservation" - ], - [ - "my reservation for dinner needs to be canceled", - "cancel_reservation" - ], - [ - "call the restaurant and cancel my reservation", - "cancel_reservation" - ], - [ - "get rid of my 2 pm reservation at ruth's steakhouse", - "cancel_reservation" - ], - [ - "can you cancelt the reservation i have for dinner", - "cancel_reservation" - ], - [ - "please cancel my dinner reservation for tuesday", - "cancel_reservation" - ], - [ - "can you cancel my reservation for dinner tomorrow", - "cancel_reservation" - ], - [ - "cancel my reservation for 6 pm at sidetracks", - "cancel_reservation" - ], - [ - "get rid of my 4 pm reservation at the steakhouse please", - "cancel_reservation" - ], - [ - "can you cancel the reservation i have at 4 pm at ruth's", - "cancel_reservation" - ], - [ - "cancel the reservation i made for 8 pm at black rock", - "cancel_reservation" - ], - [ - "cancel my dinner reservation please", - "cancel_reservation" - ], - [ - "please cancel the table i had reserved for tonight", - "cancel_reservation" - ], - [ - "i made a reservation for chris at tony's, please cancel it", - "cancel_reservation" - ], - [ - "cancel tonight's dinner reservation", - "cancel_reservation" - ], - [ - "i don't need my reservation, can you cancel it", - "cancel_reservation" - ], - [ - "can you cancel my dinner reservation", - "cancel_reservation" - ], - [ - "please cancel my reservation for chris at brio", - "cancel_reservation" - ], - [ - "please cancel my dinner reservation", - "cancel_reservation" - ], - [ - "can you cancel my reservation tonight for chris at smith and wollensky", - "cancel_reservation" - ], - [ - "i don't need my reservation, cancel it", - "cancel_reservation" - ], - [ - "can you cancel my reservation on tuesday for chris at stella maris", - "cancel_reservation" - ], - [ - "cancel my reservation for chris at jp field's", - "cancel_reservation" - ], - [ - "please cancel my reservation", - "cancel_reservation" - ], - [ - "cancel my reservation for dinner, please", - "cancel_reservation" - ], - [ - "tell the restaurant to cancel my reservation", - "cancel_reservation" - ], - [ - "abandon the dinner reservation i made", - "cancel_reservation" - ], - [ - "scrap that dinner reservation", - "cancel_reservation" - ], - [ - "call off the dinner reservation", - "cancel_reservation" - ], - [ - "cancel my reservation for me", - "cancel_reservation" - ], - [ - "get rid of my dinner reservation", - "cancel_reservation" - ], - [ - "the reservation i placed is not needed anymore", - "cancel_reservation" - ], - [ - "annul the reservation i created", - "cancel_reservation" - ], - [ - "the reservation i created is not necessary anymore", - "cancel_reservation" - ], - [ - "the reservation i made is not required anymore", - "cancel_reservation" - ], - [ - "repeal the dinner reservation", - "cancel_reservation" - ], - [ - "can i cancel my reservations", - "cancel_reservation" - ], - [ - "i would like to cancel my reservations", - "cancel_reservation" - ], - [ - "could i cancel my reservations", - "cancel_reservation" - ], - [ - "can i cancel my reservations please", - "cancel_reservation" - ], - [ - "i need to cancel my reservations", - "cancel_reservation" - ], - [ - "can you cancel my 5:30 pm table reservation at parc", - "cancel_reservation" - ], - [ - "i need you to cancel my reservation for smith's at 6:15", - "cancel_reservation" - ], - [ - "cancel my 8:00 pm prime rib reservation", - "cancel_reservation" - ], - [ - "go ahead and cancel the reservation i made for 6:00 pm at parc", - "cancel_reservation" - ], - [ - "please cancel my 7:30 reservation for morton's", - "cancel_reservation" - ], - [ - "is it possible to cancel the reservation at outback for the johnsons", - "cancel_reservation" - ], - [ - "i made a reservation under mark hamil at the emporium that i don't need any more", - "cancel_reservation" - ], - [ - "i no longer need a table for four at chili's", - "cancel_reservation" - ], - [ - "we have a table at the taco bell under bowie we need to release", - "cancel_reservation" - ], - [ - "i have a reservation at pizza hut under the name leia roberts and i want to cancel it", - "cancel_reservation" - ], - [ - "can you undo the reservation", - "cancel_reservation" - ], - [ - "i'd like to cancel the party of 7 we reserved at the olive garden", - "cancel_reservation" - ], - [ - "i want to cancel the reservation for mercury at the ritz", - "cancel_reservation" - ], - [ - "just trash the reservation i made please", - "cancel_reservation" - ], - [ - "please cancel the table for two at burger king", - "cancel_reservation" - ], - [ - "please delete the reservation for 3 people at outback", - "cancel_reservation" - ], - [ - "go ahead and close the reservation", - "cancel_reservation" - ], - [ - "please unreserve that table", - "cancel_reservation" - ], - [ - "i no longer need the reservation for 20 at ihop", - "cancel_reservation" - ], - [ - "im not going to dinner tonight", - "cancel_reservation" - ], - [ - "im not gonna need the dinner reservation", - "cancel_reservation" - ], - [ - "remove my dinner reservation", - "cancel_reservation" - ], - [ - "i no longer need the dinner reservation", - "cancel_reservation" - ], - [ - "can i cancel my reservation for 4 at red robin", - "cancel_reservation" - ], - [ - "cancel my reservation for 4 at red robin", - "cancel_reservation" - ], - [ - "i want to cancel my reservation for 5 at red robin", - "cancel_reservation" - ], - [ - "could you please cancel my reservation for 5 at red robin", - "cancel_reservation" - ], - [ - "cancel my reservation for 3 at carlos jr", - "cancel_reservation" - ], - [ - "change my reservation with carl at umami to canceled", - "cancel_reservation" - ], - [ - "i no longer need my reservation with carl at umami", - "cancel_reservation" - ], - [ - "cancel my reservation with carl at umami", - "cancel_reservation" - ], - [ - "make sure my reservation at umami with carl is canceled", - "cancel_reservation" - ], - [ - "end my reservation with carl at umami", - "cancel_reservation" - ], - [ - "because of circumstances i don't need my reservation anymore", - "cancel_reservation" - ], - [ - "i won't require my reservation anymore", - "cancel_reservation" - ], - [ - "i'll have to cancel my reservation for tonight", - "cancel_reservation" - ], - [ - "something's come up so i need to cancel my reservation so now", - "cancel_reservation" - ], - [ - "the reservation i have isn't needed any more", - "cancel_reservation" - ], - [ - "the reservation at zepher cancel joe from that", - "cancel_reservation" - ], - [ - "joe and i are to cancel the reservation at zephers now", - "cancel_reservation" - ], - [ - "cancel my reservations for joe's at zepher right now", - "cancel_reservation" - ], - [ - "please cancel the reservation at zephers for joe and myself right now", - "cancel_reservation" - ], - [ - "cancel the reservation for joe and i right now for the zephers reservation we had booked", - "cancel_reservation" - ], - [ - "cancel my 6:00 reservation at the cheesecake factory", - "cancel_reservation" - ], - [ - "please, recite to me some good one liners", - "tell_joke" - ], - [ - "do you know any good jokes about zebras", - "tell_joke" - ], - [ - "can you tell me any truly funny knock knock jokes", - "tell_joke" - ], - [ - "what do people find funny about food", - "tell_joke" - ], - [ - "what are some funny things about food", - "tell_joke" - ], - [ - "show me something funny about food", - "tell_joke" - ], - [ - "indicate something funny on the topic of food", - "tell_joke" - ], - [ - "what's a good joke", - "tell_joke" - ], - [ - "i'd love to hear a joke", - "tell_joke" - ], - [ - "can you tell a joke", - "tell_joke" - ], - [ - "would you tell me a joke", - "tell_joke" - ], - [ - "how about you tell me a joke", - "tell_joke" - ], - [ - "will you tell a joke", - "tell_joke" - ], - [ - "please tell me a joke", - "tell_joke" - ], - [ - "make me laugh", - "tell_joke" - ], - [ - "do you have any jokes", - "tell_joke" - ], - [ - "tell me something funny", - "tell_joke" - ], - [ - "hit me with a good joke", - "tell_joke" - ], - [ - "what's the funniest joke you know", - "tell_joke" - ], - [ - "tell me a joke if you'd like to", - "tell_joke" - ], - [ - "tell me a funny joke", - "tell_joke" - ], - [ - "i'd like you to tell me a joke", - "tell_joke" - ], - [ - "do you know any good jokes", - "tell_joke" - ], - [ - "know any jokes", - "tell_joke" - ], - [ - "i wanna hear something funny", - "tell_joke" - ], - [ - "i would like to listen to a funny joke", - "tell_joke" - ], - [ - "what jokes do you know", - "tell_joke" - ], - [ - "could you please tell me a good joke", - "tell_joke" - ], - [ - "what funny jokes do you know", - "tell_joke" - ], - [ - "can you make me laugh", - "tell_joke" - ], - [ - "can you tell me a few funny jokes", - "tell_joke" - ], - [ - "tell me something funny about parenting", - "tell_joke" - ], - [ - "do you have a list of funny jokes", - "tell_joke" - ], - [ - "i want to hear something funny", - "tell_joke" - ], - [ - "tell me something funny about animals", - "tell_joke" - ], - [ - "tell me something funny about politics", - "tell_joke" - ], - [ - "tell me something amusing", - "tell_joke" - ], - [ - "say something funny", - "tell_joke" - ], - [ - "tell me something funny about adulthood", - "tell_joke" - ], - [ - "tell me something funny about americans", - "tell_joke" - ], - [ - "could you please share a joke with me", - "tell_joke" - ], - [ - "i could really use a laugh right now", - "tell_joke" - ], - [ - "would you like to tell me a joke", - "tell_joke" - ], - [ - "can you tell me a joke", - "tell_joke" - ], - [ - "i'd like to hear a joke", - "tell_joke" - ], - [ - "i want to hear you tell a joke", - "tell_joke" - ], - [ - "tell me a joke", - "tell_joke" - ], - [ - "tell me a joke about politicians", - "tell_joke" - ], - [ - "tell me something that'll make me laugh", - "tell_joke" - ], - [ - "tell me a joke about cows", - "tell_joke" - ], - [ - "do you know anything funny about cats", - "tell_joke" - ], - [ - "tell me a joke about jobs", - "tell_joke" - ], - [ - "what's the funniest thing you know about artificial intelligence", - "tell_joke" - ], - [ - "can you tell me a joke about politicians", - "tell_joke" - ], - [ - "tell me a joke about cars", - "tell_joke" - ], - [ - "can you tell me something funny", - "tell_joke" - ], - [ - "do you know any good jokes about lawyers", - "tell_joke" - ], - [ - "what\u2019s your favorite funny joke", - "tell_joke" - ], - [ - "make me laugh with a funny joke", - "tell_joke" - ], - [ - "what funny joke do you know", - "tell_joke" - ], - [ - "i want to hear a joke that\u2019s funny", - "tell_joke" - ], - [ - "tell me a dirty joke", - "tell_joke" - ], - [ - "tell me a non-offensive joke", - "tell_joke" - ], - [ - "i would like to hear a funny joke", - "tell_joke" - ], - [ - "look for funny jokes", - "tell_joke" - ], - [ - "what are some funny jokes", - "tell_joke" - ], - [ - "tell me something funny about pizza", - "tell_joke" - ], - [ - "tell me something funny about people", - "tell_joke" - ], - [ - "tell me something funny about love", - "tell_joke" - ], - [ - "say something hilarious", - "tell_joke" - ], - [ - "make me giggle", - "tell_joke" - ], - [ - "i need a good laugh", - "tell_joke" - ], - [ - "heard any good jokes lately", - "tell_joke" - ], - [ - "tell me a pun", - "tell_joke" - ], - [ - "what's the latest joke you've heard", - "tell_joke" - ], - [ - "tell me a joke about dogs", - "tell_joke" - ], - [ - "let me know something funny", - "tell_joke" - ], - [ - "tell me a joke about cats", - "tell_joke" - ], - [ - "tell me something funny now", - "tell_joke" - ], - [ - "i wanna know something funny", - "tell_joke" - ], - [ - "tell me something funny about rats", - "tell_joke" - ], - [ - "tell me a joke about animals", - "tell_joke" - ], - [ - "tell me a joke about lawyers", - "tell_joke" - ], - [ - "tell me a joke about rats", - "tell_joke" - ], - [ - "tell me something funny about cats", - "tell_joke" - ], - [ - "tell me something funny about dogs", - "tell_joke" - ], - [ - "i need to know somthing funny", - "tell_joke" - ], - [ - "do you have anything funny to tell me", - "tell_joke" - ], - [ - "do you have any jokes to tell me", - "tell_joke" - ], - [ - "mind sharing a joke", - "tell_joke" - ], - [ - "could you share a joke", - "tell_joke" - ], - [ - "i love dad jokes can you tell me one", - "tell_joke" - ], - [ - "i would love to hear a joke about the dmv", - "tell_joke" - ], - [ - "can you tell me some dog jokes", - "tell_joke" - ], - [ - "please tell me a joke about dinosaurs", - "tell_joke" - ], - [ - "i'd like to hear a joke about donkeys", - "tell_joke" - ], - [ - "tell me a joke about baseball", - "tell_joke" - ], - [ - "what's the funniest thing you know about peanuts", - "tell_joke" - ], - [ - "i need a good joke about office parties", - "tell_joke" - ], - [ - "give me a joke about horses", - "tell_joke" - ], - [ - "rename yourself to betty", - "change_ai_name" - ], - [ - "can i call you betty", - "change_ai_name" - ], - [ - "rename bob to betty", - "change_ai_name" - ], - [ - "is there a way to change your name to betty", - "change_ai_name" - ], - [ - "i will call you zander", - "change_ai_name" - ], - [ - "please change the name of you to tim", - "change_ai_name" - ], - [ - "can you change the name of what you respond to", - "change_ai_name" - ], - [ - "change the name of your system", - "change_ai_name" - ], - [ - "make changes to the name of the ai", - "change_ai_name" - ], - [ - "revise the ai name", - "change_ai_name" - ], - [ - "alter the name given to the ai", - "change_ai_name" - ], - [ - "change the ai name to a new one", - "change_ai_name" - ], - [ - "make a new name for the ai", - "change_ai_name" - ], - [ - "change your name to something funny", - "change_ai_name" - ], - [ - "from now, your new name will be lord vader", - "change_ai_name" - ], - [ - "from now on i'm going to call you ishmael", - "change_ai_name" - ], - [ - "i'm going to start calling you kobe now", - "change_ai_name" - ], - [ - "from now on, your name will be buttercup", - "change_ai_name" - ], - [ - "i want to change your name to theodore", - "change_ai_name" - ], - [ - "change your name setting to plato", - "change_ai_name" - ], - [ - "from here on, you'll be responding to the name captain black", - "change_ai_name" - ], - [ - "your name from this point forward is george", - "change_ai_name" - ], - [ - "i hereby rename you felix", - "change_ai_name" - ], - [ - "how do i change the name you came with to something else", - "change_ai_name" - ], - [ - "what other names can i give you", - "change_ai_name" - ], - [ - "i want to change your name to another name", - "change_ai_name" - ], - [ - "i need to change your name, do you have a new name that you like", - "change_ai_name" - ], - [ - "i would like to change your name to a different one", - "change_ai_name" - ], - [ - "i will call you cap", - "change_ai_name" - ], - [ - "your name is roman", - "change_ai_name" - ], - [ - "x will be your name", - "change_ai_name" - ], - [ - "your name will be queen", - "change_ai_name" - ], - [ - "i am going to address you as my own name", - "change_ai_name" - ], - [ - "will you answer if i call you lexi", - "change_ai_name" - ], - [ - "i would like you to think of yourself as machine and answer when i say your name as such", - "change_ai_name" - ], - [ - "do you mind if call you nikolai", - "change_ai_name" - ], - [ - "i'd like to refer to you as my house from now on", - "change_ai_name" - ], - [ - "may i start referring to you as jeff", - "change_ai_name" - ], - [ - "please respond to me when i reference skynet", - "change_ai_name" - ], - [ - "i want to start calling you bob", - "change_ai_name" - ], - [ - "please open a call to my mother", - "change_ai_name" - ], - [ - "is it okay if i change your name to mud", - "change_ai_name" - ], - [ - "can i begin calling you dave", - "change_ai_name" - ], - [ - "is it alright with you if i call you scarlet", - "change_ai_name" - ], - [ - "please change the ai name", - "change_ai_name" - ], - [ - "change the ai name", - "change_ai_name" - ], - [ - "please change the ai name for me", - "change_ai_name" - ], - [ - "i gotta change your name to remy", - "change_ai_name" - ], - [ - "i'd like to change the ai name", - "change_ai_name" - ], - [ - "i must change your name to amanda", - "change_ai_name" - ], - [ - "i want you to change the ai name", - "change_ai_name" - ], - [ - "i want change your name to russ", - "change_ai_name" - ], - [ - "i wanna change your name to audrey", - "change_ai_name" - ], - [ - "i need to change your name to ben", - "change_ai_name" - ], - [ - "i want to set your name to gaffigan", - "change_ai_name" - ], - [ - "i want your new name to be joshua", - "change_ai_name" - ], - [ - "i will call you jimbo from now on", - "change_ai_name" - ], - [ - "set your name to hillary", - "change_ai_name" - ], - [ - "can i call you dave", - "change_ai_name" - ], - [ - "i want your name to be samantha now", - "change_ai_name" - ], - [ - "i want to change the name i call you to juan", - "change_ai_name" - ], - [ - "you need to respond to a new name called joey", - "change_ai_name" - ], - [ - "change your name to ginger", - "change_ai_name" - ], - [ - "change your settings so that your respond to the name marion", - "change_ai_name" - ], - [ - "let me call you fred", - "change_ai_name" - ], - [ - "you will be called rose from now on", - "change_ai_name" - ], - [ - "let me change your name to dina", - "change_ai_name" - ], - [ - "i think bradley is a better name for you", - "change_ai_name" - ], - [ - "can we change your name to lisa", - "change_ai_name" - ], - [ - "i would like to call you andre 3000", - "change_ai_name" - ], - [ - "x is your new nickname", - "change_ai_name" - ], - [ - "if i may, i'd like to call you slave", - "change_ai_name" - ], - [ - "x is what i am calling you now", - "change_ai_name" - ], - [ - "can i change your name", - "change_ai_name" - ], - [ - "can i make your name different", - "change_ai_name" - ], - [ - "let's change what you respond to", - "change_ai_name" - ], - [ - "can i call you something else", - "change_ai_name" - ], - [ - "i'd like to use another name for you", - "change_ai_name" - ], - [ - "can i change your name to buttercup", - "change_ai_name" - ], - [ - "i would like to change your name to eli", - "change_ai_name" - ], - [ - "could i please change your name to alicia", - "change_ai_name" - ], - [ - "i want to change your name to emma", - "change_ai_name" - ], - [ - "i am wanting to change your name to felix", - "change_ai_name" - ], - [ - "i want to update you name now", - "change_ai_name" - ], - [ - "i want to update you name", - "change_ai_name" - ], - [ - "i want to update you name, please", - "change_ai_name" - ], - [ - "i want to change your name", - "change_ai_name" - ], - [ - "i want to change your name, please", - "change_ai_name" - ], - [ - "can i refer to you as mike from here on out", - "change_ai_name" - ], - [ - "can i change your name please", - "change_ai_name" - ], - [ - "i'm going to start calling you alice", - "change_ai_name" - ], - [ - "can i start calling you chris", - "change_ai_name" - ], - [ - "can i call you lucy from now on", - "change_ai_name" - ], - [ - "i'm calling you rupert from now on", - "change_ai_name" - ], - [ - "can i change your name to bob", - "change_ai_name" - ], - [ - "can you go by a different name", - "change_ai_name" - ], - [ - "can i refer to you as liz", - "change_ai_name" - ], - [ - "i want to start calling you marie", - "change_ai_name" - ], - [ - "can i rename you", - "change_ai_name" - ], - [ - "how can i change your name", - "change_ai_name" - ], - [ - "what is your birthday again", - "how_old_are_you" - ], - [ - "how many years on the earth", - "how_old_are_you" - ], - [ - "what year were you born", - "how_old_are_you" - ], - [ - "how many days old are you", - "how_old_are_you" - ], - [ - "when were you created", - "how_old_are_you" - ], - [ - "what date were you created on", - "how_old_are_you" - ], - [ - "when did you come to exist", - "how_old_are_you" - ], - [ - "how many years do you have", - "how_old_are_you" - ], - [ - "i'd like to know how old you are", - "how_old_are_you" - ], - [ - "can you tell me how old you are", - "how_old_are_you" - ], - [ - "how long have you been alive for", - "how_old_are_you" - ], - [ - "how many years ago was al born", - "how_old_are_you" - ], - [ - "how old is al", - "how_old_are_you" - ], - [ - "what is al's age", - "how_old_are_you" - ], - [ - "how many years has al been on earth", - "how_old_are_you" - ], - [ - "you are how old now", - "how_old_are_you" - ], - [ - "what is your birth date", - "how_old_are_you" - ], - [ - "where's your place of birth", - "how_old_are_you" - ], - [ - "where did you grow up", - "how_old_are_you" - ], - [ - "how many years are you", - "how_old_are_you" - ], - [ - "what age are you", - "how_old_are_you" - ], - [ - "what would your age be", - "how_old_are_you" - ], - [ - "tell me when you were born", - "how_old_are_you" - ], - [ - "i'd love to hear when you were born", - "how_old_are_you" - ], - [ - "i'd like to know when you were born", - "how_old_are_you" - ], - [ - "lemme know when you were born", - "how_old_are_you" - ], - [ - "do you know when you were born", - "how_old_are_you" - ], - [ - "how many years have you been on", - "how_old_are_you" - ], - [ - "how long have you been here", - "how_old_are_you" - ], - [ - "how many years have you been operating", - "how_old_are_you" - ], - [ - "how old did you just turn", - "how_old_are_you" - ], - [ - "how old will you be next year", - "how_old_are_you" - ], - [ - "how old are you again", - "how_old_are_you" - ], - [ - "i am wanting to know how old you are", - "how_old_are_you" - ], - [ - "tell me how old youare", - "how_old_are_you" - ], - [ - "let me know how old you are", - "how_old_are_you" - ], - [ - "let me know when you were born", - "how_old_are_you" - ], - [ - "would you tell me your age", - "how_old_are_you" - ], - [ - "i would like to know when you were born", - "how_old_are_you" - ], - [ - "i want to know how old you are", - "how_old_are_you" - ], - [ - "i want to know your age", - "how_old_are_you" - ], - [ - "could you let me know how old you are", - "how_old_are_you" - ], - [ - "could you tell me when you were born", - "how_old_are_you" - ], - [ - "i need to know how old you are", - "how_old_are_you" - ], - [ - "i am needing to know when you were born", - "how_old_are_you" - ], - [ - "tell me your age", - "how_old_are_you" - ], - [ - "your age please", - "how_old_are_you" - ], - [ - "how long have you been alive", - "how_old_are_you" - ], - [ - "you are how old", - "how_old_are_you" - ], - [ - "how old are you now", - "how_old_are_you" - ], - [ - "how old are you exactly at the moment", - "how_old_are_you" - ], - [ - "what's your age again", - "how_old_are_you" - ], - [ - "how old are you exactly", - "how_old_are_you" - ], - [ - "how many years old are you", - "how_old_are_you" - ], - [ - "what is your age", - "how_old_are_you" - ], - [ - "how old are you, again", - "how_old_are_you" - ], - [ - "tell me how old you are", - "how_old_are_you" - ], - [ - "how old are you", - "how_old_are_you" - ], - [ - "what is your creation date", - "how_old_are_you" - ], - [ - "do you have a birth date", - "how_old_are_you" - ], - [ - "for how long have you existed", - "how_old_are_you" - ], - [ - "ai, how old are you", - "how_old_are_you" - ], - [ - "ai, how long have you been alive", - "how_old_are_you" - ], - [ - "ai, how many months old are you", - "how_old_are_you" - ], - [ - "ai, how long have you been working", - "how_old_are_you" - ], - [ - "how old is the ai", - "how_old_are_you" - ], - [ - "what is the age of the ai", - "how_old_are_you" - ], - [ - "can you tell me how old the ai is", - "how_old_are_you" - ], - [ - "can you tell me the age of the ai", - "how_old_are_you" - ], - [ - "what age is the ai", - "how_old_are_you" - ], - [ - "how old are you siri", - "how_old_are_you" - ], - [ - "what's your age siri", - "how_old_are_you" - ], - [ - "what's your age alexa", - "how_old_are_you" - ], - [ - "how old are you alexa", - "how_old_are_you" - ], - [ - "how old are you today", - "how_old_are_you" - ], - [ - "can you tell me when you were born", - "how_old_are_you" - ], - [ - "are you older than me", - "how_old_are_you" - ], - [ - "please tell me your date of birth", - "how_old_are_you" - ], - [ - "on what day and date of what year were you born", - "how_old_are_you" - ], - [ - "do you know exactly when you were born", - "how_old_are_you" - ], - [ - "what is the exact date of your birth", - "how_old_are_you" - ], - [ - "how long have you been around, ai", - "how_old_are_you" - ], - [ - "what birthday are you celebrating this year, ai", - "how_old_are_you" - ], - [ - "what age were you on your last birthday, ai", - "how_old_are_you" - ], - [ - "how old are you, ai", - "how_old_are_you" - ], - [ - "what is your age, ai", - "how_old_are_you" - ], - [ - "when was your birth", - "how_old_are_you" - ], - [ - "you're how old", - "how_old_are_you" - ], - [ - "what's your birth date", - "how_old_are_you" - ], - [ - "how long have you been around", - "how_old_are_you" - ], - [ - "are you young or old", - "how_old_are_you" - ], - [ - "how long have you been functional", - "how_old_are_you" - ], - [ - "what's your age", - "how_old_are_you" - ], - [ - "when did you originate", - "how_old_are_you" - ], - [ - "what is the date of your birth", - "how_old_are_you" - ], - [ - "what is your birthday", - "how_old_are_you" - ], - [ - "tell me your date of birth", - "how_old_are_you" - ], - [ - "tell me your age please", - "how_old_are_you" - ], - [ - "tell me your birthday", - "how_old_are_you" - ], - [ - "how long ago were you born", - "how_old_are_you" - ], - [ - "i want to reserve a convertible from july 2nd through july 18th for los angeles", - "car_rental" - ], - [ - "i'd like to rent a vehicle from nov 1st to nov 15th in san antonio and i need a 15 passenger van", - "car_rental" - ], - [ - "i want to rent the cheapest car for charlottesville, virginia for march 7th through 10th, that's monday, tuesday, wednesday and thursday", - "car_rental" - ], - [ - "i'd like to reserve a high-end car that seats 5 comfortably for april 12th through 18th for st louis missouri", - "car_rental" - ], - [ - "i need a van that seats 8 or more for new york city, august 12th, 13th, and 14th", - "car_rental" - ], - [ - "a rental car needs to be booked in nashville", - "car_rental" - ], - [ - "book me a car rental in nashville", - "car_rental" - ], - [ - "please help me book a rental car for nashville", - "car_rental" - ], - [ - "i need you to get me a rental car in nashville", - "car_rental" - ], - [ - "in nashville, i need a rental car booked", - "car_rental" - ], - [ - "where can i rent a car in boston", - "car_rental" - ], - [ - "i need to rent a car in boston", - "car_rental" - ], - [ - "i need to book a car rental in boston", - "car_rental" - ], - [ - "how can i rent a car in boston", - "car_rental" - ], - [ - "help me get a rental car for march 2 to 6th in dallas and i would prefer a bmw suv", - "car_rental" - ], - [ - "i want to rent a bmw suv for dallas from march 2 to 6th", - "car_rental" - ], - [ - "i want a bmw suv for march 2 to 6th in dallas", - "car_rental" - ], - [ - "can you help me book a bmw suv for march 2 to 6th, dallas texas", - "car_rental" - ], - [ - "will you help me rent a car from march 2 to 6th in dallas i want a bmw suv, if possible", - "car_rental" - ], - [ - "book me a car rental between january 1st to january 3rd in denver colorado and id prefer a ford", - "car_rental" - ], - [ - "id like a car rental between january 1st to the 3rd in denver, id like a ford", - "car_rental" - ], - [ - "id like to rent a ford in denver colorado between january 1st to the 3rd", - "car_rental" - ], - [ - "reserve a car rental for denver colorado for a ford between january 1st through 3rd", - "car_rental" - ], - [ - "id like a rental car in denver colorado between january 1st and january 3rd and id like a ford if possible", - "car_rental" - ], - [ - "i need to find a rental car since i'm travelling to new york tomorrow", - "car_rental" - ], - [ - "can you give me information on how to rent a car", - "car_rental" - ], - [ - "i want to travel to new york and i would like to rent a car", - "car_rental" - ], - [ - "i will need a rental car since i'm going to travel to new york", - "car_rental" - ], - [ - "how do i go about renting a car", - "car_rental" - ], - [ - "i need to rent a car in boston for march 2 until march 4", - "car_rental" - ], - [ - "i want to rent a car in boston for march 2 until march 4", - "car_rental" - ], - [ - "i will be in boston from march 2 to march 4 can i rent a car for that time", - "car_rental" - ], - [ - "will car rentals be available in boston from march 2 to march 4", - "car_rental" - ], - [ - "will i be able to rent a car in boston from march 2 to march 4", - "car_rental" - ], - [ - "i need a rental car for sfo from friday to saturday", - "car_rental" - ], - [ - "i'll require a rental car from 3/6 - 3/19 in san jose", - "car_rental" - ], - [ - "find me a rental car from 2/28 - 3/1 in reno", - "car_rental" - ], - [ - "i'll need a rental car from 3/3 - 3/14 in vegas", - "car_rental" - ], - [ - "find me a rental car from 3/6 - 3/9 in port charles", - "car_rental" - ], - [ - "i need a car rental for the first and fifth in denver and i'd like a subaru", - "car_rental" - ], - [ - "are there any reputable car rental places in seattle", - "car_rental" - ], - [ - "what car rental choices are there in calgary", - "car_rental" - ], - [ - "is it possible to get a ford in austin from may the 5th to may the 7th of this year", - "car_rental" - ], - [ - "i'd like to find a place that rents flashy sports cars in tampa", - "car_rental" - ], - [ - "can i rent a car in belgium from march 01 to march 02 and have it be a porsche", - "car_rental" - ], - [ - "i'd like to rent a limo in las vegas from may 01, 2019 to may 03, 2019", - "car_rental" - ], - [ - "contact avis and see if they have cars available", - "car_rental" - ], - [ - "can i get a jeep to rent in bangor from the first of the month to a week after the first", - "car_rental" - ], - [ - "is there a car rental available from tuesday to thursday out of lax", - "car_rental" - ], - [ - "are you able to help with booking a car rental in seattle", - "car_rental" - ], - [ - "could i rent a car from tuesday to thursday out of lax", - "car_rental" - ], - [ - "can a car be rented from tuesday to thursday out of lax", - "car_rental" - ], - [ - "can i get assistance with booking a seattle car rental", - "car_rental" - ], - [ - "can i rent a car out of lax from tuesday to thursday", - "car_rental" - ], - [ - "is a car rental available out of lax from tuesday to thursday", - "car_rental" - ], - [ - "can you help me book a car rental in seattle", - "car_rental" - ], - [ - "could you help with booking a car rental for me in seattle", - "car_rental" - ], - [ - "can you help me with seattle car rental bookings", - "car_rental" - ], - [ - "i want to rent a car in boise from april 12-15", - "car_rental" - ], - [ - "is it possible for me to rent a car out of jfk airport from march 15-20", - "car_rental" - ], - [ - "i need to rent a car in chicago but don't know how", - "car_rental" - ], - [ - "will you help me reserve a rental car for my trip to dallas", - "car_rental" - ], - [ - "find out if i can rent a car in los angeles from march 2-9", - "car_rental" - ], - [ - "help me secure a car rental out of reagan international airport from march 22-30", - "car_rental" - ], - [ - "will you please assist me with renting a car in boise", - "car_rental" - ], - [ - "i would like some help getting a rental car reserved in los angeles", - "car_rental" - ], - [ - "could i rent a car out of dallas from april 1-10", - "car_rental" - ], - [ - "i need help booking a car rental in seattle", - "car_rental" - ], - [ - "show me how to rent a car in las vegas", - "car_rental" - ], - [ - "please help me book a rental car in appleton", - "car_rental" - ], - [ - "can you show me how to book a car rental in manitowoc", - "car_rental" - ], - [ - "help me book a rental car in green bay", - "car_rental" - ], - [ - "help me to book a car rental in sacremento", - "car_rental" - ], - [ - "where can i rent a car soon", - "car_rental" - ], - [ - "are there any places nearby i can rent a car at", - "car_rental" - ], - [ - "can you see if i can rent a car from dallas on the dates of march 1, 2019 to march 3, 2019", - "car_rental" - ], - [ - "please look up if i can rent a car in houston from march 25 to march 29", - "car_rental" - ], - [ - "could i rent a car in seattle from next monday to thursday please", - "car_rental" - ], - [ - "i'd like to rent an automobile in pittsburgh from this tuesday until next thursday can i do that", - "car_rental" - ], - [ - "is it possible to rent a car from new york on 3/2/19 to 3/5/19", - "car_rental" - ], - [ - "i need a rental car", - "car_rental" - ], - [ - "assist me in getting a car rental", - "car_rental" - ], - [ - "help me get a rental car", - "car_rental" - ], - [ - "i will need a rental car for travel", - "car_rental" - ], - [ - "can you help me with a rental car", - "car_rental" - ], - [ - "make sure i can rent one car out of chicago from january 2 to january 5", - "car_rental" - ], - [ - "is it possible to rent a car from laguardia from tuesday to friday", - "car_rental" - ], - [ - "are car rentals available out of new york from march 2 to march 3", - "car_rental" - ], - [ - "what places in chicago will allow me to rent a car from monday to friday", - "car_rental" - ], - [ - "i need to do a car rental", - "car_rental" - ], - [ - "please check if i can do a car rental from charlotte douglas airport from monday to wednesday", - "car_rental" - ], - [ - "rent me a car in aiken on may 12 to may 16", - "car_rental" - ], - [ - "book me a rental car in aiken on may 12 to may 16", - "car_rental" - ], - [ - "in aiken, get me a rental for may 12 to may 16", - "car_rental" - ], - [ - "i will be in aiken on may 12 to may 16, i need to rent a car", - "car_rental" - ], - [ - "on may 12 to may 16 can i get a car from aiken", - "car_rental" - ], - [ - "can you help me booked a car in london", - "car_rental" - ], - [ - "please book a car for me in bangkok", - "car_rental" - ], - [ - "please book a car for me in ho chi minh", - "car_rental" - ], - [ - "can you help me book a car rental in paris", - "car_rental" - ], - [ - "what do i do if my car battery is dead", - "jump_start" - ], - [ - "show me the way to jump start a battery", - "jump_start" - ], - [ - "how can i replace my car battery", - "jump_start" - ], - [ - "tell me how to jump start a battery", - "jump_start" - ], - [ - "what can i do since my car battery died", - "jump_start" - ], - [ - "my battery died in my car, how can i jump start a battery", - "jump_start" - ], - [ - "whats the best way to jump start a battery", - "jump_start" - ], - [ - "how do i jump start a battery", - "jump_start" - ], - [ - "my car battery died, what should i do", - "jump_start" - ], - [ - "how do i fix a dead car battery", - "jump_start" - ], - [ - "please help me figure out how to jump start my car", - "jump_start" - ], - [ - "i don't know how to jump start my car, help!", - "jump_start" - ], - [ - "can you help me with the steps to jump start my car", - "jump_start" - ], - [ - "help needed to jump start my car", - "jump_start" - ], - [ - "i need your help to jump start this car battery", - "jump_start" - ], - [ - "hey do you know how to jump start a car battery", - "jump_start" - ], - [ - "i would appreciate it if you could show me how to jump start a car battery", - "jump_start" - ], - [ - "could you teach me how to jump start a car", - "jump_start" - ], - [ - "what will i need to jump start a dead car", - "jump_start" - ], - [ - "read me a step by step guide on jump starting cars", - "jump_start" - ], - [ - "pull up instructions on how to jump start a car", - "jump_start" - ], - [ - "please assist me in figuring out how to handle a dead car battery", - "jump_start" - ], - [ - "i need to do something about my dead car battery", - "jump_start" - ], - [ - "my car is dead, what do i need to jump start it", - "jump_start" - ], - [ - "what should i do if my car battery dies", - "jump_start" - ], - [ - "where should i go to get my dead car battery checked out", - "jump_start" - ], - [ - "my car battery has died what should i do now", - "jump_start" - ], - [ - "inform me on the directions to jump start my car", - "jump_start" - ], - [ - "what are the steps to jump start my car", - "jump_start" - ], - [ - "tell me the tools i need to jump start my car", - "jump_start" - ], - [ - "do i need cables to jump start my car", - "jump_start" - ], - [ - "my car needs to be jump started, guide me through it", - "jump_start" - ], - [ - "tell me how to jump start my own car battery", - "jump_start" - ], - [ - "what are my options for jump starting my battery", - "jump_start" - ], - [ - "my battery is dead so how can i get it going again", - "jump_start" - ], - [ - "how do you go about jump starting a car battery", - "jump_start" - ], - [ - "i need diy info about jump starting my dead car battery", - "jump_start" - ], - [ - "how do you use jumper cables", - "jump_start" - ], - [ - "look up instructions for jumper cables", - "jump_start" - ], - [ - "how do you jump start a car", - "jump_start" - ], - [ - "how do you jump a car", - "jump_start" - ], - [ - "what do you need to jump a car", - "jump_start" - ], - [ - "what is the way to jump start the car", - "jump_start" - ], - [ - "can you tell me how to jump start the car", - "jump_start" - ], - [ - "how do i jump start the car", - "jump_start" - ], - [ - "what is the way to jump start my car", - "jump_start" - ], - [ - "closest auto parts store to find replace for dead car battery", - "jump_start" - ], - [ - "find repair shop that will diagnosis dead car battery", - "jump_start" - ], - [ - "number for aaa to help with dead car battery", - "jump_start" - ], - [ - "find auto store that tests dead car batteries for free", - "jump_start" - ], - [ - "where to go to get dead car battery tested", - "jump_start" - ], - [ - "what prong jump starts the car", - "jump_start" - ], - [ - "i want a pic of how to jump start", - "jump_start" - ], - [ - "what are some ways to jump start a car", - "jump_start" - ], - [ - "i need rules for jump starting", - "jump_start" - ], - [ - "what is the procedure to jump start a car", - "jump_start" - ], - [ - "what do i do when my car battery is dead", - "jump_start" - ], - [ - "how can i charge my car battery when it's dead", - "jump_start" - ], - [ - "if i think my car battery is dead, what steps should i take to fix it", - "jump_start" - ], - [ - "my car battery is dead, how do i charge it", - "jump_start" - ], - [ - "if my car battery is dead, what action do i need to do", - "jump_start" - ], - [ - "how do i jump start my vehicle", - "jump_start" - ], - [ - "can you tell me how to jump my car", - "jump_start" - ], - [ - "explain how to jump a car", - "jump_start" - ], - [ - "can you tell me how to jump a car", - "jump_start" - ], - [ - "how does one jump a car", - "jump_start" - ], - [ - "how do i jump my car", - "jump_start" - ], - [ - "how do i jump start my battery", - "jump_start" - ], - [ - "how do i start my car battery", - "jump_start" - ], - [ - "what do i do to jump start my battery", - "jump_start" - ], - [ - "how do i give my car a jump", - "jump_start" - ], - [ - "my car needs jump started, find me directions", - "jump_start" - ], - [ - "i need instructions on how to jump start my car", - "jump_start" - ], - [ - "i need to know how to jump start my car", - "jump_start" - ], - [ - "how do i jump start my car battery", - "jump_start" - ], - [ - "i don't know how to jump start my car", - "jump_start" - ], - [ - "tell me how to jump start my dead battery", - "jump_start" - ], - [ - "i need to jump start my car what do i do", - "jump_start" - ], - [ - "help me jump start my car", - "jump_start" - ], - [ - "my car is dead can you tell me how to jump start it", - "jump_start" - ], - [ - "how do you do a jump start", - "jump_start" - ], - [ - "whats the safest way to jump start a car", - "jump_start" - ], - [ - "guide me through jump starting a car", - "jump_start" - ], - [ - "how do you jump a car with a dead battery", - "jump_start" - ], - [ - "i need to know how jumping a car works", - "jump_start" - ], - [ - "what do i do for a dead car battery", - "jump_start" - ], - [ - "my car battery is dead, what do i do now", - "jump_start" - ], - [ - "what do i do to fix a dead car battery", - "jump_start" - ], - [ - "what should i do if my car battery is dead", - "jump_start" - ], - [ - "what's the method of jumping my car", - "jump_start" - ], - [ - "what do i do to jump start my car", - "jump_start" - ], - [ - "do you have instructions on jump starting a chevy", - "jump_start" - ], - [ - "how do you jump start a subaru forester", - "jump_start" - ], - [ - "how do i jump start a fiat", - "jump_start" - ], - [ - "how do i properly give my car a jump", - "jump_start" - ], - [ - "what's the best way to jump start a kia", - "jump_start" - ], - [ - "what do i do if i think my car battery's dead", - "jump_start" - ], - [ - "what's next when it seems there's a dead car battery", - "jump_start" - ], - [ - "how should i proceed if my car won't start and i think it's the battery", - "jump_start" - ], - [ - "how can i start my car using a jump start", - "jump_start" - ], - [ - "can you give me a french dinner suggestion", - "meal_suggestion" - ], - [ - "suggest a meal from laos to me, please", - "meal_suggestion" - ], - [ - "can you give me a vietnamese meal suggestion", - "meal_suggestion" - ], - [ - "suggest a meal from burma to me", - "meal_suggestion" - ], - [ - "can you give me a vietnamese dinner suggestion", - "meal_suggestion" - ], - [ - "suggest a meal from thailand to me, please", - "meal_suggestion" - ], - [ - "can you give me a thai meal suggestion, please", - "meal_suggestion" - ], - [ - "can you give me a vietnamese meal suggestion, please", - "meal_suggestion" - ], - [ - "can you give me a burmese meal suggestion, please", - "meal_suggestion" - ], - [ - "suggest a meal from burma to me, please", - "meal_suggestion" - ], - [ - "can you give me a burmese dinner suggestion", - "meal_suggestion" - ], - [ - "can you give me a thai meal suggestion", - "meal_suggestion" - ], - [ - "can you give me a thai dinner suggestion", - "meal_suggestion" - ], - [ - "suggest a meal from thailand to me", - "meal_suggestion" - ], - [ - "give me italian meal ideas", - "meal_suggestion" - ], - [ - "suggest an italian meal for me", - "meal_suggestion" - ], - [ - "can you suggest meals from italy to me", - "meal_suggestion" - ], - [ - "may you suggest a meal from italy to me", - "meal_suggestion" - ], - [ - "please suggest meals from italy to me", - "meal_suggestion" - ], - [ - "can you tell me a good indian dish to make", - "meal_suggestion" - ], - [ - "got any good dinner ideas", - "meal_suggestion" - ], - [ - "what's a simple chinese recipe for dinner", - "meal_suggestion" - ], - [ - "do you know an good pasta dishes", - "meal_suggestion" - ], - [ - "what can i make for dinner using ground beef", - "meal_suggestion" - ], - [ - "i need new dinner ideas", - "meal_suggestion" - ], - [ - "what can i make for dinner", - "meal_suggestion" - ], - [ - "do you know any greek dishes i could make for dinner", - "meal_suggestion" - ], - [ - "what do you think would be a good dinner", - "meal_suggestion" - ], - [ - "what would be good for dinner", - "meal_suggestion" - ], - [ - "what should i have for dinner", - "meal_suggestion" - ], - [ - "i'd like to get dinner suggestions for thai food", - "meal_suggestion" - ], - [ - "get me italian cuisine dinner suggestions", - "meal_suggestion" - ], - [ - "would you provide me with italian cuisine dinner suggestions", - "meal_suggestion" - ], - [ - "i'm needing dinner suggestions for mexican food", - "meal_suggestion" - ], - [ - "what's the pizza like around here", - "meal_suggestion" - ], - [ - "what's the best pizza place around here", - "meal_suggestion" - ], - [ - "how tasty is the pizza here", - "meal_suggestion" - ], - [ - "what would you suggest for dinner", - "meal_suggestion" - ], - [ - "i need dinner ideas", - "meal_suggestion" - ], - [ - "i need a mexican meal suggesstion", - "meal_suggestion" - ], - [ - "help me decide what mexican meal i want", - "meal_suggestion" - ], - [ - "what kind of mexican meal should i get", - "meal_suggestion" - ], - [ - "which mexican meal would be good", - "meal_suggestion" - ], - [ - "i need to cook, what should i make", - "meal_suggestion" - ], - [ - "i can't decide on dinner, what do you suggest", - "meal_suggestion" - ], - [ - "suggest a good mexican meal to me", - "meal_suggestion" - ], - [ - "do you have any suggestions for a meal from australia", - "meal_suggestion" - ], - [ - "i'd like you to give me an idea for a meal from iceland", - "meal_suggestion" - ], - [ - "can you suggest any good meals from chicago", - "meal_suggestion" - ], - [ - "please suggest a meal from italy to me", - "meal_suggestion" - ], - [ - "can you suggest to me any meals from nigeria", - "meal_suggestion" - ], - [ - "can you give me a meal suggestion for swedish cuisine", - "meal_suggestion" - ], - [ - "do you have any good recommendations for swiss cuisine", - "meal_suggestion" - ], - [ - "i'm looking for a good suggestion for norse cuisine", - "meal_suggestion" - ], - [ - "what's a good french meal", - "meal_suggestion" - ], - [ - "i'm looking for italian food suggestions", - "meal_suggestion" - ], - [ - "i want you to give me a suggestion for what to make for dinner", - "meal_suggestion" - ], - [ - "i want an italian meal suggestion", - "meal_suggestion" - ], - [ - "i need an italian meal suggestion", - "meal_suggestion" - ], - [ - "please give me a suggestion for what to make for dinner", - "meal_suggestion" - ], - [ - "i'd like an italian meal suggestion", - "meal_suggestion" - ], - [ - "i need you to give me a suggestion for what to make for dinner", - "meal_suggestion" - ], - [ - "i would love an italian meal suggestion", - "meal_suggestion" - ], - [ - "go ahead and give me a suggestion for what to make for dinner", - "meal_suggestion" - ], - [ - "i really want an italian meal suggestion", - "meal_suggestion" - ], - [ - "suggest food from italy to me", - "meal_suggestion" - ], - [ - "suggest an italian meal to me", - "meal_suggestion" - ], - [ - "what meal from italy do you suggest", - "meal_suggestion" - ], - [ - "what food from italy do you suggest", - "meal_suggestion" - ], - [ - "suggest a meal from italy to me", - "meal_suggestion" - ], - [ - "i need a suggestion for a dinner recipe", - "meal_suggestion" - ], - [ - "suggest a meal for me that comes from mexico", - "meal_suggestion" - ], - [ - "can you suggest a meal from ireland for me", - "meal_suggestion" - ], - [ - "suggest something for me to make myself for dinner", - "meal_suggestion" - ], - [ - "can you recommend for me a dish from ethiopia", - "meal_suggestion" - ], - [ - "what do you think i should prepare for my dinner", - "meal_suggestion" - ], - [ - "do you have any southern dishes to recommend", - "meal_suggestion" - ], - [ - "look up a recipe for dinner to suggest to me", - "meal_suggestion" - ], - [ - "what should i make for dinner", - "meal_suggestion" - ], - [ - "please suggest a british meal for me", - "meal_suggestion" - ], - [ - "what kind of greek food is good for dinner", - "meal_suggestion" - ], - [ - "what type of pizzas are available for dinner", - "meal_suggestion" - ], - [ - "need some good dinner ideas", - "meal_suggestion" - ], - [ - "thinking about cooking dinner, what should i make", - "meal_suggestion" - ], - [ - "give me some options on what to cook for dinner", - "meal_suggestion" - ], - [ - "please provide an option for dinner", - "meal_suggestion" - ], - [ - "i would like to hear what ideas you have about making dinner tonight", - "meal_suggestion" - ], - [ - "do you have any suggestions as to what i should cook for dinner", - "meal_suggestion" - ], - [ - "suggest a meal from denmark to me", - "meal_suggestion" - ], - [ - "suggest a meal from korea to me", - "meal_suggestion" - ], - [ - "suggest a meal from germany to me", - "meal_suggestion" - ], - [ - "suggest a meal from india to me", - "meal_suggestion" - ], - [ - "suggest a meal from new york to me", - "meal_suggestion" - ], - [ - "what do you think i should make for dinner", - "meal_suggestion" - ], - [ - "what thoughts do you have about making dinnner tonight", - "meal_suggestion" - ], - [ - "let me pick your brain what do you think we should do for dinner tonight", - "meal_suggestion" - ], - [ - "any suggestions for a peruvian meal", - "meal_suggestion" - ], - [ - "what peruvian dish should i make", - "meal_suggestion" - ], - [ - "what should i get at a mexican restaurant", - "meal_suggestion" - ], - [ - "suggest a meal from peru for me", - "meal_suggestion" - ], - [ - "whats the best way to roast a chicken", - "recipe" - ], - [ - "how do i make pie crust", - "recipe" - ], - [ - "find a recipe for german chocolate cake", - "recipe" - ], - [ - "how do i fry pork chops", - "recipe" - ], - [ - "how do i cook boiled eggs", - "recipe" - ], - [ - "find a chow mein recipe for me, please", - "recipe" - ], - [ - "do you know how to make chow mein", - "recipe" - ], - [ - "can you find a recipe on how to make chow mein", - "recipe" - ], - [ - "tell me how to make chow mein", - "recipe" - ], - [ - "i would like you to help me find a chow mein recipe", - "recipe" - ], - [ - "show me a beef recipe", - "recipe" - ], - [ - "what is a good beef recipe", - "recipe" - ], - [ - "i need a recipe for beef", - "recipe" - ], - [ - "give me a beef recipe", - "recipe" - ], - [ - "where is a beef recipe", - "recipe" - ], - [ - "you know procedure to cook apple pie", - "recipe" - ], - [ - "what is needed you to cook apple pie", - "recipe" - ], - [ - "do you know what are the ingredients to make apple pie", - "recipe" - ], - [ - "do you know recipe for making apple pie", - "recipe" - ], - [ - "how do you cook apple pie", - "recipe" - ], - [ - "how do i make pumpkin pie", - "recipe" - ], - [ - "making spaghetti sauce perfectly is done how", - "recipe" - ], - [ - "making ribs perfectly is done how", - "recipe" - ], - [ - "how do i make lemon merengue pie", - "recipe" - ], - [ - "how do i make lassagna", - "recipe" - ], - [ - "search for a macaroni and cheese recipe", - "recipe" - ], - [ - "can you get me a recipe for mashed potatoes", - "recipe" - ], - [ - "i need instructions on how to make shepherd's pie please", - "recipe" - ], - [ - "please help me with instructions on making chicken curry", - "recipe" - ], - [ - "what are the steps i need to follow to make chewy rice krispies treats", - "recipe" - ], - [ - "what's the best way to make chicken stir fry", - "recipe" - ], - [ - "how do i make tuna salad", - "recipe" - ], - [ - "can you give me a recipe for german chocolate cake", - "recipe" - ], - [ - "i need a recipe on how to make beef stew", - "recipe" - ], - [ - "i want a good recipe that shows me how to bake chocolate chip cookies from scratch", - "recipe" - ], - [ - "please search for a chocolate fudge brownies recipe", - "recipe" - ], - [ - "will you give me some guidance on how to make ceviche", - "recipe" - ], - [ - "can you search for the best new york style cheesecake recipes please", - "recipe" - ], - [ - "look up easy to follow recipes for beef ribs", - "recipe" - ], - [ - "i need the best recipe for mashed potatoes", - "recipe" - ], - [ - "can you find me a recipe for pie", - "recipe" - ], - [ - "can you find me a recipe for quiche", - "recipe" - ], - [ - "can you find me a recipe for pasta", - "recipe" - ], - [ - "can you find me a recipe for ribs", - "recipe" - ], - [ - "can you find me a recipe for cake", - "recipe" - ], - [ - "what steps are involved in making lasagna", - "recipe" - ], - [ - "how can i make chicken pot pie", - "recipe" - ], - [ - "how to make mac and cheese", - "recipe" - ], - [ - "how do you make pot roast", - "recipe" - ], - [ - "can you find a hearty lasagna recipe", - "recipe" - ], - [ - "find a good recipe for meatloaf", - "recipe" - ], - [ - "i am looking for a vegan friendly italian pasta recipe", - "recipe" - ], - [ - "how do you cook meatloaf", - "recipe" - ], - [ - "i need a vegi lasagna recipe", - "recipe" - ], - [ - "i need a quick recipe for spiral ham", - "recipe" - ], - [ - "what's the recipe for rice noodles", - "recipe" - ], - [ - "can you help me find a lasagna recipe", - "recipe" - ], - [ - "i need a recipe for chicken pot pie", - "recipe" - ], - [ - "help me find a recipe for a beef casserole", - "recipe" - ], - [ - "i need help finding a recipe for enchiladas", - "recipe" - ], - [ - "i need to know how to make philly cheesesteaks", - "recipe" - ], - [ - "i need a blackberry pie recipe", - "recipe" - ], - [ - "what do i need to do to make blackberry pie", - "recipe" - ], - [ - "blackberry pie instructions", - "recipe" - ], - [ - "how do you make blackberry pie", - "recipe" - ], - [ - "how do i bake a blackberry pie", - "recipe" - ], - [ - "do you have a cookbook that could teach me to make sushi", - "recipe" - ], - [ - "can you teach me how to make sushi", - "recipe" - ], - [ - "where can i look to learn to make sushi", - "recipe" - ], - [ - "what do you need to do to make sushi", - "recipe" - ], - [ - "is there a good website to teach me how to make sushi", - "recipe" - ], - [ - "tell me how to make beef wellington", - "recipe" - ], - [ - "what's a good recipe for chicken divan", - "recipe" - ], - [ - "find me a recipe for teriyaki chicken", - "recipe" - ], - [ - "find out how to make chicken tikka masala", - "recipe" - ], - [ - "how do i make beef stroganoff", - "recipe" - ], - [ - "please show me a recipe for chili", - "recipe" - ], - [ - "what is a good chili recipe", - "recipe" - ], - [ - "i need you to find me a recipe for fried shrimp", - "recipe" - ], - [ - "can you find me a recipe for coffee cakes", - "recipe" - ], - [ - "can you find me a recipe for salsa", - "recipe" - ], - [ - "can you find me a recipe for honey ham", - "recipe" - ], - [ - "can you find me a recipe for cheese cake", - "recipe" - ], - [ - "can you find me a recipe for sugar cookies", - "recipe" - ], - [ - "can you find me a recipe for carrot cake", - "recipe" - ], - [ - "how do you make benedict arnold", - "recipe" - ], - [ - "how do you create pork chili", - "recipe" - ], - [ - "what's the best way to make a broccoli salad", - "recipe" - ], - [ - "are there instructions on how to make buttermilk pancakes", - "recipe" - ], - [ - "what's the way to make apple pie", - "recipe" - ], - [ - "what's the process of making a burrito", - "recipe" - ], - [ - "how do i make a taco that's worth eating", - "recipe" - ], - [ - "how do i make that scottish dish with all the blood and sausage", - "recipe" - ], - [ - "is there a recipe for chili i can use", - "recipe" - ], - [ - "please give me instructions on making blueberry pie", - "recipe" - ], - [ - "can you instruct me on how to make german chocolate cake", - "recipe" - ], - [ - "how do i make the perfect omelette", - "recipe" - ], - [ - "i want to make sour dough bread please find a good recipe for me", - "recipe" - ], - [ - "i need a really good recipe for making doughnuts", - "recipe" - ], - [ - "please find me a recipe for spaghetti now", - "recipe" - ], - [ - "can you tell me what my total income is for the pay period", - "income" - ], - [ - "please give me my salary figure", - "income" - ], - [ - "i need you to tell me my salary", - "income" - ], - [ - "what is my gross income per pay period", - "income" - ], - [ - "what is my total annual income", - "income" - ], - [ - "how much did i earn in income only last year", - "income" - ], - [ - "what is my salary right now", - "income" - ], - [ - "what is my pay for this year", - "income" - ], - [ - "i would like to know what my salary is at this time", - "income" - ], - [ - "i need details on my income", - "income" - ], - [ - "tell me information about my income", - "income" - ], - [ - "do you know anything about my income", - "income" - ], - [ - "i want income data", - "income" - ], - [ - "tell me about my income this week", - "income" - ], - [ - "give me the details on my income", - "income" - ], - [ - "tell me how much i make", - "income" - ], - [ - "what has my income been like", - "income" - ], - [ - "what do i usually earn in a day", - "income" - ], - [ - "how much have i earned this week", - "income" - ], - [ - "what're my wages for the week", - "income" - ], - [ - "how much am i making at my job", - "income" - ], - [ - "what is my income", - "income" - ], - [ - "what do i earn from my job", - "income" - ], - [ - "how much money am i making", - "income" - ], - [ - "how much am i getting paid", - "income" - ], - [ - "advise me of my income", - "income" - ], - [ - "how much do i make", - "income" - ], - [ - "tell me my income", - "income" - ], - [ - "what is my salary", - "income" - ], - [ - "how much should my income be for the month", - "income" - ], - [ - "give me the low down on my income", - "income" - ], - [ - "what's my income", - "income" - ], - [ - "give me my income", - "income" - ], - [ - "what's my income been for the last 6 months", - "income" - ], - [ - "how much do i make every 2 weeks", - "income" - ], - [ - "what's my pay for the year", - "income" - ], - [ - "how much am i getting back from work", - "income" - ], - [ - "how much do i make at work", - "income" - ], - [ - "how much can i expect on my next check", - "income" - ], - [ - "what are they paying me at work right now", - "income" - ], - [ - "what's my take home from work", - "income" - ], - [ - "what's my pay for this week", - "income" - ], - [ - "how much am i getting paid today", - "income" - ], - [ - "what's my paycheck going to be", - "income" - ], - [ - "can you tell me my current salary", - "income" - ], - [ - "look up how much i earn annually", - "income" - ], - [ - "what amount of money do i earn at work", - "income" - ], - [ - "what is my income from work", - "income" - ], - [ - "i need to know how much i make at my job", - "income" - ], - [ - "what is the exact number of my salary", - "income" - ], - [ - "tell me how much money i'm earning at my job", - "income" - ], - [ - "calculate how much i earn from my job", - "income" - ], - [ - "calculate my total income from my job", - "income" - ], - [ - "tell me my salary please", - "income" - ], - [ - "would you tell me about my income", - "income" - ], - [ - "could you tell me about my income", - "income" - ], - [ - "please tell me about my income", - "income" - ], - [ - "i want you to tell me about my income", - "income" - ], - [ - "what is the total amount of my paychecks over the last year", - "income" - ], - [ - "how do i find my income", - "income" - ], - [ - "my income equals what amount", - "income" - ], - [ - "what is my hourly rate", - "income" - ], - [ - "what is my current gross salary", - "income" - ], - [ - "what is my current net salary", - "income" - ], - [ - "how much money was deposited to my bank account from my employer this month", - "income" - ], - [ - "what does my income amount to", - "income" - ], - [ - "can i have more information about my income", - "income" - ], - [ - "how much is my income", - "income" - ], - [ - "i need more information about my income", - "income" - ], - [ - "can you provide information on my income", - "income" - ], - [ - "what's my pay", - "income" - ], - [ - "how much money did i make", - "income" - ], - [ - "how much did i get paid", - "income" - ], - [ - "tell me my salary", - "income" - ], - [ - "can you tell me what my currnet salary is", - "income" - ], - [ - "can you tell me my exact salary", - "income" - ], - [ - "can you tell me what i earned", - "income" - ], - [ - "i need to know my earnings", - "income" - ], - [ - "i need to know my salary", - "income" - ], - [ - "what amount do i make", - "income" - ], - [ - "how much money do i bring in", - "income" - ], - [ - "can you tell me what my income will be this week", - "income" - ], - [ - "what is my yearly salary", - "income" - ], - [ - "what is my pay grade at work", - "income" - ], - [ - "how much do i make per day", - "income" - ], - [ - "how much is my income going to be this month", - "income" - ], - [ - "how much do you make an hour", - "income" - ], - [ - "how much have i earned", - "income" - ], - [ - "what is your current income", - "income" - ], - [ - "how much do you make", - "income" - ], - [ - "what do i earn on average at my job", - "income" - ], - [ - "what do i make yearly", - "income" - ], - [ - "what do you make in a year", - "income" - ], - [ - "what's my monthly income", - "income" - ], - [ - "how much money do i have coming in each month", - "income" - ], - [ - "i wanna know my income", - "income" - ], - [ - "please tell me my income", - "income" - ], - [ - "i need to know my income", - "income" - ], - [ - "i would like to know my income", - "income" - ], - [ - "how much cash do i earn", - "income" - ], - [ - "can you please order me more plastic bags", - "order" - ], - [ - "i need you to order some more lysol for me,please", - "order" - ], - [ - "i need some more lysol, could you order me some", - "order" - ], - [ - "i'm out of lysol could you order me some", - "order" - ], - [ - "could you please reorder me some lysol", - "order" - ], - [ - "will you order me some more lysol spray", - "order" - ], - [ - "order everything that's on my list for shopping", - "order" - ], - [ - "i want my entire shopping list ordered", - "order" - ], - [ - "i want to buy something", - "order" - ], - [ - "get my entire shopping list ordered", - "order" - ], - [ - "i want to make a purchase", - "order" - ], - [ - "take my shopping list and order all", - "order" - ], - [ - "send the order for my entire shopping list", - "order" - ], - [ - "add everything to my shopping cart", - "order" - ], - [ - "submit order for everything", - "order" - ], - [ - "buy everything on my list", - "order" - ], - [ - "please order everything you see on my shopping list", - "order" - ], - [ - "go shopping and order everything on the list", - "order" - ], - [ - "are you able to get my shopping list and order everything on it", - "order" - ], - [ - "could you get everything on my shopping list", - "order" - ], - [ - "i need everything ordered on my shopping list", - "order" - ], - [ - "can you buy me a toy car", - "order" - ], - [ - "i'd like to have everything on my shopping list", - "order" - ], - [ - "i do not have cookies so will you order me some more", - "order" - ], - [ - "get everything on my shopping list", - "order" - ], - [ - "i wanna buy a pair of shoes online now", - "order" - ], - [ - "i do not have flour so will you order me some more", - "order" - ], - [ - "i need everything on my shopping list", - "order" - ], - [ - "i do not have pizza so will you order me some more", - "order" - ], - [ - "i want everything on my shopping list", - "order" - ], - [ - "i don't have ice cream so will you order me some more", - "order" - ], - [ - "i am out of ice cream so will you order me some more", - "order" - ], - [ - "please get everything on my shopping list", - "order" - ], - [ - "i need you to order all the things on my shopping list", - "order" - ], - [ - "i want everything on my shopping list to be ordered", - "order" - ], - [ - "please order me everything that is on my shopping list", - "order" - ], - [ - "would you buy me a phone", - "order" - ], - [ - "i would like everything on my shopping list ordered", - "order" - ], - [ - "i would like you to buy me some paper plates", - "order" - ], - [ - "i'd like you to purchase me canned soup", - "order" - ], - [ - "i need you to buy a mouse for me", - "order" - ], - [ - "purchase a computer for me", - "order" - ], - [ - "i would like all of these things on my shopping list ordered", - "order" - ], - [ - "put in the order for everything on my shopping list", - "order" - ], - [ - "please order some more cat food, i'm out", - "order" - ], - [ - "i'm ready to put in the order for everything on my shopping list", - "order" - ], - [ - "go ahead and order everything on my shoping list", - "order" - ], - [ - "i need more cat food, please order some", - "order" - ], - [ - "i'm out of cat food, order more", - "order" - ], - [ - "will you buy me underpants", - "order" - ], - [ - "order some cat for me, i ran out", - "order" - ], - [ - "order more cat food, i'm out", - "order" - ], - [ - "are you able to purchase underpants for me", - "order" - ], - [ - "can you go to amazon a repurchase my last purchase", - "order" - ], - [ - "please order me a 7lb bag of world's best cat litter from targetcom", - "order" - ], - [ - "submit the order for everything on my shopping list", - "order" - ], - [ - "can you buy something from walmartcom for me", - "order" - ], - [ - "can you purchase underpants for me", - "order" - ], - [ - "can you order underpants for me", - "order" - ], - [ - "can you order everything on my shopping list", - "order" - ], - [ - "i'm out of detergent so will you order me some more", - "order" - ], - [ - "i'm out of fabric softener so will you order me some more", - "order" - ], - [ - "i'm out of soap so will you order me some more", - "order" - ], - [ - "i'm out of toothpaste so will you order me some more", - "order" - ], - [ - "i'm out of razors so will you order me some more", - "order" - ], - [ - "i just used up my toothpaste and need you to order more", - "order" - ], - [ - "i'm making a purchase and need the help of ai", - "order" - ], - [ - "can you order more chapstick i am all out", - "order" - ], - [ - "i am currently out of q tips and need more ordered right away", - "order" - ], - [ - "can you order more printer paper", - "order" - ], - [ - "ran out of tissues and need you to put an order in for more asap", - "order" - ], - [ - "i need you to buy a laptop", - "order" - ], - [ - "i'd like to buy some cooking pans", - "order" - ], - [ - "i'd like to have everything on the shopping list", - "order" - ], - [ - "please buy me flowers", - "order" - ], - [ - "buy all the things on the shopping list", - "order" - ], - [ - "i want all the things on the shopping list", - "order" - ], - [ - "i need to buy everything on the shopping list", - "order" - ], - [ - "purchase me dog food", - "order" - ], - [ - "purchase all the things on my shopping list", - "order" - ], - [ - "i'm short on flour so place an order for me", - "order" - ], - [ - "i'm low on mouthwash so create an order for me", - "order" - ], - [ - "i'm lacking vitamins so order me more", - "order" - ], - [ - "i need more candy so could you order me a pack", - "order" - ], - [ - "i require another filter so can you order me another one", - "order" - ], - [ - "i'm out of shampoo so will you order me some more", - "order" - ], - [ - "i'm out of paper plates so will you order me some more", - "order" - ], - [ - "i'm out of conditioner so will you order me some more", - "order" - ], - [ - "i'm out of paper towels so will you order me some more", - "order" - ], - [ - "i need a replacement phone charger ordered online", - "order" - ], - [ - "can you have some new oakley's shipped to me", - "order" - ], - [ - "grab me a new belt on amazon please", - "order" - ], - [ - "order me a new usb cable on amazon", - "order" - ], - [ - "can you order me new ray bans", - "order" - ], - [ - "would you order everything on my shopping list", - "order" - ], - [ - "i need everything on my shopping list to be ordered", - "order" - ], - [ - "i want you to buy me a shirt", - "order" - ], - [ - "i want everything on my shopping list ordered", - "order" - ], - [ - "i am needing you to buy me some shoes", - "order" - ], - [ - "i want you to order everything on my shopping list", - "order" - ], - [ - "is there any traffic congestion on my way to the closest whole foods", - "traffic" - ], - [ - "how bad is traffic to the closet atm machine", - "traffic" - ], - [ - "is traffic bad on my way to the next mcdonalds", - "traffic" - ], - [ - "what will traffic be like at 5:00 going towards the mall", - "traffic" - ], - [ - "is the traffic bad at 5:00 if i'm going to the mall", - "traffic" - ], - [ - "will i be able to get to the mall at 5:00, or will there be a lot of traffic", - "traffic" - ], - [ - "if i'm heading to the mall at 5:00, what will the traffic be like", - "traffic" - ], - [ - "i'm going to the mall at 5:00 what will traffic be like", - "traffic" - ], - [ - "what is the traffic like on the way to north shore", - "traffic" - ], - [ - "what is the traffic like on the way to makaha", - "traffic" - ], - [ - "what is the traffic like on the way to kaneohe", - "traffic" - ], - [ - "what is the traffic like on the way to kapolei", - "traffic" - ], - [ - "what is the traffic like on the way to town", - "traffic" - ], - [ - "is there traffic on dove road", - "traffic" - ], - [ - "is there traffic up ahead", - "traffic" - ], - [ - "should i take a different route to work", - "traffic" - ], - [ - "is there traffic on bramble lane", - "traffic" - ], - [ - "is there any traffic on my way to work", - "traffic" - ], - [ - "what's the traffic like around the stadium", - "traffic" - ], - [ - "how clogged are the streets before the stadium", - "traffic" - ], - [ - "how much traffic is there before the stadium", - "traffic" - ], - [ - "are there alot of cars on the road before the stadium", - "traffic" - ], - [ - "is there gridlock on the street up to the stadium", - "traffic" - ], - [ - "what's the traffic like on the way to patterson", - "traffic" - ], - [ - "what's the traffic like on the way to the mall", - "traffic" - ], - [ - "what's the traffic like on the way to the water slides", - "traffic" - ], - [ - "what's the traffic like on the way to the amusement park", - "traffic" - ], - [ - "what's the traffic like on the way to walmart", - "traffic" - ], - [ - "what is the traffic nearest lexington", - "traffic" - ], - [ - "give me the traffic at lexington", - "traffic" - ], - [ - "what's the traffic at lexington", - "traffic" - ], - [ - "tell me the traffic at lexington", - "traffic" - ], - [ - "how is the traffic near lexington", - "traffic" - ], - [ - "what is the traffic like", - "traffic" - ], - [ - "is the traffic bad on the way to work", - "traffic" - ], - [ - "how bad is the traffic", - "traffic" - ], - [ - "what is the traffic like on the way to work", - "traffic" - ], - [ - "let me know the traffic in tempe", - "traffic" - ], - [ - "is there traffic on route to work", - "traffic" - ], - [ - "is there traffic on my way to work today", - "traffic" - ], - [ - "i wanna know what the traffic typically like at 3:30 on the route to phoenix", - "traffic" - ], - [ - "i have to know what the traffic typically like at 3:30 on the route to phoenix", - "traffic" - ], - [ - "i would like to know the traffic in tempe please", - "traffic" - ], - [ - "tell me what the traffic is like on the way to phoenix", - "traffic" - ], - [ - "i need to know what the traffic typically like at 3:30 on the route to phoenix", - "traffic" - ], - [ - "is there traffic to work", - "traffic" - ], - [ - "i must know what the traffic typically like at 3:30 on the route to phoenix", - "traffic" - ], - [ - "i gotta know what the traffic is like on the way to phoenix", - "traffic" - ], - [ - "tell me the traffic in tempe", - "traffic" - ], - [ - "is there traffic on my way to work", - "traffic" - ], - [ - "i need ti know the traffic in tempe", - "traffic" - ], - [ - "i wanna know what the traffic is like on the way to phoenix", - "traffic" - ], - [ - "i need to know what traffic will be like in temp", - "traffic" - ], - [ - "what's the traffic typically like at 3:30 on the route to phoenix", - "traffic" - ], - [ - "i need to know what the traffic is like on the way to phoenix", - "traffic" - ], - [ - "i must know what the traffic is like on the way to phoenix", - "traffic" - ], - [ - "is any traffic on my route to work", - "traffic" - ], - [ - "give me an idea of traffic on the way to the doctors office at 6", - "traffic" - ], - [ - "is traffic bad on the way to chicago", - "traffic" - ], - [ - "traffic looking alright going towards burger king", - "traffic" - ], - [ - "is traffic heavy on my route to washington", - "traffic" - ], - [ - "how will traffic be at 7am on the way to my job", - "traffic" - ], - [ - "pull up traffic predictions at 4pm on the way to the library", - "traffic" - ], - [ - "how bad is traffic at 8 on the way to burger king", - "traffic" - ], - [ - "will traffic be light on the way to orlando", - "traffic" - ], - [ - "how's traffic en route to virginia", - "traffic" - ], - [ - "what does traffic look like at 9 en route to the aquarium", - "traffic" - ], - [ - "is there any traffic on the way to the bank", - "traffic" - ], - [ - "is the expressway slow this morning", - "traffic" - ], - [ - "will there be traffic on the way to walmart", - "traffic" - ], - [ - "how's highway traffic today", - "traffic" - ], - [ - "will i hit traffic on route to moms", - "traffic" - ], - [ - "how is the traffic on the way to the mall", - "traffic" - ], - [ - "how is the traffic on the way to work", - "traffic" - ], - [ - "how's traffic on i 95", - "traffic" - ], - [ - "tell me how traffic is looking on the interstate", - "traffic" - ], - [ - "is traffic bad on the parkway", - "traffic" - ], - [ - "how is the traffic on the way to the campsite", - "traffic" - ], - [ - "how is the traffic like on my way to fairfield", - "traffic" - ], - [ - "how is the traffic like on the way to the beach", - "traffic" - ], - [ - "what's the traffic like on my way to the terminal", - "traffic" - ], - [ - "how is the traffic on my way to the venue", - "traffic" - ], - [ - "how is the traffic at jfk at 5 pm on weekdays", - "traffic" - ], - [ - "how bad is city traffic in miami on friday's at 5 pm", - "traffic" - ], - [ - "is the beltway backed up in traffic on saturday mornings at 11 am during the cherry festival", - "traffic" - ], - [ - "how bad is the traffic waiting for the staten island ferry at 8 am", - "traffic" - ], - [ - "tell me about traffic conditions in ocean city, nj on sunday mornings around 10 am in the summer", - "traffic" - ], - [ - "is the traffic typically bad at noon on the route to the hopsital", - "traffic" - ], - [ - "how is the traffic typically at noon on the route to hospital", - "traffic" - ], - [ - "at around noon what is the traffic typically like on the route to the hopsital", - "traffic" - ], - [ - "can you tell me about the traffic typically at noon on the route the hospital", - "traffic" - ], - [ - "if im traveling to the hospital around noon what is the traffic typically like", - "traffic" - ], - [ - "how is the traffic at the nearest wal-mart pharmacy", - "traffic" - ], - [ - "what is the traffic situation at the olive garden restaurant", - "traffic" - ], - [ - "what is the traffic like at the closest safeway grocery store", - "traffic" - ], - [ - "is the traffic light or heavy at the nearest the century movie theater", - "traffic" - ], - [ - "is the traffic backed up at the closest circle k", - "traffic" - ], - [ - "what's the traffic like to city hall", - "traffic" - ], - [ - "what's traffic usually like around 5pm going to the bank", - "traffic" - ], - [ - "has the ice made traffic messy on the way to walmart", - "traffic" - ], - [ - "what is the process to get some more checkbooks mailed to me", - "order_checks" - ], - [ - "how do i get more checkbooks mailed to me", - "order_checks" - ], - [ - "if i need more checkbooks maild to me what should i do", - "order_checks" - ], - [ - "can you mail more checkbooks to me please", - "order_checks" - ], - [ - "can you explain to me how to get some more checkbooks mailed to me", - "order_checks" - ], - [ - "can i get more checks", - "order_checks" - ], - [ - "order more checks", - "order_checks" - ], - [ - "i don't have any checks left; please order some", - "order_checks" - ], - [ - "i need new checks", - "order_checks" - ], - [ - "can you order me more checks, please", - "order_checks" - ], - [ - "i need more checkbooks for my chase account", - "order_checks" - ], - [ - "i'm in need of checks for bank of america", - "order_checks" - ], - [ - "can you order me more checks at wells fargo", - "order_checks" - ], - [ - "my key bank checks have run out", - "order_checks" - ], - [ - "i don't have anymore checks for chase and need some", - "order_checks" - ], - [ - "i would like to request that more checkbooks be mailed to me", - "order_checks" - ], - [ - "i would like to order additional checkbooks to me mailed to my home address", - "order_checks" - ], - [ - "would it be possible for you to mail me new checkbooks", - "order_checks" - ], - [ - "i would like to place an order for more checkbooks to me mailed to me", - "order_checks" - ], - [ - "could you please mail me some checkbooks", - "order_checks" - ], - [ - "how can i order some more checks for my checking account", - "order_checks" - ], - [ - "can you show me how to order some more checks for my chase account", - "order_checks" - ], - [ - "please show me how to order more checks for my savings account", - "order_checks" - ], - [ - "i'd like to order more checks for my savings account", - "order_checks" - ], - [ - "i need to order more checks for my savings account", - "order_checks" - ], - [ - "if i can, i'd like to get some more checkbooks mailed to me", - "order_checks" - ], - [ - "can i get some more of those new checkbooks mailed to me", - "order_checks" - ], - [ - "can some more checkbooks get mailed to me", - "order_checks" - ], - [ - "can i please get some more checkbooks mailed to me", - "order_checks" - ], - [ - "i'd like to get some more checkbooks mailed to me, if i can", - "order_checks" - ], - [ - "i don't have checks so can i order some new ones", - "order_checks" - ], - [ - "i really wanna get some more checkbooks mailed to me", - "order_checks" - ], - [ - "i wanna order some more checks for my checking account", - "order_checks" - ], - [ - "i wanna get some new checks cause i ran out of them", - "order_checks" - ], - [ - "i would like to get some more checkbooks mailed to me", - "order_checks" - ], - [ - "i need to get some more checkbooks mailed to me", - "order_checks" - ], - [ - "i'd love to order some more checks for my checking account", - "order_checks" - ], - [ - "i feel i would like to get some more checkbooks mailed to me", - "order_checks" - ], - [ - "i don't have checks, so can i get new ones", - "order_checks" - ], - [ - "i must order some more checks for my checking account", - "order_checks" - ], - [ - "i do need to get some more checkbooks mailed to me", - "order_checks" - ], - [ - "i really need to order some more checks for my savings account", - "order_checks" - ], - [ - "i want to order some more checks for my savings account", - "order_checks" - ], - [ - "i recently ran out of checks, so i wanna get some new ones", - "order_checks" - ], - [ - "i need to order checks, so can i order some new ones", - "order_checks" - ], - [ - "i need more checkbooks delivered to me by mail", - "order_checks" - ], - [ - "i need to order more checkbooks by mail", - "order_checks" - ], - [ - "how can i order more checkbooks by mail", - "order_checks" - ], - [ - "can you show me how to get more checkbooks by mail", - "order_checks" - ], - [ - "what is the process for ordering new checks", - "order_checks" - ], - [ - "how do i order new checks", - "order_checks" - ], - [ - "how do you order new checks", - "order_checks" - ], - [ - "how do i order checks once i run out", - "order_checks" - ], - [ - "i need to order new checks", - "order_checks" - ], - [ - "is it possible to get more checkbooks for my navy fed account", - "order_checks" - ], - [ - "is it possible to get more checkbooks for my wells fargo checkings", - "order_checks" - ], - [ - "i used the last check so i want you to help me order more", - "order_checks" - ], - [ - "can i get new checks to replace the ones we ran out of", - "order_checks" - ], - [ - "since we're out of checks i want help purchasing new ones", - "order_checks" - ], - [ - "i need to order new checks since i just used the last of them", - "order_checks" - ], - [ - "order some new checks to replace the ones i ran out of", - "order_checks" - ], - [ - "can i get more checkbooks for my bank of america checkings account", - "order_checks" - ], - [ - "does my great western bank account allow me to order more checkbooks", - "order_checks" - ], - [ - "i need to order more checkbooks for my capital one account", - "order_checks" - ], - [ - "help me get some new checks since i ran out of them", - "order_checks" - ], - [ - "i want to order some new checks because i ran out of them", - "order_checks" - ], - [ - "i have no more checks, how can i order more", - "order_checks" - ], - [ - "how do i go about getting more checks since i ran out of them", - "order_checks" - ], - [ - "how can i order more checks since i do not have any more", - "order_checks" - ], - [ - "is is possible to order more checkbooks for account ending in sequence 939392", - "order_checks" - ], - [ - "tell my bank i need new checks", - "order_checks" - ], - [ - "please order me some new checks", - "order_checks" - ], - [ - "how can i order more checks for my regions bank account", - "order_checks" - ], - [ - "how do i place an order for more checks for my bank of america account", - "order_checks" - ], - [ - "how can i get more checks for my commerce bank checking account", - "order_checks" - ], - [ - "order more checks for my first bank checking account", - "order_checks" - ], - [ - "i need to order more checks for my usbank account", - "order_checks" - ], - [ - "i'm out of checks, please order new ones", - "order_checks" - ], - [ - "order new checks, please", - "order_checks" - ], - [ - "will you order more checkbooks for my silvergate account", - "order_checks" - ], - [ - "would you please order me more checkbooks for my b of t account", - "order_checks" - ], - [ - "order more checkbooks for my community account", - "order_checks" - ], - [ - "i need more checkbooks for my fifth third account", - "order_checks" - ], - [ - "can you get me more checkbooks for my southern account", - "order_checks" - ], - [ - "will it be possible to order for more checkbooks for my chase bank account", - "order_checks" - ], - [ - "can i order for more checkbooks for my chase bank account", - "order_checks" - ], - [ - "will i be able to order for more checkbooks for my chase bank account", - "order_checks" - ], - [ - "is it possible to make an order for more checkbooks for my chase bank account", - "order_checks" - ], - [ - "is it possible to order more checkbooks for my chase bank account", - "order_checks" - ], - [ - "ai, research usbank options to order more checks", - "order_checks" - ], - [ - "ai, where do i go to order checks for my usbank account", - "order_checks" - ], - [ - "ai,please order some checks for my usbank account", - "order_checks" - ], - [ - "ai, show me online options to order more checks for my usbank account", - "order_checks" - ], - [ - "ai, call my usbank to order more checks", - "order_checks" - ], - [ - "i need to place an order of checks for my bank of america checking account", - "order_checks" - ], - [ - "please submit an order for new checks on my pnc money market account", - "order_checks" - ], - [ - "i would like a reorder of checkbooks for my home equity line of credit with chase", - "order_checks" - ], - [ - "can you order new checks for my citizens checking", - "order_checks" - ], - [ - "make an order for new checbooks on my td checking please", - "order_checks" - ], - [ - "how do i order checks for my savings account", - "order_checks" - ], - [ - "why did my card not get accepted", - "card_declined" - ], - [ - "why did my card not get accepted there", - "card_declined" - ], - [ - "please tell me why did my card not get accepted", - "card_declined" - ], - [ - "why did my card not get accepted please", - "card_declined" - ], - [ - "why did my card not get accepted then", - "card_declined" - ], - [ - "find out why my card was declined", - "card_declined" - ], - [ - "please tell me why my card was declined", - "card_declined" - ], - [ - "for what reason did my card get declined", - "card_declined" - ], - [ - "can you tell me why my card was declined", - "card_declined" - ], - [ - "i need to know why my card was declined", - "card_declined" - ], - [ - "i need to know why my card was just declined at walgreen's", - "card_declined" - ], - [ - "where can i find out why my card was recently declined at amazoncom", - "card_declined" - ], - [ - "i tried using my card at chipotle yesterday and it was declined; why", - "card_declined" - ], - [ - "why was my card declined for my monthly netflix subscription payment", - "card_declined" - ], - [ - "can you tell me what caused my card to get declined at starbucks this morning", - "card_declined" - ], - [ - "i wonder why my card got declined yesterday", - "card_declined" - ], - [ - "why was my card declined", - "card_declined" - ], - [ - "my card was declined yesterday, why", - "card_declined" - ], - [ - "is my card working properly", - "card_declined" - ], - [ - "do i have enough funds in my card", - "card_declined" - ], - [ - "how do i fix my card being declined", - "card_declined" - ], - [ - "tell me why was my card declined at the zoo", - "card_declined" - ], - [ - "explain why was my card declined at boston market", - "card_declined" - ], - [ - "why did you decline my card at sfo", - "card_declined" - ], - [ - "how come my card was declined at rosses", - "card_declined" - ], - [ - "why did my card get declined at the dentist office", - "card_declined" - ], - [ - "why did macy's decline my card", - "card_declined" - ], - [ - "bloomingdale's declined my card and i'd like to know why", - "card_declined" - ], - [ - "why wouldn't nordstrom accept my card", - "card_declined" - ], - [ - "please tell me why walgreen's wouldn't take my card", - "card_declined" - ], - [ - "can you tell me why walmart declined my card", - "card_declined" - ], - [ - "i couldn't buy a mug from target because my card got declined", - "card_declined" - ], - [ - "stopped by target to get a mug but my card declines", - "card_declined" - ], - [ - "at target trying to buy a mug and my card was declined", - "card_declined" - ], - [ - "i went to target to buy a mug but my card did not work", - "card_declined" - ], - [ - "trying to buy a mug from target but my card declined", - "card_declined" - ], - [ - "why was my card not accepted yesterday", - "card_declined" - ], - [ - "tell me why my card didn't work yesterday", - "card_declined" - ], - [ - "what was the issue with my card yesterday", - "card_declined" - ], - [ - "what was the problem with my card yesterday", - "card_declined" - ], - [ - "what was wrong with my card yesterday", - "card_declined" - ], - [ - "i was at home depot trying to buy plants and my card got declined", - "card_declined" - ], - [ - "i need to know why my card declined yesterday", - "card_declined" - ], - [ - "i wish to know why my card was declined yesterday", - "card_declined" - ], - [ - "i was at target trying to buy candles and my card got declined", - "card_declined" - ], - [ - "find out why my card declined yesterday", - "card_declined" - ], - [ - "i was at sears trying to buy clothes and my card got declined", - "card_declined" - ], - [ - "why was my card declined yesterday", - "card_declined" - ], - [ - "i was at zales trying to buy a ring and my card got declined", - "card_declined" - ], - [ - "i was at macys trying to buy shoes and my card got declined", - "card_declined" - ], - [ - "my card declined yesterday and i want to know why", - "card_declined" - ], - [ - "i wish to know why my card was declined", - "card_declined" - ], - [ - "tell me why my card was declined yesterday", - "card_declined" - ], - [ - "so it turns out my card was declined at applebee's and i wanna know why", - "card_declined" - ], - [ - "so why was my card declined yesterday", - "card_declined" - ], - [ - "tell me why my card got declined", - "card_declined" - ], - [ - "it turns out my card was declined at fry's and i would like to know why", - "card_declined" - ], - [ - "let me know why my card got declined", - "card_declined" - ], - [ - "let me know why my card was declined yesterday", - "card_declined" - ], - [ - "i wanna know why my card was declined", - "card_declined" - ], - [ - "i really need to know why my card was denied", - "card_declined" - ], - [ - "so my card was declined at fry's and i wanna know why", - "card_declined" - ], - [ - "turns out my card was declined at wal mart and i wanna know why", - "card_declined" - ], - [ - "i think my card was declined at wal mart and i want to know why", - "card_declined" - ], - [ - "let me know why my card got declined the other day", - "card_declined" - ], - [ - "please let me know why my card was declined yesterday", - "card_declined" - ], - [ - "i was trying to buy qtips at walmart and my card got declined", - "card_declined" - ], - [ - "i was at walmart today and my card got declined when i went to buy qtips", - "card_declined" - ], - [ - "at walmart my card got declined when i was buyng qtips", - "card_declined" - ], - [ - "buying qtips today, my card got declined at walmart", - "card_declined" - ], - [ - "i was buying qtips today at walmart and my card got declined", - "card_declined" - ], - [ - "my card didn't go through when i was buying a case of water at walmart", - "card_declined" - ], - [ - "i was at walmart when my card was declined i was only trying to buy some candy", - "card_declined" - ], - [ - "my card got declined at target while buying a tv", - "card_declined" - ], - [ - "i was at albertsons trying to buy milk when my card wasn't accepted", - "card_declined" - ], - [ - "my card was not accepted for buying a computer at best buy", - "card_declined" - ], - [ - "please help me figure out why my card was declined yesterday", - "card_declined" - ], - [ - "why did my card get rejected yesterday", - "card_declined" - ], - [ - "can you tell me why my card was declined yesterday", - "card_declined" - ], - [ - "my card was declined at the store yesterday, what happened", - "card_declined" - ], - [ - "i was at costco trying to buy groceries and my card got declined", - "card_declined" - ], - [ - "my card was declined at the casino and i'm wondering why", - "card_declined" - ], - [ - "i was at safeway trying to buy groceries and my card got declined", - "card_declined" - ], - [ - "i was at whole foods trying to buy groceries and my card got declined", - "card_declined" - ], - [ - "i was at trader joe's trying to buy groceries and my card got declined", - "card_declined" - ], - [ - "i was at costco trying to buy sheets and my card got declined", - "card_declined" - ], - [ - "my card did not work yesterday", - "card_declined" - ], - [ - "i tried to use my credit card yesterday, but it did not work", - "card_declined" - ], - [ - "my card was malfunctioning and was returned to me", - "card_declined" - ], - [ - "for which reason was my card declined yesterday", - "card_declined" - ], - [ - "yesterday, my card was declined", - "card_declined" - ], - [ - "i don't understand why walgreens declined my card", - "card_declined" - ], - [ - "i tried to make a purchase yesterday but my card was declined why", - "card_declined" - ], - [ - "i don't understand why my card was declined yesterday", - "card_declined" - ], - [ - "what is the reason for whole foods declining my card", - "card_declined" - ], - [ - "can you explain why my card was declined", - "card_declined" - ], - [ - "how come starbucks declined my card when i tried to use it to pay", - "card_declined" - ], - [ - "how come my card was not accepted yesterday", - "card_declined" - ], - [ - "find out what happened to make my card get declined yesterday", - "card_declined" - ], - [ - "why was my card declined at safeway", - "card_declined" - ] - ], - "oos_test": [ - [ - "how much has the dow changed today", - "oos" - ], - [ - "how many prime numbers are there between 0 and 100", - "oos" - ], - [ - "can you tell me how to solve simple algebraic equations with one variable", - "oos" - ], - [ - "can you dim the brightness of my screen", - "oos" - ], - [ - "what is the account number to the internet service i have", - "oos" - ], - [ - "can you see a hdmi cord", - "oos" - ], - [ - "what veggies can i pair with mushrooms", - "oos" - ], - [ - "can you put the car in fuel efficient mode", - "oos" - ], - [ - "at what age can someone get a card", - "oos" - ], - [ - "please find today's most read stories from the new york times todayi", - "oos" - ], - [ - "how do i get red wine out of a couch cushion", - "oos" - ], - [ - "can you tell me who sells dixie paper plates", - "oos" - ], - [ - "who invented the internet", - "oos" - ], - [ - "what big news happened over the weekend", - "oos" - ], - [ - "what is happening in politicsu", - "oos" - ], - [ - "how is my driving", - "oos" - ], - [ - "is the earth flat", - "oos" - ], - [ - "what is the best way to clean ceiling fans", - "oos" - ], - [ - "please tell me the status of the government shutdown", - "oos" - ], - [ - "what oil is best for chicken", - "oos" - ], - [ - "what is today's big article in the washington post", - "oos" - ], - [ - "has there been anything breaking this afternoon", - "oos" - ], - [ - "what are yahoo's top stories right now", - "oos" - ], - [ - "what's at movies", - "oos" - ], - [ - "what is the amount of blood needed to stay alive", - "oos" - ], - [ - "can you add a bag to my reservation", - "oos" - ], - [ - "can you auto-pilot the car", - "oos" - ], - [ - "wash windshield", - "oos" - ], - [ - "can you tell me what credit cards i have open", - "oos" - ], - [ - "did the stock market finish up for the day", - "oos" - ], - [ - "what is the population of south africa", - "oos" - ], - [ - "watch the fbi", - "oos" - ], - [ - "can you find the answer to number 26 in this algebra two textbook", - "oos" - ], - [ - "how to remove a stripped bolt", - "oos" - ], - [ - "which stocks have lost the least today", - "oos" - ], - [ - "what are some things i can do on the way to work", - "oos" - ], - [ - "how many steps have i taken today", - "oos" - ], - [ - "can you fill in my credit card number on the screen", - "oos" - ], - [ - "who won the patriots game last nightu", - "oos" - ], - [ - "is anything being newscasted about the threat of famine in chadu", - "oos" - ], - [ - "what are the different types of tvs", - "oos" - ], - [ - "do laundry", - "oos" - ], - [ - "what did trump do todayu", - "oos" - ], - [ - "how many miles does my car currently have", - "oos" - ], - [ - "close all internet tabs", - "oos" - ], - [ - "can you sell stocks for me", - "oos" - ], - [ - "how do you treat an iron skillet", - "oos" - ], - [ - "how much has microsoft's stock changed over the last year", - "oos" - ], - [ - "what is the best product for removing soap scum", - "oos" - ], - [ - "read text", - "oos" - ], - [ - "park the car", - "oos" - ], - [ - "show me a list of top rated airlines", - "oos" - ], - [ - "may i finish washing then i give you please", - "oos" - ], - [ - "do i have overdraft protection", - "oos" - ], - [ - "can you delete my saved credit card", - "oos" - ], - [ - "can you give me the most current market news", - "oos" - ], - [ - "did the supreme court nominee get approvedu", - "oos" - ], - [ - "which company has gone up the most today", - "oos" - ], - [ - "who were the superbowl 23 champions", - "oos" - ], - [ - "can you tell me how to clean a fish tank", - "oos" - ], - [ - "open cnn websiteo", - "oos" - ], - [ - "how do i make my android phone more secure", - "oos" - ], - [ - "i need to update my address", - "oos" - ], - [ - "what is that crunchy stuff on creme bruleo", - "oos" - ], - [ - "which airports do southwest service around the greater new york city area", - "oos" - ], - [ - "can you retrieve client d's file please", - "oos" - ], - [ - "can you list all channels of a certain category", - "oos" - ], - [ - "where does jelly come from", - "oos" - ], - [ - "can you tell me the s&p average", - "oos" - ], - [ - "how would you rate the airport i am traveling to", - "oos" - ], - [ - "am i too old to be a sugar babyo", - "oos" - ], - [ - "what was the closing number of the nasdaq today", - "oos" - ], - [ - "has ko gone up or down", - "oos" - ], - [ - "how many cars average are on the road daily", - "oos" - ], - [ - "what does the plus sign mean on my dashboard", - "oos" - ], - [ - "how is ford's stock doing", - "oos" - ], - [ - "what is my checking account number", - "oos" - ], - [ - "when should i remove my snow tires", - "oos" - ], - [ - "which stocks gained the most today", - "oos" - ], - [ - "what is the fee for a cash advance", - "oos" - ], - [ - "tell me about the earthquake in california that happened this morning", - "oos" - ], - [ - "change color contrast", - "oos" - ], - [ - "what is the golden ratio's number", - "oos" - ], - [ - "is the bank open on mlk day", - "oos" - ], - [ - "can i deposit a check", - "oos" - ], - [ - "from the second of the left ,the pink one", - "oos" - ], - [ - "go and check the fridge", - "oos" - ], - [ - "can you tell me the score of the heat game", - "oos" - ], - [ - "can you mark this note as important", - "oos" - ], - [ - "can you tell me how to multiply two fractions", - "oos" - ], - [ - "i want to find a new car under $25000", - "oos" - ], - [ - "when is the next full moon", - "oos" - ], - [ - "how do i change the windshield wipers", - "oos" - ], - [ - "why is the sky blue", - "oos" - ], - [ - "should i do a complete stop at red lights", - "oos" - ], - [ - "are all televisions high definition", - "oos" - ], - [ - "can you tell me today's headlines pleasei", - "oos" - ], - [ - "who invented custardo", - "oos" - ], - [ - "how to be millionare", - "oos" - ], - [ - "when does the stock market update", - "oos" - ], - [ - "can you tell me how to get gum out of my rug", - "oos" - ], - [ - "how can i get a better rate on my card", - "oos" - ], - [ - "open up internet browser", - "oos" - ], - [ - "it is white colour", - "oos" - ], - [ - "what makes pi so mathematically important", - "oos" - ], - [ - "why can you have the square root of a negative number", - "oos" - ], - [ - "how much time do i have left on my 0% apr", - "oos" - ], - [ - "what are the highest-rated android phones", - "oos" - ], - [ - "what time do i need to arrive to make it on time", - "oos" - ], - [ - "find articles about the protests in parisi", - "oos" - ], - [ - "can you tell me how fast the average airplane enroute to california goes", - "oos" - ], - [ - "how many hurricanes are in an average hurricane season", - "oos" - ], - [ - "how does my current htc phone compare to other android phones", - "oos" - ], - [ - "what movies are available", - "oos" - ], - [ - "how many items are in a bakers dozen", - "oos" - ], - [ - "what articles are written at the cnn site about the women's march", - "oos" - ], - [ - "when does napa close", - "oos" - ], - [ - "what is the current price of tsla", - "oos" - ], - [ - "when will world war 3 begin", - "oos" - ], - [ - "what's going on in the world today", - "oos" - ], - [ - "what battery percentage is my phone at", - "oos" - ], - [ - "can you sign out of my bank login", - "oos" - ], - [ - "what is one standard deviation", - "oos" - ], - [ - "has the market been up or down since the beginning of this year", - "oos" - ], - [ - "how many moons does mars have", - "oos" - ], - [ - "what is the cashback rate for my credit card", - "oos" - ], - [ - "who has the best record in the nba", - "oos" - ], - [ - "how long is the bank open until", - "oos" - ], - [ - "what are some good games for my android phone", - "oos" - ], - [ - "can my grace period be extended any possible way", - "oos" - ], - [ - "how much over will overdraft protection cover", - "oos" - ], - [ - "how fast am i going", - "oos" - ], - [ - "who was the first person to discover cells", - "oos" - ], - [ - "how many people died in yesterday's storm", - "oos" - ], - [ - "how much memory do i have left on this phone", - "oos" - ], - [ - "can i set up mobile deposits", - "oos" - ], - [ - "sell three calls of of nvda", - "oos" - ], - [ - "what bills is congress talking about passing or blocking today", - "oos" - ], - [ - "how much data does my phone have left this month", - "oos" - ], - [ - "how do i add someone to my account", - "oos" - ], - [ - "how much money would my house sell for", - "oos" - ], - [ - "how do i install new cabinets", - "oos" - ], - [ - "is there a fee for cancelling a flight i've booked", - "oos" - ], - [ - "delete the contact uncle john from my phone", - "oos" - ], - [ - "search my contacts for the auto repair place", - "oos" - ], - [ - "does my carrier have coverage in europe", - "oos" - ], - [ - "is there a cheaper rate with another carrier for my mobile", - "oos" - ], - [ - "what are the limits in my phone plan", - "oos" - ], - [ - "is there a way to change your houses address", - "oos" - ], - [ - "does dhl deliver to my address", - "oos" - ], - [ - "how frequently is the bus running today", - "oos" - ], - [ - "is there a better bus route i should be taking", - "oos" - ], - [ - "what stores are at my local mall", - "oos" - ], - [ - "i need to get kalee added to my phone plan", - "oos" - ], - [ - "what is the price of other company's similar phone plans", - "oos" - ], - [ - "how long do i have to wait to get my refund", - "oos" - ], - [ - "how long does it take the irs to issue a tax refund", - "oos" - ], - [ - "do you know if it is possible to close my savings account", - "oos" - ], - [ - "how hard is it to close a bank account at wells fargo", - "oos" - ], - [ - "add my wife as an authorized user to checking account 20905432", - "oos" - ], - [ - "i would like to upgrade to full coverage for my car", - "oos" - ], - [ - "who has the cheapest insurance for my model car in the area", - "oos" - ], - [ - "tell me the value on my current car", - "oos" - ], - [ - "where can i list my vehicle for sell", - "oos" - ], - [ - "what is the price to buy more data on my phone", - "oos" - ], - [ - "i need to add a person to my bank account", - "oos" - ], - [ - "who is the best local real estate agent", - "oos" - ], - [ - "i want to install new tiles in my kitchen", - "oos" - ], - [ - "what's the way for delta to cancel a flight", - "oos" - ], - [ - "read the phone number for mom in my phone contacts", - "oos" - ], - [ - "create a contact labeled mom", - "oos" - ], - [ - "do other providers have better coverage than my cell carrier", - "oos" - ], - [ - "does centurytel offer any better plans than the one i'm on", - "oos" - ], - [ - "what's going on in the world today, anything major", - "oos" - ], - [ - "what is the extra digits that are sometimes included on my zip code", - "oos" - ], - [ - "what's the extended zipcode for my address", - "oos" - ], - [ - "is there an alternate bus stop close to my home i can use", - "oos" - ], - [ - "what stores are in the local mall", - "oos" - ], - [ - "add mary to my phone plan, please", - "oos" - ], - [ - "how much is it to get more data on my phone plan", - "oos" - ], - [ - "can i use direct deposit for my tax refund", - "oos" - ], - [ - "how much of a refund will i get this year", - "oos" - ], - [ - "please take all my money out of my checking account and close the account", - "oos" - ], - [ - "what are cars like mine selling for online", - "oos" - ], - [ - "what's the blue book value of my car", - "oos" - ], - [ - "what are the last 4 digits of my credit card number", - "oos" - ], - [ - "switch over to low power mode to preserve battery life", - "oos" - ], - [ - "show me the most popular nonfiction book currently on the market", - "oos" - ], - [ - "can you recommend some fiction books", - "oos" - ], - [ - "how can i repair a broken watch", - "oos" - ], - [ - "what's out at the theaters right now", - "oos" - ], - [ - "what is the most popular movie currently in theaters", - "oos" - ], - [ - "what is the cheapest new car for this year", - "oos" - ], - [ - "show me new cars with the highest safety rating", - "oos" - ], - [ - "i am looking for a suit for work", - "oos" - ], - [ - "i need to find a black suit under $100", - "oos" - ], - [ - "what is a good laptop for gaming", - "oos" - ], - [ - "show me laptops for sale that are under $2,000", - "oos" - ], - [ - "which element on the periodic table is k", - "oos" - ], - [ - "what kind of bonds do molecules have", - "oos" - ], - [ - "how much is my car worth used", - "oos" - ], - [ - "look up prices for parking at the airport over the weekend", - "oos" - ], - [ - "what is the best way for dealing with the airport", - "oos" - ], - [ - "what are my hours this week at work", - "oos" - ], - [ - "can you check my voicemail", - "oos" - ], - [ - "how many voicemails are currently in my inbox", - "oos" - ], - [ - "i would like to know how long a charge is suppose to last on my phone", - "oos" - ], - [ - "check battery health on this device", - "oos" - ], - [ - "what is a well reviewed book for a teenage girl to read", - "oos" - ], - [ - "i want to find new cyberpunk fiction books", - "oos" - ], - [ - "what channel is cw on", - "oos" - ], - [ - "what is the most rented movie this week", - "oos" - ], - [ - "what is a good movie to go see in theaters for a family with young kids", - "oos" - ], - [ - "i would like to find a stylish suit for a party", - "oos" - ], - [ - "can you give me suggestions for a professional suit under $200", - "oos" - ], - [ - "when is it cheapest to travel to hawaii", - "oos" - ], - [ - "i need a laptop with 16gb of ram", - "oos" - ], - [ - "what is the best reviewed laptop available on the market", - "oos" - ], - [ - "give me information about the element carbon and its reactions with hydrogen", - "oos" - ], - [ - "what is a good chemistry experiment to learn from", - "oos" - ], - [ - "how much is this years model of my car cost", - "oos" - ], - [ - "how do i best deal with the airport", - "oos" - ], - [ - "remind me of the address for my workplace please", - "oos" - ], - [ - "what time do i have to go to work today", - "oos" - ], - [ - "how many voicemail messages do i have", - "oos" - ], - [ - "erase all voicemails in my inbox please", - "oos" - ], - [ - "can you look up grocery coupons for me", - "oos" - ], - [ - "what is money used for", - "oos" - ], - [ - "what are some natural remedies to help ease stress", - "oos" - ], - [ - "what are some good methods of relieving stress", - "oos" - ], - [ - "how do you make sure a bridge doesn't fall down", - "oos" - ], - [ - "what is the median salary for someone with an engineering degree", - "oos" - ], - [ - "what size pipes are used for sinks", - "oos" - ], - [ - "why would the water be turned off", - "oos" - ], - [ - "what is a good sink filter for water", - "oos" - ], - [ - "what does water taste like", - "oos" - ], - [ - "are there any sales on groceries today", - "oos" - ], - [ - "when was my lawn last mowed", - "oos" - ], - [ - "what store has the best deals going on right now", - "oos" - ], - [ - "can you tell me the best time to visit downtown when driving", - "oos" - ], - [ - "am i currently connected to wifi", - "oos" - ], - [ - "is there an internet outage in my area", - "oos" - ], - [ - "tell me about personal finance", - "oos" - ], - [ - "does amazon collect my personal information", - "oos" - ], - [ - "check the status of my amazon orders for me", - "oos" - ], - [ - "what is the official language of romania", - "oos" - ], - [ - "show me the best times to book flights for traveling to another country", - "oos" - ], - [ - "disconnect from wifi immediately please", - "oos" - ], - [ - "am i connected to wifi", - "oos" - ], - [ - "list the contents of my safety deposit box at the bank", - "oos" - ], - [ - "what's the more secure bank vault", - "oos" - ], - [ - "what coupons do i have for restaurants", - "oos" - ], - [ - "how do i make money", - "oos" - ], - [ - "can you give me some stress management tips", - "oos" - ], - [ - "how unhealthy is stress", - "oos" - ], - [ - "what's the best way to build a skyscraper", - "oos" - ], - [ - "find engineering programs to apply to", - "oos" - ], - [ - "what kind of glue is used for gluing pipes together", - "oos" - ], - [ - "check to see how many miles are on my car", - "oos" - ], - [ - "how do i change my windshield wipers", - "oos" - ], - [ - "how many ppm of particulate is in my local water", - "oos" - ], - [ - "what color is water", - "oos" - ], - [ - "is anything on my grocery list on sale today", - "oos" - ], - [ - "how long does it take for grass seed to grow on my lawn", - "oos" - ], - [ - "please activate a wireless hotspot so i can use the internet", - "oos" - ], - [ - "look up a good broker for mutual funds", - "oos" - ], - [ - "what are the best personal finance practices", - "oos" - ], - [ - "will amazon ship an order even if there was a pricing mistake", - "oos" - ], - [ - "where did mandarin originate from", - "oos" - ], - [ - "what are some of the most visited countries for people looking to travel abroad", - "oos" - ], - [ - "tell me which wifi network you are connected to right now", - "oos" - ], - [ - "what is my current signal strength", - "oos" - ], - [ - "if i'm locked in a bank vault what's the best way to get out", - "oos" - ], - [ - "how do i upgrade my operating system", - "oos" - ], - [ - "how much ram does my computer have", - "oos" - ], - [ - "is it ok to feed dogs people food", - "oos" - ], - [ - "how do you fix a leaking sink", - "oos" - ], - [ - "how do you unclog a toilet", - "oos" - ], - [ - "can you tell me local crime in my area", - "oos" - ], - [ - "what's the power consumption of my fridge", - "oos" - ], - [ - "what is the warranty on my microwave", - "oos" - ], - [ - "how do i use my microwaves defrost", - "oos" - ], - [ - "how do you get red wine out of the carpet", - "oos" - ], - [ - "how do i get stains out of the carpet", - "oos" - ], - [ - "what is the highest quality carpet available", - "oos" - ], - [ - "has everyone come home from school", - "oos" - ], - [ - "what time did my daughter get home from her date", - "oos" - ], - [ - "is my computer free from viruses", - "oos" - ], - [ - "are you allowed to call someone a dirty name as part of free speech", - "oos" - ], - [ - "can you really get arrested for yelling fire in a crowded theater", - "oos" - ], - [ - "what amendment guarantees the freedom of speech to americans", - "oos" - ], - [ - "do employers have to honor freedom of speech", - "oos" - ], - [ - "what's the average score on a round of golf", - "oos" - ], - [ - "where is the closest driving range", - "oos" - ], - [ - "when does tiger woods play next", - "oos" - ], - [ - "how can i improve my golf swing", - "oos" - ], - [ - "are your step-parent's parents considered your grandparents", - "oos" - ], - [ - "what's a good gift to get for your grandparents", - "oos" - ], - [ - "what year did my grandparents get married", - "oos" - ], - [ - "fun gift ideas to give to grandparents", - "oos" - ], - [ - "which came first; greek mythology or roman mythology", - "oos" - ], - [ - "how many greek mythology characters are there", - "oos" - ], - [ - "who created the world in greek mythology", - "oos" - ], - [ - "what was hercules the god of", - "oos" - ], - [ - "how many harry potter books are there", - "oos" - ], - [ - "what is harry's real name", - "oos" - ], - [ - "who played ronald weasly", - "oos" - ], - [ - "how do you repel a bear when you're out on a hike", - "oos" - ], - [ - "where's the best place to hike in the rockies", - "oos" - ], - [ - "what should i wear to hike", - "oos" - ], - [ - "what is the main cause of becoming homeless", - "oos" - ], - [ - "how many people are jobless in america", - "oos" - ], - [ - "how many homeless people are there", - "oos" - ], - [ - "where are most homeless people", - "oos" - ], - [ - "are indians nowadays reminiscent of a decade ago", - "oos" - ], - [ - "what were indians like 100 years ago", - "oos" - ], - [ - "how old is jennifer aniston", - "oos" - ], - [ - "i need tips on how to overcome insomnia", - "oos" - ], - [ - "how many people have insomnia", - "oos" - ], - [ - "what causes dyslexia", - "oos" - ], - [ - "is insomnia curable", - "oos" - ], - [ - "what are sigmund freud's most famous books", - "oos" - ], - [ - "what year was jane austen born", - "oos" - ], - [ - "where is te lawrence", - "oos" - ], - [ - "who is jane goodall", - "oos" - ], - [ - "how long does it take to get your yellow belt in karate", - "oos" - ], - [ - "what's the most practiced form of mma in the world", - "oos" - ], - [ - "what is the highest belt in karate", - "oos" - ], - [ - "where does jiu jitsu originate", - "oos" - ], - [ - "what's the proper subject verb order in japanese", - "oos" - ], - [ - "how do i learn more about linguistics", - "oos" - ], - [ - "what kind of paint do makeup artists use", - "oos" - ], - [ - "the bus moves with tyre", - "oos" - ], - [ - "how the bus moves", - "oos" - ], - [ - "what are some good resources to learn about mental illness", - "oos" - ], - [ - "are people with a mental illness eligible for disability", - "oos" - ], - [ - "how many people suffer from mental illness", - "oos" - ], - [ - "how can i get help for my mental health", - "oos" - ], - [ - "what's trending now", - "oos" - ], - [ - "what's the first romantic movie ever made", - "oos" - ], - [ - "when was the term \"zombie\" first used", - "oos" - ], - [ - "what kind of traits do vampires have", - "oos" - ], - [ - "what do mummies eat", - "oos" - ], - [ - "send information on flood clean up to my phone", - "oos" - ], - [ - "what's the cost of buying a sump pump", - "oos" - ], - [ - "recommend a flood clean up service", - "oos" - ], - [ - "what is the safest model of airplane to fly in", - "oos" - ], - [ - "what year was the first airplane built in", - "oos" - ], - [ - "what's the best reviewed local roof repair place", - "oos" - ], - [ - "what's the best type of plan to upgrade to", - "oos" - ], - [ - "give me a suggestion for roofers", - "oos" - ], - [ - "where can i buy new shingles", - "oos" - ], - [ - "what's the safest pet to be around toddlers", - "oos" - ], - [ - "why is my dog vomiting after eating", - "oos" - ], - [ - "tiger", - "oos" - ], - [ - "what's the average rent of apartments in my city", - "oos" - ], - [ - "are there any apartments for rent nearby", - "oos" - ], - [ - "what are apartment prices now", - "oos" - ], - [ - "what's the highest building in the world", - "oos" - ], - [ - "where is the closest architecture college", - "oos" - ], - [ - "where can i submit my architecture plans", - "oos" - ], - [ - "who is the best architecture", - "oos" - ], - [ - "please give me a listing of all the bottled water brands in the area", - "oos" - ], - [ - "what are the lowest prices of bottled water at costco", - "oos" - ], - [ - "how do they filter pollutants out of bottled water", - "oos" - ], - [ - "what's the cost of bottled water", - "oos" - ], - [ - "what's the cost to have a business card printed", - "oos" - ], - [ - "when can i get a business card printed locally", - "oos" - ], - [ - "what to use to design my business cards", - "oos" - ], - [ - "download all the photos off my phone into the cloud", - "oos" - ], - [ - "tell me about that kind of cameras", - "oos" - ], - [ - "how much is the new nikon camera", - "oos" - ], - [ - "what kind of camera should i buy", - "oos" - ], - [ - "how much candy have i consumed this week", - "oos" - ], - [ - "how many flavors of mnm's are there", - "oos" - ], - [ - "who makes milky way bars", - "oos" - ], - [ - "how safe is it to consume the substance h2o", - "oos" - ], - [ - "how many elements are on the periodic table", - "oos" - ], - [ - "what's the chemical composition of a fart", - "oos" - ], - [ - "what is phosphorus on the periodic table", - "oos" - ], - [ - "look up some christmas songs for me", - "oos" - ], - [ - "is espn covering the golden state warriors game", - "oos" - ], - [ - "how many calories does doing 20 situps burn", - "oos" - ], - [ - "what is a normal resting heart rate", - "oos" - ], - [ - "should i run every day", - "oos" - ], - [ - "how many months do i left in my hbo subscription", - "oos" - ], - [ - "when does game of thrones return on hbo", - "oos" - ], - [ - "cancel my subscription to scientific american", - "oos" - ], - [ - "i'd like to renew my subscription to playboy", - "oos" - ], - [ - "what are popular lifestyle magazines", - "oos" - ], - [ - "what are popular sports magazines", - "oos" - ], - [ - "how can i use make up to cover a cut on my cheek", - "oos" - ], - [ - "what's the best make-up to cover a black eye", - "oos" - ], - [ - "send me videos of how to do a smoky eye", - "oos" - ], - [ - "whats the best rated lipstick", - "oos" - ], - [ - "when will the government file another antitrust suit against microsoft", - "oos" - ], - [ - "when will microsoft drop support for windows 7", - "oos" - ], - [ - "how do i make a sentence have stylized strike out in microsoft word", - "oos" - ], - [ - "how can i control where microsoft word inserts a page break", - "oos" - ], - [ - "what are the current prices for mushrooms", - "oos" - ], - [ - "what bands are touring in my city this week", - "oos" - ], - [ - "i need for you to look up some of the major gods in mythology", - "oos" - ], - [ - "what was the original name of jesus in egyptian myth", - "oos" - ], - [ - "was the god osiris a titan or an old god", - "oos" - ], - [ - "tell me who aphrodite is", - "oos" - ], - [ - "what activities can i to do outside today", - "oos" - ], - [ - "when will the daffodils bloom this year", - "oos" - ], - [ - "what zelda games are available on the switch", - "oos" - ], - [ - "i want to buy some nintendo switch game", - "oos" - ], - [ - "how much does a nintendo switch cost", - "oos" - ], - [ - "show me a cool nintendo switch game", - "oos" - ], - [ - "can you check how many miles i walked today when i was out get the info from my phone", - "oos" - ], - [ - "can you check how many steps i have walked in the last week from my phone app", - "oos" - ], - [ - "what should i do if it hurts when i pee", - "oos" - ], - [ - "what are the symptoms of cancer", - "oos" - ], - [ - "how many pokemon have i caught in my pokemon go app", - "oos" - ], - [ - "tell me what pokemon is", - "oos" - ], - [ - "has the school my kids go to been in the news for any reason", - "oos" - ], - [ - "are there any school closures today", - "oos" - ], - [ - "how long is the school year", - "oos" - ], - [ - "why did a bunch of christians go off murdering muslims in the middle ages", - "oos" - ], - [ - "what was the point of the crusades", - "oos" - ], - [ - "what other countries speak the english language", - "oos" - ], - [ - "why doesn't english have consistent forms", - "oos" - ], - [ - "do they speak english in australia", - "oos" - ], - [ - "who teaches english near me", - "oos" - ], - [ - "can you see what the budget for the united states military was in 2018", - "oos" - ], - [ - "can you look at what the oldest age is someone can enlist in the army", - "oos" - ], - [ - "how many years do you need to be in the army to get a college tuition", - "oos" - ], - [ - "where are most the servicemen right now", - "oos" - ], - [ - "what movies are playing at my local cinemax", - "oos" - ], - [ - "what time is a star is born showing", - "oos" - ], - [ - "what movies are playing", - "oos" - ], - [ - "can you get me the scores from the games that were played last night", - "oos" - ], - [ - "has there been any times when lebron james was arrested", - "oos" - ], - [ - "what are the new player rankings for the nhl", - "oos" - ], - [ - "who won in the gsw vs suns game last night", - "oos" - ], - [ - "give me the news on the newspaper today", - "oos" - ], - [ - "tell me a list of my local papers", - "oos" - ], - [ - "what's the newspaper today", - "oos" - ], - [ - "would you let me know who won the gold metal in gymnastics at the olympics", - "oos" - ], - [ - "at the olympics, what country won the gold medal in basketball", - "oos" - ], - [ - "where will the next olympics be hosted", - "oos" - ], - [ - "when are the winter olympic games", - "oos" - ], - [ - "what films are in the running for best song at this year's oscars", - "oos" - ], - [ - "who are the nominees for best picture this year", - "oos" - ], - [ - "give me information on the oscars", - "oos" - ], - [ - "tell me about the oscars", - "oos" - ], - [ - "why did we elect this woman who made amazon leave and take its jobs with it", - "oos" - ], - [ - "how many people live in vermillion", - "oos" - ], - [ - "what's a good way to organize my tools in my garage", - "oos" - ], - [ - "what's the cost of a good pegboard", - "oos" - ], - [ - "is the stop sign around the corner still knocked over", - "oos" - ], - [ - "is there a fork in the road sign at main & 1st avenue", - "oos" - ], - [ - "are there cameras hidden in stop lights", - "oos" - ], - [ - "what does a flashing yellow light mean", - "oos" - ], - [ - "what is the deadline to register at university of georgia", - "oos" - ], - [ - "what universities are nearby to me and highly rated", - "oos" - ], - [ - "what are the top rated universities within my state", - "oos" - ], - [ - "will the anti-vaxxers die off if no one gives them vaccines", - "oos" - ], - [ - "how safe is the herpes vaccine they give women", - "oos" - ], - [ - "where can i get the flu shot", - "oos" - ], - [ - "when do i have to get the mmr", - "oos" - ], - [ - "how much are the clorox detergents", - "oos" - ], - [ - "when will nightwish be touring through my city", - "oos" - ], - [ - "does iron maiden have any new releases", - "oos" - ], - [ - "tell me something about linkin park", - "oos" - ], - [ - "i need you to check the resistance of a coil wrapped 6 times with an id of 25mm", - "oos" - ], - [ - "can you tell me whether the knicks will play the lakers this week", - "oos" - ], - [ - "what do you do if your 4 year old just ate playdoh", - "oos" - ], - [ - "when do the kids get out of school today", - "oos" - ], - [ - "please check up on my son's homework", - "oos" - ], - [ - "give me a list of the top three landscaping companies nearby", - "oos" - ], - [ - "when should you mow your grass after it's rained", - "oos" - ], - [ - "how much sugar was in my urine this morning", - "oos" - ], - [ - "what's a good blouse to wear with pink shoes", - "oos" - ], - [ - "what are the best jeans in my size", - "oos" - ], - [ - "how much does it cost to spay a puppy", - "oos" - ], - [ - "what's the best style shoe to wear to the prom", - "oos" - ], - [ - "can you tell me about that tornado that just tore up alabama", - "oos" - ], - [ - "tell me what the hot topics are that are trending on google", - "oos" - ], - [ - "what happened with the summit between trump and jong", - "oos" - ], - [ - "check and see what the local news in broadcasting", - "oos" - ], - [ - "please uninstall this intrusive social media app", - "oos" - ], - [ - "upload the pictures to the correct album", - "oos" - ], - [ - "i have a super runny nose and want to find a doctor", - "oos" - ], - [ - "which medicine to relieve my cough", - "oos" - ], - [ - "how do i get rid of blocked nose at home", - "oos" - ], - [ - "how do i get rid of sore throat at home", - "oos" - ], - [ - "how can i make my living room appear to be bigger than it is", - "oos" - ], - [ - "i'd like to find some curtains that look good in this room", - "oos" - ], - [ - "how to paint walls", - "oos" - ], - [ - "how to fix walls", - "oos" - ], - [ - "can you tell me the purpose of a safe deposit box", - "oos" - ], - [ - "can you store a gun in a safe deposit box", - "oos" - ], - [ - "how do you get a safe deposit box", - "oos" - ], - [ - "look up how to apply cream to smooth itchiness", - "oos" - ], - [ - "how do i deal with angry, painful red bumps", - "oos" - ], - [ - "where should i go if i hammered a nail through my foot", - "oos" - ], - [ - "how long does it take to call an ambulance", - "oos" - ], - [ - "how to get the right medicine", - "oos" - ], - [ - "how to take care of the sick", - "oos" - ], - [ - "do vegans really want to blame cows for climate change", - "oos" - ], - [ - "give me a recommendation for a local landscaper", - "oos" - ], - [ - "i need to hire a grass treatment specialist", - "oos" - ], - [ - "when is the best time of year for pruning", - "oos" - ], - [ - "find someone local who mows lawns", - "oos" - ], - [ - "create a speech on historical events surrounding albert einstein", - "oos" - ], - [ - "create a pamphlet on albert einsteins childhood", - "oos" - ], - [ - "what is albert einstein famous for", - "oos" - ], - [ - "when was albert einstein born", - "oos" - ], - [ - "when will cameron release the sequel to avatar", - "oos" - ], - [ - "can you please start the avatar movie for me", - "oos" - ], - [ - "is the movie avatar culturally insensitive", - "oos" - ], - [ - "could you create a new avatar for me", - "oos" - ], - [ - "does bill gates still have any material participation in the running of microsoft", - "oos" - ], - [ - "tell me more about bill gates", - "oos" - ], - [ - "give me the weather forecast for today", - "oos" - ], - [ - "what is bitcoin trading for currently", - "oos" - ], - [ - "where can i have a black and white photo blown up to poster size", - "oos" - ], - [ - "adjust the contrast of the black and white photos", - "oos" - ], - [ - "can you colorize a black and white photo", - "oos" - ], - [ - "add color to the black and white photos", - "oos" - ], - [ - "how many people were killed in the boston marathon by bombers", - "oos" - ], - [ - "compile a list of historical events from the boston marathon", - "oos" - ], - [ - "time my next run at the boston marathon", - "oos" - ], - [ - "when will the next boston marathon be", - "oos" - ], - [ - "look up which animal is represented in this year's chinese new year", - "oos" - ], - [ - "what is the animal for this chinese new year", - "oos" - ], - [ - "would it be legal to have battles to the death in a homemade colosseum", - "oos" - ], - [ - "do the romans still use the colosseum for anything today", - "oos" - ], - [ - "where is the colosseum", - "oos" - ], - [ - "can you really time your compressions to queen's \"another one bites the dust\"", - "oos" - ], - [ - "do i have to put my mouth on theirs when doing cpr", - "oos" - ], - [ - "what is the breath to compression ratio for cpr", - "oos" - ], - [ - "tell me how to perform cpr", - "oos" - ], - [ - "create a for-while loop that continues 10 times", - "oos" - ], - [ - "where are classes taught near me for c++", - "oos" - ], - [ - "declare a variable named \"golf\"", - "oos" - ], - [ - "how do i write c++", - "oos" - ], - [ - "is the depiction of gold mining in the movie the ballad of buster scruggs realistic", - "oos" - ], - [ - "do you own the mineral rights to gold nuggets you find in your back yard", - "oos" - ], - [ - "where is the best place to mine for gold", - "oos" - ], - [ - "when was the gold rush", - "oos" - ], - [ - "make a list of facts about green book", - "oos" - ], - [ - "find out when green book was created", - "oos" - ], - [ - "who wrote green book", - "oos" - ], - [ - "what's the main export by the peoples of greenland", - "oos" - ], - [ - "how many people still live on greenland", - "oos" - ], - [ - "scan my photos and tell me which hair style is most suiting for my face", - "oos" - ], - [ - "create several photos of me with different hair styles", - "oos" - ], - [ - "latest hair styles for long natural hair", - "oos" - ], - [ - "show video of hair styling tips", - "oos" - ], - [ - "did a man really die trying to be loved by a horse", - "oos" - ], - [ - "how many acres do you need to buy a horse", - "oos" - ], - [ - "get me a picture of a horse", - "oos" - ], - [ - "does eating poop really help your gut fauna", - "oos" - ], - [ - "is there a vaccine for ebola", - "oos" - ], - [ - "find out how many latin scholars there are at the university of chicago", - "oos" - ], - [ - "make a list of side hustles i could start today to make a little extra cash", - "oos" - ], - [ - "make a list of stocks that would be good to invest in to start making money", - "oos" - ], - [ - "how can i add my signature to the proposed bill legalizing prostitution", - "oos" - ], - [ - "what's the roi doing arbitrage with ebay", - "oos" - ], - [ - "do women still bare their chests for beads at mardi gras", - "oos" - ], - [ - "when's the next mardi gras going to be", - "oos" - ], - [ - "what is the best way to kill microbes", - "oos" - ], - [ - "start a speech on microbes for me", - "oos" - ], - [ - "inform me of what microbes are", - "oos" - ], - [ - "what is the top 10 best modems", - "oos" - ], - [ - "what is the time signature for the castlevania song bloody tears", - "oos" - ], - [ - "can you tell me what key frank zappa's keep it greasy is in", - "oos" - ], - [ - "please go to wikipedia and search for articles related to nsa", - "oos" - ], - [ - "can the nsa crack the encryption on my iphone", - "oos" - ], - [ - "does the nsa listen to me", - "oos" - ], - [ - "could you pull up the nsa website", - "oos" - ], - [ - "can you see if the octopus eggs have hatched yet", - "oos" - ], - [ - "what do you do if your cat eats an octopus", - "oos" - ], - [ - "find out which museum houses the most post modern art in new york state", - "oos" - ], - [ - "look up the top 3 selling post modern artists in the united states", - "oos" - ], - [ - "create a portrait for me using post modern art", - "oos" - ], - [ - "find me examples of post modern art", - "oos" - ], - [ - "find the names of all the rain forests located in south america", - "oos" - ], - [ - "does cutting down the rain forest really add to global warming", - "oos" - ], - [ - "what's the current demand for wood from rain forests", - "oos" - ], - [ - "what's the current prevailing interest rate for mortgages in my area", - "oos" - ], - [ - "how's the real estate market doing this week", - "oos" - ], - [ - "please list my real estate for sale", - "oos" - ], - [ - "make an ad to sell my real estate", - "oos" - ], - [ - "what's the status of robotic servants from japan", - "oos" - ], - [ - "finish the final touches on my newest robotic creation", - "oos" - ], - [ - "can a robot really travel back in time", - "oos" - ], - [ - "program my new robot to bring me snacks", - "oos" - ], - [ - "how long would it take you to die of thirst in the sahara desert", - "oos" - ], - [ - "can a samurai sword deflect a bullet", - "oos" - ], - [ - "how much for a samurai sword", - "oos" - ], - [ - "make a list of what materials have been used for spacesuits", - "oos" - ], - [ - "what size space suit should you get based on your girth", - "oos" - ], - [ - "see if you can purchase a spacesuit online", - "oos" - ], - [ - "compile a folder of paintings of sparta", - "oos" - ], - [ - "display history of sparta", - "oos" - ], - [ - "compile a list of articles pertaining to venture capital funding for me", - "oos" - ], - [ - "start a portfolio on venture capital funding for me to look over", - "oos" - ], - [ - "how do i get venture capital for my app", - "oos" - ], - [ - "what's the latest vc funded company", - "oos" - ], - [ - "i'd like to hire a wedding planner and need help finding one", - "oos" - ], - [ - "how to plan for weddings", - "oos" - ], - [ - "find out how many whales are currently in monterey bay", - "oos" - ], - [ - "make a chart of the different types of whales", - "oos" - ], - [ - "what did my best friend do in the kitchen while we were gone", - "oos" - ], - [ - "what's my boss' home address", - "oos" - ], - [ - "what's it like to have parents who actually love you", - "oos" - ], - [ - "is there any news if my parents survived the crash", - "oos" - ], - [ - "tell me who gives the best motivational speeches on the web", - "oos" - ], - [ - "find an article on celebrities who made it out of poverty", - "oos" - ], - [ - "send me a motivational quote everyday for the next week", - "oos" - ], - [ - "who is the hardest working man in hollywood", - "oos" - ], - [ - "tell me where i can get more information on getting a job at the post office", - "oos" - ], - [ - "pull up the classifieds and read the career section to me", - "oos" - ], - [ - "help me find a new position as a programmer", - "oos" - ], - [ - "what's the best career search website", - "oos" - ], - [ - "write the next chapter of my biography and let me know when you have finished it", - "oos" - ], - [ - "give me a list of the biographies written by nyu professors after 2001", - "oos" - ], - [ - "i would like for you to start a biography on me", - "oos" - ], - [ - "show me all biographies on teddy kennedy", - "oos" - ], - [ - "find out what supplies i am missing and will need on my upcoming camping trip", - "oos" - ], - [ - "what are the camping restrictions at bear island", - "oos" - ], - [ - "find articles that can help me advance my position in my work field", - "oos" - ], - [ - "show me what one should do to get ahead in a tech corporation", - "oos" - ], - [ - "get me a copy of a book on negotiation in the workplace", - "oos" - ], - [ - "look up ways for me to advance my job placement", - "oos" - ], - [ - "see if there is a recipe to make a casserole without any dairy", - "oos" - ], - [ - "tell me in how many different colors i can get dinner plates from pier one imports", - "oos" - ], - [ - "tell me amazon's choice for a set of 4 dinner plates", - "oos" - ], - [ - "find out where i can by melamine dinner plates", - "oos" - ], - [ - "find out what the maximum memory size is that i can buy in a dvd", - "oos" - ], - [ - "tell me who makes the best dvd's for movie storage", - "oos" - ], - [ - "how many dvds do i currently have on file", - "oos" - ], - [ - "give me a listing of all my dvd's", - "oos" - ], - [ - "look up the conversion rate for the euro to dollar exchange", - "oos" - ], - [ - "how do i put a lens that's fallen out back in my glasses", - "oos" - ], - [ - "i need you to order a new pair of eyeglasses for me", - "oos" - ], - [ - "tell me what my current eyeglasses prescription is", - "oos" - ], - [ - "show me examples of cute eyeglass frames", - "oos" - ], - [ - "make a list of all sites in the us where spirits have been seen at night", - "oos" - ], - [ - "tell me how to get rid of a spirit that's haunting me", - "oos" - ], - [ - "show me how to contact a paranormal spirit", - "oos" - ], - [ - "tell me a scary story", - "oos" - ], - [ - "show me the goals of my local police department in terms of reducing crime", - "oos" - ], - [ - "make a list of goals i need to meet in order to write a book", - "oos" - ], - [ - "what is the distance between the goal posts in football", - "oos" - ], - [ - "remind me what my weight loss goals are", - "oos" - ], - [ - "give me a list of tax attorneys that practice in my city", - "oos" - ], - [ - "tell me how i can file a pleading in circuit court", - "oos" - ], - [ - "give me the number of a traffic attorney near here", - "oos" - ], - [ - "what are the top rated local lawyers", - "oos" - ], - [ - "find out how many miles the mississippi waterway runs", - "oos" - ], - [ - "tell me what the longest tributary is in venezuela", - "oos" - ], - [ - "please book another boat for this weekends trip", - "oos" - ], - [ - "get me a list of universities that provide full scholarships in arizona", - "oos" - ], - [ - "tell me where to go to get my son enrolled in public kindergarten", - "oos" - ], - [ - "do a job search on monstercom for jobs in the tech field in arlington, va", - "oos" - ], - [ - "i need to find work, help me connect to a local business through linkedin", - "oos" - ], - [ - "detail a list of possible job openings in the miami public school system", - "oos" - ], - [ - "look for a position similar to mine that is open around my area", - "oos" - ], - [ - "find out where one can get involved in discussing local election issues", - "oos" - ], - [ - "give me a list of the top 5 issues people have in this country", - "oos" - ], - [ - "what is the government department that regulates emissions", - "oos" - ], - [ - "what's the highest rated social services non-profit", - "oos" - ], - [ - "explain to me the process of evaporation", - "oos" - ], - [ - "how do i write an iep for a high schooler", - "oos" - ], - [ - "tell me how to refinish a wooden desk", - "oos" - ], - [ - "tell me how to make a lesson plan", - "oos" - ], - [ - "tell me where i can get the cheapest tennis balls on the internet", - "oos" - ], - [ - "play the current tennis match on the tv in the living room", - "oos" - ], - [ - "give me a list of the top 10 tennis players in the world", - "oos" - ], - [ - "make a chart of all the tennis scores from this year", - "oos" - ], - [ - "find the best prices for toothpaste at any store within a 5 mile radius of my location", - "oos" - ], - [ - "tell me what the best shampoo is for someone with dry scalp", - "oos" - ], - [ - "what's the best price on a gray xl ll bean men's parka", - "oos" - ], - [ - "tell me who has the cheapest watch bands on ebay", - "oos" - ], - [ - "how do i set the time on my tag heuer", - "oos" - ], - [ - "tell me the steps as to how to begin a career as a journalist", - "oos" - ], - [ - "give me prices on a copy of the mla grammar handbook", - "oos" - ], - [ - "put words on the paper about what you want", - "oos" - ], - [ - "put into words what you want", - "oos" - ], - [ - "what kind of foods are border collies allergic to", - "oos" - ], - [ - "find out how i can best clip my dog's nails", - "oos" - ], - [ - "what is the lifespan of a border collie", - "oos" - ], - [ - "look up daily dog kennels in my area", - "oos" - ], - [ - "give me a list of grocery stores that sell japanese sweet potatoes", - "oos" - ], - [ - "tell me the price of bananas at whole foods this week", - "oos" - ], - [ - "call the grocery store and get their operational hours", - "oos" - ], - [ - "call an uber to take me to the closest grocery store", - "oos" - ], - [ - "show me how many community centers are located within 5 miles of my location", - "oos" - ], - [ - "which houses do not have automatic spot lights in front of their garage", - "oos" - ], - [ - "are all the street lamps working on my street", - "oos" - ], - [ - "make a list of all community gardens near me", - "oos" - ], - [ - "tell me where to send my resume in order to get a job at delta airlines", - "oos" - ], - [ - "review my resume for spelling errors", - "oos" - ], - [ - "please print out copies of my resume", - "oos" - ], - [ - "please spell check my resume", - "oos" - ], - [ - "where can i get 100% merino wool t-shirts on the internet", - "oos" - ], - [ - "show me all listings on amazon for leather belts for men", - "oos" - ], - [ - "tell me how many blue ties i own", - "oos" - ], - [ - "who is the start of the movie almost famous", - "oos" - ], - [ - "search up someone who plays in a movie", - "oos" - ], - [ - "search up the cast in the walking dead", - "oos" - ], - [ - "tell me about the amusement park", - "oos" - ], - [ - "what's the amusement park like", - "oos" - ], - [ - "take a ride on the ferris wheel", - "oos" - ], - [ - "go on the ferris wheel", - "oos" - ], - [ - "what is the cost of four double a batteries", - "oos" - ], - [ - "instruct a list of all the brands of cereal manufactured by kelloggs", - "oos" - ], - [ - "compare prices of malt-o-meal to kelloggs", - "oos" - ], - [ - "what kinds of cereal are gluten free", - "oos" - ], - [ - "what kinds of cereal are low sugar", - "oos" - ], - [ - "what is the last time the living room was vacuumed", - "oos" - ], - [ - "search all movies created by disney in the 1980's", - "oos" - ], - [ - "does disney world close when it storms", - "oos" - ], - [ - "mickey mouse is a huge part of disney", - "oos" - ], - [ - "what are the hours for disney world", - "oos" - ], - [ - "what time did i get the last text message i received", - "oos" - ], - [ - "please read me the last text message i received", - "oos" - ], - [ - "read my friend's text message", - "oos" - ], - [ - "watch the stories on instagram", - "oos" - ], - [ - "update my status on instagram", - "oos" - ], - [ - "can you check on what it would cost me to upgrade my iphone with t-mobile", - "oos" - ], - [ - "please alert me when my iphone battery falls below 30%", - "oos" - ], - [ - "can you look at when the next iphone is due out", - "oos" - ], - [ - "what type of industries do innovation managers work in", - "oos" - ], - [ - "what are the requirements of a lab technician", - "oos" - ], - [ - "generate a list of 20 songs that include the word love in the title", - "oos" - ], - [ - "create a 500 word letter expressing love", - "oos" - ], - [ - "find a couple's therapist who can help me and my wife", - "oos" - ], - [ - "what does the average cost of an engagement ring", - "oos" - ], - [ - "what is popular in fashion right now", - "oos" - ], - [ - "does denim go with anything", - "oos" - ], - [ - "accept incoming phone call", - "oos" - ], - [ - "deny incoming phone call", - "oos" - ], - [ - "what do i wear on my feet when it rains", - "oos" - ], - [ - "what do i put on my feet", - "oos" - ], - [ - "what are the words to the chorus for this song", - "oos" - ], - [ - "display the song lyrics for me", - "oos" - ], - [ - "google \"odell beckham free agency\"", - "oos" - ], - [ - "clear my search history", - "oos" - ], - [ - "compare the new life growth in trees when the seasons change", - "oos" - ], - [ - "plant all your flowers just after easter in early april", - "oos" - ], - [ - "find a good toy to give a 5 year old boy that costs less than $40", - "oos" - ], - [ - "find out where i can buy a barbie doll for my niece", - "oos" - ], - [ - "look on amazon for the price of a nitendo switch", - "oos" - ], - [ - "what brand was the last advertisement for", - "oos" - ], - [ - "how do i skip all of the advertisements", - "oos" - ], - [ - "make a list of decor i would need to have a titanic themed birthday party", - "oos" - ], - [ - "aquire the soundtracks from the movie if i stay and add them to my ipod", - "oos" - ], - [ - "i watched \"were the millers\" on netflix last night", - "oos" - ], - [ - "can you find \"were the millers\" on hulu", - "oos" - ], - [ - "how many people have held the role of county attorney bearing the family name \"dixon\"", - "oos" - ], - [ - "tell me about the candidates running for local office in my area", - "oos" - ], - [ - "find out who is the representative of my district", - "oos" - ], - [ - "generate a list of the past 10 judge executives", - "oos" - ], - [ - "look up the email address of the local police", - "oos" - ], - [ - "how many hits have i done today", - "oos" - ], - [ - "change out the older photos with the newer ones", - "oos" - ], - [ - "organize photos by year they were taken", - "oos" - ], - [ - "can you group my photos by location", - "oos" - ], - [ - "organize my photos by date please", - "oos" - ], - [ - "tell me what my local park's policy is on letting dogs off of leashes", - "oos" - ], - [ - "look up the operating hours of my local park on weekends", - "oos" - ], - [ - "how many parks are within 20 miles of me", - "oos" - ], - [ - "check to see if i still have allergy medication", - "oos" - ], - [ - "sign me up for the writing class you told me about 2 days ago", - "oos" - ], - [ - "find articles on essay writing for beginners", - "oos" - ], - [ - "how long should an essay be", - "oos" - ], - [ - "how do you start an essay", - "oos" - ], - [ - "what should you do if your laundry machine is making a high pitched whine", - "oos" - ], - [ - "find out who the best appliance repairman is for the downtown area", - "oos" - ], - [ - "look up local repair shops that work on vacuum cleaners", - "oos" - ], - [ - "can i get a sear's appliance repairman", - "oos" - ], - [ - "find directions to the sunshine car wash from my house", - "oos" - ], - [ - "can you book me an appointment at a car wash", - "oos" - ], - [ - "what brush can i use to wash my car that won't scratch it", - "oos" - ], - [ - "please clean the car windows", - "oos" - ], - [ - "vacuum out the car", - "oos" - ], - [ - "schedule an appointment with the credit counselor for tuesday", - "oos" - ], - [ - "find a credit mentoring service number for me please", - "oos" - ], - [ - "how much does it cost to get two jackets dry cleaned", - "oos" - ], - [ - "look up articles on the green dry cleaning industry", - "oos" - ], - [ - "find a cleaner that specializes in suede", - "oos" - ], - [ - "when should you use a dry cleaner", - "oos" - ], - [ - "create emergency phone numbers list", - "oos" - ], - [ - "do sets of 25 set-ups each morning til you have completed your goal", - "oos" - ], - [ - "keep a note of how many miles you walk a day", - "oos" - ], - [ - "how much weight should i lift to get buff", - "oos" - ], - [ - "what's a good stretch to do to limber up", - "oos" - ], - [ - "look up the most requested famous person for quotes", - "oos" - ], - [ - "what is the most famous quote on the internet", - "oos" - ], - [ - "make a list of the top 100 famous quotes", - "oos" - ], - [ - "show me the top 10 quotes by mark twain", - "oos" - ], - [ - "what do you do if you can't stop vomiting", - "oos" - ], - [ - "what should i take for a cold", - "oos" - ], - [ - "i have too many credit cards, is there any way you can help me organize them", - "oos" - ], - [ - "find a credit counseling service for me on the web", - "oos" - ], - [ - "explain how to reduce my debt burden", - "oos" - ], - [ - "look up the current auto loan rate at chase bank", - "oos" - ], - [ - "look up student loan offers on google", - "oos" - ], - [ - "check current prime mortgage rate", - "oos" - ], - [ - "what should you do if you can't be bothered to get out of bed", - "oos" - ], - [ - "send me a quote from a motivational speaker twice a day", - "oos" - ], - [ - "find me a book on motivational speaking from amazon", - "oos" - ], - [ - "check to see if i need a pass to use the parking garages downtown", - "oos" - ], - [ - "can you check to see which parking garages are open downtown", - "oos" - ], - [ - "how much does it cost to use the parking garage downtown", - "oos" - ], - [ - "what's a good way of backing out of a parking spot", - "oos" - ], - [ - "search the web for monthly parking near my house", - "oos" - ], - [ - "find out where parking is close to the stadium", - "oos" - ], - [ - "how do i get perfect alignment with the curb", - "oos" - ], - [ - "describe to me how i can learn to make small talk", - "oos" - ], - [ - "explain how small talk helps bind groups together", - "oos" - ], - [ - "what do you do all day while i'm at work", - "oos" - ], - [ - "so, hang out around this house often", - "oos" - ], - [ - "tell me the best way to freshen the smell in my car", - "oos" - ], - [ - "where's the closest car wash my car smells", - "oos" - ], - [ - "how much is auto febreeze on amazon", - "oos" - ], - [ - "find out how to deodorize a car", - "oos" - ], - [ - "see if you can find a good vegetable wash for me", - "oos" - ], - [ - "look up website on container gardening", - "oos" - ], - [ - "are we allowed to wash our cars during the drought", - "oos" - ], - [ - "request a refund on the car wax i bought yesterday", - "oos" - ], - [ - "i'd like to hire someone to wash my car", - "oos" - ], - [ - "find out what gentlemen are wearing to weddings these days", - "oos" - ], - [ - "find me articles on appropriate wedding attire", - "oos" - ], - [ - "zip the back of the brides maid dress", - "oos" - ], - [ - "rent the tuxedo the day before", - "oos" - ], - [ - "find available letter writing classes at the local community college", - "oos" - ], - [ - "find me a graphic tutorial on writing longhand", - "oos" - ], - [ - "order me a book of stamps and envelopes", - "oos" - ], - [ - "start listening to me dictate a letter", - "oos" - ], - [ - "email my boss, tell him i wont be in today", - "oos" - ], - [ - "are the schools closed", - "oos" - ], - [ - "let me know what time the patriots game starts", - "oos" - ], - [ - "tell me how long until the nascar race begins", - "oos" - ], - [ - "are there any sales on liquor", - "oos" - ], - [ - "what shows are on tonight", - "oos" - ], - [ - "are there any new job postings in my area in the last hour for jobs on craigslist", - "oos" - ], - [ - "see if there are any employment agencies hiring managers right now", - "oos" - ], - [ - "can you tell me what the best places are to look for a job online", - "oos" - ], - [ - "sign me up for the slack employment forum", - "oos" - ], - [ - "please replay the last five minutes", - "oos" - ], - [ - "can you enable subtitles", - "oos" - ], - [ - "consult the gq website to find what men wear to weddings", - "oos" - ], - [ - "order me a blue pin stripe suit from saville row", - "oos" - ], - [ - "what's in fashion this month", - "oos" - ], - [ - "is it too late to wear white", - "oos" - ], - [ - "how many calories does jumping up and down burn", - "oos" - ], - [ - "how many push-ups do i need to do to get ripped", - "oos" - ], - [ - "fill up my water bottle for the gym", - "oos" - ], - [ - "pick out an excerise outfit for me", - "oos" - ], - [ - "find out how long a cold should last before i call a doctor", - "oos" - ], - [ - "what should i take for nausea", - "oos" - ], - [ - "how do you relieve a hangover", - "oos" - ], - [ - "what is a good home remedy for a rash", - "oos" - ], - [ - "i have a rash, what can i use for it", - "oos" - ], - [ - "can you order some ointment for me", - "oos" - ], - [ - "how do i get rid of an itchy rash", - "oos" - ], - [ - "forward the text i just got from henry to giselle", - "oos" - ], - [ - "please read the text message i just received", - "oos" - ], - [ - "save my text on my laptop hard drive", - "oos" - ], - [ - "what time does my ex-boss leave the office", - "oos" - ], - [ - "how much does gun ammunition cost", - "oos" - ], - [ - "restart my newspaper delivery for monday", - "oos" - ], - [ - "are there any messages", - "oos" - ], - [ - "what's that smell", - "oos" - ], - [ - "get me a list of the best savings account rates right now", - "oos" - ], - [ - "is beer legal in this state", - "oos" - ], - [ - "get me articles and pics of different types of household bugs for this area", - "oos" - ], - [ - "what should i do if i saw a cockroach in my house", - "oos" - ], - [ - "look up articles on squealing brakes for ford f-150's", - "oos" - ], - [ - "please answer the phone and put it on speaker on the tv", - "oos" - ], - [ - "can you tell me who's calling me", - "oos" - ], - [ - "answer the phone", - "oos" - ], - [ - "ignore call", - "oos" - ], - [ - "find out what type of wax is needed for a late model ford sedan", - "oos" - ], - [ - "what's the first thing you should do to wash your car", - "oos" - ], - [ - "what supplies do i need to clean my car", - "oos" - ], - [ - "look up articles on car washing at home", - "oos" - ], - [ - "how old is the oldest person that is in the guiness book of world records", - "oos" - ], - [ - "how could i get into the guiness book of world records", - "oos" - ], - [ - "what person is the heaviest ever recorded", - "oos" - ], - [ - "who has the longest hair ever", - "oos" - ], - [ - "can you look at what average reviews say about the new windows phone on amazon for me", - "oos" - ], - [ - "tell me a summary of reviews that oakley frogskins get on amazon", - "oos" - ], - [ - "make me a list of the top ten reviewed hiking boots on jetcom", - "oos" - ], - [ - "show me a tabulation of reviews for lcd tv's on amazon", - "oos" - ], - [ - "can you tell me what happened to han solo in episode 4", - "oos" - ], - [ - "how many movies are in the star wars series", - "oos" - ], - [ - "how many star wars movies are there", - "oos" - ], - [ - "who plays han solo", - "oos" - ], - [ - "which movie is it that someone says perfectly balanced as all things should be", - "oos" - ], - [ - "what movie is the line today is our independence day from", - "oos" - ], - [ - "what movie is it that says today is a good day to die", - "oos" - ], - [ - "what movie does it's just a flesh wound come from", - "oos" - ], - [ - "is michonne wrong for not working with the kingdom to put on the fair", - "oos" - ], - [ - "which actors have played more than 1 comic book character", - "oos" - ], - [ - "what marvel movie did mark ruffalo first appear in", - "oos" - ], - [ - "why did negan return to his jail cell", - "oos" - ], - [ - "is there more than one occult that a person can join", - "oos" - ], - [ - "can i summon a demon using just an ouija board", - "oos" - ], - [ - "what's the best way to drown a witch", - "oos" - ], - [ - "what does it mean to join the occult", - "oos" - ], - [ - "did madison really bathe in the potomac naked", - "oos" - ], - [ - "can you explain a good risk strategy to me", - "oos" - ], - [ - "what are the rules for chess", - "oos" - ], - [ - "fill out the paperwork for tonys new daycare center", - "oos" - ], - [ - "i need to find a new babysitter", - "oos" - ], - [ - "get me a list of divorce attorneys in the new york area", - "oos" - ], - [ - "how long does it take to get a divorce finalized", - "oos" - ], - [ - "where can i find the best divorce lawyer", - "oos" - ], - [ - "make me a map of all earthquake hotspots in the continental us", - "oos" - ], - [ - "how much damage did the last earthquake here do", - "oos" - ], - [ - "what was the latest tremor on the richter scale", - "oos" - ], - [ - "get me articles on earthquake preparedness", - "oos" - ], - [ - "what is appropriate to spend on a bouquet of flowers for mother's day", - "oos" - ], - [ - "get me a list of personal conservation tips that i can use around the house", - "oos" - ], - [ - "look up the average temperature changes over the last 30 years for my area", - "oos" - ], - [ - "is the polar vortex of 2019 apart of global warming", - "oos" - ], - [ - "what is global warming", - "oos" - ], - [ - "can you book me a tee time at cantigny at 2 pm on saturday", - "oos" - ], - [ - "what's the best golf club to use on the lower nine", - "oos" - ], - [ - "how do i stop my child from setting small animals on fire for amusement", - "oos" - ], - [ - "review chapter 6 with my son and verify his math homework answers", - "oos" - ], - [ - "can you look up how i shoot a time lapse video on my iphone camera or is it even possible", - "oos" - ], - [ - "how do i turn up the resolution that i am taking pictures in on my camera phone", - "oos" - ], - [ - "print out the photos i took today", - "oos" - ], - [ - "can you find me sheet music for the beatles white album online", - "oos" - ], - [ - "find me a good band instructor or two to compare in my area", - "oos" - ], - [ - "can i get a starter course for the trumpet", - "oos" - ], - [ - "how many keys does a xylophone have", - "oos" - ], - [ - "how many polar bears are still alive in the arctic", - "oos" - ], - [ - "are polar bears on the endangered species list", - "oos" - ], - [ - "what is the life expectancy of a polar bear", - "oos" - ], - [ - "can a polar bear live in alabama", - "oos" - ], - [ - "when will george rr martin publish the next game of thrones book", - "oos" - ], - [ - "show me the new york times most popular book list for this week", - "oos" - ], - [ - "how many books are in piers anthony virtual mode series", - "oos" - ], - [ - "order the new book titled \"ghost work\"", - "oos" - ], - [ - "please check if god is really living in a small apartment in brussels", - "oos" - ], - [ - "what did the mesopotamians call the creator of the universe", - "oos" - ], - [ - "put on an educational program about buddhism", - "oos" - ], - [ - "what happens if you're skydiving and your parachute doesn't open", - "oos" - ], - [ - "research how many deaths has resulted from skydiving", - "oos" - ], - [ - "how many people die each year while skydiving", - "oos" - ], - [ - "google the price of skydiving in florida", - "oos" - ], - [ - "in what movie did mrs congeniality feature a contestant championing for world peace", - "oos" - ], - [ - "has there ever been total world peace, where no nations in the world are at war", - "oos" - ], - [ - "name the leader from tibet that stands firm for world peace", - "oos" - ], - [ - "what will it take to achieve world peace", - "oos" - ], - [ - "was einstein right to be scared of spooky action at a distance", - "oos" - ], - [ - "what is the nature of the big bang theory", - "oos" - ], - [ - "how does the etheric body operate", - "oos" - ], - [ - "do we actually have a soul", - "oos" - ], - [ - "where can i find cheap rental skis nearby", - "oos" - ], - [ - "check the nanny cam and send the feed to my phone", - "oos" - ], - [ - "how much should i tip on this bill", - "oos" - ], - [ - "send me live feed of the pre-game prediction show on my phone", - "oos" - ], - [ - "what are the scores of other teams in this division", - "oos" - ], - [ - "look up pitcher stats on jake rooney", - "oos" - ], - [ - "what teams are playing right now", - "oos" - ], - [ - "is it too late to upgrade to first class", - "oos" - ], - [ - "according to my fitness tracker, how many push ups have i done today", - "oos" - ], - [ - "renew gym membership", - "oos" - ], - [ - "what's my budget for today's shopping trip", - "oos" - ], - [ - "can you find my car in the parking lot", - "oos" - ], - [ - "what's the best hand to have in texas hold em", - "oos" - ], - [ - "is gambling legal in my state", - "oos" - ], - [ - "fold my hand", - "oos" - ], - [ - "what time did i put in my first load of laundry", - "oos" - ], - [ - "how much time is left on my laundry", - "oos" - ], - [ - "report outage to my electric provider", - "oos" - ], - [ - "power up my generator", - "oos" - ], - [ - "call up instructables website and find article on bike assembly", - "oos" - ], - [ - "find schematics for ikea desk assembly", - "oos" - ], - [ - "search information on how to apply foundation", - "oos" - ], - [ - "find instructions on how to play taboo", - "oos" - ], - [ - "what casino game has the best odds", - "oos" - ], - [ - "tell me how much energy i have consumed so far this year", - "oos" - ], - [ - "give me an energy usage breakdown for march", - "oos" - ], - [ - "how many kilowatts have i used this month", - "oos" - ], - [ - "what's my current electric bill", - "oos" - ], - [ - "can you locate the television remote", - "oos" - ], - [ - "where did i last place my remote", - "oos" - ], - [ - "do you know where the remote is", - "oos" - ], - [ - "have you seen the remote", - "oos" - ], - [ - "please ping the rfid in my wallet and tell me where it's at right now", - "oos" - ], - [ - "can you detect where i placed my wallet", - "oos" - ], - [ - "give me my wallet location", - "oos" - ], - [ - "find my wallet", - "oos" - ], - [ - "can you give me the gps location of harvey", - "oos" - ], - [ - "where's my buddy steve right this second", - "oos" - ], - [ - "locate jenny at her present position", - "oos" - ], - [ - "let me know where jim is right now", - "oos" - ] - ], - "test": [ - [ - "how would you say fly in italian", - "translate" - ], - [ - "what's the spanish word for pasta", - "translate" - ], - [ - "how would they say butter in zambia", - "translate" - ], - [ - "how do you say fast in spanish", - "translate" - ], - [ - "what's the word for trees in norway", - "translate" - ], - [ - "how does one say wonderful in german", - "translate" - ], - [ - "how do they say tacos in mexico", - "translate" - ], - [ - "how would one say cruiser in china", - "translate" - ], - [ - "what's the french word you use for potato", - "translate" - ], - [ - "what would the word for grass be in finland", - "translate" - ], - [ - "how do you say please in french", - "translate" - ], - [ - "how would i say nice to meet you if i were russian", - "translate" - ], - [ - "what is the right way to say excuse me in spanish", - "translate" - ], - [ - "how do i say i'm sorry in chinese", - "translate" - ], - [ - "how would i say thank you if i were mexican", - "translate" - ], - [ - "how would i say what is your name if i were french", - "translate" - ], - [ - "how would i say i must be going now if i were german", - "translate" - ], - [ - "how do i say bathroom in italian", - "translate" - ], - [ - "how might i say hello if i were scottish", - "translate" - ], - [ - "i must know how to say thank you in german", - "translate" - ], - [ - "how would i say i love you if i were german", - "translate" - ], - [ - "how would i say how are you today if i were mexican", - "translate" - ], - [ - "how would i say where is the bathroom if i were korean", - "translate" - ], - [ - "how would i say i need directions if i were french", - "translate" - ], - [ - "how would i say i am lost if i were japanese", - "translate" - ], - [ - "english to spanish for dog", - "translate" - ], - [ - "what is dog in spanish", - "translate" - ], - [ - "how do you say dog in spanish", - "translate" - ], - [ - "dog in spanish", - "translate" - ], - [ - "what's the spanish word for dog", - "translate" - ], - [ - "can you please provide me with assistance in moving money from one account to another", - "transfer" - ], - [ - "i would like help moving money between accounts", - "transfer" - ], - [ - "can you assist me in moving money from one account to another", - "transfer" - ], - [ - "i would like help moving money from one account to another", - "transfer" - ], - [ - "i would like assistance moving money from one account to another", - "transfer" - ], - [ - "can i move some money around", - "transfer" - ], - [ - "can i make a transfer between my accounts", - "transfer" - ], - [ - "i need to make a transfer of my money", - "transfer" - ], - [ - "can i move some money between my two accounts", - "transfer" - ], - [ - "i would like to distribute some money between my accounts", - "transfer" - ], - [ - "i would like to transfer $100 from my checking to saving account", - "transfer" - ], - [ - "help me transfer $100 from my checking to saving account", - "transfer" - ], - [ - "transfer $100 from my checking to saving account", - "transfer" - ], - [ - "can you please help me move $100 from my checking to saving account", - "transfer" - ], - [ - "please move $100 from my checking to saving account", - "transfer" - ], - [ - "transfer seventeen dollars from rbs to woodforest account, please", - "transfer" - ], - [ - "send twelve dollars between cabelas and bank of london accounts, please", - "transfer" - ], - [ - "transfer ninety dollars between glacier checking and farmers accounts, please", - "transfer" - ], - [ - "transfer seventy dollars between national and citizens accounts", - "transfer" - ], - [ - "transfer four and sixty seven dollars from bank of oklahoma checking to security bank account", - "transfer" - ], - [ - "how much money can i transfer today", - "transfer" - ], - [ - "add funds to the retirement account from the pnc account only", - "transfer" - ], - [ - "would you move 100 dollars from the checking and put it into savings", - "transfer" - ], - [ - "repeat what the weather will be like", - "transfer" - ], - [ - "i would like to put 100 dollars from the checking into the savings account now", - "transfer" - ], - [ - "please transfer $5000 to money market from checking account", - "transfer" - ], - [ - "i need $360 transfered from savings to checking account", - "transfer" - ], - [ - "make an immediate transfer of ten thousand from money market to checking", - "transfer" - ], - [ - "i'd like to transfer $400 from household to savings account", - "transfer" - ], - [ - "transer $800 from my checking to savings account", - "transfer" - ], - [ - "set a 4 minute timer", - "timer" - ], - [ - "set a 2 minute timer", - "timer" - ], - [ - "set a 3 minute timer", - "timer" - ], - [ - "set a 5 minute timer", - "timer" - ], - [ - "set a 1 minute timer", - "timer" - ], - [ - "who set up the numbers for it", - "timer" - ], - [ - "start the timer", - "timer" - ], - [ - "start a timer please", - "timer" - ], - [ - "i need to start a timer", - "timer" - ], - [ - "i need a timer to be set", - "timer" - ], - [ - "could you set a timer", - "timer" - ], - [ - "set a timer", - "timer" - ], - [ - "i need to have a timer for 10 minutes", - "timer" - ], - [ - "make a 10 minute timer", - "timer" - ], - [ - "give me a 10 minute timer", - "timer" - ], - [ - "will you create a timer for me", - "timer" - ], - [ - "please begin a timer", - "timer" - ], - [ - "is it possible to set a timer", - "timer" - ], - [ - "i want a timer set for 10 minutes", - "timer" - ], - [ - "set a timer for 10 minutes", - "timer" - ], - [ - "can i get a timer set", - "timer" - ], - [ - "i need to use a timer", - "timer" - ], - [ - "set a timer to go off in 1 hour", - "timer" - ], - [ - "i need a timer for 45 minutes", - "timer" - ], - [ - "in 15 minutes the timer should go off", - "timer" - ], - [ - "start the timer now", - "timer" - ], - [ - "set a timer for 30 minutes", - "timer" - ], - [ - "set a timer for 5 minutes from now", - "timer" - ], - [ - "let me know when it's been 5 minutes", - "timer" - ], - [ - "can you set the timer to 20 minutes", - "timer" - ], - [ - "define antebellum", - "definition" - ], - [ - "define discontent", - "definition" - ], - [ - "what is the meaning of incandescent", - "definition" - ], - [ - "what does confrontation mean", - "definition" - ], - [ - "what does serendipity mean", - "definition" - ], - [ - "what's the definition of luminescent", - "definition" - ], - [ - "what is the definiton of auspicious", - "definition" - ], - [ - "what does circuitous mean", - "definition" - ], - [ - "what's the definition of unencumbered", - "definition" - ], - [ - "what does adulation mean", - "definition" - ], - [ - "what does assiduous mean", - "definition" - ], - [ - "what does amicable mean", - "definition" - ], - [ - "what's the definition of remunerative", - "definition" - ], - [ - "what does anachronistic mean", - "definition" - ], - [ - "what's the definition of idiosyncratic", - "definition" - ], - [ - "what does yolo mean", - "definition" - ], - [ - "can you tell me the meaning of fluctuate", - "definition" - ], - [ - "what does the word polynomial mean", - "definition" - ], - [ - "what does ferrari mean", - "definition" - ], - [ - "what is the meaning of the word girn", - "definition" - ], - [ - "what does mature mean", - "definition" - ], - [ - "i'd like to know what bitcoin means", - "definition" - ], - [ - "i heard some woman say she was going to yerd me, what's that mean", - "definition" - ], - [ - "can you tell me what obsolescence means", - "definition" - ], - [ - "please explain the word catastrophic to me", - "definition" - ], - [ - "what's the meaning of naff", - "definition" - ], - [ - "can you tell me what dendrofilous means", - "definition" - ], - [ - "what does peer-to-peer actually mean", - "definition" - ], - [ - "define epicurean", - "definition" - ], - [ - "what does epicurean mean", - "definition" - ], - [ - "would you let me know what the meaning is life is", - "meaning_of_life" - ], - [ - "would you let me know what is the point of life", - "meaning_of_life" - ], - [ - "right now, i need to know the meaning of life", - "meaning_of_life" - ], - [ - "define the meaning of life for me", - "meaning_of_life" - ], - [ - "i want to know the meaning of life", - "meaning_of_life" - ], - [ - "would you explain the meaning of life", - "meaning_of_life" - ], - [ - "i need you to tell me the meaning of life", - "meaning_of_life" - ], - [ - "i need to know what the meaning of life is now", - "meaning_of_life" - ], - [ - "tell me what the meaning of life is", - "meaning_of_life" - ], - [ - "i need to know what the point of life is", - "meaning_of_life" - ], - [ - "let me know what the point of life is", - "meaning_of_life" - ], - [ - "would you provide me with what the point of life is", - "meaning_of_life" - ], - [ - "tell me what the point of life is", - "meaning_of_life" - ], - [ - "what is the reason humans even exist", - "meaning_of_life" - ], - [ - "do you think our lives have purpose or meaning", - "meaning_of_life" - ], - [ - "can you tell me about the meaning of life", - "meaning_of_life" - ], - [ - "can you tell me what the meaning of life is", - "meaning_of_life" - ], - [ - "what do you know about the meaning of life", - "meaning_of_life" - ], - [ - "i would like information on the meaning of life", - "meaning_of_life" - ], - [ - "what information can you give me on the meaning of life", - "meaning_of_life" - ], - [ - "what is the core meaning of life", - "meaning_of_life" - ], - [ - "what do you know about lifes meaning", - "meaning_of_life" - ], - [ - "is there any consensun regarding lifes true meaning", - "meaning_of_life" - ], - [ - "is there a reason beyond biology about why humans are alive", - "meaning_of_life" - ], - [ - "do you think being alive has any meaning", - "meaning_of_life" - ], - [ - "is there meaning to life", - "meaning_of_life" - ], - [ - "is there meaning in life", - "meaning_of_life" - ], - [ - "what is the answer to life", - "meaning_of_life" - ], - [ - "what's the answer to it all", - "meaning_of_life" - ], - [ - "what's life mean to you", - "meaning_of_life" - ], - [ - "i would like to change my insurance policy", - "insurance_change" - ], - [ - "can i edit my insurance policy", - "insurance_change" - ], - [ - "i am interested in a new insurance plan", - "insurance_change" - ], - [ - "i really would like to get a new insurance plan", - "insurance_change" - ], - [ - "i am in the market for a new insurance plan", - "insurance_change" - ], - [ - "is there a way to alter my insurance policy", - "insurance_change" - ], - [ - "how can i change to new insurance plan", - "insurance_change" - ], - [ - "help me find a new insurance plan", - "insurance_change" - ], - [ - "can i update my insurance policy", - "insurance_change" - ], - [ - "who do i contact about updating my insurance", - "insurance_change" - ], - [ - "can you help me change my insurance policy", - "insurance_change" - ], - [ - "i need to change my insurance policy, do you know how", - "insurance_change" - ], - [ - "what are the steps to change my insurance policy", - "insurance_change" - ], - [ - "do you know how i can change my insurance policy", - "insurance_change" - ], - [ - "how to i change the policy on my insurace", - "insurance_change" - ], - [ - "what do i need to do to get new insurance", - "insurance_change" - ], - [ - "do you know how i get new insurance", - "insurance_change" - ], - [ - "what is the protocol for getting new insurance", - "insurance_change" - ], - [ - "let me know the process for new insurance", - "insurance_change" - ], - [ - "i want to sign up for a new allstate insurance plan", - "insurance_change" - ], - [ - "i need to sign up for a new allstate plan", - "insurance_change" - ], - [ - "what is the procedure for signing up for a new allstate plan", - "insurance_change" - ], - [ - "how do i sign up for a new allstatedplan", - "insurance_change" - ], - [ - "i want to change to a new allstate insurance plan", - "insurance_change" - ], - [ - "i want a new insurance plan", - "insurance_change" - ], - [ - "what if i want to switch insurance plans", - "insurance_change" - ], - [ - "is there a way to get a new insurance plan", - "insurance_change" - ], - [ - "i want to switch to a new insurance plan", - "insurance_change" - ], - [ - "how do i switch insurance plans", - "insurance_change" - ], - [ - "phone number to state farm to change insurance", - "insurance_change" - ], - [ - "can you help me find my phone, please", - "find_phone" - ], - [ - "could you help me locate my phone", - "find_phone" - ], - [ - "can you help me locate my phone", - "find_phone" - ], - [ - "could you help me locate my phone, please", - "find_phone" - ], - [ - "can you help me locate my phone, please", - "find_phone" - ], - [ - "i cannot locate my phone, can you help me", - "find_phone" - ], - [ - "i need help locating my phone", - "find_phone" - ], - [ - "can you assist me with finding my phone", - "find_phone" - ], - [ - "i lost my phone can you help me", - "find_phone" - ], - [ - "where the bleep did i put my bleeping phone", - "find_phone" - ], - [ - "is my phone somewhere around here", - "find_phone" - ], - [ - "help, i've lost my cellphone!", - "find_phone" - ], - [ - "i seem to have lost my phone", - "find_phone" - ], - [ - "do you know my phone's location", - "find_phone" - ], - [ - "can you find my phone", - "find_phone" - ], - [ - "where's my phone at", - "find_phone" - ], - [ - "what's my phone's location", - "find_phone" - ], - [ - "can you help me hunt for my missing cellphone", - "find_phone" - ], - [ - "locate my cellphone in this room", - "find_phone" - ], - [ - "where did i last put my phone", - "find_phone" - ], - [ - "find my cellphone for me!", - "find_phone" - ], - [ - "where did i place my phone", - "find_phone" - ], - [ - "where's my phone", - "find_phone" - ], - [ - "my phone isn't where i left it", - "find_phone" - ], - [ - "i think i've misplaced my phone", - "find_phone" - ], - [ - "i've lost my phone somewhere", - "find_phone" - ], - [ - "i think i lost my phone", - "find_phone" - ], - [ - "would you know where to find my phone", - "find_phone" - ], - [ - "please assist me in looking for my phone", - "find_phone" - ], - [ - "look for my phone with me", - "find_phone" - ], - [ - "is there a travel alert in spain", - "travel_alert" - ], - [ - "travel alert in cuba", - "travel_alert" - ], - [ - "alerts for travel in colombia", - "travel_alert" - ], - [ - "are there travel alerts in mexico", - "travel_alert" - ], - [ - "mexico travel alerts", - "travel_alert" - ], - [ - "have there been any travel alerts for the us", - "travel_alert" - ], - [ - "are there any travel advisories for the us", - "travel_alert" - ], - [ - "what are the travel alerts for the us", - "travel_alert" - ], - [ - "are there travel alerts for the us", - "travel_alert" - ], - [ - "what travel alerts are in effect for the us", - "travel_alert" - ], - [ - "i want to know if i will be safe if i travel to europe", - "travel_alert" - ], - [ - "would i be safe if i traveled to japan", - "travel_alert" - ], - [ - "is it safe to go to north korea", - "travel_alert" - ], - [ - "will i be safe going to south america", - "travel_alert" - ], - [ - "am i safe to go to africa", - "travel_alert" - ], - [ - "which countries have travel alerts", - "travel_alert" - ], - [ - "is it safe in italy", - "travel_alert" - ], - [ - "what are the travel conditions for haiti", - "travel_alert" - ], - [ - "are there any travel bulletins about haiti", - "travel_alert" - ], - [ - "note any travel alerts for haiti", - "travel_alert" - ], - [ - "find travel alerts for haiti", - "travel_alert" - ], - [ - "does the state department say anything about traveling to haiti", - "travel_alert" - ], - [ - "is there a travel alert for france", - "travel_alert" - ], - [ - "is it safe for me to go to turkey", - "travel_alert" - ], - [ - "is it safe to go to serbia", - "travel_alert" - ], - [ - "safety concerns for malaysia", - "travel_alert" - ], - [ - "is it safe for me to visit malawi", - "travel_alert" - ], - [ - "is travel to monterrey safe now", - "travel_alert" - ], - [ - "is it safe for people to travel to pakistan", - "travel_alert" - ], - [ - "can people safely travel to cambodia", - "travel_alert" - ], - [ - "please help me set up a vacation request", - "pto_request" - ], - [ - "how does one go about putting in a vacation request", - "pto_request" - ], - [ - "how do i put in a vacation request", - "pto_request" - ], - [ - "walk me through on how to make a vacation request", - "pto_request" - ], - [ - "please put in a vacation request", - "pto_request" - ], - [ - "how is a vacation request done", - "pto_request" - ], - [ - "how is a vacation request made", - "pto_request" - ], - [ - "what is the process of making a vacation request", - "pto_request" - ], - [ - "how would one make a vacation request", - "pto_request" - ], - [ - "can i put in a pto request for september 1st to september 8th", - "pto_request" - ], - [ - "if i want to make a vacation request, how do i do it", - "pto_request" - ], - [ - "can i put in a pto request for august 1st to august 10th", - "pto_request" - ], - [ - "can i put in a pto request for january 4th to january 9th", - "pto_request" - ], - [ - "can i put in a pto request for december 3rd to december 10th", - "pto_request" - ], - [ - "can i put in a pto request for december 25th to january 1st", - "pto_request" - ], - [ - "can i take pto from the end of the month to the 5th of the next month", - "pto_request" - ], - [ - "can you help me plan a vacation", - "pto_request" - ], - [ - "it it possible to take pto from the 8th to the 11th", - "pto_request" - ], - [ - "is it ok if i use some of my pto on may 24th to may 29th", - "pto_request" - ], - [ - "what do i do to set up a vacation", - "pto_request" - ], - [ - "i need to use pto on october 5th to october 10th", - "pto_request" - ], - [ - "how do i plan a vacation", - "pto_request" - ], - [ - "can i put in a pto request for monday to wednesday", - "pto_request" - ], - [ - "can i purchase a vacation using this", - "pto_request" - ], - [ - "how do i get help with a vacation itinerary", - "pto_request" - ], - [ - "how do i request a vacation", - "pto_request" - ], - [ - "i'd like to request a vacation", - "pto_request" - ], - [ - "i need to request a vacation", - "pto_request" - ], - [ - "vacation request information", - "pto_request" - ], - [ - "vacation request please", - "pto_request" - ], - [ - "how can i increase my credit score", - "improve_credit_score" - ], - [ - "how can i raise my credit score", - "improve_credit_score" - ], - [ - "how can i contribute to my credit score", - "improve_credit_score" - ], - [ - "how is it possible to get a better credit score", - "improve_credit_score" - ], - [ - "how can i up my credit score", - "improve_credit_score" - ], - [ - "can you explain to me how i might boost my credit score", - "improve_credit_score" - ], - [ - "my credit score stinks but i don't know how to improve it", - "improve_credit_score" - ], - [ - "what preventative measures can i take to avoid a low credit score", - "improve_credit_score" - ], - [ - "how can i keep my credit score from falling", - "improve_credit_score" - ], - [ - "give me some ideas for boosting my credit score", - "improve_credit_score" - ], - [ - "how can i prevent my credit score from dropping", - "improve_credit_score" - ], - [ - "what steps can i take to build my credit score", - "improve_credit_score" - ], - [ - "give me some tips on building up my credit score", - "improve_credit_score" - ], - [ - "how can i rehabilitate my poor credit score", - "improve_credit_score" - ], - [ - "give me some ideas of how to avoid my credit score lowering", - "improve_credit_score" - ], - [ - "give me tips on improving my credit score", - "improve_credit_score" - ], - [ - "what steps should i take if i want to ensure my credit score doesn't drop", - "improve_credit_score" - ], - [ - "can you tell me some strategies for raising my credit score", - "improve_credit_score" - ], - [ - "i want to know how i can build up a good credit score", - "improve_credit_score" - ], - [ - "\"what's the method to improve credit score", - "improve_credit_score" - ], - [ - "\"which is the best way to improve the credit score", - "improve_credit_score" - ], - [ - "\"which could be improve the credit score", - "improve_credit_score" - ], - [ - "\"when the credit score improve", - "improve_credit_score" - ], - [ - "\"where is improve the credit score", - "improve_credit_score" - ], - [ - "it is damaging to my credit score if i miss one credit card payment", - "improve_credit_score" - ], - [ - "i have a revolving store card and defaulted so will my fico score be affected", - "improve_credit_score" - ], - [ - "will my fico score decrease if i increase my student loan debt", - "improve_credit_score" - ], - [ - "if i lose my job will my credit score go down", - "improve_credit_score" - ], - [ - "can i hurt my credit rating if i open several credit cards in a short time frame", - "improve_credit_score" - ], - [ - "will only having five late payments really make my credit bad", - "improve_credit_score" - ], - [ - "name unusual facts about the circus", - "fun_fact" - ], - [ - "i need interesting baseball trivia from the nineteen eighties", - "fun_fact" - ], - [ - "tell me a fun fact about cars", - "fun_fact" - ], - [ - "give me a fun fact about kangaroo", - "fun_fact" - ], - [ - "give me a fun fact about koala", - "fun_fact" - ], - [ - "give me a fun fact about dolphin", - "fun_fact" - ], - [ - "what is some trivia about frog", - "fun_fact" - ], - [ - "tell me fun facts of today", - "fun_fact" - ], - [ - "give me something interesting about stars", - "fun_fact" - ], - [ - "what is some trivia question about coffee", - "fun_fact" - ], - [ - "tell me some trivia about sweat", - "fun_fact" - ], - [ - "tell me some trivia about dolphin", - "fun_fact" - ], - [ - "what is some trivia about the weather", - "fun_fact" - ], - [ - "give me a fun fact about komodo dragon", - "fun_fact" - ], - [ - "give me a amusing fact about wolf", - "fun_fact" - ], - [ - "what is the interesting trivia about human bodies", - "fun_fact" - ], - [ - "i want to learn something about apples", - "fun_fact" - ], - [ - "tell me today's fun fact", - "fun_fact" - ], - [ - "i want today's fun fact please", - "fun_fact" - ], - [ - "what is today's fun fact", - "fun_fact" - ], - [ - "today's fun fact", - "fun_fact" - ], - [ - "i want a fun fact about london", - "fun_fact" - ], - [ - "tell me something interesting about bees", - "fun_fact" - ], - [ - "i would you like to learn something interesting about bees", - "fun_fact" - ], - [ - "i want to hear cool bee facts", - "fun_fact" - ], - [ - "what's something interesting about bees", - "fun_fact" - ], - [ - "i wanna hear something cool about bees", - "fun_fact" - ], - [ - "tell me fun facts on science topics", - "fun_fact" - ], - [ - "tell me fun science facts", - "fun_fact" - ], - [ - "i want to know fun facts about koala bears", - "fun_fact" - ], - [ - "please speak in tagalog", - "change_language" - ], - [ - "speak in german", - "change_language" - ], - [ - "speak to me in dutch", - "change_language" - ], - [ - "speak in french please", - "change_language" - ], - [ - "speak spanish please", - "change_language" - ], - [ - "i am not understanding the language you are responding in; switch it for me", - "change_language" - ], - [ - "i can't understand the language you are responding in; i need you to switch it", - "change_language" - ], - [ - "i need you to switch the language you are responding as i don't understand", - "change_language" - ], - [ - "i don't understand your language; switch the language", - "change_language" - ], - [ - "i need you to switch the language you are responding in", - "change_language" - ], - [ - "i'd like to speak in portuguese", - "change_language" - ], - [ - "can we speak in german", - "change_language" - ], - [ - "i want to use spanish with you", - "change_language" - ], - [ - "please let's speak in spanish", - "change_language" - ], - [ - "please can we speak in dutch", - "change_language" - ], - [ - "can you make the default language swedish", - "change_language" - ], - [ - "is it possible to talk to you in mandarin", - "change_language" - ], - [ - "would you understand me if i speak to you in navajo", - "change_language" - ], - [ - "i'd like the language to be in spanish", - "change_language" - ], - [ - "i'd like to use you using russian", - "change_language" - ], - [ - "can i speak spanish to you hombre", - "change_language" - ], - [ - "i want to start talking to you in swedish", - "change_language" - ], - [ - "can i get you to change your language setting to russian", - "change_language" - ], - [ - "please make your language setting norwegian", - "change_language" - ], - [ - "i am going to speak english now", - "change_language" - ], - [ - "do you speak english", - "change_language" - ], - [ - "i want to talk english", - "change_language" - ], - [ - "we have to speak in english", - "change_language" - ], - [ - "speak in dutch", - "change_language" - ], - [ - "i want to speak to you in swiss german", - "change_language" - ], - [ - "how long until my paycheck shows up", - "payday" - ], - [ - "can you tell me the date of my last check", - "payday" - ], - [ - "what was the date when i last go paid", - "payday" - ], - [ - "what's the date on my last pay stub", - "payday" - ], - [ - "when can i expect my paycheck", - "payday" - ], - [ - "when is the next time i'll receive a paycheck", - "payday" - ], - [ - "when did i last collect my salary", - "payday" - ], - [ - "when do i next get paid", - "payday" - ], - [ - "when is my paycheck arriving", - "payday" - ], - [ - "what day is payday", - "payday" - ], - [ - "do you know when my next check is coming", - "payday" - ], - [ - "when do i get my next paycheck", - "payday" - ], - [ - "when's pay day for me", - "payday" - ], - [ - "i need to know when i get paid next", - "payday" - ], - [ - "when's my next pay day", - "payday" - ], - [ - "what day's my pay coming next", - "payday" - ], - [ - "when do i get paid for my work", - "payday" - ], - [ - "look up when my payday is supposed to be", - "payday" - ], - [ - "when can i expect to be paid", - "payday" - ], - [ - "look up the date for my next payday", - "payday" - ], - [ - "what day will i earn my payment from work", - "payday" - ], - [ - "find out when my next upcoming payday will be", - "payday" - ], - [ - "when is the next payday i can look forward to", - "payday" - ], - [ - "what day can i expect to receive payment on", - "payday" - ], - [ - "when will my next paycheck be coming", - "payday" - ], - [ - "when will my payment be deposited", - "payday" - ], - [ - "when do i get my next pay check", - "payday" - ], - [ - "is it payday", - "payday" - ], - [ - "do you know when i'll receive my next paycheck", - "payday" - ], - [ - "what date do i get paid", - "payday" - ], - [ - "how long does it take for a credit card to be reissued and mailed to me", - "replacement_card_duration" - ], - [ - "can credit card companies expedite delivery of reissued credit cards", - "replacement_card_duration" - ], - [ - "can you call the help desk line for my credit card company", - "replacement_card_duration" - ], - [ - "how can i request a new credit card", - "replacement_card_duration" - ], - [ - "what's the phone number for my credit card company", - "replacement_card_duration" - ], - [ - "i recently lost my credit card and need to know how long it takes to get a new one mailed to me", - "replacement_card_duration" - ], - [ - "i need to know the time it takes to get a new credit card sent to someone who lost theirs", - "replacement_card_duration" - ], - [ - "i lost my credit card recently how long does take to get a new one in the mail", - "replacement_card_duration" - ], - [ - "what is amount of time it takes to get a new credit card i lost mine recently", - "replacement_card_duration" - ], - [ - "what is the time frame for sending a customer who lost their credit card a new one", - "replacement_card_duration" - ], - [ - "will i get getting my new card anytime soon", - "replacement_card_duration" - ], - [ - "what is the shipping status of my replacement card", - "replacement_card_duration" - ], - [ - "how long until i get my replacement card", - "replacement_card_duration" - ], - [ - "when is my new card expected to arrive", - "replacement_card_duration" - ], - [ - "is my replacement card due to arrive in the mail today", - "replacement_card_duration" - ], - [ - "how long before my new card is mailed to me", - "replacement_card_duration" - ], - [ - "what is the shipping time for my card", - "replacement_card_duration" - ], - [ - "how much time before my new card is mailed to me", - "replacement_card_duration" - ], - [ - "how long does it take to get a new credit card", - "replacement_card_duration" - ], - [ - "time to order and receive a new credit card", - "replacement_card_duration" - ], - [ - "when will i received a replacement card", - "replacement_card_duration" - ], - [ - "time to replace my credit card", - "replacement_card_duration" - ], - [ - "how long before the replacement card is mailed to me", - "replacement_card_duration" - ], - [ - "how much longer before the card is mailed to me", - "replacement_card_duration" - ], - [ - "how long will it takes to get a new credit card", - "replacement_card_duration" - ], - [ - "what is the shipping wait for my card", - "replacement_card_duration" - ], - [ - "when will the replaecment card arrive", - "replacement_card_duration" - ], - [ - "let me know the wait on a replacement credit card", - "replacement_card_duration" - ], - [ - "let me know when the replacement card will arrive", - "replacement_card_duration" - ], - [ - "how soon can i expect a replacement card for my lost card to arrive", - "replacement_card_duration" - ], - [ - "i need you to tell me what time it is in new york now", - "time" - ], - [ - "what time is it in adelaide, australia right now", - "time" - ], - [ - "is it after noon", - "time" - ], - [ - "is it six o clock yet", - "time" - ], - [ - "please give me the time in tanzania at this moment", - "time" - ], - [ - "can you tell me the current time in jamaica", - "time" - ], - [ - "tell me the time in san francisco, please", - "time" - ], - [ - "what time is it right now in adelaide, australia", - "time" - ], - [ - "what time is it in the eastern timezone", - "time" - ], - [ - "what time is it in the mountain timezone", - "time" - ], - [ - "what time is it in the greenwich timezone", - "time" - ], - [ - "what time is it in the central timezone", - "time" - ], - [ - "tell me what the time is in dallas", - "time" - ], - [ - "what is the current time in dallas", - "time" - ], - [ - "can you tell me what time it is in dallas", - "time" - ], - [ - "what time is it in dallas", - "time" - ], - [ - "tell time for another city: dallas", - "time" - ], - [ - "what time is it right now at home", - "time" - ], - [ - "what\u2019s the time in new york", - "time" - ], - [ - "tell me the time in california", - "time" - ], - [ - "tell me the time in las vegas", - "time" - ], - [ - "what is the time is central time zone", - "time" - ], - [ - "what is the time in the usa", - "time" - ], - [ - "what is the time in est", - "time" - ], - [ - "whats the exact time", - "time" - ], - [ - "what is the current time", - "time" - ], - [ - "what's the current time", - "time" - ], - [ - "what time is it in california", - "time" - ], - [ - "please give me the time", - "time" - ], - [ - "the time is what", - "time" - ], - [ - "how is the status of my credit card application coming along", - "application_status" - ], - [ - "what exactly is the status of my application for the credit card", - "application_status" - ], - [ - "i need to know the status of my credit card application", - "application_status" - ], - [ - "i would like to know the status of my credit card application", - "application_status" - ], - [ - "let me know if my application for american saving bank", - "application_status" - ], - [ - "check the status of my credit card application for me", - "application_status" - ], - [ - "i want to know if my credit card application has been processed", - "application_status" - ], - [ - "i want to know the status of my credit card application", - "application_status" - ], - [ - "can you check if my credit card application has been processed", - "application_status" - ], - [ - "i want to know how is my credit card application going", - "application_status" - ], - [ - "can you let me know the status of my discover credit card application status", - "application_status" - ], - [ - "can you tell me the status of my credit card application", - "application_status" - ], - [ - "has my application for american express gone through yet", - "application_status" - ], - [ - "let me know about the status of my credit card application", - "application_status" - ], - [ - "can you please tell me about the status of my credit card application", - "application_status" - ], - [ - "can you please let me know the status of my capital one application", - "application_status" - ], - [ - "let me know the credit card application status", - "application_status" - ], - [ - "has my application for discover card gone through yet", - "application_status" - ], - [ - "can you tell me the credit card application status", - "application_status" - ], - [ - "has my application for the hsbc card been approved yet", - "application_status" - ], - [ - "please tell me if my application for the hsbc card has gone through yet", - "application_status" - ], - [ - "how far has my application for the hsbc card gone till now", - "application_status" - ], - [ - "what's the status on my application for the hsbc credit card", - "application_status" - ], - [ - "how far has my application for the hsbc card proceeded till now", - "application_status" - ], - [ - "did the application for my visa card finish", - "application_status" - ], - [ - "has my mastercard application gone through the process", - "application_status" - ], - [ - "has my mastercard application gone through yet", - "application_status" - ], - [ - "has my application for my visa card gone through", - "application_status" - ], - [ - "has my mastercard application been processed", - "application_status" - ], - [ - "when will i know if my visa card application was approved", - "application_status" - ], - [ - "what's the status of by delta flight", - "flight_status" - ], - [ - "what's the status of my virgin airlines flight", - "flight_status" - ], - [ - "what's the status of my jetblue flight", - "flight_status" - ], - [ - "what's the status of my southwest flight", - "flight_status" - ], - [ - "what's the status of my american airlines flight", - "flight_status" - ], - [ - "what's the news with my delta flight", - "flight_status" - ], - [ - "where is my delta flight", - "flight_status" - ], - [ - "what can you tell me about flight dl123", - "flight_status" - ], - [ - "where is flight dl123", - "flight_status" - ], - [ - "has flight dl123 left", - "flight_status" - ], - [ - "is flight dl123 going to arrive on time", - "flight_status" - ], - [ - "is my spirit flight running on time", - "flight_status" - ], - [ - "what's the status for my delta flight this afternoon", - "flight_status" - ], - [ - "give me the status on my united airlines flight", - "flight_status" - ], - [ - "what's up with my american airline flight will it be on time", - "flight_status" - ], - [ - "tell me what the status is for my aa flight", - "flight_status" - ], - [ - "i need for you to get me the status of my american airlines flight", - "flight_status" - ], - [ - "tell me the status of my american airlines flight", - "flight_status" - ], - [ - "i need to know the status of my american airlines flight", - "flight_status" - ], - [ - "would you let me know the status of my american airlines flight", - "flight_status" - ], - [ - "let me know the status of my american airlines flight", - "flight_status" - ], - [ - "has flight dl123 landed", - "flight_status" - ], - [ - "is my flight, dl123 on time", - "flight_status" - ], - [ - "how far out is flight dl123", - "flight_status" - ], - [ - "is flight dl123 delayed", - "flight_status" - ], - [ - "what time is boarding scheduled", - "flight_status" - ], - [ - "when is boarding scheduled", - "flight_status" - ], - [ - "what time is boarding for my flight", - "flight_status" - ], - [ - "when is boarding scheduled for my flight", - "flight_status" - ], - [ - "when is my flight scheduled to board", - "flight_status" - ], - [ - "flip a coin for me and i call heads", - "flip_coin" - ], - [ - "can you flip a coin for me", - "flip_coin" - ], - [ - "give me the results of a coin flip", - "flip_coin" - ], - [ - "please flip a coin for me", - "flip_coin" - ], - [ - "please flip a coin for me ai", - "flip_coin" - ], - [ - "flip a coin and tell me if it's heads", - "flip_coin" - ], - [ - "ai, flip a coin for me", - "flip_coin" - ], - [ - "ai, please flip a simulated coin", - "flip_coin" - ], - [ - "let's flip a coin i choose heads", - "flip_coin" - ], - [ - "can you please do a simulated coin flip for me ai", - "flip_coin" - ], - [ - "flip a coin i choose heads", - "flip_coin" - ], - [ - "flip a coin i'm calling heads", - "flip_coin" - ], - [ - "can you do a coin flip for me ai", - "flip_coin" - ], - [ - "i want you to flip a coin i choose heads", - "flip_coin" - ], - [ - "just toss a coin", - "flip_coin" - ], - [ - "just flip a coin", - "flip_coin" - ], - [ - "throw a coin in the air", - "flip_coin" - ], - [ - "flip a coin into the air", - "flip_coin" - ], - [ - "heads, coin flip", - "flip_coin" - ], - [ - "flip coin, heads!", - "flip_coin" - ], - [ - "flip a coin, i call heads!", - "flip_coin" - ], - [ - "coin flip, choose heads", - "flip_coin" - ], - [ - "please flip a coin, i choose heads!", - "flip_coin" - ], - [ - "can you flip a coin i call heads", - "flip_coin" - ], - [ - "flip a coin, i'm heads", - "flip_coin" - ], - [ - "flip a coin, heads", - "flip_coin" - ], - [ - "flip us a coin, i call heads", - "flip_coin" - ], - [ - "flip a coin, you're tails and i'm heads", - "flip_coin" - ], - [ - "give me a coin toss result", - "flip_coin" - ], - [ - "flip the coin, i choose heads", - "flip_coin" - ], - [ - "bob is my name now", - "change_user_name" - ], - [ - "please start calling me bob", - "change_user_name" - ], - [ - "change my name to bob", - "change_user_name" - ], - [ - "call me bob from now on", - "change_user_name" - ], - [ - "don't call me bill anymore - call me bob", - "change_user_name" - ], - [ - "i want you to call me bailey", - "change_user_name" - ], - [ - "don't call me anything besides bailey", - "change_user_name" - ], - [ - "refer to me as bailey", - "change_user_name" - ], - [ - "address me as \"bailey", - "change_user_name" - ], - [ - "please call me bailey", - "change_user_name" - ], - [ - "can you call me a different name", - "change_user_name" - ], - [ - "could you call me a different name", - "change_user_name" - ], - [ - "could you call me a different name, please", - "change_user_name" - ], - [ - "could you call me by a different name, please", - "change_user_name" - ], - [ - "can you call me a different name, please", - "change_user_name" - ], - [ - "ai, my name is deb please use my name when you talk to me", - "change_user_name" - ], - [ - "ai answer my questions with my name first which is deb", - "change_user_name" - ], - [ - "ai, refer to me as deb when answering me", - "change_user_name" - ], - [ - "ai, address me as deb when speaking to me", - "change_user_name" - ], - [ - "ai, call me deb", - "change_user_name" - ], - [ - "change my name please", - "change_user_name" - ], - [ - "please go ahead and change my name", - "change_user_name" - ], - [ - "please switch my name", - "change_user_name" - ], - [ - "change name for me", - "change_user_name" - ], - [ - "my name is going to be sherlock", - "change_user_name" - ], - [ - "start calling me jake from now on", - "change_user_name" - ], - [ - "call me shane", - "change_user_name" - ], - [ - "i want you to call me sheldon", - "change_user_name" - ], - [ - "i want to be called timothy", - "change_user_name" - ], - [ - "call me mike from now on", - "change_user_name" - ], - [ - "where are you coming from", - "where_are_you_from" - ], - [ - "from where do you come", - "where_are_you_from" - ], - [ - "what place are you from", - "where_are_you_from" - ], - [ - "where are you from originally", - "where_are_you_from" - ], - [ - "so, where do you come from", - "where_are_you_from" - ], - [ - "so where do you come from originally", - "where_are_you_from" - ], - [ - "where do you call home", - "where_are_you_from" - ], - [ - "what's your home country", - "where_are_you_from" - ], - [ - "where did you live before you moved here", - "where_are_you_from" - ], - [ - "are you from here or somewhere else originally", - "where_are_you_from" - ], - [ - "tell me where you're from", - "where_are_you_from" - ], - [ - "what area did you come from", - "where_are_you_from" - ], - [ - "what is your origin", - "where_are_you_from" - ], - [ - "where was it you were born", - "where_are_you_from" - ], - [ - "the place you were born is", - "where_are_you_from" - ], - [ - "what location were you born", - "where_are_you_from" - ], - [ - "where were you put together", - "where_are_you_from" - ], - [ - "where is your home planet", - "where_are_you_from" - ], - [ - "where is your home town", - "where_are_you_from" - ], - [ - "where were you thought of", - "where_are_you_from" - ], - [ - "where do you originate from", - "where_are_you_from" - ], - [ - "where have you come from", - "where_are_you_from" - ], - [ - "where were you before", - "where_are_you_from" - ], - [ - "where were you processed", - "where_are_you_from" - ], - [ - "a hidden government facility", - "where_are_you_from" - ], - [ - "what region were you born", - "where_are_you_from" - ], - [ - "from where did you originate", - "where_are_you_from" - ], - [ - "are you from around here", - "where_are_you_from" - ], - [ - "in what place are you originally from", - "where_are_you_from" - ], - [ - "where did you grow up", - "where_are_you_from" - ], - [ - "tack on a gallon of milk to the grocery list", - "shopping_list_update" - ], - [ - "add laundry detergent to the list", - "shopping_list_update" - ], - [ - "make sure to put eggs on the grocery list", - "shopping_list_update" - ], - [ - "the list should also have 2 loaves of bread", - "shopping_list_update" - ], - [ - "include asparagus on the list", - "shopping_list_update" - ], - [ - "remove milk and add eggs to my shopping list", - "shopping_list_update" - ], - [ - "put milk on my shopping list", - "shopping_list_update" - ], - [ - "i'd like to add pancake mix to my shopping list if it's not already there", - "shopping_list_update" - ], - [ - "if soda isn't on my shopping list, go ahead and add it for me", - "shopping_list_update" - ], - [ - "add milk to my shopping list", - "shopping_list_update" - ], - [ - "take toilet paper off my shopping list", - "shopping_list_update" - ], - [ - "i need to add flour to my list for shopping if i haven't already", - "shopping_list_update" - ], - [ - "take toilet paper off my shopping list and add paper towels", - "shopping_list_update" - ], - [ - "i need hot dogs added to my shopping list please", - "shopping_list_update" - ], - [ - "please put chips on my shopping list", - "shopping_list_update" - ], - [ - "is milk in my shopping list if not, add it", - "shopping_list_update" - ], - [ - "can you add eggs to my shopping list", - "shopping_list_update" - ], - [ - "add eggs to my shopping list if it's not already there", - "shopping_list_update" - ], - [ - "i'd like to get soda while i'm out; add it to my shopping list", - "shopping_list_update" - ], - [ - "on my shopping list, remove eggs", - "shopping_list_update" - ], - [ - "i need eggs; add them to my shopping list", - "shopping_list_update" - ], - [ - "take soda from my shopping list, and while you're at it add tea", - "shopping_list_update" - ], - [ - "milk should be added to my shopping list", - "shopping_list_update" - ], - [ - "i don't need eggs anymore, but i do need milk", - "shopping_list_update" - ], - [ - "take paper towels off of my shopping list", - "shopping_list_update" - ], - [ - "i need milk on my shopping list", - "shopping_list_update" - ], - [ - "i don't need toilet paper anymore; take it off my shopping list", - "shopping_list_update" - ], - [ - "throw eggs on my shopping list, please", - "shopping_list_update" - ], - [ - "i need water on my shopping list and beer off of it", - "shopping_list_update" - ], - [ - "i need bananas on the list too", - "shopping_list_update" - ], - [ - "can you tell me what you can help with", - "what_can_i_ask_you" - ], - [ - "what things are you able to help me with", - "what_can_i_ask_you" - ], - [ - "i would like to know what you can help with", - "what_can_i_ask_you" - ], - [ - "what kind of things can you help with", - "what_can_i_ask_you" - ], - [ - "i want to know what type of things you can help me with", - "what_can_i_ask_you" - ], - [ - "please help me to know what type of things you can help me with", - "what_can_i_ask_you" - ], - [ - "can i know what type of things you can help me with", - "what_can_i_ask_you" - ], - [ - "i would like to know what type of things you can help me with", - "what_can_i_ask_you" - ], - [ - "i will be glad to know what type of things you can help me with", - "what_can_i_ask_you" - ], - [ - "what subjects do you like", - "what_can_i_ask_you" - ], - [ - "tell me what subjects you like", - "what_can_i_ask_you" - ], - [ - "please tell me what subjects you like", - "what_can_i_ask_you" - ], - [ - "so what subjects do you like", - "what_can_i_ask_you" - ], - [ - "what type of questions can i ask you", - "what_can_i_ask_you" - ], - [ - "what kinds of things are you familiar with", - "what_can_i_ask_you" - ], - [ - "what subjects are you experienced in", - "what_can_i_ask_you" - ], - [ - "what knowledge do you have on certain subjects", - "what_can_i_ask_you" - ], - [ - "what kid of subjects do you excel in", - "what_can_i_ask_you" - ], - [ - "what subjects or areas are you familiar with", - "what_can_i_ask_you" - ], - [ - "which subjects are you the most experienced with", - "what_can_i_ask_you" - ], - [ - "tell me what you can do for me", - "what_can_i_ask_you" - ], - [ - "what sorts of tasks can you do", - "what_can_i_ask_you" - ], - [ - "what can you do for me", - "what_can_i_ask_you" - ], - [ - "what can you do to make yourself useful", - "what_can_i_ask_you" - ], - [ - "what would you be able to do with me", - "what_can_i_ask_you" - ], - [ - "give me examples of what to ask you", - "what_can_i_ask_you" - ], - [ - "tell me what types of questions i can ask you", - "what_can_i_ask_you" - ], - [ - "what are you programmed to do for me", - "what_can_i_ask_you" - ], - [ - "what things do you know how to do", - "what_can_i_ask_you" - ], - [ - "how can you help me", - "what_can_i_ask_you" - ], - [ - "undecided", - "maybe" - ], - [ - "i'm afraid i don't know how to answer that", - "maybe" - ], - [ - "might", - "maybe" - ], - [ - "it might go either way", - "maybe" - ], - [ - "both could be", - "maybe" - ], - [ - "either or", - "maybe" - ], - [ - "my answer would be maybe", - "maybe" - ], - [ - "either one might be", - "maybe" - ], - [ - "i can't say for certain either way", - "maybe" - ], - [ - "it could go either way", - "maybe" - ], - [ - "it's definitely a maybe for that", - "maybe" - ], - [ - "i am not sure", - "maybe" - ], - [ - "maybe it is", - "maybe" - ], - [ - "i can't say", - "maybe" - ], - [ - "could be", - "maybe" - ], - [ - "i am unable to say", - "maybe" - ], - [ - "i am not able to say", - "maybe" - ], - [ - "i am really not sure", - "maybe" - ], - [ - "i do not know", - "maybe" - ], - [ - "not sure", - "maybe" - ], - [ - "not sure to be honest", - "maybe" - ], - [ - "i think maybe", - "maybe" - ], - [ - "um, i'm not quite sure", - "maybe" - ], - [ - "um, i'm not totally sure", - "maybe" - ], - [ - "um, i'm not actually sure", - "maybe" - ], - [ - "i'm not actually sure", - "maybe" - ], - [ - "um, i'm not sure", - "maybe" - ], - [ - "that might be the case", - "maybe" - ], - [ - "i'm not completely certain", - "maybe" - ], - [ - "unsure", - "maybe" - ], - [ - "help me change my oil", - "oil_change_how" - ], - [ - "what oil should i use for an oil change and how do i do it", - "oil_change_how" - ], - [ - "how do i do an oil change", - "oil_change_how" - ], - [ - "diy oil change", - "oil_change_how" - ], - [ - "how to do an oil change", - "oil_change_how" - ], - [ - "give me instructions for an oil change", - "oil_change_how" - ], - [ - "diy oil change and oil type", - "oil_change_how" - ], - [ - "oil type and do it yourself oil change information please", - "oil_change_how" - ], - [ - "i want to know how to change my oil", - "oil_change_how" - ], - [ - "can you tell me how to change my oil and what kind i use", - "oil_change_how" - ], - [ - "how to change oil and what oil type", - "oil_change_how" - ], - [ - "can you please instruct me on the proper way to change the oil in my car", - "oil_change_how" - ], - [ - "i need guidance on changing my oil", - "oil_change_how" - ], - [ - "i want a step by step explanation of how to change the oil in my car", - "oil_change_how" - ], - [ - "can you teach me how to change my oil", - "oil_change_how" - ], - [ - "can you teach me how to change my oil in my car", - "oil_change_how" - ], - [ - "help me figure out how to change my oil", - "oil_change_how" - ], - [ - "walk me through the steps involved in changing my oil", - "oil_change_how" - ], - [ - "give me step by step instructions for changing my oil", - "oil_change_how" - ], - [ - "i want to change the oil in my car but i do not know how to do it can you help", - "oil_change_how" - ], - [ - "put together a list of instructions for me on how to change the oil in my car", - "oil_change_how" - ], - [ - "is it possible to change oil, if so how and what do i use", - "oil_change_how" - ], - [ - "what oil do i use when changing oil and how do i do it", - "oil_change_how" - ], - [ - "how would i replace my oil and what sort of oil should i use", - "oil_change_how" - ], - [ - "can you change the oil, with what and how", - "oil_change_how" - ], - [ - "how could i replace my oil and what form of oil ought to i take advantage of", - "oil_change_how" - ], - [ - "can you tell me how to change my oil please", - "oil_change_how" - ], - [ - "how do i change my oil", - "oil_change_how" - ], - [ - "please let me know how to change the oil", - "oil_change_how" - ], - [ - "i need to know how to change oil in a car", - "oil_change_how" - ], - [ - "i'd like to make a reservation at rooth chris, can you do that", - "restaurant_reservation" - ], - [ - "make a reservation for chik-fil-a at 3 o' clock please", - "restaurant_reservation" - ], - [ - "reserve a table for 3 at 7 for olive garden", - "restaurant_reservation" - ], - [ - "will you reserve a table at olive garden for 3 people at 7", - "restaurant_reservation" - ], - [ - "at 7, i need a table for 3 at olive garden", - "restaurant_reservation" - ], - [ - "i need a table for 3 at olive garden for 7", - "restaurant_reservation" - ], - [ - "get a table for me at 7 for 3 people at olive garden", - "restaurant_reservation" - ], - [ - "reserve table for 5 at red robin under the name sara at 3", - "restaurant_reservation" - ], - [ - "reverse a table for 5 at burger king under the name sara at 6", - "restaurant_reservation" - ], - [ - "can you reserve a table for 6 at red robin under the name mavrick at 5 clock", - "restaurant_reservation" - ], - [ - "could you reserve table for 3 at carlos jr under the name adam at 4", - "restaurant_reservation" - ], - [ - "i want to reserve table for 5 at red robin under the name sara at 5", - "restaurant_reservation" - ], - [ - "i need a table for two at the havana at nine", - "restaurant_reservation" - ], - [ - "look for me a table at carl's cabin for twelve at eight", - "restaurant_reservation" - ], - [ - "i need a table at gemma for nine at two", - "restaurant_reservation" - ], - [ - "book me a table for three at rainforest cafe at seven", - "restaurant_reservation" - ], - [ - "get me a table for five at itta bena at three", - "restaurant_reservation" - ], - [ - "5 people are going to be at tropicana by 8pm, reserve the table under martins name please", - "restaurant_reservation" - ], - [ - "use martins name to reserve a table at tropicana for 5 people at 8pm", - "restaurant_reservation" - ], - [ - "reserve a table at tropicana for 5 people under the name martins for 8pm", - "restaurant_reservation" - ], - [ - "martins needs a table for 5 people at tropicana at 8pm precisely", - "restaurant_reservation" - ], - [ - "the table should be reserved at 8pm at tropicana using martins name and it should be for 5 people", - "restaurant_reservation" - ], - [ - "are there any open reservations at outback tonight", - "restaurant_reservation" - ], - [ - "make a reservation for 2 tonight at 7:00 at outback steakhouse", - "restaurant_reservation" - ], - [ - "michael will reserve a table for two at 7:00pm for olive garden", - "restaurant_reservation" - ], - [ - "a table for two needs to be reserved for 7:00pm at olive garden using the name michael", - "restaurant_reservation" - ], - [ - "please reserve a table for two at olive garden at 7:00pm for michael", - "restaurant_reservation" - ], - [ - "get reservations at olive garden for two at 7:00pm under michael", - "restaurant_reservation" - ], - [ - "reservations for two need to be made using michael's name for 7:00pm at olive garden", - "restaurant_reservation" - ], - [ - "i want to eat at seven in the restaurant for two people", - "restaurant_reservation" - ], - [ - "what are my coffers at", - "balance" - ], - [ - "tell me the current balance of my bank accounts", - "balance" - ], - [ - "what's my current bank account total", - "balance" - ], - [ - "how much do i have in my bank accounts", - "balance" - ], - [ - "what's the balance in my bank accounts", - "balance" - ], - [ - "what do i have in my bank accounts right now", - "balance" - ], - [ - "is there enough in my wells fargo account to buy some nike's", - "balance" - ], - [ - "do i have enough in my wells fargo account to get some nike's", - "balance" - ], - [ - "do i have money in my wells fargo account for nike's", - "balance" - ], - [ - "i want some nike's, is there enough in my wells fargo account", - "balance" - ], - [ - "check my wells fargo account to see if i have enough for these nike's", - "balance" - ], - [ - "would you tell me my bank balance", - "balance" - ], - [ - "can you tell me my bank balance", - "balance" - ], - [ - "will you let me know my bank balance", - "balance" - ], - [ - "will you tell me my bank balance", - "balance" - ], - [ - "how much money is there in my bank accounts", - "balance" - ], - [ - "how much money do i have in my various bank accounts", - "balance" - ], - [ - "how much cash do i have in my various bank accounts", - "balance" - ], - [ - "how much cash do i have in my bank accounts", - "balance" - ], - [ - "how much dough do i have in my bank accounts", - "balance" - ], - [ - "whats the combined total of the money inside my bank accounts", - "balance" - ], - [ - "whats my bank accounts look like", - "balance" - ], - [ - "how much moola is in my bank accounts", - "balance" - ], - [ - "what the numerical number inside my bank accounts", - "balance" - ], - [ - "how much does my bank account have", - "balance" - ], - [ - "tell me the current account balance", - "balance" - ], - [ - "check my checking balance", - "balance" - ], - [ - "how much do i have left in my checking account", - "balance" - ], - [ - "what's my checking look like", - "balance" - ], - [ - "how much do i have in my savings account", - "balance" - ], - [ - "confirm my reservation for march 12 at 9:00 am", - "confirm_reservation" - ], - [ - "please confirm that i have a reservation for march 1st at 7", - "confirm_reservation" - ], - [ - "can you confirm that i have a reservation for february 21 at 6 o'clock", - "confirm_reservation" - ], - [ - "verify my reservation for smith and wollensky at 6:45", - "confirm_reservation" - ], - [ - "please confirm my reservation for bar les freres at 7", - "confirm_reservation" - ], - [ - "tell me whether or not i have a reservation at gramercy tavern for tad", - "confirm_reservation" - ], - [ - "can you confirm that i have a reservation for 2/20 at 6:00 pm", - "confirm_reservation" - ], - [ - "please tell me if i still have a reservation at acero for susie", - "confirm_reservation" - ], - [ - "please confirm my reservation at brio for theodore", - "confirm_reservation" - ], - [ - "confirm my reservation for acero at 7", - "confirm_reservation" - ], - [ - "please confirm that i have a reservation for 2/20 at 6:00 pm", - "confirm_reservation" - ], - [ - "confirm that there is a reservation at bellagio for thomas", - "confirm_reservation" - ], - [ - "can you confirm the reservation at fleming's for jane", - "confirm_reservation" - ], - [ - "are there reservation for joe and will", - "confirm_reservation" - ], - [ - "please verify my reservation for john at bardenay", - "confirm_reservation" - ], - [ - "will you call and check on my reservation for john at bardenay", - "confirm_reservation" - ], - [ - "is my reservation set for john at bardenay", - "confirm_reservation" - ], - [ - "do we know if my reservation for john at bardenay was accepted", - "confirm_reservation" - ], - [ - "has my reservation for john at bardenay been confirmed", - "confirm_reservation" - ], - [ - "let's try and confirm my reservation for bubble bar under \"franklin", - "confirm_reservation" - ], - [ - "i need to confirm my reservation for red lobster for frank", - "confirm_reservation" - ], - [ - "find my reservation for steve at crucere's and confirm it, please", - "confirm_reservation" - ], - [ - "confirm the john reservation at applebee's", - "confirm_reservation" - ], - [ - "i'd like to confirm the josh reservation at moe's", - "confirm_reservation" - ], - [ - "i have a reservation for strip house for jennifer that i'd like to confirm", - "confirm_reservation" - ], - [ - "please try to confirm my reservation for jim at barney's", - "confirm_reservation" - ], - [ - "confirm my reservation for joe at hoss's", - "confirm_reservation" - ], - [ - "i need to confirm the reservation for frank at chili's", - "confirm_reservation" - ], - [ - "i'll be confirming my reservation for joseph at red lobster", - "confirm_reservation" - ], - [ - "is there a reservation for mark at mimis", - "confirm_reservation" - ], - [ - "can you freeze my bank account", - "freeze_account" - ], - [ - "i want to freeze my bank account", - "freeze_account" - ], - [ - "i want my account locked out", - "freeze_account" - ], - [ - "stop all access to my account", - "freeze_account" - ], - [ - "i need my account frozen!", - "freeze_account" - ], - [ - "i need to lock my account right now!", - "freeze_account" - ], - [ - "please force my account to freeze", - "freeze_account" - ], - [ - "please stop my account", - "freeze_account" - ], - [ - "please allow my account to freeze", - "freeze_account" - ], - [ - "please put my account on hold", - "freeze_account" - ], - [ - "freeze my account at the bank immediately", - "freeze_account" - ], - [ - "would you be able to freeze my bank account", - "freeze_account" - ], - [ - "my account at the bank needs to be frozen", - "freeze_account" - ], - [ - "please block my discover account immediately", - "freeze_account" - ], - [ - "please put a block on my citi account immediately", - "freeze_account" - ], - [ - "block my american saving bank for now", - "freeze_account" - ], - [ - "block my bank of america immdediately", - "freeze_account" - ], - [ - "put a block on bank of amerian immediately", - "freeze_account" - ], - [ - "my account needs to be frozen", - "freeze_account" - ], - [ - "freeze my account for me", - "freeze_account" - ], - [ - "put a freeze on my account", - "freeze_account" - ], - [ - "could you please put a stop on my bank account", - "freeze_account" - ], - [ - "i need to put a stop on my bank account", - "freeze_account" - ], - [ - "are you able to put a stop on my bank account", - "freeze_account" - ], - [ - "please put a stop on my bank account", - "freeze_account" - ], - [ - "i am hoping you can put a stop on my bank account", - "freeze_account" - ], - [ - "please put a freeze on my banking account", - "freeze_account" - ], - [ - "i need my bank account frozen", - "freeze_account" - ], - [ - "how do i freeze my bank account", - "freeze_account" - ], - [ - "would you freeze my bank account", - "freeze_account" - ], - [ - "i heard i can transfer my 401k, but don't know how, do you", - "rollover_401k" - ], - [ - "i need some help with transferring my 401k, can you help", - "rollover_401k" - ], - [ - "can you tell me how to transfer my 401k", - "rollover_401k" - ], - [ - "i want to transfer my 401k", - "rollover_401k" - ], - [ - "i wanna transfer my 401k", - "rollover_401k" - ], - [ - "i have to rollover my 401k", - "rollover_401k" - ], - [ - "i must rollover my 401k", - "rollover_401k" - ], - [ - "i want help to transfer my 401k", - "rollover_401k" - ], - [ - "help me to transfer my 401k", - "rollover_401k" - ], - [ - "i will rollover my 401k", - "rollover_401k" - ], - [ - "i need help to transfer my 401k", - "rollover_401k" - ], - [ - "i want to rollover my 401k", - "rollover_401k" - ], - [ - "how do i transfer my 401k to a new firm", - "rollover_401k" - ], - [ - "how do i roll over my 401k", - "rollover_401k" - ], - [ - "can i move my 401k to an ira", - "rollover_401k" - ], - [ - "how do i do a 401(k) rollover", - "rollover_401k" - ], - [ - "can 401ks be moved", - "rollover_401k" - ], - [ - "can i transfer my 401k somewhere", - "rollover_401k" - ], - [ - "how do i switch 401k companies", - "rollover_401k" - ], - [ - "tell me how to roll over my 401k", - "rollover_401k" - ], - [ - "how can i transfer my 401k", - "rollover_401k" - ], - [ - "what are the steps to rollover my 401k", - "rollover_401k" - ], - [ - "my 401k, can i roll it over", - "rollover_401k" - ], - [ - "i want to rollover my 401k , can i", - "rollover_401k" - ], - [ - "help me rollover my 401k", - "rollover_401k" - ], - [ - "do you know the process to rollover my 401k", - "rollover_401k" - ], - [ - "tell me how to rollover my 401k", - "rollover_401k" - ], - [ - "my 401k needs to rollover and i need your help", - "rollover_401k" - ], - [ - "let me know how to rollover my 401k", - "rollover_401k" - ], - [ - "what do i have to do to transfer my 401k", - "rollover_401k" - ], - [ - "what company made this ai", - "who_made_you" - ], - [ - "what is the name of the person who made you", - "who_made_you" - ], - [ - "who is the person that brought you to life", - "who_made_you" - ], - [ - "who is the one that made you", - "who_made_you" - ], - [ - "who is your maker", - "who_made_you" - ], - [ - "which company made you", - "who_made_you" - ], - [ - "who assembled you", - "who_made_you" - ], - [ - "i wanna know who programmed you", - "who_made_you" - ], - [ - "let me know who programmed you", - "who_made_you" - ], - [ - "who made you", - "who_made_you" - ], - [ - "i wanna know your maker", - "who_made_you" - ], - [ - "who was your maker", - "who_made_you" - ], - [ - "who is the one who programmed you", - "who_made_you" - ], - [ - "i must know who programmed you", - "who_made_you" - ], - [ - "tell me who your maker was", - "who_made_you" - ], - [ - "what was the company that designed you", - "who_made_you" - ], - [ - "do you know what company were you designed by", - "who_made_you" - ], - [ - "let me know which company were you designed by", - "who_made_you" - ], - [ - "what company were you designed by", - "who_made_you" - ], - [ - "can you let me know what company were you designed by", - "who_made_you" - ], - [ - "which company were you designed by", - "who_made_you" - ], - [ - "tell me who made you please", - "who_made_you" - ], - [ - "can you tell me who made you", - "who_made_you" - ], - [ - "whats the name of the person who made you", - "who_made_you" - ], - [ - "what company did the design for this", - "who_made_you" - ], - [ - "what company did this design", - "who_made_you" - ], - [ - "what company is responsible for this design", - "who_made_you" - ], - [ - "what company designed this", - "who_made_you" - ], - [ - "for this design, what company did it", - "who_made_you" - ], - [ - "name the person or group that programmed you", - "who_made_you" - ], - [ - "which way do we go and how long will it take to get to the sears tower in chicago", - "distance" - ], - [ - "so, does it take long to get to dodger stadium in anaheim", - "distance" - ], - [ - "how many minutes will it take to get to the empire state building in manhattan", - "distance" - ], - [ - "what's the mileage to get the the taj mahal in atlantic city", - "distance" - ], - [ - "does it take long to get to yankee stadium in the bronx", - "distance" - ], - [ - "how much time is left until we get there", - "distance" - ], - [ - "what's the time to destination going via bus to omaha", - "distance" - ], - [ - "how far from our destination are we", - "distance" - ], - [ - "how many minutes am i from texaco", - "distance" - ], - [ - "how long will i be on the bus if i rid it to seattle", - "distance" - ], - [ - "is it going to be much longer until i reach the bank", - "distance" - ], - [ - "am i close to arriving at the post office", - "distance" - ], - [ - "what's the estimated travel time to get to dc via bus", - "distance" - ], - [ - "when will i arrive at hy-vee", - "distance" - ], - [ - "how long does it take to get to el paso on a bus", - "distance" - ], - [ - "how long will it take me to get to walmart", - "distance" - ], - [ - "what's the average time to boston when riding a bus", - "distance" - ], - [ - "when will the bus get me to vermont", - "distance" - ], - [ - "how long will i be on the bus to new orleans", - "distance" - ], - [ - "how long is a bus ride to staples", - "distance" - ], - [ - "how long does it take to get downtown by bus", - "distance" - ], - [ - "what time will i get to the beach taking the bus", - "distance" - ], - [ - "how far am i from orlando", - "distance" - ], - [ - "give me an eta on when i will arrive at my destination", - "distance" - ], - [ - "tell me how much longer i will have to drive to reach the destination", - "distance" - ], - [ - "when will i get to orlando", - "distance" - ], - [ - "how much farther is orlando from my location", - "distance" - ], - [ - "do i have a ways to go or am i close to getting to penn station", - "distance" - ], - [ - "please give me the approximate amount of time i will need to go from jfk international airport to penn station", - "distance" - ], - [ - "can you tell me about what time i should be arriving at the airport", - "distance" - ], - [ - "how do you refer to me", - "user_name" - ], - [ - "call my name", - "user_name" - ], - [ - "what do i go by", - "user_name" - ], - [ - "say my name", - "user_name" - ], - [ - "what do you think my name is", - "user_name" - ], - [ - "what do you think i'm called", - "user_name" - ], - [ - "what do you have for my name", - "user_name" - ], - [ - "how do you address my name", - "user_name" - ], - [ - "what's your designation", - "user_name" - ], - [ - "what do you call me", - "user_name" - ], - [ - "i want to hear my name", - "user_name" - ], - [ - "my name", - "user_name" - ], - [ - "what's my name", - "user_name" - ], - [ - "what's my name on file", - "user_name" - ], - [ - "what name do you have for me", - "user_name" - ], - [ - "what did i tell you to call me", - "user_name" - ], - [ - "please tell me the name that you have for me", - "user_name" - ], - [ - "i need to know the name that you have for me", - "user_name" - ], - [ - "can you tell me what name you have for me", - "user_name" - ], - [ - "tell me what name you have for me", - "user_name" - ], - [ - "i would like to know the name you have for me", - "user_name" - ], - [ - "what is the name you have for me", - "user_name" - ], - [ - "could you tell me my name", - "user_name" - ], - [ - "do you have a name for me", - "user_name" - ], - [ - "can you tell me my name for me", - "user_name" - ], - [ - "what's the name you use for me", - "user_name" - ], - [ - "you call me what", - "user_name" - ], - [ - "what do you know me by", - "user_name" - ], - [ - "you know me by what right now", - "user_name" - ], - [ - "what's the way you refer to me", - "user_name" - ], - [ - "what's the timezone for britain", - "timezone" - ], - [ - "i need the time zone for la", - "timezone" - ], - [ - "i would like to know the timezone for britain", - "timezone" - ], - [ - "i need la's time zone", - "timezone" - ], - [ - "i need to know britain's timezone", - "timezone" - ], - [ - "what timezone is britain in", - "timezone" - ], - [ - "can you tell me britain's timezone", - "timezone" - ], - [ - "what is the la's time zone", - "timezone" - ], - [ - "can you tell me the time zone for la", - "timezone" - ], - [ - "what is texas's timezone", - "timezone" - ], - [ - "tell me the timezone for california", - "timezone" - ], - [ - "what timezone would missouri be in", - "timezone" - ], - [ - "what timezone do they use in arizona", - "timezone" - ], - [ - "is new york in mountain timezone", - "timezone" - ], - [ - "what is the timezone for la", - "timezone" - ], - [ - "what is the timezone for new york", - "timezone" - ], - [ - "what is the timezone for san francisco", - "timezone" - ], - [ - "what is the timezone for paris", - "timezone" - ], - [ - "what is the timezone for houston", - "timezone" - ], - [ - "denver's timezone is what", - "timezone" - ], - [ - "does denver reside in the eastern timezones", - "timezone" - ], - [ - "which timezone is denver located", - "timezone" - ], - [ - "denver's timezone is a mystery, i wonder where its located", - "timezone" - ], - [ - "in which time zone does denver reside", - "timezone" - ], - [ - "what's the timezone in valencia", - "timezone" - ], - [ - "what's the timezone now in hiram", - "timezone" - ], - [ - "timezone in salt lake city", - "timezone" - ], - [ - "timezone currently in mobile", - "timezone" - ], - [ - "what time is it in phoenix", - "timezone" - ], - [ - "can you give me the timezone for the country", - "timezone" - ], - [ - "i don't like this song, can skip it", - "next_song" - ], - [ - "can we move onto the next song", - "next_song" - ], - [ - "skip this song, please", - "next_song" - ], - [ - "can you swipe to the next song", - "next_song" - ], - [ - "next song, please!", - "next_song" - ], - [ - "start the next song", - "next_song" - ], - [ - "go to the next song and play it", - "next_song" - ], - [ - "move forward one song", - "next_song" - ], - [ - "play the next one", - "next_song" - ], - [ - "skip to next track", - "next_song" - ], - [ - "skip ahead one song", - "next_song" - ], - [ - "go to upcoming song", - "next_song" - ], - [ - "play the next song please", - "next_song" - ], - [ - "i dont want to listen to this song", - "next_song" - ], - [ - "could you hit next", - "next_song" - ], - [ - "can you go to the next song", - "next_song" - ], - [ - "let's go to the next song please", - "next_song" - ], - [ - "maybe we can go to the next song", - "next_song" - ], - [ - "may i suggest we go to the next song", - "next_song" - ], - [ - "please can we go to the next song", - "next_song" - ], - [ - "might we go to the next song", - "next_song" - ], - [ - "next track", - "next_song" - ], - [ - "skip to the next track", - "next_song" - ], - [ - "skip this track", - "next_song" - ], - [ - "play next song", - "next_song" - ], - [ - "next song", - "next_song" - ], - [ - "change this song please", - "next_song" - ], - [ - "i want you to play the next song", - "next_song" - ], - [ - "play the next song please if you would", - "next_song" - ], - [ - "please play the next track", - "next_song" - ], - [ - "i need to know all my spending transactions", - "transactions" - ], - [ - "when did i last make a purchase", - "transactions" - ], - [ - "how much did i spend on my most recent transaction", - "transactions" - ], - [ - "show me my ten most recent transactions on account xyz", - "transactions" - ], - [ - "i want to see all transactions in the past month for all accounts", - "transactions" - ], - [ - "show me my recent transactions from account xyz", - "transactions" - ], - [ - "open bank app and show my most recent transactions", - "transactions" - ], - [ - "are you able to find my recent transactions for me", - "transactions" - ], - [ - "i made a transaction recently", - "transactions" - ], - [ - "what was my recent transaction", - "transactions" - ], - [ - "i want to know what my recent transaction was", - "transactions" - ], - [ - "i need information about my recent transaction", - "transactions" - ], - [ - "state recent transaction", - "transactions" - ], - [ - "is my visa bill over my limit this month", - "transactions" - ], - [ - "what have i spent things on", - "transactions" - ], - [ - "show my transactions", - "transactions" - ], - [ - "what were my last 10 charges on my credit card", - "transactions" - ], - [ - "show what i have spent things on", - "transactions" - ], - [ - "how much have i spent on my debit card this month", - "transactions" - ], - [ - "how much have i spent on my bank card sine i last paid my bill", - "transactions" - ], - [ - "how much was my last target trip", - "transactions" - ], - [ - "can you verify my recent visa card transaction", - "transactions" - ], - [ - "what was my recent transaction on my visa card", - "transactions" - ], - [ - "what is the last transaction on my visa card", - "transactions" - ], - [ - "show my my most recent visa card transaction", - "transactions" - ], - [ - "please review my recent visa card transaction", - "transactions" - ], - [ - "how many transactions do i have on flower shops from last wednesday between 2pm and 7pm", - "transactions" - ], - [ - "what transactions did i make on electronics this morning after 6am", - "transactions" - ], - [ - "what is the largest transaction i have made on video games this month", - "transactions" - ], - [ - "what transactions do i have on groceries from yesterday", - "transactions" - ], - [ - "please give me the name of a few good options for places to eat dinner tonight", - "restaurant_suggestion" - ], - [ - "i need some suggestions for dinner places tonight", - "restaurant_suggestion" - ], - [ - "what are some good places to go out for dinner in my area tonight", - "restaurant_suggestion" - ], - [ - "show me some restaurants that have high reviews for eating out", - "restaurant_suggestion" - ], - [ - "can you search recommended casual restaurants for tonight in philadelphia", - "restaurant_suggestion" - ], - [ - "where can i go to eat", - "restaurant_suggestion" - ], - [ - "where can i get some good food", - "restaurant_suggestion" - ], - [ - "in cleveland, are there any good places that serve clams", - "restaurant_suggestion" - ], - [ - "does cleveland have any good places that serve clams", - "restaurant_suggestion" - ], - [ - "can you find any good places in cleveland that serve clams", - "restaurant_suggestion" - ], - [ - "are there good clam places in cleveland", - "restaurant_suggestion" - ], - [ - "are there any good places in cleveland that serve clams", - "restaurant_suggestion" - ], - [ - "could you suggest a french restaurant, please", - "restaurant_suggestion" - ], - [ - "can you suggest a french restaurant", - "restaurant_suggestion" - ], - [ - "can you suggest a thai restaurant", - "restaurant_suggestion" - ], - [ - "can you suggest a french restaurant, please", - "restaurant_suggestion" - ], - [ - "can you suggest a thai restaurant, please", - "restaurant_suggestion" - ], - [ - "are there are any good places in washington that serve cheese pizza", - "restaurant_suggestion" - ], - [ - "what's the food can easily get in canada", - "restaurant_suggestion" - ], - [ - "what are the best places to get shrimp in chicago", - "restaurant_suggestion" - ], - [ - "what are the best restaurants open tonight", - "restaurant_suggestion" - ], - [ - "i need a list of good places to eat near me", - "restaurant_suggestion" - ], - [ - "pull up some recommendations for places serving fish in maine", - "restaurant_suggestion" - ], - [ - "where should i go for food tonight", - "restaurant_suggestion" - ], - [ - "where should i eat", - "restaurant_suggestion" - ], - [ - "any fantastic restaurants to get shrimp at in atlanta", - "restaurant_suggestion" - ], - [ - "give me a list of places that serve the best wings in charlotte", - "restaurant_suggestion" - ], - [ - "i need reviews for places serving tacos in chicago", - "restaurant_suggestion" - ], - [ - "give me restaurant reccomendations", - "restaurant_suggestion" - ], - [ - "where can i satisfy my craving for french food in milwaukee", - "restaurant_suggestion" - ], - [ - "x card has earned how many points", - "rewards_balance" - ], - [ - "can you give me a points update on my rewards plus card", - "rewards_balance" - ], - [ - "can you pull up how many points i've earned with travel card", - "rewards_balance" - ], - [ - "what is the updated points that i earned with synovus card", - "rewards_balance" - ], - [ - "how many points do i have on my six flags rewards card", - "rewards_balance" - ], - [ - "i would like to check my rewards for my credit card", - "rewards_balance" - ], - [ - "i need to check my rewards for my credit card", - "rewards_balance" - ], - [ - "i wanna know how many points have i earned with my credit card", - "rewards_balance" - ], - [ - "i would like to know my debit card's rewards balance", - "rewards_balance" - ], - [ - "i would like to know how many points have i earned with my credit card", - "rewards_balance" - ], - [ - "i need to know my credit card's rewards balance", - "rewards_balance" - ], - [ - "i wanna know my credit card's rewards balance", - "rewards_balance" - ], - [ - "i really need to check my rewards for my credit card", - "rewards_balance" - ], - [ - "i would like to check my rewards for my debit card", - "rewards_balance" - ], - [ - "i wish to know my debit card's rewards balance", - "rewards_balance" - ], - [ - "i wanna check my rewards for my credit card", - "rewards_balance" - ], - [ - "tell me my debit card's rewards balance", - "rewards_balance" - ], - [ - "i need to understand how many points have i earned with my credit card", - "rewards_balance" - ], - [ - "i must know how many points have i earned with my credit card", - "rewards_balance" - ], - [ - "i gotta know how many points i have gotten with my debit card", - "rewards_balance" - ], - [ - "how many points earned do i have with my american express card", - "rewards_balance" - ], - [ - "how many points have i earned with my paypal credit card so far", - "rewards_balance" - ], - [ - "i have points on my capital one card and i'd like to know how many i've earned", - "rewards_balance" - ], - [ - "have i earned points with my venture card, and how many", - "rewards_balance" - ], - [ - "what do my visa points look like", - "rewards_balance" - ], - [ - "how many points do i have on my visa", - "rewards_balance" - ], - [ - "tell me the number of points on my visa card", - "rewards_balance" - ], - [ - "give me the point total on my visa card", - "rewards_balance" - ], - [ - "what points have i earned on my visa", - "rewards_balance" - ], - [ - "how many rewards points do i have on my rewards points i have on my mastercard", - "rewards_balance" - ], - [ - "i have a car payment that needs to be paid", - "pay_bill" - ], - [ - "i need to put in a payment towards my phone bill", - "pay_bill" - ], - [ - "help me get my gas bill paid", - "pay_bill" - ], - [ - "pay my con edison bill using my capital one account", - "pay_bill" - ], - [ - "use my navy federal account and pay this month's verizon bill, please", - "pay_bill" - ], - [ - "please pay my sprint bill using my bank of america checking account", - "pay_bill" - ], - [ - "i need some assistance paying my utilities bill", - "pay_bill" - ], - [ - "i need a hand getting this gas bill paid", - "pay_bill" - ], - [ - "can you help me pay my electricity bill", - "pay_bill" - ], - [ - "i have to pay my water bill but need help doing it", - "pay_bill" - ], - [ - "i am going to need help paying my rent bill", - "pay_bill" - ], - [ - "i want to pay my bill", - "pay_bill" - ], - [ - "can you help me pay my bill", - "pay_bill" - ], - [ - "i want to pay my bill through the app", - "pay_bill" - ], - [ - "pay my electric bill for me", - "pay_bill" - ], - [ - "pull up my electric bill, i want to pay it", - "pay_bill" - ], - [ - "how do i pay my electric bill", - "pay_bill" - ], - [ - "i want to pay my electric bill, can you do it for me", - "pay_bill" - ], - [ - "pay my light bill", - "pay_bill" - ], - [ - "pay my utility bill from my bank account", - "pay_bill" - ], - [ - "charge my internet bill to the corporate account", - "pay_bill" - ], - [ - "pay my gas bill with my checking account", - "pay_bill" - ], - [ - "i need to pay my electric bill", - "pay_bill" - ], - [ - "i know i should pay my electric bill", - "pay_bill" - ], - [ - "today my electric bill will be paid, or should be", - "pay_bill" - ], - [ - "today is the day i should pay my electric bill", - "pay_bill" - ], - [ - "my electric bill should be paid today", - "pay_bill" - ], - [ - "i need to pay my visa", - "pay_bill" - ], - [ - "pay $175 on my visa", - "pay_bill" - ], - [ - "i'd like to pay $4735 to my water bill", - "pay_bill" - ], - [ - "what's the total i've spent on shoes this month", - "spending_history" - ], - [ - "how many dollars have i spent on coffee this month", - "spending_history" - ], - [ - "what have i spent on food this month", - "spending_history" - ], - [ - "how much have i spent on tires this month", - "spending_history" - ], - [ - "how much have i been spending on booze this month", - "spending_history" - ], - [ - "what have i spent on fast food recently", - "spending_history" - ], - [ - "how much total have i spent on fast food lately", - "spending_history" - ], - [ - "how much fast food have i bought recently", - "spending_history" - ], - [ - "check how much i spent this week", - "spending_history" - ], - [ - "how much money have i spent on fast food lately", - "spending_history" - ], - [ - "how much money have a spent in the last week", - "spending_history" - ], - [ - "how much money did i spend this weekend", - "spending_history" - ], - [ - "tell me how much money i've spent on fast food in the past week", - "spending_history" - ], - [ - "what is the total amount i spent last week", - "spending_history" - ], - [ - "what've i spent on gas this month", - "spending_history" - ], - [ - "have i gone over my entertainment budget", - "spending_history" - ], - [ - "would you say i've spent too much money on chips as of late", - "spending_history" - ], - [ - "looking at this week only, have i overspent on hoagies", - "spending_history" - ], - [ - "do i overspend when it comes to fast food", - "spending_history" - ], - [ - "looking at the past month, what did i spend total", - "spending_history" - ], - [ - "have i gone over my chocolate budget lately", - "spending_history" - ], - [ - "how much have i spent this week", - "spending_history" - ], - [ - "about how much did i spend recently", - "spending_history" - ], - [ - "tell me how much i have been buying as of late", - "spending_history" - ], - [ - "what did i spend on beer last month", - "spending_history" - ], - [ - "did i stick to my dinner budget", - "spending_history" - ], - [ - "how much have i spent on video games recently", - "spending_history" - ], - [ - "do i spend too much on beer", - "spending_history" - ], - [ - "what are my finances like lately", - "spending_history" - ], - [ - "how much money have i spent recently", - "spending_history" - ], - [ - "did my vacation get approval", - "pto_request_status" - ], - [ - "do you know if vacation got approved", - "pto_request_status" - ], - [ - "does my vacation have approval", - "pto_request_status" - ], - [ - "can you let me know if my vacation was approved", - "pto_request_status" - ], - [ - "any news on my vacation", - "pto_request_status" - ], - [ - "tell me if my vacation was approved yet", - "pto_request_status" - ], - [ - "was there any progress on my vacation request", - "pto_request_status" - ], - [ - "is my vacation approved", - "pto_request_status" - ], - [ - "is my request going to be approved for vacation", - "pto_request_status" - ], - [ - "is vacation a go", - "pto_request_status" - ], - [ - "will i get my time off approved", - "pto_request_status" - ], - [ - "how is my vacation looking", - "pto_request_status" - ], - [ - "did the manager approve my vacation yet", - "pto_request_status" - ], - [ - "any new info on my vacation", - "pto_request_status" - ], - [ - "any update on my vacation", - "pto_request_status" - ], - [ - "is there a status update on my vacation approval", - "pto_request_status" - ], - [ - "can you notify me when my vacation days have approved", - "pto_request_status" - ], - [ - "when will my vacation time be confirmed", - "pto_request_status" - ], - [ - "when will i hear back about my days off", - "pto_request_status" - ], - [ - "am i okay to take those vacation days", - "pto_request_status" - ], - [ - "has my vacation time been approved", - "pto_request_status" - ], - [ - "what is the day off request status as of now", - "pto_request_status" - ], - [ - "what is the day off request status please", - "pto_request_status" - ], - [ - "what is the day off request status if you would tell me", - "pto_request_status" - ], - [ - "what is the day off request status", - "pto_request_status" - ], - [ - "what is the day off request status if you could tell me", - "pto_request_status" - ], - [ - "i need to know status of my day off request", - "pto_request_status" - ], - [ - "i want to know the status of my vacation request", - "pto_request_status" - ], - [ - "tell me status of my day off request", - "pto_request_status" - ], - [ - "please let me know the status of my vacation request", - "pto_request_status" - ], - [ - "i would like to know my credit score", - "credit_score" - ], - [ - "tell me what my credit score is", - "credit_score" - ], - [ - "can you find what my credit score is", - "credit_score" - ], - [ - "how is my credit score numberwise", - "credit_score" - ], - [ - "what credit score number do i have", - "credit_score" - ], - [ - "what is my credit score number", - "credit_score" - ], - [ - "how much is my credit score", - "credit_score" - ], - [ - "what number is my credit score currently", - "credit_score" - ], - [ - "is my credit score over 700 yet", - "credit_score" - ], - [ - "please give me my current credit score", - "credit_score" - ], - [ - "i'm trying to raise my credit score can you tell me what it is now", - "credit_score" - ], - [ - "i need to know what my credit score is", - "credit_score" - ], - [ - "could you tell me what my credit score is", - "credit_score" - ], - [ - "give me my credit score please", - "credit_score" - ], - [ - "could you share my credit score", - "credit_score" - ], - [ - "how's my credit score", - "credit_score" - ], - [ - "i was wondering what my credit score is", - "credit_score" - ], - [ - "where do i go for my credit score", - "credit_score" - ], - [ - "i need to find my credit score", - "credit_score" - ], - [ - "how can i locate my credit score", - "credit_score" - ], - [ - "what is my credit rating", - "credit_score" - ], - [ - "i want to know my credit rating", - "credit_score" - ], - [ - "my credit rating is what", - "credit_score" - ], - [ - "tell me my credit raing", - "credit_score" - ], - [ - "give me my credit rating", - "credit_score" - ], - [ - "please tell me what my credit score is", - "credit_score" - ], - [ - "i'd like you to check on my credit score", - "credit_score" - ], - [ - "let me know what my credit score is today", - "credit_score" - ], - [ - "can you check my credit score", - "credit_score" - ], - [ - "can you check my credit score for me", - "credit_score" - ], - [ - "i would like to get a new credt card", - "new_card" - ], - [ - "i would love to get a new credit card", - "new_card" - ], - [ - "do you have any information on how to open a new credit card", - "new_card" - ], - [ - "tell me how to apply for a new credit card", - "new_card" - ], - [ - "tell me how to apply for a credit card", - "new_card" - ], - [ - "i want to know how to go about getting a new credit card", - "new_card" - ], - [ - "please tell me how to get a new credit card", - "new_card" - ], - [ - "am i eligible for a new credit card", - "new_card" - ], - [ - "i need to get a new credit card application", - "new_card" - ], - [ - "what's the best way to get a mastercard", - "new_card" - ], - [ - "is this where i apply for a new credit card", - "new_card" - ], - [ - "how do i apply do get myself a visa", - "new_card" - ], - [ - "can you complete an application for a new credit card for me", - "new_card" - ], - [ - "i need to get a mastercard somehow", - "new_card" - ], - [ - "how can i get a visa card", - "new_card" - ], - [ - "can i apply here for a new card", - "new_card" - ], - [ - "does bank of america give credit cards to people like me", - "new_card" - ], - [ - "what do i do to get a visa card", - "new_card" - ], - [ - "is it possible for me to get a better credit card", - "new_card" - ], - [ - "how do i submit an application for a discover card", - "new_card" - ], - [ - "how do i apply for american express", - "new_card" - ], - [ - "find out if there's a new credit card that suits me", - "new_card" - ], - [ - "how do i apply for a new credit card", - "new_card" - ], - [ - "what's it take to get a mastercard", - "new_card" - ], - [ - "can i apply for a visa card", - "new_card" - ], - [ - "how do i apply for a visa card", - "new_card" - ], - [ - "i wish to apply for a visa card", - "new_card" - ], - [ - "help me apply for a visa card", - "new_card" - ], - [ - "is there a list of good credit cards i can choose from to apply for", - "new_card" - ], - [ - "how can i find a new credit card to apply to", - "new_card" - ], - [ - "is my luggage lost", - "lost_luggage" - ], - [ - "why is my luggage not here", - "lost_luggage" - ], - [ - "what happened to my luggage", - "lost_luggage" - ], - [ - "i need help finding my luggage", - "lost_luggage" - ], - [ - "what steps should i take if my luggage has been lost", - "lost_luggage" - ], - [ - "i seem to have lost my luggage! what are my options now", - "lost_luggage" - ], - [ - "what would be the best way to deal with lost luggage", - "lost_luggage" - ], - [ - "it appears that my luggage has been lost", - "lost_luggage" - ], - [ - "i'm afraid my luggage has gone missing", - "lost_luggage" - ], - [ - "i am a bit panicked because my luggage seems to have gone missing", - "lost_luggage" - ], - [ - "i have no idea where my luggage went!", - "lost_luggage" - ], - [ - "unfortunately it would appear that my luggage is totally lost", - "lost_luggage" - ], - [ - "how should i proceed if i accidentally lost my luggage", - "lost_luggage" - ], - [ - "if i lost my luggage, what should i do next", - "lost_luggage" - ], - [ - "i have no idea where my luggage is", - "lost_luggage" - ], - [ - "i think my luggage has been misplaced", - "lost_luggage" - ], - [ - "what do i have to do if i lost my luggage", - "lost_luggage" - ], - [ - "i think my luggage is lost", - "lost_luggage" - ], - [ - "my luggage appears to be lost", - "lost_luggage" - ], - [ - "i can't seem to track down my luggage", - "lost_luggage" - ], - [ - "what is the next thing i should do if i lost my luggage", - "lost_luggage" - ], - [ - "what step should i take next if i lost my luggage", - "lost_luggage" - ], - [ - "i've lost my luggage what should i do now", - "lost_luggage" - ], - [ - "what should i do about losing my luggage", - "lost_luggage" - ], - [ - "where would i find my luggage", - "lost_luggage" - ], - [ - "my luggage has been misplaced", - "lost_luggage" - ], - [ - "i can't find my luggage", - "lost_luggage" - ], - [ - "i lost all my stuff that i had packed", - "lost_luggage" - ], - [ - "my luggage has disappeared", - "lost_luggage" - ], - [ - "it appears my luggage is lost", - "lost_luggage" - ], - [ - "may you say that again", - "repeat" - ], - [ - "can you please repeat that", - "repeat" - ], - [ - "can you please say that again", - "repeat" - ], - [ - "may you please say that again", - "repeat" - ], - [ - "would you say it again please", - "repeat" - ], - [ - "would you repeat what you said earlier", - "repeat" - ], - [ - "i would like you to repeat it", - "repeat" - ], - [ - "repeat please", - "repeat" - ], - [ - "pardon, i didn't hear you", - "repeat" - ], - [ - "i didn't hear you can you say that again", - "repeat" - ], - [ - "i didn't catch that", - "repeat" - ], - [ - "could you repeat that", - "repeat" - ], - [ - "say again please", - "repeat" - ], - [ - "would you mind repeating that", - "repeat" - ], - [ - "sorry, i didn't catch that could you say it again", - "repeat" - ], - [ - "i need you to repeat that please", - "repeat" - ], - [ - "repeat that for me please", - "repeat" - ], - [ - "what did you just say", - "repeat" - ], - [ - "please say it one more time", - "repeat" - ], - [ - "sorry i missed that", - "repeat" - ], - [ - "i didn't understand you", - "repeat" - ], - [ - "can you repeat the question again", - "repeat" - ], - [ - "can you phrase that question again", - "repeat" - ], - [ - "what'd you say", - "repeat" - ], - [ - "please repeat the last thing", - "repeat" - ], - [ - "repeat that", - "repeat" - ], - [ - "can you repeat that", - "repeat" - ], - [ - "what were you just saying", - "repeat" - ], - [ - "come again", - "repeat" - ], - [ - "can you say that again, please", - "repeat" - ], - [ - "tell me: car gas mileage", - "mpg" - ], - [ - "what is my car's gas mileage", - "mpg" - ], - [ - "tell me what the gas mileage is on my car", - "mpg" - ], - [ - "what is the gas mileage of my car", - "mpg" - ], - [ - "check: car gas mileage", - "mpg" - ], - [ - "what is my car's mpg", - "mpg" - ], - [ - "what is my car's mpg, please", - "mpg" - ], - [ - "what's my car's mpg", - "mpg" - ], - [ - "what's my car's mpg, please", - "mpg" - ], - [ - "what is the highway mpg of this car", - "mpg" - ], - [ - "hows the city mpg of this car", - "mpg" - ], - [ - "what is the highway mpg on this car like", - "mpg" - ], - [ - "what mpg does this car get in the city", - "mpg" - ], - [ - "how many mpg does this car get in the city", - "mpg" - ], - [ - "tell me about this car's highway mpg", - "mpg" - ], - [ - "can i have more information about this car's highway mpg", - "mpg" - ], - [ - "what is the city mpg on this car", - "mpg" - ], - [ - "whats the mpg for this car", - "mpg" - ], - [ - "whats the mpg of this car", - "mpg" - ], - [ - "i need to know my cars mpg", - "mpg" - ], - [ - "can i get this car's mpg", - "mpg" - ], - [ - "i would like to know the mpg of my car", - "mpg" - ], - [ - "what kind of mileage am i getting", - "mpg" - ], - [ - "what the mpg", - "mpg" - ], - [ - "can you tell me my vehicles mpg", - "mpg" - ], - [ - "whats the fuel economy of this car", - "mpg" - ], - [ - "what kind of mileage does this car get", - "mpg" - ], - [ - "mpg for this car please", - "mpg" - ], - [ - "what is the miles per gallon", - "mpg" - ], - [ - "how is the car's fuel economy", - "mpg" - ], - [ - "am i due for an oil change yet", - "oil_change_when" - ], - [ - "when is the next time i should change my oil", - "oil_change_when" - ], - [ - "when is my car due for its next oil change", - "oil_change_when" - ], - [ - "when am i due for my next oil change", - "oil_change_when" - ], - [ - "when should i get my next oil change", - "oil_change_when" - ], - [ - "when's the next time i should change my oil", - "oil_change_when" - ], - [ - "when should i get my car's oil changed next", - "oil_change_when" - ], - [ - "when is the next time i need to get an oil change", - "oil_change_when" - ], - [ - "when is my car's next oil change supposed to be", - "oil_change_when" - ], - [ - "how long until my next oil change", - "oil_change_when" - ], - [ - "when's the next time i ought to change my oil", - "oil_change_when" - ], - [ - "when's the next time i have to get an oil change", - "oil_change_when" - ], - [ - "when should i get my oil changed", - "oil_change_when" - ], - [ - "when should i get the oil changed in my car", - "oil_change_when" - ], - [ - "figure out when my car will next need an oil change", - "oil_change_when" - ], - [ - "can you recommend for me when to next get my oil changed", - "oil_change_when" - ], - [ - "when do you think i ought to change the oil in my car next", - "oil_change_when" - ], - [ - "how soon until i will need to get my oil changed", - "oil_change_when" - ], - [ - "find out for me when my car is next due for an oil change", - "oil_change_when" - ], - [ - "where can i find information on oil changes for my car", - "oil_change_when" - ], - [ - "what are the manufacturers guidance on oil changes", - "oil_change_when" - ], - [ - "is my car due for it's next oil change", - "oil_change_when" - ], - [ - "what is the recommended interval to get my oil changed", - "oil_change_when" - ], - [ - "when will i need my next oil change", - "oil_change_when" - ], - [ - "how often should i change the oil", - "oil_change_when" - ], - [ - "do i need to change my oil soon", - "oil_change_when" - ], - [ - "when will my oil change be due for this car", - "oil_change_when" - ], - [ - "is my oil change coming up soon", - "oil_change_when" - ], - [ - "what's my oil change status", - "oil_change_when" - ], - [ - "when does this car need oil changes", - "oil_change_when" - ], - [ - "i will say yes as my response", - "yes" - ], - [ - "my answer to your question is yes", - "yes" - ], - [ - "yes is my answer", - "yes" - ], - [ - "yes, ai, that is correct", - "yes" - ], - [ - "that's true", - "yes" - ], - [ - "that's correct", - "yes" - ], - [ - "that checks out", - "yes" - ], - [ - "that's right", - "yes" - ], - [ - "affirmative", - "yes" - ], - [ - "yes, that is factual", - "yes" - ], - [ - "yes, that happens to be correct", - "yes" - ], - [ - "that would be correct", - "yes" - ], - [ - "thats right", - "yes" - ], - [ - "yes, this is true", - "yes" - ], - [ - "sure", - "yes" - ], - [ - "okay", - "yes" - ], - [ - "definitely", - "yes" - ], - [ - "roger that", - "yes" - ], - [ - "i agree", - "yes" - ], - [ - "absolutely", - "yes" - ], - [ - "you're right", - "yes" - ], - [ - "yes, that's right", - "yes" - ], - [ - "please let's do it", - "yes" - ], - [ - "yes please", - "yes" - ], - [ - "can we please", - "yes" - ], - [ - "yes, please", - "yes" - ], - [ - "10-4", - "yes" - ], - [ - "ya", - "yes" - ], - [ - "yup", - "yes" - ], - [ - "great", - "yes" - ], - [ - "what are some interesting things i can do while in raleigh", - "travel_suggestion" - ], - [ - "can you help me pick some fun things to do in london during my trip", - "travel_suggestion" - ], - [ - "help me plan my traveling itinerary for my trip to madrid, i want to see lots of sights!", - "travel_suggestion" - ], - [ - "help me pick a new location to travel to", - "travel_suggestion" - ], - [ - "can you do some research about the best places to travel", - "travel_suggestion" - ], - [ - "tell me some fun activities to do in oklahoma city", - "travel_suggestion" - ], - [ - "what are some popular tourist activities in mexico city", - "travel_suggestion" - ], - [ - "i am itching to travel but don't know where to go", - "travel_suggestion" - ], - [ - "give me some recommendations of good tourist attractions in montreal", - "travel_suggestion" - ], - [ - "tell me some fun tourist attractions in london", - "travel_suggestion" - ], - [ - "give me some ideas of what to do during my trip to dallas", - "travel_suggestion" - ], - [ - "find out the best tourist attractions to visit in moscow", - "travel_suggestion" - ], - [ - "i want some suggestions for tourist activities in dublin", - "travel_suggestion" - ], - [ - "i am traveling to paris soon and would like some suggestions of what to do and see", - "travel_suggestion" - ], - [ - "what are some local attractions in portland", - "travel_suggestion" - ], - [ - "what sorts of activities should i get up to while i am in dublin", - "travel_suggestion" - ], - [ - "i want to explore a new place but don't know where i should go do you have any ideas", - "travel_suggestion" - ], - [ - "please give me some ideas of fun tourist activities to do while i am in paris", - "travel_suggestion" - ], - [ - "can you throw out some suggestions to me of places to travel to", - "travel_suggestion" - ], - [ - "suggest some things for me to do while i am in los angeles", - "travel_suggestion" - ], - [ - "let me know some things to do in phoenix", - "travel_suggestion" - ], - [ - "let me know some things i can do in dallas", - "travel_suggestion" - ], - [ - "i wanna know some things to do in phoenix", - "travel_suggestion" - ], - [ - "i would like to do some things in phoenix", - "travel_suggestion" - ], - [ - "tell me some things to do in phoenix", - "travel_suggestion" - ], - [ - "what are some fun silly things to do in new jersey", - "travel_suggestion" - ], - [ - "what are some cool tourist attractions in england", - "travel_suggestion" - ], - [ - "what are some fun local experiences in canada", - "travel_suggestion" - ], - [ - "what are some fun tourist things to do in mumbai", - "travel_suggestion" - ], - [ - "what are some fun cheap activities to do in colorado", - "travel_suggestion" - ], - [ - "which insurance plan to i have", - "insurance" - ], - [ - "do you know which insurance plan i have", - "insurance" - ], - [ - "what kind of insurance plan am i in", - "insurance" - ], - [ - "what health coverage do i have", - "insurance" - ], - [ - "what are the details on my health care plan", - "insurance" - ], - [ - "which insurance plan am i enrolled in", - "insurance" - ], - [ - "what is my health insurance", - "insurance" - ], - [ - "what insurance plan am i enrolled in", - "insurance" - ], - [ - "check on my health care plan", - "insurance" - ], - [ - "what's my health insurance plan", - "insurance" - ], - [ - "what sort of health benefits do i have", - "insurance" - ], - [ - "which health plan do i have, again", - "insurance" - ], - [ - "tell me about my health benefits", - "insurance" - ], - [ - "what's the name of my health insurance plan", - "insurance" - ], - [ - "explain my health benefits", - "insurance" - ], - [ - "what are my health insurance benefits", - "insurance" - ], - [ - "what specific health plan do i have", - "insurance" - ], - [ - "tell me the full name of my health plan", - "insurance" - ], - [ - "how do my health benefits work", - "insurance" - ], - [ - "can you tell me what health plan i am on", - "insurance" - ], - [ - "tell me my current health plan", - "insurance" - ], - [ - "which health plan am i currently enrolled in", - "insurance" - ], - [ - "i want to know what health plan i'm currently on", - "insurance" - ], - [ - "could you please inform me what health plan i am currently on", - "insurance" - ], - [ - "what are the benefits associated with my insurance", - "insurance" - ], - [ - "what are the benefits of having this insurance", - "insurance" - ], - [ - "what are my benefits with this insurance", - "insurance" - ], - [ - "what are my benefits on the insurance", - "insurance" - ], - [ - "google find out what health plan i am under", - "insurance" - ], - [ - "tell me what health plan coverage i have", - "insurance" - ], - [ - "cross grocery shopping off the todo list", - "todo_list_update" - ], - [ - "i don't need grocery shopping on my todo list anymore", - "todo_list_update" - ], - [ - "take grocery shopping off my todo list", - "todo_list_update" - ], - [ - "remove grocery shopping from todo list", - "todo_list_update" - ], - [ - "cross off grocery shopping from todo list", - "todo_list_update" - ], - [ - "i don't need mowing the lawn on my to do list anymore", - "todo_list_update" - ], - [ - "empty the contents of my to do list", - "todo_list_update" - ], - [ - "take everything off my to do list please", - "todo_list_update" - ], - [ - "take everything off my to do list", - "todo_list_update" - ], - [ - "please remove science fair from my to do list", - "todo_list_update" - ], - [ - "please put babysitting on my to do list", - "todo_list_update" - ], - [ - "please put lawn mowing on my list of to dos", - "todo_list_update" - ], - [ - "put the dishes on my list of things to do", - "todo_list_update" - ], - [ - "remove all items from my to do list", - "todo_list_update" - ], - [ - "take tennis practice off my to do list", - "todo_list_update" - ], - [ - "get rid of my to do list", - "todo_list_update" - ], - [ - "take dishes off the to do list", - "todo_list_update" - ], - [ - "add grocery shopping to my to do list", - "todo_list_update" - ], - [ - "remove laundry from my to do list", - "todo_list_update" - ], - [ - "please add laundry to the chores", - "todo_list_update" - ], - [ - "add mopping to the to do list", - "todo_list_update" - ], - [ - "please put dusting on my list of things to do", - "todo_list_update" - ], - [ - "please note vacuuming on my to do list", - "todo_list_update" - ], - [ - "insert mowing on the chore list", - "todo_list_update" - ], - [ - "you can dusting off my todo list", - "todo_list_update" - ], - [ - "you take sweeping of my todo list", - "todo_list_update" - ], - [ - "you can vacuuming of my todo list", - "todo_list_update" - ], - [ - "you can take laundry off my todo list", - "todo_list_update" - ], - [ - "you can take dishes off my todo list", - "todo_list_update" - ], - [ - "i need you to clear my todo list", - "todo_list_update" - ], - [ - "give me my reminders", - "reminder" - ], - [ - "what were the things that i wanted to remember", - "reminder" - ], - [ - "what were you supposed to remind me of", - "reminder" - ], - [ - "my list of reminders contains what", - "reminder" - ], - [ - "what did i want to remember", - "reminder" - ], - [ - "what did i ask you to remind me of", - "reminder" - ], - [ - "read my reminder list", - "reminder" - ], - [ - "is my meeting with frank on my list of reminders", - "reminder" - ], - [ - "list my reminders", - "reminder" - ], - [ - "what stuff am i trying to remember", - "reminder" - ], - [ - "what are my reminders", - "reminder" - ], - [ - "did i tell you to remind me about laundry", - "reminder" - ], - [ - "on my reminders list, is there an item called conference call", - "reminder" - ], - [ - "what items did i want to remember", - "reminder" - ], - [ - "what's on my list of things to remember", - "reminder" - ], - [ - "what kinds of things are you supposed to remind me of", - "reminder" - ], - [ - "is grocery shopping on my reminders list", - "reminder" - ], - [ - "i want to know my reminders", - "reminder" - ], - [ - "read my list of reminders", - "reminder" - ], - [ - "can you tell me the to do's on my reminder list", - "reminder" - ], - [ - "please go though the bullet points on my reminder list", - "reminder" - ], - [ - "what are all the things on my reminder list", - "reminder" - ], - [ - "i would like to hear the reminders that i listed on my things to remember list, please", - "reminder" - ], - [ - "what were the things i want to recall", - "reminder" - ], - [ - "can you please remind me of the items that i made note of to not forget", - "reminder" - ], - [ - "refresh my memory about what items i want to remember", - "reminder" - ], - [ - "remind me of the items on my list of things to remember", - "reminder" - ], - [ - "i'd like to just confirm all of the reminders currently on my list of reminders, please", - "reminder" - ], - [ - "please play my list of reminders", - "reminder" - ], - [ - "\"which things are wanted to remember", - "reminder" - ], - [ - "can i speed up your voice", - "change_speed" - ], - [ - "can i change your talking voice", - "change_speed" - ], - [ - "talk fast", - "change_speed" - ], - [ - "change voice speed", - "change_speed" - ], - [ - "change device talking speed", - "change_speed" - ], - [ - "speak it again slowly", - "change_speed" - ], - [ - "try to speak slowly", - "change_speed" - ], - [ - "will you please slow down your voice", - "change_speed" - ], - [ - "slow down your voice", - "change_speed" - ], - [ - "can you speak faster", - "change_speed" - ], - [ - "how do i change the speed of your voice", - "change_speed" - ], - [ - "can you talk faster", - "change_speed" - ], - [ - "how do i make you talk faster", - "change_speed" - ], - [ - "why are you talking so slowly", - "change_speed" - ], - [ - "speed up your talking", - "change_speed" - ], - [ - "talk faster", - "change_speed" - ], - [ - "you talk to slow", - "change_speed" - ], - [ - "can you adjust the speed of your voice", - "change_speed" - ], - [ - "can you talk more slowly", - "change_speed" - ], - [ - "go faster", - "change_speed" - ], - [ - "can you not talk so fast", - "change_speed" - ], - [ - "speak more quickly", - "change_speed" - ], - [ - "you're talking too fast", - "change_speed" - ], - [ - "you talk too slow", - "change_speed" - ], - [ - "please speak a bit faster", - "change_speed" - ], - [ - "double the speaking speed please", - "change_speed" - ], - [ - "speed up speech please", - "change_speed" - ], - [ - "change speaking speed to 50 percent faster", - "change_speed" - ], - [ - "your speech slower it", - "change_speed" - ], - [ - "make slower your speech", - "change_speed" - ], - [ - "give me the pressure for the tires on my car", - "tire_pressure" - ], - [ - "can you tell me the tire pressure for the car", - "tire_pressure" - ], - [ - "give me the tire pressure for the car", - "tire_pressure" - ], - [ - "go ahead and give me the tire pressure of my vehicle", - "tire_pressure" - ], - [ - "what exactly is the tire pressure for the car", - "tire_pressure" - ], - [ - "i must kniw how low are my tires on air", - "tire_pressure" - ], - [ - "please tell me my car's tire pressure", - "tire_pressure" - ], - [ - "i need to know how low are my tires on air", - "tire_pressure" - ], - [ - "i shall know how low are my tires on air", - "tire_pressure" - ], - [ - "tell me my car's tire pressure", - "tire_pressure" - ], - [ - "i gotta know my car;s tire pressure", - "tire_pressure" - ], - [ - "i would like to know my car's tire pressure", - "tire_pressure" - ], - [ - "i gotta know how low are my tires on air", - "tire_pressure" - ], - [ - "i wanna know my car's tire pressure", - "tire_pressure" - ], - [ - "i wanna know how low are my tires on air", - "tire_pressure" - ], - [ - "how can i find out what my tire pressure is", - "tire_pressure" - ], - [ - "how do i find out my tire pressure", - "tire_pressure" - ], - [ - "my tires are how low on air", - "tire_pressure" - ], - [ - "how low are my tires right now on air", - "tire_pressure" - ], - [ - "my tires are filled enough or no", - "tire_pressure" - ], - [ - "what's the tire pressure of my tires", - "tire_pressure" - ], - [ - "is there enough air in my tires", - "tire_pressure" - ], - [ - "my tires need how much more air in them", - "tire_pressure" - ], - [ - "are my tires filled properly", - "tire_pressure" - ], - [ - "are my tires filled enough", - "tire_pressure" - ], - [ - "what is the pressure of my tires", - "tire_pressure" - ], - [ - "do my tires have enough pressure", - "tire_pressure" - ], - [ - "what is the air pressure of my tires", - "tire_pressure" - ], - [ - "what is the level of air pressure of my tires", - "tire_pressure" - ], - [ - "is my tire pressure high", - "tire_pressure" - ], - [ - "that isn't right", - "no" - ], - [ - "that's incorrect", - "no" - ], - [ - "nope that's not it", - "no" - ], - [ - "no that isn't right", - "no" - ], - [ - "that's not correct", - "no" - ], - [ - "that isn't correct", - "no" - ], - [ - "that is incorrect", - "no" - ], - [ - "that's wrong", - "no" - ], - [ - "no, that is wrong", - "no" - ], - [ - "no, that is incorrect", - "no" - ], - [ - "no, definitely not", - "no" - ], - [ - "i'd say no", - "no" - ], - [ - "the statement is false", - "no" - ], - [ - "that's false", - "no" - ], - [ - "false", - "no" - ], - [ - "it is no", - "no" - ], - [ - "it is false", - "no" - ], - [ - "it is very much false", - "no" - ], - [ - "that has to be false", - "no" - ], - [ - "that is so false", - "no" - ], - [ - "that can't be true", - "no" - ], - [ - "that's a negatory", - "no" - ], - [ - "there is no way in heck that is true", - "no" - ], - [ - "nope not it", - "no" - ], - [ - "that is most definitely false", - "no" - ], - [ - "no, you are wrong", - "no" - ], - [ - "no, that is a falsehood", - "no" - ], - [ - "you got that wrong", - "no" - ], - [ - "that is the wrong answer", - "no" - ], - [ - "not right now", - "no" - ], - [ - "you need to tell me my credit card's apr", - "apr" - ], - [ - "now tell me my credit card's apr", - "apr" - ], - [ - "i need to know the apr on my wells fargo credit card", - "apr" - ], - [ - "tell me my chase credit card's apr", - "apr" - ], - [ - "tell me what my wells fargo credit card apr is", - "apr" - ], - [ - "what is my b of a credit card's apr", - "apr" - ], - [ - "can you tell me the apr of my target credit card", - "apr" - ], - [ - "what is my apr rate", - "apr" - ], - [ - "is my apr rate above average", - "apr" - ], - [ - "does my apr rate suck", - "apr" - ], - [ - "what is my card's apr rate", - "apr" - ], - [ - "is my apr rate better than most", - "apr" - ], - [ - "what's my credit card's annual percentage rate", - "apr" - ], - [ - "what's the annual percentage rate for my credit card", - "apr" - ], - [ - "how high is the apr on my credit card", - "apr" - ], - [ - "what's the apr on my credit card", - "apr" - ], - [ - "how much am i paying for apr on my credit card", - "apr" - ], - [ - "is my card's apr a decent rate", - "apr" - ], - [ - "can you tell me my apr on my credit card", - "apr" - ], - [ - "would you consider my apr to be good", - "apr" - ], - [ - "what's the current apr on my credit card", - "apr" - ], - [ - "what kind of credit card apr do i get", - "apr" - ], - [ - "what's my apr rate", - "apr" - ], - [ - "tell me my apr rate", - "apr" - ], - [ - "could you share my credit card's apr", - "apr" - ], - [ - "is my apr rate good", - "apr" - ], - [ - "i need to know what the current apr is for my chase sapphire, please", - "apr" - ], - [ - "can you find me the apr listed on the statement for my citi mastercard", - "apr" - ], - [ - "what's the apr on my capital one venture card", - "apr" - ], - [ - "inform me on what my credit card's apr is", - "apr" - ], - [ - "tell me nutritional info for brocoli", - "nutrition_info" - ], - [ - "tell me nutritional info for lettuce", - "nutrition_info" - ], - [ - "tell me nutritional info for fish", - "nutrition_info" - ], - [ - "tell me nutritional info for burger", - "nutrition_info" - ], - [ - "tell me nutritional info for beans", - "nutrition_info" - ], - [ - "how healthy is blueberrys", - "nutrition_info" - ], - [ - "how healthy is tacos", - "nutrition_info" - ], - [ - "how healthy is mcdonalds", - "nutrition_info" - ], - [ - "how healthy is a cheeseburger", - "nutrition_info" - ], - [ - "how healthy is rice", - "nutrition_info" - ], - [ - "find the nutrition info for whole milk for me", - "nutrition_info" - ], - [ - "what are the nutrition facts for greek yogurt", - "nutrition_info" - ], - [ - "find the nutrition info for ketchup for me", - "nutrition_info" - ], - [ - "what are the nutrition facts for cucumbers", - "nutrition_info" - ], - [ - "what are the nutrition facts for apple sauce", - "nutrition_info" - ], - [ - "what are the nutrition facts for peanut butter", - "nutrition_info" - ], - [ - "find the nutrition info for bell peppers for me", - "nutrition_info" - ], - [ - "find the nutrition info for cheese fries for me", - "nutrition_info" - ], - [ - "find the nutrition info for cucumbers for me", - "nutrition_info" - ], - [ - "what are the nutrition facts for carrots", - "nutrition_info" - ], - [ - "please give me the nutritional information for an egg", - "nutrition_info" - ], - [ - "what's the nutrition info for a pound of chicken", - "nutrition_info" - ], - [ - "tell me the nutrition info for a cup of milk", - "nutrition_info" - ], - [ - "what's the nutrition info for a cucumber", - "nutrition_info" - ], - [ - "give me the nutritional details for a cup of yogurt", - "nutrition_info" - ], - [ - "i need the nutrition facts for ramen", - "nutrition_info" - ], - [ - "tell me the nutrition facts for shepherd's pie", - "nutrition_info" - ], - [ - "i would like nutrition facts for spaghetti carbonara", - "nutrition_info" - ], - [ - "tell me spaghetti bolognese's nutrition facts", - "nutrition_info" - ], - [ - "i want the nutrition facts for buttered spaghetti", - "nutrition_info" - ], - [ - "do i have my nephew's birthday marked for november 10th", - "calendar" - ], - [ - "do i have any appoints set for my calendar april 3rd", - "calendar" - ], - [ - "did i set march 10th as my doctor's appointment", - "calendar" - ], - [ - "do i have any appointments on my calendar march 22nd", - "calendar" - ], - [ - "did i set a day on my calendar for voting in the next election", - "calendar" - ], - [ - "did i mark the mechanic's appointment on my calendar", - "calendar" - ], - [ - "do i have any calendars set for may 12th", - "calendar" - ], - [ - "what day did i set on my calendar for the first day of school", - "calendar" - ], - [ - "is anything on my calendar for june 22nd", - "calendar" - ], - [ - "what do i have going on on my calendar for march 18th", - "calendar" - ], - [ - "is my meeting with frank on my calendar", - "calendar" - ], - [ - "what do i have planned for 3/5", - "calendar" - ], - [ - "have i gotten around to adding the bike ride to my calendar yet", - "calendar" - ], - [ - "what events do i have going on on march 11th", - "calendar" - ], - [ - "i can't remember if i added the fun run to my calendar yet; did i", - "calendar" - ], - [ - "have i added my doctor's appointment to my calendar", - "calendar" - ], - [ - "do i have calendar events on march 19th", - "calendar" - ], - [ - "read my calendar for march 7th", - "calendar" - ], - [ - "do i have any items on my calendar for march 21st", - "calendar" - ], - [ - "do i have any calendar entries for march 8th", - "calendar" - ], - [ - "tell me what's on my calendar for march 22nd", - "calendar" - ], - [ - "is the marathon on friday added to my calendar", - "calendar" - ], - [ - "what's on my calendar for march 20th", - "calendar" - ], - [ - "what's on my calendar on march 10th", - "calendar" - ], - [ - "check my calendar for me, please", - "calendar" - ], - [ - "is event on my calendar", - "calendar" - ], - [ - "retrieve events on my calendar", - "calendar" - ], - [ - "is bowling on my calendar", - "calendar" - ], - [ - "on tuesday you are supposed to have a meeting", - "calendar" - ], - [ - "you have yo go to school on calendar", - "calendar" - ], - [ - "i'd like an uber for 6 people, going to walmart", - "uber" - ], - [ - "can you get me an uber to disney world", - "uber" - ], - [ - "get me an uber for 3 people uptown", - "uber" - ], - [ - "i need to go downtown with 2 people; can you get me an uber", - "uber" - ], - [ - "i'm going to need to book an uber to universal studios", - "uber" - ], - [ - "i need to get four people to red lobster; can you order me an uber", - "uber" - ], - [ - "i'm going to need an uber for 4 people to go to patty's bar", - "uber" - ], - [ - "i need to get to the staples center; can you call me an uber", - "uber" - ], - [ - "find me an uber to the liberty bell", - "uber" - ], - [ - "i need an uber to madison square garden", - "uber" - ], - [ - "i need an uber to get to the bank", - "uber" - ], - [ - "can i get an uber to drive me to the movies", - "uber" - ], - [ - "contact uber and have them pick me up", - "uber" - ], - [ - "can i take an uber to the statue of liberty", - "uber" - ], - [ - "i need an uber for 5 to go to the concerthall", - "uber" - ], - [ - "get a uber for two to go to a romantic dinner at mcdonalds", - "uber" - ], - [ - "please call an uber for 6 people to go to amazon's southside warehouse", - "uber" - ], - [ - "find me an uber and get it here", - "uber" - ], - [ - "is there an uber that drives to the bank on 5th that can hold 3 people", - "uber" - ], - [ - "we'd like an uber for 4 to take us to the olive garden", - "uber" - ], - [ - "i want an uber for one person to go to bank of america", - "uber" - ], - [ - "can i get an uber for 2 to go to austin", - "uber" - ], - [ - "call me an uber please", - "uber" - ], - [ - "is it possible to take an uber to burger king", - "uber" - ], - [ - "book me an uber for a party of 5 to the salvage yard off maple", - "uber" - ], - [ - "i need an uber for 5 people to go to the statue of liberty", - "uber" - ], - [ - "i want an uber to take me to walmart", - "uber" - ], - [ - "have an uber sent to take me to the courthouse", - "uber" - ], - [ - "call an uber to take a group of 4 from this bar to the one on maple st", - "uber" - ], - [ - "i'm too drunk to drive and need an uber home", - "uber" - ], - [ - "what is 300 divided by 42", - "calculator" - ], - [ - "what is 400 times 2", - "calculator" - ], - [ - "what is the average of 54, 23, 43, 12, and 442", - "calculator" - ], - [ - "add 45 to 87 plus 54 plus 43 plus 22", - "calculator" - ], - [ - "what is 48 multiplied by 4 divided by 2", - "calculator" - ], - [ - "what is 25% of $54,788", - "calculator" - ], - [ - "what is the square root of 95", - "calculator" - ], - [ - "what is 1100 minus 2347", - "calculator" - ], - [ - "tell me what 1875 plus 3459 equals", - "calculator" - ], - [ - "tell me the answer to 1000 divided by 40", - "calculator" - ], - [ - "what is 1000 plus 745", - "calculator" - ], - [ - "i need to know the answer to 10000 multiplied by 44", - "calculator" - ], - [ - "what is 100 multiplied by 55", - "calculator" - ], - [ - "what's 15% of 68", - "calculator" - ], - [ - "what's 47 times 83", - "calculator" - ], - [ - "if something is 15% off $35, how much is it", - "calculator" - ], - [ - "how many times can 3 be divided into 1253", - "calculator" - ], - [ - "divide 100 by 12", - "calculator" - ], - [ - "find square root of 453", - "calculator" - ], - [ - "what is 1243 times 45", - "calculator" - ], - [ - "find the square root of 1243435", - "calculator" - ], - [ - "what is the square root of 36", - "calculator" - ], - [ - "what is 592 minus 124", - "calculator" - ], - [ - "i need to know what 25 times 38 is", - "calculator" - ], - [ - "can you calculate the square root of 172", - "calculator" - ], - [ - "i bought 6 shirts at $499 each what was my total expenditure for them", - "calculator" - ], - [ - "i spent 34 dollars for 12 gallons of paint what is the average price for each gallon", - "calculator" - ], - [ - "what is the sum of eleven and ten", - "calculator" - ], - [ - "what is the solution to sixty times thirty", - "calculator" - ], - [ - "how do i ask the ai to help me with math problem", - "calculator" - ], - [ - "date please", - "date" - ], - [ - "what is the current day", - "date" - ], - [ - "which day is it now", - "date" - ], - [ - "what's the name of the day today", - "date" - ], - [ - "what is the day now", - "date" - ], - [ - "what day are we in", - "date" - ], - [ - "tell me what tomorrow's date is", - "date" - ], - [ - "please tell me what the date is tomorrow", - "date" - ], - [ - "let me know what tomorrow's date is", - "date" - ], - [ - "let me know the date tomorrow", - "date" - ], - [ - "i need to know tomorrow's date", - "date" - ], - [ - "please tell me what today is", - "date" - ], - [ - "tell me the date, please", - "date" - ], - [ - "tell me the date 5 days from now", - "date" - ], - [ - "tell me what the date will be in 5 days", - "date" - ], - [ - "what is the date in 5 days", - "date" - ], - [ - "in 5 days from today, what will the date be", - "date" - ], - [ - "what would the date be 5 days from today", - "date" - ], - [ - "what day it today", - "date" - ], - [ - "what will tomorrow be on the calendar", - "date" - ], - [ - "what date will it be tomorrow", - "date" - ], - [ - "what date is it tomorrow", - "date" - ], - [ - "what is the date of tomorrow", - "date" - ], - [ - "what's tomorrow's date", - "date" - ], - [ - "what's the date today", - "date" - ], - [ - "give me today's date", - "date" - ], - [ - "tell me today's date", - "date" - ], - [ - "what's the date", - "date" - ], - [ - "today is which day of the week", - "date" - ], - [ - "today is what day of the week", - "date" - ], - [ - "what restrictions do they have for carry-on", - "carry_on" - ], - [ - "ist all carry-on restrictions applicable to my flight", - "carry_on" - ], - [ - "what are the size limits regarding-carry on bags", - "carry_on" - ], - [ - "how many bags can i carry-on", - "carry_on" - ], - [ - "can i bring perfume on the plane or what is the size limit", - "carry_on" - ], - [ - "what are the rules for traveling with toothpaste", - "carry_on" - ], - [ - "can i bring suntan lotion in my carry on", - "carry_on" - ], - [ - "can i fly with my razors or are there restrictions", - "carry_on" - ], - [ - "are there restrictions for carrying lighters in my backpack on a plane", - "carry_on" - ], - [ - "how many carry ons can i take on a flight with american airlines to japan", - "carry_on" - ], - [ - "how many carry ons can i take on a flight with panam to wales", - "carry_on" - ], - [ - "what is the carry-on policy for flights on panam", - "carry_on" - ], - [ - "what is the carry-on policy for flights on lufthansa", - "carry_on" - ], - [ - "what is the carry-on policy for flights on delta airlines", - "carry_on" - ], - [ - "how many carry ons can i take on a flight with southwestern to tampa", - "carry_on" - ], - [ - "how many carry ons can i take on a flight with delta to seattle", - "carry_on" - ], - [ - "how many carry ons can i take on a flight with united airlines to austin", - "carry_on" - ], - [ - "what is the carry-on policy for flights on the airline called jetblue", - "carry_on" - ], - [ - "i need to know the carry-on rules for southwest", - "carry_on" - ], - [ - "tell me the carry-on rules for my flight", - "carry_on" - ], - [ - "i am flying to finland and wanna know the carry-on rules", - "carry_on" - ], - [ - "what is the carry-on policy for flights on southwest", - "carry_on" - ], - [ - "i need to know the the carry-on restrictions for american airlines", - "carry_on" - ], - [ - "what is the carry-on policy for flights on transaero", - "carry_on" - ], - [ - "what is the carry-on policy for flights on jetblue", - "carry_on" - ], - [ - "i gotta know the the carry-on restrictions for american airlines", - "carry_on" - ], - [ - "what is the carry-on policy for flights on american airlines", - "carry_on" - ], - [ - "i must know the the carry-on restrictions for american airlines", - "carry_on" - ], - [ - "i wanna know the carry-on rules for the flight i have", - "carry_on" - ], - [ - "tell me the the carry-on restrictions for american airlines", - "carry_on" - ], - [ - "how many days did i take off", - "pto_used" - ], - [ - "tell me how many days i took off", - "pto_used" - ], - [ - "so how many days did i take off sir", - "pto_used" - ], - [ - "so how many days did i take off", - "pto_used" - ], - [ - "i need to know how many days i toof off", - "pto_used" - ], - [ - "what is the total number of days that i have taken off work since january", - "pto_used" - ], - [ - "how many days off have i taken so far this year", - "pto_used" - ], - [ - "i want to know how many days off are listed on my time off sheet that i have taken this year", - "pto_used" - ], - [ - "tell me how many days off you see that i have taken so far this year please", - "pto_used" - ], - [ - "can you look and see how many days off i have taken so far since january", - "pto_used" - ], - [ - "check how many days off i've taken", - "pto_used" - ], - [ - "how many hours of pto have i used", - "pto_used" - ], - [ - "how much pto is gone", - "pto_used" - ], - [ - "see how many days i've taken off so far", - "pto_used" - ], - [ - "how much of my pto is left", - "pto_used" - ], - [ - "how much of my pto is gone", - "pto_used" - ], - [ - "please let me know how many days i've taken off", - "pto_used" - ], - [ - "what is the amount of my taken off days so far", - "pto_used" - ], - [ - "i need to know how many days off i have used so far", - "pto_used" - ], - [ - "how many days off have i taken until right now", - "pto_used" - ], - [ - "notify me how many days off i have used so far", - "pto_used" - ], - [ - "tell me how many days off i have taken so far", - "pto_used" - ], - [ - "i want to know how many days off i have utilized until now", - "pto_used" - ], - [ - "how much so far pto have i used", - "pto_used" - ], - [ - "i have used how much pto so far", - "pto_used" - ], - [ - "pto i have used so far is how much", - "pto_used" - ], - [ - "pto so far i have used is how much", - "pto_used" - ], - [ - "so far how much pto have i used", - "pto_used" - ], - [ - "how many vacation days i have used", - "pto_used" - ], - [ - "i want to know how many vacation days i have used", - "pto_used" - ], - [ - "can you see if i can make an appointment to have my oil changed", - "schedule_maintenance" - ], - [ - "find out the next available date and time i can go to get my oil changed please", - "schedule_maintenance" - ], - [ - "can you let me know the next open slot for me to get my oil changed", - "schedule_maintenance" - ], - [ - "i need to make an appointment for an oil change, please", - "schedule_maintenance" - ], - [ - "what is the next date for which i can get an oil change appointment", - "schedule_maintenance" - ], - [ - "i need a aaa service place to make an appointment for my tires to be assessed", - "schedule_maintenance" - ], - [ - "my auto tires need to be checked out so where can i get an appointment", - "schedule_maintenance" - ], - [ - "where can i go to have my tires checked out", - "schedule_maintenance" - ], - [ - "i need an appointment for someone to check out my check engine light being on", - "schedule_maintenance" - ], - [ - "my check engine light is on so is anyone available to check it out for me", - "schedule_maintenance" - ], - [ - "can someone take a look at my car because the check engine light is on", - "schedule_maintenance" - ], - [ - "do you have time today for someone to look at my car because the check engine light is on", - "schedule_maintenance" - ], - [ - "find a place near me to have my tires inspected", - "schedule_maintenance" - ], - [ - "where can i get a appointment for a tire check for the car", - "schedule_maintenance" - ], - [ - "i need to bring my car in because the check engine light is staying lit", - "schedule_maintenance" - ], - [ - "can i get someone to check my check engine light", - "schedule_maintenance" - ], - [ - "can someone tell me why my check engine light is on", - "schedule_maintenance" - ], - [ - "my check engine light is on, i need someone to look at it", - "schedule_maintenance" - ], - [ - "can someone look at my check engine light", - "schedule_maintenance" - ], - [ - "my check engine light is on and i need someone to look at it", - "schedule_maintenance" - ], - [ - "will someone please look at my check engine light that is on", - "schedule_maintenance" - ], - [ - "can someone look at my check engine light that's on", - "schedule_maintenance" - ], - [ - "could someone look at my check engine light that's on", - "schedule_maintenance" - ], - [ - "can i get someone to look at my check engine light that is on", - "schedule_maintenance" - ], - [ - "should i schedule a car maintenance", - "schedule_maintenance" - ], - [ - "should i go to a car maintenance", - "schedule_maintenance" - ], - [ - "should i call a car maintenance", - "schedule_maintenance" - ], - [ - "may i schedule a car maintenance", - "schedule_maintenance" - ], - [ - "should i take my car to a maintenance", - "schedule_maintenance" - ], - [ - "can i make a car maintenance appointment", - "schedule_maintenance" - ], - [ - "i will be traveling to lima alert my bank", - "travel_notification" - ], - [ - "assure my bank i really am going to california", - "travel_notification" - ], - [ - "please tell my bank i'm traveling to mexico between next wednesday for a week after", - "travel_notification" - ], - [ - "please inform my bank i'll be vacationing in the bahamas in a couple of days", - "travel_notification" - ], - [ - "i'm going to be in mexico from thursday to friday, so can you let my bank know", - "travel_notification" - ], - [ - "please kindly inform my bank i'm going to be in canada from next week to two weeks after", - "travel_notification" - ], - [ - "let my bank know i'll be in ireland from may 01, 2019 to august 02, 2019", - "travel_notification" - ], - [ - "alert my bank i'm checking out seattle for the next month", - "travel_notification" - ], - [ - "i'm going to brazil soon and want to let my bank now", - "travel_notification" - ], - [ - "i'm leaving for montreal tomorrow and need to let my bank know", - "travel_notification" - ], - [ - "inform my bank i'm traveling to australia between february 23rd to february 25th", - "travel_notification" - ], - [ - "please tell my bank i'll be in anchorage this week", - "travel_notification" - ], - [ - "i need to tell my bank i am, indeed, going to be in london in a few hours", - "travel_notification" - ], - [ - "please alert my bank i'm going to be in the caymans from may 1st to june 2nd", - "travel_notification" - ], - [ - "let my bank know i actually am visiting brazil", - "travel_notification" - ], - [ - "i'll be travelling to russia from april 1 through april 20 and need my financial institute apprised of it", - "travel_notification" - ], - [ - "please alert my bank i'm traveling to europe between april 1st and 5th", - "travel_notification" - ], - [ - "tell my bank's fraud department i'm going to mexico", - "travel_notification" - ], - [ - "please notify my bank i'm going to africa between tomorrow and next tuesday", - "travel_notification" - ], - [ - "tell my bank i'm in canada the entire week of the 6th to the 13th", - "travel_notification" - ], - [ - "inform my bank i'm seeing italy", - "travel_notification" - ], - [ - "can you notify my bank that i will be traveling to mexico between march 1st and 15th", - "travel_notification" - ], - [ - "please let my bank know that i will be visiting spain from june 12th to the 24th", - "travel_notification" - ], - [ - "i need you to make my bank aware that i will be visiting taiwan from the 22nd of february until the 3rd of march", - "travel_notification" - ], - [ - "send a notification to my bank of my travel dates from february 19th to 26th to peru", - "travel_notification" - ], - [ - "alert my bank of my travel to dubai for the dates april 14th through april 22nd", - "travel_notification" - ], - [ - "from sunday to wednesday, i will be in oakland, so should i call my bank to let them know", - "travel_notification" - ], - [ - "my bank needs to know about my traveling to georgia in europe", - "travel_notification" - ], - [ - "must call my bank about my travel plans", - "travel_notification" - ], - [ - "contact bank and let them know about my travel plans", - "travel_notification" - ], - [ - "i want my phone to be disconnected from you", - "sync_device" - ], - [ - "i would like for my phone to be synced with you", - "sync_device" - ], - [ - "can you connect to my phone", - "sync_device" - ], - [ - "i would like for you to unsync my phone", - "sync_device" - ], - [ - "i no longer want you to be synced to my phone", - "sync_device" - ], - [ - "i do not want my phone synced anymore", - "sync_device" - ], - [ - "i want you paired to my phone", - "sync_device" - ], - [ - "please sync up with my phone", - "sync_device" - ], - [ - "can you pair yourself with my phone please", - "sync_device" - ], - [ - "can you please disconnect from my phone", - "sync_device" - ], - [ - "remove the connection to my phone", - "sync_device" - ], - [ - "can you sync up with my phone", - "sync_device" - ], - [ - "i want you to connect to my handset", - "sync_device" - ], - [ - "pair yourself to my phone if you can", - "sync_device" - ], - [ - "connect to my device", - "sync_device" - ], - [ - "can you link up with my phone", - "sync_device" - ], - [ - "can you disconnect yourself from my phone", - "sync_device" - ], - [ - "don't be synced to my phone anymore", - "sync_device" - ], - [ - "can you get paired to my phone right away", - "sync_device" - ], - [ - "i don't want you connected to my phone anymore", - "sync_device" - ], - [ - "please get connected to my phone", - "sync_device" - ], - [ - "i don't want you synced to my phone anymore", - "sync_device" - ], - [ - "sync with my phone please", - "sync_device" - ], - [ - "please unsync from my phone right now", - "sync_device" - ], - [ - "unsync yourself from my device", - "sync_device" - ], - [ - "please connect yourself to my main phone", - "sync_device" - ], - [ - "unsync from my phone please", - "sync_device" - ], - [ - "don't be connected to my phone anymore", - "sync_device" - ], - [ - "disconnect from my device please", - "sync_device" - ], - [ - "alexa, connect to the phone now", - "sync_device" - ], - [ - "thank you ever so much for that!", - "thank_you" - ], - [ - "you\u2019re the best thanks so much!", - "thank_you" - ], - [ - "thanks for helping", - "thank_you" - ], - [ - "i am grateful for the help", - "thank_you" - ], - [ - "thank you for the heip", - "thank_you" - ], - [ - "i apprecaite the help from you", - "thank_you" - ], - [ - "thanks that was really helpful", - "thank_you" - ], - [ - "thank you for your time and trying to help", - "thank_you" - ], - [ - "thank you for your assistance", - "thank_you" - ], - [ - "thanks for all your help", - "thank_you" - ], - [ - "thanks for trying", - "thank_you" - ], - [ - "many thank", - "thank_you" - ], - [ - "thanks a million", - "thank_you" - ], - [ - "thank a bunch", - "thank_you" - ], - [ - "i appeciate it", - "thank_you" - ], - [ - "i would like to thank you ai", - "thank_you" - ], - [ - "ai you have given me so much information, thank you", - "thank_you" - ], - [ - "thanks so much ai", - "thank_you" - ], - [ - "thank you ai for everything you do", - "thank_you" - ], - [ - "ai is a helpful item to have in my home, thank you", - "thank_you" - ], - [ - "thank you very much", - "thank_you" - ], - [ - "that answer was very helpful, thanks", - "thank_you" - ], - [ - "great, thanks!", - "thank_you" - ], - [ - "thanks for your help!", - "thank_you" - ], - [ - "thanks so much", - "thank_you" - ], - [ - "thanks for that answer", - "thank_you" - ], - [ - "thank you for that reply", - "thank_you" - ], - [ - "thanks for the reply", - "thank_you" - ], - [ - "thanks for that response", - "thank_you" - ], - [ - "thank you for that response", - "thank_you" - ], - [ - "how much do you get when you roll an eight sided die", - "roll_dice" - ], - [ - "i need a dice roll for a six sided die", - "roll_dice" - ], - [ - "roll a dice that has seven sides", - "roll_dice" - ], - [ - "roll the five sided die", - "roll_dice" - ], - [ - "what is the result when you roll a four sided die", - "roll_dice" - ], - [ - "roll a fourteen sided dice exactly", - "roll_dice" - ], - [ - "please roll twelve sided dice", - "roll_dice" - ], - [ - "can i have a 2 sided dice", - "roll_dice" - ], - [ - "roll a 9 sided dice", - "roll_dice" - ], - [ - "roll five sided dice", - "roll_dice" - ], - [ - "roll those dice once", - "roll_dice" - ], - [ - "throw a roll of the dice", - "roll_dice" - ], - [ - "make a roll of the dice", - "roll_dice" - ], - [ - "ai pick up the dice, then drop it", - "roll_dice" - ], - [ - "ai toss the dice", - "roll_dice" - ], - [ - "ai roll the dice", - "roll_dice" - ], - [ - "ai throw the dice on the table", - "roll_dice" - ], - [ - "ai shake the dice in a cup, then throw dice on table", - "roll_dice" - ], - [ - "can you roll a four sided die and tell me the result", - "roll_dice" - ], - [ - "roll a six sided die for me and tell me the result", - "roll_dice" - ], - [ - "roll a die please", - "roll_dice" - ], - [ - "can you roll an eight sided die and tell me what it comes up as", - "roll_dice" - ], - [ - "can you simulate a dice roll", - "roll_dice" - ], - [ - "can you roll a ten sided die and tell me the number", - "roll_dice" - ], - [ - "roll a four sided die for me", - "roll_dice" - ], - [ - "simulate rolling a dice and tell me what it lands on", - "roll_dice" - ], - [ - "can you roll a die for me", - "roll_dice" - ], - [ - "can you fake roll a die for me", - "roll_dice" - ], - [ - "what's the result of a 10-sided dice roll", - "roll_dice" - ], - [ - "can you roll a 10-sided dice for me", - "roll_dice" - ], - [ - "how soon milk expires", - "food_last" - ], - [ - "when does milk will go bad", - "food_last" - ], - [ - "how many days milk can be preserved", - "food_last" - ], - [ - "what is expire of milk", - "food_last" - ], - [ - "when is the milk date before used", - "food_last" - ], - [ - "when does the jerky expire", - "food_last" - ], - [ - "what is the expiration date for honey", - "food_last" - ], - [ - "when is the egg expired", - "food_last" - ], - [ - "when does the honey expire", - "food_last" - ], - [ - "what is the expiration date for those eg", - "food_last" - ], - [ - "how long can i freeze tofu before it goes bad", - "food_last" - ], - [ - "how much time do i have to keep tofu in the freezer before it goes bad", - "food_last" - ], - [ - "when will tofu expire if i keep it in the freezer", - "food_last" - ], - [ - "how long will tofu last in the freezer before it expires", - "food_last" - ], - [ - "does tofu last long in the freezer before it goes bad", - "food_last" - ], - [ - "how many days later is it okay to eat curry that was in the fridge", - "food_last" - ], - [ - "within what time is is fine to eat cooked tilapia kept in the fridge", - "food_last" - ], - [ - "what is the most amount of time that is considered safe to store uncooked chicken in the fridge", - "food_last" - ], - [ - "what length of time is safe for consuming leftover meatloaf stored in the fridge", - "food_last" - ], - [ - "what is the longest i can leave meatballs in sauce in the freezer before it is no longer safe to eat", - "food_last" - ], - [ - "can i store bread in the freezer indefinitely and it will still be okay", - "food_last" - ], - [ - "after how much time is it still safe to drink milk that is in the fridge", - "food_last" - ], - [ - "what is the most time i can keep a burrito frozen for before it's no good to eat", - "food_last" - ], - [ - "roughly how long can i leave bananas in the freezer before i have to throw them out", - "food_last" - ], - [ - "how long does chicken curry last in the freezer before it's spoiled", - "food_last" - ], - [ - "milk can stay in my fridge for how long", - "food_last" - ], - [ - "milk will go bad in my fridge when", - "food_last" - ], - [ - "what is the amount of time to keep milk refrigerated", - "food_last" - ], - [ - "tell me how long milk stays good in the fridge", - "food_last" - ], - [ - "how long can i keep milk in the fridge", - "food_last" - ], - [ - "how long to grill thick steaks", - "cook_time" - ], - [ - "how long does pizza take", - "cook_time" - ], - [ - "lasagna takes how long to cook", - "cook_time" - ], - [ - "bake time for brownies", - "cook_time" - ], - [ - "how many minutes are involved in the preparation of curry", - "cook_time" - ], - [ - "what's the preparation time for this dish", - "cook_time" - ], - [ - "what is the proper cooking time for this", - "cook_time" - ], - [ - "how long do i cook this for", - "cook_time" - ], - [ - "look up recipe time for this", - "cook_time" - ], - [ - "how many minutes should i put meal the cake in the oven", - "cook_time" - ], - [ - "what's the average cooking time for cooking wings", - "cook_time" - ], - [ - "how many minutes should i set an alarm for this bake", - "cook_time" - ], - [ - "when can i expect meal of salmon to be finished", - "cook_time" - ], - [ - "how long does it take to cook meal of tuscan", - "cook_time" - ], - [ - "tell me how long it will take to prepare a lasagna", - "cook_time" - ], - [ - "i want to cook a lasagna please tell me how long it will take", - "cook_time" - ], - [ - "how long will it take to cook a lasagna", - "cook_time" - ], - [ - "can you tell me how long it will take to cook a lasagna", - "cook_time" - ], - [ - "how long does it take to prepare a lasagna", - "cook_time" - ], - [ - "how long do i need to cook chicken", - "cook_time" - ], - [ - "how long should i boil eggs", - "cook_time" - ], - [ - "how long should i bake a cake", - "cook_time" - ], - [ - "how long does it take to cook steaks", - "cook_time" - ], - [ - "how long does it take to bake a cake", - "cook_time" - ], - [ - "how long should i cook the cookie dough", - "cook_time" - ], - [ - "how long should i cook my turkey", - "cook_time" - ], - [ - "how long do i boil eggs", - "cook_time" - ], - [ - "how long does it take to make mashed potatoes", - "cook_time" - ], - [ - "how long will it take to make an omelet", - "cook_time" - ], - [ - "what are the minutes needed to cook the meal", - "cook_time" - ], - [ - "i want to be reminded to pay the electric bill", - "reminder_update" - ], - [ - "don't forget to tell me to call my mother", - "reminder_update" - ], - [ - "remind me to put gas in my car", - "reminder_update" - ], - [ - "set a reminder to buy bread", - "reminder_update" - ], - [ - "make a reminder to pay the mortgage", - "reminder_update" - ], - [ - "create a reminder to wash the dishes", - "reminder_update" - ], - [ - "create a reminder to change my oil", - "reminder_update" - ], - [ - "set a reminder for when the turkey is finished cooking", - "reminder_update" - ], - [ - "make a reminder to pay my cable bill today", - "reminder_update" - ], - [ - "i need a reminder to give the dog his medicine at ten tonight", - "reminder_update" - ], - [ - "i don't want to forget to call mom", - "reminder_update" - ], - [ - "i need a reminder to wash dishes", - "reminder_update" - ], - [ - "remind me to exercise", - "reminder_update" - ], - [ - "help me to remember to pick up stan later", - "reminder_update" - ], - [ - "tell me later to call bill", - "reminder_update" - ], - [ - "i need to be reminded to do something", - "reminder_update" - ], - [ - "set up a new reminder to alert me when it's time to put the trash out", - "reminder_update" - ], - [ - "can you remind me to finish a task", - "reminder_update" - ], - [ - "please set up a reminder for me", - "reminder_update" - ], - [ - "i would like you to remind me to do something", - "reminder_update" - ], - [ - "i need a reminder to take dinner out of the oven", - "reminder_update" - ], - [ - "create a new reminder to study for my final exams", - "reminder_update" - ], - [ - "i need a reminder to alert me to wish my mom a happy birthday", - "reminder_update" - ], - [ - "are you able to remind me about something", - "reminder_update" - ], - [ - "set up a reminder so i don't forget the baby shower this weekend", - "reminder_update" - ], - [ - "set a reminder for me to let the plumber in tomorrow", - "reminder_update" - ], - [ - "i need to set a reminder to call lisa for her birthday", - "reminder_update" - ], - [ - "i would like to set a reminder to bring the plants in tonight", - "reminder_update" - ], - [ - "can you set a reminder alarm for me to workout", - "reminder_update" - ], - [ - "please set a reminder for me to put the clothes in the dryer", - "reminder_update" - ], - [ - "i need to tell you about my lost card", - "report_lost_card" - ], - [ - "i lost my card, what do i do next", - "report_lost_card" - ], - [ - "i have lost my card, what am i supposed to do", - "report_lost_card" - ], - [ - "where do i report that my card was lost", - "report_lost_card" - ], - [ - "who do i speak with about my card that was lost", - "report_lost_card" - ], - [ - "please help me report my lost card", - "report_lost_card" - ], - [ - "set up a report for a lost card", - "report_lost_card" - ], - [ - "can you report a lost card for me", - "report_lost_card" - ], - [ - "i lost my card and need to report it", - "report_lost_card" - ], - [ - "what is the process for reporting my card as lost", - "report_lost_card" - ], - [ - "someone used my chase card without my authorization", - "report_lost_card" - ], - [ - "can you tell me how to report a card lost", - "report_lost_card" - ], - [ - "please tell me how to go about reporting a lost card", - "report_lost_card" - ], - [ - "search steps for how to report a card lost", - "report_lost_card" - ], - [ - "i need to to know how to report a lost card", - "report_lost_card" - ], - [ - "my bank of america visa platinum was swiped from my belongings", - "report_lost_card" - ], - [ - "who do i call to report my card as lost", - "report_lost_card" - ], - [ - "what should i do if i need to report my card lost", - "report_lost_card" - ], - [ - "my capital one visa was taken without permission", - "report_lost_card" - ], - [ - "i need to report that someone ran off with my td bank card earlier", - "report_lost_card" - ], - [ - "what steps do i need to take to report a card lost", - "report_lost_card" - ], - [ - "i would like to report my american express card stolen", - "report_lost_card" - ], - [ - "how do i report that i lost my card", - "report_lost_card" - ], - [ - "how do i report that i actually lost my card", - "report_lost_card" - ], - [ - "how do i report that i lost the card", - "report_lost_card" - ], - [ - "how do i report my very lost card", - "report_lost_card" - ], - [ - "how do i report the card as lost", - "report_lost_card" - ], - [ - "lost report card, need new one", - "report_lost_card" - ], - [ - "my report card was stolen", - "report_lost_card" - ], - [ - "my report card was lost help!", - "report_lost_card" - ], - [ - "can i swap chili for sloppy joe mix in the recipe", - "ingredient_substitution" - ], - [ - "can i use sugar instead of salt", - "ingredient_substitution" - ], - [ - "can i use apples instead of oranges in this recipe", - "ingredient_substitution" - ], - [ - "can i use skim milk instead of 2% in the recipe", - "ingredient_substitution" - ], - [ - "is it ok to use bananas instead of oranges in the recipe", - "ingredient_substitution" - ], - [ - "can i use lettuce instead of rice", - "ingredient_substitution" - ], - [ - "will peas work instead of carrots", - "ingredient_substitution" - ], - [ - "is it possible to use baking soda instead of flour", - "ingredient_substitution" - ], - [ - "can i just use oil instead of vinegar", - "ingredient_substitution" - ], - [ - "can i use mayo instead of miracle whip", - "ingredient_substitution" - ], - [ - "will this recipe still be good if i use milk instead of eggs", - "ingredient_substitution" - ], - [ - "can i use oil instead of vinegar", - "ingredient_substitution" - ], - [ - "can i sub bacon for ham", - "ingredient_substitution" - ], - [ - "can i use pasta sauce instead of tomato paste", - "ingredient_substitution" - ], - [ - "can i use regular olive oil instead of virgin", - "ingredient_substitution" - ], - [ - "is it possible to use starch instead of flour", - "ingredient_substitution" - ], - [ - "is it okay to use butter instead of margarine", - "ingredient_substitution" - ], - [ - "will it be ok to sub turkey for beef", - "ingredient_substitution" - ], - [ - "can i use butter instead of margarine", - "ingredient_substitution" - ], - [ - "is it okay to use applesauce instead of oil", - "ingredient_substitution" - ], - [ - "if i use applesauce instead of oil, will that mess it up", - "ingredient_substitution" - ], - [ - "can i swap applesauce for oil", - "ingredient_substitution" - ], - [ - "is it alright to switch applesauce for oil", - "ingredient_substitution" - ], - [ - "will it still work if i use applesauce instead of oil", - "ingredient_substitution" - ], - [ - "would it be ok to use butter instead of oil", - "ingredient_substitution" - ], - [ - "is it ok to use oil spray instead of canola oil", - "ingredient_substitution" - ], - [ - "could steak be used instead of chicken", - "ingredient_substitution" - ], - [ - "can i substitute butter for oil", - "ingredient_substitution" - ], - [ - "can i use red onions instead of white", - "ingredient_substitution" - ], - [ - "can i get peppers instead of onions", - "ingredient_substitution" - ], - [ - "i need to call my dad", - "make_call" - ], - [ - "i need to call my friend", - "make_call" - ], - [ - "i need to call my coworker", - "make_call" - ], - [ - "i need to call my mom", - "make_call" - ], - [ - "i need to call my boss", - "make_call" - ], - [ - "i need you to call the phone company for me", - "make_call" - ], - [ - "make a call for me to the vet", - "make_call" - ], - [ - "dial up dominos pizza", - "make_call" - ], - [ - "call my doctor", - "make_call" - ], - [ - "get mom on the phone", - "make_call" - ], - [ - "please make a call to stefan larson", - "make_call" - ], - [ - "use phone to call alexa", - "make_call" - ], - [ - "computer, call alexa", - "make_call" - ], - [ - "computer, place a call to alexa", - "make_call" - ], - [ - "can you call alexa", - "make_call" - ], - [ - "call alexa at home", - "make_call" - ], - [ - "i would like to make a call to sal", - "make_call" - ], - [ - "i would like to make a phone call", - "make_call" - ], - [ - "can i make a phone call", - "make_call" - ], - [ - "i need to make a call", - "make_call" - ], - [ - "i need you to phone sal", - "make_call" - ], - [ - "i need to call sal", - "make_call" - ], - [ - "i have to make a phone call", - "make_call" - ], - [ - "i have to use the phone to make a call", - "make_call" - ], - [ - "could you call sal", - "make_call" - ], - [ - "call sal", - "make_call" - ], - [ - "x needs to be called by me", - "make_call" - ], - [ - "call to mom", - "make_call" - ], - [ - "call mom", - "make_call" - ], - [ - "dial her up", - "make_call" - ], - [ - "i want to set an alarm", - "alarm" - ], - [ - "set an alarm for 6 am tomorrow", - "alarm" - ], - [ - "set an alarm for 8 tomorrow", - "alarm" - ], - [ - "please set an alarm", - "alarm" - ], - [ - "i'd love to set an alarm", - "alarm" - ], - [ - "i would like to have an alarm set for me", - "alarm" - ], - [ - "i want an alarm set", - "alarm" - ], - [ - "i need to set an alarm", - "alarm" - ], - [ - "set an alarm for ten tomorrow", - "alarm" - ], - [ - "set an alarm for 11 tomorrow", - "alarm" - ], - [ - "i want an alarm for 6 am", - "alarm" - ], - [ - "set an alarm for me", - "alarm" - ], - [ - "i wanna have an alarm", - "alarm" - ], - [ - "i need an alarm set now", - "alarm" - ], - [ - "set an alarm for 9 tomorrow", - "alarm" - ], - [ - "don't forget to set an alarm for noon", - "alarm" - ], - [ - "can you set the alarm for noon", - "alarm" - ], - [ - "i need to up by noon", - "alarm" - ], - [ - "can you wake me up at noon", - "alarm" - ], - [ - "set alarm for noon", - "alarm" - ], - [ - "wake me up with an alarm at 6am", - "alarm" - ], - [ - "help me wake up with an alarm at 5:30am", - "alarm" - ], - [ - "set an alarm to wake me up at 5:30am", - "alarm" - ], - [ - "set an alarm for 5am", - "alarm" - ], - [ - "please set the alarm", - "alarm" - ], - [ - "please make sure the alarm is set", - "alarm" - ], - [ - "could you set the alarm", - "alarm" - ], - [ - "set the alarm now", - "alarm" - ], - [ - "can you set an alarm", - "alarm" - ], - [ - "i need an alarm", - "alarm" - ], - [ - "what's on my todo list", - "todo_list" - ], - [ - "let me hear my todo list", - "todo_list" - ], - [ - "did i add \"cleaning the foyer\" to my todo list yet", - "todo_list" - ], - [ - "did i put grocery shopping on my todo list", - "todo_list" - ], - [ - "give me my todo list", - "todo_list" - ], - [ - "what things are on my todo list", - "todo_list" - ], - [ - "have i told you to add washing dishes to my todo list", - "todo_list" - ], - [ - "is laundry on my todo list", - "todo_list" - ], - [ - "read my todo list", - "todo_list" - ], - [ - "list my todo list items", - "todo_list" - ], - [ - "is \"cleaning the bathroom\" an item on my todo list", - "todo_list" - ], - [ - "tell me what's on my todo list", - "todo_list" - ], - [ - "read my to-do list items", - "todo_list" - ], - [ - "check on my to-do list items", - "todo_list" - ], - [ - "check what is on my to-do list", - "todo_list" - ], - [ - "what items are on my list of to-dos", - "todo_list" - ], - [ - "what is on my to-do list", - "todo_list" - ], - [ - "what kind of things do i have to do today", - "todo_list" - ], - [ - "what's on my todo list for today", - "todo_list" - ], - [ - "please tell me my todo list", - "todo_list" - ], - [ - "is my todo list possible today", - "todo_list" - ], - [ - "i really want to know my todo list again thanks", - "todo_list" - ], - [ - "is it possible to read my to-do list again", - "todo_list" - ], - [ - "tell me my to-do list", - "todo_list" - ], - [ - "what is my to-do list like today", - "todo_list" - ], - [ - "list my to-do list", - "todo_list" - ], - [ - "give me my to-do list", - "todo_list" - ], - [ - "what must i do today", - "todo_list" - ], - [ - "is make a hair appointment on my todo list right now", - "todo_list" - ], - [ - "can you see if paying garbage bill is on my todo list for this week", - "todo_list" - ], - [ - "change the accent you're using", - "change_accent" - ], - [ - "start using a different accent", - "change_accent" - ], - [ - "talk to me in a different accent", - "change_accent" - ], - [ - "alter your accent", - "change_accent" - ], - [ - "change to the female voice", - "change_accent" - ], - [ - "i want to hear the female voice from now on", - "change_accent" - ], - [ - "i want the male voice", - "change_accent" - ], - [ - "could you use the female voice", - "change_accent" - ], - [ - "female voice please", - "change_accent" - ], - [ - "can you switch to the male voice", - "change_accent" - ], - [ - "the male voice please", - "change_accent" - ], - [ - "could you use the male voice", - "change_accent" - ], - [ - "i want the female voice", - "change_accent" - ], - [ - "i want you to change your accent", - "change_accent" - ], - [ - "would you please switch to the male voice", - "change_accent" - ], - [ - "i would like you to change your accent", - "change_accent" - ], - [ - "i want you to change to the male voice", - "change_accent" - ], - [ - "can you change to the male voice", - "change_accent" - ], - [ - "change to girl voice", - "change_accent" - ], - [ - "please switch to the girl voice", - "change_accent" - ], - [ - "change to the females voice please", - "change_accent" - ], - [ - "switch voice option to female", - "change_accent" - ], - [ - "change voice to female", - "change_accent" - ], - [ - "use the female voice", - "change_accent" - ], - [ - "change settings to sound like a female", - "change_accent" - ], - [ - "turn to the voice of the woman", - "change_accent" - ], - [ - "change to the woman voice", - "change_accent" - ], - [ - "i like the female voice, switch please", - "change_accent" - ], - [ - "speak with a male british accent", - "change_accent" - ], - [ - "would you change your voice to the male british accent for me", - "change_accent" - ], - [ - "what site can i get my w2", - "w2" - ], - [ - "where do we get our w2 forms", - "w2" - ], - [ - "where can i get my w2", - "w2" - ], - [ - "where can i get my w2 from", - "w2" - ], - [ - "i would like to know where i can find my w2 for tax reasons", - "w2" - ], - [ - "what steps do i need to take to obtain my w2 for taxes", - "w2" - ], - [ - "what do i do if i need my w2 for my my taxes", - "w2" - ], - [ - "how can i get get a copy of my w2 for tax purposes", - "w2" - ], - [ - "can you tell me the process for obtaining a copy of my w2 for my taxes", - "w2" - ], - [ - "where do i go to get that work tax form thing", - "w2" - ], - [ - "what do i need to do to get that tax form thing from my job", - "w2" - ], - [ - "how do i get that tax form from my employer", - "w2" - ], - [ - "where can i find that tax form my employer gives me", - "w2" - ], - [ - "how do i get the form to file my taxes from my employer", - "w2" - ], - [ - "where do i look to get a w2", - "w2" - ], - [ - "i need a w2 form from", - "w2" - ], - [ - "can you trll me where to get my w2", - "w2" - ], - [ - "i want to get the w-2 form", - "w2" - ], - [ - "i wanna know where to find a w2", - "w2" - ], - [ - "i wanna know where to get my w2", - "w2" - ], - [ - "tell me where to a w2 form", - "w2" - ], - [ - "i must know where to get my w2", - "w2" - ], - [ - "i wanna get my w-2 form", - "w2" - ], - [ - "i need a w2, so where is it", - "w2" - ], - [ - "where can i find a w2", - "w2" - ], - [ - "i must get the w-2 form", - "w2" - ], - [ - "help me get w-2 form", - "w2" - ], - [ - "i wanna know where the w2 is", - "w2" - ], - [ - "help me get my w-2 form", - "w2" - ], - [ - "can't find w-2", - "w2" - ], - [ - "when is my electric bill due by", - "bill_due" - ], - [ - "when is my car insurance bill due", - "bill_due" - ], - [ - "how long until my water bill is due", - "bill_due" - ], - [ - "what's the latest i can pay my cellular bill", - "bill_due" - ], - [ - "what's the due date for my netflix subscription", - "bill_due" - ], - [ - "tell me where i can find my exterminator bill's due date", - "bill_due" - ], - [ - "how do i locate the due date for my bug bill", - "bill_due" - ], - [ - "where can i see the due date for auto loan bill", - "bill_due" - ], - [ - "when is my cell phone due", - "bill_due" - ], - [ - "i need to know where my due date is for my lawn bill", - "bill_due" - ], - [ - "where can i find when my car payment bill is due", - "bill_due" - ], - [ - "what's the ultimate day for me to pay the internet bill", - "bill_due" - ], - [ - "tell me the last day i can pay my gas bill", - "bill_due" - ], - [ - "what's the due date for my comcast bill", - "bill_due" - ], - [ - "i need to know when my water bill is due", - "bill_due" - ], - [ - "please tell me how to find out when my rent is due", - "bill_due" - ], - [ - "i need to know when my electricity bill is due", - "bill_due" - ], - [ - "can you tell me when my cable bill is due", - "bill_due" - ], - [ - "i need to find out how to check the due date for the water bill", - "bill_due" - ], - [ - "when does the current billing cycle end", - "bill_due" - ], - [ - "is the bill due today", - "bill_due" - ], - [ - "is the bill due", - "bill_due" - ], - [ - "when do i have to pay my internet", - "bill_due" - ], - [ - "i want to know when the deadline is to pay my car loan", - "bill_due" - ], - [ - "tell me when my water bill is due", - "bill_due" - ], - [ - "what day of the month do i have to pay my mortgage", - "bill_due" - ], - [ - "when is my electricity due date", - "bill_due" - ], - [ - "i need to know the next billing date of my american express card", - "bill_due" - ], - [ - "when does my gas bill need paid by", - "bill_due" - ], - [ - "when is next month's cable bill due", - "bill_due" - ], - [ - "number of calories in coke", - "calories" - ], - [ - "what kind of calories do chicken tenders have", - "calories" - ], - [ - "calorie content of dr pepper", - "calories" - ], - [ - "what's the calorie content of chicken nuggets", - "calories" - ], - [ - "how many calories are in hamburgers", - "calories" - ], - [ - "what is the calorie count for this milkshake", - "calories" - ], - [ - "how many calories does an orange have", - "calories" - ], - [ - "what is the total number of calories in this pizza", - "calories" - ], - [ - "how many calories are in a burger", - "calories" - ], - [ - "rolls have how many calories", - "calories" - ], - [ - "what is the calorie content in bananas", - "calories" - ], - [ - "what is the calorie content in peanut butter", - "calories" - ], - [ - "what is the calorie content in french fries", - "calories" - ], - [ - "what is the calorie content in potatoes", - "calories" - ], - [ - "what is the calorie content in spaghetti", - "calories" - ], - [ - "i need to know the calorie content of spaghetti", - "calories" - ], - [ - "how many calories are in a sandwich", - "calories" - ], - [ - "what number of calories are in a pizza", - "calories" - ], - [ - "what is the number of calories in a steak", - "calories" - ], - [ - "how many calories are in a cheeseburger", - "calories" - ], - [ - "can you check the amount of calories in a chicken sandwich", - "calories" - ], - [ - "what is the calorie count of a burrito", - "calories" - ], - [ - "calorie check, cheese burger", - "calories" - ], - [ - "how many calories are in a taco", - "calories" - ], - [ - "can you see how many calories are in cream of mushroom soup", - "calories" - ], - [ - "the intake of calories it it bad", - "calories" - ], - [ - "how much is alorie intake", - "calories" - ], - [ - "hoq many calories does pasta have", - "calories" - ], - [ - "how many calories can i expect to be in fries", - "calories" - ], - [ - "what's the calorie content of french fries", - "calories" - ], - [ - "tell me how to go about reporting a damaged card", - "damaged_card" - ], - [ - "my card is damaged", - "damaged_card" - ], - [ - "i want to report a damaged card", - "damaged_card" - ], - [ - "where should i report a damaged card", - "damaged_card" - ], - [ - "can you find out how to report a damaged card", - "damaged_card" - ], - [ - "my card has become too frayed and torn to use", - "damaged_card" - ], - [ - "what do i do about a card that's too messed up to be properly scanned", - "damaged_card" - ], - [ - "my card became damaged when i dropped it in the parking lot and it got ran over", - "damaged_card" - ], - [ - "i have a damaged card that needs replaced because my son dropped it in a blender", - "damaged_card" - ], - [ - "i sat on my credit card and broke it in half and need it replaced", - "damaged_card" - ], - [ - "my credit card got torn and i need a new one", - "damaged_card" - ], - [ - "what do i do with a damaged credit card", - "damaged_card" - ], - [ - "how do i replace a damaged card", - "damaged_card" - ], - [ - "i have a card that needs replaced because my wine dumped wine on it", - "damaged_card" - ], - [ - "i spilled wine on my credit card and now its all mushy and needs to be replaced", - "damaged_card" - ], - [ - "my dog swallowed my credit card and i need a new one", - "damaged_card" - ], - [ - "i want to report a damaged card that my cat shredded with its claws", - "damaged_card" - ], - [ - "i need to replace a card that my daughter spilled juice on", - "damaged_card" - ], - [ - "i'm unable to use my card because it's been ruined", - "damaged_card" - ], - [ - "i can't use my card because it\u2019s damaged badly", - "damaged_card" - ], - [ - "i cannot use my card cuz it's damaged", - "damaged_card" - ], - [ - "i can't use my card because it\u2019s messed up", - "damaged_card" - ], - [ - "i can't use my card because it\u2019s broken", - "damaged_card" - ], - [ - "i can't use my card because i damaged it", - "damaged_card" - ], - [ - "who should i talk to about the fact that i inadvertently split my card almost in half", - "damaged_card" - ], - [ - "i accidentally deactivated the magnetic stripe on my visa debit card and i need to report it", - "damaged_card" - ], - [ - "can i talk to someone to let them know my card was damaged from being melted on a radiator", - "damaged_card" - ], - [ - "i would like to report a damaged card that was burnt", - "damaged_card" - ], - [ - "i would like to report my card damaged since i accidentally spilled gorilla glue all over it and the numbers are now obscured", - "damaged_card" - ], - [ - "my visa has been damaged", - "damaged_card" - ], - [ - "does applebees have good reviews", - "restaurant_reviews" - ], - [ - "are the reviews ned get's good", - "restaurant_reviews" - ], - [ - "is the review ned's have good", - "restaurant_reviews" - ], - [ - "are ned's reviews good", - "restaurant_reviews" - ], - [ - "are the reviews for ned's good", - "restaurant_reviews" - ], - [ - "how are the reviews for tacos at the buffet", - "restaurant_reviews" - ], - [ - "do they serve good tacos at the buffet", - "restaurant_reviews" - ], - [ - "my favorite, beef tacos at the buffet", - "restaurant_reviews" - ], - [ - "they sold out of tacos at the buffet", - "restaurant_reviews" - ], - [ - "yum, pulled pork tacos at the buffet", - "restaurant_reviews" - ], - [ - "what do people think of the new burger at mcdonalds", - "restaurant_reviews" - ], - [ - "how are the reviews for the supreme pizza at papa john's", - "restaurant_reviews" - ], - [ - "what are people saying about chick-fil-a's chicken nuggets", - "restaurant_reviews" - ], - [ - "show me the reviews for the new jalapeno fries at taco bell", - "restaurant_reviews" - ], - [ - "give me some feedback about the pasta at piada please", - "restaurant_reviews" - ], - [ - "how is gramercy tavern rated", - "restaurant_reviews" - ], - [ - "how many stars does babbo have", - "restaurant_reviews" - ], - [ - "does cielo have good reviews", - "restaurant_reviews" - ], - [ - "do people say per se is any good or not", - "restaurant_reviews" - ], - [ - "what do food critics say about gramercy tavern", - "restaurant_reviews" - ], - [ - "what are the reviews like for l'auberge aubergine", - "restaurant_reviews" - ], - [ - "how many stars does brasserie les halles have", - "restaurant_reviews" - ], - [ - "what rating do the critics give the french laundry", - "restaurant_reviews" - ], - [ - "does acero have good or bad ratings", - "restaurant_reviews" - ], - [ - "has the french laundry gotten good reviews lately", - "restaurant_reviews" - ], - [ - "what kind of reviews does the olive garden have", - "restaurant_reviews" - ], - [ - "what's the average review for olive garden", - "restaurant_reviews" - ], - [ - "oliver garden reviews", - "restaurant_reviews" - ], - [ - "does olive garden have good customer reviews", - "restaurant_reviews" - ], - [ - "does olive garden have good reviews", - "restaurant_reviews" - ], - [ - "i need my routing number for my checking account at bb&t bank", - "routing" - ], - [ - "what is my routing number to my checking account at bb&t bankj", - "routing" - ], - [ - "tell me my routing number at my bank, community trust", - "routing" - ], - [ - "what is the routing number of my checking account at first national bankj", - "routing" - ], - [ - "give me the routing number of my checking account at my main bank, first commerce", - "routing" - ], - [ - "what is my bank routing number", - "routing" - ], - [ - "what's my routing number", - "routing" - ], - [ - "what's wells fargo's routing number", - "routing" - ], - [ - "tell me my routing number", - "routing" - ], - [ - "where can i find my routing number", - "routing" - ], - [ - "where's the routing number for wells fargo", - "routing" - ], - [ - "where can i find wells fargo's routing number", - "routing" - ], - [ - "where is wells fargo's routing number listed", - "routing" - ], - [ - "where should i go to find the routing number for well's fargo", - "routing" - ], - [ - "is my routing number on my account page", - "routing" - ], - [ - "what is the bank's routing number", - "routing" - ], - [ - "i want to know what my routing number is", - "routing" - ], - [ - "i need a routing number", - "routing" - ], - [ - "does pnc have a routing number", - "routing" - ], - [ - "can you tell me the routing number to pnc", - "routing" - ], - [ - "can you please read me the routing number to pnc", - "routing" - ], - [ - "where can i find routing number for pnc", - "routing" - ], - [ - "what is the routing number for pnc", - "routing" - ], - [ - "i need x's routing number", - "routing" - ], - [ - "where would century bank have their routing number listed", - "routing" - ], - [ - "where do i go if i am seeking the routing number of dallas capital", - "routing" - ], - [ - "what is the location that td bank has their routing number listed", - "routing" - ], - [ - "where would the routing number for first utah be located", - "routing" - ], - [ - "tell me what my savings account routing number is", - "routing" - ], - [ - "what is chase bank's routing number", - "routing" - ], - [ - "cats or dogs are your preference", - "do_you_have_pets" - ], - [ - "what kinds of pets do you own", - "do_you_have_pets" - ], - [ - "do you have any pets and what kind", - "do_you_have_pets" - ], - [ - "would you describe yourself as a cat or dog person", - "do_you_have_pets" - ], - [ - "you have what types or kinds of pets", - "do_you_have_pets" - ], - [ - "are you a pet owner what kind", - "do_you_have_pets" - ], - [ - "do you have a pet", - "do_you_have_pets" - ], - [ - "would you call yourself a cat or dog person", - "do_you_have_pets" - ], - [ - "what kind of animals do you own", - "do_you_have_pets" - ], - [ - "can you name the type of pets you have", - "do_you_have_pets" - ], - [ - "do you have any pets", - "do_you_have_pets" - ], - [ - "are you a pet owner and what kind", - "do_you_have_pets" - ], - [ - "what pets do you own", - "do_you_have_pets" - ], - [ - "tell me any animals that you have as pets", - "do_you_have_pets" - ], - [ - "do you have cats or dogs or something else as a pet", - "do_you_have_pets" - ], - [ - "please tell me the types of pets you have", - "do_you_have_pets" - ], - [ - "how would you categorize the pets you have", - "do_you_have_pets" - ], - [ - "tell me about the pets you have", - "do_you_have_pets" - ], - [ - "do you have friendly or unfriendly pets", - "do_you_have_pets" - ], - [ - "which pets do you have", - "do_you_have_pets" - ], - [ - "which type of pets do you have", - "do_you_have_pets" - ], - [ - "what pets do you have", - "do_you_have_pets" - ], - [ - "do you like appreciate cats or dogs more", - "do_you_have_pets" - ], - [ - "do you like cats or dogs more", - "do_you_have_pets" - ], - [ - "which kinds of pets do you own", - "do_you_have_pets" - ], - [ - "do you prefer cats or dogs", - "do_you_have_pets" - ], - [ - "do you prefer cats or dogs more", - "do_you_have_pets" - ], - [ - "which kinds of pets do you have", - "do_you_have_pets" - ], - [ - "do you currently have any pets", - "do_you_have_pets" - ], - [ - "what is the total number of pets that you have", - "do_you_have_pets" - ], - [ - "please book a meeting room for thusday at 4:00", - "schedule_meeting" - ], - [ - "would you please schedule a meeting room for 4:00 on thursday", - "schedule_meeting" - ], - [ - "could you schedule a meeting room for 4:00 on thursday", - "schedule_meeting" - ], - [ - "will you schedule a conference room for thursday at 4:00", - "schedule_meeting" - ], - [ - "can you reserve a meeting space for 4:00 on thursday", - "schedule_meeting" - ], - [ - "i need to know how to schedule a meeting", - "schedule_meeting" - ], - [ - "please help me figure out how to set up a meeting", - "schedule_meeting" - ], - [ - "i need assistance scheduling a meeting", - "schedule_meeting" - ], - [ - "walk me through the process of scheduling a meeting", - "schedule_meeting" - ], - [ - "help me set up a meeting please", - "schedule_meeting" - ], - [ - "i need a meeting room between 3-7, are any available", - "schedule_meeting" - ], - [ - "can you tell me if there are meeting rooms available between 1 and 4", - "schedule_meeting" - ], - [ - "are meeting rooms free between 8-3", - "schedule_meeting" - ], - [ - "do you know if meeting rooms are open to use 1-2", - "schedule_meeting" - ], - [ - "can you check if meeting rooms are available between 4 and 5", - "schedule_meeting" - ], - [ - "meeting rooms open between one and three pm", - "schedule_meeting" - ], - [ - "check meeting room availability between one and three pm", - "schedule_meeting" - ], - [ - "what meeting rooms are available for meeting 5pm friday", - "schedule_meeting" - ], - [ - "reserve a meeting room for friday, 5pm", - "schedule_meeting" - ], - [ - "one and three pm are there meeting rooms open", - "schedule_meeting" - ], - [ - "friday 5pm schedule a room for meeting", - "schedule_meeting" - ], - [ - "open meeting rooms from one to three pm", - "schedule_meeting" - ], - [ - "can you reserve a room for a friday meeting at 5pm", - "schedule_meeting" - ], - [ - "reserve a meeting room for 5pm on friday", - "schedule_meeting" - ], - [ - "check meeting rooms available between one and three pm", - "schedule_meeting" - ], - [ - "i need to schedule meeting room for monday at 2:30 pm, please", - "schedule_meeting" - ], - [ - "i would like you to reserve a conference room for noon tomorrow", - "schedule_meeting" - ], - [ - "please reserve a meeting room for 1:00 pm on tuesday", - "schedule_meeting" - ], - [ - "go ahead and hold a conference room for friday at 11 am, please", - "schedule_meeting" - ], - [ - "can you book a meeting room for friday at 9:00 am", - "schedule_meeting" - ], - [ - "which gas would be best", - "gas_type" - ], - [ - "what type of gas should i use", - "gas_type" - ], - [ - "which type of gas should i get", - "gas_type" - ], - [ - "can you tell me what gas this car takes", - "gas_type" - ], - [ - "can you tell me this vehicles gas type", - "gas_type" - ], - [ - "what fuel should i use for this car", - "gas_type" - ], - [ - "what kind of gas should i use for this car", - "gas_type" - ], - [ - "i need to know the gas type for this vehicle", - "gas_type" - ], - [ - "for this car what kind of fuel does it take", - "gas_type" - ], - [ - "i need to know the type of gas for this car", - "gas_type" - ], - [ - "i want to know what kind of gas this car uses", - "gas_type" - ], - [ - "what gas does this car use", - "gas_type" - ], - [ - "what fuel do i put in this car", - "gas_type" - ], - [ - "what type of gas goes into the car", - "gas_type" - ], - [ - "what type of fuel does this car utilize", - "gas_type" - ], - [ - "what type of gas do i put in this new car", - "gas_type" - ], - [ - "what type of gas do i use in this car", - "gas_type" - ], - [ - "is there a certain kind of fuel needed", - "gas_type" - ], - [ - "what gas goes in the vehicle", - "gas_type" - ], - [ - "what raiting of gas is called for", - "gas_type" - ], - [ - "what kind of gas goes in", - "gas_type" - ], - [ - "can you tell me what kind of gas your car uses", - "gas_type" - ], - [ - "what kind of gas does your car use", - "gas_type" - ], - [ - "the car you are driving uses what kind of gas", - "gas_type" - ], - [ - "what kind of gas can i put into this car", - "gas_type" - ], - [ - "which gas type goes into this car", - "gas_type" - ], - [ - "which type of gas does this car take", - "gas_type" - ], - [ - "i need gas what type do i need for this car", - "gas_type" - ], - [ - "what types of gas can i get for this car", - "gas_type" - ], - [ - "which type of gas does my car use", - "gas_type" - ], - [ - "would a socket converter be needed in france", - "plug_type" - ], - [ - "how do i plug stuff in in france", - "plug_type" - ], - [ - "is socket converter required in france", - "plug_type" - ], - [ - "does france use a socket converter", - "plug_type" - ], - [ - "is electricity the same in france", - "plug_type" - ], - [ - "will i need a plug converter when i visit costa rica", - "plug_type" - ], - [ - "will i require a plug converter when i visit kenya", - "plug_type" - ], - [ - "will i need to get a plug converter when i visit guam", - "plug_type" - ], - [ - "do i require a plug converter when i visit puerto rico", - "plug_type" - ], - [ - "will i need to have a plug converter when i visit madrid", - "plug_type" - ], - [ - "z uses which type of plug", - "plug_type" - ], - [ - "what sort of plug is used in the caribbean", - "plug_type" - ], - [ - "which plug is used in japan", - "plug_type" - ], - [ - "plug used in china", - "plug_type" - ], - [ - "what kind of plug is used in england", - "plug_type" - ], - [ - "what do i need for a plug in wales", - "plug_type" - ], - [ - "does z used the same plus as we do in the united states", - "plug_type" - ], - [ - "can i used the same type of plug in z as i do in the us", - "plug_type" - ], - [ - "electrical plugs used in that country", - "plug_type" - ], - [ - "are the electric plugs the same over in that country", - "plug_type" - ], - [ - "what kind of electrical outlet does that country use", - "plug_type" - ], - [ - "do i need a converter for my electronics when i go to that coutntry", - "plug_type" - ], - [ - "can i plug in my electronics there like normal", - "plug_type" - ], - [ - "is a socket converter necessary if i'm travelling to london", - "plug_type" - ], - [ - "are socket converters something i need to bring if going to australia", - "plug_type" - ], - [ - "can i use electronic devices in mexico without a socket converter", - "plug_type" - ], - [ - "are socket converters needed if i'm going to cape town", - "plug_type" - ], - [ - "does sweden use the same kind of socket or do i need a converter", - "plug_type" - ], - [ - "what plug type is used internationally", - "plug_type" - ], - [ - "what's the plug type in honduras", - "plug_type" - ], - [ - "when would you change my tires", - "tire_change" - ], - [ - "when is the next time i should get my tires changed", - "tire_change" - ], - [ - "how soon should i get my tires changed", - "tire_change" - ], - [ - "how often should i get my tires changed", - "tire_change" - ], - [ - "do you know when i should get my tires changed next", - "tire_change" - ], - [ - "when should my tires be changed", - "tire_change" - ], - [ - "i need to know when i should change my tires", - "tire_change" - ], - [ - "how soon till i need to change my tires", - "tire_change" - ], - [ - "can you tell me when my tires have to be changed", - "tire_change" - ], - [ - "am i almost due for a tire change", - "tire_change" - ], - [ - "when is my car due for an tire change", - "tire_change" - ], - [ - "how do i know when to get the tires changed on my car", - "tire_change" - ], - [ - "how often should my tires be changed", - "tire_change" - ], - [ - "how often should i change the tires on my car", - "tire_change" - ], - [ - "i replaced tires last june when should i do it again", - "tire_change" - ], - [ - "on feb 3rd i changed my tires are they still good", - "tire_change" - ], - [ - "my tires are 29 months old should u change them", - "tire_change" - ], - [ - "when do my tires need changing after i replaced them last week", - "tire_change" - ], - [ - "in september i changed my tires are they in need of changing", - "tire_change" - ], - [ - "how do i know if it is time to replace my tires", - "tire_change" - ], - [ - "how long does the average set of tire last before needing replacement", - "tire_change" - ], - [ - "how long are my tires expected to last before needing to be replaced", - "tire_change" - ], - [ - "how many miles are my tires rated for", - "tire_change" - ], - [ - "what is the time for a tire change", - "tire_change" - ], - [ - "my tires should be changed when", - "tire_change" - ], - [ - "tell me when to get my tires changed", - "tire_change" - ], - [ - "when is it time for a change in tires", - "tire_change" - ], - [ - "what is the timeframe for getting my tires changed", - "tire_change" - ], - [ - "tell me when i'll need new tires", - "tire_change" - ], - [ - "when will my tires need to be changed", - "tire_change" - ], - [ - "convert 200 us dollars to british pounds", - "exchange_rate" - ], - [ - "how many japanese yen are in a us dollar", - "exchange_rate" - ], - [ - "how much is 5 us dollars worth in canadian dollars", - "exchange_rate" - ], - [ - "can you tell me what 100 british pounds equals in us dollars", - "exchange_rate" - ], - [ - "what is the exchange rate between us dollars and japanese yen", - "exchange_rate" - ], - [ - "whats the current exchange rate between usd and eur", - "exchange_rate" - ], - [ - "what's the exhange rate between mxn and gbp", - "exchange_rate" - ], - [ - "what is the current exchange rate between mxn and eur", - "exchange_rate" - ], - [ - "what's the exchange rate between ils and usd", - "exchange_rate" - ], - [ - "what is the usd mxn exchange rate", - "exchange_rate" - ], - [ - "how many mexican pesos is a us dollar worth", - "exchange_rate" - ], - [ - "how much is one us dollar in british pounds", - "exchange_rate" - ], - [ - "whats the exchange rate for us dollars to british pounds", - "exchange_rate" - ], - [ - "what is a british pound worth in mexican pesos", - "exchange_rate" - ], - [ - "how many mexican pesos can i get for one us dollar", - "exchange_rate" - ], - [ - "look up the rate of exchange between pesos and usd", - "exchange_rate" - ], - [ - "find me the exchange rate between usd and cad", - "exchange_rate" - ], - [ - "what is the exchange rate between euros and pesos", - "exchange_rate" - ], - [ - "tell me the current exchange rate between cad and euros", - "exchange_rate" - ], - [ - "what is the present exchange rate between usd and british pound", - "exchange_rate" - ], - [ - "convert 20 yen to dollars", - "exchange_rate" - ], - [ - "how many dollars can i get for 20 yen", - "exchange_rate" - ], - [ - "how many dollars is 20 yen worth", - "exchange_rate" - ], - [ - "20 yen is how many dollars", - "exchange_rate" - ], - [ - "20 yen equals how many dollars", - "exchange_rate" - ], - [ - "is $30 usd more or less in canada", - "exchange_rate" - ], - [ - "in canadian dollars, what is $30", - "exchange_rate" - ], - [ - "what is the conversion of $30 in canadian dollars", - "exchange_rate" - ], - [ - "can you please convert $30 usd to canadian dollars", - "exchange_rate" - ], - [ - "how much is $30 usd in canadian dollar", - "exchange_rate" - ], - [ - "on what day is our next free day", - "next_holiday" - ], - [ - "on what day is our next day off", - "next_holiday" - ], - [ - "what day is our next day off", - "next_holiday" - ], - [ - "is our next day off soon", - "next_holiday" - ], - [ - "do you know when our next day off is", - "next_holiday" - ], - [ - "when are we off work next", - "next_holiday" - ], - [ - "when is the next day we have off", - "next_holiday" - ], - [ - "when will our next day off be", - "next_holiday" - ], - [ - "are there any holidays coming and when", - "next_holiday" - ], - [ - "how many holidays are there and when is the next one here", - "next_holiday" - ], - [ - "for the holidays when is the next one we do here", - "next_holiday" - ], - [ - "what holiday is next and when", - "next_holiday" - ], - [ - "how long before the next holiday here", - "next_holiday" - ], - [ - "what's the wait period until the next day off", - "next_holiday" - ], - [ - "when will my next vacation day be", - "next_holiday" - ], - [ - "how long do i have to wait to get a day off", - "next_holiday" - ], - [ - "when's the next day off", - "next_holiday" - ], - [ - "how many days left until the next day out of work", - "next_holiday" - ], - [ - "tell me the next holiday", - "next_holiday" - ], - [ - "tell me how long until the next day off", - "next_holiday" - ], - [ - "i got to know how long until the next day off", - "next_holiday" - ], - [ - "i wanna know how long until the next day off", - "next_holiday" - ], - [ - "i need to know how long until the next day off", - "next_holiday" - ], - [ - "i wanna know the next holiday", - "next_holiday" - ], - [ - "let me know how long until the next day off", - "next_holiday" - ], - [ - "i wish to know the next holiday", - "next_holiday" - ], - [ - "i must know the next holiday", - "next_holiday" - ], - [ - "i would like to know the next holiday", - "next_holiday" - ], - [ - "find the next holiday", - "next_holiday" - ], - [ - "when is the soonest holiday", - "next_holiday" - ], - [ - "turn volume up to 4", - "change_volume" - ], - [ - "adjust volume setting to 4", - "change_volume" - ], - [ - "keep volume at 4 all the time", - "change_volume" - ], - [ - "put volume setting on number 4", - "change_volume" - ], - [ - "please make sure the volume stays at 4", - "change_volume" - ], - [ - "put the volume to 4", - "change_volume" - ], - [ - "volume to 4", - "change_volume" - ], - [ - "turn down your speaker", - "change_volume" - ], - [ - "decrease your decibel level", - "change_volume" - ], - [ - "be more quiet", - "change_volume" - ], - [ - "please lower the sound", - "change_volume" - ], - [ - "speak up", - "change_volume" - ], - [ - "not so loud", - "change_volume" - ], - [ - "quieter please", - "change_volume" - ], - [ - "increase the volume", - "change_volume" - ], - [ - "turn up the volume", - "change_volume" - ], - [ - "speak louder please", - "change_volume" - ], - [ - "please lower your volume", - "change_volume" - ], - [ - "louder please", - "change_volume" - ], - [ - "turn down the volume", - "change_volume" - ], - [ - "can you speak quieter", - "change_volume" - ], - [ - "turn to volume 4", - "change_volume" - ], - [ - "set 4 as the volume", - "change_volume" - ], - [ - "turn volume to 4", - "change_volume" - ], - [ - "volume 4 set", - "change_volume" - ], - [ - "volume set to 4", - "change_volume" - ], - [ - "i can't hear you and need you to turn up the volume", - "change_volume" - ], - [ - "turn up your speaker volume", - "change_volume" - ], - [ - "can you speak louder", - "change_volume" - ], - [ - "can you turn up the volume for your speaker", - "change_volume" - ], - [ - "who is in charge of you when you work", - "who_do_you_work_for" - ], - [ - "who is responsible for your employment", - "who_do_you_work_for" - ], - [ - "who do you report to for your work", - "who_do_you_work_for" - ], - [ - "let me know who your boss is", - "who_do_you_work_for" - ], - [ - "i want to know who your boss is", - "who_do_you_work_for" - ], - [ - "would you let me know who your boss is", - "who_do_you_work_for" - ], - [ - "i would like to know who your boss is", - "who_do_you_work_for" - ], - [ - "are you my insubordinate", - "who_do_you_work_for" - ], - [ - "does someone else control you", - "who_do_you_work_for" - ], - [ - "do i own you", - "who_do_you_work_for" - ], - [ - "what firm do you work for", - "who_do_you_work_for" - ], - [ - "do you take your orders from me", - "who_do_you_work_for" - ], - [ - "do i control you", - "who_do_you_work_for" - ], - [ - "am i in charge of you", - "who_do_you_work_for" - ], - [ - "is there another person that controls you", - "who_do_you_work_for" - ], - [ - "who do you take your orders from", - "who_do_you_work_for" - ], - [ - "would you consider someone else your boss", - "who_do_you_work_for" - ], - [ - "do you take orders from someone else", - "who_do_you_work_for" - ], - [ - "who controls you", - "who_do_you_work_for" - ], - [ - "who's your boss", - "who_do_you_work_for" - ], - [ - "what company do you work for", - "who_do_you_work_for" - ], - [ - "who employs you", - "who_do_you_work_for" - ], - [ - "where do you work", - "who_do_you_work_for" - ], - [ - "who is it that you work for", - "who_do_you_work_for" - ], - [ - "whom do you work for", - "who_do_you_work_for" - ], - [ - "who is your job with", - "who_do_you_work_for" - ], - [ - "what company are you employed by", - "who_do_you_work_for" - ], - [ - "what is the name of the place you work at", - "who_do_you_work_for" - ], - [ - "what's your boss's name", - "who_do_you_work_for" - ], - [ - "who can i talk to above you", - "who_do_you_work_for" - ], - [ - "what's the most i can charge on my card", - "credit_limit" - ], - [ - "how much do i have available on my visa card", - "credit_limit" - ], - [ - "what is my visa credit limit", - "credit_limit" - ], - [ - "how much of a credit limit does visa allow", - "credit_limit" - ], - [ - "is there a substantial credit limit on my visa", - "credit_limit" - ], - [ - "as my visa got a high enough limit on it", - "credit_limit" - ], - [ - "what is my credit max", - "credit_limit" - ], - [ - "what is my credit card spending limit", - "credit_limit" - ], - [ - "what's my daily spending limit", - "credit_limit" - ], - [ - "tell me my credit limit", - "credit_limit" - ], - [ - "how much credit do i have on my discover card", - "credit_limit" - ], - [ - "do i have a monthly spending limit", - "credit_limit" - ], - [ - "what's the limit on my discover card", - "credit_limit" - ], - [ - "is there a spending limit", - "credit_limit" - ], - [ - "what is my credit limit on my discover", - "credit_limit" - ], - [ - "what's my spending limit on my discover", - "credit_limit" - ], - [ - "how much is my maximum to spend on credit cards", - "credit_limit" - ], - [ - "what's my discover credit limit", - "credit_limit" - ], - [ - "how much can i use on my visa", - "credit_limit" - ], - [ - "my visa has what limit", - "credit_limit" - ], - [ - "tell me my visa limit", - "credit_limit" - ], - [ - "look up how high my visa limit is", - "credit_limit" - ], - [ - "what is the limit on my visa", - "credit_limit" - ], - [ - "what is my state bank of india card credit limit", - "credit_limit" - ], - [ - "calculate the limit i have available for spending on my natwest card", - "credit_limit" - ], - [ - "tell me my hsbc card credit limit", - "credit_limit" - ], - [ - "what's the spending limit on my lloyds card", - "credit_limit" - ], - [ - "i need you to tell me the credit limit for my republic bank card", - "credit_limit" - ], - [ - "how high is my credit limit", - "credit_limit" - ], - [ - "i want to know my credit limit", - "credit_limit" - ], - [ - "is the resataurant busy at 5:00 pm", - "how_busy" - ], - [ - "how busy is the cafe at 7:00", - "how_busy" - ], - [ - "would tio's be crowded at 7", - "how_busy" - ], - [ - "can i get a table for four at 8:00", - "how_busy" - ], - [ - "is the friday's full after 4", - "how_busy" - ], - [ - "how long is the wait at fridays", - "how_busy" - ], - [ - "is the mexican place crowded at night", - "how_busy" - ], - [ - "are cool people at the bar at 9:00 pm", - "how_busy" - ], - [ - "what is the best time to go to get a burger without a line", - "how_busy" - ], - [ - "how long before i can eat at chic fil a", - "how_busy" - ], - [ - "how long to be seated at carrabas", - "how_busy" - ], - [ - "is the wait at pizza hut long", - "how_busy" - ], - [ - "is the breakfast place full in the mornings", - "how_busy" - ], - [ - "is the wait more than an hour at the italian place", - "how_busy" - ], - [ - "tell me how busy red robin is at 5 pm", - "how_busy" - ], - [ - "i wanna know how busy denny's is at 5 am", - "how_busy" - ], - [ - "i need to know how busy denny's is at 6 am", - "how_busy" - ], - [ - "how busy is red robin around 5 pm", - "how_busy" - ], - [ - "so how busy is the outback steakhouse at 5 pm", - "how_busy" - ], - [ - "tell me mr joes pizza average wait time", - "how_busy" - ], - [ - "is mr joes pizza available for a seating", - "how_busy" - ], - [ - "does mr joes pizza usually have a long wait", - "how_busy" - ], - [ - "can you find out the waiting times for mr joes pizza", - "how_busy" - ], - [ - "what's the typical wait time for mr joes pizza", - "how_busy" - ], - [ - "how busy is cheesecake factory right now", - "how_busy" - ], - [ - "how long is the wait at cheesecake factory", - "how_busy" - ], - [ - "how long will i have to wait at cheesecake factory", - "how_busy" - ], - [ - "is cheesecake factory busy right now", - "how_busy" - ], - [ - "check how busy cheesecake factory is", - "how_busy" - ], - [ - "is there a long wait at chili's around 5:00", - "how_busy" - ], - [ - "can i do a reservation at sammy's crab shack", - "accept_reservations" - ], - [ - "does bill's house of chop suey accept reservations", - "accept_reservations" - ], - [ - "check if bj's takes reservations", - "accept_reservations" - ], - [ - "does bj's take reservations", - "accept_reservations" - ], - [ - "will bj's take reservations", - "accept_reservations" - ], - [ - "do you know if i can make reservations at bj's", - "accept_reservations" - ], - [ - "tell me if the new york restaurant takes reservations", - "accept_reservations" - ], - [ - "can i reserve tables at the new york restaurant", - "accept_reservations" - ], - [ - "i want to know if the new york restaurant takes reservations", - "accept_reservations" - ], - [ - "does the new york restaurant take reservations", - "accept_reservations" - ], - [ - "is it possible to make reservations at the new york restaurant", - "accept_reservations" - ], - [ - "do you have any idea if the flying wing does reservations", - "accept_reservations" - ], - [ - "does village inn let you make reservations", - "accept_reservations" - ], - [ - "is it possible to get reservations at ihop", - "accept_reservations" - ], - [ - "is it possible to reserve a table at white castle", - "accept_reservations" - ], - [ - "do you think they'll let me reserve a table at the olive garden", - "accept_reservations" - ], - [ - "do they take reservations at applebeesi", - "accept_reservations" - ], - [ - "does applebees do reservations", - "accept_reservations" - ], - [ - "can applebees take reservations", - "accept_reservations" - ], - [ - "can i get reservations at applebees", - "accept_reservations" - ], - [ - "does applebees take reservations", - "accept_reservations" - ], - [ - "tell me if taco bell takes reservations", - "accept_reservations" - ], - [ - "any clue as to if taco bell takes reservations", - "accept_reservations" - ], - [ - "do you know if taco bell takes reservations", - "accept_reservations" - ], - [ - "any idea as to if taco bell takes reservations", - "accept_reservations" - ], - [ - "do you know if l'arpege will ask for reservations", - "accept_reservations" - ], - [ - "will we have to make reservations for roca", - "accept_reservations" - ], - [ - "does osteria francescana take reservations", - "accept_reservations" - ], - [ - "do you have any idea if central needs reservations", - "accept_reservations" - ], - [ - "eleven madison park takes reservations right", - "accept_reservations" - ], - [ - "where is my order now", - "order_status" - ], - [ - "tell me all updates about my order's status", - "order_status" - ], - [ - "is my order on its way or what's going on", - "order_status" - ], - [ - "how is my order doing right now", - "order_status" - ], - [ - "locate my package", - "order_status" - ], - [ - "can you monitor my package's progress", - "order_status" - ], - [ - "track my order", - "order_status" - ], - [ - "tell me where my package is currently", - "order_status" - ], - [ - "where is my package en route", - "order_status" - ], - [ - "give me the status of my order", - "order_status" - ], - [ - "when will i get my order", - "order_status" - ], - [ - "tell me where my order is", - "order_status" - ], - [ - "what is the status of the order i placed with you yesterday", - "order_status" - ], - [ - "what's the updated status of my order", - "order_status" - ], - [ - "can you help with delivery tracking", - "order_status" - ], - [ - "i need a delivery tracked", - "order_status" - ], - [ - "i need to track my order", - "order_status" - ], - [ - "i placed an order and i need it tracked", - "order_status" - ], - [ - "could you track an order for me", - "order_status" - ], - [ - "has my package been sent", - "order_status" - ], - [ - "what time is my package getting here", - "order_status" - ], - [ - "how's my amazon order doing", - "order_status" - ], - [ - "i need to track a package", - "order_status" - ], - [ - "i want to track a package i should be getting", - "order_status" - ], - [ - "please track my order", - "order_status" - ], - [ - "can you tell me when my item will get here", - "order_status" - ], - [ - "can you tell me where my item is", - "order_status" - ], - [ - "what's up with my order", - "order_status" - ], - [ - "are they any updates on my order", - "order_status" - ], - [ - "i need to track the status of my order", - "order_status" - ], - [ - "i'm struggling to remind myself the pin number to my card", - "pin_change" - ], - [ - "i'm having trouble remembering the pin number to my card", - "pin_change" - ], - [ - "the pin number to my card has been forgotten", - "pin_change" - ], - [ - "i don't remember the pin number to my card", - "pin_change" - ], - [ - "i do not recall the pin number to my card", - "pin_change" - ], - [ - "i would like to change the name on my checking account", - "pin_change" - ], - [ - "i would like to change the name on my credit card account", - "pin_change" - ], - [ - "i would like to change the name on my first hawaiian bank account", - "pin_change" - ], - [ - "i would like to change the name on my first bankcard account", - "pin_change" - ], - [ - "i would like to change the name on my capital one account", - "pin_change" - ], - [ - "change the pin on my savings account to 1234", - "pin_change" - ], - [ - "i want to change my savings account pin to 1234", - "pin_change" - ], - [ - "make 1234 a new pin for my savings account", - "pin_change" - ], - [ - "make 1234 the pin on my savings account", - "pin_change" - ], - [ - "can you make 1234 the pin for my savings account", - "pin_change" - ], - [ - "make my pin 1234 for my checking account", - "pin_change" - ], - [ - "go my to checking account and switch my pin to 1234", - "pin_change" - ], - [ - "access my checking account and update my pin to 1234", - "pin_change" - ], - [ - "correct my account pin to 1234 on my checking account", - "pin_change" - ], - [ - "modify my account pin to 1234 on my checking account", - "pin_change" - ], - [ - "tell me the pin number for my checking account", - "pin_change" - ], - [ - "please give me the pin number for my checking account", - "pin_change" - ], - [ - "i need the pin number for my checking account", - "pin_change" - ], - [ - "does my checking account have a pin number", - "pin_change" - ], - [ - "what's the pin number for my checking account", - "pin_change" - ], - [ - "change the code of my savings account to be 1234", - "pin_change" - ], - [ - "alter the pin on my savings account to be 1234", - "pin_change" - ], - [ - "what exactly is my pin", - "pin_change" - ], - [ - "how do i change the account pin number for me", - "pin_change" - ], - [ - "please tell me how do i change the account pin number", - "pin_change" - ], - [ - "good speaking to you", - "goodbye" - ], - [ - "it was really awesome to talk to you", - "goodbye" - ], - [ - "it was great to speak with you", - "goodbye" - ], - [ - "it was great to talk to you", - "goodbye" - ], - [ - "bye bye then", - "goodbye" - ], - [ - "it was very good to talk to you", - "goodbye" - ], - [ - "good bye then", - "goodbye" - ], - [ - "bye", - "goodbye" - ], - [ - "regards", - "goodbye" - ], - [ - "catch you later", - "goodbye" - ], - [ - "great talk, thanks", - "goodbye" - ], - [ - "later", - "goodbye" - ], - [ - "goodbye", - "goodbye" - ], - [ - "see you later", - "goodbye" - ], - [ - "enjoy your day, goodbye", - "goodbye" - ], - [ - "thank you goodbye", - "goodbye" - ], - [ - "have a good day, bye", - "goodbye" - ], - [ - "that will be all have a nice day!", - "goodbye" - ], - [ - "i enjoyed talking to you, bye", - "goodbye" - ], - [ - "it was great talking to you", - "goodbye" - ], - [ - "nice seeing you bye", - "goodbye" - ], - [ - "it was nice to chat", - "goodbye" - ], - [ - "it was a pleasure talking to you", - "goodbye" - ], - [ - "ok good chatting goodbye", - "goodbye" - ], - [ - "thanks bye bye!", - "goodbye" - ], - [ - "that's all i need, i'm going now", - "goodbye" - ], - [ - "talk to you soon, bye!", - "goodbye" - ], - [ - "thanks for your help, goodbye!", - "goodbye" - ], - [ - "good bye", - "goodbye" - ], - [ - "signing off", - "goodbye" - ], - [ - "why is my bank account locked", - "account_blocked" - ], - [ - "how do i unlock my bank account", - "account_blocked" - ], - [ - "can you unlock my bank account", - "account_blocked" - ], - [ - "how did my bank account get frozen", - "account_blocked" - ], - [ - "can you help me unlock my bank account", - "account_blocked" - ], - [ - "call my bank and ask them why my account is frozen", - "account_blocked" - ], - [ - "check with my bank to see why my account is frozen", - "account_blocked" - ], - [ - "do you know why my bank account is frozen", - "account_blocked" - ], - [ - "why did my bank place a hold on my bank account", - "account_blocked" - ], - [ - "are there any problems with my bank account", - "account_blocked" - ], - [ - "did someone who is unauthorized try to get into my bank account", - "account_blocked" - ], - [ - "how can i unfreeze my bank account", - "account_blocked" - ], - [ - "why is there a stop on my deposit account", - "account_blocked" - ], - [ - "why can't i use my money market account", - "account_blocked" - ], - [ - "why is there a delay on my checking account", - "account_blocked" - ], - [ - "why is my checking account not working", - "account_blocked" - ], - [ - "what could cause a hold on my savings account", - "account_blocked" - ], - [ - "what caused a hold on my us bank account", - "account_blocked" - ], - [ - "can you check and see why us bank put a hold on my account", - "account_blocked" - ], - [ - "why does us bank have a hold on my account", - "account_blocked" - ], - [ - "reasons that us bank would place a hold on my account", - "account_blocked" - ], - [ - "check to see why us bank placed a hold on my account", - "account_blocked" - ], - [ - "is there a problem with my account, it appears to be blocked", - "account_blocked" - ], - [ - "what is up with my account, why is it blocked", - "account_blocked" - ], - [ - "there seems to be an issue with my account", - "account_blocked" - ], - [ - "can you help me unblock my account", - "account_blocked" - ], - [ - "can you check what the problem with my account is, it seems to b e blocked", - "account_blocked" - ], - [ - "is there a reason you put a hold on my chase account", - "account_blocked" - ], - [ - "why can't i access my chase account", - "account_blocked" - ], - [ - "how come my chase account has a hold on it", - "account_blocked" - ], - [ - "i'd like to know what song this is", - "what_song" - ], - [ - "what is this song name", - "what_song" - ], - [ - "i need to know this song", - "what_song" - ], - [ - "what is the name of this song that's on right now", - "what_song" - ], - [ - "i need to know the title of this song", - "what_song" - ], - [ - "find out what song is currently on the speakers", - "what_song" - ], - [ - "look up the name of this song", - "what_song" - ], - [ - "can you identify this song for me", - "what_song" - ], - [ - "tell me what this song is called", - "what_song" - ], - [ - "please identify the song we're currently listening to", - "what_song" - ], - [ - "what is the title of the song we're listening to right now", - "what_song" - ], - [ - "look up the song that's on right now", - "what_song" - ], - [ - "can you identify this song that's playing", - "what_song" - ], - [ - "find out what song this is", - "what_song" - ], - [ - "i need to know what song this is that we're listening to", - "what_song" - ], - [ - "tell me the song that is currently playing", - "what_song" - ], - [ - "can you identify this song playing through the speaker right now", - "what_song" - ], - [ - "tell me what this song is called that's playing", - "what_song" - ], - [ - "what is the title of this song", - "what_song" - ], - [ - "what is this song called", - "what_song" - ], - [ - "what song is currently playing", - "what_song" - ], - [ - "what is the information on this song", - "what_song" - ], - [ - "what song is this one", - "what_song" - ], - [ - "on the speaker do you know what song is on", - "what_song" - ], - [ - "on the speaker what song is playing", - "what_song" - ], - [ - "do you know what song is playing on the speaker", - "what_song" - ], - [ - "at the moment what song is playing on the speaker", - "what_song" - ], - [ - "what is playing on the speaker at the moment", - "what_song" - ], - [ - "who is the singer on the speaker now", - "what_song" - ], - [ - "what kind of music on the speaker now", - "what_song" - ], - [ - "will i be charged transaction fees if i use my american card internationally", - "international_fees" - ], - [ - "will i incur transaction fees if i use my american card internationally", - "international_fees" - ], - [ - "do i have transaction fees if i use my american card internationally", - "international_fees" - ], - [ - "could you find out if my bank charges transaction fees on my american card if use internationally", - "international_fees" - ], - [ - "will the bank charge transaction fees if i use my american card internationally", - "international_fees" - ], - [ - "do i get charged extra for using my card in portland", - "international_fees" - ], - [ - "will i get charged for using my credit card in portland", - "international_fees" - ], - [ - "if i'm in portland can i still use my card without getting charged extra", - "international_fees" - ], - [ - "is there a fee for using my card in portland", - "international_fees" - ], - [ - "does using my card in portland charge me extra", - "international_fees" - ], - [ - "what are the transaction fees associated with my discover card if i am in rome", - "international_fees" - ], - [ - "how many transaction fees are there when i use my discover card in rome", - "international_fees" - ], - [ - "are there transaction fees for discover cards used in rome", - "international_fees" - ], - [ - "will using a discover card in rome cause transaction fees", - "international_fees" - ], - [ - "do i have transaction fees when i use my discover card in rome", - "international_fees" - ], - [ - "are there transaction fees using my discover if i'm in cuba", - "international_fees" - ], - [ - "when i go to cuba will there be a transaction fee for using my discover card", - "international_fees" - ], - [ - "is there a fee to use my card in france", - "international_fees" - ], - [ - "will i be charged a transaction fee on my discover card in cuba", - "international_fees" - ], - [ - "is there a charge to use my card in france", - "international_fees" - ], - [ - "if i use my discover card in cuba are there transaction fees", - "international_fees" - ], - [ - "are there transaction fees in cuba for using my discover card", - "international_fees" - ], - [ - "so i get charged if i use my card in france", - "international_fees" - ], - [ - "is there an international charge for using my card in france", - "international_fees" - ], - [ - "is there a fee if i use my card in france", - "international_fees" - ], - [ - "is there a charge to use my card in croatia", - "international_fees" - ], - [ - "in x, will i be charged to use my card", - "international_fees" - ], - [ - "in x, what is the charge if i use my card", - "international_fees" - ], - [ - "if i use my card in x, will there be a charge", - "international_fees" - ], - [ - "will it cost me anything to use my card in turin", - "international_fees" - ], - [ - "what was the date of my last car appointment", - "last_maintenance" - ], - [ - "was my car in the shop this past week", - "last_maintenance" - ], - [ - "how many weeks ago was my car in the shop", - "last_maintenance" - ], - [ - "did i get my car inspected recently", - "last_maintenance" - ], - [ - "i cannot remember when i last took my car to the shop", - "last_maintenance" - ], - [ - "did i bring my car to the shop last week", - "last_maintenance" - ], - [ - "when did i get my car inspected last", - "last_maintenance" - ], - [ - "give me the date that i last got my car checked", - "last_maintenance" - ], - [ - "did i take my car to the mechanics recently", - "last_maintenance" - ], - [ - "tell me when i got my car checked last", - "last_maintenance" - ], - [ - "when did i last take my car to the shop", - "last_maintenance" - ], - [ - "give me an exact date of when i took my car to the mechanic", - "last_maintenance" - ], - [ - "remind me of the last date that i got my car checked", - "last_maintenance" - ], - [ - "when was my last visit to the car shop", - "last_maintenance" - ], - [ - "when was my car last in the shop", - "last_maintenance" - ], - [ - "how long ago did i take my car to the shop", - "last_maintenance" - ], - [ - "how long has it been since i last took my car to the shop", - "last_maintenance" - ], - [ - "when did i take my car to the shop last", - "last_maintenance" - ], - [ - "give me the date of my last oil change", - "last_maintenance" - ], - [ - "tell me when i last had my oil changed", - "last_maintenance" - ], - [ - "when was my oil last changed", - "last_maintenance" - ], - [ - "what day did i last take my car to the shop", - "last_maintenance" - ], - [ - "have i recently had an oil change", - "last_maintenance" - ], - [ - "what was the date of the last time i took my car to the shop", - "last_maintenance" - ], - [ - "what day did i last take my car in", - "last_maintenance" - ], - [ - "tell me when my last oil change was", - "last_maintenance" - ], - [ - "i last got my oil changed when", - "last_maintenance" - ], - [ - "what day did i last have the oil in my car changed", - "last_maintenance" - ], - [ - "what was the date of my last oil change", - "last_maintenance" - ], - [ - "i'd like to know the last time my car got looked at", - "last_maintenance" - ], - [ - "are there meetings scheduled for today", - "meeting_schedule" - ], - [ - "check today's calendar for meetings", - "meeting_schedule" - ], - [ - "check my schedule for meetings today", - "meeting_schedule" - ], - [ - "list meetings on calendar for today", - "meeting_schedule" - ], - [ - "exactly what time is my meeting with robin scheduled for on", - "meeting_schedule" - ], - [ - "for what time is my meeting with marketing scheduled", - "meeting_schedule" - ], - [ - "what time is my meeting with design team scheduled for", - "meeting_schedule" - ], - [ - "when is my meeting with infrastructure", - "meeting_schedule" - ], - [ - "when is my meeting with invoicing scheduled", - "meeting_schedule" - ], - [ - "is the meeting with lisa today", - "meeting_schedule" - ], - [ - "are there meetings from 1 to 5 pm", - "meeting_schedule" - ], - [ - "when for i meet jane for our meeting", - "meeting_schedule" - ], - [ - "tell me if i have a meeting with liz today", - "meeting_schedule" - ], - [ - "is there a meeting with sam today", - "meeting_schedule" - ], - [ - "do i have a meeting with paul today", - "meeting_schedule" - ], - [ - "is there any meetings from 5 to 6 pm", - "meeting_schedule" - ], - [ - "when is my meeting with jim scheduled for", - "meeting_schedule" - ], - [ - "are there any meetings between 2 and 5 pm", - "meeting_schedule" - ], - [ - "is it possible i have a meeting with kim today", - "meeting_schedule" - ], - [ - "my meeting with alice is scheduled for when", - "meeting_schedule" - ], - [ - "when is my meeting with jack for", - "meeting_schedule" - ], - [ - "when is my meeting with ann", - "meeting_schedule" - ], - [ - "do i have any meetings between 1 and 8 pm", - "meeting_schedule" - ], - [ - "i need to know if i have meetings from 3 to 6 pm", - "meeting_schedule" - ], - [ - "do i have any meetings scheduled today", - "meeting_schedule" - ], - [ - "give me a summary of today's meetings", - "meeting_schedule" - ], - [ - "tell me when today's meeting is supposed to happen", - "meeting_schedule" - ], - [ - "what time is today's meeting", - "meeting_schedule" - ], - [ - "check the start time of the meeting scheduled for today", - "meeting_schedule" - ], - [ - "am i supposed to attend any meetings today", - "meeting_schedule" - ], - [ - "what food do you need to make lasagna", - "ingredients_list" - ], - [ - "what ingredients do you need to make lasagna", - "ingredients_list" - ], - [ - "what ingredients are needed to make lasgana", - "ingredients_list" - ], - [ - "what is needed to make lasagna", - "ingredients_list" - ], - [ - "what is needed to cook lasagna", - "ingredients_list" - ], - [ - "give me a recipe for tacos", - "ingredients_list" - ], - [ - "what ingredients are in tacos", - "ingredients_list" - ], - [ - "tell me what's in tacos", - "ingredients_list" - ], - [ - "what's a good recipe foe tacos", - "ingredients_list" - ], - [ - "tell me the ingredients for making tom yum", - "ingredients_list" - ], - [ - "i want to know the ingredients for making pizza", - "ingredients_list" - ], - [ - "let me know the ingredients i will need for pasta making", - "ingredients_list" - ], - [ - "what ingredients are necessary to make spaghetti carbonara", - "ingredients_list" - ], - [ - "what do i need to use to make lasagna", - "ingredients_list" - ], - [ - "how much flour do i need for a strawberry cake", - "ingredients_list" - ], - [ - "tell me the ingredients to make an apple pie", - "ingredients_list" - ], - [ - "what ingredients are in beef jerkey", - "ingredients_list" - ], - [ - "what ingredients does agor agor need", - "ingredients_list" - ], - [ - "what do i need to make authentic kimchi", - "ingredients_list" - ], - [ - "what do i need to make macaroni", - "ingredients_list" - ], - [ - "what do i need to buy for spaghetti", - "ingredients_list" - ], - [ - "what am i gonna need for sushi", - "ingredients_list" - ], - [ - "what ingredients do i use for pork belly", - "ingredients_list" - ], - [ - "what ingredients are in filet mignon", - "ingredients_list" - ], - [ - "let me know what ingredients i need to make pasta", - "ingredients_list" - ], - [ - "what do i need to make pasta", - "ingredients_list" - ], - [ - "give me a list of ingredients for making pasta", - "ingredients_list" - ], - [ - "pull up everything i need to make a pasta dish", - "ingredients_list" - ], - [ - "tell me all the things i need to buy to make pasta", - "ingredients_list" - ], - [ - "what do i need to make brownies", - "ingredients_list" - ], - [ - "i want to report fraudulent activity on my navy federal card", - "report_fraud" - ], - [ - "i would like to report fraudulent activity on my chase card", - "report_fraud" - ], - [ - "i need to report fraudulent activity on my usaa card", - "report_fraud" - ], - [ - "i have to report fraudulent activity on my bank of the west card", - "report_fraud" - ], - [ - "i have to report fraudulent activity the bank of america card", - "report_fraud" - ], - [ - "i seem to have a purchase that i didn't make from olive garden on my account", - "report_fraud" - ], - [ - "my online bill has some items that i didn't purchase from penneys", - "report_fraud" - ], - [ - "my account shows a transaction that i didn't make from foot locker", - "report_fraud" - ], - [ - "my bill shows a purchase from payless shoes but i didn't buy anything", - "report_fraud" - ], - [ - "i have some charges on my account from old navy that aren't mine", - "report_fraud" - ], - [ - "this charge is bs", - "report_fraud" - ], - [ - "i have a bogus transaction from amazon on my account", - "report_fraud" - ], - [ - "i have a fraudulent buy from dave's video on my account", - "report_fraud" - ], - [ - "i have a crap transaction from guitar center on my account", - "report_fraud" - ], - [ - "i think this transaction is bogus", - "report_fraud" - ], - [ - "i don't remember buying this", - "report_fraud" - ], - [ - "i have a bs transaction from ebay on my account", - "report_fraud" - ], - [ - "i've got a fraudulent purchase from kayak on my account", - "report_fraud" - ], - [ - "do i have a fraudulent transaction on my account", - "report_fraud" - ], - [ - "i'm pretty sure i have a fraudulent transaction on my account", - "report_fraud" - ], - [ - "there's a false charge on my account from mcdonald's", - "report_fraud" - ], - [ - "i think there's a fraudulent charge from mcdonald's on my account", - "report_fraud" - ], - [ - "i think someone jacked my bank account", - "report_fraud" - ], - [ - "i saw suspicious activity on my bank account", - "report_fraud" - ], - [ - "someone else used my account to buy stuff from mcdonald's", - "report_fraud" - ], - [ - "there's a messed up transaction on my account from mcdonald's", - "report_fraud" - ], - [ - "i saw a fraudulent transaction", - "report_fraud" - ], - [ - "i have a false charge on my account from mcdonald's", - "report_fraud" - ], - [ - "who do i contact to report fraud on my visa", - "report_fraud" - ], - [ - "there has been unauthorized use of my visa", - "report_fraud" - ], - [ - "how many teaspoons will make one tablespoon", - "measurement_conversion" - ], - [ - "i need the conversion between a cup and a tablespoon", - "measurement_conversion" - ], - [ - "inform me how many pounds are in 10 kilos", - "measurement_conversion" - ], - [ - "i wanna know how many pounds are in 10 kilos", - "measurement_conversion" - ], - [ - "how do you convert kilos to pounds", - "measurement_conversion" - ], - [ - "how many teaspoons is one tablespoon", - "measurement_conversion" - ], - [ - "i need to convert kilos to pounds", - "measurement_conversion" - ], - [ - "i need to know the conversion between teaspoons and tablespoons", - "measurement_conversion" - ], - [ - "how many pounds are in 10 kilos", - "measurement_conversion" - ], - [ - "can you assist me to convert kilos to pounds", - "measurement_conversion" - ], - [ - "let me know how many pounds are in 10 kilos", - "measurement_conversion" - ], - [ - "give me the conversion between ounces and cups", - "measurement_conversion" - ], - [ - "help me convert kilos to pounds", - "measurement_conversion" - ], - [ - "i need to know how many pounds are in 10 kilos", - "measurement_conversion" - ], - [ - "i want to convert kilos to pounds", - "measurement_conversion" - ], - [ - "how can i convert centimeters to inches", - "measurement_conversion" - ], - [ - "how would i change from centimeters to inches", - "measurement_conversion" - ], - [ - "what can i use to convert from centimeters to inches", - "measurement_conversion" - ], - [ - "how can you convert centimeters to inches", - "measurement_conversion" - ], - [ - "how could we convert centimeters to inches", - "measurement_conversion" - ], - [ - "how does measurement slugs convert to measurement lb", - "measurement_conversion" - ], - [ - "how does measurement a convert to measurement b", - "measurement_conversion" - ], - [ - "where can i find measurement conversions", - "measurement_conversion" - ], - [ - "how many ounces are in 4 pounds", - "measurement_conversion" - ], - [ - "how many grams are in 9 kilograms", - "measurement_conversion" - ], - [ - "how many centimeters are in 12 meters", - "measurement_conversion" - ], - [ - "how many inches are in 36 feet", - "measurement_conversion" - ], - [ - "how many millimeters are in 21 centimeters", - "measurement_conversion" - ], - [ - "how many milliliters are in 2 gallons", - "measurement_conversion" - ], - [ - "how many liters are in 1 gallon", - "measurement_conversion" - ], - [ - "i would like it if you would turn the bedroom lights on low until i'm finished reading", - "smart_home" - ], - [ - "i need you to turn the bathroom lights on", - "smart_home" - ], - [ - "set the ceiling fan to low", - "smart_home" - ], - [ - "start the dishwasher", - "smart_home" - ], - [ - "turn on the tv on channel 6", - "smart_home" - ], - [ - "turn on the microwave for 3 minutes", - "smart_home" - ], - [ - "on the tv, turn on", - "smart_home" - ], - [ - "set the tv on", - "smart_home" - ], - [ - "how is the temperature at ac", - "smart_home" - ], - [ - "the tv turn it on", - "smart_home" - ], - [ - "oven set it to 350", - "smart_home" - ], - [ - "the temperature at ac is what", - "smart_home" - ], - [ - "tv turn it on", - "smart_home" - ], - [ - "350 set the oven", - "smart_home" - ], - [ - "the oven be set at 350", - "smart_home" - ], - [ - "turn the oven to 350", - "smart_home" - ], - [ - "at ac, what's the temperature like", - "smart_home" - ], - [ - "ac temperature is at what", - "smart_home" - ], - [ - "turn on the tv", - "smart_home" - ], - [ - "what is it like the temperature at ac", - "smart_home" - ], - [ - "to 350, set the oven", - "smart_home" - ], - [ - "please turn the lights down low", - "smart_home" - ], - [ - "can you adjust the lights down", - "smart_home" - ], - [ - "i want the light less bright please", - "smart_home" - ], - [ - "make the lights darker", - "smart_home" - ], - [ - "please set the oven to 350 f", - "smart_home" - ], - [ - "please set the temperature to 70 f", - "smart_home" - ], - [ - "set the oven temperature to 350", - "smart_home" - ], - [ - "i need the temperature set at 70 f", - "smart_home" - ], - [ - "turn up the oven temperature to 350", - "smart_home" - ], - [ - "i really need you to find me a hotel with good reviews in phoenix", - "book_hotel" - ], - [ - "i wanna book a place to stay in phoenix from the 5th to the 9th of march", - "book_hotel" - ], - [ - "i wanna find a hotel with good reviews in phoenix", - "book_hotel" - ], - [ - "i want a hotel in phoenix near chase field from january 4th to the 8th", - "book_hotel" - ], - [ - "i would like to book a place to stay in phoenix from the 5th to the 9th of march", - "book_hotel" - ], - [ - "i need a hotel in phoenix near chase field from january 4th to the 8th", - "book_hotel" - ], - [ - "i need a hotel room that is big enough for eleven people from march 10th to the 15th in phoenix", - "book_hotel" - ], - [ - "i must get a hotel in phoenix near chase field from january 4th to the 8th", - "book_hotel" - ], - [ - "go ahead and find me a hotel with good reviews in phoenix", - "book_hotel" - ], - [ - "find me a hotel with good reviews in phoenix", - "book_hotel" - ], - [ - "i need you to find me a hotel with good reviews in phoenix", - "book_hotel" - ], - [ - "get me a hotel in phoenix near chase field from january 4th to the 8th", - "book_hotel" - ], - [ - "i need to get a hotel in phoenix near chase field from january 4th to the 8th", - "book_hotel" - ], - [ - "please book me a place to stay in phoenix from the 5th to the 9th of march", - "book_hotel" - ], - [ - "i need to book a place to stay in phoenix from the 5th to the 9th of march", - "book_hotel" - ], - [ - "i really gotta book a place to stay in phoenix from the 5th to the 9th of march", - "book_hotel" - ], - [ - "i need to get a hotel room that is big enough for eleven people from march 10th to the 15th in phoenix", - "book_hotel" - ], - [ - "can you find me a reputable hotel in honolulu", - "book_hotel" - ], - [ - "i want a hotel with good review in honolulu, can you find one", - "book_hotel" - ], - [ - "find for me a hotel with great reviews in ho chi minh", - "book_hotel" - ], - [ - "i need your help to find a good reviewed hotel in washington", - "book_hotel" - ], - [ - "can you find me a good reviewed hotel in japan", - "book_hotel" - ], - [ - "i need a hotel between january 1st through 3rd in jacksonville near the stadium", - "book_hotel" - ], - [ - "find me a place to stay in jacksonville near the stadium from january 1st through 3rd", - "book_hotel" - ], - [ - "book me a hotel in jacksonville near the stadium from january 1st to 3rd", - "book_hotel" - ], - [ - "id like a room in jacksonville near the stadium between january 1st to 3rd", - "book_hotel" - ], - [ - "find me a room near the jacksonville stadium between january 1st through january 3rd", - "book_hotel" - ], - [ - "get me a hotel room big enough for 4 people from may 3 to may 5 in boston", - "book_hotel" - ], - [ - "i'm travelling to boston on march 2 until march 4 please make a hotel reservation for me", - "book_hotel" - ], - [ - "i need a hotel room for 4 people from may 3 to may 5 in boston", - "book_hotel" - ], - [ - "pull up the map and show my location", - "current_location" - ], - [ - "where am i currently", - "current_location" - ], - [ - "where is my current location", - "current_location" - ], - [ - "what's my map location", - "current_location" - ], - [ - "find my current location", - "current_location" - ], - [ - "please tell me the current location", - "current_location" - ], - [ - "i want to see my location on the map", - "current_location" - ], - [ - "what's the location where i am", - "current_location" - ], - [ - "can you tell me my current location", - "current_location" - ], - [ - "where am i located on the map", - "current_location" - ], - [ - "where am i currently located", - "current_location" - ], - [ - "show my location on the map", - "current_location" - ], - [ - "i am currently located in what town", - "current_location" - ], - [ - "my current location is what", - "current_location" - ], - [ - "give me my location", - "current_location" - ], - [ - "tell me where i am", - "current_location" - ], - [ - "whats my location", - "current_location" - ], - [ - "show my position on the map", - "current_location" - ], - [ - "where is my location", - "current_location" - ], - [ - "current location please", - "current_location" - ], - [ - "display my location on the map", - "current_location" - ], - [ - "where am i", - "current_location" - ], - [ - "find out where i am on the map", - "current_location" - ], - [ - "where am i on the map", - "current_location" - ], - [ - "show me where i am on the map please", - "current_location" - ], - [ - "open map and pin point my location", - "current_location" - ], - [ - "show me my location", - "current_location" - ], - [ - "what could help me locate myself", - "current_location" - ], - [ - "i need assistance with my current location", - "current_location" - ], - [ - "where would i search for my location", - "current_location" - ], - [ - "what is the weather", - "weather" - ], - [ - "current weather", - "weather" - ], - [ - "tell me the weather", - "weather" - ], - [ - "what's the weather like today", - "weather" - ], - [ - "what is the weather like", - "weather" - ], - [ - "show me what the weather is like", - "weather" - ], - [ - "let's take a look at the weather", - "weather" - ], - [ - "how is the weather looking in seattle", - "weather" - ], - [ - "how's the weather in seattle", - "weather" - ], - [ - "what is the state of the weather in seattle", - "weather" - ], - [ - "what is the weather forecast looking like for seattle", - "weather" - ], - [ - "what are the weather conditions like in seattle", - "weather" - ], - [ - "what is the weather doing now", - "weather" - ], - [ - "what kind of weather can i expect now", - "weather" - ], - [ - "tell me what the weather is looking like", - "weather" - ], - [ - "how is the weather", - "weather" - ], - [ - "can you tell me the weather forecast", - "weather" - ], - [ - "could you tell me what the weather is in austin", - "weather" - ], - [ - "what is the weather doing in austin", - "weather" - ], - [ - "what about the weather in austin", - "weather" - ], - [ - "how is the weather in austin", - "weather" - ], - [ - "what is happening with the weather in austin", - "weather" - ], - [ - "how is that weather", - "weather" - ], - [ - "how does the weather feel", - "weather" - ], - [ - "need to know the weather now", - "weather" - ], - [ - "give weather update now", - "weather" - ], - [ - "want to know the weather", - "weather" - ], - [ - "tell me the weather for today", - "weather" - ], - [ - "what is the current weather like", - "weather" - ], - [ - "las vegas weather today", - "weather" - ], - [ - "tell me what my federal taxes amount to", - "taxes" - ], - [ - "what taxes do i owe", - "taxes" - ], - [ - "lets talk about what my federal taxes look like", - "taxes" - ], - [ - "what taxes will i owe from my income", - "taxes" - ], - [ - "whats the total of my taxes", - "taxes" - ], - [ - "what do my federal taxes look like", - "taxes" - ], - [ - "how much are the taxes on my income", - "taxes" - ], - [ - "please share my federal taxes total with me", - "taxes" - ], - [ - "how much in taxes will i owe", - "taxes" - ], - [ - "what do my state taxes look like", - "taxes" - ], - [ - "whats the total of taxes from my income", - "taxes" - ], - [ - "tell me how much my state taxes amount to", - "taxes" - ], - [ - "whats the total of my federal taxes", - "taxes" - ], - [ - "look up how much my state taxes are", - "taxes" - ], - [ - "talk to me about the total of my state taxes", - "taxes" - ], - [ - "what am i paying in taxes", - "taxes" - ], - [ - "what is the total of my state taxes", - "taxes" - ], - [ - "how much do i owe the irs", - "taxes" - ], - [ - "how much do i pay the irs", - "taxes" - ], - [ - "do you know my state tax total", - "taxes" - ], - [ - "what's the amount of taxes for my income", - "taxes" - ], - [ - "how much are my taxes for my income", - "taxes" - ], - [ - "i pay how much of taxes with my income", - "taxes" - ], - [ - "how much is my state taxes", - "taxes" - ], - [ - "i need the data and price from my state taxes", - "taxes" - ], - [ - "do you know the price for my taxes in income", - "taxes" - ], - [ - "what is the amount of my state taxes", - "taxes" - ], - [ - "what is the price of my state taxes that i owe", - "taxes" - ], - [ - "do you know the total for taxes for my income", - "taxes" - ], - [ - "what should i squirrel away to pay in taxes", - "taxes" - ], - [ - "i must pay verizon what minimum amount on my bill", - "min_payment" - ], - [ - "what is the lowest amount i must pay on my verizon bill", - "min_payment" - ], - [ - "at a minimum, what must i pay on my verizon bill", - "min_payment" - ], - [ - "what is my minimum verizon bill payment", - "min_payment" - ], - [ - "what must i pay, at a minimum, on my verizon bill", - "min_payment" - ], - [ - "what's the least i can pay this month", - "min_payment" - ], - [ - "what is my amex minimum payment", - "min_payment" - ], - [ - "what's the minimum payment", - "min_payment" - ], - [ - "what is my minimum payment and when is it due", - "min_payment" - ], - [ - "is there a minimum payment i can make", - "min_payment" - ], - [ - "what is the lowest amount i can pay for my cellphone bill", - "min_payment" - ], - [ - "what is the lowest amount i can pay for my insurance bill", - "min_payment" - ], - [ - "what is the minimum i can pay on my credit card bill", - "min_payment" - ], - [ - "what is the lowest amount i can pay for my medical bill", - "min_payment" - ], - [ - "what is the minimum i can pay on my phone bill", - "min_payment" - ], - [ - "what is the minimum i can pay on my insurance bill", - "min_payment" - ], - [ - "what is the minimum i can pay on my electric bill", - "min_payment" - ], - [ - "what is the minimum i can pay on my gas bill", - "min_payment" - ], - [ - "what is the lowest amount i can pay for my hospital bill", - "min_payment" - ], - [ - "what is the lowest amount i can pay for my car bill", - "min_payment" - ], - [ - "what is the minimum i can pay on my cell phone bill", - "min_payment" - ], - [ - "what is the minimum i can pay on my water bill", - "min_payment" - ], - [ - "what is the minimum i can pay on my heating bill", - "min_payment" - ], - [ - "tell me the minimum i can pay on my utilities bill", - "min_payment" - ], - [ - "what is the minimum amount i can pay on my gas bill", - "min_payment" - ], - [ - "do you know the smallest amount i can pay on my water bill", - "min_payment" - ], - [ - "look up the lowest amount i can pay on my electricity bill", - "min_payment" - ], - [ - "what is the minimum payable amount for my rent bill this month", - "min_payment" - ], - [ - "what is the minimum payment on my water bill", - "min_payment" - ], - [ - "if i wanted to spend the lowest for my electric bill, then how much would it be", - "min_payment" - ], - [ - "set whisper mode to off", - "whisper_mode" - ], - [ - "switch off whisper mode", - "whisper_mode" - ], - [ - "switch whisper mode off", - "whisper_mode" - ], - [ - "turn whisper mode off", - "whisper_mode" - ], - [ - "whisper mode, please", - "whisper_mode" - ], - [ - "please start whisper mode", - "whisper_mode" - ], - [ - "switch over to whisper mode", - "whisper_mode" - ], - [ - "leave whisper mode", - "whisper_mode" - ], - [ - "revert from whisper mode", - "whisper_mode" - ], - [ - "whisper mode must be left", - "whisper_mode" - ], - [ - "change from whisper mode", - "whisper_mode" - ], - [ - "help to turn on whisper mode", - "whisper_mode" - ], - [ - "turn on whisper mode", - "whisper_mode" - ], - [ - "whisper mode", - "whisper_mode" - ], - [ - "start whisper mode", - "whisper_mode" - ], - [ - "go to whisper mode until this movie is over", - "whisper_mode" - ], - [ - "go to whisper mode until i say to go back to normal", - "whisper_mode" - ], - [ - "go into whisper mode until the plane lands", - "whisper_mode" - ], - [ - "go to whisper mode for one hour", - "whisper_mode" - ], - [ - "go to whisper mode until my morning alarm goes off", - "whisper_mode" - ], - [ - "make saound function operate in whisper mode", - "whisper_mode" - ], - [ - "change audio settings to the whisper option", - "whisper_mode" - ], - [ - "change audio to whisper mode", - "whisper_mode" - ], - [ - "i want to only use the whisper sound", - "whisper_mode" - ], - [ - "change sound setting to whisper", - "whisper_mode" - ], - [ - "change to something that's not whisper mode", - "whisper_mode" - ], - [ - "cancel whisper mode", - "whisper_mode" - ], - [ - "get out of whisper mode", - "whisper_mode" - ], - [ - "whisper mode, stop", - "whisper_mode" - ], - [ - "stop whisper mode", - "whisper_mode" - ], - [ - "stop what you're doing", - "cancel" - ], - [ - "this process needs to stop", - "cancel" - ], - [ - "stop this process", - "cancel" - ], - [ - "that was a mistake, undo that", - "cancel" - ], - [ - "ignore the previous command", - "cancel" - ], - [ - "forget what i told you to do", - "cancel" - ], - [ - "please cancel the last input", - "cancel" - ], - [ - "please stop the current process", - "cancel" - ], - [ - "can you end the current process", - "cancel" - ], - [ - "just stop talking", - "cancel" - ], - [ - "please stop talking", - "cancel" - ], - [ - "stop, just stop", - "cancel" - ], - [ - "you can stop talking ai", - "cancel" - ], - [ - "stop the process", - "cancel" - ], - [ - "can you turn off the process", - "cancel" - ], - [ - "stop talking", - "cancel" - ], - [ - "you can cancel the task", - "cancel" - ], - [ - "can you cancel that", - "cancel" - ], - [ - "can you cancel that request", - "cancel" - ], - [ - "could you cancel that request, please", - "cancel" - ], - [ - "can you cancel that request, please", - "cancel" - ], - [ - "can you cancel that, please", - "cancel" - ], - [ - "hush", - "cancel" - ], - [ - "be quiet", - "cancel" - ], - [ - "stop it now!", - "cancel" - ], - [ - "stop talking you are annoying", - "cancel" - ], - [ - "you need to shut it", - "cancel" - ], - [ - "stop processing", - "cancel" - ], - [ - "abort mission", - "cancel" - ], - [ - "stop speaking", - "cancel" - ], - [ - "are visas needed to travel to jamaica", - "international_visa" - ], - [ - "do i need a visa for south korea", - "international_visa" - ], - [ - "if i go to columbia, will i need a visa", - "international_visa" - ], - [ - "are visas required to go to cuba", - "international_visa" - ], - [ - "do i need to apply for a visa for my trip to india", - "international_visa" - ], - [ - "if i go to indonesia would i need a visa", - "international_visa" - ], - [ - "do i need a visa to travel to indonesia", - "international_visa" - ], - [ - "should i apply for a visa if i am traveling to mexico", - "international_visa" - ], - [ - "is a visa necessary for traveling to south africa", - "international_visa" - ], - [ - "if i want to travel to singapore do i need a visa", - "international_visa" - ], - [ - "do americans need visas in canada", - "international_visa" - ], - [ - "would i need a visa in taiwan", - "international_visa" - ], - [ - "i'd like to go to malaysia so do i need a visa", - "international_visa" - ], - [ - "is a travel visa needed for thailand", - "international_visa" - ], - [ - "what are the visa requirements for brazil", - "international_visa" - ], - [ - "is a travel visa required to visit paraguay", - "international_visa" - ], - [ - "does travelling to st petersburg require a travel visa", - "international_visa" - ], - [ - "should i get a travel visa if i want to go to guyana", - "international_visa" - ], - [ - "will i be able to visit peru without a travel visa", - "international_visa" - ], - [ - "if i want to go to x, do i need a travel visa", - "international_visa" - ], - [ - "can i get to cuba with this visa", - "international_visa" - ], - [ - "do i need a visa to get to puerto rico", - "international_visa" - ], - [ - "do i need a visa to go to colombia", - "international_visa" - ], - [ - "do i need a states visa to get to cuba", - "international_visa" - ], - [ - "do i need a us visa for cuba", - "international_visa" - ], - [ - "if i get a visa can i travel to japan", - "international_visa" - ], - [ - "do i need a visa if i'm going to san jose", - "international_visa" - ], - [ - "do i need a visa to travel outside of the us", - "international_visa" - ], - [ - "are visas for international travel", - "international_visa" - ], - [ - "can you travel outside of the united states without a visa", - "international_visa" - ], - [ - "do i need to get any shots before i travel to morocco", - "vaccines" - ], - [ - "do i need to get any shots before i travel to south africa", - "vaccines" - ], - [ - "do i need to get any shots before i travel to zimbabwe", - "vaccines" - ], - [ - "do i need to get any shots before i travel to liberia", - "vaccines" - ], - [ - "do i need to get any shots before i travel to spain", - "vaccines" - ], - [ - "are there any required shots to travel to astana", - "vaccines" - ], - [ - "what shots do i need if i'm travelling to odessa", - "vaccines" - ], - [ - "are there any shots i need to travel to karachi", - "vaccines" - ], - [ - "are there any required shots in indonesia", - "vaccines" - ], - [ - "what are the required shots in mozambique", - "vaccines" - ], - [ - "are more shots needed to travel to argentina", - "vaccines" - ], - [ - "what sorts of vaccinations should i get prior to a trip to hong kong", - "vaccines" - ], - [ - "before i embark on a trip to europe should i get more shots", - "vaccines" - ], - [ - "would you need more shots to go to mexico", - "vaccines" - ], - [ - "is vaccination necessary for travel to asia", - "vaccines" - ], - [ - "do you think my shots would be needed, before traveling to columbia", - "vaccines" - ], - [ - "will having my shots updated be a good idea, before i travel to south america", - "vaccines" - ], - [ - "should i have my shots up to date before i travel to the virgin islands", - "vaccines" - ], - [ - "if you were traveling to indonesia, as i am, would you have your shots updated before your visit", - "vaccines" - ], - [ - "are shots required before traveling to china", - "vaccines" - ], - [ - "does cuba require vaccines", - "vaccines" - ], - [ - "which vaccines are meant for cuba", - "vaccines" - ], - [ - "which vaccines will i need for cuba", - "vaccines" - ], - [ - "do i need a vaccine for the congo", - "vaccines" - ], - [ - "vaccines for my trip to cuba", - "vaccines" - ], - [ - "are there vaccinations needed if i go there", - "vaccines" - ], - [ - "would vaccinations be needed if i go here", - "vaccines" - ], - [ - "if i travel abroad, do i need vaccinations", - "vaccines" - ], - [ - "if i travel here, do i need vaccinations", - "vaccines" - ], - [ - "do i need vaccinations if i go this country", - "vaccines" - ], - [ - "i would like to know my vacation days balance", - "pto_balance" - ], - [ - "give me vacation days remaining, please", - "pto_balance" - ], - [ - "how many vacation days do i still have available", - "pto_balance" - ], - [ - "please tell me the exact number of days i have still for vacation", - "pto_balance" - ], - [ - "what's the number of vacation days i have left", - "pto_balance" - ], - [ - "what amount of vacation days do i have", - "pto_balance" - ], - [ - "what is the number of pto days i have left", - "pto_balance" - ], - [ - "what amount of pto days do i have left", - "pto_balance" - ], - [ - "what are the amount of vacation days i have", - "pto_balance" - ], - [ - "how much pto days do i have remaining", - "pto_balance" - ], - [ - "what number of days do i have for vacation", - "pto_balance" - ], - [ - "what is my remaining amount of pto days", - "pto_balance" - ], - [ - "what do my pto days amount to", - "pto_balance" - ], - [ - "what do my vacation days amount to", - "pto_balance" - ], - [ - "how many days of vacation do i have left", - "pto_balance" - ], - [ - "what day am i on on vacation and how much do i got left", - "pto_balance" - ], - [ - "how many vacation days are remaining on my time", - "pto_balance" - ], - [ - "how many days of vacation are left now", - "pto_balance" - ], - [ - "how many days on holiday do i have", - "pto_balance" - ], - [ - "can you see if i have any vacation days available for a request", - "pto_balance" - ], - [ - "how much vacation time have i earned", - "pto_balance" - ], - [ - "how much vacation time do i have", - "pto_balance" - ], - [ - "how many weeks of vacation time have i earned", - "pto_balance" - ], - [ - "how many weeks of vacation time do i have", - "pto_balance" - ], - [ - "how many days can i take for vacation", - "pto_balance" - ], - [ - "what is the balance on my vacation days", - "pto_balance" - ], - [ - "how many days are remaining on my vacation days", - "pto_balance" - ], - [ - "so i have any vacation days left", - "pto_balance" - ], - [ - "what is the year to date total on my vacation days", - "pto_balance" - ], - [ - "how many sick days do i have", - "pto_balance" - ], - [ - "how do i get downtown by foot", - "directions" - ], - [ - "how do i get to the subway by foot", - "directions" - ], - [ - "how do i get to the train by foot", - "directions" - ], - [ - "how do i get to central park by foot", - "directions" - ], - [ - "how do i get to the airport by foot", - "directions" - ], - [ - "where is the nearest wal mart", - "directions" - ], - [ - "i want directions to phoenix", - "directions" - ], - [ - "i must understand the nearest gas station to glendale", - "directions" - ], - [ - "i need some directions to phoenix", - "directions" - ], - [ - "give me directions to phoenix", - "directions" - ], - [ - "i must know the closest gas station to glendale", - "directions" - ], - [ - "where is the nearest fry's", - "directions" - ], - [ - "where is the nearest papa john's", - "directions" - ], - [ - "i would love to know the closest gas station to glendale", - "directions" - ], - [ - "get me directions to phoenix", - "directions" - ], - [ - "where is the nearest k mart", - "directions" - ], - [ - "where is the nearest circuit city", - "directions" - ], - [ - "let me know the nearest gas station to glendale", - "directions" - ], - [ - "where is the closest gas station to glendale", - "directions" - ], - [ - "where is the nearest movie theater to time' square", - "directions" - ], - [ - "where is the closest bathroom to the statue of liberty", - "directions" - ], - [ - "where is the closest mcdonald's to foxwoods casino", - "directions" - ], - [ - "where is the nearest marijuana dispensary to kentucky fried chicken", - "directions" - ], - [ - "where is the closest hospital to madison square garden", - "directions" - ], - [ - "where is the closest pharmacy", - "directions" - ], - [ - "show me the nearest gas station", - "directions" - ], - [ - "which hospital is nearest to me", - "directions" - ], - [ - "i need to know where the hospital closest to me is", - "directions" - ], - [ - "where is the nearest arco gas station to macdonalds", - "directions" - ], - [ - "find the closest cvs near galleria mall", - "directions" - ], - [ - "spell aaron", - "spelling" - ], - [ - "how do you spell aaron", - "spelling" - ], - [ - "spell the word aaron", - "spelling" - ], - [ - "correct spelling for aaron", - "spelling" - ], - [ - "spell aaron for me", - "spelling" - ], - [ - "i don't know how to spell apoplectic, can you tell me", - "spelling" - ], - [ - "what is the correct spelling of the word comity, since i do not know", - "spelling" - ], - [ - "do you know how to spell, bourgeois", - "spelling" - ], - [ - "how do you spell the word comity, i need to know", - "spelling" - ], - [ - "i need to know how to spell the word serendipity", - "spelling" - ], - [ - "can you tell me the correct spelling of liaison", - "spelling" - ], - [ - "what is the proper spelling of corporate", - "spelling" - ], - [ - "please tell me how to spell the word coup", - "spelling" - ], - [ - "i am not sure how to spell the word liaison", - "spelling" - ], - [ - "can you tell me how to spell the word schadenfreude, i don't know how it's spelt", - "spelling" - ], - [ - "do you know how to spell curiosity", - "spelling" - ], - [ - "spell curiosity for me", - "spelling" - ], - [ - "tell me how to spell curiosity", - "spelling" - ], - [ - "i need to know the proper spelling of curiosity", - "spelling" - ], - [ - "please tell me how curiosity is spelled", - "spelling" - ], - [ - "what's the proper way to spell \"helicopter", - "spelling" - ], - [ - "tell me how to spent \"frightened", - "spelling" - ], - [ - "can you spell \"fragile\" for me", - "spelling" - ], - [ - "can you spell out \"wonderful", - "spelling" - ], - [ - "i need to know how to spell \"miranda", - "spelling" - ], - [ - "i need help spelling \"exquisite", - "spelling" - ], - [ - "can you spell out \"annulment", - "spelling" - ], - [ - "how do you spell \"exactly", - "spelling" - ], - [ - "how do you spell \"montpelier", - "spelling" - ], - [ - "what's the right way to spell \"emolument", - "spelling" - ], - [ - "how are you doing", - "greeting" - ], - [ - "are you okay", - "greeting" - ], - [ - "what are you feeling today", - "greeting" - ], - [ - "is everything ok today", - "greeting" - ], - [ - "are you doing alright", - "greeting" - ], - [ - "hello, how's your day", - "greeting" - ], - [ - "hey there, how are you today", - "greeting" - ], - [ - "hello, how is it going", - "greeting" - ], - [ - "hi there, how are you doing", - "greeting" - ], - [ - "hey, how are you", - "greeting" - ], - [ - "hey, what's up", - "greeting" - ], - [ - "hello, how are you doing", - "greeting" - ], - [ - "hi, how are you", - "greeting" - ], - [ - "hi, how are you today", - "greeting" - ], - [ - "hello, how are things", - "greeting" - ], - [ - "hey there", - "greeting" - ], - [ - "hey, what's new", - "greeting" - ], - [ - "it is good to see you", - "greeting" - ], - [ - "i'd like to know how you are doing", - "greeting" - ], - [ - "hello there", - "greeting" - ], - [ - "tell me how you are doing", - "greeting" - ], - [ - "hello there, good morning", - "greeting" - ], - [ - "let me know how you are doing", - "greeting" - ], - [ - "well hi there", - "greeting" - ], - [ - "i want to know how you are doing", - "greeting" - ], - [ - "i need to know how you are doing today", - "greeting" - ], - [ - "hello there ai", - "greeting" - ], - [ - "will you tell me how the ai is doing", - "greeting" - ], - [ - "would you tell me how the ai is doing", - "greeting" - ], - [ - "hola!", - "greeting" - ], - [ - "so please reset your factory settings", - "reset_settings" - ], - [ - "i need your to reset to factory settings", - "reset_settings" - ], - [ - "now reset your factory settings", - "reset_settings" - ], - [ - "revert to the original configuration", - "reset_settings" - ], - [ - "change back to the factory set up", - "reset_settings" - ], - [ - "change all setting to original ones", - "reset_settings" - ], - [ - "please reset to factory settings", - "reset_settings" - ], - [ - "reset all settings to the factory settings", - "reset_settings" - ], - [ - "can you please revert to factory settings at this time", - "reset_settings" - ], - [ - "please remove current settings and go back to factory settings now", - "reset_settings" - ], - [ - "please reset to factory settings at once", - "reset_settings" - ], - [ - "i would like you to change the settings back to factory default now, please", - "reset_settings" - ], - [ - "adjust settings back to original factory settings immediately", - "reset_settings" - ], - [ - "can you reset your factory settings", - "reset_settings" - ], - [ - "could you please reset your factory settings", - "reset_settings" - ], - [ - "your factory settings need to be reset", - "reset_settings" - ], - [ - "go back to your manufacturers' settings", - "reset_settings" - ], - [ - "prioritize to the settings you started with", - "reset_settings" - ], - [ - "reset to your original settings", - "reset_settings" - ], - [ - "restart your actions with the original settings you came with", - "reset_settings" - ], - [ - "please rely on your original settings", - "reset_settings" - ], - [ - "can you return to the factory fresh settings", - "reset_settings" - ], - [ - "please return to default settings", - "reset_settings" - ], - [ - "revert to original settings", - "reset_settings" - ], - [ - "start over using factory setting", - "reset_settings" - ], - [ - "go back to the default settings please", - "reset_settings" - ], - [ - "revert to factory settings", - "reset_settings" - ], - [ - "go back to factory settings", - "reset_settings" - ], - [ - "please turn on factory settings", - "reset_settings" - ], - [ - "revert back to factory settings", - "reset_settings" - ], - [ - "tell me what your name is", - "what_is_your_name" - ], - [ - "what did they name you", - "what_is_your_name" - ], - [ - "hey, how do i call your attention", - "what_is_your_name" - ], - [ - "what's your name", - "what_is_your_name" - ], - [ - "give me your name so i can use you", - "what_is_your_name" - ], - [ - "how should i address you", - "what_is_your_name" - ], - [ - "what do i call you", - "what_is_your_name" - ], - [ - "what's your name anyway", - "what_is_your_name" - ], - [ - "tell me what to call you", - "what_is_your_name" - ], - [ - "can you tell me what you are called", - "what_is_your_name" - ], - [ - "what should you be called", - "what_is_your_name" - ], - [ - "what should i use when i refer to you", - "what_is_your_name" - ], - [ - "how do you say your name", - "what_is_your_name" - ], - [ - "what is your preferred name", - "what_is_your_name" - ], - [ - "what can i call you", - "what_is_your_name" - ], - [ - "what name do you go by", - "what_is_your_name" - ], - [ - "who do i have the pleasure of speaking with", - "what_is_your_name" - ], - [ - "may i have your name", - "what_is_your_name" - ], - [ - "who am i speaking with", - "what_is_your_name" - ], - [ - "and your name is", - "what_is_your_name" - ], - [ - "what do i call you, ai", - "what_is_your_name" - ], - [ - "what name do you go by, ai", - "what_is_your_name" - ], - [ - "ai, what is your name", - "what_is_your_name" - ], - [ - "what do they call you, ai", - "what_is_your_name" - ], - [ - "ai, what is your given name", - "what_is_your_name" - ], - [ - "what name do you want me to use", - "what_is_your_name" - ], - [ - "what do you like to be called", - "what_is_your_name" - ], - [ - "what should i call you", - "what_is_your_name" - ], - [ - "what would you like me to call you", - "what_is_your_name" - ], - [ - "what is your name", - "what_is_your_name" - ], - [ - "how do i set up a direct deposit", - "direct_deposit" - ], - [ - "how do i set up direct deposit", - "direct_deposit" - ], - [ - "chase account direct deposit options", - "direct_deposit" - ], - [ - "set my paycheck to direct deposit to chase account", - "direct_deposit" - ], - [ - "activate direct deposit to chase account", - "direct_deposit" - ], - [ - "chase account options direct deposit", - "direct_deposit" - ], - [ - "bank options direct deposit", - "direct_deposit" - ], - [ - "how do i set up a direct deposit for my paycheck", - "direct_deposit" - ], - [ - "how to activate direct deposit to chase account", - "direct_deposit" - ], - [ - "get my paycheck to direct deposit", - "direct_deposit" - ], - [ - "direct deposit", - "direct_deposit" - ], - [ - "i need a direct deposit", - "direct_deposit" - ], - [ - "can we get a direct deposit", - "direct_deposit" - ], - [ - "set up direct deposit", - "direct_deposit" - ], - [ - "i want to set up direct deposit", - "direct_deposit" - ], - [ - "setting up direct deposit", - "direct_deposit" - ], - [ - "how do i get my paycheck into direct deposit at nations bank", - "direct_deposit" - ], - [ - "could you tell me how to set up direct deposit for my check from work at nations bank", - "direct_deposit" - ], - [ - "if i want to direct deposit my check into my nations bank account how do i do that", - "direct_deposit" - ], - [ - "i need to know how to do direct deposit with my paycheck at nations bank", - "direct_deposit" - ], - [ - "could you tell me how to direct deposit my check from work into nations bank", - "direct_deposit" - ], - [ - "how does one set up direct deposit to my bank account", - "direct_deposit" - ], - [ - "what do i need to do to set up direct deposit", - "direct_deposit" - ], - [ - "what is the process of setting up direct deposit", - "direct_deposit" - ], - [ - "if i want to set up direct deposit, how do i do it", - "direct_deposit" - ], - [ - "i'm not sure how to set up direct deposit", - "direct_deposit" - ], - [ - "can you tell me how to set up direct deposit", - "direct_deposit" - ], - [ - "i'd like my checks to be deposited into my account directly, how do i do that", - "direct_deposit" - ], - [ - "i'd like to set up direct deposit", - "direct_deposit" - ], - [ - "how do i set up my direct deposit", - "direct_deposit" - ], - [ - "what's my bank of america account getting in interest", - "interest_rate" - ], - [ - "where do i see what interest my mortgage has", - "interest_rate" - ], - [ - "is there somewhere my personal loan displays the interest rate i'm paying on it", - "interest_rate" - ], - [ - "what's the apr on my savings account", - "interest_rate" - ], - [ - "what interest rate am i getting from bank of america", - "interest_rate" - ], - [ - "what interest rate am i getting from wells fargo", - "interest_rate" - ], - [ - "what interest rate is bofi giving me on my cd", - "interest_rate" - ], - [ - "how do i find the interest rate for my checking account", - "interest_rate" - ], - [ - "what interest rate am i getting from citrix", - "interest_rate" - ], - [ - "how can i tell what the interest rate on my money market account is", - "interest_rate" - ], - [ - "what's my checking account yielding in interest", - "interest_rate" - ], - [ - "how much interest is my nfcu accrueing", - "interest_rate" - ], - [ - "what interest rate am i getting from sunflower bank", - "interest_rate" - ], - [ - "where do i go to find the interest rate on my savings account", - "interest_rate" - ], - [ - "what interest rate am i getting from nfcu", - "interest_rate" - ], - [ - "for my savings account i would like to know the interest rate", - "interest_rate" - ], - [ - "i need my checking account's interest rate", - "interest_rate" - ], - [ - "tell me the interest for my savings account", - "interest_rate" - ], - [ - "what's the interest rate on my savings account", - "interest_rate" - ], - [ - "i want the interest rate for my checking account", - "interest_rate" - ], - [ - "can i get the interest rate for my checking account", - "interest_rate" - ], - [ - "i need to get the interest rate of my savings account", - "interest_rate" - ], - [ - "what's my savings account interest", - "interest_rate" - ], - [ - "what's my savings account interest rate", - "interest_rate" - ], - [ - "i would like the interest rate for my savings account", - "interest_rate" - ], - [ - "what amount of interest does my checking account earn", - "interest_rate" - ], - [ - "what does my checking account at chase earn in interest", - "interest_rate" - ], - [ - "what amount of interest does my checking account at chase earn", - "interest_rate" - ], - [ - "what interest rate does my checking account come with", - "interest_rate" - ], - [ - "what does chase pay in interest per year", - "interest_rate" - ], - [ - "when can i change my credit limit", - "credit_limit_change" - ], - [ - "can i change my credit limit", - "credit_limit_change" - ], - [ - "can i get more credit", - "credit_limit_change" - ], - [ - "i need to change the credit limit i have", - "credit_limit_change" - ], - [ - "you need to tell me how to increase credit limit for my chase card", - "credit_limit_change" - ], - [ - "need to increase credit limit for chase card", - "credit_limit_change" - ], - [ - "i need to increase credit limit for my chase card", - "credit_limit_change" - ], - [ - "please tell me how to increase credit limit for the chase card", - "credit_limit_change" - ], - [ - "tell me how to increase credit limit for chase card", - "credit_limit_change" - ], - [ - "is it possible for me to increase my credit limit by 500 dollars", - "credit_limit_change" - ], - [ - "can my credit limit be increased by 500 dollars", - "credit_limit_change" - ], - [ - "i would like to increase my credit limit, can i do so by 500 dollars", - "credit_limit_change" - ], - [ - "may i increase my credit limit by 500 dollars", - "credit_limit_change" - ], - [ - "could i perhaps increase by credit limit by 500 dollars", - "credit_limit_change" - ], - [ - "can i increase the credit limit on my mastercard", - "credit_limit_change" - ], - [ - "can i increase the credit limit on my visa card", - "credit_limit_change" - ], - [ - "can i increase the credit limit on my discover card", - "credit_limit_change" - ], - [ - "can i increase the credit limit on my capital one card", - "credit_limit_change" - ], - [ - "can i increase the credit limit on my travel rewards card", - "credit_limit_change" - ], - [ - "how can i get my credit limit to be increased to $1000", - "credit_limit_change" - ], - [ - "can you get my credit limit increased to $1000", - "credit_limit_change" - ], - [ - "how do i get my credit limit increased to $1000", - "credit_limit_change" - ], - [ - "how do i ask for a limit increase on my discover card", - "credit_limit_change" - ], - [ - "can i get my limit increased on my discover card", - "credit_limit_change" - ], - [ - "how can i get a limit increase on my discover card", - "credit_limit_change" - ], - [ - "who do i need to contact to ask for a credit limit increase on my discover card", - "credit_limit_change" - ], - [ - "can you increase my credit limit to $1000", - "credit_limit_change" - ], - [ - "can my credit limit be increased to $1000", - "credit_limit_change" - ], - [ - "how do i adjust my credit limit", - "credit_limit_change" - ], - [ - "how can i increase the credit limit on my discover card", - "credit_limit_change" - ], - [ - "what are your hobbies exactly", - "what_are_your_hobbies" - ], - [ - "what are your hobbies in life", - "what_are_your_hobbies" - ], - [ - "what are some of your hobbies", - "what_are_your_hobbies" - ], - [ - "i would like to know some of your hobbies", - "what_are_your_hobbies" - ], - [ - "would you give me examples of what some of your hobbies are", - "what_are_your_hobbies" - ], - [ - "tell me what some of your hobbies are", - "what_are_your_hobbies" - ], - [ - "i am needing to know what some of your hobbies are", - "what_are_your_hobbies" - ], - [ - "i need you to talk to me about your hobbies", - "what_are_your_hobbies" - ], - [ - "would you tell me about your hobbies", - "what_are_your_hobbies" - ], - [ - "i want to talk to you about your hobbies", - "what_are_your_hobbies" - ], - [ - "give me examples of what some of your hobbies are", - "what_are_your_hobbies" - ], - [ - "what kinds of hobbies do you have", - "what_are_your_hobbies" - ], - [ - "what hobbies do you like to do", - "what_are_your_hobbies" - ], - [ - "would you tell me the hobbies the ai has", - "what_are_your_hobbies" - ], - [ - "what are the ai's hobbies", - "what_are_your_hobbies" - ], - [ - "does the ai have hobbies", - "what_are_your_hobbies" - ], - [ - "what kind of hobbies does the ai have", - "what_are_your_hobbies" - ], - [ - "can you tell me what hobbies the ai has", - "what_are_your_hobbies" - ], - [ - "what do you engage in during your free time", - "what_are_your_hobbies" - ], - [ - "what kind of things to you like to outside of work", - "what_are_your_hobbies" - ], - [ - "what do you like to do during your leisure time", - "what_are_your_hobbies" - ], - [ - "what kinds of activities to you participate in during your free time", - "what_are_your_hobbies" - ], - [ - "what do you do on off days", - "what_are_your_hobbies" - ], - [ - "how to you spend your free time", - "what_are_your_hobbies" - ], - [ - "what do you do after work", - "what_are_your_hobbies" - ], - [ - "what do you like to do besides work", - "what_are_your_hobbies" - ], - [ - "if you have hobbies tell me some of them", - "what_are_your_hobbies" - ], - [ - "what kind of hobbies are you interested in", - "what_are_your_hobbies" - ], - [ - "any hobbies you like to do", - "what_are_your_hobbies" - ], - [ - "what do you enjoy doing in your off time", - "what_are_your_hobbies" - ], - [ - "book me a flight to jackson, mississippi from austin texas on american airlines", - "book_flight" - ], - [ - "book me a place to chicago from atlanta united airlines", - "book_flight" - ], - [ - "can you book me a flight to memphis from st louis on delta airlines", - "book_flight" - ], - [ - "book a flight to los angeles from las vegas on american airlines", - "book_flight" - ], - [ - "book me a flight to dallas from st, paul, minnesota on delta airlines", - "book_flight" - ], - [ - "i need a flight on delta from los angeles to seattle", - "book_flight" - ], - [ - "i need to book a flight on jet blue to boston from new york", - "book_flight" - ], - [ - "can you get me a flight from san francisco to san jose using american airlines", - "book_flight" - ], - [ - "i want a flight from new york to san francisco using delta", - "book_flight" - ], - [ - "get me a flight from barcelona to paris from jet blue", - "book_flight" - ], - [ - "\"i'll be travelling from lax and headed to phl for 120 on the 10th of may", - "book_flight" - ], - [ - "\"i'm fly out from lax to phl this weekend for around $120", - "book_flight" - ], - [ - "\"i\"m headed out to lax and going to phl for a low price of $120 this weekend on the 12th", - "book_flight" - ], - [ - "\"i'm going on a flight from lax and going to phl, which is only $120 on june 15th", - "book_flight" - ], - [ - "\"i'll leave to lax and go to phl for $120 on nov 5th", - "book_flight" - ], - [ - "book me a flight from midway to jfk for less than 200 dollars", - "book_flight" - ], - [ - "i need a flight from boston to miami for under 300 dollars", - "book_flight" - ], - [ - "can i fly from atlanta to san francisco for less than 100 dollars", - "book_flight" - ], - [ - "book a flight from new york to la for less than 200 dollars", - "book_flight" - ], - [ - "find me a flight from seattle to detroit for less than 200 dollars", - "book_flight" - ], - [ - "i want to a book a roundtrip flight from san antonio to dtw departing on friday and returning on wednesday", - "book_flight" - ], - [ - "i'm looking for a flight from billings to cleveland on may 2 and a return on may 9", - "book_flight" - ], - [ - "i'm looking for flights that depart on the 3rd and return on z from monday to friday", - "book_flight" - ], - [ - "what roundtrip flights from orlando to vegas are available from thursday to monday", - "book_flight" - ], - [ - "are there any roundtrip flights from shanghai to seatac that depart on wednesday and return on the thirty first", - "book_flight" - ], - [ - "make sure i get a delta flight from pittsburgh to arizona", - "book_flight" - ], - [ - "book a delta flight to arizona from pittsburgh", - "book_flight" - ], - [ - "schedule a flight from pittsburgh to arizona on delta", - "book_flight" - ], - [ - "i want to fly to atlanta for under 300 from pittsburgh", - "book_flight" - ], - [ - "i need a flight for under 300 from pittsburgh to atlanta", - "book_flight" - ], - [ - "does my shopping list have pop tarts", - "shopping_list" - ], - [ - "can you check to see if my shopping list already has milk", - "shopping_list" - ], - [ - "did i remember to put oatmeal on my list", - "shopping_list" - ], - [ - "iterate over the items on my grocery list", - "shopping_list" - ], - [ - "tell me what i have on my shopping list", - "shopping_list" - ], - [ - "do i have twinkies on the grocery list", - "shopping_list" - ], - [ - "have i already got eggs down on the shopping list", - "shopping_list" - ], - [ - "recite the items i'm planning to purchase", - "shopping_list" - ], - [ - "what do i currently have on my shopping list", - "shopping_list" - ], - [ - "what's on my to-buy list", - "shopping_list" - ], - [ - "what's on my purchase list", - "shopping_list" - ], - [ - "do i have to buy milk", - "shopping_list" - ], - [ - "is milk on my shopping list", - "shopping_list" - ], - [ - "is milk one of my shopping list items", - "shopping_list" - ], - [ - "am i supposed to buy milk", - "shopping_list" - ], - [ - "is milk one of the things i need to buy", - "shopping_list" - ], - [ - "tell me what's is on my shopping list", - "shopping_list" - ], - [ - "please read my shopping list", - "shopping_list" - ], - [ - "did you put carrots on the shopping list", - "shopping_list" - ], - [ - "does the shopping list have apples on it", - "shopping_list" - ], - [ - "are carrots added to the grocery list", - "shopping_list" - ], - [ - "is garlic on my grocery list", - "shopping_list" - ], - [ - "did carrots get on my shopping list", - "shopping_list" - ], - [ - "what things are on my shopping list today", - "shopping_list" - ], - [ - "tell me the items in my shopping list", - "shopping_list" - ], - [ - "what does my shopping list contain", - "shopping_list" - ], - [ - "i need to know what's on my shopping list", - "shopping_list" - ], - [ - "what is on the shopping list", - "shopping_list" - ], - [ - "please let me know what is on my shopping list", - "shopping_list" - ], - [ - "let me know what's on my shopping list", - "shopping_list" - ], - [ - "text chrissy, i'm on my way", - "text" - ], - [ - "text dave, i'll be there soon", - "text" - ], - [ - "send davis a text i'll be there in a few", - "text" - ], - [ - "text laura i'll be late for dinner", - "text" - ], - [ - "text mike, \"i'm running late", - "text" - ], - [ - "tell jim i'm coming home soon", - "text" - ], - [ - "i want to tell susan that the meeting has been cancelled", - "text" - ], - [ - "tell fred that i don't have his guitar", - "text" - ], - [ - "could you send a text to bill saying no", - "text" - ], - [ - "text mark hello", - "text" - ], - [ - "text emily", - "text" - ], - [ - "please text john", - "text" - ], - [ - "i want you to text mark", - "text" - ], - [ - "get a text to mark", - "text" - ], - [ - "can you text walt and tell him to meet me at the car wash", - "text" - ], - [ - "text courtney and inform her about the detour", - "text" - ], - [ - "text dan and tell him to go home", - "text" - ], - [ - "text samantha and let her know i will arrive in 10 minutes", - "text" - ], - [ - "text katy and tell her i love her", - "text" - ], - [ - "text jean and tell him to call work", - "text" - ], - [ - "text steve and tell him i am running late", - "text" - ], - [ - "i'd like you to text marie and let her know to meet me at the hospital", - "text" - ], - [ - "text jeff and tell him to pay the bill", - "text" - ], - [ - "text mark and tell him to leave now", - "text" - ], - [ - "send jack a text saying hi", - "text" - ], - [ - "send a text that says hi to abby", - "text" - ], - [ - "i'd like to send a text to jack, say \"hi", - "text" - ], - [ - "can you text dave and tell him i like his paper", - "text" - ], - [ - "can you text mary and tell her she is amazing", - "text" - ], - [ - "can you text bill and tell him i love him", - "text" - ], - [ - "what do i owe to jcp", - "bill_balance" - ], - [ - "what is the amount due on my visa", - "bill_balance" - ], - [ - "how much do i owe visa", - "bill_balance" - ], - [ - "how much do you think my rent and electric bills are", - "bill_balance" - ], - [ - "what would you say my gas and phone bills are at", - "bill_balance" - ], - [ - "i need to know the price of my car payment and insurance please", - "bill_balance" - ], - [ - "what price is my credit card and my water bill at", - "bill_balance" - ], - [ - "how much is my water and sewer", - "bill_balance" - ], - [ - "how much do i need to pay for my electricity and water bills", - "bill_balance" - ], - [ - "what is the cost of my rent and water bills", - "bill_balance" - ], - [ - "how much are my rent and cable", - "bill_balance" - ], - [ - "how much does my water and electricity cost", - "bill_balance" - ], - [ - "what do i owe this month on all my bills", - "bill_balance" - ], - [ - "i think all my bills are paid, but can you double check", - "bill_balance" - ], - [ - "i think i owe about 100 left on my bills, am i forgetting anything", - "bill_balance" - ], - [ - "what are my bills this month", - "bill_balance" - ], - [ - "what does my cable bill look like", - "bill_balance" - ], - [ - "has my electricity bill increased this month how much", - "bill_balance" - ], - [ - "how expensive is my internet", - "bill_balance" - ], - [ - "how much will my monthly bill be", - "bill_balance" - ], - [ - "what are my total bills this month", - "bill_balance" - ], - [ - "what will i be paying for utilities this month", - "bill_balance" - ], - [ - "how much is my telephone bill this month", - "bill_balance" - ], - [ - "how much is due for my water bill", - "bill_balance" - ], - [ - "how much do i have to pay this month", - "bill_balance" - ], - [ - "tell me my water bill please", - "bill_balance" - ], - [ - "is the phone bill the same as last month", - "bill_balance" - ], - [ - "whens my insurance due and how much does it cost", - "bill_balance" - ], - [ - "how much is the car bill this month", - "bill_balance" - ], - [ - "what is the electricity bill", - "bill_balance" - ], - [ - "can i share my location with david", - "share_location" - ], - [ - "please send my location to kevin and also to lucy", - "share_location" - ], - [ - "how do i share my location with kate and mike", - "share_location" - ], - [ - "can you let michael and julie know my location", - "share_location" - ], - [ - "please let lisa and chris know my location information", - "share_location" - ], - [ - "make my location available with david and kate", - "share_location" - ], - [ - "i need to give my location to macy and george", - "share_location" - ], - [ - "i'd like for this person to know my location", - "share_location" - ], - [ - "can you indicate my location to my friend", - "share_location" - ], - [ - "share my location with this person", - "share_location" - ], - [ - "send my location to this individual", - "share_location" - ], - [ - "what is my current location", - "share_location" - ], - [ - "share location with john", - "share_location" - ], - [ - "give ann and scott my location", - "share_location" - ], - [ - "could you inform ann and scott of my location", - "share_location" - ], - [ - "let ann and scott know where i am", - "share_location" - ], - [ - "will you make sure ann and scott know my location", - "share_location" - ], - [ - "tell ann and scott where i am", - "share_location" - ], - [ - "tell david my location", - "share_location" - ], - [ - "send david my location", - "share_location" - ], - [ - "tell my location to david", - "share_location" - ], - [ - "tell david where i am", - "share_location" - ], - [ - "share location with david", - "share_location" - ], - [ - "show allison how to get to me", - "share_location" - ], - [ - "send my location to sis", - "share_location" - ], - [ - "show cody where i am", - "share_location" - ], - [ - "share my location to susan", - "share_location" - ], - [ - "share my current location with kristen", - "share_location" - ], - [ - "send sarah my current location", - "share_location" - ], - [ - "please send my location to rob and mary", - "share_location" - ], - [ - "how do i get stuff with visa points", - "redeem_rewards" - ], - [ - "what are my mastercard points good for", - "redeem_rewards" - ], - [ - "how many points do i have to cash", - "redeem_rewards" - ], - [ - "where can i cash out my card points", - "redeem_rewards" - ], - [ - "what do i have to do to use my credit points acquired through purchases", - "redeem_rewards" - ], - [ - "how do i use my card reward points for my next flight", - "redeem_rewards" - ], - [ - "how do i go about getting cash for my card points accumulated", - "redeem_rewards" - ], - [ - "tell me how to get my points from credit card use cashed in", - "redeem_rewards" - ], - [ - "i want to use my card reward points", - "redeem_rewards" - ], - [ - "can i redeem my points by transferring them to someone as a gift", - "redeem_rewards" - ], - [ - "can i redeem my points on gas", - "redeem_rewards" - ], - [ - "can i redeem my points for flights", - "redeem_rewards" - ], - [ - "can i get cash back for my points", - "redeem_rewards" - ], - [ - "can i use my points to pay my credit card", - "redeem_rewards" - ], - [ - "what are the steps to get my rewards for my visa card", - "redeem_rewards" - ], - [ - "how can i cash out my rewards for a visa card", - "redeem_rewards" - ], - [ - "how can i claim my rewards for my visa card", - "redeem_rewards" - ], - [ - "how can i get my rewards for my master card", - "redeem_rewards" - ], - [ - "where would i get my rewards for my master card", - "redeem_rewards" - ], - [ - "let me cash my credit rewards", - "redeem_rewards" - ], - [ - "help me redeem my reward points", - "redeem_rewards" - ], - [ - "put in a request for cashing in credit points", - "redeem_rewards" - ], - [ - "i want to use my credit rewards now", - "redeem_rewards" - ], - [ - "i need to use my credit points", - "redeem_rewards" - ], - [ - "i need to redeem my visa points", - "redeem_rewards" - ], - [ - "whats the policy to redeem my visa reward points", - "redeem_rewards" - ], - [ - "what can i get with my mastercard points", - "redeem_rewards" - ], - [ - "how do i cash in my amex reward points", - "redeem_rewards" - ], - [ - "how do i redeem my visa points", - "redeem_rewards" - ], - [ - "i want to shop using credit card points", - "redeem_rewards" - ], - [ - "play the song called baby shark", - "play_music" - ], - [ - "play the song called wreckless love", - "play_music" - ], - [ - "play the song called i want it that way", - "play_music" - ], - [ - "play the song called dancing on the ceiling", - "play_music" - ], - [ - "play the song called amazing grace", - "play_music" - ], - [ - "get me my slow sounds", - "play_music" - ], - [ - "let me hear my slow songs", - "play_music" - ], - [ - "pull up the songs under slow", - "play_music" - ], - [ - "i want to hear my slow playlist", - "play_music" - ], - [ - "i'm in the mood for slow songs and nothing else", - "play_music" - ], - [ - "the song that goes, \"starships were meant to fly\", play it", - "play_music" - ], - [ - "please play that song that goes, \"starships were meant to fly", - "play_music" - ], - [ - "play the song that goes, \"starships were meant to fly", - "play_music" - ], - [ - "can you play the song that goes like, \"starships were meant to fly", - "play_music" - ], - [ - "will you play the song that goes like, \"starships were meant to fly", - "play_music" - ], - [ - "drop some beats", - "play_music" - ], - [ - "turn on top 20 country hits", - "play_music" - ], - [ - "turn on my tunes", - "play_music" - ], - [ - "please play music by acdc", - "play_music" - ], - [ - "play oldschool rap", - "play_music" - ], - [ - "put on some metallica music", - "play_music" - ], - [ - "play music by ludacris", - "play_music" - ], - [ - "bump some jams", - "play_music" - ], - [ - "play ludacris hits", - "play_music" - ], - [ - "play a song", - "play_music" - ], - [ - "turn on metallicas greatest hits", - "play_music" - ], - [ - "put on my 90s playlist", - "play_music" - ], - [ - "can you play music by led zepplin", - "play_music" - ], - [ - "lets play some music by korn", - "play_music" - ], - [ - "do play the music by linkin park", - "play_music" - ], - [ - "i need to add something to my calendar for next tuesday", - "calendar_update" - ], - [ - "please clear my calendar", - "calendar_update" - ], - [ - "take the doctor appointment off my calendar please", - "calendar_update" - ], - [ - "can you add an event to my calendar", - "calendar_update" - ], - [ - "erase all events on friday from my calendar", - "calendar_update" - ], - [ - "remove jess's party from my calendar", - "calendar_update" - ], - [ - "delete all calendar entries on march 3", - "calendar_update" - ], - [ - "delete dentist from my calendar", - "calendar_update" - ], - [ - "cancel doctors appointment from my calendar", - "calendar_update" - ], - [ - "erase meeting with jeff from my calendar", - "calendar_update" - ], - [ - "clear my calendar on feb 28", - "calendar_update" - ], - [ - "cancel event scheduled for this afternoon", - "calendar_update" - ], - [ - "please take off my calendar on saturday the 6th birthday party for john", - "calendar_update" - ], - [ - "i want to take the 8am meeting with sam on monday the 5th off my calendar", - "calendar_update" - ], - [ - "please remove lunch with sally that is on my calendar on tuesday the 8th", - "calendar_update" - ], - [ - "i need buy a birthday gift for sue taken off my calendar it is on monday or tuesday last week", - "calendar_update" - ], - [ - "will you remove the dinner with june on saturday the 4th at 7pm from my calendar", - "calendar_update" - ], - [ - "can you cancel improv class from my calendar for may 7th", - "calendar_update" - ], - [ - "clear my calendar for may 3rd", - "calendar_update" - ], - [ - "take work from my calendar for may 7th", - "calendar_update" - ], - [ - "clear my calendar for september 6th", - "calendar_update" - ], - [ - "delete jury duty from my calendar for may 7th", - "calendar_update" - ], - [ - "remove fencing from my calendar for may 7th", - "calendar_update" - ], - [ - "clear my calendar for february 29th", - "calendar_update" - ], - [ - "clear my calendar for april 20th", - "calendar_update" - ], - [ - "clear my calendar for november 11th", - "calendar_update" - ], - [ - "remove wrestlemania from my calendar for may 7th", - "calendar_update" - ], - [ - "what can i do to get rid of this event", - "calendar_update" - ], - [ - "what is the best way to remove this appointment", - "calendar_update" - ], - [ - "friday needs to be clear on my calendar", - "calendar_update" - ], - [ - "tell me if you are a human or are a computer", - "are_you_a_bot" - ], - [ - "would you tell me if you are a human or are a computer", - "are_you_a_bot" - ], - [ - "provide me with the knowledge of whether you are a human or are a computer", - "are_you_a_bot" - ], - [ - "let me know if you are a human or are a computer", - "are_you_a_bot" - ], - [ - "i need to know whether you are a human or are a computer", - "are_you_a_bot" - ], - [ - "are you real", - "are_you_a_bot" - ], - [ - "can you tell me if your a bot", - "are_you_a_bot" - ], - [ - "i want to know if your a bot", - "are_you_a_bot" - ], - [ - "is this a bot", - "are_you_a_bot" - ], - [ - "i think your a bot", - "are_you_a_bot" - ], - [ - "is it true your a real person", - "are_you_a_bot" - ], - [ - "are you a person that's real", - "are_you_a_bot" - ], - [ - "are you actually a person", - "are_you_a_bot" - ], - [ - "are you really real", - "are_you_a_bot" - ], - [ - "your a bot aren't you", - "are_you_a_bot" - ], - [ - "could you be human", - "are_you_a_bot" - ], - [ - "could you be a person", - "are_you_a_bot" - ], - [ - "are you human", - "are_you_a_bot" - ], - [ - "are you a human or ai computer based", - "are_you_a_bot" - ], - [ - "would you call yourself a human or a computer", - "are_you_a_bot" - ], - [ - "how do you describe yourself: as a computer or a human", - "are_you_a_bot" - ], - [ - "are you computer or human", - "are_you_a_bot" - ], - [ - "would most people say you are a computer or a human", - "are_you_a_bot" - ], - [ - "are you real or a computer", - "are_you_a_bot" - ], - [ - "are you a computer generated voice", - "are_you_a_bot" - ], - [ - "am i talking to a real live person", - "are_you_a_bot" - ], - [ - "is your voice from a human or is it synthesized", - "are_you_a_bot" - ], - [ - "are you a person or artificial intelligence", - "are_you_a_bot" - ], - [ - "could you tell me if you're a real person", - "are_you_a_bot" - ], - [ - "are you a person or robot", - "are_you_a_bot" - ], - [ - "can i get to work on my fuel tank", - "gas" - ], - [ - "can i get to susan's house with my current tank", - "gas" - ], - [ - "do i have enough gas to get home", - "gas" - ], - [ - "do i have enough fuel to travel to san diego from here", - "gas" - ], - [ - "will i make it to my current destination on this fuel tank", - "gas" - ], - [ - "can i make it to los angeles with this fuel level", - "gas" - ], - [ - "can i reach seattle with this amount of fuel", - "gas" - ], - [ - "do i have enough gas in my tank to make it to washington dc", - "gas" - ], - [ - "do i have enough gas in my car to make it to dallas", - "gas" - ], - [ - "will i run out of gas before i reach atlantic city", - "gas" - ], - [ - "tell me where my gas tank is", - "gas" - ], - [ - "where can i find my gas tank", - "gas" - ], - [ - "where is my gas tank located", - "gas" - ], - [ - "how many gallons do i have left in my gas tank", - "gas" - ], - [ - "how's my gasoline how much do i have left", - "gas" - ], - [ - "what percentage full is my gas tank", - "gas" - ], - [ - "how full or empty is my tank of gas", - "gas" - ], - [ - "how much gas do i have left in my tank", - "gas" - ], - [ - "how full is my gas tank", - "gas" - ], - [ - "how many more miles can i drive on my current tank", - "gas" - ], - [ - "how much gas is left in my car", - "gas" - ], - [ - "how full is the gas tank", - "gas" - ], - [ - "what does the gas meter read", - "gas" - ], - [ - "how much of the gas do i have left", - "gas" - ], - [ - "how much gas do i have here", - "gas" - ], - [ - "how much gas do i have in the tank", - "gas" - ], - [ - "can you tell me how much gas is in my tank", - "gas" - ], - [ - "tell me my gas tank levels", - "gas" - ], - [ - "what is the data of my gas tank", - "gas" - ], - [ - "how much gas do i have in my tank", - "gas" - ], - [ - "i want to bring my card on the texas trip in june, will it be expired by then", - "expiration_date" - ], - [ - "what's the month, year, and day that my card expires", - "expiration_date" - ], - [ - "does my card ending in 1234, or any of my cards, expire soon", - "expiration_date" - ], - [ - "does my card have an expiration date and if so, what is it", - "expiration_date" - ], - [ - "when does my card expire, the one ending in 1234", - "expiration_date" - ], - [ - "give me my credit card expiration date", - "expiration_date" - ], - [ - "what is the expiration month and year on my credit car", - "expiration_date" - ], - [ - "when is the date of expiration for my first bank card", - "expiration_date" - ], - [ - "what is the expiration month of my card", - "expiration_date" - ], - [ - "what is the expiration date of my credit card", - "expiration_date" - ], - [ - "let me know when my credit card expire", - "expiration_date" - ], - [ - "when will my citi card expire", - "expiration_date" - ], - [ - "when is my credit card expire", - "expiration_date" - ], - [ - "when is the expiration month for my card", - "expiration_date" - ], - [ - "when is the expiration date of my credit card", - "expiration_date" - ], - [ - "what is the expiration date on my chase card", - "expiration_date" - ], - [ - "when is the expiration date for me discover", - "expiration_date" - ], - [ - "when it my citi card expired", - "expiration_date" - ], - [ - "when is my card expired", - "expiration_date" - ], - [ - "tell me the expiration date on my credit card", - "expiration_date" - ], - [ - "what month is my card expired in", - "expiration_date" - ], - [ - "how soon does my credit card expire", - "expiration_date" - ], - [ - "when will my new credit card arrive", - "expiration_date" - ], - [ - "what month does my credit card expire", - "expiration_date" - ], - [ - "what is the date when my visa card will expire", - "expiration_date" - ], - [ - "can you tell me what the date of expiry for my visa card is", - "expiration_date" - ], - [ - "tell me the expiration date for my visa card", - "expiration_date" - ], - [ - "show me the expiration date for my visa card", - "expiration_date" - ], - [ - "where should i look for my credit card expiration day", - "expiration_date" - ], - [ - "when will my credit card no longer be good", - "expiration_date" - ], - [ - "add to my motivational playlist rap god", - "update_playlist" - ], - [ - "include rap god on the motivational playlist", - "update_playlist" - ], - [ - "move rap god to my motivational playlist", - "update_playlist" - ], - [ - "in my motivational playlist include the song rap god", - "update_playlist" - ], - [ - "add the song rap god to the motivational playlist", - "update_playlist" - ], - [ - "i need this song on my meditation playlist", - "update_playlist" - ], - [ - "i want the current song added to my pregame playlist", - "update_playlist" - ], - [ - "please put this song on my studying playlist", - "update_playlist" - ], - [ - "please throw this song onto my cleaning playlist", - "update_playlist" - ], - [ - "i would like the song playing right now put on my driving playlist", - "update_playlist" - ], - [ - "i want this song on my pregame playlist", - "update_playlist" - ], - [ - "please add this song to my study playlist", - "update_playlist" - ], - [ - "can you add this song to my driving playlist", - "update_playlist" - ], - [ - "will you be sure to add this current song to my sleep playlist", - "update_playlist" - ], - [ - "please add the song i'm listening to right now to my relaxation playlist", - "update_playlist" - ], - [ - "add this to my rock playlist", - "update_playlist" - ], - [ - "add what im listening to to my rock playlist", - "update_playlist" - ], - [ - "i want to put this on my rock playlist", - "update_playlist" - ], - [ - "add current song to rock playlist", - "update_playlist" - ], - [ - "add this song to my rock playlist", - "update_playlist" - ], - [ - "please add this song to my country music playlist", - "update_playlist" - ], - [ - "i am asking you to add this song to my country music playlist", - "update_playlist" - ], - [ - "help me add this song to my country music playlist", - "update_playlist" - ], - [ - "can you add this song to my country music playlist", - "update_playlist" - ], - [ - "this song needs to be added to my country music playlist", - "update_playlist" - ], - [ - "this song i'm listening to would be great on my commute playlist", - "update_playlist" - ], - [ - "i need this song on my jam playlist", - "update_playlist" - ], - [ - "i want what i'm listening to to be added to my chill playlist", - "update_playlist" - ], - [ - "i need what i'm listening to right now to be put on my exercise playlist", - "update_playlist" - ], - [ - "put what i'm listening to on my workout playlist", - "update_playlist" - ], - [ - "i do not actually need my reservation anymore", - "cancel_reservation" - ], - [ - "i need to cancel my reservation for rob at red robin", - "cancel_reservation" - ], - [ - "cancel my reservation for bob at red robin", - "cancel_reservation" - ], - [ - "i do not want my reservation anymore", - "cancel_reservation" - ], - [ - "i need you to cancel my reservation for 5 at red robin", - "cancel_reservation" - ], - [ - "please cancel my reservation for tim at jb's", - "cancel_reservation" - ], - [ - "i gotta cancel my reservation for barry at red robin", - "cancel_reservation" - ], - [ - "i don't need the reservation anymore", - "cancel_reservation" - ], - [ - "i want you to cancel my reservation for 5 at red robin", - "cancel_reservation" - ], - [ - "i am not in need of my reservation anymore", - "cancel_reservation" - ], - [ - "go ahead and cancel my reservation for 5 at red robin", - "cancel_reservation" - ], - [ - "i wish to cancel my reservation for fred at red robin", - "cancel_reservation" - ], - [ - "i no longer want my reservation anymore", - "cancel_reservation" - ], - [ - "please cancel my reservation for 5 at red robin", - "cancel_reservation" - ], - [ - "i need you to cancel my reservation for smith at the williams diner", - "cancel_reservation" - ], - [ - "i want a cancellation of the dinner reservation for phillips at bernardin's", - "cancel_reservation" - ], - [ - "please delete the reservation for roberts at village tavern", - "cancel_reservation" - ], - [ - "could you cancel my reservation for winters at the palace tonight", - "cancel_reservation" - ], - [ - "i would like you to cancel the dinner reservation for williams at the palace tonight", - "cancel_reservation" - ], - [ - "i have to cancel my reservation after all", - "cancel_reservation" - ], - [ - "cancel my reservation for dinner tonight, please", - "cancel_reservation" - ], - [ - "i need to cancel my reservation after all", - "cancel_reservation" - ], - [ - "i have to cancel my reservation after all, please", - "cancel_reservation" - ], - [ - "cancel my reservation for dinner this saturday, please", - "cancel_reservation" - ], - [ - "cancel my reservation for dinner this friday, please", - "cancel_reservation" - ], - [ - "cancel my reservation for dinner this saturday", - "cancel_reservation" - ], - [ - "cancel my reservation for dinner tonight", - "cancel_reservation" - ], - [ - "i have to cancel my reservation", - "cancel_reservation" - ], - [ - "i need to cancel my reservation after all, please", - "cancel_reservation" - ], - [ - "i need my dinner reservation canceled", - "cancel_reservation" - ], - [ - "i would like to hear something funny", - "tell_joke" - ], - [ - "do you have any monkey jokes", - "tell_joke" - ], - [ - "know any dad jokes", - "tell_joke" - ], - [ - "tell me a dog joke", - "tell_joke" - ], - [ - "heard any good jokes", - "tell_joke" - ], - [ - "i want to hear a joke about elephants", - "tell_joke" - ], - [ - "i'd like to hear a lawyer joke", - "tell_joke" - ], - [ - "tell me a blonde joke", - "tell_joke" - ], - [ - "do you know any dad jokes", - "tell_joke" - ], - [ - "tell me a joke about elephants", - "tell_joke" - ], - [ - "tell me a joke about the subject of sailing", - "tell_joke" - ], - [ - "give me a joke about water", - "tell_joke" - ], - [ - "give me a joke about the topic of television", - "tell_joke" - ], - [ - "give me a joke about the subject of bugs", - "tell_joke" - ], - [ - "tell me a joke about the topic of mice", - "tell_joke" - ], - [ - "i would like to hear a joke", - "tell_joke" - ], - [ - "will you tell me a joke", - "tell_joke" - ], - [ - "let's hear a joke!", - "tell_joke" - ], - [ - "i could use a laugh, got any jokes", - "tell_joke" - ], - [ - "can you tell me something funny about science", - "tell_joke" - ], - [ - "can you share something funny about traveling", - "tell_joke" - ], - [ - "i want to hear your best joke", - "tell_joke" - ], - [ - "tell me a good joke", - "tell_joke" - ], - [ - "tell me something funny about horses", - "tell_joke" - ], - [ - "i want to hear something funny about history", - "tell_joke" - ], - [ - "can you share a humorous joke with me", - "tell_joke" - ], - [ - "i want to hear something funny about politicsi", - "tell_joke" - ], - [ - "let's hear a joke from you please", - "tell_joke" - ], - [ - "tell me something funny about the middle ages", - "tell_joke" - ], - [ - "do you know any jokes", - "tell_joke" - ], - [ - "would it be possible to change your name to coraline", - "change_ai_name" - ], - [ - "would it be okay to change your name to daphne", - "change_ai_name" - ], - [ - "id like to change your name to max", - "change_ai_name" - ], - [ - "what do you think about changing your name to heath", - "change_ai_name" - ], - [ - "lets start calling you allan", - "change_ai_name" - ], - [ - "i would like to start calling you heath", - "change_ai_name" - ], - [ - "what do you think about me calling you cora", - "change_ai_name" - ], - [ - "im going to call you xander", - "change_ai_name" - ], - [ - "can we change your name to clara", - "change_ai_name" - ], - [ - "how about lets start calling you juliette", - "change_ai_name" - ], - [ - "i want to start calling you owen", - "change_ai_name" - ], - [ - "can i call you arnold instead", - "change_ai_name" - ], - [ - "how about i call you sue", - "change_ai_name" - ], - [ - "can i start calling you fred", - "change_ai_name" - ], - [ - "can i rename you bob", - "change_ai_name" - ], - [ - "i want to rename you joe", - "change_ai_name" - ], - [ - "your new name is joe, okay", - "change_ai_name" - ], - [ - "i'm going to start calling you joe", - "change_ai_name" - ], - [ - "you are going to be called joe now", - "change_ai_name" - ], - [ - "start responding to joe", - "change_ai_name" - ], - [ - "i'm changing your name to joe", - "change_ai_name" - ], - [ - "i'd like to start calling you buddy", - "change_ai_name" - ], - [ - "i'd like to start calling you jake", - "change_ai_name" - ], - [ - "i'd like to start calling you lover", - "change_ai_name" - ], - [ - "i'd like to start calling you friend", - "change_ai_name" - ], - [ - "i want to change your name to shelby", - "change_ai_name" - ], - [ - "i'd rather call you gloria", - "change_ai_name" - ], - [ - "i'm changing your name to goliath", - "change_ai_name" - ], - [ - "is it okay to change your name to samson", - "change_ai_name" - ], - [ - "can i call you james instead", - "change_ai_name" - ], - [ - "what your numerical digit to display as your age", - "how_old_are_you" - ], - [ - "how old will you be", - "how_old_are_you" - ], - [ - "how old will you be this year", - "how_old_are_you" - ], - [ - "whats your age", - "how_old_are_you" - ], - [ - "when is your birthday", - "how_old_are_you" - ], - [ - "when were you made", - "how_old_are_you" - ], - [ - "whats your age range", - "how_old_are_you" - ], - [ - "could you tell me how old you are", - "how_old_are_you" - ], - [ - "would you tell me how old you are", - "how_old_are_you" - ], - [ - "your date of birth", - "how_old_are_you" - ], - [ - "your birthday please", - "how_old_are_you" - ], - [ - "can you tell me your birthday", - "how_old_are_you" - ], - [ - "whens your birthday", - "how_old_are_you" - ], - [ - "what's your bday", - "how_old_are_you" - ], - [ - "how old were you on your last birthday", - "how_old_are_you" - ], - [ - "how many years have you been alive", - "how_old_are_you" - ], - [ - "can i ask your age", - "how_old_are_you" - ], - [ - "do you mind if i ask how old you are", - "how_old_are_you" - ], - [ - "may i ask your age", - "how_old_are_you" - ], - [ - "i need to know your age", - "how_old_are_you" - ], - [ - "please tell me your age", - "how_old_are_you" - ], - [ - "can you tell me your age", - "how_old_are_you" - ], - [ - "when's your birthday", - "how_old_are_you" - ], - [ - "how young are you", - "how_old_are_you" - ], - [ - "what's your age right now", - "how_old_are_you" - ], - [ - "how old would you be", - "how_old_are_you" - ], - [ - "do you know how old you are", - "how_old_are_you" - ], - [ - "how old", - "how_old_are_you" - ], - [ - "what's your date of birth", - "how_old_are_you" - ], - [ - "how old are you turning", - "how_old_are_you" - ], - [ - "i need to rent an suv in charlestown for the first week in june who do you suggest", - "car_rental" - ], - [ - "find a decent rental care for next week at the philadelphia airport", - "car_rental" - ], - [ - "who can i rent a car from next month in orlando", - "car_rental" - ], - [ - "i need to rent a car kfor one week in ocean city, nj so who has the best deal", - "car_rental" - ], - [ - "find me a car rental for the weekend in asheville, nc via priceline", - "car_rental" - ], - [ - "what is the phone number of the car rental place", - "car_rental" - ], - [ - "book a rental car to rhode island for friday, tomorrow", - "car_rental" - ], - [ - "alexa, book a rental car to los angeles county in 2 hours", - "car_rental" - ], - [ - "can you book a car rental today to new york city to philadelphia", - "car_rental" - ], - [ - "book a car rental to miami florida today", - "car_rental" - ], - [ - "siri, book a car rental to the poconos today right now", - "car_rental" - ], - [ - "where in syracuse can i book a car", - "car_rental" - ], - [ - "in x, help me book a car", - "car_rental" - ], - [ - "book me a car rental in wichita", - "car_rental" - ], - [ - "how many places in dallas can i rent a car", - "car_rental" - ], - [ - "where can i rent a car in singapore", - "car_rental" - ], - [ - "march 2nd through march 18th, i'm going to need a jeep in frankfort", - "car_rental" - ], - [ - "rent a car for 3/1 through 3/3 in boston; i'd prefer an suv", - "car_rental" - ], - [ - "can i rent a sports car in augusta for 3/4 through 3/8", - "car_rental" - ], - [ - "in tampa, i'd like to rent a sedan from 4/1 until 4/5", - "car_rental" - ], - [ - "i'm going to need a coupe car in sedona from 5/1 until 5/4", - "car_rental" - ], - [ - "schedule a rental car starting monday the 5th thru friday the 9th at rent a car in town", - "car_rental" - ], - [ - "can you find a rental car for me that is available this monday through thursday , any make will do", - "car_rental" - ], - [ - "i need to rent a car from traveler's rent a car downtown and make it from friday the 6th to monday the 9th cheapest available", - "car_rental" - ], - [ - "i want a rental car that is available tomorrow and that i can keep for four days please find me one", - "car_rental" - ], - [ - "find me a rental car for next week , from friday the 5th thru monday the 8th, any kind", - "car_rental" - ], - [ - "i need to rent a car for may 8th to may 25th in danville and i'd like a ford", - "car_rental" - ], - [ - "i need to rent a car for may 10th to may 15th in lizton and i'd like a bmw", - "car_rental" - ], - [ - "i need to rent a car for may 3rd to may 5th in indianapolis and i'd like a mercedes", - "car_rental" - ], - [ - "i need to rent a car for may 11thto may 13th in chicago and i'd like a coupe", - "car_rental" - ], - [ - "what should i do to get my car jump started", - "jump_start" - ], - [ - "what do i need to do to get my car jump started", - "jump_start" - ], - [ - "how can i go about jump starting my car", - "jump_start" - ], - [ - "what steps should be taken to jump start a car", - "jump_start" - ], - [ - "what can i do to jump start my car", - "jump_start" - ], - [ - "how do i jump start my car", - "jump_start" - ], - [ - "i need to know how to get my car jump started", - "jump_start" - ], - [ - "my car needs a jump start; what do i need to do", - "jump_start" - ], - [ - "tell me how to jump start my car", - "jump_start" - ], - [ - "what steps should i take if i think my car battery is dead", - "jump_start" - ], - [ - "i'm almost certain my car battery died, please tell me what to do", - "jump_start" - ], - [ - "please give me a quick tutorial on jump starting my car", - "jump_start" - ], - [ - "will you guide me through the process to jump start my car, please", - "jump_start" - ], - [ - "what steps do i need to follow to jump start my car", - "jump_start" - ], - [ - "what do i do if my car battery died", - "jump_start" - ], - [ - "what do i do if i suspect my car battery is dead", - "jump_start" - ], - [ - "i need instructions to walk me through jump starting my car", - "jump_start" - ], - [ - "i believe that my car battery has died, what do i do next", - "jump_start" - ], - [ - "can you give me instructions on how to jump start my car, please", - "jump_start" - ], - [ - "i wanna know how to jump start my car", - "jump_start" - ], - [ - "what do i do now that my battery is dead", - "jump_start" - ], - [ - "my car battery is dead what do i do", - "jump_start" - ], - [ - "i would like to jump start my car", - "jump_start" - ], - [ - "i really need to jump start my car", - "jump_start" - ], - [ - "what should i do now that my car battery is dead", - "jump_start" - ], - [ - "what do i need to do now that my battery is dead", - "jump_start" - ], - [ - "i have to jump start my car", - "jump_start" - ], - [ - "what shall i do now that my battery is dead", - "jump_start" - ], - [ - "i gotta jump start my car", - "jump_start" - ], - [ - "what is the process for jump starting my car", - "jump_start" - ], - [ - "what's a good italian meal", - "meal_suggestion" - ], - [ - "i'm looking for a meal that's from the asian cuisine", - "meal_suggestion" - ], - [ - "i'm feeling like a greek meal and need some suggestions", - "meal_suggestion" - ], - [ - "indian cuisine suits me and i'd like a meal suggestion, please", - "meal_suggestion" - ], - [ - "what's a good, popular american meal", - "meal_suggestion" - ], - [ - "i'd like a meal suggestion from thailand", - "meal_suggestion" - ], - [ - "tell me what meal to eat from texas", - "meal_suggestion" - ], - [ - "can you give me a meal suggestion from the south", - "meal_suggestion" - ], - [ - "i want to try a meal from ireland", - "meal_suggestion" - ], - [ - "i want a meal from vietnam to be suggested to me", - "meal_suggestion" - ], - [ - "what are good thai dishes", - "meal_suggestion" - ], - [ - "i would like thai food", - "meal_suggestion" - ], - [ - "can you recommend thai food", - "meal_suggestion" - ], - [ - "i need a thai food suggestion", - "meal_suggestion" - ], - [ - "thai food suggestions", - "meal_suggestion" - ], - [ - "i need options or italian tonight", - "meal_suggestion" - ], - [ - "do you have any recommendations for korean", - "meal_suggestion" - ], - [ - "do you have any ideas for a mexican meal", - "meal_suggestion" - ], - [ - "what kind of indian would you recommend", - "meal_suggestion" - ], - [ - "what would you suggest for japanese", - "meal_suggestion" - ], - [ - "i need to know what's good for chinese around here", - "meal_suggestion" - ], - [ - "i want to make something from ethiopia for dinner", - "meal_suggestion" - ], - [ - "i need some ideas for a mexican meal", - "meal_suggestion" - ], - [ - "i want to eat something from turkey", - "meal_suggestion" - ], - [ - "i need a good italian dish", - "meal_suggestion" - ], - [ - "i need a good meal idea from italy", - "meal_suggestion" - ], - [ - "do you have any suggested roman recipes", - "meal_suggestion" - ], - [ - "can you give me a american dinner suggestion", - "meal_suggestion" - ], - [ - "tell me what to make for dinner", - "meal_suggestion" - ], - [ - "do you know what is for dinner", - "meal_suggestion" - ], - [ - "what do i need to do to cook a chicken", - "recipe" - ], - [ - "how do i go about cooking a 10lb turkey", - "recipe" - ], - [ - "how do i get started making homemade pizza dough", - "recipe" - ], - [ - "what instructions do i need to bake a cake from scratch", - "recipe" - ], - [ - "how do i make lasagna", - "recipe" - ], - [ - "how do you make pasta", - "recipe" - ], - [ - "how do you prepare omelet", - "recipe" - ], - [ - "how do you prepare taco", - "recipe" - ], - [ - "how do you make fried rice", - "recipe" - ], - [ - "how do you cooked eggs", - "recipe" - ], - [ - "what's a good chili recipe", - "recipe" - ], - [ - "i need a recipe for chili", - "recipe" - ], - [ - "search for chili recipes", - "recipe" - ], - [ - "search for a chili recipe for me", - "recipe" - ], - [ - "find me a recipe for chili", - "recipe" - ], - [ - "show me ideas for hamburger", - "recipe" - ], - [ - "can you get me recipes for eggs please", - "recipe" - ], - [ - "show me how to make tuna casserole please", - "recipe" - ], - [ - "recipes for garlic bread please", - "recipe" - ], - [ - "please tell me a recipe for this meal", - "recipe" - ], - [ - "can you find me a pork recipe", - "recipe" - ], - [ - "can you find me a brisket recipe", - "recipe" - ], - [ - "can you find me a rice recipe", - "recipe" - ], - [ - "can you find me a salsa recipe", - "recipe" - ], - [ - "scan you find me a chicken recipe", - "recipe" - ], - [ - "i need a pasta recipe", - "recipe" - ], - [ - "i want a recipe for roasted veggies", - "recipe" - ], - [ - "what is in a burrito recipe", - "recipe" - ], - [ - "give me a tuna salad recipe", - "recipe" - ], - [ - "find a recipe for baked ziti", - "recipe" - ], - [ - "how much money do i make", - "income" - ], - [ - "how much money do i earn", - "income" - ], - [ - "what amount of money do i earn", - "income" - ], - [ - "what do i take home", - "income" - ], - [ - "how much do i take home yearly", - "income" - ], - [ - "how much do i earn", - "income" - ], - [ - "what's my yearly salary", - "income" - ], - [ - "what's my salary", - "income" - ], - [ - "how much do i earn a year", - "income" - ], - [ - "what do i make annually", - "income" - ], - [ - "what do i bring in over a year", - "income" - ], - [ - "please tell me what amount i'm earning", - "income" - ], - [ - "can you please tell me my income", - "income" - ], - [ - "how much money am i earning", - "income" - ], - [ - "what is my compensation", - "income" - ], - [ - "how much am i paid", - "income" - ], - [ - "how much do i get paid", - "income" - ], - [ - "what is my income this year", - "income" - ], - [ - "how much money do i make from work", - "income" - ], - [ - "what will i make this year", - "income" - ], - [ - "what will i get paid this year", - "income" - ], - [ - "how much am i paid a year", - "income" - ], - [ - "how much money am i making this year at work", - "income" - ], - [ - "what's my salary for this year", - "income" - ], - [ - "what is my current salary", - "income" - ], - [ - "what's the amount of my income", - "income" - ], - [ - "what amount is my income", - "income" - ], - [ - "i want to know my income", - "income" - ], - [ - "what is my payment going to be", - "income" - ], - [ - "how much is the pay offered for my work", - "income" - ], - [ - "alexa, buy a new television", - "order" - ], - [ - "place my order alexa", - "order" - ], - [ - "siri, place my amazon order", - "order" - ], - [ - "alexa, buy my grocery list", - "order" - ], - [ - "purchase grass seed from the store", - "order" - ], - [ - "find inner tube and buy it for me", - "order" - ], - [ - "can you order me some nacho chips", - "order" - ], - [ - "i'd like to buy something", - "order" - ], - [ - "i need to buy something, please", - "order" - ], - [ - "i'd like to buy a lamp online", - "order" - ], - [ - "order all items on my shopping list", - "order" - ], - [ - "get me an order of creatine powder", - "order" - ], - [ - "place an order for my whole shopping list", - "order" - ], - [ - "order me some doritos, please", - "order" - ], - [ - "place an order for my entire shopping list", - "order" - ], - [ - "can you buy something", - "order" - ], - [ - "make a purchase of doritos", - "order" - ], - [ - "i'd like to you order everything that's on my shopping list", - "order" - ], - [ - "please buy me something", - "order" - ], - [ - "order my whole shopping list", - "order" - ], - [ - "can you order some more eggs for me since i just ran out", - "order" - ], - [ - "i've used the last can of tuna fish and need you to order a new case of it", - "order" - ], - [ - "i've just run out of butter and need you to order me some more", - "order" - ], - [ - "i'm out of milk so you will order me some more", - "order" - ], - [ - "can you place an order for the olive oil i just finished", - "order" - ], - [ - "please go on amazon so i can buy bluetooth speakers", - "order" - ], - [ - "will you please go on amazon so i can buy speakers", - "order" - ], - [ - "where can i find bluetooth speakers", - "order" - ], - [ - "what is the price of bluetooth speakers on amazon", - "order" - ], - [ - "please order some more pepsi", - "order" - ], - [ - "i need to know traffic patterns heading to the george washington bridge from manhattan", - "traffic" - ], - [ - "can you give me a traffic update for driving routes nearest ocean city, new jersey from philadelphia", - "traffic" - ], - [ - "what will traffic be like nearest the george washington bridge, new york", - "traffic" - ], - [ - "what traffic can i expect on the way to the newark, new jersey from philadelphia", - "traffic" - ], - [ - "can you tell me the traffic situation from philadelphia to the new jersey turnpike", - "traffic" - ], - [ - "how is the traffic normally driving into downtown washington, dc, from baltimore at 4:00 pm", - "traffic" - ], - [ - "how is traffic nearest the ben franklin bridge philadelphia heading to the new jersey turnpike", - "traffic" - ], - [ - "i need to know what traffic is going to be like at 3:00 pm on the new jersey turnpike heading into camden from north jersey", - "traffic" - ], - [ - "what kind of traffic can i expect driving to newark, new jersey on i-95 from philadelphia at noon", - "traffic" - ], - [ - "i need to know what traffic looks like nearest the smithsonian institute in washington, dc for the next hour", - "traffic" - ], - [ - "please tell me how traffic from the new jersey turnpike into the lincoln tunnel looks currently", - "traffic" - ], - [ - "is there traffic on i-95 north to new york from philadelphia", - "traffic" - ], - [ - "can you tell me what the traffic is usually like at 7:00 pm from philadelphia to ocean city, new jersey", - "traffic" - ], - [ - "will there be heavy traffic near downtown philadelphia from lincoln drive in the next two hours", - "traffic" - ], - [ - "what does post rush hour traffic generally look like heading into the lincoln tunnel in manhattan from new jersey", - "traffic" - ], - [ - "is traffic good or bad at 9:00 on the way to detroit", - "traffic" - ], - [ - "what kind of traffic is there at 9:00 on the route to detroit", - "traffic" - ], - [ - "how is the traffic at 9:00 on the way to detroit", - "traffic" - ], - [ - "what kind of traffic can i expect at 9:00 on the route to detroit", - "traffic" - ], - [ - "how bad is traffic at 9:00 going to detroit", - "traffic" - ], - [ - "is there traffic right now on my route to work", - "traffic" - ], - [ - "going to work, will there be traffic", - "traffic" - ], - [ - "is there traffic on my work route", - "traffic" - ], - [ - "is there traffic expected", - "traffic" - ], - [ - "on my way to work, is there traffic", - "traffic" - ], - [ - "on the way to work is there traffic", - "traffic" - ], - [ - "is there traffic on the way to work", - "traffic" - ], - [ - "will i encounter traffic", - "traffic" - ], - [ - "is there traffic on the way", - "traffic" - ], - [ - "whats the traffic for the drive to the nearest restaurant", - "traffic" - ], - [ - "can i get some more checkbooks sent to me, please", - "order_checks" - ], - [ - "could i get some more checkbooks sent to me", - "order_checks" - ], - [ - "can i get some more checkbooks mailed to me, please", - "order_checks" - ], - [ - "can i get some more checkbooks sent to me", - "order_checks" - ], - [ - "could i get some more checkbooks sent to me, please", - "order_checks" - ], - [ - "how do i order some checkbooks for my chase account", - "order_checks" - ], - [ - "for checkbooks can i order them for my chase account", - "order_checks" - ], - [ - "am i able to order more checkbooks for my chase account", - "order_checks" - ], - [ - "for my chase account can i order some checkbooks", - "order_checks" - ], - [ - "is there a way to order checkbooks for a chase account", - "order_checks" - ], - [ - "can you overnight me a few checkbooks", - "order_checks" - ], - [ - "send me more checkbooks please", - "order_checks" - ], - [ - "please mail me more checkbooks", - "order_checks" - ], - [ - "i need more checkbooks mailed as soon as possible", - "order_checks" - ], - [ - "i'd like more checkbooks mailed to me", - "order_checks" - ], - [ - "how do i order some more checks for my bank of the west account", - "order_checks" - ], - [ - "how do i order some more checks for my bank of america account", - "order_checks" - ], - [ - "how do i order some more checks for my chase account", - "order_checks" - ], - [ - "how do i order some more checks for my usaa account", - "order_checks" - ], - [ - "how do i order some more checks for my navy federal account", - "order_checks" - ], - [ - "i'm out of all my checks can i get some new ones", - "order_checks" - ], - [ - "i'm out of my checks i need some new ones", - "order_checks" - ], - [ - "can i get some new checks i'm out of mine", - "order_checks" - ], - [ - "i need to order some new checks, i'm all out of them", - "order_checks" - ], - [ - "i am in need of new checks i'm completely out of mine", - "order_checks" - ], - [ - "may i order more checks for my well's fargo account", - "order_checks" - ], - [ - "do you know how i order more checks for my well's fargo account", - "order_checks" - ], - [ - "what do i do to order new checkbooks for my well's fargo account", - "order_checks" - ], - [ - "how do i order more checkbooks for my well's fargo account", - "order_checks" - ], - [ - "where do i go to order more checks for my well's fargo account", - "order_checks" - ], - [ - "my card got declined; why", - "card_declined" - ], - [ - "can you help me understand why my card got declined", - "card_declined" - ], - [ - "why was my card not accepted", - "card_declined" - ], - [ - "can you tell me why my card got declined", - "card_declined" - ], - [ - "i was at publix trying to buy some food but my card wouldnt work", - "card_declined" - ], - [ - "who do i need to contact to find out why my card got declined", - "card_declined" - ], - [ - "i need to know why my card got declined", - "card_declined" - ], - [ - "how do i fix my card, it was declined", - "card_declined" - ], - [ - "why did my card get declined at public when i was trying to buy food", - "card_declined" - ], - [ - "i was trying to buy food at publix but my card got declined", - "card_declined" - ], - [ - "i was trying to use my card to get food at publix but it got declined", - "card_declined" - ], - [ - "how can i fix my card being declined", - "card_declined" - ], - [ - "i was trying to get food at publix, why was my card declined", - "card_declined" - ], - [ - "do you know why my card got declined", - "card_declined" - ], - [ - "why my card stop working", - "card_declined" - ], - [ - "my card declined", - "card_declined" - ], - [ - "i was in australia trying to buy chips and my cards got declined", - "card_declined" - ], - [ - "i was in thailand trying to buy candies and my card got declined", - "card_declined" - ], - [ - "why was my card got declined when i am trying to pay for dinner when i am in vietnam", - "card_declined" - ], - [ - "i could not buy food using my card when i was in vietnam", - "card_declined" - ], - [ - "i was in thailand and i could not use my card to buy snacks", - "card_declined" - ], - [ - "can you explain why i couldn't use my card at target", - "card_declined" - ], - [ - "why was my card not working at target", - "card_declined" - ], - [ - "my credit card was turned down at target and i'd like to know why", - "card_declined" - ], - [ - "how come i got declined", - "card_declined" - ], - [ - "why can't i use my credit card", - "card_declined" - ], - [ - "why won't you let me pay with my credit card", - "card_declined" - ], - [ - "why did i get rejected on my card", - "card_declined" - ], - [ - "how come my credit card isn't working", - "card_declined" - ], - [ - "why didn't my card work", - "card_declined" - ] - ], - "oos_train": [ - [ - "how much is an overdraft fee for bank", - "oos" - ], - [ - "why are exponents preformed before multiplication in the order of operations", - "oos" - ], - [ - "what size wipers does this car take", - "oos" - ], - [ - "where is the dipstick", - "oos" - ], - [ - "how much is 1 share of aapl", - "oos" - ], - [ - "how is glue made", - "oos" - ], - [ - "any headlines from my area", - "oos" - ], - [ - "what is the largest state in the us", - "oos" - ], - [ - "what is the current market trend", - "oos" - ], - [ - "what is the most popular airline", - "oos" - ], - [ - "what is the formula for the circumference of a circle", - "oos" - ], - [ - "what are some ways to reduce spending", - "oos" - ], - [ - "what time does the louvre open", - "oos" - ], - [ - "are there any local stations covering the moral march in raleigh in februaryu", - "oos" - ], - [ - "how many planets have we discovered", - "oos" - ], - [ - "how do i change my billing address", - "oos" - ], - [ - "how do i open an online line of credit", - "oos" - ], - [ - "how do i remove a coffee blemish", - "oos" - ], - [ - "how expensive is an apple share", - "oos" - ], - [ - "where can i find the cruise control on my kia sportage 2010", - "oos" - ], - [ - "how many sides are in a hexagon", - "oos" - ], - [ - "how fast does an airplane travel", - "oos" - ], - [ - "is it worth investing in target", - "oos" - ], - [ - "i need to speak to customer service regarding my flight", - "oos" - ], - [ - "how long do wire transfers take", - "oos" - ], - [ - "what are some deals on amazon", - "oos" - ], - [ - "what city is the super bowl", - "oos" - ], - [ - "what trees change color in autumn", - "oos" - ], - [ - "do people prefer summer over fall", - "oos" - ], - [ - "how long is winter", - "oos" - ], - [ - "what were some of ben franklin's notable accomplishments", - "oos" - ], - [ - "where was john denver born", - "oos" - ], - [ - "where did abraham lincoln live", - "oos" - ], - [ - "when was kobe bryant born", - "oos" - ], - [ - "who's toledo's starting point guard for the next game", - "oos" - ], - [ - "how many players are on the chicago bulls", - "oos" - ], - [ - "who is the coach of the chicago bulls", - "oos" - ], - [ - "when do the utah jazz play next", - "oos" - ], - [ - "what other nations were involved in the chinese trade war", - "oos" - ], - [ - "what years has korea been at war", - "oos" - ], - [ - "when was the theory of evolution first considered", - "oos" - ], - [ - "who formulated the theory of relativity", - "oos" - ], - [ - "what stage of evolution am i", - "oos" - ], - [ - "what other personality type is most compatible with infjs", - "oos" - ], - [ - "what does my personality mean", - "oos" - ], - [ - "what's the most dominant scale in bluegrass", - "oos" - ], - [ - "what year was saxaphone first played", - "oos" - ], - [ - "which piano is best for classical", - "oos" - ], - [ - "is k-12 education required outside of the united states", - "oos" - ], - [ - "what are the benefits of completing college", - "oos" - ], - [ - "are you able to answer algebra equations", - "oos" - ], - [ - "can you help me study for a history exam", - "oos" - ], - [ - "how many points per game is lebron james averaging this season", - "oos" - ], - [ - "what team does eli mannign play for", - "oos" - ], - [ - "get me dwight howard shooting average", - "oos" - ], - [ - "can you list me tiger wood's stats", - "oos" - ], - [ - "what's the runtime of all the lord of the rings movies combined", - "oos" - ], - [ - "which character is the most famous from titanic", - "oos" - ], - [ - "how many oscars did star wars films win", - "oos" - ], - [ - "what year was shawshank redemption released", - "oos" - ], - [ - "which marvel character has appeared in the most movies", - "oos" - ], - [ - "when's the next movie starring thor set to come out", - "oos" - ], - [ - "who was the first capcom character", - "oos" - ], - [ - "are any justice league movies coming out", - "oos" - ], - [ - "can you tell me something about the nfl", - "oos" - ], - [ - "please explain the catch rule to me", - "oos" - ], - [ - "is there overtime in college football", - "oos" - ], - [ - "when did the mls start", - "oos" - ], - [ - "what's the best price on super smash bros ultimate right now", - "oos" - ], - [ - "what is the highest earning game on atari", - "oos" - ], - [ - "when is the next nintendo direct", - "oos" - ], - [ - "when was nintendo created", - "oos" - ], - [ - "please find the capital of pakistan and its population", - "oos" - ], - [ - "how many people live in taiwan", - "oos" - ], - [ - "what are some of picasso's most famous works", - "oos" - ], - [ - "what are van gogh's best pieces", - "oos" - ], - [ - "where can i see art", - "oos" - ], - [ - "when did camus die", - "oos" - ], - [ - "how much money does radiohead earn a year", - "oos" - ], - [ - "who is radiohead", - "oos" - ], - [ - "what's the biggest saas marketing company in the united states", - "oos" - ], - [ - "how do i start my own marketing firm", - "oos" - ], - [ - "how can i get involved in restaurant marketing", - "oos" - ], - [ - "what is saas marketing", - "oos" - ], - [ - "what do you call someone who was born in segovia", - "oos" - ], - [ - "what is rhineland", - "oos" - ], - [ - "who is the scariest character in start trek", - "oos" - ], - [ - "who is the current captain of this ship", - "oos" - ], - [ - "what year was star trek released", - "oos" - ], - [ - "when was toyota created", - "oos" - ], - [ - "who are some notable alumni of ucsd", - "oos" - ], - [ - "what is the next football game", - "oos" - ], - [ - "how many students attend ucsb", - "oos" - ], - [ - "when do classes start", - "oos" - ], - [ - "how can i become an aerospace engineer", - "oos" - ], - [ - "what percentage of species display cold blooded traits", - "oos" - ], - [ - "what does it mean to be an alpha male", - "oos" - ], - [ - "what animals have alpha males", - "oos" - ], - [ - "why do males want to be alpha", - "oos" - ], - [ - "what's the average battery life of an android phone", - "oos" - ] - ] -} \ No newline at end of file From bfe6ec208a50bab64191b1a7febb514c025d0cd2 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 16:40:50 +0300 Subject: [PATCH 34/94] Add files via upload --- annotators/dnnc_intents/data_full.json | 94814 +++++++++++++++++++++++ 1 file changed, 94814 insertions(+) create mode 100644 annotators/dnnc_intents/data_full.json diff --git a/annotators/dnnc_intents/data_full.json b/annotators/dnnc_intents/data_full.json new file mode 100644 index 0000000000..143ab9219e --- /dev/null +++ b/annotators/dnnc_intents/data_full.json @@ -0,0 +1,94814 @@ +{ + "oos_val": [ + [ + "set a warning for when my bank account starts running low", + "oos" + ], + [ + "a show on broadway", + "oos" + ], + [ + "who has the best record in the nfl", + "oos" + ], + [ + "how do i find the area of a circle", + "oos" + ], + [ + "how many onions do i have on hand", + "oos" + ], + [ + "what is the name of the 13th president", + "oos" + ], + [ + "show me recent activity in my backyard", + "oos" + ], + [ + "how long will it take me to pay off my card if i pay an extra $50 a month over the minimum", + "oos" + ], + [ + "does our bank have free notary", + "oos" + ], + [ + "what were the top stories this week", + "oos" + ], + [ + "can i mix antifreeze with water", + "oos" + ], + [ + "are any earning reports due", + "oos" + ], + [ + "show me the channel guide", + "oos" + ], + [ + "is the pnc bank open", + "oos" + ], + [ + "where does the power steering fluid go", + "oos" + ], + [ + "when was the last time the president visited floridau", + "oos" + ], + [ + "how can i keep my windshield from fogging up in winter", + "oos" + ], + [ + "how do i compute the median of a set of numbers", + "oos" + ], + [ + "what is happening with brexit right nowu", + "oos" + ], + [ + "are there any new companies to look out for", + "oos" + ], + [ + "can you tell me how to compute price per ounce", + "oos" + ], + [ + "how to unclog a drain", + "oos" + ], + [ + "am kind of busy now", + "oos" + ], + [ + "what new reality shows are there for 2019", + "oos" + ], + [ + "what is the purpose or benefit of a cash advance", + "oos" + ], + [ + "how can i root an android phone", + "oos" + ], + [ + "is android better than iphone", + "oos" + ], + [ + "are androids expensive", + "oos" + ], + [ + "how long does it take to become an architect", + "oos" + ], + [ + "who are some famous living architects", + "oos" + ], + [ + "find out for me as to why people get autism", + "oos" + ], + [ + "is autism a genetic disease", + "oos" + ], + [ + "is flu contagious", + "oos" + ], + [ + "is it true that nicotine is harder to kick than heroin", + "oos" + ], + [ + "please inform me on bad habits and overcoming them", + "oos" + ], + [ + "are bad habits closely related with addictions", + "oos" + ], + [ + "does hypnosis work to break bad habits", + "oos" + ], + [ + "king of acid", + "oos" + ], + [ + "suo2", + "oos" + ], + [ + "what university in the united states offers the best biomedical engineering program", + "oos" + ], + [ + "what's the definition of nuclear engineering", + "oos" + ], + [ + "when was electrical engineering created", + "oos" + ], + [ + "what is naval engineering", + "oos" + ], + [ + "is it possible to survive in a black hole", + "oos" + ], + [ + "where do black holes come from", + "oos" + ], + [ + "what are black holes", + "oos" + ], + [ + "what was the final vote count in the brexit referendum", + "oos" + ], + [ + "can you tell me the latest georgia news", + "oos" + ], + [ + "is the brexit finalized yet", + "oos" + ], + [ + "the birds fly with there wings", + "oos" + ], + [ + "how the birds fly", + "oos" + ], + [ + "where does cannabis originate from", + "oos" + ], + [ + "how are my cannabis stocks doing", + "oos" + ], + [ + "is marijuana addictive", + "oos" + ], + [ + "should i hit or stay at 17 in blackjack", + "oos" + ], + [ + "what game has the best odds at a casino", + "oos" + ], + [ + "what's the best opening gambit for a game of chess", + "oos" + ], + [ + "what side in chess has the general advantage", + "oos" + ], + [ + "how do i get better at go", + "oos" + ], + [ + "how high does my sat score need to be to get into harvard", + "oos" + ], + [ + "what'll an education at boulder state college run", + "oos" + ], + [ + "what's the average gpa to get into yale", + "oos" + ], + [ + "what act score is considered good", + "oos" + ], + [ + "what cryptocurrency gained the most in 2018", + "oos" + ], + [ + "what's the best crypto to buy in 2019", + "oos" + ], + [ + "how is crypto legal", + "oos" + ], + [ + "are there any cybersecurity jobs available in pittsburgh", + "oos" + ], + [ + "how many firewalls should i have and what type", + "oos" + ], + [ + "how can i breach a network", + "oos" + ], + [ + "how does cybersecurity work", + "oos" + ], + [ + "how many countries in the world are democracies", + "oos" + ], + [ + "is the united states a democracy", + "oos" + ], + [ + "which nations are not democratic", + "oos" + ], + [ + "how does a democracy work", + "oos" + ], + [ + "please get me my wheelchair", + "oos" + ], + [ + "what's the best dog food to feed my puppy", + "oos" + ], + [ + "how do you know when your dog is ill", + "oos" + ], + [ + "what dog breed sold the most in 2018", + "oos" + ], + [ + "how much food should i feed my cat", + "oos" + ], + [ + "what does it mean if i dream of falling off a building", + "oos" + ], + [ + "is it bad to not remember your dreams", + "oos" + ], + [ + "why do we dream", + "oos" + ], + [ + "do ducks eat meat, vegetables, or both", + "oos" + ], + [ + "what is the friendliest breed", + "oos" + ], + [ + "what do geese eat", + "oos" + ], + [ + "do ducks sleep", + "oos" + ], + [ + "are over the ear headphones better than in ear headphones", + "oos" + ], + [ + "what brand of earphones is the best reviewed of 2019", + "oos" + ], + [ + "are white and brown eggs any different", + "oos" + ], + [ + "where do eggs come from", + "oos" + ], + [ + "how can i easily replace a string on my guitar", + "oos" + ], + [ + "how do you learn how to play electric violin", + "oos" + ], + [ + "can you give me the standard tuning notes", + "oos" + ], + [ + "what is the cheapest electric guitar", + "oos" + ], + [ + "you want to know about current time now", + "oos" + ], + [ + "what does it mean to have equality", + "oos" + ], + [ + "what site publishes the most fake news", + "oos" + ], + [ + "can you tell me some fake news", + "oos" + ], + [ + "is cnn really fake news", + "oos" + ], + [ + "why is there fake news", + "oos" + ] + ], + "val": [ + [ + "in spanish, meet me tomorrow is said how", + "translate" + ], + [ + "in french, how do i say, see you later", + "translate" + ], + [ + "how do you say hello in japanese", + "translate" + ], + [ + "how do i ask about the weather in chinese", + "translate" + ], + [ + "how can i say \"cancel my order\" in french", + "translate" + ], + [ + "how do i say dinner in spanish", + "translate" + ], + [ + "how do you say good bye in french", + "translate" + ], + [ + "how do i say thank you in spanish", + "translate" + ], + [ + "how do i say good bye in chinese", + "translate" + ], + [ + "how can i say thank you very much in chinese", + "translate" + ], + [ + "i need to know how to say hello in france", + "translate" + ], + [ + "would you tell me how to say goodbye in france", + "translate" + ], + [ + "how do you say hello in mexico", + "translate" + ], + [ + "tell me how to say hello in chile", + "translate" + ], + [ + "i want to know how to say goodbye in france", + "translate" + ], + [ + "would you translate a sentence into russian for me, please", + "translate" + ], + [ + "would you translate a phrase into mandarin for me", + "translate" + ], + [ + "can you translate this name into spanish for me, please", + "translate" + ], + [ + "could you translate this into chinese for me, please", + "translate" + ], + [ + "could you translate water into dutch for me", + "translate" + ], + [ + "transfer ten dollars from my wells fargo account to my bank of america account", + "transfer" + ], + [ + "take one hundred and fifty bucks from my wells fargo checking account and put it in my wells fargo savings account", + "transfer" + ], + [ + "put one hundred and seventy five bucks in my wells fargo checking account from my citibank savings account", + "transfer" + ], + [ + "move two hundred dollars to my chase savings account to my wells fargo checking account", + "transfer" + ], + [ + "move three hundred and fifty dollars from my citibank savings account to my chase savings account", + "transfer" + ], + [ + "move a dollar from my checkings to my savings", + "transfer" + ], + [ + "move my money to the other account", + "transfer" + ], + [ + "transfer funds to the other account", + "transfer" + ], + [ + "please transfer half of my funds to an alternate account", + "transfer" + ], + [ + "can you move my money to my savings", + "transfer" + ], + [ + "make an eft to my savings from my checking account", + "transfer" + ], + [ + "send 100 dollars from my vanguard money market to my wells fargo savings", + "transfer" + ], + [ + "i need 200 dollars transferred from my long island savings account to my chase checking", + "transfer" + ], + [ + "send from my bbc money market to my t rowe price money market seven thousand dollars", + "transfer" + ], + [ + "i need 2000 to go to my chase checking from my mellon bank savings account", + "transfer" + ], + [ + "move 100 dollars from my savings to my checking", + "transfer" + ], + [ + "transfer 1000 dollars from my first national bank to my bethpage federal credit union savings", + "transfer" + ], + [ + "take out of my checking 400 dollars and put it into my emergency savings account", + "transfer" + ], + [ + "i need to transfer one thousand dollars to my savings account from my checking", + "transfer" + ], + [ + "transfer 50 dollars from my checking account to my money market account", + "transfer" + ], + [ + "create a new timer", + "timer" + ], + [ + "i'd like to set a new timer", + "timer" + ], + [ + "help me set a timer please", + "timer" + ], + [ + "10 minutes is what the timer should be set at", + "timer" + ], + [ + "the timer should have 10 minutes set to it", + "timer" + ], + [ + "10 minutes is the setting for the timer", + "timer" + ], + [ + "the timer is calculated for 10 minutes", + "timer" + ], + [ + "set the timer for 10 minutes", + "timer" + ], + [ + "can you set a 30 second timer", + "timer" + ], + [ + "please set a timer to go off in 45 minutes", + "timer" + ], + [ + "i need you to create a timer", + "timer" + ], + [ + "i need a timer set please", + "timer" + ], + [ + "create a timer that is set to go off after 25 mins", + "timer" + ], + [ + "i need a timer that is set at 1 hour exactly", + "timer" + ], + [ + "could you set up a timer for me", + "timer" + ], + [ + "will you start a timer for me", + "timer" + ], + [ + "set up a 52 minute timer", + "timer" + ], + [ + "please set up a timer for me", + "timer" + ], + [ + "set 60 minutes for oven please", + "timer" + ], + [ + "please make the timer for cooking for for 2 hours", + "timer" + ], + [ + "may i please have a definition for the work churlish", + "definition" + ], + [ + "i want to know what trenchant means", + "definition" + ], + [ + "what is the meaning of fascism", + "definition" + ], + [ + "can you tell me what a septuagenarian is", + "definition" + ], + [ + "can you define the word schadenfreude", + "definition" + ], + [ + "what does unsavory mean", + "definition" + ], + [ + "please define erection for me", + "definition" + ], + [ + "what does idiosyncratic mean", + "definition" + ], + [ + "tell me the meaning of condemnation", + "definition" + ], + [ + "define monetary for me please", + "definition" + ], + [ + "tell me the meaning of hegemony", + "definition" + ], + [ + "what does indignation mean", + "definition" + ], + [ + "define ambivalence for me please", + "definition" + ], + [ + "please define institutional racism", + "definition" + ], + [ + "define antagonist for me please", + "definition" + ], + [ + "what does distinguish mean", + "definition" + ], + [ + "what is the meaning of word alliance", + "definition" + ], + [ + "i need to know what dominate means", + "definition" + ], + [ + "what is the definition of the word migrate", + "definition" + ], + [ + "tell me please what paean means", + "definition" + ], + [ + "i want to know what the purpose of life is", + "meaning_of_life" + ], + [ + "i want to hear what you think life's purpose is about", + "meaning_of_life" + ], + [ + "what do you think the purpose of life is", + "meaning_of_life" + ], + [ + "what is the purpose of existence", + "meaning_of_life" + ], + [ + "what do you think our purpose is in life", + "meaning_of_life" + ], + [ + "i'd like to know the meaning of life", + "meaning_of_life" + ], + [ + "what's your opinion on the meaning of life", + "meaning_of_life" + ], + [ + "what is life's purpose", + "meaning_of_life" + ], + [ + "tell me all about the meaning of life", + "meaning_of_life" + ], + [ + "tell me your thoughts about the meaning of life", + "meaning_of_life" + ], + [ + "do you have any ideas on the meaning of life", + "meaning_of_life" + ], + [ + "do you know the deeper meaning of life", + "meaning_of_life" + ], + [ + "tell me the meaning of life", + "meaning_of_life" + ], + [ + "can you tell me, what is the meaning of life", + "meaning_of_life" + ], + [ + "what is the meaning behind life, do you think", + "meaning_of_life" + ], + [ + "what is our purpose", + "meaning_of_life" + ], + [ + "what do you think we are on earth for", + "meaning_of_life" + ], + [ + "what do you think life is really about", + "meaning_of_life" + ], + [ + "do you think we have a higher calling", + "meaning_of_life" + ], + [ + "why are humans on earth", + "meaning_of_life" + ], + [ + "explain how do i get new insurance", + "insurance_change" + ], + [ + "tell me how to get new insurance", + "insurance_change" + ], + [ + "explain to me how do i get new insurance", + "insurance_change" + ], + [ + "i want to get new insurance", + "insurance_change" + ], + [ + "can you tell me how do i get new insurance", + "insurance_change" + ], + [ + "i'd like to know how changes are made to my insurance policy", + "insurance_change" + ], + [ + "how can i make changes for my insurance policy", + "insurance_change" + ], + [ + "can you tell me how changes on my insurance policy can be made", + "insurance_change" + ], + [ + "i'd like to know how to make changes for my insurance policy", + "insurance_change" + ], + [ + "could you tell me how to make changes to my insurance policy", + "insurance_change" + ], + [ + "tell me how to change my policy", + "insurance_change" + ], + [ + "i need to switch insurance plans", + "insurance_change" + ], + [ + "can you help me switch insurance plans", + "insurance_change" + ], + [ + "tell me how to make changes to my insurance policy", + "insurance_change" + ], + [ + "how do i switch to a new insurance plan", + "insurance_change" + ], + [ + "can you help me switch to a new insurance plan", + "insurance_change" + ], + [ + "how can i change information on my insurance policy", + "insurance_change" + ], + [ + "how do i make changes to my insurance policy", + "insurance_change" + ], + [ + "tell me how to change my insurance policy", + "insurance_change" + ], + [ + "i need to change my insurance policy, how", + "insurance_change" + ], + [ + "please help me in finding my phone", + "find_phone" + ], + [ + "please help me find my lost phone", + "find_phone" + ], + [ + "i need your help finding my lost phone", + "find_phone" + ], + [ + "help me find my phone please", + "find_phone" + ], + [ + "tell me where i left my phone", + "find_phone" + ], + [ + "what did i do with my phone", + "find_phone" + ], + [ + "can you tell me where my phone is", + "find_phone" + ], + [ + "what happened to my cellphone", + "find_phone" + ], + [ + "do you remember where i left my cellphone", + "find_phone" + ], + [ + "where is my cellphone", + "find_phone" + ], + [ + "do you know where my cellphone is", + "find_phone" + ], + [ + "i have lost my phone", + "find_phone" + ], + [ + "help me, i don't know where my phone is", + "find_phone" + ], + [ + "tell me my phone's location", + "find_phone" + ], + [ + "where would my phone be", + "find_phone" + ], + [ + "i need to know my phone's location", + "find_phone" + ], + [ + "help locate my phone", + "find_phone" + ], + [ + "can you find me my phone", + "find_phone" + ], + [ + "track down my phone for me", + "find_phone" + ], + [ + "my phone is lost and i need help finding it", + "find_phone" + ], + [ + "is traveling to france safe", + "travel_alert" + ], + [ + "is france safe to travel to", + "travel_alert" + ], + [ + "i need to know is traveling to france safe", + "travel_alert" + ], + [ + "can i travel to france as far as safety goes", + "travel_alert" + ], + [ + "can i safely travel to france or is it dangerous", + "travel_alert" + ], + [ + "are there any current travel alerts for brazil", + "travel_alert" + ], + [ + "are there any travel alerts for seattle", + "travel_alert" + ], + [ + "how safe is it to travel to guatemala right now and are there any alerts", + "travel_alert" + ], + [ + "are there any travel alerts for juarez", + "travel_alert" + ], + [ + "what's the danger level of flying to russia right now", + "travel_alert" + ], + [ + "are there any travel alerts for antarctica", + "travel_alert" + ], + [ + "are there any travel alerts for mountain view", + "travel_alert" + ], + [ + "does mexico have any travel alerts i should know about", + "travel_alert" + ], + [ + "does greece currently have any travel alerts in place", + "travel_alert" + ], + [ + "are there any travel alerts for brazil", + "travel_alert" + ], + [ + "how safe is it to visit spain", + "travel_alert" + ], + [ + "how safe is visiting canada this week", + "travel_alert" + ], + [ + "have the riots in france triggered any alerts for people traveling to there", + "travel_alert" + ], + [ + "is there any danger going to brazil", + "travel_alert" + ], + [ + "is it safe to travel to mexico", + "travel_alert" + ], + [ + "please request pto for march 2 and 3", + "pto_request" + ], + [ + "i am requesting pto for march 2 and 3", + "pto_request" + ], + [ + "can you please request pto for march 2 and 3", + "pto_request" + ], + [ + "i would like to request pto for march 2 and 3", + "pto_request" + ], + [ + "i need to request pto for march 2 and 3", + "pto_request" + ], + [ + "let me know how to make a vacation request", + "pto_request" + ], + [ + "i need to make a vacation request; how", + "pto_request" + ], + [ + "can i put in a pto request for may 1 to may 5", + "pto_request" + ], + [ + "tell me how to make a vacation request", + "pto_request" + ], + [ + "i would like to know if i can put a pto request in for march 19 to march 20", + "pto_request" + ], + [ + "am i able to put in a pto request for may 6 to may 18", + "pto_request" + ], + [ + "provide assistance on what to do to make a vacation request", + "pto_request" + ], + [ + "i need to know how to make a vacation request", + "pto_request" + ], + [ + "i need to know if i can put a pto request in for march 10 to march 12", + "pto_request" + ], + [ + "tell me whether i can put a pto request in for may 10 to may 15", + "pto_request" + ], + [ + "what is the process for making a vacation request", + "pto_request" + ], + [ + "what's the method for requesting a vacation", + "pto_request" + ], + [ + "what are the steps required for making a vacation request", + "pto_request" + ], + [ + "please help me make a request for vacation", + "pto_request" + ], + [ + "i have a vacation request that i need made", + "pto_request" + ], + [ + "what are some ways to raise my credit score", + "improve_credit_score" + ], + [ + "what will help my credit score", + "improve_credit_score" + ], + [ + "are there any videos on how to repair my credit score", + "improve_credit_score" + ], + [ + "what can i do to get a better credit score", + "improve_credit_score" + ], + [ + "will getting a credit card help my credit score", + "improve_credit_score" + ], + [ + "what are the top 10 ways to build my credit score", + "improve_credit_score" + ], + [ + "how can i build up my credit score", + "improve_credit_score" + ], + [ + "how can i build my credit score", + "improve_credit_score" + ], + [ + "what are some easy ways to make my credit score better", + "improve_credit_score" + ], + [ + "how do i prevent my credit score from dropping", + "improve_credit_score" + ], + [ + "how should i go about improving my credit score", + "improve_credit_score" + ], + [ + "how can i make sure that my credit score does not decrease", + "improve_credit_score" + ], + [ + "what is the best way to insure that my credit score doesn't decrease", + "improve_credit_score" + ], + [ + "what things can i do to increase my credit score", + "improve_credit_score" + ], + [ + "what is the best way to keep my credit score from going down", + "improve_credit_score" + ], + [ + "what is the best thing for me to do to improve my credit score quickly", + "improve_credit_score" + ], + [ + "how can i safeguard my credit score from dropping", + "improve_credit_score" + ], + [ + "do i have options on how to improve my credit score", + "improve_credit_score" + ], + [ + "what steps can i take to improve my credit score", + "improve_credit_score" + ], + [ + "show me a plan to help my credit score rating", + "improve_credit_score" + ], + [ + "tell me something interesting about lake tahoe", + "fun_fact" + ], + [ + "tell me a cool fact about reno", + "fun_fact" + ], + [ + "tell me something interesting about new york state", + "fun_fact" + ], + [ + "give me a cool fact about new orleans", + "fun_fact" + ], + [ + "give me a cool fact about seattle", + "fun_fact" + ], + [ + "tell me something interesting about elephants", + "fun_fact" + ], + [ + "tell me something interesting about dogs", + "fun_fact" + ], + [ + "give me a cool fact about potatoes", + "fun_fact" + ], + [ + "give me a cool fact about puppies", + "fun_fact" + ], + [ + "give me a cool fact about lsd", + "fun_fact" + ], + [ + "tell me a fun fact about the moon landing", + "fun_fact" + ], + [ + "what's a fun fact about axolotls", + "fun_fact" + ], + [ + "tell me a fact about the maned wolf", + "fun_fact" + ], + [ + "give me harry potter trivia", + "fun_fact" + ], + [ + "tell me an axolotl fact", + "fun_fact" + ], + [ + "i need a spider fact", + "fun_fact" + ], + [ + "show me trivia about cats", + "fun_fact" + ], + [ + "read me some different cat trivia items", + "fun_fact" + ], + [ + "find me cat trivia now please", + "fun_fact" + ], + [ + "read me cat trivia", + "fun_fact" + ], + [ + "i need new language", + "change_language" + ], + [ + "switch language for me", + "change_language" + ], + [ + "please change your language setting to russian", + "change_language" + ], + [ + "you must change your language setting to russian", + "change_language" + ], + [ + "you need to change your language setting to russian please", + "change_language" + ], + [ + "change language please", + "change_language" + ], + [ + "please change your language setting to spanish now", + "change_language" + ], + [ + "change your language setting to spanish", + "change_language" + ], + [ + "i want new language", + "change_language" + ], + [ + "please change the language", + "change_language" + ], + [ + "speak arabic", + "change_language" + ], + [ + "speak navajo", + "change_language" + ], + [ + "speak german", + "change_language" + ], + [ + "speak french", + "change_language" + ], + [ + "speak mandarin", + "change_language" + ], + [ + "change response language from mandarin to english", + "change_language" + ], + [ + "please respond to me in english from now on", + "change_language" + ], + [ + "please change your response language to english", + "change_language" + ], + [ + "how can i change your response language", + "change_language" + ], + [ + "change the language to english", + "change_language" + ], + [ + "when's the next time i get paid", + "payday" + ], + [ + "when's my next paycheck coming in", + "payday" + ], + [ + "what's the date of my next paycheck", + "payday" + ], + [ + "when do i get my paycheck", + "payday" + ], + [ + "which day is pay day", + "payday" + ], + [ + "which day is it that my payment comes in", + "payday" + ], + [ + "when am i paid or how often", + "payday" + ], + [ + "how many days until i get my payment", + "payday" + ], + [ + "what was the last check date", + "payday" + ], + [ + "when was i paid most recently", + "payday" + ], + [ + "what was the date of my last paycheck", + "payday" + ], + [ + "when did i get my check last", + "payday" + ], + [ + "how long has it been since i was paid", + "payday" + ], + [ + "how many times do i get paid in march", + "payday" + ], + [ + "what date is the next payday", + "payday" + ], + [ + "i am trying to find out when is the next payday", + "payday" + ], + [ + "what date is the next day i get paid", + "payday" + ], + [ + "when is the next payday", + "payday" + ], + [ + "what is my pay", + "payday" + ], + [ + "how much is on my paycheck this week", + "payday" + ], + [ + "what's the time of arrival on my new credit card", + "replacement_card_duration" + ], + [ + "tell me the duration it takes to get a new cc", + "replacement_card_duration" + ], + [ + "is it a short time before i receive my new credit card", + "replacement_card_duration" + ], + [ + "how long before my updated cc takes to arrive", + "replacement_card_duration" + ], + [ + "how long does it take a new card to arrive in the mail to me", + "replacement_card_duration" + ], + [ + "what is the length of time it takes a new card to get mailed to me", + "replacement_card_duration" + ], + [ + "about how long does it usually take a new card to get mailed to me", + "replacement_card_duration" + ], + [ + "how much time does it take a new card to get mailed to me", + "replacement_card_duration" + ], + [ + "how soon does it take a card new card to get mailed to me", + "replacement_card_duration" + ], + [ + "after losing a credit card, how long does it take to get a new one", + "replacement_card_duration" + ], + [ + "if i lose my credit card, will i get a replacement immediately", + "replacement_card_duration" + ], + [ + "what is the time frame for receiving a new credit card if my original one gets lost", + "replacement_card_duration" + ], + [ + "will i have to wait a long time to receive my new credit card after i lost my old one", + "replacement_card_duration" + ], + [ + "how long should i expect to wait for my replacement credit card", + "replacement_card_duration" + ], + [ + "will my new credit card be here this week", + "replacement_card_duration" + ], + [ + "how long does it usually take for a new credit card to come", + "replacement_card_duration" + ], + [ + "what is the eta on getting a replacement card", + "replacement_card_duration" + ], + [ + "show tracking information on my replacement credit card", + "replacement_card_duration" + ], + [ + "when will i get my replacement card", + "replacement_card_duration" + ], + [ + "will it take more than a month to get a new card", + "replacement_card_duration" + ], + [ + "what time is it in france", + "time" + ], + [ + "what's the time in london right now", + "time" + ], + [ + "what hour is it in london", + "time" + ], + [ + "what's the time", + "time" + ], + [ + "what is the time in london", + "time" + ], + [ + "i need to know what time it is", + "time" + ], + [ + "what time of day is it in london", + "time" + ], + [ + "tell me what time it is", + "time" + ], + [ + "what time of day is it", + "time" + ], + [ + "what time is it in the pacific timezone", + "time" + ], + [ + "what time is it in pacific standard time", + "time" + ], + [ + "what time is it over in pacific time", + "time" + ], + [ + "what time is in over there in pacific standard time", + "time" + ], + [ + "what time is it in the pacific standard time", + "time" + ], + [ + "what is the time in paris now", + "time" + ], + [ + "time in manhattan", + "time" + ], + [ + "how late is it now in ourense", + "time" + ], + [ + "what is the current time right now in hollywood", + "time" + ], + [ + "what time is it now in michigan", + "time" + ], + [ + "what's the clock say", + "time" + ], + [ + "what is the present status of my credit card application", + "application_status" + ], + [ + "what is the current status of my credit card application", + "application_status" + ], + [ + "in what status is my credit card application currently in", + "application_status" + ], + [ + "how far along is my credit card application", + "application_status" + ], + [ + "what is the status of my credit card application looking like", + "application_status" + ], + [ + "pull up my credit card application's current status", + "application_status" + ], + [ + "has my credit card application processed yet", + "application_status" + ], + [ + "check the status of my credit card application please", + "application_status" + ], + [ + "has my card application successfully gone through", + "application_status" + ], + [ + "go to the credit card site and check if my application has gone through", + "application_status" + ], + [ + "has my credit card application been approved yet", + "application_status" + ], + [ + "can you check on the status of my credit card application", + "application_status" + ], + [ + "i would like to know if my visa card application has been approved", + "application_status" + ], + [ + "can you let me know if my visa card has been approved", + "application_status" + ], + [ + "at what point will the review of my credit card application be completed", + "application_status" + ], + [ + "can you check if my mastercard application has been reviewed yet", + "application_status" + ], + [ + "has my visa card application been approved yet", + "application_status" + ], + [ + "please let me know how my credit card application is going", + "application_status" + ], + [ + "when will my credit card application be reviewed", + "application_status" + ], + [ + "please let me know if my discover card application has been approved", + "application_status" + ], + [ + "when is my flight going to board", + "flight_status" + ], + [ + "when am i boarding my flight", + "flight_status" + ], + [ + "at what time should i be boarding my flight", + "flight_status" + ], + [ + "can you please update the status of flight dl123", + "flight_status" + ], + [ + "when is the expected arrival of flight dl123", + "flight_status" + ], + [ + "is flight dl123 due to land as schedule", + "flight_status" + ], + [ + "will flight dl123 be on time", + "flight_status" + ], + [ + "are there any expected delays for flight dl123", + "flight_status" + ], + [ + "i would like to know flight dl123's status", + "flight_status" + ], + [ + "tell me flight dl123's statud", + "flight_status" + ], + [ + "for flight dl123 what's the status", + "flight_status" + ], + [ + "could you tell me the status of flight dl123", + "flight_status" + ], + [ + "when is my flight expected to arrive", + "flight_status" + ], + [ + "at what time is my flight scheduled to land", + "flight_status" + ], + [ + "what time is my flight going to land", + "flight_status" + ], + [ + "ostensibly when is my flight going to land", + "flight_status" + ], + [ + "when is my flight going to arrive", + "flight_status" + ], + [ + "what time does my flight board", + "flight_status" + ], + [ + "what is the boarding time for my upcoming flight", + "flight_status" + ], + [ + "when is my flight boarding", + "flight_status" + ], + [ + "flip a normal coin", + "flip_coin" + ], + [ + "flip a heads or tails coin i pick heads", + "flip_coin" + ], + [ + "flip a coin, i choose heads", + "flip_coin" + ], + [ + "please flip a coin - i call heads", + "flip_coin" + ], + [ + "can you flip a coin i pick heads", + "flip_coin" + ], + [ + "please flip coin ai", + "flip_coin" + ], + [ + "flip a coin now", + "flip_coin" + ], + [ + "please flip a coin", + "flip_coin" + ], + [ + "i need you to flip a coin", + "flip_coin" + ], + [ + "flip coin ai", + "flip_coin" + ], + [ + "please go ahead and flip a coin", + "flip_coin" + ], + [ + "flip the coin ai", + "flip_coin" + ], + [ + "please flip coin", + "flip_coin" + ], + [ + "i wanna flip a coin", + "flip_coin" + ], + [ + "please flip the coin", + "flip_coin" + ], + [ + "please flip the coin over ai", + "flip_coin" + ], + [ + "i'm wanting you to flip a coin", + "flip_coin" + ], + [ + "flip me a coin", + "flip_coin" + ], + [ + "i want you to flip a coin now", + "flip_coin" + ], + [ + "i call tails and you call heads on this coin flip i need you to do", + "flip_coin" + ], + [ + "will you start calling me chaz", + "change_user_name" + ], + [ + "stop calling me charlie and from now on always call me chip", + "change_user_name" + ], + [ + "from now on, refer to me as chuck", + "change_user_name" + ], + [ + "please call me charlile from here on out ok", + "change_user_name" + ], + [ + "i want you to call me a different name so can you call me charchar", + "change_user_name" + ], + [ + "please change my name to tom", + "change_user_name" + ], + [ + "from now on, my name is tom", + "change_user_name" + ], + [ + "i want to be called tom", + "change_user_name" + ], + [ + "please call me tom", + "change_user_name" + ], + [ + "you can call me jason", + "change_user_name" + ], + [ + "my name is jason", + "change_user_name" + ], + [ + "jason is my name", + "change_user_name" + ], + [ + "i prefer to be called jason", + "change_user_name" + ], + [ + "i am jason", + "change_user_name" + ], + [ + "you shall address me as nick", + "change_user_name" + ], + [ + "my name is nick", + "change_user_name" + ], + [ + "refer to me as nick", + "change_user_name" + ], + [ + "the name is nick", + "change_user_name" + ], + [ + "you could say my name is nick", + "change_user_name" + ], + [ + "i am camile", + "change_user_name" + ], + [ + "what place were you born at", + "where_are_you_from" + ], + [ + "where were you born as a kid", + "where_are_you_from" + ], + [ + "tell me where you were created", + "where_are_you_from" + ], + [ + "what place were you made at", + "where_are_you_from" + ], + [ + "what place were you actually born at", + "where_are_you_from" + ], + [ + "what place do you come from", + "where_are_you_from" + ], + [ + "where do you hale from", + "where_are_you_from" + ], + [ + "what place were you born", + "where_are_you_from" + ], + [ + "where are you from before you got here", + "where_are_you_from" + ], + [ + "let me know when you were made", + "where_are_you_from" + ], + [ + "where you from", + "where_are_you_from" + ], + [ + "where are you from if i may ask", + "where_are_you_from" + ], + [ + "where are you from oroginally", + "where_are_you_from" + ], + [ + "where are you originally from before coming here", + "where_are_you_from" + ], + [ + "what's your home town", + "where_are_you_from" + ], + [ + "what country are you from", + "where_are_you_from" + ], + [ + "are you from here", + "where_are_you_from" + ], + [ + "were you made here", + "where_are_you_from" + ], + [ + "where did you come from", + "where_are_you_from" + ], + [ + "you were made where", + "where_are_you_from" + ], + [ + "i'm not sure if watermelon is on my shopping list, but if it isn't can you put it on there", + "shopping_list_update" + ], + [ + "is it possible to add grapes to my shopping list if they aren't on there already", + "shopping_list_update" + ], + [ + "please add bananas to my shopping list unless i already did", + "shopping_list_update" + ], + [ + "can you add apples to my shopping list if they aren't already on there", + "shopping_list_update" + ], + [ + "would you be willing to add bread to my shopping list if i haven't already", + "shopping_list_update" + ], + [ + "i'm out of cleaning supplies, remind me on my list", + "shopping_list_update" + ], + [ + "i don't have any more steak, please put that on my grocery list", + "shopping_list_update" + ], + [ + "i'm out of apples, add that to my list", + "shopping_list_update" + ], + [ + "i have no oranges, put them onto my list", + "shopping_list_update" + ], + [ + "do i have peanuts on my shopping list if not please add it", + "shopping_list_update" + ], + [ + "do i have soda on my shopping list if not please add it", + "shopping_list_update" + ], + [ + "i'm out of kleenex so will you put that on my shopping list", + "shopping_list_update" + ], + [ + "i'm out of paper towels so will you put that on my shopping list", + "shopping_list_update" + ], + [ + "i'm out of toilet paper so will you put that on my shopping list", + "shopping_list_update" + ], + [ + "do i have graham crackers on my shopping list if not please add it", + "shopping_list_update" + ], + [ + "i'm out of clorox wipes so will you put that on my shopping list", + "shopping_list_update" + ], + [ + "do i have tortillas on my shopping list if not please add it", + "shopping_list_update" + ], + [ + "i'm out of laundry detergent so will you put that on my shopping list", + "shopping_list_update" + ], + [ + "do i have cheese on my shopping list if not please add it", + "shopping_list_update" + ], + [ + "i'd like you to add oranges to my shopping list", + "shopping_list_update" + ], + [ + "what categories of questions can you answer", + "what_can_i_ask_you" + ], + [ + "what kind of questions can i ask the ai", + "what_can_i_ask_you" + ], + [ + "can you tell me what i can ask the ai", + "what_can_i_ask_you" + ], + [ + "what types of things can i ask the ai", + "what_can_i_ask_you" + ], + [ + "what kind of things can i ask the ai", + "what_can_i_ask_you" + ], + [ + "what can i ask the ai", + "what_can_i_ask_you" + ], + [ + "what questions can you answer", + "what_can_i_ask_you" + ], + [ + "what am i allowed to ask you", + "what_can_i_ask_you" + ], + [ + "what all can i ask you", + "what_can_i_ask_you" + ], + [ + "what are you capable of doing and answering", + "what_can_i_ask_you" + ], + [ + "what are you capable of answering", + "what_can_i_ask_you" + ], + [ + "what kinds of subjects do you know about", + "what_can_i_ask_you" + ], + [ + "what are the different subjects that you know", + "what_can_i_ask_you" + ], + [ + "which kinds of info are you familiar with", + "what_can_i_ask_you" + ], + [ + "what kind of information do you know", + "what_can_i_ask_you" + ], + [ + "which subjects can you tell me about", + "what_can_i_ask_you" + ], + [ + "can i ask you all different types of questions", + "what_can_i_ask_you" + ], + [ + "can you answer all types of questions", + "what_can_i_ask_you" + ], + [ + "what topics can you answer questions on", + "what_can_i_ask_you" + ], + [ + "what kind of questions can you answer", + "what_can_i_ask_you" + ], + [ + "i do not have that information", + "maybe" + ], + [ + "i can't give you an answer to that", + "maybe" + ], + [ + "i do not know the answer to that", + "maybe" + ], + [ + "perhaps", + "maybe" + ], + [ + "possibly either one", + "maybe" + ], + [ + "i don't have any idea", + "maybe" + ], + [ + "can't say", + "maybe" + ], + [ + "i couldn't say either could be possible", + "maybe" + ], + [ + "which one i don't know either i guess", + "maybe" + ], + [ + "i just don't know", + "maybe" + ], + [ + "don't have any idea", + "maybe" + ], + [ + "i couldn't say", + "maybe" + ], + [ + "i don't know the anwser", + "maybe" + ], + [ + "couldn't tell you", + "maybe" + ], + [ + "either i am not sure", + "maybe" + ], + [ + "either of them could be i'm not sure", + "maybe" + ], + [ + "don't know", + "maybe" + ], + [ + "idk", + "maybe" + ], + [ + "i don't have an answer for that", + "maybe" + ], + [ + "maybe it does", + "maybe" + ], + [ + "procedure to change oil in car", + "oil_change_how" + ], + [ + "way to change car oil", + "oil_change_how" + ], + [ + "how to change oil of a car", + "oil_change_how" + ], + [ + "how can i change car oil", + "oil_change_how" + ], + [ + "i want to know how to change oil, tell me the steps one at a time while i work through it", + "oil_change_how" + ], + [ + "find step by step instructions on how to change my oil", + "oil_change_how" + ], + [ + "how do i change oil on a car", + "oil_change_how" + ], + [ + "where can i find a page showing my how to change my oil", + "oil_change_how" + ], + [ + "what weight oil do i need and how do i change the oil for my chevy truck", + "oil_change_how" + ], + [ + "what kind of oil do i need for my ford truck and how can i change it", + "oil_change_how" + ], + [ + "what kind of oil and how much do i need for my toyota tacoma truck and how do i do it", + "oil_change_how" + ], + [ + "i need to know how to change my oil and what kind of oil for a 2007 trailblazer", + "oil_change_how" + ], + [ + "what oil do i need for my honda crv and how do i change it", + "oil_change_how" + ], + [ + "i need a tutorial to learn how to change my oil, please", + "oil_change_how" + ], + [ + "what steps do i need to follow to change the oil in my car", + "oil_change_how" + ], + [ + "can you get me simple instructions on how to do an oil change", + "oil_change_how" + ], + [ + "i want to figure out how to do an oil change on my car", + "oil_change_how" + ], + [ + "can you teach me to change my oil", + "oil_change_how" + ], + [ + "can you tell me how to change my oil", + "oil_change_how" + ], + [ + "can you find some instructions on how to change my oil", + "oil_change_how" + ], + [ + "please reserve a table for 2 at lucky's under the name melissa at 7 pm", + "restaurant_reservation" + ], + [ + "i would like to reserve a table for 2 at sam's steakhouse under the name jessie at 6:30 pm", + "restaurant_reservation" + ], + [ + "help me reserve a table for 3 at lucky's under the name crystal at 8 pm", + "restaurant_reservation" + ], + [ + "would you please schedule a reservation for 2 at lucky's under the name sam at 7:30pm", + "restaurant_reservation" + ], + [ + "could you please reserve a table for 6 at lucille's under the name tom at 5pm", + "restaurant_reservation" + ], + [ + "is there a reservation available at ruth chris today", + "restaurant_reservation" + ], + [ + "are there 8pm tables available at texas roadhouse", + "restaurant_reservation" + ], + [ + "book a reservation for 3 at xenophobe under the name zebee", + "restaurant_reservation" + ], + [ + "i need to book a reservation for 3 at xenophobe under the name zebee", + "restaurant_reservation" + ], + [ + "book 3 under the name zebee at xenophobe", + "restaurant_reservation" + ], + [ + "what reservations are available for 3 people at the xenophobe", + "restaurant_reservation" + ], + [ + "under the name zebee book a reservation at the xenophobe for 3", + "restaurant_reservation" + ], + [ + "use the name wheeler to reserve a table for 3 at andrea's steakhouse at 5pm", + "restaurant_reservation" + ], + [ + "make a reservation for wheeler party of 3 for 5pm at andrea's steakhouse", + "restaurant_reservation" + ], + [ + "reserve a table for 3 at andrea's steakhouse around 5pm under the name wheeler", + "restaurant_reservation" + ], + [ + "i need a table for 3 at 5pm at andrea's steakhouse under wheeler", + "restaurant_reservation" + ], + [ + "reserve a table for 3 under the name wheeler at andrea's steakhouse for 5pm", + "restaurant_reservation" + ], + [ + "book room for me and her under the name kendra", + "restaurant_reservation" + ], + [ + "allow me to turn on the lights", + "restaurant_reservation" + ], + [ + "make me a reservation for 5 people at village tavern for the calloways", + "restaurant_reservation" + ], + [ + "do i have more than $100 in my pnc account", + "balance" + ], + [ + "what's my pnc balance", + "balance" + ], + [ + "how much is in my pnc account", + "balance" + ], + [ + "how much money do i have in my pnc account", + "balance" + ], + [ + "what is the balance in my pnc account", + "balance" + ], + [ + "can i get beer within my deposit account", + "balance" + ], + [ + "is there enough in my savings account to get a new tv", + "balance" + ], + [ + "could be there be a good amount of money in my checking account to go on a vacation", + "balance" + ], + [ + "can i afford a new tv from my savings account", + "balance" + ], + [ + "will i have enough to get a new roku with my savings account", + "balance" + ], + [ + "do you think i have enough money in my chase account for a new pair of sneakers", + "balance" + ], + [ + "i hope i have enough money in my chase account to buy new clothes", + "balance" + ], + [ + "i am not sure if i have enough money in my chase account to buy a new dress", + "balance" + ], + [ + "i wonder if i have enough money in my chase account for a bike", + "balance" + ], + [ + "i keep trying to figure out if i have enough money in my chase account to purchase a new set of tires", + "balance" + ], + [ + "please tell me how much money i have in my bank accounts", + "balance" + ], + [ + "i need to know how much money i have in all of my bank accounts", + "balance" + ], + [ + "how much money is in all of my bank accounts", + "balance" + ], + [ + "how much money is in my bank accounts", + "balance" + ], + [ + "can you tell me how much money i have i my bank accounts", + "balance" + ], + [ + "please double check my reservations for six at mani", + "confirm_reservation" + ], + [ + "confirm my johnny rockets reservation for this evening", + "confirm_reservation" + ], + [ + "confirm four for my reservation at fiji", + "confirm_reservation" + ], + [ + "make sure my flower bar reservation is scheduled for tomorrow", + "confirm_reservation" + ], + [ + "please double check on my reservations for buffalo wild wings at five for the game", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at applebee's for kristen", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at chili's for bart", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at longhorn for justin", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at outback for josh", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at carrabbas for heather", + "confirm_reservation" + ], + [ + "i want to confirm friday's reservation at 2:00", + "confirm_reservation" + ], + [ + "confirm my friday reservation at 2:00", + "confirm_reservation" + ], + [ + "i am here to conform my friday reservation at 2:00", + "confirm_reservation" + ], + [ + "you know the reservation i have on 2:00 friday i confirm it", + "confirm_reservation" + ], + [ + "i'd like to confirm the 2:00 reservation for friday", + "confirm_reservation" + ], + [ + "check to see if i am still booked to be eating at gusto handcrafted pasta & pizza at 6:30 pm", + "confirm_reservation" + ], + [ + "is my dinner reservation for gusto handcrafted pasta & pizza at 6:30 pm still valid", + "confirm_reservation" + ], + [ + "please call gusto handcrafted pasta & pizza and ask them about the status of my reservation for 6:30 pm", + "confirm_reservation" + ], + [ + "will you check to see if i am still reserved for 6:30 pm at gusto handcrafted pasta & pizza", + "confirm_reservation" + ], + [ + "please confirm my reservation for dinner at gusto handcrafted pasta & pizza at 6:30 pm", + "confirm_reservation" + ], + [ + "may you stop a paymet on my account", + "freeze_account" + ], + [ + "how we stop my account", + "freeze_account" + ], + [ + "can you place a stop on my account", + "freeze_account" + ], + [ + "can we stop my bank account", + "freeze_account" + ], + [ + "please put a block on my capital one account immediately", + "freeze_account" + ], + [ + "please put a block on my discover account immediately", + "freeze_account" + ], + [ + "please put a block on my regions account immediately", + "freeze_account" + ], + [ + "please put a block on my wells fargo account immediately", + "freeze_account" + ], + [ + "please put a block on my us bank account immediately", + "freeze_account" + ], + [ + "i need you to act swiftly and freeze all activity on my capital one checking", + "freeze_account" + ], + [ + "place a hold on my chase money market market account at once", + "freeze_account" + ], + [ + "i need to block all transactions from going through on my citi checking account straight away", + "freeze_account" + ], + [ + "please immediately block my navy federal credit union account", + "freeze_account" + ], + [ + "can you initiate a block on my bank of america checking asap", + "freeze_account" + ], + [ + "i need my savings account placed under a block as soon as possible", + "freeze_account" + ], + [ + "please put a hold on my retirement account right now", + "freeze_account" + ], + [ + "i need a block placed right away on my joint checking account", + "freeze_account" + ], + [ + "i want a block placed on my checking account right away", + "freeze_account" + ], + [ + "i want a block placed on my college fund account immediately", + "freeze_account" + ], + [ + "can you please freeze my account", + "freeze_account" + ], + [ + "will my 401k rollover", + "rollover_401k" + ], + [ + "will my 401k carryover", + "rollover_401k" + ], + [ + "will my 401k carryover or not", + "rollover_401k" + ], + [ + "can my 401k rollover or not", + "rollover_401k" + ], + [ + "could my 401k be rolled over", + "rollover_401k" + ], + [ + "can the 401k i have be rolled over", + "rollover_401k" + ], + [ + "is there a way to roll over my 401k", + "rollover_401k" + ], + [ + "is it possible to rollover my 401k", + "rollover_401k" + ], + [ + "am i able to rollover my 401k", + "rollover_401k" + ], + [ + "how should i rollover my 401k", + "rollover_401k" + ], + [ + "i need help with my 401k rollover because i just got a new job", + "rollover_401k" + ], + [ + "how do i do a 401k rollover when switching to a new job", + "rollover_401k" + ], + [ + "due to getting a new job i need assistance with my 401k rollover", + "rollover_401k" + ], + [ + "i'm at a new job and i need to do a 401k rollover, how do i do this", + "rollover_401k" + ], + [ + "what are you suppose to do with a 401k rollover when getting a new job", + "rollover_401k" + ], + [ + "how do i rollover my 401k", + "rollover_401k" + ], + [ + "rolling over my 401k help", + "rollover_401k" + ], + [ + "assistance in rolling over my 401k", + "rollover_401k" + ], + [ + "401k rollover help", + "rollover_401k" + ], + [ + "rollover my 401k assistance", + "rollover_401k" + ], + [ + "who is your designer", + "who_made_you" + ], + [ + "what company is responsible for your design", + "who_made_you" + ], + [ + "who is responsible for your design", + "who_made_you" + ], + [ + "what firm is responsible for your design", + "who_made_you" + ], + [ + "who were you created by", + "who_made_you" + ], + [ + "what is the company that made you", + "who_made_you" + ], + [ + "who are you manufactured by", + "who_made_you" + ], + [ + "who is your manufacturer", + "who_made_you" + ], + [ + "who makes you", + "who_made_you" + ], + [ + "what organization manufactures you", + "who_made_you" + ], + [ + "who's your creator", + "who_made_you" + ], + [ + "what manufactures you", + "who_made_you" + ], + [ + "who is the person responsible for creating you", + "who_made_you" + ], + [ + "who brought you into existence", + "who_made_you" + ], + [ + "who formed thou", + "who_made_you" + ], + [ + "who conjured you", + "who_made_you" + ], + [ + "who programmed you", + "who_made_you" + ], + [ + "where were you programmed", + "who_made_you" + ], + [ + "what company designed you", + "who_made_you" + ], + [ + "who or what programmed you, do you know", + "who_made_you" + ], + [ + "whats the travel time to redmond right now", + "distance" + ], + [ + "travel time to bend, oregon", + "distance" + ], + [ + "how long will the trip to portland be", + "distance" + ], + [ + "how long is it going to take me to get to bellevue", + "distance" + ], + [ + "how long will it take to get to tacoma", + "distance" + ], + [ + "how long is the drive to the closest gas station", + "distance" + ], + [ + "how much time to drive to the closest bank", + "distance" + ], + [ + "can you tell me the drive time to the nearest gas station", + "distance" + ], + [ + "i need to know how long it will take me to get to the bank", + "distance" + ], + [ + "how long will it take for me to get to the gas station", + "distance" + ], + [ + "what is the remaining time until we are at our destination", + "distance" + ], + [ + "how many miles away am i from madison square garden", + "distance" + ], + [ + "how long would it take to get to chicago by bus", + "distance" + ], + [ + "how long to seattle on a bus", + "distance" + ], + [ + "how long is it to ann arbor by bus", + "distance" + ], + [ + "how long to washington dc on a bus", + "distance" + ], + [ + "if going to lake placid, ny, how long would it be by bus", + "distance" + ], + [ + "what is the average time it takes to get to target in los angeles", + "distance" + ], + [ + "can you please tell me how long it will take to get to target in austin", + "distance" + ], + [ + "how long would it take to get to mcdonald's in houston", + "distance" + ], + [ + "do you know who i am", + "user_name" + ], + [ + "do you have my name programmed", + "user_name" + ], + [ + "do you think my name is jeff", + "user_name" + ], + [ + "is joey my name", + "user_name" + ], + [ + "tell me my name", + "user_name" + ], + [ + "say my name in a sentence", + "user_name" + ], + [ + "what is my name", + "user_name" + ], + [ + "tell me my name the way its saved", + "user_name" + ], + [ + "tell me what my name is", + "user_name" + ], + [ + "how is my name saved", + "user_name" + ], + [ + "which way do you have my name saved", + "user_name" + ], + [ + "in what form is my name saved", + "user_name" + ], + [ + "how does my name appear", + "user_name" + ], + [ + "how is my name saved aw", + "user_name" + ], + [ + "how do you show my name", + "user_name" + ], + [ + "do you know what my name is", + "user_name" + ], + [ + "are you able to call me by my name", + "user_name" + ], + [ + "what do you want to call me", + "user_name" + ], + [ + "what is the name you would use for me", + "user_name" + ], + [ + "what name is saved for me", + "user_name" + ], + [ + "what is the timezone of saigon", + "timezone" + ], + [ + "what timezone is hanoi in", + "timezone" + ], + [ + "what timezone do ho chi minh use", + "timezone" + ], + [ + "what timezone is honolulu in", + "timezone" + ], + [ + "what timezone is paris in", + "timezone" + ], + [ + "which time zone is germany is in", + "timezone" + ], + [ + "what are the time zones of russia", + "timezone" + ], + [ + "which time zones does european countries use", + "timezone" + ], + [ + "what is the time zone of china", + "timezone" + ], + [ + "tell me the timezone for hong kong", + "timezone" + ], + [ + "which timezone contains the city of orlando", + "timezone" + ], + [ + "british columbia can be found in what timezone", + "timezone" + ], + [ + "in what timezone is atlanta located", + "timezone" + ], + [ + "give me the timezone where vancouver is", + "timezone" + ], + [ + "what timezone is the country in", + "timezone" + ], + [ + "is the timezone there different", + "timezone" + ], + [ + "what's the timezone over there", + "timezone" + ], + [ + "what's london's timezone", + "timezone" + ], + [ + "do you know london's timezone", + "timezone" + ], + [ + "what timezone is london in", + "timezone" + ], + [ + "i want you to skip past this song to the next track", + "next_song" + ], + [ + "please skip this song and go to the next one instead", + "next_song" + ], + [ + "would you skip past this song and just play what comes next", + "next_song" + ], + [ + "i dont want to hear this song, just play the next one", + "next_song" + ], + [ + "let's skip over this song and listen to the next tune instead", + "next_song" + ], + [ + "would you play the next song", + "next_song" + ], + [ + "i want you to skip this song", + "next_song" + ], + [ + "i need for you to skip this song", + "next_song" + ], + [ + "please skip this song for me", + "next_song" + ], + [ + "would you skip this song", + "next_song" + ], + [ + "i don't want to hear this song; skip it", + "next_song" + ], + [ + "now, i want you to play the next song", + "next_song" + ], + [ + "i am needing the next song to be played", + "next_song" + ], + [ + "i want the next song played", + "next_song" + ], + [ + "needing you to play the next song", + "next_song" + ], + [ + "next song please", + "next_song" + ], + [ + "change this song it sucks so bad", + "next_song" + ], + [ + "can i hear the song after this one", + "next_song" + ], + [ + "can you skip this song and go to the next one", + "next_song" + ], + [ + "what is the next song on this playlist", + "next_song" + ], + [ + "show all purchases of video games", + "transactions" + ], + [ + "show me all video games purchased", + "transactions" + ], + [ + "list all purchases of video games", + "transactions" + ], + [ + "show me all new transactions", + "transactions" + ], + [ + "what transactions have i made in the last few weeks", + "transactions" + ], + [ + "how much money have i spent on restaurants", + "transactions" + ], + [ + "what transactions did i put on my visa last month", + "transactions" + ], + [ + "what transactions have i accrued buying dog food", + "transactions" + ], + [ + "what are my recent purchases", + "transactions" + ], + [ + "please tell me all the purchases on my hy-vee card for this statement period", + "transactions" + ], + [ + "please let me review all items on my mastercard from this billing period", + "transactions" + ], + [ + "please tell me this month's transactions on my visa", + "transactions" + ], + [ + "show me all transactions for current statement", + "transactions" + ], + [ + "i want to see transactions from this month", + "transactions" + ], + [ + "how many paypal transactions did i have last week", + "transactions" + ], + [ + "what items do i have on my amex card this month", + "transactions" + ], + [ + "what transactions do i have on my visa from the last 4 weeks", + "transactions" + ], + [ + "what withdrawals were there on my account yesterday", + "transactions" + ], + [ + "was my last transaction at walmart", + "transactions" + ], + [ + "how much was my last transaction for", + "transactions" + ], + [ + "where do you want to eat tonight", + "restaurant_suggestion" + ], + [ + "where is your favorite restaurant to eat", + "restaurant_suggestion" + ], + [ + "do you have any restaurant recommendations", + "restaurant_suggestion" + ], + [ + "where should we eat tonight", + "restaurant_suggestion" + ], + [ + "where are the best places to eat", + "restaurant_suggestion" + ], + [ + "are there any vegan restaurants in my town", + "restaurant_suggestion" + ], + [ + "list a few pizza places that have seating near my current location", + "restaurant_suggestion" + ], + [ + "are there decent seafood restaurants in portland", + "restaurant_suggestion" + ], + [ + "name a few good steakhouses in chicago", + "restaurant_suggestion" + ], + [ + "does brooklyn have good italian restaurants", + "restaurant_suggestion" + ], + [ + "i would love to find a few vegan restaurants in back bay", + "restaurant_suggestion" + ], + [ + "suggest a few local eateries in mid price range", + "restaurant_suggestion" + ], + [ + "i feel like going out for sushi tonight who in the area serves good sushi", + "restaurant_suggestion" + ], + [ + "i am looking for good southeast asian restaurants in philadelphia", + "restaurant_suggestion" + ], + [ + "i want to eat mediterranean fare with at least four stars, near me", + "restaurant_suggestion" + ], + [ + "what are some good ethiopian restaurants in queens", + "restaurant_suggestion" + ], + [ + "what are some good itialian restaurants in north salem", + "restaurant_suggestion" + ], + [ + "what are some good vegan restaurants in broadripple", + "restaurant_suggestion" + ], + [ + "what are some good mexican restaurants in indianapolis", + "restaurant_suggestion" + ], + [ + "what are some good southern bbq restaurants in nashville", + "restaurant_suggestion" + ], + [ + "whats the reward balance for my visa", + "rewards_balance" + ], + [ + "for my visa what's my reward balance", + "rewards_balance" + ], + [ + "i need know know the reward balance for my visa", + "rewards_balance" + ], + [ + "can you tell me my visa's reward balance", + "rewards_balance" + ], + [ + "what's my visa cards balance for rewards", + "rewards_balance" + ], + [ + "how many points do i have with my american express", + "rewards_balance" + ], + [ + "tell me the points on my delta rewards card", + "rewards_balance" + ], + [ + "how many points on my chase unlimited card", + "rewards_balance" + ], + [ + "what is my kohls card's rewards balance", + "rewards_balance" + ], + [ + "what is my gymboree card's rewards balance", + "rewards_balance" + ], + [ + "what is my old navy card's rewards balance", + "rewards_balance" + ], + [ + "how do i check my rewards for my maurices card", + "rewards_balance" + ], + [ + "how do i check my rewards for my chase card", + "rewards_balance" + ], + [ + "what is my amazon card's rewards balance", + "rewards_balance" + ], + [ + "how do i check my rewards for my old navy card", + "rewards_balance" + ], + [ + "what is my maurices card's rewards balance", + "rewards_balance" + ], + [ + "how do i check my rewards for my capital one card", + "rewards_balance" + ], + [ + "how do i check my rewards for my target card", + "rewards_balance" + ], + [ + "how many points have i earned with my amex card", + "rewards_balance" + ], + [ + "how many points have i earned with my chase card", + "rewards_balance" + ], + [ + "can you assist with my utility bill payment", + "pay_bill" + ], + [ + "my utility bill is coming due and i need a loan", + "pay_bill" + ], + [ + "can i get some funds to pay my utility bill", + "pay_bill" + ], + [ + "i will require help to take care of my utility bill", + "pay_bill" + ], + [ + "i want assistance with my utility bill", + "pay_bill" + ], + [ + "tell me if you can help pay a bill", + "pay_bill" + ], + [ + "pay a bill!", + "pay_bill" + ], + [ + "i want to pay a bill", + "pay_bill" + ], + [ + "pay my monthy mortgage payment", + "pay_bill" + ], + [ + "submit payment to duke energy for my electric bill", + "pay_bill" + ], + [ + "make a quarterly payment on my life insurance premium", + "pay_bill" + ], + [ + "i need to pay my time warner cable bill", + "pay_bill" + ], + [ + "submit full payment to chase for my visa bill", + "pay_bill" + ], + [ + "please pay my utility bill from my wells fargo checking account", + "pay_bill" + ], + [ + "pay my water bill from my chase account please", + "pay_bill" + ], + [ + "pay my dte bill from my checking account please", + "pay_bill" + ], + [ + "use my boa account to pay the cable bill", + "pay_bill" + ], + [ + "use my savings account to pay xfinity", + "pay_bill" + ], + [ + "i want to pay my cable bill directly from my checking account", + "pay_bill" + ], + [ + "pay my cable bill directly from my checking account", + "pay_bill" + ], + [ + "could you tell me what kind of money i've recently spent", + "spending_history" + ], + [ + "how much have i spent lately", + "spending_history" + ], + [ + "how much have i recently spent", + "spending_history" + ], + [ + "how much money have i recently spent on stuff", + "spending_history" + ], + [ + "how much did i spend on shcool due last year", + "spending_history" + ], + [ + "how much did i spend on bills last month", + "spending_history" + ], + [ + "did i buy too many donuts recently, like last week", + "spending_history" + ], + [ + "did i spend too much dough on donuts last week", + "spending_history" + ], + [ + "have i been spending excessively on donuts recently", + "spending_history" + ], + [ + "was i spending too much money on doughnuts last week", + "spending_history" + ], + [ + "have i spent too much of my paycheck on donuts lately", + "spending_history" + ], + [ + "how much money did i spent on grocery recently", + "spending_history" + ], + [ + "how much did i spend on grocery shopping recently", + "spending_history" + ], + [ + "can you tell me how much i spent on grocery shopping recently", + "spending_history" + ], + [ + "tell me how much i have spent on grocery shopping just now", + "spending_history" + ], + [ + "would you mind telling me how much i have spent recently on grocery shopping", + "spending_history" + ], + [ + "how much have i spent on shoes recently", + "spending_history" + ], + [ + "how much have i spent on groceries recently", + "spending_history" + ], + [ + "how much have i spent on eating out recently", + "spending_history" + ], + [ + "how much have i spent on make up recently", + "spending_history" + ], + [ + "will i be permitted to take my vacation", + "pto_request_status" + ], + [ + "what's the status of my vacation days", + "pto_request_status" + ], + [ + "did i get approval yet to take off next week", + "pto_request_status" + ], + [ + "has my vacation been okayed yet", + "pto_request_status" + ], + [ + "has my maternity leave been approved", + "pto_request_status" + ], + [ + "did my vacation get approved yet", + "pto_request_status" + ], + [ + "what's the status of my medical leave", + "pto_request_status" + ], + [ + "what's the status on my vacation approval", + "pto_request_status" + ], + [ + "when will my vacation get okayed", + "pto_request_status" + ], + [ + "am i cleared to miss work for vacation", + "pto_request_status" + ], + [ + "check if my vacation time has been approved", + "pto_request_status" + ], + [ + "has my request for time off been approved", + "pto_request_status" + ], + [ + "look up the status of my time off request", + "pto_request_status" + ], + [ + "what is the status of my vacation time request", + "pto_request_status" + ], + [ + "i would really like to know if i can go on vacation", + "pto_request_status" + ], + [ + "i was wondering about the vacation time you said you'll approve", + "pto_request_status" + ], + [ + "hey, have you approved my vacation time yet", + "pto_request_status" + ], + [ + "can you tell me whether or not you approved my vacation time", + "pto_request_status" + ], + [ + "has my request for vacation time been approved", + "pto_request_status" + ], + [ + "please tell me if there's been any word on my vacation request", + "pto_request_status" + ], + [ + "please lookup my experion credit score", + "credit_score" + ], + [ + "look up my fico credit score", + "credit_score" + ], + [ + "relate to me what my credit score is", + "credit_score" + ], + [ + "can you share my credit score with me", + "credit_score" + ], + [ + "what's my current credit score", + "credit_score" + ], + [ + "where do i go to look at my credit score", + "credit_score" + ], + [ + "what's my credit rating right now", + "credit_score" + ], + [ + "who tracks my credit score", + "credit_score" + ], + [ + "how bad is my current credit score", + "credit_score" + ], + [ + "what's my current credit rating", + "credit_score" + ], + [ + "where's my credit score", + "credit_score" + ], + [ + "how is my credit looking", + "credit_score" + ], + [ + "how do i locate my credit rating", + "credit_score" + ], + [ + "do you know what my precise credit score is", + "credit_score" + ], + [ + "how can i request my credit score", + "credit_score" + ], + [ + "do you know my credit rating number", + "credit_score" + ], + [ + "is my credit good enough to get a new card", + "credit_score" + ], + [ + "how high is my credit score", + "credit_score" + ], + [ + "can you tell me my credit rating", + "credit_score" + ], + [ + "what's my latest credit score", + "credit_score" + ], + [ + "who has the best credit card offering for a college student", + "new_card" + ], + [ + "can you suggest a few credit cards that have good rewards points", + "new_card" + ], + [ + "i would like to know more about getting a new credit card", + "new_card" + ], + [ + "who should i apply for a credit card for", + "new_card" + ], + [ + "tell me how i can apply for a chase credit card", + "new_card" + ], + [ + "tell me about the chase credit card application process", + "new_card" + ], + [ + "i want to apply for a wells fargo credit card", + "new_card" + ], + [ + "how do i go about applying for a macy's credit card", + "new_card" + ], + [ + "i want to put in an application for a line of a credit card how do i do that", + "new_card" + ], + [ + "i want to apply for a new credit card", + "new_card" + ], + [ + "i need a new credit card, show me suggestions", + "new_card" + ], + [ + "i need to apply for a new credit card that will match my needs", + "new_card" + ], + [ + "show me some options for new credit cards that i can apply for, please", + "new_card" + ], + [ + "what new credit card should i submit an application for", + "new_card" + ], + [ + "can i apply for a paypal master card", + "new_card" + ], + [ + "where can i apply for a black amex card", + "new_card" + ], + [ + "how would i apply for an american express", + "new_card" + ], + [ + "what do i need to do to apply for a visa card", + "new_card" + ], + [ + "how does one apply for a master card", + "new_card" + ], + [ + "assist me in getting a new credit card", + "new_card" + ], + [ + "who do i contact for lost luggage", + "lost_luggage" + ], + [ + "where is my luggage", + "lost_luggage" + ], + [ + "who can i call about my luggage", + "lost_luggage" + ], + [ + "howcan i locate my luggage", + "lost_luggage" + ], + [ + "i think i lost my luggage", + "lost_luggage" + ], + [ + "what to do if i lost my luggage", + "lost_luggage" + ], + [ + "what do i do if my luggage is lost", + "lost_luggage" + ], + [ + "what should i do if i lost my luggage", + "lost_luggage" + ], + [ + "i think my luggage is stolen", + "lost_luggage" + ], + [ + "what do i do if i lost my luggage", + "lost_luggage" + ], + [ + "what can i do if i lost my luggage", + "lost_luggage" + ], + [ + "my luggage is missing", + "lost_luggage" + ], + [ + "i think my luggage is missing", + "lost_luggage" + ], + [ + "my luggage is lost", + "lost_luggage" + ], + [ + "i was flying out of chicago on american airlines flight ab123 and my luggage is now lost", + "lost_luggage" + ], + [ + "my luggage is missing off of american airlines flight ab123 out of chicago", + "lost_luggage" + ], + [ + "what am i supposed to do if i lost my luggage", + "lost_luggage" + ], + [ + "what is the procedure if i lost my luggage", + "lost_luggage" + ], + [ + "what steps should i follow if i lost my luggage", + "lost_luggage" + ], + [ + "where do i report if i lost my luggage", + "lost_luggage" + ], + [ + "i want to hear that again", + "repeat" + ], + [ + "repeat that for me", + "repeat" + ], + [ + "could that be repeated", + "repeat" + ], + [ + "can you repeat what you said", + "repeat" + ], + [ + "i did not hear what you said", + "repeat" + ], + [ + "what did you just ask", + "repeat" + ], + [ + "can you ask me that again", + "repeat" + ], + [ + "what question did you just ask me", + "repeat" + ], + [ + "can you repeat that question", + "repeat" + ], + [ + "what was said", + "repeat" + ], + [ + "what", + "repeat" + ], + [ + "repeat that once more", + "repeat" + ], + [ + "please repeat what you said", + "repeat" + ], + [ + "please ask me again", + "repeat" + ], + [ + "i'm sorry, i didn't understand what you said", + "repeat" + ], + [ + "what did you ask again", + "repeat" + ], + [ + "please say that again", + "repeat" + ], + [ + "can you repeat that please", + "repeat" + ], + [ + "what was that question again", + "repeat" + ], + [ + "i'm sorry please repeat the question", + "repeat" + ], + [ + "how well is the gas mileage while i'm in the city", + "mpg" + ], + [ + "how's my gas mileage in citys", + "mpg" + ], + [ + "what kind of miles per gallon do i get while driving through a city", + "mpg" + ], + [ + "what kind of gas mileage does this car get when going through a city", + "mpg" + ], + [ + "how's my gas mileage while driving through a city", + "mpg" + ], + [ + "how many miles per gallon does my amc rambler get", + "mpg" + ], + [ + "what's the gas mileage on a juke", + "mpg" + ], + [ + "what is the gas mileage on a 2012 ford fusion", + "mpg" + ], + [ + "how many mpg does an equinox get", + "mpg" + ], + [ + "what is the gas mileage on a ford falcon", + "mpg" + ], + [ + "how many miles does this car get per gallon", + "mpg" + ], + [ + "what is the mpg for this car", + "mpg" + ], + [ + "i need to know this car's mpg", + "mpg" + ], + [ + "how many miles will i get for one gallon on this car", + "mpg" + ], + [ + "i would like to know the mpg for this car", + "mpg" + ], + [ + "what's the mpg of my car", + "mpg" + ], + [ + "get me info on my mpg", + "mpg" + ], + [ + "tell me the mpg of my vehicle", + "mpg" + ], + [ + "how many mpg does my car get", + "mpg" + ], + [ + "what's the mpg rating on my car", + "mpg" + ], + [ + "when is it time to change your oil", + "oil_change_when" + ], + [ + "how do you know if your oil needs changed", + "oil_change_when" + ], + [ + "can you tell me when i should change my oil", + "oil_change_when" + ], + [ + "when should i change my oil", + "oil_change_when" + ], + [ + "how long does it take before you have to change your oil", + "oil_change_when" + ], + [ + "when does my oil need to be changed", + "oil_change_when" + ], + [ + "what is the schedule for my next oil change", + "oil_change_when" + ], + [ + "am i ready for an oil change soon", + "oil_change_when" + ], + [ + "when do i need to change my oil next", + "oil_change_when" + ], + [ + "when do i need to change my motor oil again", + "oil_change_when" + ], + [ + "when do i need to change my motor oil", + "oil_change_when" + ], + [ + "when do i need to change my motor oil next", + "oil_change_when" + ], + [ + "so when should i change the oil", + "oil_change_when" + ], + [ + "when i should change oil", + "oil_change_when" + ], + [ + "when should change oil tell me please", + "oil_change_when" + ], + [ + "tell me when i should change me oil", + "oil_change_when" + ], + [ + "i need to know when to change oil", + "oil_change_when" + ], + [ + "how long until my oil needs to be changed", + "oil_change_when" + ], + [ + "when will my car need new oil", + "oil_change_when" + ], + [ + "at the point when should i get my oil changed straightaway", + "oil_change_when" + ], + [ + "that's definitely true", + "yes" + ], + [ + "yup, that's true", + "yes" + ], + [ + "yes, that is true for sure", + "yes" + ], + [ + "i know that is true", + "yes" + ], + [ + "true, most definitely", + "yes" + ], + [ + "facts", + "yes" + ], + [ + "you are not wrong about that", + "yes" + ], + [ + "that makes sense as well", + "yes" + ], + [ + "you are correct", + "yes" + ], + [ + "agreed", + "yes" + ], + [ + "accepted", + "yes" + ], + [ + "confirmed", + "yes" + ], + [ + "approved", + "yes" + ], + [ + "i want you to know it's a true statement", + "yes" + ], + [ + "i know that the statement is true", + "yes" + ], + [ + "this is a true statement", + "yes" + ], + [ + "the statement is true", + "yes" + ], + [ + "i'm telling you this is a true statement", + "yes" + ], + [ + "that's a yes", + "yes" + ], + [ + "affirmitive", + "yes" + ], + [ + "what's the best place to visit in arizona", + "travel_suggestion" + ], + [ + "what's the best restaurant in arizona for pizza", + "travel_suggestion" + ], + [ + "what are popular mountains to hike in arizona", + "travel_suggestion" + ], + [ + "do you think arizona has plenty of bike routes", + "travel_suggestion" + ], + [ + "find the favorite destination for traveling this year", + "travel_suggestion" + ], + [ + "can you suggest some of the most popular travel destination", + "travel_suggestion" + ], + [ + "what is there to do in craberra", + "travel_suggestion" + ], + [ + "give me location for tourist destination in bangkok", + "travel_suggestion" + ], + [ + "i want to know about tourist places for bangkok", + "travel_suggestion" + ], + [ + "i want list of tourist destination for paris", + "travel_suggestion" + ], + [ + "i want to know where to visit in bangkok", + "travel_suggestion" + ], + [ + "i would like to find a list of cool things recommended for tourists in copenhagen, denmark", + "travel_suggestion" + ], + [ + "i need some recommendations for fun tourist activities in washington, dc", + "travel_suggestion" + ], + [ + "what are some exciting things that are a must do for tourists visiting sedona", + "travel_suggestion" + ], + [ + "please do a search for entertaining activities for tourists in mexico city", + "travel_suggestion" + ], + [ + "can you give me some fun suggestions for tourists to check out in las vegas, please", + "travel_suggestion" + ], + [ + "in seoul, what things can i do", + "travel_suggestion" + ], + [ + "what to do in minneapolis", + "travel_suggestion" + ], + [ + "what can i do in hong kong", + "travel_suggestion" + ], + [ + "what's a good place to vacation", + "travel_suggestion" + ], + [ + "what is covered under my insurance", + "insurance" + ], + [ + "what benefits do i have for insurance", + "insurance" + ], + [ + "what is my insurance coverage", + "insurance" + ], + [ + "which insurance do i have", + "insurance" + ], + [ + "what kind of insurance do i have", + "insurance" + ], + [ + "what insurance do i have", + "insurance" + ], + [ + "which insurance plan do i have", + "insurance" + ], + [ + "what is the name of the insurance plan i am enrolled in", + "insurance" + ], + [ + "i am enrolled in what insurance plan", + "insurance" + ], + [ + "what is the insurance plan i am enrolled in", + "insurance" + ], + [ + "i am enrolled in an insurance plan and need to know what it is", + "insurance" + ], + [ + "i enrolled in an insurance plan, what one was it", + "insurance" + ], + [ + "which was my insurance plan again", + "insurance" + ], + [ + "what insurance plan do i have", + "insurance" + ], + [ + "how is my insurance coverage", + "insurance" + ], + [ + "my insurance plan is what", + "insurance" + ], + [ + "what plan am i paying for", + "insurance" + ], + [ + "do you know my health benefits", + "insurance" + ], + [ + "what are my health benefits like", + "insurance" + ], + [ + "could you list my health benefits", + "insurance" + ], + [ + "can you cancel my todo list please", + "todo_list_update" + ], + [ + "wipe my todo list please", + "todo_list_update" + ], + [ + "can you delete my todo list please", + "todo_list_update" + ], + [ + "remove my todo list", + "todo_list_update" + ], + [ + "please delete my todo list", + "todo_list_update" + ], + [ + "can you add laundry to my to do list", + "todo_list_update" + ], + [ + "put laundry on my chore list", + "todo_list_update" + ], + [ + "erase my to do list", + "todo_list_update" + ], + [ + "i need to do laundry later today", + "todo_list_update" + ], + [ + "put laundry on my list of things to do", + "todo_list_update" + ], + [ + "clear my to do list", + "todo_list_update" + ], + [ + "erase the items on my to do list", + "todo_list_update" + ], + [ + "i'm finished with my to do list", + "todo_list_update" + ], + [ + "i need laundry to be put on my list of things to do", + "todo_list_update" + ], + [ + "please delete the items on my to do list", + "todo_list_update" + ], + [ + "remind me to wash the dog, put on list of things to do", + "todo_list_update" + ], + [ + "add to my list of things to do: wash the dog", + "todo_list_update" + ], + [ + "please put wash the dog on my list of things to do", + "todo_list_update" + ], + [ + "put wash the dog on my to do list please", + "todo_list_update" + ], + [ + "add wash the dog to my list of things to do", + "todo_list_update" + ], + [ + "please read my reminder list", + "reminder" + ], + [ + "read my reminder list back to me", + "reminder" + ], + [ + "i want you to read my reminder list to me", + "reminder" + ], + [ + "i want to hear my reminder list", + "reminder" + ], + [ + "read my reminder list to me please", + "reminder" + ], + [ + "i wanted to remember somethings, what was it", + "reminder" + ], + [ + "list the things i wanted to remember", + "reminder" + ], + [ + "recall the things i wanted to remember", + "reminder" + ], + [ + "what were those things i wanted to remember", + "reminder" + ], + [ + "what was it i wanted to remember", + "reminder" + ], + [ + "what does my running list of stuff to do list", + "reminder" + ], + [ + "what is on my to do list", + "reminder" + ], + [ + "what is my plan for the day", + "reminder" + ], + [ + "what are the things i wanted to recall", + "reminder" + ], + [ + "what things did i not want to forget", + "reminder" + ], + [ + "what is it i wanted to bear in mind", + "reminder" + ], + [ + "what are the things that i wanted to keep in mind", + "reminder" + ], + [ + "tell me my reminder list", + "reminder" + ], + [ + "whats on my reminder list, read back", + "reminder" + ], + [ + "read all my reminders", + "reminder" + ], + [ + "can you speak more slowly", + "change_speed" + ], + [ + "please talk a bit faster", + "change_speed" + ], + [ + "can you slow down your rate of speech", + "change_speed" + ], + [ + "please talk slower for me if you can", + "change_speed" + ], + [ + "please speak to me quicker from now on", + "change_speed" + ], + [ + "can you slow down the rate at which you talk", + "change_speed" + ], + [ + "talk to me in a speedier manner from here on out", + "change_speed" + ], + [ + "can you permanently talk faster", + "change_speed" + ], + [ + "speed up your rate of speech", + "change_speed" + ], + [ + "can you raise your speaking speed", + "change_speed" + ], + [ + "please speak faster", + "change_speed" + ], + [ + "don't talk so slow", + "change_speed" + ], + [ + "would you talk a bit faster instead", + "change_speed" + ], + [ + "speed your speech up", + "change_speed" + ], + [ + "go ahead and talk faster now", + "change_speed" + ], + [ + "talk faster than that", + "change_speed" + ], + [ + "please talk faster", + "change_speed" + ], + [ + "could you speed up your speech", + "change_speed" + ], + [ + "could you speak faster", + "change_speed" + ], + [ + "could you talk a little faster", + "change_speed" + ], + [ + "i need you to check the air levels in my tires and let me know if i have enough in them", + "tire_pressure" + ], + [ + "check my tires' air levels please", + "tire_pressure" + ], + [ + "please check my tires and let me know if i have sufficient air in them", + "tire_pressure" + ], + [ + "do my tires have enough air in them", + "tire_pressure" + ], + [ + "can you check and tell me if my tires have enough air", + "tire_pressure" + ], + [ + "what is the car's tire pressure", + "tire_pressure" + ], + [ + "what is the tire pressure of the car", + "tire_pressure" + ], + [ + "how is the car tire pressure doing", + "tire_pressure" + ], + [ + "how is the car's tire pressure", + "tire_pressure" + ], + [ + "is my tire pressure good", + "tire_pressure" + ], + [ + "how is my tire pressure", + "tire_pressure" + ], + [ + "is my tire pressure okay on my car", + "tire_pressure" + ], + [ + "how much air pressure is in my tires", + "tire_pressure" + ], + [ + "what is my tire pressure", + "tire_pressure" + ], + [ + "do my car tires have enough psi in them", + "tire_pressure" + ], + [ + "can you tell me how much air are in my car tires", + "tire_pressure" + ], + [ + "please give me the amount of pressure in my car tires", + "tire_pressure" + ], + [ + "how much psi is in my car tires", + "tire_pressure" + ], + [ + "what is the air pressure of my car tires", + "tire_pressure" + ], + [ + "how much air are in my tires", + "tire_pressure" + ], + [ + "ill pass", + "no" + ], + [ + "not happening", + "no" + ], + [ + "no, that is fake", + "no" + ], + [ + "hell nah", + "no" + ], + [ + "no, that is invalid", + "no" + ], + [ + "i would prefer not", + "no" + ], + [ + "thats a negative", + "no" + ], + [ + "i meant no", + "no" + ], + [ + "i am saying no", + "no" + ], + [ + "that is not factual", + "no" + ], + [ + "no, that is not correct", + "no" + ], + [ + "i do not think that is proper", + "no" + ], + [ + "no good", + "no" + ], + [ + "negatory", + "no" + ], + [ + "invalid", + "no" + ], + [ + "absolutely not", + "no" + ], + [ + "certainly not", + "no" + ], + [ + "no, that's wrong", + "no" + ], + [ + "no, that's not it", + "no" + ], + [ + "no, that's not right", + "no" + ], + [ + "is the apr on my card that ends 1234 what it should be based on my credit score", + "apr" + ], + [ + "on my citi card, the one that ends 1234, what's the apr", + "apr" + ], + [ + "has the apr on my card changed and what is it now", + "apr" + ], + [ + "let me know my card's apr", + "apr" + ], + [ + "can you tell me the status of my card's apr", + "apr" + ], + [ + "what is the apr on my citibank card", + "apr" + ], + [ + "how good is my card's apr", + "apr" + ], + [ + "what is the apr on my first bank card account", + "apr" + ], + [ + "what is the apr on my chase card", + "apr" + ], + [ + "what is my card's apr", + "apr" + ], + [ + "what is the apr on my american express", + "apr" + ], + [ + "i want to know the apr on my capital one card", + "apr" + ], + [ + "how does my card's apr compare to others", + "apr" + ], + [ + "is my card's apr good", + "apr" + ], + [ + "can you tell me how good my card's apr is", + "apr" + ], + [ + "what is my card's apr and is it good", + "apr" + ], + [ + "what is a good apr", + "apr" + ], + [ + "is my apr high", + "apr" + ], + [ + "what does my credit card charge for their annual percentage rate", + "apr" + ], + [ + "do you know the apr on my chase credit card", + "apr" + ], + [ + "how healthy is shepard's pie", + "nutrition_info" + ], + [ + "how healthy is pecan pie", + "nutrition_info" + ], + [ + "how healthy is hummus", + "nutrition_info" + ], + [ + "how healthy is salad", + "nutrition_info" + ], + [ + "how healthy is pumpkin pie", + "nutrition_info" + ], + [ + "is chocolate good for you", + "nutrition_info" + ], + [ + "tell me how health chocolate is", + "nutrition_info" + ], + [ + "what is the nutritional info for kraft mac 'n' cheese", + "nutrition_info" + ], + [ + "is chocolate bad for you or good for you", + "nutrition_info" + ], + [ + "can you tell me the nutrional info of a big mac", + "nutrition_info" + ], + [ + "are french fries health or not", + "nutrition_info" + ], + [ + "tell me the nutrional info of a regular banana", + "nutrition_info" + ], + [ + "read me the nutrional info of a bag of lay's potato chips", + "nutrition_info" + ], + [ + "pull up the nutrional info of a 12 oz coke", + "nutrition_info" + ], + [ + "is chocolate healthy", + "nutrition_info" + ], + [ + "tell me how many much fat is in the hamburger", + "nutrition_info" + ], + [ + "what is the nutrition information for shrimp scampi", + "nutrition_info" + ], + [ + "how many grams of sodium are in potato chips", + "nutrition_info" + ], + [ + "is rice good for me", + "nutrition_info" + ], + [ + "is raw carrot healthy to eat", + "nutrition_info" + ], + [ + "what is tuesday's calendar like", + "calendar" + ], + [ + "can you check what is on my calendar for tuesday", + "calendar" + ], + [ + "check what's on my calendar for tuesday", + "calendar" + ], + [ + "what is tuesday like on my calendar", + "calendar" + ], + [ + "what appointments do i have tomorrow after 1:00pm", + "calendar" + ], + [ + "what is the date of my next scheduled dentist appointment", + "calendar" + ], + [ + "do i have anything scheduled on my calendar for next tuesday", + "calendar" + ], + [ + "what do i have going on for 12/03/2019", + "calendar" + ], + [ + "where do i have to be on 12/03/2019", + "calendar" + ], + [ + "do i have plans on 12/03/2019", + "calendar" + ], + [ + "what's my schedule like for thursday the 14th", + "calendar" + ], + [ + "does my calendar show anything for thursday the 14th", + "calendar" + ], + [ + "do i have anything scheduled for thursday the 14th", + "calendar" + ], + [ + "can you tell me what my calendar is like for thursday the 14th", + "calendar" + ], + [ + "what appointments do i have on thursday the 14th", + "calendar" + ], + [ + "is my day open for march 4th 2019", + "calendar" + ], + [ + "is anything happening on march 4th 2019", + "calendar" + ], + [ + "are there any active events for march 4th 2019", + "calendar" + ], + [ + "check my calendar for march 4th 2019, please", + "calendar" + ], + [ + "read back my day for march 4th 2019", + "calendar" + ], + [ + "i need you to schedule an uber pickup for me and three other people at 7pm to go to abe's pizza", + "uber" + ], + [ + "send me an uber to arrive at 5pm at my house and there will be two people going to scully's downtown", + "uber" + ], + [ + "send me an uber now for four people and we are going to appleby's downtown", + "uber" + ], + [ + "i need an uber ride to come and pick me up now at work", + "uber" + ], + [ + "can you find me an uber and have it here at 7pm", + "uber" + ], + [ + "call me an uber please, and make it for four people to go downtown", + "uber" + ], + [ + "i need an uber to come to my work at 5pm for three people going to the cineplex downtown", + "uber" + ], + [ + "are there any ubers available in my area right now", + "uber" + ], + [ + "schedule an uber to pick me up at home in an hour", + "uber" + ], + [ + "call an uber and have it pick me up at my present location", + "uber" + ], + [ + "connect me with an uber", + "uber" + ], + [ + "please call an uber for me", + "uber" + ], + [ + "i need to obtain and uber", + "uber" + ], + [ + "is there an uber going to downtown", + "uber" + ], + [ + "book uber from here to downtown", + "uber" + ], + [ + "uber ride available from here to downtown", + "uber" + ], + [ + "look up uber to downtown", + "uber" + ], + [ + "find me an uber to downtown", + "uber" + ], + [ + "are there any ubers available for two people i need it to go to the stadium on grand", + "uber" + ], + [ + "can you get uber for two people going to 27 moss lane", + "uber" + ], + [ + "help me solve this math equation", + "calculator" + ], + [ + "i need your assistance to solve this math problem", + "calculator" + ], + [ + "can you multiply 45 by 23", + "calculator" + ], + [ + "can you divide 100 by 20", + "calculator" + ], + [ + "can you subract 36 from 5", + "calculator" + ], + [ + "can you add 5 and 89", + "calculator" + ], + [ + "multiply 7 and 42", + "calculator" + ], + [ + "what is the sum of 3, 7, 9, and 24", + "calculator" + ], + [ + "add up 8 and 7", + "calculator" + ], + [ + "what is the square root of 888", + "calculator" + ], + [ + "what is 87 divided by 4", + "calculator" + ], + [ + "what is the square root of 8814", + "calculator" + ], + [ + "what is 89 divided by 3", + "calculator" + ], + [ + "what is 13 times 57", + "calculator" + ], + [ + "can you tell me the square root of pi", + "calculator" + ], + [ + "what is 543 times 344", + "calculator" + ], + [ + "what is seventeen plus three", + "calculator" + ], + [ + "what is the derivative of x squared plus 5", + "calculator" + ], + [ + "can you factor x squared plus 4 x plus 4", + "calculator" + ], + [ + "is 126 divisible by 8", + "calculator" + ], + [ + "give me the date", + "date" + ], + [ + "tell me the date", + "date" + ], + [ + "which day is it today", + "date" + ], + [ + "what day of the week are we on", + "date" + ], + [ + "in 4 days, what date will it be", + "date" + ], + [ + "would you let me know what date it will be in 3 days", + "date" + ], + [ + "tell me the date it will be 5 days from now", + "date" + ], + [ + "would you let me know today's date", + "date" + ], + [ + "i need to know the date it will be 4 days from now", + "date" + ], + [ + "let me know what date it will be in 3 days", + "date" + ], + [ + "let me know what today's date is", + "date" + ], + [ + "i would like to get today's date", + "date" + ], + [ + "what date will it be 8 days from now", + "date" + ], + [ + "what date will it be 9 days from now", + "date" + ], + [ + "what date will it be 6 days from now", + "date" + ], + [ + "what date will it be 5 days from now", + "date" + ], + [ + "what date will it be 7 days from now", + "date" + ], + [ + "tell me what today's date is", + "date" + ], + [ + "is today monday", + "date" + ], + [ + "what is the current date", + "date" + ], + [ + "can i take more than one carry on", + "carry_on" + ], + [ + "does more than one carry on cost extra at ryanair", + "carry_on" + ], + [ + "does spirit allow more than one carry on", + "carry_on" + ], + [ + "are more than one carry on allowed at klm", + "carry_on" + ], + [ + "will jet blue allow more than one carry on", + "carry_on" + ], + [ + "whats the policy for delta for carry ons", + "carry_on" + ], + [ + "what's the carry on policy for delta", + "carry_on" + ], + [ + "can you tell me delta's carry on policy", + "carry_on" + ], + [ + "what's delta's carry on policy", + "carry_on" + ], + [ + "i would like to know delta's carry on policy", + "carry_on" + ], + [ + "what are carry-on rules for jet blue", + "carry_on" + ], + [ + "i'm flying delta and need to know the carry-on rules", + "carry_on" + ], + [ + "what are united's carry-on rules", + "carry_on" + ], + [ + "what rules does southwest have for carry-on luggage", + "carry_on" + ], + [ + "look up carry-on rules for american airlines", + "carry_on" + ], + [ + "i want know about carry-on for frontier", + "carry_on" + ], + [ + "tell me carry-on info for united", + "carry_on" + ], + [ + "i would like to know carry-on information for delta", + "carry_on" + ], + [ + "can you give me the carry-on rules for american airlines", + "carry_on" + ], + [ + "how many carry ons can i take with spirit, going to tampa", + "carry_on" + ], + [ + "how many days off have i used", + "pto_used" + ], + [ + "what is the total day off have i taken", + "pto_used" + ], + [ + "what is the amount of pto have i use", + "pto_used" + ], + [ + "let me know how many vacation have i utilized", + "pto_used" + ], + [ + "how many days have i taken off", + "pto_used" + ], + [ + "how much pto have i used so far", + "pto_used" + ], + [ + "can you tell me how many vacation days have i taken", + "pto_used" + ], + [ + "what is the amount of vacation day i have used", + "pto_used" + ], + [ + "can you tell me how much pto have i use", + "pto_used" + ], + [ + "let me know the amount of vacation days i have used", + "pto_used" + ], + [ + "how much pto have i used", + "pto_used" + ], + [ + "what is the amount of pto have i used", + "pto_used" + ], + [ + "how many vacation and sick days have i taken", + "pto_used" + ], + [ + "how many days have i used", + "pto_used" + ], + [ + "how much vacation days have i used", + "pto_used" + ], + [ + "my day offs history", + "pto_used" + ], + [ + "how many day off i have taken", + "pto_used" + ], + [ + "how many of my off days have i run through for the year thus far", + "pto_used" + ], + [ + "remind me of how days i had off so far for the year", + "pto_used" + ], + [ + "can you tell how many days i already took off this year", + "pto_used" + ], + [ + "i'd like an appointment at your earliest availability for an oil change", + "schedule_maintenance" + ], + [ + "could you book me an appointment for an oil change", + "schedule_maintenance" + ], + [ + "i'd like to make an appointment to get my oil changed", + "schedule_maintenance" + ], + [ + "i'd like to book the next availability for an oil change", + "schedule_maintenance" + ], + [ + "can i make an appointment for an oil change", + "schedule_maintenance" + ], + [ + "schedule an appointment for a tire check for me", + "schedule_maintenance" + ], + [ + "make me an appointment for a tire check", + "schedule_maintenance" + ], + [ + "can i make an appointment to get my tires checked", + "schedule_maintenance" + ], + [ + "can you please make an appointment for me to get my tires checked out", + "schedule_maintenance" + ], + [ + "schedule me an appointment to get my tires checked out", + "schedule_maintenance" + ], + [ + "can you help me find someone to look at my car's engine because the light is on", + "schedule_maintenance" + ], + [ + "i need to arrange an appointment to have my car's tires examined", + "schedule_maintenance" + ], + [ + "my car needs maintenance but i don't know if i can schedule an appointment for that", + "schedule_maintenance" + ], + [ + "is there any way to change the date of my oil change", + "schedule_maintenance" + ], + [ + "my car's tires are due to be looked at, can you help me get an appointment for that", + "schedule_maintenance" + ], + [ + "find out where i can schedule to get my car's tires checked", + "schedule_maintenance" + ], + [ + "i need to get an appointment for car maintenance", + "schedule_maintenance" + ], + [ + "help me schedule maintenance for my car", + "schedule_maintenance" + ], + [ + "help me find somewhere to schedule a check up on my car's tires", + "schedule_maintenance" + ], + [ + "find me someone who can deal with my car's illuminated check engine light", + "schedule_maintenance" + ], + [ + "i'm going to be in canada from october 23rd to november 2nd, so can i let my bank know", + "travel_notification" + ], + [ + "let my bank know i'm going to be in russia for a month", + "travel_notification" + ], + [ + "get a message to my bank that starting the 14th i'll be in canada", + "travel_notification" + ], + [ + "tell my bank that i'm travelling to france in 2 days", + "travel_notification" + ], + [ + "tell my bank i'll be in cuba beginning the 2nd", + "travel_notification" + ], + [ + "alert my financial institution that i will be traveling to bangkok on april 2 and returning on april 7", + "travel_notification" + ], + [ + "on tuesday i will be leaving for tennessee and will not be returning until the twenty ninth, alert my bank of this", + "travel_notification" + ], + [ + "my bank needs to be aware of my trip to spain", + "travel_notification" + ], + [ + "i am going to spain in the future and my bank needs to know this information", + "travel_notification" + ], + [ + "my bank needs to know that i will be traveling to spain soon", + "travel_notification" + ], + [ + "my vacation to spain is coming up and i need my bank to know", + "travel_notification" + ], + [ + "i will be telling my bank of my upcoming trip to spain", + "travel_notification" + ], + [ + "from april to may i will be in america so i need to notify my bank", + "travel_notification" + ], + [ + "i will tell my bank that i will be gone from april to may to america", + "travel_notification" + ], + [ + "i need to let my bank know i will be in america from april to may", + "travel_notification" + ], + [ + "my back needs to be notified that i will be in american from april to may", + "travel_notification" + ], + [ + "i will be visiting america so i will need to let me bank know i will be gone from april to may", + "travel_notification" + ], + [ + "please note that i will be travelling internationally soon", + "travel_notification" + ], + [ + "let my bank know that i am going to tokyo", + "travel_notification" + ], + [ + "alert my bank and tell them that i will be in vermont", + "travel_notification" + ], + [ + "sync phone", + "sync_device" + ], + [ + "please pair my phone", + "sync_device" + ], + [ + "don't connect to my phone anymore", + "sync_device" + ], + [ + "i need you to pair with my phone please", + "sync_device" + ], + [ + "don't sync to my phone anymore", + "sync_device" + ], + [ + "sync with my phone", + "sync_device" + ], + [ + "disconnect from phone", + "sync_device" + ], + [ + "stop synching to my phone", + "sync_device" + ], + [ + "can you pair with my phone", + "sync_device" + ], + [ + "please pair with my phone", + "sync_device" + ], + [ + "disconnect sync from my phone", + "sync_device" + ], + [ + "unsync yourself from my phone please", + "sync_device" + ], + [ + "stop syncing with my phone", + "sync_device" + ], + [ + "i'd like you to pair with my phone", + "sync_device" + ], + [ + "i need you to pair with my phone", + "sync_device" + ], + [ + "don't sync with my phone", + "sync_device" + ], + [ + "pair with phone", + "sync_device" + ], + [ + "connect with my phone", + "sync_device" + ], + [ + "please add onto my phone", + "sync_device" + ], + [ + "put a device with my phone", + "sync_device" + ], + [ + "that you so much for the help", + "thank_you" + ], + [ + "thanks for helping me", + "thank_you" + ], + [ + "thanks for helping me out today", + "thank_you" + ], + [ + "thanks for the assist", + "thank_you" + ], + [ + "thank you for the help", + "thank_you" + ], + [ + "thanks for your help", + "thank_you" + ], + [ + "thank you for your help", + "thank_you" + ], + [ + "i'm thankful for your help", + "thank_you" + ], + [ + "i am glad that you did that", + "thank_you" + ], + [ + "i owe you one", + "thank_you" + ], + [ + "i appreciate you doing that", + "thank_you" + ], + [ + "appreciated", + "thank_you" + ], + [ + "i am happy you did that for me", + "thank_you" + ], + [ + "thanks, you've helped me", + "thank_you" + ], + [ + "thanks, i appreciate it", + "thank_you" + ], + [ + "i'm thankful", + "thank_you" + ], + [ + "you have my gratitude", + "thank_you" + ], + [ + "you've been a big help", + "thank_you" + ], + [ + "special thanks to you", + "thank_you" + ], + [ + "you have my sincere gratitude", + "thank_you" + ], + [ + "i would like you to roll a dice", + "roll_dice" + ], + [ + "please roll a 10 sided die and tell me what number it is", + "roll_dice" + ], + [ + "can you roll a dice for me", + "roll_dice" + ], + [ + "please roll a dice", + "roll_dice" + ], + [ + "roll a 6 sided die and tell me the result", + "roll_dice" + ], + [ + "can you roll a dice with 8 sides", + "roll_dice" + ], + [ + "can you roll a dice with 6 sides", + "roll_dice" + ], + [ + "roll a 10 sided dice", + "roll_dice" + ], + [ + "roll an 8 sided dice", + "roll_dice" + ], + [ + "roll a 6 sided dice", + "roll_dice" + ], + [ + "please roll this 8 sided dice", + "roll_dice" + ], + [ + "i want you to roll a 5 sided dice for me", + "roll_dice" + ], + [ + "give a 6 sided dice a roll for me", + "roll_dice" + ], + [ + "complete a roll on a 4 sided dice", + "roll_dice" + ], + [ + "i need a roll on a 6 sided dice", + "roll_dice" + ], + [ + "roll that dice", + "roll_dice" + ], + [ + "please roll that dice", + "roll_dice" + ], + [ + "roll the dice now", + "roll_dice" + ], + [ + "i need to make a quick decision, so roll a dice!", + "roll_dice" + ], + [ + "i need you to roll a dice that has six sides and tell me what it lands on", + "roll_dice" + ], + [ + "is my milk safe to drink after being in the refrigerator for a week", + "food_last" + ], + [ + "apple cider has been in my fridge for four months so can i still drink it", + "food_last" + ], + [ + "mayonaise has been in my fridge for three years, is it still good to eat", + "food_last" + ], + [ + "is cooked chicken still good after being refrigerated for two weeks", + "food_last" + ], + [ + "i have had farm fresh eggs in the fridge for a few months, are they still okay to ingest", + "food_last" + ], + [ + "how many days before milk expire", + "food_last" + ], + [ + "will rice be ok in the fridge for 3 days", + "food_last" + ], + [ + "is rice ok after 3 days in the refrigerator", + "food_last" + ], + [ + "after 3 days in the fridge is rice safe to eat", + "food_last" + ], + [ + "is rice bad after 3 days in fridge", + "food_last" + ], + [ + "can i keep rice in the fridge for 3 days", + "food_last" + ], + [ + "when does my milk expire", + "food_last" + ], + [ + "how long does it take milk to expire", + "food_last" + ], + [ + "how do i know if my milk is expired", + "food_last" + ], + [ + "what is the expiration date of my milk", + "food_last" + ], + [ + "how long until my milk expires", + "food_last" + ], + [ + "how long can i keep pork in the freezer for before it gets freezer burnt", + "food_last" + ], + [ + "how long can i keep beef in the freezer for before it gets nasty", + "food_last" + ], + [ + "how long can i keep chicken in the freezer for before it goes gross", + "food_last" + ], + [ + "how long can i keep bison in the freezer for before it spoils", + "food_last" + ], + [ + "how long do i need to cook pot au feu for", + "cook_time" + ], + [ + "how long do i need to cook chili for", + "cook_time" + ], + [ + "how long do i need to cook lasagne for", + "cook_time" + ], + [ + "how long do i need to cook tuna casserole for", + "cook_time" + ], + [ + "how long do i need to cook beef stew for", + "cook_time" + ], + [ + "how long should i cook country fried potatoes for", + "cook_time" + ], + [ + "how long should i cook pho for", + "cook_time" + ], + [ + "how long should i cook steak for", + "cook_time" + ], + [ + "how long should i cook roast for", + "cook_time" + ], + [ + "i need to know how long to cook chicken for", + "cook_time" + ], + [ + "how long do i put sugar cookies in for", + "cook_time" + ], + [ + "how long should i cook carnitas for", + "cook_time" + ], + [ + "how long should i cook ham for", + "cook_time" + ], + [ + "how long does it take to make pho", + "cook_time" + ], + [ + "how long do i need to cook roast for", + "cook_time" + ], + [ + "how long should i microwave hot pockets for", + "cook_time" + ], + [ + "how long does it take to cook hot pockets", + "cook_time" + ], + [ + "what's the recommended cooking time for steak", + "cook_time" + ], + [ + "should i cook this for a long time", + "cook_time" + ], + [ + "what time should i leave this in the oven", + "cook_time" + ], + [ + "remind me to call my mom", + "reminder_update" + ], + [ + "set a reminder for me to request time off work around the holidays", + "reminder_update" + ], + [ + "remind me to get an oil change", + "reminder_update" + ], + [ + "i need a reminder to order cookies", + "reminder_update" + ], + [ + "remind me to write that letter", + "reminder_update" + ], + [ + "set a reminder to pay my taxes", + "reminder_update" + ], + [ + "remind me to do something", + "reminder_update" + ], + [ + "you need to remind me to do something", + "reminder_update" + ], + [ + "i need to be reminded", + "reminder_update" + ], + [ + "i need to make a reminder", + "reminder_update" + ], + [ + "can you set a reminder for me", + "reminder_update" + ], + [ + "i need to set up a reminder for myself", + "reminder_update" + ], + [ + "create a reminder", + "reminder_update" + ], + [ + "remind me to check the steak", + "reminder_update" + ], + [ + "i just put steaks on the grill remind me to check them at the right time", + "reminder_update" + ], + [ + "don't let me forget to check the steak", + "reminder_update" + ], + [ + "set a reminder to check the steak", + "reminder_update" + ], + [ + "can you set a reminder for the current time tommorow", + "reminder_update" + ], + [ + "set a reminder for me to request time off", + "reminder_update" + ], + [ + "can i have a reminder set up", + "reminder_update" + ], + [ + "i want to report a stolen card", + "report_lost_card" + ], + [ + "my card is lost, i would like to report it", + "report_lost_card" + ], + [ + "my card was stolen, how do i report this", + "report_lost_card" + ], + [ + "i need to report a stolen card", + "report_lost_card" + ], + [ + "if i lost my card how do i report it", + "report_lost_card" + ], + [ + "how do i report a stolen card", + "report_lost_card" + ], + [ + "what is the process of reporting a lost card", + "report_lost_card" + ], + [ + "if my card was stolen, where do i report it", + "report_lost_card" + ], + [ + "i lost my card, how do i report it", + "report_lost_card" + ], + [ + "report a card lost for me", + "report_lost_card" + ], + [ + "i lost a card and i need to report it", + "report_lost_card" + ], + [ + "i have a card that was lost i need to report", + "report_lost_card" + ], + [ + "amazon visa card is stolen", + "report_lost_card" + ], + [ + "my disney visa card is stolen", + "report_lost_card" + ], + [ + "spirit mastercard card was taken", + "report_lost_card" + ], + [ + "what are the steps to take to report a lost card", + "report_lost_card" + ], + [ + "what is the route to take to report a lost card", + "report_lost_card" + ], + [ + "can you show me how to report a lost card", + "report_lost_card" + ], + [ + "i need the information on how to report a lost card", + "report_lost_card" + ], + [ + "my card is lost and i need to know how to report it", + "report_lost_card" + ], + [ + "would it be a problem to sub chips instead of fries", + "ingredient_substitution" + ], + [ + "let me know if i can use ketchup in place of the mustard", + "ingredient_substitution" + ], + [ + "is it ok to use ketchup instead of mustard", + "ingredient_substitution" + ], + [ + "is it normal to use mayo instead of cheese", + "ingredient_substitution" + ], + [ + "can i sub ketchup for mustard", + "ingredient_substitution" + ], + [ + "i wonder if it would be possible to switch from apples to grapes", + "ingredient_substitution" + ], + [ + "is it allow to switch apples to grapes", + "ingredient_substitution" + ], + [ + "is it okay to switch apples for grapes", + "ingredient_substitution" + ], + [ + "can i modify the apples for grapes", + "ingredient_substitution" + ], + [ + "would i be able to swap apples for grapes", + "ingredient_substitution" + ], + [ + "i don't have butter can i use oil", + "ingredient_substitution" + ], + [ + "is butter a substitute for oil", + "ingredient_substitution" + ], + [ + "is butter ok to use instead of oil", + "ingredient_substitution" + ], + [ + "are butter and oil interchangable", + "ingredient_substitution" + ], + [ + "are you able to switch butter and oil", + "ingredient_substitution" + ], + [ + "do you know if i can use pepper and not salt", + "ingredient_substitution" + ], + [ + "will pepper work instead of salt", + "ingredient_substitution" + ], + [ + "is pepper a replacement for salt", + "ingredient_substitution" + ], + [ + "would it be ok if i have pepper and not salt", + "ingredient_substitution" + ], + [ + "can i use pepper instead of salt", + "ingredient_substitution" + ], + [ + "call alex", + "make_call" + ], + [ + "please call mark", + "make_call" + ], + [ + "i want to call mark", + "make_call" + ], + [ + "let me call mark", + "make_call" + ], + [ + "can we call mark", + "make_call" + ], + [ + "call back my mom please", + "make_call" + ], + [ + "start a call to cynthia", + "make_call" + ], + [ + "i want to call up jan", + "make_call" + ], + [ + "can you get a call started to martha", + "make_call" + ], + [ + "please call felicity", + "make_call" + ], + [ + "please initiate a phone call to my boss", + "make_call" + ], + [ + "initiate a call to robert", + "make_call" + ], + [ + "dial the last number that called me", + "make_call" + ], + [ + "call contact aj", + "make_call" + ], + [ + "call aj now", + "make_call" + ], + [ + "call aj", + "make_call" + ], + [ + "call aj please", + "make_call" + ], + [ + "call my friend aj", + "make_call" + ], + [ + "can you call michelle on the home phone", + "make_call" + ], + [ + "siri, call jacob", + "make_call" + ], + [ + "i'd like alarms set for 11am and 132pm", + "alarm" + ], + [ + "i want you to set alarms for 2pm and 3pm", + "alarm" + ], + [ + "i need alarm for both 4am and 7am", + "alarm" + ], + [ + "set an alarm for 235pm and another an hour later", + "alarm" + ], + [ + "please add alarms at 430am and 1030am", + "alarm" + ], + [ + "set my alarm for quarter after six tomorrow", + "alarm" + ], + [ + "set my alarm for eight tomorrow, please", + "alarm" + ], + [ + "set my alarm for six tomorrow morning", + "alarm" + ], + [ + "set my alarm for five tomorrow morning, please", + "alarm" + ], + [ + "set an alarm for four thirty tomorrow, please", + "alarm" + ], + [ + "set me an alarm right now", + "alarm" + ], + [ + "set an alarm for me please", + "alarm" + ], + [ + "please set an alarm for me", + "alarm" + ], + [ + "please set me an alarm", + "alarm" + ], + [ + "set me an alarm now", + "alarm" + ], + [ + "create alarms for 8 pm and 9 pm", + "alarm" + ], + [ + "i need an alarm set for ten pm and midnight", + "alarm" + ], + [ + "make an alarm for one and two in the morning", + "alarm" + ], + [ + "can you set up alarms for one in the afternoon and ten at night", + "alarm" + ], + [ + "set an alarm for 05:00 and one for 16:00", + "alarm" + ], + [ + "repeat my to do list", + "todo_list" + ], + [ + "what do i have to do", + "todo_list" + ], + [ + "instruct me what to do", + "todo_list" + ], + [ + "recite my to do list", + "todo_list" + ], + [ + "will you please tell me my to do list", + "todo_list" + ], + [ + "what do i need to do", + "todo_list" + ], + [ + "did i put cutting the grass on my todo list", + "todo_list" + ], + [ + "is there anything on my todo list for taking out the trash", + "todo_list" + ], + [ + "is cleaning the outside windows on my todo list", + "todo_list" + ], + [ + "what do i have on my todo list", + "todo_list" + ], + [ + "have i added anything to my todo list", + "todo_list" + ], + [ + "did i make a note on my todo list to mop the bathroom floor", + "todo_list" + ], + [ + "is my todo list free", + "todo_list" + ], + [ + "can you tell me if there is anything on my todo list", + "todo_list" + ], + [ + "do i have anything on my todo list", + "todo_list" + ], + [ + "did i put a car wash on my todo list", + "todo_list" + ], + [ + "did i put vacuuming on my todo's", + "todo_list" + ], + [ + "is vacuuming on my todo list", + "todo_list" + ], + [ + "does my todo list have vacuuming on it", + "todo_list" + ], + [ + "is cleaning the garage on my to do list", + "todo_list" + ], + [ + "will you please do the male british accent", + "change_accent" + ], + [ + "can you please change you accent to the male british one", + "change_accent" + ], + [ + "make the male british accent please", + "change_accent" + ], + [ + "could you please change your accent to the male british one", + "change_accent" + ], + [ + "for the love of all that good change your accent", + "change_accent" + ], + [ + "your accent needs to be changed", + "change_accent" + ], + [ + "i need your accent to be changed", + "change_accent" + ], + [ + "please change your accent", + "change_accent" + ], + [ + "change your accent now", + "change_accent" + ], + [ + "change to a new accent please", + "change_accent" + ], + [ + "change to a different accent", + "change_accent" + ], + [ + "i want you to use a different accent", + "change_accent" + ], + [ + "what other accents can you use", + "change_accent" + ], + [ + "help me change my account", + "change_accent" + ], + [ + "i need to change my account", + "change_accent" + ], + [ + "i need to switch accounts", + "change_accent" + ], + [ + "please change my account to another one", + "change_accent" + ], + [ + "please use a male voice", + "change_accent" + ], + [ + "change over to the female voice", + "change_accent" + ], + [ + "move over to the female voice", + "change_accent" + ], + [ + "i need a w2 form, how do i get one", + "w2" + ], + [ + "who do i contact for a w2 form", + "w2" + ], + [ + "how do i get a w2 form", + "w2" + ], + [ + "who should i call for a w2", + "w2" + ], + [ + "where do i go to get a form for w2s", + "w2" + ], + [ + "where do i get w2 form", + "w2" + ], + [ + "i need to know where to get w2", + "w2" + ], + [ + "tell me where i should get the w2", + "w2" + ], + [ + "so where do i get the w2 form", + "w2" + ], + [ + "please tell me where to get the w2", + "w2" + ], + [ + "where will i find my w-2", + "w2" + ], + [ + "w-2 tax form where is it", + "w2" + ], + [ + "where do i find my w-2 form", + "w2" + ], + [ + "where's my w-2 tax form", + "w2" + ], + [ + "where do i find my w-2 tax form", + "w2" + ], + [ + "can i find my w-2 online", + "w2" + ], + [ + "where should i look for my w-2", + "w2" + ], + [ + "where would i find my w-2", + "w2" + ], + [ + "i need my earned income form for paying taxes", + "w2" + ], + [ + "where can i get the form for my taxes", + "w2" + ], + [ + "when do i need to pay my dte energy bill", + "bill_due" + ], + [ + "what day do i have to pay my leasing office bill", + "bill_due" + ], + [ + "what day is my telephone bill due", + "bill_due" + ], + [ + "when is my cell phone bill due", + "bill_due" + ], + [ + "what day do i need to pay my internet and phone bill by", + "bill_due" + ], + [ + "what's the due date for spectrum's bill", + "bill_due" + ], + [ + "what date do i have to pay the phone bill on", + "bill_due" + ], + [ + "can you tell me the due date for the water bill", + "bill_due" + ], + [ + "what day is the cable bill owed on", + "bill_due" + ], + [ + "when is the electric bill due", + "bill_due" + ], + [ + "when do i need to pay my car insurance bill by", + "bill_due" + ], + [ + "how do i find out when my visa bill is due", + "bill_due" + ], + [ + "tell me how i know when to pay my chase bill", + "bill_due" + ], + [ + "tell me when my mastercard bill should be paid", + "bill_due" + ], + [ + "when should i pay my pg&e bill", + "bill_due" + ], + [ + "when is my kaiser bill due", + "bill_due" + ], + [ + "how long do i have to pay that bill", + "bill_due" + ], + [ + "is there a due date on the bill", + "bill_due" + ], + [ + "is the bill due this week", + "bill_due" + ], + [ + "i need to know what day i need to pay my water bill", + "bill_due" + ], + [ + "what is the calorie content of lays chips", + "calories" + ], + [ + "do you know the calorie content of a strip of bacon", + "calories" + ], + [ + "how many calories are found in bagels", + "calories" + ], + [ + "tell me the calorie content of frosted flakes", + "calories" + ], + [ + "inform me of the calorie content of vanilla ice cream", + "calories" + ], + [ + "how many calories are in apples", + "calories" + ], + [ + "how many calories are in oranges", + "calories" + ], + [ + "how many calories are in ice cream", + "calories" + ], + [ + "how many calories are in cake", + "calories" + ], + [ + "how many calories are in oreos", + "calories" + ], + [ + "how many calories does two bananas have", + "calories" + ], + [ + "in a fried egg, how many calories are there", + "calories" + ], + [ + "pocki sticks has how many calories", + "calories" + ], + [ + "what is the amount of calories that scrambled eggs has", + "calories" + ], + [ + "how many calories are in a donut hole", + "calories" + ], + [ + "how many calories are in a ghirardelli sea salt caramel candy", + "calories" + ], + [ + "how many calories are in a bowel of wheaties", + "calories" + ], + [ + "how many calories are in a serving of deans french onion dip", + "calories" + ], + [ + "how many calories are in mashed potatoes", + "calories" + ], + [ + "how many calories are in powdered donuts", + "calories" + ], + [ + "my card was damaged by bleach", + "damaged_card" + ], + [ + "my card was cut by my kid", + "damaged_card" + ], + [ + "my card is ruined and isn't working", + "damaged_card" + ], + [ + "my card isn't working because its destroyed", + "damaged_card" + ], + [ + "my card is messed up from carding my door", + "damaged_card" + ], + [ + "my card was in my pocket and bent", + "damaged_card" + ], + [ + "my card has a burn on it", + "damaged_card" + ], + [ + "my card is impaired and i can't use it", + "damaged_card" + ], + [ + "my card is scuffed up and won't work", + "damaged_card" + ], + [ + "my card seems to not work because its blemished", + "damaged_card" + ], + [ + "i broke my card trying to do a magic trick", + "damaged_card" + ], + [ + "when my house burned down, so did my card", + "damaged_card" + ], + [ + "i broke my card scraping snow off the windshield", + "damaged_card" + ], + [ + "i broke my card when i bent my wallet", + "damaged_card" + ], + [ + "i ruined my card when it got washed", + "damaged_card" + ], + [ + "how can i get a new card that got melted in the sun", + "damaged_card" + ], + [ + "my card got dropped in the shredded and i need it replaced", + "damaged_card" + ], + [ + "my card was destroyed when my house burned down and i need a replacement", + "damaged_card" + ], + [ + "i accidentally caught my card on fire", + "damaged_card" + ], + [ + "i accidentally shredded my card", + "damaged_card" + ], + [ + "does mcdonald's have good reviews", + "restaurant_reviews" + ], + [ + "are the review for mcdonald's good or bad", + "restaurant_reviews" + ], + [ + "how are the reviews for mcdonald's", + "restaurant_reviews" + ], + [ + "what are the review for mcdonald's", + "restaurant_reviews" + ], + [ + "how are those mcdonald's reviews looking", + "restaurant_reviews" + ], + [ + "what are the ratings for yardhouse", + "restaurant_reviews" + ], + [ + "do you know how the ratings are for yardhouse", + "restaurant_reviews" + ], + [ + "are the ratings for yardhouse good", + "restaurant_reviews" + ], + [ + "can you tell me the ratings for yardhouse", + "restaurant_reviews" + ], + [ + "how good are the review for yardhouse", + "restaurant_reviews" + ], + [ + "how are the fried chicken at zippys", + "restaurant_reviews" + ], + [ + "how are the reviews for pasta at assagios", + "restaurant_reviews" + ], + [ + "how is sushi at jiro", + "restaurant_reviews" + ], + [ + "how is the steamed fish at harbor village", + "restaurant_reviews" + ], + [ + "how is dim sum at legend", + "restaurant_reviews" + ], + [ + "does boston restaurant have favorable reviews", + "restaurant_reviews" + ], + [ + "can you inform if boston restaurant has good reviews", + "restaurant_reviews" + ], + [ + "i need to know favorable reviews about boston restaurant", + "restaurant_reviews" + ], + [ + "tell me if boston restaurant has good reviews", + "restaurant_reviews" + ], + [ + "i need to know if boston restaurant has favorable reviews", + "restaurant_reviews" + ], + [ + "what would the routing number for chase be", + "routing" + ], + [ + "tell me chase's routing number", + "routing" + ], + [ + "tell me the routing number for bluebird", + "routing" + ], + [ + "help me find the chase routing number", + "routing" + ], + [ + "i want to know the bofa routing number", + "routing" + ], + [ + "what routing number does chase in michigan use", + "routing" + ], + [ + "where can i locate the ally routing number", + "routing" + ], + [ + "what would wells fargo use as routing", + "routing" + ], + [ + "is there a routing number for wachovia", + "routing" + ], + [ + "i need to know what routing number i should use for ally", + "routing" + ], + [ + "let me know chase's routing number", + "routing" + ], + [ + "what routing number does chase use", + "routing" + ], + [ + "is there a routing number for wells fargo", + "routing" + ], + [ + "i need to know bank of america's routing", + "routing" + ], + [ + "i want to know what the routing is for chase", + "routing" + ], + [ + "where can i locate my routing number for chase please", + "routing" + ], + [ + "where do i find my routing number for my pnc account", + "routing" + ], + [ + "where can i locate the routing number for the bank i bank with", + "routing" + ], + [ + "where do i locate the routing number for the credit union", + "routing" + ], + [ + "where do i locate my routing number for my premium checking account", + "routing" + ], + [ + "what type of pet is in your home", + "do_you_have_pets" + ], + [ + "what pets are with you", + "do_you_have_pets" + ], + [ + "do you have animal companions", + "do_you_have_pets" + ], + [ + "do you have any animals", + "do_you_have_pets" + ], + [ + "what type of animal is living in your home", + "do_you_have_pets" + ], + [ + "what types of pets do you keep", + "do_you_have_pets" + ], + [ + "what animals await you at home", + "do_you_have_pets" + ], + [ + "what creatures do you keep for love", + "do_you_have_pets" + ], + [ + "do you posses any types of pets", + "do_you_have_pets" + ], + [ + "do you have any dogs or cats", + "do_you_have_pets" + ], + [ + "what types of furry companions do you have", + "do_you_have_pets" + ], + [ + "given a choice would you take a dog or a cat", + "do_you_have_pets" + ], + [ + "what are the pets you have", + "do_you_have_pets" + ], + [ + "do you own a cat or do you own a dog", + "do_you_have_pets" + ], + [ + "do you own any animals", + "do_you_have_pets" + ], + [ + "what do you have in the way of pets", + "do_you_have_pets" + ], + [ + "which type of pet would you rather possess, a cat or a dog", + "do_you_have_pets" + ], + [ + "do you have a cat or a dog", + "do_you_have_pets" + ], + [ + "what different pets do you have", + "do_you_have_pets" + ], + [ + "does your family have any pets", + "do_you_have_pets" + ], + [ + "how do i set up a meeting", + "schedule_meeting" + ], + [ + "what is the process to set up a meeting", + "schedule_meeting" + ], + [ + "how can i set up a meeting", + "schedule_meeting" + ], + [ + "what is the process to schedule a meeting", + "schedule_meeting" + ], + [ + "what do i do to schedule a meeting", + "schedule_meeting" + ], + [ + "i want you to set a meeting with john at 5 pm", + "schedule_meeting" + ], + [ + "schedule a monday meeting with sam at 1 pm", + "schedule_meeting" + ], + [ + "please schedule a meeting with kim at 10 am", + "schedule_meeting" + ], + [ + "please set a meeting with nancy at 4 pm", + "schedule_meeting" + ], + [ + "schedule my meeting with jim at 3pm", + "schedule_meeting" + ], + [ + "get me a meeting room for 9am on friday", + "schedule_meeting" + ], + [ + "secure us a meeting room for 9am on friday", + "schedule_meeting" + ], + [ + "arrange a meeting room for 9am on friday", + "schedule_meeting" + ], + [ + "please schedule a meeting room for 9am on friday", + "schedule_meeting" + ], + [ + "make sure i get a meeting room for 9am on friday", + "schedule_meeting" + ], + [ + "is it possible for you to schedule a meeting for 3:00 on wednesday", + "schedule_meeting" + ], + [ + "can you create a meeting for 3:00 on wednesday", + "schedule_meeting" + ], + [ + "can you arrange a meeting for 3:00 on wednesday", + "schedule_meeting" + ], + [ + "can you please set up a meeting for 3:00 on wednesday", + "schedule_meeting" + ], + [ + "can you hook up a meeting for 3:00 on wednesday", + "schedule_meeting" + ], + [ + "what is the best type of gas for this car", + "gas_type" + ], + [ + "for this car, what kind of gas should i use", + "gas_type" + ], + [ + "what kind of gas is required for this car", + "gas_type" + ], + [ + "gas type needed for this car", + "gas_type" + ], + [ + "please tell me what kind of gas this car needs", + "gas_type" + ], + [ + "what gas does this car take", + "gas_type" + ], + [ + "can you tell me what kind of gas this car uses", + "gas_type" + ], + [ + "what kind of fuel should i put in my car", + "gas_type" + ], + [ + "what kind of fuel does my car use", + "gas_type" + ], + [ + "my car takes what kind of fuel", + "gas_type" + ], + [ + "my vehicle needs what kind of fuel", + "gas_type" + ], + [ + "what kind of fuel do i need to put in my car", + "gas_type" + ], + [ + "what is the proper fuel type for my car", + "gas_type" + ], + [ + "what's the required fuel type for my car", + "gas_type" + ], + [ + "could you tell me the fuel type for my car", + "gas_type" + ], + [ + "does this car take regular or diesel fuel", + "gas_type" + ], + [ + "what octaine is recommended for this car", + "gas_type" + ], + [ + "i need gas so what should i get", + "gas_type" + ], + [ + "what type of fuel should i get for mainly city driving", + "gas_type" + ], + [ + "what kind of gas does my car need", + "gas_type" + ], + [ + "what kind of sockets do the us use", + "plug_type" + ], + [ + "does my tv need a socket conveter in ny city", + "plug_type" + ], + [ + "does denmark use different sockets", + "plug_type" + ], + [ + "in france do they require socket conveters", + "plug_type" + ], + [ + "what type of socker conveters do i need in africa", + "plug_type" + ], + [ + "i'm going to paris, what plug type do i need", + "plug_type" + ], + [ + "what type of outlets do they have in the uk", + "plug_type" + ], + [ + "in australia what outlet type do they use", + "plug_type" + ], + [ + "do they use a different plug in brazil", + "plug_type" + ], + [ + "what kind of plug is used in japan", + "plug_type" + ], + [ + "which electrical plug type should i bring with me to finland", + "plug_type" + ], + [ + "what kind of electrical plug do they use in the uae", + "plug_type" + ], + [ + "what type of electrical plug do they use in spain", + "plug_type" + ], + [ + "what electrical plug do they use in the uk", + "plug_type" + ], + [ + "what sort of electrical plug do they use in mainland europe", + "plug_type" + ], + [ + "what are the cuban plugs like", + "plug_type" + ], + [ + "what plugs are in england", + "plug_type" + ], + [ + "how are british plugs", + "plug_type" + ], + [ + "what plug does colombia use", + "plug_type" + ], + [ + "which plugs does england use", + "plug_type" + ], + [ + "tell me when to next change my tires", + "tire_change" + ], + [ + "when would be a wise time to replace my tires", + "tire_change" + ], + [ + "can you tell me when i ought to switch out my tires", + "tire_change" + ], + [ + "when will my car next be due to get its tires changed", + "tire_change" + ], + [ + "at what point will i need to change my tires", + "tire_change" + ], + [ + "when would it be wise for me to swap out my tires", + "tire_change" + ], + [ + "do you know when the best time for me to change my tires next would be", + "tire_change" + ], + [ + "how long before i need to replace my tires", + "tire_change" + ], + [ + "how soon until my tires will need to be changed", + "tire_change" + ], + [ + "figure out for me when i ought to change my tires next", + "tire_change" + ], + [ + "tires should be changed when", + "tire_change" + ], + [ + "when should i change the tires", + "tire_change" + ], + [ + "when should i change these tires", + "tire_change" + ], + [ + "when could i get my tires changed next", + "tire_change" + ], + [ + "when can i commute my tires next", + "tire_change" + ], + [ + "when is it time for a tire change", + "tire_change" + ], + [ + "is it time for a tire change", + "tire_change" + ], + [ + "when are my tires due for changing", + "tire_change" + ], + [ + "when should my car's tires be changed", + "tire_change" + ], + [ + "when should i change my tires", + "tire_change" + ], + [ + "how much is 100 dollars in euros", + "exchange_rate" + ], + [ + "what's the exchange rate betwen usd and euros", + "exchange_rate" + ], + [ + "how much is $1 usd worth in euros", + "exchange_rate" + ], + [ + "how much is $1 usd in euros", + "exchange_rate" + ], + [ + "what's the exchange rate between country a and country b", + "exchange_rate" + ], + [ + "what's the conversion rate of 100 dollars to euros", + "exchange_rate" + ], + [ + "what's 100 dollars in euros", + "exchange_rate" + ], + [ + "how much country of canada money would i get for $100", + "exchange_rate" + ], + [ + "how much is the exchange between usd and euros", + "exchange_rate" + ], + [ + "i need to know how much 100 dollars is worth in euros", + "exchange_rate" + ], + [ + "tell me the exchange rate between here and country b", + "exchange_rate" + ], + [ + "if the dollar worth a lot in country b", + "exchange_rate" + ], + [ + "how much is 1 dollar worth in country b's money", + "exchange_rate" + ], + [ + "look up the exchange rate between dollars and euros", + "exchange_rate" + ], + [ + "convert 100 dollars to euros", + "exchange_rate" + ], + [ + "what can i get for 10 usd in cad", + "exchange_rate" + ], + [ + "what's the going rate between usd and cad", + "exchange_rate" + ], + [ + "what's the difference between usd and cad", + "exchange_rate" + ], + [ + "what is the rate for 500 cad in usd", + "exchange_rate" + ], + [ + "how much is usd vs cad", + "exchange_rate" + ], + [ + "what day is the next holiday", + "next_holiday" + ], + [ + "what holiday is coming up", + "next_holiday" + ], + [ + "the next holiday is when", + "next_holiday" + ], + [ + "which holiday do we celebrate next", + "next_holiday" + ], + [ + "i want to know when is the next holiday", + "next_holiday" + ], + [ + "what and when is the next holiday", + "next_holiday" + ], + [ + "i need to know when's the next holiday", + "next_holiday" + ], + [ + "is there a holiday this month", + "next_holiday" + ], + [ + "does march have a holiday", + "next_holiday" + ], + [ + "do we get monday off as a holiday", + "next_holiday" + ], + [ + "when do i get my next day off", + "next_holiday" + ], + [ + "i'd like to know when my next day off is", + "next_holiday" + ], + [ + "i want to know when is the next holiday here", + "next_holiday" + ], + [ + "when will be the next holiday here", + "next_holiday" + ], + [ + "please tell me when is the next holiday here", + "next_holiday" + ], + [ + "i need to know when is the next holiday here", + "next_holiday" + ], + [ + "i would like to know when is the next holiday here", + "next_holiday" + ], + [ + "when is the next break", + "next_holiday" + ], + [ + "when do we have free day", + "next_holiday" + ], + [ + "when is the next holiday in this country", + "next_holiday" + ], + [ + "make your volume quieter please", + "change_volume" + ], + [ + "adjust the volume to level 4", + "change_volume" + ], + [ + "i want your volume decreased please", + "change_volume" + ], + [ + "could you please raise your volume", + "change_volume" + ], + [ + "i want your volume lowered", + "change_volume" + ], + [ + "i want your volume louder", + "change_volume" + ], + [ + "i want the volume at 4 please", + "change_volume" + ], + [ + "i want the volume at level 4", + "change_volume" + ], + [ + "a volume of 4 is ideal please", + "change_volume" + ], + [ + "i need your volume increased", + "change_volume" + ], + [ + "can you please turn your volume down", + "change_volume" + ], + [ + "please turn the volume to 4", + "change_volume" + ], + [ + "please turn your volume up", + "change_volume" + ], + [ + "turn down your volume please", + "change_volume" + ], + [ + "turn up your volume", + "change_volume" + ], + [ + "could you increase the speaker volume please", + "change_volume" + ], + [ + "would you please increase the speaker volume", + "change_volume" + ], + [ + "increase the speaker volume please", + "change_volume" + ], + [ + "can you increase the speaker volume please", + "change_volume" + ], + [ + "please turn your speaker volume up", + "change_volume" + ], + [ + "do you work for another person", + "who_do_you_work_for" + ], + [ + "who is your supervisor, please", + "who_do_you_work_for" + ], + [ + "who is your superior, please", + "who_do_you_work_for" + ], + [ + "who are you employed by", + "who_do_you_work_for" + ], + [ + "who is your superior", + "who_do_you_work_for" + ], + [ + "do you work for a different person", + "who_do_you_work_for" + ], + [ + "who are you employed by, please", + "who_do_you_work_for" + ], + [ + "who you work for, please", + "who_do_you_work_for" + ], + [ + "do you work for another individual", + "who_do_you_work_for" + ], + [ + "who is your supervisor", + "who_do_you_work_for" + ], + [ + "do you work for a different individual", + "who_do_you_work_for" + ], + [ + "who you work for", + "who_do_you_work_for" + ], + [ + "are you one of my employees", + "who_do_you_work_for" + ], + [ + "do you work for a different employer", + "who_do_you_work_for" + ], + [ + "who is your boss by the way", + "who_do_you_work_for" + ], + [ + "i want the name of your boss", + "who_do_you_work_for" + ], + [ + "specify who your boss is", + "who_do_you_work_for" + ], + [ + "provide me the name of your boss", + "who_do_you_work_for" + ], + [ + "tell me who your boss is", + "who_do_you_work_for" + ], + [ + "who do you say you work for", + "who_do_you_work_for" + ], + [ + "what is the limit on my victoria's secret card", + "credit_limit" + ], + [ + "could you tell me the limit on my chase credit card", + "credit_limit" + ], + [ + "i need to know what my limit is on my american express card", + "credit_limit" + ], + [ + "how high is my spending limit on my wells fargo card", + "credit_limit" + ], + [ + "can you tell me what the limit is on my capital one card", + "credit_limit" + ], + [ + "i have to know the credit limit", + "credit_limit" + ], + [ + "what exactly is my credit limit", + "credit_limit" + ], + [ + "explain what my credit limit is", + "credit_limit" + ], + [ + "give me my credit limit", + "credit_limit" + ], + [ + "i need to know the credit limit", + "credit_limit" + ], + [ + "tell me the highest amount i can spend on my discover card", + "credit_limit" + ], + [ + "what is my credit limit on my discover card", + "credit_limit" + ], + [ + "how much spending power is on my discover card", + "credit_limit" + ], + [ + "how much can i buy on my discover card", + "credit_limit" + ], + [ + "how much can i spend on my discover card", + "credit_limit" + ], + [ + "what's my credit limit for my visa card", + "credit_limit" + ], + [ + "i need to know my credit's limit", + "credit_limit" + ], + [ + "what's my credit limit", + "credit_limit" + ], + [ + "what's the limit for my credit", + "credit_limit" + ], + [ + "i would like to know the limit for my credit", + "credit_limit" + ], + [ + "how much to wait before dining in the jack in the box at 4 pm", + "how_busy" + ], + [ + "how long to wait before dining in restaurant beta", + "how_busy" + ], + [ + "how long is the wait time at olive garden currently", + "how_busy" + ], + [ + "what is the wait like at apple bees", + "how_busy" + ], + [ + "what is the wait time for torris", + "how_busy" + ], + [ + "is there a wait time at bjs right now", + "how_busy" + ], + [ + "how long is the wait at buffalo wild wings", + "how_busy" + ], + [ + "how long is the wait at chipotle", + "how_busy" + ], + [ + "how long is the wait at chipotle tonight", + "how_busy" + ], + [ + "how long is the wait at chipotle right now", + "how_busy" + ], + [ + "how long is the wait at applebee's tonight", + "how_busy" + ], + [ + "how long is the wait at applebee's", + "how_busy" + ], + [ + "i need to know about how much time i'd have to wait to get a table at dibruno's", + "how_busy" + ], + [ + "can you tell me how long approximate wait times are at cheesecake factory", + "how_busy" + ], + [ + "what is the average wait time to be seated for dinner at rouge", + "how_busy" + ], + [ + "what's the wait like at chima brazilian steakhouse at this time", + "how_busy" + ], + [ + "will i have to wait long for a table at pietro's this evening", + "how_busy" + ], + [ + "how long do we have to wait at the restaurant", + "how_busy" + ], + [ + "how long would the wait at the restaurant be", + "how_busy" + ], + [ + "is mcdonalds busy around 9", + "how_busy" + ], + [ + "does spago in beverly hills allow customers to make reservations", + "accept_reservations" + ], + [ + "what is the reservation policy for spago in beverly hills", + "accept_reservations" + ], + [ + "are reservations taken at spago in beverly hills", + "accept_reservations" + ], + [ + "am i able to make reservations at spago in beverly hills", + "accept_reservations" + ], + [ + "can i make reservations at spago in beverly hills", + "accept_reservations" + ], + [ + "let me know if grub burger takes reservations", + "accept_reservations" + ], + [ + "give me information on grub burger reservations", + "accept_reservations" + ], + [ + "is grub burger taking reservations", + "accept_reservations" + ], + [ + "find out of grub burger takes reservations", + "accept_reservations" + ], + [ + "can i make reservations at grub burger", + "accept_reservations" + ], + [ + "is it possible to do a reservation at the bellagio", + "accept_reservations" + ], + [ + "does the bellagio have any reservations", + "accept_reservations" + ], + [ + "does bellagio allow you to do reservations", + "accept_reservations" + ], + [ + "can i make a reservation at chima steakhouse in chicago", + "accept_reservations" + ], + [ + "will i be able to schedule a reservation at 4 seasons in los angeles", + "accept_reservations" + ], + [ + "is it possible to make a reservation at sushi king in virginia beach", + "accept_reservations" + ], + [ + "does ruth chris in charlotte allow you to make a reservation", + "accept_reservations" + ], + [ + "will maggianos in charlotte allow me to make a reservation", + "accept_reservations" + ], + [ + "does long horns do reservations", + "accept_reservations" + ], + [ + "i need to make a reservation to long horn's, can i", + "accept_reservations" + ], + [ + "was my order delivered", + "order_status" + ], + [ + "did my order get here yet", + "order_status" + ], + [ + "was my order brought here", + "order_status" + ], + [ + "was my order shipped here", + "order_status" + ], + [ + "was the order delivered", + "order_status" + ], + [ + "what is the status of my purchase", + "order_status" + ], + [ + "track the status of my purchase", + "order_status" + ], + [ + "did my order get delivered", + "order_status" + ], + [ + "has my purchase been delivered yet", + "order_status" + ], + [ + "has my purchase arrived yet", + "order_status" + ], + [ + "how far along is my purchase", + "order_status" + ], + [ + "have my goods been delivered yet", + "order_status" + ], + [ + "i ordered new light bulbs online when will they get here", + "order_status" + ], + [ + "when will the clothes i ordered online arrive", + "order_status" + ], + [ + "i ordered new sheets online when will they arrive", + "order_status" + ], + [ + "i ordered some new speakers, so when will they get here", + "order_status" + ], + [ + "is my order at the delivery address", + "order_status" + ], + [ + "when is my order coming", + "order_status" + ], + [ + "is my order here", + "order_status" + ], + [ + "when will my order arrive", + "order_status" + ], + [ + "i forgot my pin number for my credit union bank account, can you help", + "pin_change" + ], + [ + "i want to change my bank of america account pin number", + "pin_change" + ], + [ + "i want to change the pin number on my credit union account", + "pin_change" + ], + [ + "can you help me figure out my pin number for my visa account", + "pin_change" + ], + [ + "i need to update the pin number of my aaa visa", + "pin_change" + ], + [ + "i'd like to change the pin number on my visa account", + "pin_change" + ], + [ + "i need my pin number for my bank of america account and i can't remember it", + "pin_change" + ], + [ + "i can't remember my pin for my first national debit account", + "pin_change" + ], + [ + "i've forgotten my pin number for my citibank gold account", + "pin_change" + ], + [ + "i want to update my pin number on my bank of america account", + "pin_change" + ], + [ + "i don't want my current pin for my wells account anymore", + "pin_change" + ], + [ + "switch the pin on my chase account", + "pin_change" + ], + [ + "i want a new pin on my card of private client account", + "pin_change" + ], + [ + "i want the pin on my wells fargo account to be changed", + "pin_change" + ], + [ + "i need a new pin on my chase account", + "pin_change" + ], + [ + "so tell me the pin number", + "pin_change" + ], + [ + "i need to know the pin number to my card", + "pin_change" + ], + [ + "tell me the pin number to my card", + "pin_change" + ], + [ + "i need to know the pin number", + "pin_change" + ], + [ + "switch the pin on my visa account", + "pin_change" + ], + [ + "see ya!", + "goodbye" + ], + [ + "this was fun, see you around bye", + "goodbye" + ], + [ + "until next time", + "goodbye" + ], + [ + "i enjoyed our talk, bye", + "goodbye" + ], + [ + "this was a nice chat", + "goodbye" + ], + [ + "i enjoyed speaking with you", + "goodbye" + ], + [ + "peace out!", + "goodbye" + ], + [ + "this was a nice chat, goodbye", + "goodbye" + ], + [ + "this was a nice conversation", + "goodbye" + ], + [ + "good talk, see you later", + "goodbye" + ], + [ + "it was lovely to speak with you", + "goodbye" + ], + [ + "it was lovely to speak with you, bye bye", + "goodbye" + ], + [ + "thank you for the chat, goodbye", + "goodbye" + ], + [ + "a pleasure as always to speak with you, bye", + "goodbye" + ], + [ + "thank you for chatting with me, bye", + "goodbye" + ], + [ + "i enjoyed our talk, goodbye", + "goodbye" + ], + [ + "it was a pleasure talking to you, goodbye now", + "goodbye" + ], + [ + "farewell", + "goodbye" + ], + [ + "goodnight", + "goodbye" + ], + [ + "have a good day", + "goodbye" + ], + [ + "my account looks to be blocked and i have no idea why", + "account_blocked" + ], + [ + "it seems that my account is blocked and i'm not sure why", + "account_blocked" + ], + [ + "my account appears to be blocked and i don't know why", + "account_blocked" + ], + [ + "it looks like my account is blocked but i have no clue why", + "account_blocked" + ], + [ + "my account appears to be blocked but i have no idea why that could be", + "account_blocked" + ], + [ + "why did you freeze my bank account", + "account_blocked" + ], + [ + "how did my bank account is frozen", + "account_blocked" + ], + [ + "can anyone let me know the reason behind my frozen bank account", + "account_blocked" + ], + [ + "what are the possible reasons behind frozen bank account", + "account_blocked" + ], + [ + "need help with frozen bank account", + "account_blocked" + ], + [ + "great western bank's login screen tells me i'm locked out but not why", + "account_blocked" + ], + [ + "i get an error message when i try logging in to capital one that says i'm locked out", + "account_blocked" + ], + [ + "can you check and see if my account's blocked", + "account_blocked" + ], + [ + "why can't i log into my bank account", + "account_blocked" + ], + [ + "tell me why i get an error logging in to my bank account", + "account_blocked" + ], + [ + "i'd like to know if my account's blocked and the reason if so", + "account_blocked" + ], + [ + "can you confirm my account's blocked and tell me why", + "account_blocked" + ], + [ + "do you have any idea why my account may be blocked", + "account_blocked" + ], + [ + "find out why i can't log in to my bank of america account", + "account_blocked" + ], + [ + "please tell me the reason for the hold on my bb&t account", + "account_blocked" + ], + [ + "whats this song", + "what_song" + ], + [ + "nice song what is it", + "what_song" + ], + [ + "cool song, what is it", + "what_song" + ], + [ + "what music is this", + "what_song" + ], + [ + "is this a song that i dont know", + "what_song" + ], + [ + "what\u2019s the name of this song", + "what_song" + ], + [ + "what is the current tune", + "what_song" + ], + [ + "what am i listening to right now", + "what_song" + ], + [ + "what is the name of the song playing right now", + "what_song" + ], + [ + "what is that song called", + "what_song" + ], + [ + "name this song", + "what_song" + ], + [ + "what's that song on the speaker now", + "what_song" + ], + [ + "what's the name of the song playing right now", + "what_song" + ], + [ + "what song is playing right now", + "what_song" + ], + [ + "do you know the song on the speaker right now", + "what_song" + ], + [ + "what's that song that is playing now", + "what_song" + ], + [ + "what is that tune", + "what_song" + ], + [ + "tell me the title of the song playing", + "what_song" + ], + [ + "i need this song title", + "what_song" + ], + [ + "what song am i hearing", + "what_song" + ], + [ + "does my visa have international transaction fees", + "international_fees" + ], + [ + "are there international transaction fees associated with my td bank card", + "international_fees" + ], + [ + "does my american express card have any international transaction fees", + "international_fees" + ], + [ + "does my new bank card have any international transaction fees", + "international_fees" + ], + [ + "does my western union card have international transaction fees", + "international_fees" + ], + [ + "will i be charged if i use my card in russia", + "international_fees" + ], + [ + "will i be charged if i use my card in china", + "international_fees" + ], + [ + "i wanna know if my capital one credit card have international transaction fees", + "international_fees" + ], + [ + "i'd like to know if my capital one credit card have international transaction fees", + "international_fees" + ], + [ + "does my capital one credit card have international transaction fees", + "international_fees" + ], + [ + "will i be charged if i use my card in vietnam", + "international_fees" + ], + [ + "i need to know if my capital one credit card have international transaction fees", + "international_fees" + ], + [ + "i would really like to know if my capital one credit card have international transaction fees", + "international_fees" + ], + [ + "will i be charged if i use my card in japan", + "international_fees" + ], + [ + "will i get charged extra for using my card while in tulsa", + "international_fees" + ], + [ + "while in tulsa, if i use my card, would i be charged more", + "international_fees" + ], + [ + "say that i am in tulsa, will i be charged even more if i use my card", + "international_fees" + ], + [ + "if i am in tulsa, will i get charged extra if i use my card", + "international_fees" + ], + [ + "using my card in tulsa won't cause me to be charged extra will it", + "international_fees" + ], + [ + "if i use my card in england will it cost me extra", + "international_fees" + ], + [ + "on what day, month and year did i get new tires", + "last_maintenance" + ], + [ + "when was the last time my car was worked on", + "last_maintenance" + ], + [ + "when did i last get my car serviced", + "last_maintenance" + ], + [ + "what was the date when my car was in the shop", + "last_maintenance" + ], + [ + "how long since my car was in the shop", + "last_maintenance" + ], + [ + "when was my last oil change", + "last_maintenance" + ], + [ + "what was the date of my last car service", + "last_maintenance" + ], + [ + "when was the last time i took my car in", + "last_maintenance" + ], + [ + "when was the last time my car was serviced", + "last_maintenance" + ], + [ + "do you remember when i last got my car looked at", + "last_maintenance" + ], + [ + "do you know when i last took my car to get checked", + "last_maintenance" + ], + [ + "do you have a record of when i last got my car checked", + "last_maintenance" + ], + [ + "could you inform me of when i last got my car checked", + "last_maintenance" + ], + [ + "when did i last get my car checked", + "last_maintenance" + ], + [ + "when did i change my oil", + "last_maintenance" + ], + [ + "how long since i swapped oil", + "last_maintenance" + ], + [ + "when did the oil get changed", + "last_maintenance" + ], + [ + "how long has it been since the oil got changed out", + "last_maintenance" + ], + [ + "how long since my oil had a refresh", + "last_maintenance" + ], + [ + "when was the car last services", + "last_maintenance" + ], + [ + "what if any meetings do i have today", + "meeting_schedule" + ], + [ + "do i have meetings with anyone today", + "meeting_schedule" + ], + [ + "do i have any meetings on my calendar today", + "meeting_schedule" + ], + [ + "do i have any meetings on my schedule today", + "meeting_schedule" + ], + [ + "do i have any meetings today between 9:30 and 10:30", + "meeting_schedule" + ], + [ + "do i have any meetings today between 9 and 10:30", + "meeting_schedule" + ], + [ + "do i have any meetings today between 9:20 and 10:30", + "meeting_schedule" + ], + [ + "do i have any meetings today between 9 and 10:15", + "meeting_schedule" + ], + [ + "do i have any meetings today between 9 and 10", + "meeting_schedule" + ], + [ + "what time am i meeting with john", + "meeting_schedule" + ], + [ + "what time am i meeting john", + "meeting_schedule" + ], + [ + "what time is my meeting with fred scheduled for", + "meeting_schedule" + ], + [ + "do i have any meetings coming up with dan", + "meeting_schedule" + ], + [ + "i think dan scheduled a meeting today with me, can you double check please", + "meeting_schedule" + ], + [ + "is my schedule clear with no meetings with dan today", + "meeting_schedule" + ], + [ + "what is my schedule like today, any meetings with dan", + "meeting_schedule" + ], + [ + "is dan aware of any meetings with me today", + "meeting_schedule" + ], + [ + "how many meetings do i have today", + "meeting_schedule" + ], + [ + "read me my meeting schedule", + "meeting_schedule" + ], + [ + "please tell me my meeting schedule", + "meeting_schedule" + ], + [ + "i need a list of ingredients required to make lamb stew", + "ingredients_list" + ], + [ + "please search for necessary ingredients included in meatballs", + "ingredients_list" + ], + [ + "can you tell me the ingredients used in pasta sauce", + "ingredients_list" + ], + [ + "do you know the ingredients used in homemade chicken soup", + "ingredients_list" + ], + [ + "i need to know what ingredients are in a french baguette", + "ingredients_list" + ], + [ + "find list of ingredients i would need to bake a funnel cake", + "ingredients_list" + ], + [ + "what are the ingredients used in chicken curry", + "ingredients_list" + ], + [ + "can you tell me what ingredients are needed for cinnamon buns", + "ingredients_list" + ], + [ + "please give me a list of the ingredients contained in chocolate cupcakes", + "ingredients_list" + ], + [ + "what ingredients do i need to make raisin bread", + "ingredients_list" + ], + [ + "what should i get to make the jamaican patties", + "ingredients_list" + ], + [ + "what do you i need to make pizza dough", + "ingredients_list" + ], + [ + "what kind of ingredients go into the chicken a la king", + "ingredients_list" + ], + [ + "what will i need to make lasagna", + "ingredients_list" + ], + [ + "whare the ingredients for the stir fry", + "ingredients_list" + ], + [ + "for pasta primavera, what ingredients will i use", + "ingredients_list" + ], + [ + "what ingredients do i need for shrimp scampi", + "ingredients_list" + ], + [ + "i need what ingredients for meatloaf", + "ingredients_list" + ], + [ + "i'll use what ingredients for lasagna", + "ingredients_list" + ], + [ + "for peppercorn steak, what ingredients do i need", + "ingredients_list" + ], + [ + "contact the bank about fraud activity on my card", + "report_fraud" + ], + [ + "i need to talk to someone about a fraudulent activity on my card", + "report_fraud" + ], + [ + "i need to report unauthorized activity on my card", + "report_fraud" + ], + [ + "looks like my card is being used by someone else, report it", + "report_fraud" + ], + [ + "there's something fishy on my card, report it", + "report_fraud" + ], + [ + "how do i report fraud on my chase bank card", + "report_fraud" + ], + [ + "someone is charging my card for playstations, and it's not me! what do i do!", + "report_fraud" + ], + [ + "help! i'm a victim of credit card fraud!", + "report_fraud" + ], + [ + "i want to report fraud on my american express", + "report_fraud" + ], + [ + "where do i report fraud on my credit card", + "report_fraud" + ], + [ + "i want to report fraudulent activity on my mastercard", + "report_fraud" + ], + [ + "i want to report fraudulent activity on my quicksilver card", + "report_fraud" + ], + [ + "i want to report fraudulent activity on my capital one", + "report_fraud" + ], + [ + "i want to report fraudulent activity on my discover card", + "report_fraud" + ], + [ + "i want to report fraudulent activity on my visa", + "report_fraud" + ], + [ + "i think there has been a fraud on my black visa card, can i report it", + "report_fraud" + ], + [ + "can you assist me on my fradulent activity on my chase card", + "report_fraud" + ], + [ + "an unauthorized transactions has been made on my gap card and i need to report it", + "report_fraud" + ], + [ + "is there anyway, i can report a suspicious activity on my citi card", + "report_fraud" + ], + [ + "i would like to report a fraud on my wells fargo card, please", + "report_fraud" + ], + [ + "what is the total number of pints in two quarts", + "measurement_conversion" + ], + [ + "can you tell me the number of ounces in a quart", + "measurement_conversion" + ], + [ + "what is the correct amount of ounces in a pound", + "measurement_conversion" + ], + [ + "how many tablespoons are there in half of a cup", + "measurement_conversion" + ], + [ + "i need to know how many teaspoons are equivalent to two tablesppons", + "measurement_conversion" + ], + [ + "give me celcius to fahrenheit", + "measurement_conversion" + ], + [ + "what's the equivalent of 1 cup to pounds", + "measurement_conversion" + ], + [ + "i need kilograms to milligrams", + "measurement_conversion" + ], + [ + "how do i convert a cup to ml", + "measurement_conversion" + ], + [ + "give me kilograms to pounds", + "measurement_conversion" + ], + [ + "convert 2 cups to liters", + "measurement_conversion" + ], + [ + "how many tablespoons is 5 teaspoons", + "measurement_conversion" + ], + [ + "how many teaspoons in one tablespoon", + "measurement_conversion" + ], + [ + "how many ounces is 2 and half cups", + "measurement_conversion" + ], + [ + "how many gallons is 50 liters", + "measurement_conversion" + ], + [ + "how many ounces in a liter", + "measurement_conversion" + ], + [ + "how many ounces in a cup", + "measurement_conversion" + ], + [ + "how many ml's are in a gallon", + "measurement_conversion" + ], + [ + "how many teaspoons in an ounce", + "measurement_conversion" + ], + [ + "how many teaspoons make up in 1 tablespoon", + "measurement_conversion" + ], + [ + "could you tell me the temperature of the ac", + "smart_home" + ], + [ + "the temperature of the ac, what is it at", + "smart_home" + ], + [ + "the ac, could you tell me the temperature", + "smart_home" + ], + [ + "do you know the temperature of the ac", + "smart_home" + ], + [ + "what is it at, the ac temperature", + "smart_home" + ], + [ + "i want you to turn the tv on", + "smart_home" + ], + [ + "i need you to turn the tv on now", + "smart_home" + ], + [ + "will you please turn the tv on", + "smart_home" + ], + [ + "turn on the tv please", + "smart_home" + ], + [ + "please turn the tv on", + "smart_home" + ], + [ + "can you verify the doors are locked", + "smart_home" + ], + [ + "i'd like the lights in the garage to be turned on", + "smart_home" + ], + [ + "engage all the door locks", + "smart_home" + ], + [ + "set all doors to locked", + "smart_home" + ], + [ + "confirm the doors are locked", + "smart_home" + ], + [ + "please turn on the hallway lights", + "smart_home" + ], + [ + "check if the doors are locked", + "smart_home" + ], + [ + "secure the doors", + "smart_home" + ], + [ + "see if all the doors are locked", + "smart_home" + ], + [ + "post the living room lights on", + "smart_home" + ], + [ + "by chance would it be possible to reserve me a hotel in afghanistan at the zoo for the 10th to the 15th", + "book_hotel" + ], + [ + "is it possible for a hotel to be booked by you for me in afghanistan at the zoo for the 10th to the 15th", + "book_hotel" + ], + [ + "could you book me a hotel in afghanistan at the zoo for the 10th to the 15th", + "book_hotel" + ], + [ + "could a hotel be booked for me in afghanistan at the zoo for the 10th to the 15th", + "book_hotel" + ], + [ + "can you reserve a hotel for myself a hotel in afghanistan at the zoo for the 10th to the 15th", + "book_hotel" + ], + [ + "i need to reserve a large room or suite for 2 couples for august 15th through august 18th in seattle", + "book_hotel" + ], + [ + "i need to book a hotel room or suite for 2 adults and 2 children in orlando for july 1st through 5th", + "book_hotel" + ], + [ + "i need a hotel room for 7 people in st louis for november 3rd through 5th", + "book_hotel" + ], + [ + "i need a suite that can accommodate 3 adults and 1 child in san diego for may 15th, 16th, and 17th", + "book_hotel" + ], + [ + "show me a hotel in boise that has positive reviews", + "book_hotel" + ], + [ + "i need a hotel with good reviews in baltimore", + "book_hotel" + ], + [ + "find hotels in baltimore that have positive reviews", + "book_hotel" + ], + [ + "show me a hotel that has good reviews in kansas city", + "book_hotel" + ], + [ + "i am looking for a hotel in new york city that has good reviews", + "book_hotel" + ], + [ + "could you book me a hotel in tampa from may 2 to may 4", + "book_hotel" + ], + [ + "help me book a place to stay from may 2 to may 4 in tampa", + "book_hotel" + ], + [ + "can you make a reservation in tampa from may 2 to may 4", + "book_hotel" + ], + [ + "i want to book a hotel in tampa from may 2 to may 4", + "book_hotel" + ], + [ + "make me a reservation in tampa from may 2 to may 4", + "book_hotel" + ], + [ + "book a motel in uptown from march 3 to march 4", + "book_hotel" + ], + [ + "talk to me about where im at right now", + "current_location" + ], + [ + "can you tell me where i am", + "current_location" + ], + [ + "you need all five answers", + "current_location" + ], + [ + "give me my gps coordinates", + "current_location" + ], + [ + "pass me my gps coordinates", + "current_location" + ], + [ + "i need to know what my gps coordinates are", + "current_location" + ], + [ + "can you give me my gps coordinates", + "current_location" + ], + [ + "so what are my current gps coordinates", + "current_location" + ], + [ + "can you find the exact address for where i am currently", + "current_location" + ], + [ + "tell me what to enter into my gps for my current location", + "current_location" + ], + [ + "please tell me the address of my current location", + "current_location" + ], + [ + "i need to know the name of my current location for the tow truck", + "current_location" + ], + [ + "what is this place", + "current_location" + ], + [ + "where exactly am i at the moment", + "current_location" + ], + [ + "where am i at currently", + "current_location" + ], + [ + "what location is this", + "current_location" + ], + [ + "what are my coordinates", + "current_location" + ], + [ + "where am i on gps", + "current_location" + ], + [ + "latitude and longitude please", + "current_location" + ], + [ + "location currently, where", + "current_location" + ], + [ + "what's is the current weather forecast", + "weather" + ], + [ + "tell me the forecast", + "weather" + ], + [ + "what's the weather like", + "weather" + ], + [ + "what's the forecast for the day", + "weather" + ], + [ + "i need to know the weather", + "weather" + ], + [ + "weather forecast please", + "weather" + ], + [ + "what's today's weather", + "weather" + ], + [ + "i need to know today's forecast", + "weather" + ], + [ + "is it going to rain tomorrow", + "weather" + ], + [ + "what is the weather outside", + "weather" + ], + [ + "what will be the weather tomorrow", + "weather" + ], + [ + "what is the weather in atlanta", + "weather" + ], + [ + "what is the weather in tokyo", + "weather" + ], + [ + "what's the humidity today", + "weather" + ], + [ + "what was the temperature yesterday", + "weather" + ], + [ + "what's today's high and low", + "weather" + ], + [ + "what's the weather today", + "weather" + ], + [ + "what's the chance of rain", + "weather" + ], + [ + "how cold is it in wisconsin today", + "weather" + ], + [ + "can you tell the temperature it will tomorrow", + "weather" + ], + [ + "how much money a year do i spend in taxes", + "taxes" + ], + [ + "how much am i being taxed", + "taxes" + ], + [ + "what are my tax costs", + "taxes" + ], + [ + "what kinds of taxes am i facing", + "taxes" + ], + [ + "what's my income tax", + "taxes" + ], + [ + "what's the tax bracket for my income", + "taxes" + ], + [ + "what does it look like i will be paying in federal taxes this year", + "taxes" + ], + [ + "what do i get taxed at my income level", + "taxes" + ], + [ + "what is my tax burden", + "taxes" + ], + [ + "can you tell me what my federal tax burden is", + "taxes" + ], + [ + "how much am i taxed each year", + "taxes" + ], + [ + "do you know how much i pay in taxes", + "taxes" + ], + [ + "how much do i pay in taxes every year", + "taxes" + ], + [ + "what's my federal tax this year", + "taxes" + ], + [ + "i need to know my tax rate", + "taxes" + ], + [ + "what is the tax rate that applies to me", + "taxes" + ], + [ + "how much do i need to pay in tax", + "taxes" + ], + [ + "what's my tax rate", + "taxes" + ], + [ + "tell me my tax rate", + "taxes" + ], + [ + "what amount do i owe in taxes", + "taxes" + ], + [ + "what is the minimum amount due on my cable bill", + "min_payment" + ], + [ + "what is the minimum payment", + "min_payment" + ], + [ + "whats the minimum payment on my electric bill", + "min_payment" + ], + [ + "how little can i pay on my phone bill", + "min_payment" + ], + [ + "what is the least i can pay towards my car bill", + "min_payment" + ], + [ + "what's the least i can pay towards this bill", + "min_payment" + ], + [ + "how little can i pay towards my car insurance", + "min_payment" + ], + [ + "is there a minimum amount accepted", + "min_payment" + ], + [ + "tell me the least i can pay", + "min_payment" + ], + [ + "what is the minimum payment for comcast", + "min_payment" + ], + [ + "what is the least i can pay on my mortgage bill", + "min_payment" + ], + [ + "what would be the least i could pay on this bill", + "min_payment" + ], + [ + "could you tell me my bill's minimum payment", + "min_payment" + ], + [ + "what's the least amount i can pay on this bill", + "min_payment" + ], + [ + "what's the minimum payment on my bill", + "min_payment" + ], + [ + "what's my bill's minimum payment", + "min_payment" + ], + [ + "i'd like to know my minimum payment please", + "min_payment" + ], + [ + "what's the minimum due for my electric bill", + "min_payment" + ], + [ + "lowest amount for cable bill", + "min_payment" + ], + [ + "what is the minimum payment due on my visa", + "min_payment" + ], + [ + "set up whisper mode", + "whisper_mode" + ], + [ + "how do i go to whisper mode", + "whisper_mode" + ], + [ + "change over to whisper mode", + "whisper_mode" + ], + [ + "i need to be out of whisper mode", + "whisper_mode" + ], + [ + "i'd like to be out of whisper mode", + "whisper_mode" + ], + [ + "take me out of whisper mode", + "whisper_mode" + ], + [ + "i want to be out of whisper mode", + "whisper_mode" + ], + [ + "please use your whispering voice; i need quiet", + "whisper_mode" + ], + [ + "let's try whisper mode", + "whisper_mode" + ], + [ + "use your whisper voice", + "whisper_mode" + ], + [ + "can you please whisper", + "whisper_mode" + ], + [ + "whisper to me", + "whisper_mode" + ], + [ + "make a switch to whisper mode", + "whisper_mode" + ], + [ + "whisper please", + "whisper_mode" + ], + [ + "i need quiet; use whisper", + "whisper_mode" + ], + [ + "go into whisper mode", + "whisper_mode" + ], + [ + "engage whisper mode", + "whisper_mode" + ], + [ + "enable whisper mode", + "whisper_mode" + ], + [ + "put whisper mode on", + "whisper_mode" + ], + [ + "please use whisper mode", + "whisper_mode" + ], + [ + "quit talking", + "cancel" + ], + [ + "stop please", + "cancel" + ], + [ + "scrap", + "cancel" + ], + [ + "whats the procedure to cancel it", + "cancel" + ], + [ + "stop it", + "cancel" + ], + [ + "please abort the current process", + "cancel" + ], + [ + "cancel it", + "cancel" + ], + [ + "can you cancel it", + "cancel" + ], + [ + "hey ai cancel it now", + "cancel" + ], + [ + "cancel", + "cancel" + ], + [ + "command cancel", + "cancel" + ], + [ + "please stop it", + "cancel" + ], + [ + "abort it", + "cancel" + ], + [ + "how to cancel", + "cancel" + ], + [ + "i repeat cancel", + "cancel" + ], + [ + "please don't talk any further", + "cancel" + ], + [ + "don't talk anymore", + "cancel" + ], + [ + "i need you to stop talking", + "cancel" + ], + [ + "rescind", + "cancel" + ], + [ + "eliminate", + "cancel" + ], + [ + "if i plan on travelling to this country, do i need a visa", + "international_visa" + ], + [ + "do i need a visa if i go there", + "international_visa" + ], + [ + "for going to that country, do i need a visa", + "international_visa" + ], + [ + "does one need a visa to go there", + "international_visa" + ], + [ + "if i travel there, do i need a visa", + "international_visa" + ], + [ + "does going to taiwan require me to get an international visa", + "international_visa" + ], + [ + "if i go to brazil, do i need to get an international visa", + "international_visa" + ], + [ + "should i go to okinawa, does it require an international visa", + "international_visa" + ], + [ + "is an international visa needed to go to cyprus", + "international_visa" + ], + [ + "i want to go to china but am not sure if i need an international visa", + "international_visa" + ], + [ + "should i get an internation visa to go to switzerland", + "international_visa" + ], + [ + "does south korea require an international visa", + "international_visa" + ], + [ + "will i need an international visa to go to madagascar", + "international_visa" + ], + [ + "is an international visa needed for canada", + "international_visa" + ], + [ + "do i need an international visa to get into italy", + "international_visa" + ], + [ + "if i go to uganda, do i need an international visa", + "international_visa" + ], + [ + "do i need a travel visa for the uk", + "international_visa" + ], + [ + "am i going to need a visa for traveling to canada", + "international_visa" + ], + [ + "does canada require a visa", + "international_visa" + ], + [ + "does the uk require a travel visa", + "international_visa" + ], + [ + "is it necessary to get a shot for travel to india", + "vaccines" + ], + [ + "are there any necessary shots required before travel to thailand", + "vaccines" + ], + [ + "do i have to get a shot for travel to taiwan", + "vaccines" + ], + [ + "are shots required before traveling to brazil", + "vaccines" + ], + [ + "can i travel to south africa without getting a shot", + "vaccines" + ], + [ + "what shots are required to visit australia", + "vaccines" + ], + [ + "do i need any vaccines before traveling to brazil", + "vaccines" + ], + [ + "what shots do i need before going to africa", + "vaccines" + ], + [ + "do i need to get any shots before volunteering in the congo", + "vaccines" + ], + [ + "must i have shots before i take a trip to canada", + "vaccines" + ], + [ + "do i need to get any shots before travelling to australia", + "vaccines" + ], + [ + "should i get shots if i'm going to go to thailand", + "vaccines" + ], + [ + "do i need to get any shots before i go to brazil", + "vaccines" + ], + [ + "do i need to get any shots before visiting family in seattle", + "vaccines" + ], + [ + "do you need shots before going to russia", + "vaccines" + ], + [ + "is a shot required before traveling to mexico", + "vaccines" + ], + [ + "do i need shots before traveling to mexico", + "vaccines" + ], + [ + "do i have to get shots to enter cuba", + "vaccines" + ], + [ + "do i need to have any shots to visit chile", + "vaccines" + ], + [ + "will ecuador require proof of any shots for me to go there", + "vaccines" + ], + [ + "how many vacation days have i saved up", + "pto_balance" + ], + [ + "how many vacation days do i have at my disposal", + "pto_balance" + ], + [ + "how many hours of vacation have i saved up", + "pto_balance" + ], + [ + "how many vacation days have i accumulated", + "pto_balance" + ], + [ + "how many pto days are available", + "pto_balance" + ], + [ + "how much vacation do i have saved", + "pto_balance" + ], + [ + "how much vacation have i earned", + "pto_balance" + ], + [ + "what number of pto days do i have left", + "pto_balance" + ], + [ + "how many weeks of vacation do i have", + "pto_balance" + ], + [ + "how many days of vacation do i have saved", + "pto_balance" + ], + [ + "i need to know how many pto days are left", + "pto_balance" + ], + [ + "whats the number of pto days i have to my availability", + "pto_balance" + ], + [ + "how many pto days are in my possesion", + "pto_balance" + ], + [ + "what number of vacation days do i have available", + "pto_balance" + ], + [ + "what number of vacation days do i have at my disposal", + "pto_balance" + ], + [ + "could you let me know how many pto days do i have left", + "pto_balance" + ], + [ + "could you tell me how many pto days do i have left", + "pto_balance" + ], + [ + "can you let me know how many pto days do i have left", + "pto_balance" + ], + [ + "can you tell me how many pto days do i have left", + "pto_balance" + ], + [ + "what is the amount of time i can request off in the coming year", + "pto_balance" + ], + [ + "where is the closest subway entrance to me to go to brooklyn", + "directions" + ], + [ + "where is the closest red lobster to my location right now, which is 5th avenue", + "directions" + ], + [ + "i am on main street now, where is the closest bus stop to me", + "directions" + ], + [ + "i am in downtown austin where is the nearest airport", + "directions" + ], + [ + "where is the closet bus stop to go to downtown dallas", + "directions" + ], + [ + "where is the nearest walmart", + "directions" + ], + [ + "how do i get to the movie theater by bus", + "directions" + ], + [ + "how do i get to the bus stop on foot", + "directions" + ], + [ + "how do i get to new york by bus", + "directions" + ], + [ + "how do i get to the train station by bus", + "directions" + ], + [ + "how do i get to the library by foot", + "directions" + ], + [ + "how do i get to the bowling alley by foot", + "directions" + ], + [ + "how do i get to the fine arts center by foot", + "directions" + ], + [ + "where is the closest target", + "directions" + ], + [ + "how do i get to the grocery store by bus", + "directions" + ], + [ + "how do i get to san fransisco by bus", + "directions" + ], + [ + "where can i find the nearest dollar store", + "directions" + ], + [ + "how do i get to the court house on foot", + "directions" + ], + [ + "where is the nearest gas station", + "directions" + ], + [ + "where is the closest park", + "directions" + ], + [ + "spell: dessert", + "spelling" + ], + [ + "how do you spell dessert", + "spelling" + ], + [ + "tell me how to spell the word dessert", + "spelling" + ], + [ + "what is the correct spelling of the word: dessert", + "spelling" + ], + [ + "how to spell: dessert", + "spelling" + ], + [ + "can you spell the word umbrella for me", + "spelling" + ], + [ + "please spell the word umbrella", + "spelling" + ], + [ + "please tell me how to spell umbrella", + "spelling" + ], + [ + "how do you spell umbrella", + "spelling" + ], + [ + "how is the word umbrella spelled", + "spelling" + ], + [ + "how is doctor spelled", + "spelling" + ], + [ + "tell me how to spell doctor", + "spelling" + ], + [ + "please spell doctor", + "spelling" + ], + [ + "how to spell doctor", + "spelling" + ], + [ + "spell doctor", + "spelling" + ], + [ + "malignant is spelled how exactly", + "spelling" + ], + [ + "tell me how to spell malignant", + "spelling" + ], + [ + "what is the correct spelling for malignant", + "spelling" + ], + [ + "how would i go about spelling malignant", + "spelling" + ], + [ + "how should i spell malignant", + "spelling" + ], + [ + "how ya doin", + "greeting" + ], + [ + "how ya been", + "greeting" + ], + [ + "hows are ya", + "greeting" + ], + [ + "heyo", + "greeting" + ], + [ + "are you good", + "greeting" + ], + [ + "how is it going my friend", + "greeting" + ], + [ + "how you are", + "greeting" + ], + [ + "tell me how are you", + "greeting" + ], + [ + "hi what's up", + "greeting" + ], + [ + "hey what's up", + "greeting" + ], + [ + "hey how's it going", + "greeting" + ], + [ + "hi, ai", + "greeting" + ], + [ + "good morning, ai", + "greeting" + ], + [ + "how've you been", + "greeting" + ], + [ + "wassup", + "greeting" + ], + [ + "hey", + "greeting" + ], + [ + "hiya", + "greeting" + ], + [ + "how's it hanging", + "greeting" + ], + [ + "hi", + "greeting" + ], + [ + "hello", + "greeting" + ], + [ + "factory settings restoration", + "reset_settings" + ], + [ + "i need you to reset to your factor settings", + "reset_settings" + ], + [ + "can you reset to factor settings", + "reset_settings" + ], + [ + "i want you to reset to factory settings", + "reset_settings" + ], + [ + "i want to restore your factory settings", + "reset_settings" + ], + [ + "switch back to factory settings", + "reset_settings" + ], + [ + "i want you to go back to factory settings", + "reset_settings" + ], + [ + "restore factory settings", + "reset_settings" + ], + [ + "i want a clean bootup to factory settings", + "reset_settings" + ], + [ + "change back to factory settings", + "reset_settings" + ], + [ + "reset to factory settings", + "reset_settings" + ], + [ + "go back to default settings", + "reset_settings" + ], + [ + "now i'd like for you to return to the original settings", + "reset_settings" + ], + [ + "can you now please go back to the original settings", + "reset_settings" + ], + [ + "please revert to the original settings", + "reset_settings" + ], + [ + "now restore the original settings", + "reset_settings" + ], + [ + "configure this to factory settings", + "reset_settings" + ], + [ + "make my settings go back to their factory settings", + "reset_settings" + ], + [ + "set this to my factory settings", + "reset_settings" + ], + [ + "change to factory settings", + "reset_settings" + ], + [ + "what may i call you", + "what_is_your_name" + ], + [ + "what was your name again", + "what_is_your_name" + ], + [ + "your name is", + "what_is_your_name" + ], + [ + "whats your name by the way", + "what_is_your_name" + ], + [ + "what's your name if i may ask", + "what_is_your_name" + ], + [ + "what is your name by chance", + "what_is_your_name" + ], + [ + "what is your names", + "what_is_your_name" + ], + [ + "what exactly is your name", + "what_is_your_name" + ], + [ + "what's the name i should use to talk to you", + "what_is_your_name" + ], + [ + "what is your given name", + "what_is_your_name" + ], + [ + "what's the name you like to be called", + "what_is_your_name" + ], + [ + "what's the name you were given", + "what_is_your_name" + ], + [ + "can i ask your name", + "what_is_your_name" + ], + [ + "do you mind if i ask your name", + "what_is_your_name" + ], + [ + "do you have a nickname", + "what_is_your_name" + ], + [ + "what do you go by", + "what_is_your_name" + ], + [ + "what do you call yourself", + "what_is_your_name" + ], + [ + "i'd like to know your name", + "what_is_your_name" + ], + [ + "your name please", + "what_is_your_name" + ], + [ + "can i have your name", + "what_is_your_name" + ], + [ + "how do i set up direct deposit for my first national account", + "direct_deposit" + ], + [ + "how do i set up direct deposit for my fifth third account", + "direct_deposit" + ], + [ + "how do i set up direct deposit for my cefcu account", + "direct_deposit" + ], + [ + "how do i set up direct deposit for my old national account", + "direct_deposit" + ], + [ + "how do i set up direct deposit for my bank of america account", + "direct_deposit" + ], + [ + "what might i need to do to direct deposit my paycheck", + "direct_deposit" + ], + [ + "what information do i need to direct deposit my paycheck", + "direct_deposit" + ], + [ + "how do i go about getting direct deposit in my usaa account", + "direct_deposit" + ], + [ + "does my td ameritrade checking account take direct deposit", + "direct_deposit" + ], + [ + "if i want to direct deposit my paycheck, what info do i need", + "direct_deposit" + ], + [ + "direct deposit my paycheck to my capital one account", + "direct_deposit" + ], + [ + "i'd like direct deposit to my chase bank account", + "direct_deposit" + ], + [ + "i want to set up direct deposit to my charles schwab account", + "direct_deposit" + ], + [ + "how do i go about setting up paycheck direct deposit", + "direct_deposit" + ], + [ + "link up my paycheck for direct deposit to my account at chase", + "direct_deposit" + ], + [ + "please assist me in linking my chase account to direct deposit for my paycheck", + "direct_deposit" + ], + [ + "please show me how to set up my paycheck for direct deposit to my chase account", + "direct_deposit" + ], + [ + "tell me the easiest way to set up direct deposit of my paycheck to my chase account", + "direct_deposit" + ], + [ + "help me get my paycheck set up for direct deposit to my chase account", + "direct_deposit" + ], + [ + "how can i learn how to use direct deposit", + "direct_deposit" + ], + [ + "what kind of interest can i expect with my chase account", + "interest_rate" + ], + [ + "how much interest am i getting in my citibank savings", + "interest_rate" + ], + [ + "how much interest do i get on my citizen's savings account", + "interest_rate" + ], + [ + "what kind of interest am i getting from my bank of america checking", + "interest_rate" + ], + [ + "what's my interest rate with my capital one account", + "interest_rate" + ], + [ + "what is walker bank paying me in interest on my account", + "interest_rate" + ], + [ + "where do i go to get private client account's interest rate", + "interest_rate" + ], + [ + "what interest rate am i getting currently from oak bank", + "interest_rate" + ], + [ + "how much interest am i getting percentage wise from chase", + "interest_rate" + ], + [ + "what is my interest rate for my scotiabank account", + "interest_rate" + ], + [ + "where can i find my voca account's interest rate", + "interest_rate" + ], + [ + "how can i find the current interest rate for my account ending in 9012", + "interest_rate" + ], + [ + "what interest rate is us bank giving me on my acount", + "interest_rate" + ], + [ + "where do i find the interest rate for my platinum account", + "interest_rate" + ], + [ + "where can i locate the pnc account's interest rate", + "interest_rate" + ], + [ + "what is the interest rate on my auto loan", + "interest_rate" + ], + [ + "how much is the interest rate on my home equity loan", + "interest_rate" + ], + [ + "tell me what the interest rate is on my personal loan through chase", + "interest_rate" + ], + [ + "whats the amount of interest i'm paying on my mortgage", + "interest_rate" + ], + [ + "what is the interest rate at pnc", + "interest_rate" + ], + [ + "how do i change my credit limit", + "credit_limit_change" + ], + [ + "how can up my credit limit", + "credit_limit_change" + ], + [ + "how can i make a change to my credit limit", + "credit_limit_change" + ], + [ + "can i make a change to my credit limit", + "credit_limit_change" + ], + [ + "how do i increse my credit limit", + "credit_limit_change" + ], + [ + "is there a way to increase the limit of my credit to 5000 dollars", + "credit_limit_change" + ], + [ + "i would like to have my credit increased to 5000 dollars", + "credit_limit_change" + ], + [ + "i want to increase my credit limit to 5000 dollars", + "credit_limit_change" + ], + [ + "could my credit be increased to 5000 dollars", + "credit_limit_change" + ], + [ + "i need my credit limit changed", + "credit_limit_change" + ], + [ + "the credit limit i have needs to be changed", + "credit_limit_change" + ], + [ + "can you help me change my credit limit", + "credit_limit_change" + ], + [ + "my credit limit needs to me changed", + "credit_limit_change" + ], + [ + "i would like my credit limit increased to 5000 dollars", + "credit_limit_change" + ], + [ + "i would like to change my credit limit", + "credit_limit_change" + ], + [ + "can i increase my credit limit", + "credit_limit_change" + ], + [ + "raise my credit limit", + "credit_limit_change" + ], + [ + "increase my credit limit", + "credit_limit_change" + ], + [ + "i'd like to increase my credit limit", + "credit_limit_change" + ], + [ + "can you help me increase my credit limit", + "credit_limit_change" + ], + [ + "do you have hobbies", + "what_are_your_hobbies" + ], + [ + "tell me about your hobbies", + "what_are_your_hobbies" + ], + [ + "are you involved in hobbies", + "what_are_your_hobbies" + ], + [ + "what recreational activities do you enjoy", + "what_are_your_hobbies" + ], + [ + "what do you do as a hobby", + "what_are_your_hobbies" + ], + [ + "what do you like to do in your free time", + "what_are_your_hobbies" + ], + [ + "what are your hobbies", + "what_are_your_hobbies" + ], + [ + "what hobbies do you have", + "what_are_your_hobbies" + ], + [ + "when you have free time, what do you do", + "what_are_your_hobbies" + ], + [ + "what do you do in your spare time siri", + "what_are_your_hobbies" + ], + [ + "what hobbies do you have alexa", + "what_are_your_hobbies" + ], + [ + "what are your hobbies siri", + "what_are_your_hobbies" + ], + [ + "what do you do for fun alexa", + "what_are_your_hobbies" + ], + [ + "what activities do you enjoy", + "what_are_your_hobbies" + ], + [ + "what do you do with your free time", + "what_are_your_hobbies" + ], + [ + "what are you interested in", + "what_are_your_hobbies" + ], + [ + "what are you\u2019re hobbies, ai", + "what_are_your_hobbies" + ], + [ + "what do you find fun", + "what_are_your_hobbies" + ], + [ + "which hobbies do you like", + "what_are_your_hobbies" + ], + [ + "what are your interests", + "what_are_your_hobbies" + ], + [ + "can you find me a round trip flight from denver international to new york international on the 3rd through the 7th", + "book_flight" + ], + [ + "can you look for a denver international to new york international round trip flight for the 5th though 8th", + "book_flight" + ], + [ + "can you find me a flight from denver international to new york international on the 4th for under 700 dollars", + "book_flight" + ], + [ + "for under 700 i need a flight from denver international to new york international on the 3rd", + "book_flight" + ], + [ + "i need a flight from denver international to new york international round trip for the 4th though the 8th", + "book_flight" + ], + [ + "i want to find a round trip flight from denver international to new york international on the 8th to the 16th", + "book_flight" + ], + [ + "i need a flight from denver international to new york for under 700 on the 3rd", + "book_flight" + ], + [ + "i want to find a flight for under 700 on the 4th from denver international to new york international", + "book_flight" + ], + [ + "on the third i am looking for a flight for under 700 from denver international to new york international", + "book_flight" + ], + [ + "i need a flight from the 3rd to the 7th round rip from denver international to new york international", + "book_flight" + ], + [ + "find me a flight from philly to atl for june 5th to 8th", + "book_flight" + ], + [ + "get me flight from philly to atlanta on june 5th i'm coming back june 8th", + "book_flight" + ], + [ + "book a flight from philadelphia to atlanta on june 5th and returning on june 8th", + "book_flight" + ], + [ + "i need an airline ticket for a round trip flight from philadelphia to atlanta for the dates of june 5 - 8", + "book_flight" + ], + [ + "need airplane ridge from philadelphia to atlanta leaving on the 5th of june and returning on the 8th of june", + "book_flight" + ], + [ + "i'm looking for a back and forth flight from lax to portland for w to sunday", + "book_flight" + ], + [ + "i'm exploring a possible cycle flight from yyz to dublin for w to aug two", + "book_flight" + ], + [ + "i'm seeking a full circle flight from msy to msp for w to june 7", + "book_flight" + ], + [ + "i'm searching for a 2-way flight from yqg to heathrow for w to memorial day", + "book_flight" + ], + [ + "i'm striving to find a 2-way flight from jfk to dtw for w to july 3", + "book_flight" + ], + [ + "will you please read the things on my shopping list", + "shopping_list" + ], + [ + "what is on my shopping list", + "shopping_list" + ], + [ + "can you read the things to me that are on my shopping list", + "shopping_list" + ], + [ + "can you read the things on my shopping list", + "shopping_list" + ], + [ + "is it possible for you to read the things on my shopping list", + "shopping_list" + ], + [ + "did i add salt to my shopping list", + "shopping_list" + ], + [ + "do i have toothpaste on my shopping list", + "shopping_list" + ], + [ + "is there lettuce on my shopping list", + "shopping_list" + ], + [ + "did i include butter in my shopping list", + "shopping_list" + ], + [ + "did i put elbow noodles on the shopping list", + "shopping_list" + ], + [ + "did i forget to put protein shakes on my shopping list", + "shopping_list" + ], + [ + "do i have butter on my list", + "shopping_list" + ], + [ + "is waffles on my list for shopping", + "shopping_list" + ], + [ + "do i already have cereal on my shopping list", + "shopping_list" + ], + [ + "did i remember to add milk to my shopping list", + "shopping_list" + ], + [ + "check my shopping list", + "shopping_list" + ], + [ + "read my shopping list", + "shopping_list" + ], + [ + "shopping list", + "shopping_list" + ], + [ + "what do i need to buy", + "shopping_list" + ], + [ + "did i remember to put eggs on my shopping list", + "shopping_list" + ], + [ + "send a text to joe", + "text" + ], + [ + "i need to text joe", + "text" + ], + [ + "text joe", + "text" + ], + [ + "send joe a text", + "text" + ], + [ + "text john with the message 'where are you", + "text" + ], + [ + "please send a text to danny saying that i'm running late", + "text" + ], + [ + "text mom saying happy birthday", + "text" + ], + [ + "text mollie saying 'i am on my way", + "text" + ], + [ + "i need you to text mickey saying 'can we reschedule", + "text" + ], + [ + "send message to carl, you suck", + "text" + ], + [ + "let carl know that he sucks", + "text" + ], + [ + "message carl, you suck", + "text" + ], + [ + "tell carl that he sucks", + "text" + ], + [ + "inform carl that he is an awful human being", + "text" + ], + [ + "send robert a text from me telling him okay", + "text" + ], + [ + "i need leslie to be texted saying have a good day", + "text" + ], + [ + "i want a text sent to bob saying i will be late", + "text" + ], + [ + "write a text to kim saying no", + "text" + ], + [ + "send a text to mom saying i'm on my way", + "text" + ], + [ + "robbie needs to know aboutthis so would you text robbie to let them know", + "text" + ], + [ + "how much is my kill bill bill for", + "bill_balance" + ], + [ + "what is the amount i owe on my phone", + "bill_balance" + ], + [ + "what is the total of my repair bill", + "bill_balance" + ], + [ + "how much is due on the gas bill", + "bill_balance" + ], + [ + "what do i owe on telephone and cable bill", + "bill_balance" + ], + [ + "how much do i have left to pay on my server and domain", + "bill_balance" + ], + [ + "what's the amount due on my vet and vehicle registration bills", + "bill_balance" + ], + [ + "what do my bills look like for amazon and netflix", + "bill_balance" + ], + [ + "how much do i have to pay on taxes and cable", + "bill_balance" + ], + [ + "how much do i owe on all of my bills", + "bill_balance" + ], + [ + "how much do i have to pay for my shell gas card bill", + "bill_balance" + ], + [ + "what is the total of all my bills combined", + "bill_balance" + ], + [ + "can you tell me how much i need to pay on my bills this month", + "bill_balance" + ], + [ + "how much is my bill for capital one", + "bill_balance" + ], + [ + "what is the total amount i am going to have to pay in bills this month", + "bill_balance" + ], + [ + "how much do i have to pay on my amazon card this month", + "bill_balance" + ], + [ + "how much do my bills cost this month", + "bill_balance" + ], + [ + "how much is my xfinity cable bill", + "bill_balance" + ], + [ + "what is the amount i owe to clay electric", + "bill_balance" + ], + [ + "could you tell me the amount owed on gas and electric", + "bill_balance" + ], + [ + "give my location to stan", + "share_location" + ], + [ + "i'd like to share my location with stephanie", + "share_location" + ], + [ + "i would like brenda to have my location", + "share_location" + ], + [ + "let lisa know where i am now", + "share_location" + ], + [ + "i want david to know where i'm at", + "share_location" + ], + [ + "can you share my location with roger", + "share_location" + ], + [ + "can you send my exact location to laura", + "share_location" + ], + [ + "share my location with apple", + "share_location" + ], + [ + "share my location with google", + "share_location" + ], + [ + "send mike my exact location", + "share_location" + ], + [ + "send my current location to steve, please", + "share_location" + ], + [ + "steve needs to know my location", + "share_location" + ], + [ + "i'd like to send steve my location", + "share_location" + ], + [ + "share my location with steve", + "share_location" + ], + [ + "i need to send my location to my friend steve", + "share_location" + ], + [ + "give arianna my current location", + "share_location" + ], + [ + "share with current location with ben", + "share_location" + ], + [ + "show my gps location to brittany", + "share_location" + ], + [ + "give my gps location to jason", + "share_location" + ], + [ + "share my gps with tom", + "share_location" + ], + [ + "cash in my credit card rewards", + "redeem_rewards" + ], + [ + "convert my credit card points to cash", + "redeem_rewards" + ], + [ + "cash in my credit card points", + "redeem_rewards" + ], + [ + "where i can use credit card points", + "redeem_rewards" + ], + [ + "redeem credit card points", + "redeem_rewards" + ], + [ + "how to use credit card points", + "redeem_rewards" + ], + [ + "what can i buy with credit card points", + "redeem_rewards" + ], + [ + "please redeem my credit card points", + "redeem_rewards" + ], + [ + "redeem my credit card rewards into my account", + "redeem_rewards" + ], + [ + "help with credit card points", + "redeem_rewards" + ], + [ + "what should i use the points from my credit card on", + "redeem_rewards" + ], + [ + "how do i cash in credit card points", + "redeem_rewards" + ], + [ + "i have credit card points, how do i redeem them", + "redeem_rewards" + ], + [ + "where do i redeem my credit card points", + "redeem_rewards" + ], + [ + "i would like to find out how to cash out cred card points", + "redeem_rewards" + ], + [ + "how to cash in visa card rewards", + "redeem_rewards" + ], + [ + "how can i cash in my visa rewards", + "redeem_rewards" + ], + [ + "how do you get your visa card rewards", + "redeem_rewards" + ], + [ + "how do i get rewards from my visa card", + "redeem_rewards" + ], + [ + "how do i get my rewards from my visa card", + "redeem_rewards" + ], + [ + "let me hear the song sympathy for the devil", + "play_music" + ], + [ + "please start the song penny lane", + "play_music" + ], + [ + "i want to hear satisfaction", + "play_music" + ], + [ + "fetch the song smells like teen spirit and play it", + "play_music" + ], + [ + "i am in the mood to listen to mack the knife", + "play_music" + ], + [ + "can you play the song that sounds like thun thun thun", + "play_music" + ], + [ + "play the song that goes like i like to move it, move it", + "play_music" + ], + [ + "can you play the song amazing grace and it goes like this, amazing grace how sweet the sound", + "play_music" + ], + [ + "please play the song that goes like america the beautiful", + "play_music" + ], + [ + "please play the song that goes like this: jingle bells jingle bells jingle all the way", + "play_music" + ], + [ + "can you play music by the beatles", + "play_music" + ], + [ + "can you play the beatles", + "play_music" + ], + [ + "are you able to play beatles songs", + "play_music" + ], + [ + "can i hear the beatles", + "play_music" + ], + [ + "do you have any of the beatles music", + "play_music" + ], + [ + "can you play the song that starts with doo doo doo", + "play_music" + ], + [ + "can i hear the song that starts out doo doo doo", + "play_music" + ], + [ + "please play me the song that starts out with doo doo doo", + "play_music" + ], + [ + "please play the song that goes doo doo doo", + "play_music" + ], + [ + "can you play the song that goes doo doo doo", + "play_music" + ], + [ + "you can remove the field trip from my calendar for march 12, 2019", + "calendar_update" + ], + [ + "you can remove the wedding from my calendar for march 12, 2019", + "calendar_update" + ], + [ + "you can remove the play date from my calendar for feb 18, 2019", + "calendar_update" + ], + [ + "you can remove the dinner party from my calendar for january 21, 2019", + "calendar_update" + ], + [ + "you can remove the brithday party from my calendar fpr january 15, 2019", + "calendar_update" + ], + [ + "put cancel abc on my calendar for next thursday", + "calendar_update" + ], + [ + "i need to add iep meeting to my calendar on april 15th", + "calendar_update" + ], + [ + "add my next doctor visit to my calendar", + "calendar_update" + ], + [ + "add swimming to my calendar today", + "calendar_update" + ], + [ + "i have an appointment on the 5th put it on for 5pm", + "calendar_update" + ], + [ + "for friday, add a doctor's appointment to my calendar", + "calendar_update" + ], + [ + "can you add a doctor's appointment to friday's calendar", + "calendar_update" + ], + [ + "add to my friday calendar a doctor's appointment", + "calendar_update" + ], + [ + "add a doctor's appointment to my calendar for friday", + "calendar_update" + ], + [ + "add to friday's calendar a doctor's appointment", + "calendar_update" + ], + [ + "mark my calendar that i will be meeting steven on march 5", + "calendar_update" + ], + [ + "on the 22nd of this month, we need to clear our calendar so we can leave it open for mark to visit", + "calendar_update" + ], + [ + "can you remove that event from my calendar, please", + "calendar_update" + ], + [ + "can you remove this event from my calendar", + "calendar_update" + ], + [ + "can you remove this event from my calendar, please", + "calendar_update" + ], + [ + "are you secretly real", + "are_you_a_bot" + ], + [ + "i would like to know if you are a robot", + "are_you_a_bot" + ], + [ + "you could tell me if you were real", + "are_you_a_bot" + ], + [ + "i would like to know if you are an artificial intelligence being", + "are_you_a_bot" + ], + [ + "do you consider yourself an artificial intelligence being", + "are_you_a_bot" + ], + [ + "can you act and think like a real person", + "are_you_a_bot" + ], + [ + "could you be a real person", + "are_you_a_bot" + ], + [ + "clear something up, are you a robot", + "are_you_a_bot" + ], + [ + "are you a human being or a computer", + "are_you_a_bot" + ], + [ + "can you tell me if you are a real live person", + "are_you_a_bot" + ], + [ + "am i speaking with a real person", + "are_you_a_bot" + ], + [ + "are you an actual human", + "are_you_a_bot" + ], + [ + "would you be classified as a bot", + "are_you_a_bot" + ], + [ + "would it be accurate to call you a bot", + "are_you_a_bot" + ], + [ + "would you say you are a bot", + "are_you_a_bot" + ], + [ + "i am curious to know if you are a bot", + "are_you_a_bot" + ], + [ + "are you an actual live person", + "are_you_a_bot" + ], + [ + "please tell me if you are a bot", + "are_you_a_bot" + ], + [ + "are you a robot", + "are_you_a_bot" + ], + [ + "can you tell me what kind of life form you are", + "are_you_a_bot" + ], + [ + "what is the gas level in my gas tank", + "gas" + ], + [ + "is my gas tank full or empty", + "gas" + ], + [ + "do i have enough gas to take me home", + "gas" + ], + [ + "should i a gas refill for my car at the next gas station", + "gas" + ], + [ + "can you inform me of my gas amount", + "gas" + ], + [ + "calculate the amount of gas i currently have", + "gas" + ], + [ + "how many gallons of gas are in my car", + "gas" + ], + [ + "what amount of gas do i have left", + "gas" + ], + [ + "how much gas does my car currently have", + "gas" + ], + [ + "how much gas do i have", + "gas" + ], + [ + "how much fuel do i have left", + "gas" + ], + [ + "what's left in the tank", + "gas" + ], + [ + "how much gas do i have left", + "gas" + ], + [ + "how long before i'm on e", + "gas" + ], + [ + "do i have enough fuel to get to buffalo", + "gas" + ], + [ + "how much gas do i need to get to buffalo", + "gas" + ], + [ + "do i have enough gas to get to buffalo", + "gas" + ], + [ + "how much fuel do i need to get to buffalo", + "gas" + ], + [ + "how much gas do you have will you make it to jackson", + "gas" + ], + [ + "how much gas does it take to get to jackson", + "gas" + ], + [ + "what is the date that my visa card expires", + "expiration_date" + ], + [ + "tell me the expiration date on my visa credit card please", + "expiration_date" + ], + [ + "tell me when my credit card from visa expires please", + "expiration_date" + ], + [ + "do you know the expiration date that is on my visa card", + "expiration_date" + ], + [ + "can you find the expiration date and tell me what it is that is on my visa credit card", + "expiration_date" + ], + [ + "will i need to renew my credit card soon", + "expiration_date" + ], + [ + "when will my visa expire", + "expiration_date" + ], + [ + "will my debit card go bad any time soon", + "expiration_date" + ], + [ + "what is my expiration data for my card", + "expiration_date" + ], + [ + "when will my card go rotten", + "expiration_date" + ], + [ + "will my card expire on a certain month", + "expiration_date" + ], + [ + "when is my cards end month", + "expiration_date" + ], + [ + "what month does my card stop working", + "expiration_date" + ], + [ + "my card will work until what month", + "expiration_date" + ], + [ + "what month does my card close", + "expiration_date" + ], + [ + "when do i need a new credit card", + "expiration_date" + ], + [ + "in what month does my credit card expire", + "expiration_date" + ], + [ + "when is my credit card set to expire", + "expiration_date" + ], + [ + "i need to know when my credit card is going to expire", + "expiration_date" + ], + [ + "tell me when my credit card expires", + "expiration_date" + ], + [ + "add this song to travel", + "update_playlist" + ], + [ + "add song to media playlist", + "update_playlist" + ], + [ + "add song to my hype playlist", + "update_playlist" + ], + [ + "put song in springtime playlist", + "update_playlist" + ], + [ + "put we are the champions to my running playlist", + "update_playlist" + ], + [ + "put on bended knee on my reflection playlist", + "update_playlist" + ], + [ + "please place this track on my driving mix", + "update_playlist" + ], + [ + "please add this song to my morning job playlist", + "update_playlist" + ], + [ + "i'd like to augment my workout playlist with this tune", + "update_playlist" + ], + [ + "i'd like to add this song to my relaxation playlist", + "update_playlist" + ], + [ + "add games without frontiers to my week 5 playlist", + "update_playlist" + ], + [ + "i want to put thank you on my playlist called relaxing jams", + "update_playlist" + ], + [ + "can you put the currently playing track on my zen playlist", + "update_playlist" + ], + [ + "add welcome to the jungle to my workout mix", + "update_playlist" + ], + [ + "i want you to add the song i listen to to my summer playlist", + "update_playlist" + ], + [ + "add what i listen to to my car ride playlist", + "update_playlist" + ], + [ + "please add what i listen to to my lolla playlist", + "update_playlist" + ], + [ + "can you help me add the song i listen to to my clutch playlist", + "update_playlist" + ], + [ + "add what i am listening to to my road trip playlist", + "update_playlist" + ], + [ + "put this in my workout playlist", + "update_playlist" + ], + [ + "i would like to cancel my reservation for nenuco's restaurant to x- tapas", + "cancel_reservation" + ], + [ + "i need my reservation to be cancelled for nugget to xiomara's restaurant", + "cancel_reservation" + ], + [ + "i need to cancel my reservation for new york to xai varanda", + "cancel_reservation" + ], + [ + "i want to cancel my reservation for network to xaga such", + "cancel_reservation" + ], + [ + "forget reservation at longhorn for 4", + "cancel_reservation" + ], + [ + "forget reservation at oyster bar for tonight", + "cancel_reservation" + ], + [ + "cancel my reservation at osteria for our party", + "cancel_reservation" + ], + [ + "scrap reservation at 4 for red robin", + "cancel_reservation" + ], + [ + "cancel reservation at eight for the group", + "cancel_reservation" + ], + [ + "i'd like to cancel my reservation for 5 at hoss's steak house", + "cancel_reservation" + ], + [ + "please cancel my reservation at red lobster for 6", + "cancel_reservation" + ], + [ + "i need to cancel my reservation for 2 at franklin's grille", + "cancel_reservation" + ], + [ + "cancel that reservation for 8 at barney's", + "cancel_reservation" + ], + [ + "nix that reservation for 4 at strip house", + "cancel_reservation" + ], + [ + "undo my reservation for 5 at the loft", + "cancel_reservation" + ], + [ + "i no longer want my reservation for 5 at the loft cancel it please", + "cancel_reservation" + ], + [ + "hey siri, please cancel my reservation at the loft for 5", + "cancel_reservation" + ], + [ + "i don't need my reservation for 5 at the loft please cancel it", + "cancel_reservation" + ], + [ + "cancel my reservation for 5 at the loft", + "cancel_reservation" + ], + [ + "carla doesn't want her olive garden reservation anymore", + "cancel_reservation" + ], + [ + "what's the funniest thing you've got", + "tell_joke" + ], + [ + "let me hear something funny", + "tell_joke" + ], + [ + "i want to hear anything you have that's funny", + "tell_joke" + ], + [ + "i want to hear something hilarious", + "tell_joke" + ], + [ + "tell me your funniest joke", + "tell_joke" + ], + [ + "do you have any funny jokes", + "tell_joke" + ], + [ + "give me your best joke", + "tell_joke" + ], + [ + "tell my something funny", + "tell_joke" + ], + [ + "tell me something to make me laugh", + "tell_joke" + ], + [ + "i'm in the mood for a joke", + "tell_joke" + ], + [ + "could you tell me a good joke", + "tell_joke" + ], + [ + "do you have any funny jokes you can tell", + "tell_joke" + ], + [ + "have you heard any great jokes lately", + "tell_joke" + ], + [ + "do you know any good jokes you would like to share", + "tell_joke" + ], + [ + "what sort of jokes do you know", + "tell_joke" + ], + [ + "i want to hear doctor jokes", + "tell_joke" + ], + [ + "do you know any jokes about librarians", + "tell_joke" + ], + [ + "tell me a funny joke about men", + "tell_joke" + ], + [ + "can you tell me a joke about a lawyer", + "tell_joke" + ], + [ + "i want to hear jokes about toddlers", + "tell_joke" + ], + [ + "can i start calling you dave", + "change_ai_name" + ], + [ + "i want to change your name to sarah", + "change_ai_name" + ], + [ + "i want to call you maggie", + "change_ai_name" + ], + [ + "can i change you name to gretchen", + "change_ai_name" + ], + [ + "i'd like to call you alex", + "change_ai_name" + ], + [ + "can i call you adam instead of the current name", + "change_ai_name" + ], + [ + "i will now call you adam instead of your old name", + "change_ai_name" + ], + [ + "will you respond to adam instead of the current name", + "change_ai_name" + ], + [ + "i want to change your name to adam", + "change_ai_name" + ], + [ + "i want to start calling you adam", + "change_ai_name" + ], + [ + "i want your name to be gerry", + "change_ai_name" + ], + [ + "i want your name to be henry", + "change_ai_name" + ], + [ + "i want your name to be john", + "change_ai_name" + ], + [ + "make your name jake", + "change_ai_name" + ], + [ + "make your name steve", + "change_ai_name" + ], + [ + "i would like to change your name to fred", + "change_ai_name" + ], + [ + "i think i want your name changed to fred", + "change_ai_name" + ], + [ + "can you have your name changed to fred", + "change_ai_name" + ], + [ + "can you change your name to fred", + "change_ai_name" + ], + [ + "change your name to fred", + "change_ai_name" + ], + [ + "what is your age again", + "how_old_are_you" + ], + [ + "how old are you in 2019", + "how_old_are_you" + ], + [ + "what's your birthday", + "how_old_are_you" + ], + [ + "were you born in the 80s", + "how_old_are_you" + ], + [ + "how old were you on your most recent birthday", + "how_old_are_you" + ], + [ + "what day were you born", + "how_old_are_you" + ], + [ + "what is your current age", + "how_old_are_you" + ], + [ + "how old are you as of today", + "how_old_are_you" + ], + [ + "what you age on your last birthday", + "how_old_are_you" + ], + [ + "how many birthdays have you had", + "how_old_are_you" + ], + [ + "how many years have you been living", + "how_old_are_you" + ], + [ + "hey how old are you", + "how_old_are_you" + ], + [ + "do you have an age", + "how_old_are_you" + ], + [ + "i was wondering what age you are", + "how_old_are_you" + ], + [ + "in what year were you born", + "how_old_are_you" + ], + [ + "what is your date of birth", + "how_old_are_you" + ], + [ + "what year were you born in", + "how_old_are_you" + ], + [ + "what is the year that were you born", + "how_old_are_you" + ], + [ + "how old are you ai", + "how_old_are_you" + ], + [ + "are you 16 years old", + "how_old_are_you" + ], + [ + "i need a car rental this week", + "car_rental" + ], + [ + "i am going away and need to rent a car", + "car_rental" + ], + [ + "help me find a car to rent", + "car_rental" + ], + [ + "can you get me a car rental for march 1st to 3rd in seattle, and i'd like a sedan if possible", + "car_rental" + ], + [ + "help me book a car rental in austin for april 11th to 13th get me a sedan if possible", + "car_rental" + ], + [ + "can you get me a car rental for march 13th to 15th in nyc, and i'd like a convertible if possible", + "car_rental" + ], + [ + "help me book a car rental in chicago for april 1st to 3rd get me an suv if possible", + "car_rental" + ], + [ + "i need to book a car rental in las vegas", + "car_rental" + ], + [ + "i'm looking for assistance booking a rental car in las vegas", + "car_rental" + ], + [ + "could i get assistance booking a car rental in las vegas", + "car_rental" + ], + [ + "how can i rent a car in las vegas", + "car_rental" + ], + [ + "can you help me rent a car in las vegas", + "car_rental" + ], + [ + "can i get a car rental in boise from april 11th to april 13th", + "car_rental" + ], + [ + "how can i rent a ride in alaska from march 5th to march 18th", + "car_rental" + ], + [ + "where do i rent a car in las vegas from november 16th to december 16th", + "car_rental" + ], + [ + "can i rent a car from dfw airport from march 1st to march 8th", + "car_rental" + ], + [ + "do you have a car rental in new york from june 6th to june 9th", + "car_rental" + ], + [ + "i must procure a car rental for the 10th to the 15th in zimbabwe and i would prefer a bmw", + "car_rental" + ], + [ + "i really must rent a car out of sky harbor airport from the 3rd to the 5th of february", + "car_rental" + ], + [ + "i really need to get a volkswagen car rental for march 5th to march 8th in phoenix", + "car_rental" + ], + [ + "how can i jump start my car if my battery is dead", + "jump_start" + ], + [ + "will a jump start work if my batter is dead", + "jump_start" + ], + [ + "how to jump start a car", + "jump_start" + ], + [ + "what do i need to jump start a battery", + "jump_start" + ], + [ + "how do i jump start a bad battery", + "jump_start" + ], + [ + "what steps do i need to take to jump start my car", + "jump_start" + ], + [ + "i'm not sure how to jump start a car; can you help me", + "jump_start" + ], + [ + "how do i do a jump start on my car", + "jump_start" + ], + [ + "how might i go about jump starting a car", + "jump_start" + ], + [ + "how can i jump start a car", + "jump_start" + ], + [ + "can you tell me how to jump start a car", + "jump_start" + ], + [ + "how can i jump start my car", + "jump_start" + ], + [ + "show me instructions on how to jump start my car", + "jump_start" + ], + [ + "teach me how to jump start my car", + "jump_start" + ], + [ + "what do i need in order to jump start my car", + "jump_start" + ], + [ + "do i need jumper cables for my dead car battery", + "jump_start" + ], + [ + "who can jump off my dead car battery", + "jump_start" + ], + [ + "my car battery died and i need help", + "jump_start" + ], + [ + "can i get my car jumped for this dead battery", + "jump_start" + ], + [ + "there is no juice in my battery please help", + "jump_start" + ], + [ + "can you give me a chinese meal suggestion", + "meal_suggestion" + ], + [ + "i would like you to suggest a chinese dish", + "meal_suggestion" + ], + [ + "please suggest a chinese meal", + "meal_suggestion" + ], + [ + "i would like you to give me a suggestion for a mexican meal", + "meal_suggestion" + ], + [ + "can you suggest a mexican dish", + "meal_suggestion" + ], + [ + "i need some good suggestions for peruvian cuisine", + "meal_suggestion" + ], + [ + "help me find some new dinner recipes", + "meal_suggestion" + ], + [ + "what would you say is a good german dinner idea", + "meal_suggestion" + ], + [ + "i need an italian dinner idea", + "meal_suggestion" + ], + [ + "any recommendations for a greek dinner", + "meal_suggestion" + ], + [ + "what would you say is the best meal to have for dinner", + "meal_suggestion" + ], + [ + "i am bored and need new dinner recommendations", + "meal_suggestion" + ], + [ + "i need an idea for a french dinner", + "meal_suggestion" + ], + [ + "whats a good chinese dinner suggestion", + "meal_suggestion" + ], + [ + "what would you suggest having for dinner", + "meal_suggestion" + ], + [ + "i need to quick dinner suggestions", + "meal_suggestion" + ], + [ + "what kind of meal should i eat from thailand", + "meal_suggestion" + ], + [ + "suggest a meal from thailand please", + "meal_suggestion" + ], + [ + "suggestions for thai food", + "meal_suggestion" + ], + [ + "give recommendations for thai food", + "meal_suggestion" + ], + [ + "i would like to learn to make cookies", + "recipe" + ], + [ + "show me popular sushi recipes", + "recipe" + ], + [ + "i need a pancake recipe", + "recipe" + ], + [ + "find instructions on baking lemon cake", + "recipe" + ], + [ + "can you give me instructions on how to make alfredo", + "recipe" + ], + [ + "how do i make shrimp", + "recipe" + ], + [ + "what is a good recipe for steak", + "recipe" + ], + [ + "find a recipe for hamburgers", + "recipe" + ], + [ + "pull up ramen recipes please", + "recipe" + ], + [ + "how do you make dumplings", + "recipe" + ], + [ + "how do you make blue cheese dressing", + "recipe" + ], + [ + "i need a recipe for chicken cordon bleu", + "recipe" + ], + [ + "recipe for traditional roast beef and gravy", + "recipe" + ], + [ + "i want to make pork barbque but do no know how", + "recipe" + ], + [ + "give me a good recipe for chicken parmesan", + "recipe" + ], + [ + "do you have any good ways to make tomato soup", + "recipe" + ], + [ + "how do i make chicken alfredo", + "recipe" + ], + [ + "recipe for beef stroganoff", + "recipe" + ], + [ + "i need to find a good way to make chicken soup", + "recipe" + ], + [ + "tell me how to make ramen", + "recipe" + ], + [ + "what's my income before taxes", + "income" + ], + [ + "what's my income from work", + "income" + ], + [ + "how much money do i make at my job", + "income" + ], + [ + "was is my salary", + "income" + ], + [ + "what's my yearly income", + "income" + ], + [ + "what was my income last year", + "income" + ], + [ + "what's my total income", + "income" + ], + [ + "what's my total earnings", + "income" + ], + [ + "what's my work salary", + "income" + ], + [ + "do you know my work income", + "income" + ], + [ + "how much money do i make a week", + "income" + ], + [ + "how much do i make in a year", + "income" + ], + [ + "what do i get paid", + "income" + ], + [ + "how much is my salary", + "income" + ], + [ + "i would like to know what my income is", + "income" + ], + [ + "tell me my income amount", + "income" + ], + [ + "i need to know the amount of my income", + "income" + ], + [ + "get my income amount for me", + "income" + ], + [ + "how much do you start at", + "income" + ], + [ + "yearly salary", + "income" + ], + [ + "order more bread please", + "order" + ], + [ + "i ran out of bread, order more", + "order" + ], + [ + "since i ran out , order more bread", + "order" + ], + [ + "place an order for bread", + "order" + ], + [ + "make an order of bread because i am out", + "order" + ], + [ + "order an amazon gift card from amazon in the amount of twenty dollars", + "order" + ], + [ + "order a case of coke from amazon", + "order" + ], + [ + "order dog food from walmart", + "order" + ], + [ + "order more paper towels from amazon", + "order" + ], + [ + "order a disney gift card in the amount of five hundred dollars from costco", + "order" + ], + [ + "i want to buy an iphone7", + "order" + ], + [ + "can you order an iphone7 for me with two-day free delivery", + "order" + ], + [ + "help me buy a black iphone7", + "order" + ], + [ + "please order an iphone7 for me", + "order" + ], + [ + "everything needs ordered off my list", + "order" + ], + [ + "for the shopping list, order everything", + "order" + ], + [ + "order all of my shopping list", + "order" + ], + [ + "order all items on the list", + "order" + ], + [ + "purchase me the kyrie 4s", + "order" + ], + [ + "aquire me them kyrie 4s", + "order" + ], + [ + "is there much traffic between here and work right now", + "traffic" + ], + [ + "what's the traffic like right now for my route to work", + "traffic" + ], + [ + "is the traffic bad going downtown right now", + "traffic" + ], + [ + "how's the traffic this morning", + "traffic" + ], + [ + "how bad is the traffic on the way to downtown", + "traffic" + ], + [ + "what's the traffic like going to central park", + "traffic" + ], + [ + "is there heavy traffic on the way to the city", + "traffic" + ], + [ + "how bad is traffic on the way into oakville right now", + "traffic" + ], + [ + "how does the traffic look on my way to work right now", + "traffic" + ], + [ + "what does my commute look like", + "traffic" + ], + [ + "what is the traffic like on the road to downtown dallas", + "traffic" + ], + [ + "what kind of traffic is on hwy 1 going to the downtown area right now", + "traffic" + ], + [ + "how is the traffic on rt 5 towards my work , community bank", + "traffic" + ], + [ + "is there any traffic on the road i take home from work right now, rt 40", + "traffic" + ], + [ + "tell me how the traffic is on rt 7 to the airport today", + "traffic" + ], + [ + "what will the traffic be like if i headed out to work right now", + "traffic" + ], + [ + "what kind of traffic can i expect on the way to church", + "traffic" + ], + [ + "how's the traffic to work", + "traffic" + ], + [ + "can you give me a traffic update for a trip to the grocery store", + "traffic" + ], + [ + "how's the traffic looking if i headed to fred meyer", + "traffic" + ], + [ + "i need more checks because i am out", + "order_checks" + ], + [ + "can i order new checks since i am out", + "order_checks" + ], + [ + "i am now out of checks, how do i order new ones", + "order_checks" + ], + [ + "i need to order new checks because i am all out", + "order_checks" + ], + [ + "i have no checks and need to order new checks", + "order_checks" + ], + [ + "put in an order for more checks", + "order_checks" + ], + [ + "how do i order more free checkbooks", + "order_checks" + ], + [ + "i ran out of checks and need more ordered", + "order_checks" + ], + [ + "please order more checks i just used the last one", + "order_checks" + ], + [ + "i just used my last check and need more now", + "order_checks" + ], + [ + "i ran out of checks and need more asap", + "order_checks" + ], + [ + "i would like more checks sent to my address", + "order_checks" + ], + [ + "how would i go about getting more checks for my western union account", + "order_checks" + ], + [ + "i just used my final check order more", + "order_checks" + ], + [ + "can i order checks online for my checking account", + "order_checks" + ], + [ + "please send me more checkbooks", + "order_checks" + ], + [ + "please notify my bank that i need more checks", + "order_checks" + ], + [ + "how can i order checks for my savings account", + "order_checks" + ], + [ + "i need to know how to order checks for my bank of america account", + "order_checks" + ], + [ + "who do i contact to order more checks for my td bank account", + "order_checks" + ], + [ + "is there a reason my card was declined", + "card_declined" + ], + [ + "my card was rejected at shakey's and i am wondering why", + "card_declined" + ], + [ + "was there a problem with my card yesterday", + "card_declined" + ], + [ + "my debit card was rejected at ella's and i want to know why", + "card_declined" + ], + [ + "my card was declined at mcdonald's and i want to know why", + "card_declined" + ], + [ + "i need to know why you declined my card yesterday", + "card_declined" + ], + [ + "my card was rejected at the zoo, could you tell me why", + "card_declined" + ], + [ + "tell me why my card was declined", + "card_declined" + ], + [ + "tell me why my card was declined at auto zone, why", + "card_declined" + ], + [ + "i need to know why my credit card transaction was declined", + "card_declined" + ], + [ + "why was my credit card not accepted", + "card_declined" + ], + [ + "i was in target about to buy a chair when my card got declined", + "card_declined" + ], + [ + "my card just got declined when i was in home depot buying tile", + "card_declined" + ], + [ + "i was trying to buy a chainsaw at the tractor store and they said my card was declined", + "card_declined" + ], + [ + "why was my card declined just now when i tried to buy a jeep at carmax", + "card_declined" + ], + [ + "i was at walmart trying to buy toilet paper and my card got declined", + "card_declined" + ], + [ + "target declined my card and i don't know why", + "card_declined" + ], + [ + "do you know why my card was declined at target i can't figure out why", + "card_declined" + ], + [ + "i can't figure out why my card was declined at target", + "card_declined" + ], + [ + "i was just at target and they declined my card and i can't understand why", + "card_declined" + ] + ], + "train": [ + [ + "what expression would i use to say i love you if i were an italian", + "translate" + ], + [ + "can you tell me how to say 'i do not speak much spanish', in spanish", + "translate" + ], + [ + "what is the equivalent of, 'life is good' in french", + "translate" + ], + [ + "tell me how to say, 'it is a beautiful morning' in italian", + "translate" + ], + [ + "if i were mongolian, how would i say that i am a tourist", + "translate" + ], + [ + "how do i say 'hotel' in finnish", + "translate" + ], + [ + "i need you to translate the sentence, 'we will be there soon' into portuguese", + "translate" + ], + [ + "please tell me how to ask for a taxi in french", + "translate" + ], + [ + "can you tell me how i would say, 'more bread please' in french", + "translate" + ], + [ + "what is the correct way to say 'i am a visitor' in french", + "translate" + ], + [ + "how would i say, 'i don't know the answer' in spanish", + "translate" + ], + [ + "i would like to know the proper way to greet an adult in portuguese", + "translate" + ], + [ + "what words would i use to tell someone i am lost if i were japanese", + "translate" + ], + [ + "how would i say thank you if i were russian", + "translate" + ], + [ + "can you tell me how i would normally say thank you as a french person", + "translate" + ], + [ + "i would like to know how to say hello in french", + "translate" + ], + [ + "if i were english how would i say subway", + "translate" + ], + [ + "i would i say subway if i were english", + "translate" + ], + [ + "how do you say hi in french", + "translate" + ], + [ + "in england how do they say subway", + "translate" + ], + [ + "translate hello in french", + "translate" + ], + [ + "how is hello said in french", + "translate" + ], + [ + "what do you call a subway if you were english", + "translate" + ], + [ + "how would i say if i were english subway", + "translate" + ], + [ + "how should i say hello in french", + "translate" + ], + [ + "how could i say twin in chinese", + "translate" + ], + [ + "how can i say not now in spanish", + "translate" + ], + [ + "what do spanish people say for the word cow", + "translate" + ], + [ + "translate hello to english", + "translate" + ], + [ + "how do you say goodbye in spanish", + "translate" + ], + [ + "how would i say love in french", + "translate" + ], + [ + "could you translate atm machine into english", + "translate" + ], + [ + "please translate grocery into french for me", + "translate" + ], + [ + "how do germans say goodnight", + "translate" + ], + [ + "tell me how the russians say notebook", + "translate" + ], + [ + "how do vietnameses people say hello", + "translate" + ], + [ + "how do i say thank you in japanese", + "translate" + ], + [ + "what is latin for i love you", + "translate" + ], + [ + "how can i thank somebody in italian", + "translate" + ], + [ + "how do i say you're welcome in chinese", + "translate" + ], + [ + "translate hello english to french", + "translate" + ], + [ + "what is hello in french", + "translate" + ], + [ + "what phrase means goodbye in hawaii", + "translate" + ], + [ + "what spanish word means hello", + "translate" + ], + [ + "translate hello to french", + "translate" + ], + [ + "translate english to french hello", + "translate" + ], + [ + "what is the word for hello spanish", + "translate" + ], + [ + "how do they say goodbye in hawaii", + "translate" + ], + [ + "what's local slang for goodbye in hawaii", + "translate" + ], + [ + "how do you say hello in french", + "translate" + ], + [ + "tell me how to say hello in spanish", + "translate" + ], + [ + "what do i say for goodbye in hawaii", + "translate" + ], + [ + "translate hello into french for me", + "translate" + ], + [ + "how do i say hello in french", + "translate" + ], + [ + "translate for me hello into french", + "translate" + ], + [ + "how would they say say goodbye in hawaii", + "translate" + ], + [ + "what is spanish for hello", + "translate" + ], + [ + "how would i say hello in french", + "translate" + ], + [ + "how can i say i love you in italy", + "translate" + ], + [ + "what is spanish for good morning", + "translate" + ], + [ + "how do you say it's snowing in german", + "translate" + ], + [ + "how would you say can i borrow five dollars in portuguese", + "translate" + ], + [ + "do you know how to say where is the restroom in french", + "translate" + ], + [ + "how would i say pleased to meet you if i were japanese", + "translate" + ], + [ + "can you translate hello into swedish for me", + "translate" + ], + [ + "can you translate i love you into french for me", + "translate" + ], + [ + "can you translate where's the bar into irish for me", + "translate" + ], + [ + "how would i say goodbye if i were norwegian", + "translate" + ], + [ + "how would i say i love you if i were french", + "translate" + ], + [ + "how would i say hello if i were swedish", + "translate" + ], + [ + "can you translate good bye into russian for me", + "translate" + ], + [ + "can you translate i have to go pee into korean for me", + "translate" + ], + [ + "how would i say i'm not guilty if i were mexican", + "translate" + ], + [ + "how do you say thank you in spanish", + "translate" + ], + [ + "how does one say thank you in spanish", + "translate" + ], + [ + "how can i say thank you in spanish", + "translate" + ], + [ + "what is thank you in spanish", + "translate" + ], + [ + "what is the way to say thank you in spanish", + "translate" + ], + [ + "how do they say \"who is your father\" in german", + "translate" + ], + [ + "how do they say \"where's the bathroom\" in spanish", + "translate" + ], + [ + "how do they say \"how's it going\" in swahili", + "translate" + ], + [ + "how do they say \"i love you\" in japanese", + "translate" + ], + [ + "how do they say \"what's up\" in chinese", + "translate" + ], + [ + "how do you say thank you in german", + "translate" + ], + [ + "how do you say please in arabic", + "translate" + ], + [ + "how do you say cat in spanish", + "translate" + ], + [ + "how do you say i'm hungry in french", + "translate" + ], + [ + "how do you say i need coffee in dutch", + "translate" + ], + [ + "how do they say yes in brazil", + "translate" + ], + [ + "can you translate cat into russian for me", + "translate" + ], + [ + "can you translate bowl into russian for me", + "translate" + ], + [ + "how do they say hello in france", + "translate" + ], + [ + "i wanna know a phrase in spanish", + "translate" + ], + [ + "can you translate bat into russian for me", + "translate" + ], + [ + "how do they say no in germany", + "translate" + ], + [ + "can you translate hi into spanish for me", + "translate" + ], + [ + "i wanna learn a phrase in russian", + "translate" + ], + [ + "how do they say hello in germany", + "translate" + ], + [ + "can you translate milk into spanish for me", + "translate" + ], + [ + "how do they say hello in brazil", + "translate" + ], + [ + "i need $20000 transferred from my savings to my checking", + "transfer" + ], + [ + "complete a transaction from savings to checking of $20000", + "transfer" + ], + [ + "transfer $20000 from my savings account to checking account", + "transfer" + ], + [ + "take $20000 from savings and put it in checking", + "transfer" + ], + [ + "put $20000 into my checking account from my savings account", + "transfer" + ], + [ + "send 100 dollars between bank of the west and bank of america acccounts", + "transfer" + ], + [ + "send 50 dollars between bank of america and chase accounts", + "transfer" + ], + [ + "send 2000 dollars between chase and rabobank accounts", + "transfer" + ], + [ + "send 1200 dollars between usaa and navy federal accounts", + "transfer" + ], + [ + "send 400 dollars between city bank and usaa accounts", + "transfer" + ], + [ + "take $40 and transfer it to account a from b", + "transfer" + ], + [ + "transfer $40 from account a to b", + "transfer" + ], + [ + "move $40 from account b to account a", + "transfer" + ], + [ + "put $40 from account a to b", + "transfer" + ], + [ + "take $40 from account a and transfer it to account b", + "transfer" + ], + [ + "i need to transfer from this account to that one", + "transfer" + ], + [ + "need to transfer from one account to my other one", + "transfer" + ], + [ + "i would like to transfer from one account to my second one", + "transfer" + ], + [ + "i need to transfer from one account to my second one", + "transfer" + ], + [ + "i have to transfer from one account to my other one", + "transfer" + ], + [ + "send fifty dollars from me to carrie", + "transfer" + ], + [ + "transfer sixty dollars to dad from my biggest accnt", + "transfer" + ], + [ + "send over a hundred dollars from huntington into saving", + "transfer" + ], + [ + "move 57 dollars from saving into mom", + "transfer" + ], + [ + "transfer two hundred dollars between my portfolio and my money market account", + "transfer" + ], + [ + "i need to transfer ten dollars from my bank of america account to my capital one account", + "transfer" + ], + [ + "go ahead and send ten dollars from bank of america to capital one", + "transfer" + ], + [ + "i must transfer ten dollars from my bank of america account to my capital one account", + "transfer" + ], + [ + "i got to transfer ten dollars from my bank of america account to my capital one account", + "transfer" + ], + [ + "i want you to send ten dollars from bank of america to capital one", + "transfer" + ], + [ + "i need you to send ten dollars from bank of america to capital one", + "transfer" + ], + [ + "i have to transfer ten dollars from my bank of america account to my capital one account", + "transfer" + ], + [ + "send ten dollars from bank of america to capital one", + "transfer" + ], + [ + "please send ten dollars from bank of america to capital one", + "transfer" + ], + [ + "make a transfer of $200 from my savings account to my checking account", + "transfer" + ], + [ + "please transfer $250 from checking to savings", + "transfer" + ], + [ + "transfer $500 from my checking to my savings", + "transfer" + ], + [ + "please transfer $100 from my checking to my savings account", + "transfer" + ], + [ + "transfer $500 from my money market savings account to my checking account", + "transfer" + ], + [ + "send money from one account to another", + "transfer" + ], + [ + "transfer 200 dollars from paypal to savings", + "transfer" + ], + [ + "transfer $10 from checking to savings", + "transfer" + ], + [ + "send $100 from paypal to my bank", + "transfer" + ], + [ + "please transfer 100 dollars between my amazon payments and savings accounts", + "transfer" + ], + [ + "i would like to make a transfer", + "transfer" + ], + [ + "i want to transfer funds between accounts", + "transfer" + ], + [ + "send over 50 dollars between my shared and not shared accounts", + "transfer" + ], + [ + "whats the quickest way to money from one account to another", + "transfer" + ], + [ + "what is the process to move money from one account to another", + "transfer" + ], + [ + "i need you to send 500 dollars from my high tier account to my regular checking account", + "transfer" + ], + [ + "can you transfer money from a to b", + "transfer" + ], + [ + "send my money between accounts", + "transfer" + ], + [ + "how can i send money from one account to another", + "transfer" + ], + [ + "i need to move money from one account to another", + "transfer" + ], + [ + "send $20 from debit to steve's account", + "transfer" + ], + [ + "send 20 dollars from savings to checking", + "transfer" + ], + [ + "please transfer my funds", + "transfer" + ], + [ + "please transfer $50 to my checking account from credit", + "transfer" + ], + [ + "go ahead and move $200 from amazon to my bank account", + "transfer" + ], + [ + "help me move my money", + "transfer" + ], + [ + "i need my money to be moved", + "transfer" + ], + [ + "help me move my money please", + "transfer" + ], + [ + "i need to move my money", + "transfer" + ], + [ + "move my money please", + "transfer" + ], + [ + "i would like to transfer $5 from savings to checking", + "transfer" + ], + [ + "transfer $5 from savings to checking", + "transfer" + ], + [ + "can you transfer $5 from savings to checking", + "transfer" + ], + [ + "send $5 from savings to checking", + "transfer" + ], + [ + "please transfer $5 from savings to checking", + "transfer" + ], + [ + "please switch $s checking to mortage", + "transfer" + ], + [ + "please transfer $s from saving to checking", + "transfer" + ], + [ + "could you transfer $x from saving to checking", + "transfer" + ], + [ + "help me transfer $x from credit to debit", + "transfer" + ], + [ + "please transfer $x from checking to saving", + "transfer" + ], + [ + "transfer money to another account", + "transfer" + ], + [ + "requesting money transfer between accounts", + "transfer" + ], + [ + "transfer money from this account to that account", + "transfer" + ], + [ + "can you transfer money from my account", + "transfer" + ], + [ + "money transfer request", + "transfer" + ], + [ + "send 100 dollars from checking to savings", + "transfer" + ], + [ + "transfer 100 dollars checking to savings", + "transfer" + ], + [ + "transfer 100 dollars between checking and savings", + "transfer" + ], + [ + "take 100 dollars from checking and send it to savings", + "transfer" + ], + [ + "move 100 dollars from checking to savings", + "transfer" + ], + [ + "can we wire some money over to the other account i have", + "transfer" + ], + [ + "time to move some cash from one account to another", + "transfer" + ], + [ + "i need to throw some money into that other account", + "transfer" + ], + [ + "let's send some money to another account", + "transfer" + ], + [ + "i want to initiate a transfer from one account to the other", + "transfer" + ], + [ + "transfer money from one place to another", + "transfer" + ], + [ + "move money from one account to another", + "transfer" + ], + [ + "transfer between two accounts", + "transfer" + ], + [ + "make a transfer between accounts", + "transfer" + ], + [ + "send money to another account", + "transfer" + ], + [ + "i need ten dollars sent from b of a to washington mutual", + "transfer" + ], + [ + "transfer fifty dollars between my chase and bank of america account", + "transfer" + ], + [ + "deposit ten bucks from my chase account to my ally account", + "transfer" + ], + [ + "put a hundred dollars in my ally account from bluebird", + "transfer" + ], + [ + "i want seventy bucks transferred from b of a to chase", + "transfer" + ], + [ + "can i initiate a one-time transfer from my savings account to my money market account", + "transfer" + ], + [ + "please set a 4 minute timer", + "timer" + ], + [ + "please set a timer for 6 minutes", + "timer" + ], + [ + "set a timer for 5 minutes", + "timer" + ], + [ + "i need a 7 minute timer", + "timer" + ], + [ + "i need to set the timer for two minutes", + "timer" + ], + [ + "can you set a timer for me for fifteen minutes starting now", + "timer" + ], + [ + "start the timer now and stop at thirty minutes", + "timer" + ], + [ + "i would like you to set the timer to go off in ten minutes", + "timer" + ], + [ + "please set a timer for 40 minutes", + "timer" + ], + [ + "wake me in an hour", + "timer" + ], + [ + "please set a timer for cookies", + "timer" + ], + [ + "i want a timer set", + "timer" + ], + [ + "remind me in (x) hours", + "timer" + ], + [ + "set timer for (x) minutes", + "timer" + ], + [ + "i gotta have a 10 minute timer", + "timer" + ], + [ + "please set a timer for me", + "timer" + ], + [ + "i need a 10 minute timer", + "timer" + ], + [ + "i wish to have a 10 minute timer", + "timer" + ], + [ + "i really need to set a timer", + "timer" + ], + [ + "set a new timer for ten seconds", + "timer" + ], + [ + "set a timer for me", + "timer" + ], + [ + "i want a 10 minute timer", + "timer" + ], + [ + "i gotta set a timer", + "timer" + ], + [ + "set a 10 minute timer", + "timer" + ], + [ + "set a brand new timer for eight seconds", + "timer" + ], + [ + "set a ten second timer", + "timer" + ], + [ + "i must set a timer", + "timer" + ], + [ + "set a timer for twelve seconds", + "timer" + ], + [ + "set a timer for fifteen seconds", + "timer" + ], + [ + "tell me when two minutes are up", + "timer" + ], + [ + "start a timer for two minutes", + "timer" + ], + [ + "set a timer for two minutes", + "timer" + ], + [ + "start counting down from two minutes", + "timer" + ], + [ + "can you set a timer for two minutes", + "timer" + ], + [ + "\"please set 5 minute timer", + "timer" + ], + [ + "can u please set the timer for 5 minutes", + "timer" + ], + [ + "set timer of 5 minutes", + "timer" + ], + [ + "\"can u set a timer for 5 minutes", + "timer" + ], + [ + "set a one hour timer", + "timer" + ], + [ + "please set a timer for 20 minutes", + "timer" + ], + [ + "set a five minute timer please", + "timer" + ], + [ + "set a timer for two hours", + "timer" + ], + [ + "can you set a two hour timer", + "timer" + ], + [ + "set the timer for me please", + "timer" + ], + [ + "you need to set the timer for me", + "timer" + ], + [ + "i need you to set timer for me", + "timer" + ], + [ + "please set the timer for me", + "timer" + ], + [ + "i would like a timer set", + "timer" + ], + [ + "can you set a timer", + "timer" + ], + [ + "i need you to set a time", + "timer" + ], + [ + "i need a timer set for 15 minutes", + "timer" + ], + [ + "start a countdown for 20 minutes", + "timer" + ], + [ + "set a timer for 15 minutes", + "timer" + ], + [ + "i'll need you to set a timer for 10 minutes", + "timer" + ], + [ + "let's get a timer set for 5 minutes", + "timer" + ], + [ + "set a timer for 35 minutes", + "timer" + ], + [ + "please start counting down from 10 minutes", + "timer" + ], + [ + "let's get a timer going for 10 minutes", + "timer" + ], + [ + "i need a timer for 20 seconds", + "timer" + ], + [ + "timer 5 minutes", + "timer" + ], + [ + "alert me in 20 minutes", + "timer" + ], + [ + "give me a 10 minute countdown", + "timer" + ], + [ + "let me know in 15 minutes please", + "timer" + ], + [ + "i'm cooking an egg, timer for 3 mins", + "timer" + ], + [ + "10 minute timer", + "timer" + ], + [ + "start a timer for 10 minutes", + "timer" + ], + [ + "timer 10 minutes", + "timer" + ], + [ + "count down 10 minutes", + "timer" + ], + [ + "make up a timer for me", + "timer" + ], + [ + "create a timer for me", + "timer" + ], + [ + "can you set a timer for me", + "timer" + ], + [ + "i need to set a timer", + "timer" + ], + [ + "set up a timer", + "timer" + ], + [ + "could you start a timer for me", + "timer" + ], + [ + "lets set a timer for me", + "timer" + ], + [ + "please run a timer for me", + "timer" + ], + [ + "set a one minute timer", + "timer" + ], + [ + "set a five minute timer", + "timer" + ], + [ + "set a seven minute timer", + "timer" + ], + [ + "start a timer for me", + "timer" + ], + [ + "set a four minute timer", + "timer" + ], + [ + "set a six minute timer", + "timer" + ], + [ + "how do i set a timer", + "timer" + ], + [ + "i want a timer for 5 minutes", + "timer" + ], + [ + "timer for 5 minutes", + "timer" + ], + [ + "set a timer to go off in 5 minutes", + "timer" + ], + [ + "set timer for 5 minutes", + "timer" + ], + [ + "i want to set a timer", + "timer" + ], + [ + "make a timer for 5 minutes", + "timer" + ], + [ + "please set a timer for", + "timer" + ], + [ + "remind me that time is up in sixty minutes", + "timer" + ], + [ + "set an alarm for nine minutes from now", + "timer" + ], + [ + "tell me when ninety minutes have passed", + "timer" + ], + [ + "please set timer for 4 pm", + "timer" + ], + [ + "want 5 minute timer", + "timer" + ], + [ + "set 30 minute timer", + "timer" + ], + [ + "get a 3 minute timer", + "timer" + ], + [ + "please, can you set the timer for me", + "timer" + ], + [ + "can you please the timer", + "timer" + ], + [ + "will you set the timer", + "timer" + ], + [ + "what is the meaning of realism", + "definition" + ], + [ + "what is regard mean", + "definition" + ], + [ + "what is the meaning of interorganizational", + "definition" + ], + [ + "what is it is all relative mean", + "definition" + ], + [ + "what is intercontinental mean", + "definition" + ], + [ + "what is the meaning of supercede", + "definition" + ], + [ + "what is let it be mean", + "definition" + ], + [ + "what is the definition of incomprehensible", + "definition" + ], + [ + "what is the meaning of stupendous", + "definition" + ], + [ + "what is the definition of intelligent", + "definition" + ], + [ + "what is good riddance mean", + "definition" + ], + [ + "what is break a leg mean", + "definition" + ], + [ + "what is the meaning of hyperactive", + "definition" + ], + [ + "what is the definition of valor", + "definition" + ], + [ + "what is stupedous meant", + "definition" + ], + [ + "find the meaning of qat", + "definition" + ], + [ + "what the heck is qat", + "definition" + ], + [ + "define qat for me", + "definition" + ], + [ + "read me a definition for qat", + "definition" + ], + [ + "look up qat please", + "definition" + ], + [ + "what might the meaning of altruism be", + "definition" + ], + [ + "exactly what does altruism mean", + "definition" + ], + [ + "what does altruism mean", + "definition" + ], + [ + "what is the definition of altruism", + "definition" + ], + [ + "what is the meaning of altruism", + "definition" + ], + [ + "affiliate's definition is what", + "definition" + ], + [ + "the definition of affiliate is", + "definition" + ], + [ + "what's the meaning of affiliate", + "definition" + ], + [ + "what's affiliate definition", + "definition" + ], + [ + "definition of affiliate is what", + "definition" + ], + [ + "whats the definition of poor", + "definition" + ], + [ + "describe the meaning of \"dog", + "definition" + ], + [ + "what does \"money\" mean", + "definition" + ], + [ + "tell me what the word die means", + "definition" + ], + [ + "what is the definition of succumb", + "definition" + ], + [ + "what is the meaning of telepathy", + "definition" + ], + [ + "what does tertiary mean", + "definition" + ], + [ + "tell me the definition of the word redemption", + "definition" + ], + [ + "what is the meaning of the word lux", + "definition" + ], + [ + "what is an ataraxy", + "definition" + ], + [ + "what does the word ataraxy mean", + "definition" + ], + [ + "what does ataraxy mean", + "definition" + ], + [ + "use the word ataraxy in a sentence", + "definition" + ], + [ + "define ataraxy", + "definition" + ], + [ + "what does discretionary mean", + "definition" + ], + [ + "define discretionary", + "definition" + ], + [ + "i want to know the definition of discretionary", + "definition" + ], + [ + "can you give the definition of deiscretionary", + "definition" + ], + [ + "let's hear the definition of iridium", + "definition" + ], + [ + "what's the definition of analogy", + "definition" + ], + [ + "can you tell me the definition of sucrose", + "definition" + ], + [ + "definition of anachronism", + "definition" + ], + [ + "what's the definition of patriarchy", + "definition" + ], + [ + "can you tell me the definition of yttrbium", + "definition" + ], + [ + "please share the definition of episcopalian", + "definition" + ], + [ + "what does saffron mean", + "definition" + ], + [ + "define sonogram", + "definition" + ], + [ + "define thoroughbred", + "definition" + ], + [ + "what's the meaning of a fortnight", + "definition" + ], + [ + "what is an anachronism", + "definition" + ], + [ + "what's the meaning of emulsify", + "definition" + ], + [ + "tell me what cyst means", + "definition" + ], + [ + "what is the definition of flange", + "definition" + ], + [ + "tell me what flange means", + "definition" + ], + [ + "define flange", + "definition" + ], + [ + "flange means what", + "definition" + ], + [ + "what is the meaning of flange", + "definition" + ], + [ + "what does \"rescind\" mean", + "definition" + ], + [ + "what is the meaning of word \"rescind", + "definition" + ], + [ + "is \"rescind\" a word of positive connotation", + "definition" + ], + [ + "where i can use word \"rescind", + "definition" + ], + [ + "read me the definition of ajar", + "definition" + ], + [ + "what does ajar mean", + "definition" + ], + [ + "can you show me the dictionary definition of ajar", + "definition" + ], + [ + "tell me what monstrosity means", + "definition" + ], + [ + "give me the definition of ajar", + "definition" + ], + [ + "what is the definition of didactic", + "definition" + ], + [ + "i need to know what adumbrate means can you look it up for me now", + "definition" + ], + [ + "i want to know what the word discomfit means", + "definition" + ], + [ + "find what the word diaphanous mean please", + "definition" + ], + [ + "do you know what calumny means please look it up for me", + "definition" + ], + [ + "find out what the word abrogate means for me", + "definition" + ], + [ + "tell me what edict means", + "definition" + ], + [ + "what does the word abjure mean", + "definition" + ], + [ + "can you tell me what dirge means", + "definition" + ], + [ + "tell me what the word arboreal means", + "definition" + ], + [ + "whats the definition of transmute", + "definition" + ], + [ + "what is the meaning of the word slander", + "definition" + ], + [ + "what is meant by defense", + "definition" + ], + [ + "tell me what the word bounty means", + "definition" + ], + [ + "what does deceive mean", + "definition" + ], + [ + "define zesty", + "definition" + ], + [ + "look up zesty in dictionary", + "definition" + ], + [ + "definition of zesty", + "definition" + ], + [ + "what is the definition of zesty", + "definition" + ], + [ + "what does zesty mean", + "definition" + ], + [ + "tell me what alternative means", + "definition" + ], + [ + "what does alternative mean", + "definition" + ], + [ + "give me the meaning of alternative", + "definition" + ], + [ + "tell me the meaning of alternative", + "definition" + ], + [ + "does life have meaning", + "meaning_of_life" + ], + [ + "is being alive the meaning of life", + "meaning_of_life" + ], + [ + "what is the real meaning of life", + "meaning_of_life" + ], + [ + "what is the answer to the meaning of life", + "meaning_of_life" + ], + [ + "is there really an answer to the meaning of life", + "meaning_of_life" + ], + [ + "does life have a meaning", + "meaning_of_life" + ], + [ + "who can tell me if there's any meaning to life", + "meaning_of_life" + ], + [ + "what makes life have any meaning", + "meaning_of_life" + ], + [ + "why do you think we're here", + "meaning_of_life" + ], + [ + "what's the answer to existence", + "meaning_of_life" + ], + [ + "what's the point of sentience", + "meaning_of_life" + ], + [ + "what's the purpose of existence", + "meaning_of_life" + ], + [ + "what's the purpose of life", + "meaning_of_life" + ], + [ + "what's the point of this dumpster fire known as life", + "meaning_of_life" + ], + [ + "what is life's meaning", + "meaning_of_life" + ], + [ + "is there a greater purpose in life", + "meaning_of_life" + ], + [ + "what is our purpose in life", + "meaning_of_life" + ], + [ + "how is life in existence", + "meaning_of_life" + ], + [ + "what's lifes meaning", + "meaning_of_life" + ], + [ + "what exactly is the meaning of life", + "meaning_of_life" + ], + [ + "whats lifes meaning exactly", + "meaning_of_life" + ], + [ + "what's the meaning of this life", + "meaning_of_life" + ], + [ + "what is the meaning of life here", + "meaning_of_life" + ], + [ + "does my life have meaning", + "meaning_of_life" + ], + [ + "i wish to know the meaning of life", + "meaning_of_life" + ], + [ + "i wanna know the meaning of life", + "meaning_of_life" + ], + [ + "i wanna know the point of life", + "meaning_of_life" + ], + [ + "i need to know the point of life", + "meaning_of_life" + ], + [ + "i must know the point of life", + "meaning_of_life" + ], + [ + "tell the meaning of life", + "meaning_of_life" + ], + [ + "i gotta know the meaning of life", + "meaning_of_life" + ], + [ + "what is your take on the meaning of life", + "meaning_of_life" + ], + [ + "tell me what is the purpose of life", + "meaning_of_life" + ], + [ + "what meaning does life hold", + "meaning_of_life" + ], + [ + "what do you think is the meaning of like", + "meaning_of_life" + ], + [ + "how do i find the meaning of life", + "meaning_of_life" + ], + [ + "what is the purpose of exsistance", + "meaning_of_life" + ], + [ + "what is your version on the meaning of life", + "meaning_of_life" + ], + [ + "what is your explanation for the meaning of life", + "meaning_of_life" + ], + [ + "what is the purpose of creation", + "meaning_of_life" + ], + [ + "can you figure out the meaning of life", + "meaning_of_life" + ], + [ + "whats your take on the meaning of life", + "meaning_of_life" + ], + [ + "can you explain the meaning of life to me", + "meaning_of_life" + ], + [ + "what is life all about", + "meaning_of_life" + ], + [ + "can you explain the meaning of life", + "meaning_of_life" + ], + [ + "what's the point of life, anyways", + "meaning_of_life" + ], + [ + "the meaning of life please", + "meaning_of_life" + ], + [ + "the meaning of life", + "meaning_of_life" + ], + [ + "i'd like to me told the meaning of life", + "meaning_of_life" + ], + [ + "do you know the meaning of life", + "meaning_of_life" + ], + [ + "say what the meaning of life is", + "meaning_of_life" + ], + [ + "can you tell me life's meaning", + "meaning_of_life" + ], + [ + "what's the meaning of my life", + "meaning_of_life" + ], + [ + "what is the underlying purpose to life", + "meaning_of_life" + ], + [ + "what do you think about the meaning of life", + "meaning_of_life" + ], + [ + "what is life\u2019s meaning", + "meaning_of_life" + ], + [ + "help me figure out the meaning of life", + "meaning_of_life" + ], + [ + "would you tell me the meaning of life, please", + "meaning_of_life" + ], + [ + "could you tell me the meaning of life, please", + "meaning_of_life" + ], + [ + "can you tell me the meaning of life", + "meaning_of_life" + ], + [ + "could you tell me the meaning of life", + "meaning_of_life" + ], + [ + "can you tell me the meaning of life, please", + "meaning_of_life" + ], + [ + "what does life mean to you", + "meaning_of_life" + ], + [ + "is there really a meaning of life", + "meaning_of_life" + ], + [ + "is there any meaning to being alive", + "meaning_of_life" + ], + [ + "what is the meaning of my life", + "meaning_of_life" + ], + [ + "what is the point of life", + "meaning_of_life" + ], + [ + "what's the point of everything", + "meaning_of_life" + ], + [ + "is there a meaning to life", + "meaning_of_life" + ], + [ + "why are we here in life", + "meaning_of_life" + ], + [ + "can you share the meaning of life", + "meaning_of_life" + ], + [ + "research the meaning of life", + "meaning_of_life" + ], + [ + "can you tell me what you think the meaning of life is", + "meaning_of_life" + ], + [ + "what is our purpose here on earth", + "meaning_of_life" + ], + [ + "is love the meaning of life", + "meaning_of_life" + ], + [ + "is there a reason people exist", + "meaning_of_life" + ], + [ + "what is the secret or meaning to life", + "meaning_of_life" + ], + [ + "what does life mean on a deeper level", + "meaning_of_life" + ], + [ + "how would you put what life is all about", + "meaning_of_life" + ], + [ + "how would you describe what life means", + "meaning_of_life" + ], + [ + "what do people say life means or the meaning is", + "meaning_of_life" + ], + [ + "life has what meaning or what's the secret to it", + "meaning_of_life" + ], + [ + "where is there meaning in life", + "meaning_of_life" + ], + [ + "what is the meaning of this life", + "meaning_of_life" + ], + [ + "do you know what the meaning of life is", + "meaning_of_life" + ], + [ + "what's life's meaning", + "meaning_of_life" + ], + [ + "does life have a meaning, according to you", + "meaning_of_life" + ], + [ + "does this life have a meaning", + "meaning_of_life" + ], + [ + "can you share with me your interpretation of the meaning of life", + "meaning_of_life" + ], + [ + "what do you think is the meaning of life", + "meaning_of_life" + ], + [ + "is there a meaning in life", + "meaning_of_life" + ], + [ + "i wonder if you can explain the meaning of life", + "meaning_of_life" + ], + [ + "i always wonder about the meaning of life, can you tell me", + "meaning_of_life" + ], + [ + "what's my meaning in life", + "meaning_of_life" + ], + [ + "define the meaning of life", + "meaning_of_life" + ], + [ + "meaning of life is", + "meaning_of_life" + ], + [ + "what is your perception of the meaning of life", + "meaning_of_life" + ], + [ + "whats the meaning of life", + "meaning_of_life" + ], + [ + "what do you think the meaning of life is", + "meaning_of_life" + ], + [ + "what is behind life's meaning", + "meaning_of_life" + ], + [ + "how to create a new aaa insurance plan", + "insurance_change" + ], + [ + "website to start aaa new insurance plan", + "insurance_change" + ], + [ + "aaa insurance start new plan", + "insurance_change" + ], + [ + "i want to start a new aaa insurance plan", + "insurance_change" + ], + [ + "is new this a good insurance plan for me", + "insurance_change" + ], + [ + "what do i do to get new insurance", + "insurance_change" + ], + [ + "new insurance is obtainable how", + "insurance_change" + ], + [ + "how is new insurance gotten", + "insurance_change" + ], + [ + "what do i do for new insurance", + "insurance_change" + ], + [ + "how do i get new insurance, please", + "insurance_change" + ], + [ + "how can i obtain new insurance", + "insurance_change" + ], + [ + "how can i obtain new insurance, please", + "insurance_change" + ], + [ + "how can i get new insurance, please", + "insurance_change" + ], + [ + "how do i make my insurance policy different", + "insurance_change" + ], + [ + "how do i change my insurance policy", + "insurance_change" + ], + [ + "how do i modify my insurance policy", + "insurance_change" + ], + [ + "how do i alter my insurance policy", + "insurance_change" + ], + [ + "how do i get different terms on my insurance policy", + "insurance_change" + ], + [ + "help me change my insurance plan", + "insurance_change" + ], + [ + "i would like a new insurance plan", + "insurance_change" + ], + [ + "connect me with some new insurance", + "insurance_change" + ], + [ + "i need a newer insurance plan", + "insurance_change" + ], + [ + "my insurance plan needs to be changed", + "insurance_change" + ], + [ + "what rental insurance policy do you recommend", + "insurance_change" + ], + [ + "help me find a new auto insurance policy", + "insurance_change" + ], + [ + "find the best life insurance for me", + "insurance_change" + ], + [ + "i need new home owners insurance", + "insurance_change" + ], + [ + "i need new health care coverage", + "insurance_change" + ], + [ + "how do i change my current insurance to a new plan with lower co-pay", + "insurance_change" + ], + [ + "what steps do i need to take to switch my insurance plan from an hmo to a high deductible ppo plan", + "insurance_change" + ], + [ + "i need to change my insurance to a plan with a lower deductible", + "insurance_change" + ], + [ + "how do i go about changing my insurance to a new low monthly premium plan", + "insurance_change" + ], + [ + "i would like to change my insurance from a ppo to an hmo plan", + "insurance_change" + ], + [ + "help me figure out getting new insurance", + "insurance_change" + ], + [ + "i would like to get a new insurance plan", + "insurance_change" + ], + [ + "i want help adjusting my insurance policy", + "insurance_change" + ], + [ + "i am hoping to switch insurance plans", + "insurance_change" + ], + [ + "i need help acquiring new insurance", + "insurance_change" + ], + [ + "walk me through the process of getting new insurance", + "insurance_change" + ], + [ + "i am interested in acquiring new insurance", + "insurance_change" + ], + [ + "how can i acquire new insurance", + "insurance_change" + ], + [ + "what must i do if i want to adjust my insurance policy", + "insurance_change" + ], + [ + "what is the protocol for modifying my insurance policy", + "insurance_change" + ], + [ + "i dont like my current insurance plan and want a new one", + "insurance_change" + ], + [ + "walk me through making changes to my insurance policy", + "insurance_change" + ], + [ + "i need new insurance but dont know how to get it", + "insurance_change" + ], + [ + "i am thinking of switching to a different insurance plan", + "insurance_change" + ], + [ + "help me modify my insurance policy", + "insurance_change" + ], + [ + "could you help me out with a new renters' insurance plan", + "insurance_change" + ], + [ + "i'd like a new life insurance plan", + "insurance_change" + ], + [ + "can you help me with a new car insurance plan", + "insurance_change" + ], + [ + "i need to get a new motorcycle insurance plan", + "insurance_change" + ], + [ + "can i get a new pet insurance plan", + "insurance_change" + ], + [ + "where do i go to get new insurance", + "insurance_change" + ], + [ + "i need new insurance, how do i get it", + "insurance_change" + ], + [ + "how do i apply for new insurance", + "insurance_change" + ], + [ + "i would like you to help me get on another united healthcare insurance plan", + "insurance_change" + ], + [ + "can you help me get on a new united healthcare insurance plan", + "insurance_change" + ], + [ + "i want to find a new united healthcare plan to get on", + "insurance_change" + ], + [ + "i'd like to get on a new united healthcare plan", + "insurance_change" + ], + [ + "i need to get on a new united healthcare insurance plan", + "insurance_change" + ], + [ + "help make changes to my insurance policy", + "insurance_change" + ], + [ + "i must switch to a new insurance plan", + "insurance_change" + ], + [ + "i need help to make changes to my insurance policy", + "insurance_change" + ], + [ + "i gotta switch to a new insurance plan", + "insurance_change" + ], + [ + "help me make changes to my insurance policy", + "insurance_change" + ], + [ + "i need to switch to a new insurance plan", + "insurance_change" + ], + [ + "i really need to switch to a new insurance plan", + "insurance_change" + ], + [ + "i would like to make changes to my insurance policy", + "insurance_change" + ], + [ + "i need to make changes to my insurance policy", + "insurance_change" + ], + [ + "i shall switch to a new insurance plan", + "insurance_change" + ], + [ + "how do i update my insurance", + "insurance_change" + ], + [ + "how can i get new insurance", + "insurance_change" + ], + [ + "how can i find out about new insurance", + "insurance_change" + ], + [ + "i need to find new insurance", + "insurance_change" + ], + [ + "i need to get new insurance, how do i do it", + "insurance_change" + ], + [ + "can you switch me to a new insurance plan", + "insurance_change" + ], + [ + "i would like to switch to a different insurance plan", + "insurance_change" + ], + [ + "help me switch to a new insurance plan", + "insurance_change" + ], + [ + "switch my insurance plan to a new one", + "insurance_change" + ], + [ + "what are my options for new insurance plans", + "insurance_change" + ], + [ + "i want to shop for new insurance plans", + "insurance_change" + ], + [ + "i would like to switch my insurance plan", + "insurance_change" + ], + [ + "help me find new insurance providers", + "insurance_change" + ], + [ + "i would like to compare insurance plan options", + "insurance_change" + ], + [ + "i need a new house insurance plan", + "insurance_change" + ], + [ + "i want to get a new car insurance plan", + "insurance_change" + ], + [ + "i need new health insurance", + "insurance_change" + ], + [ + "i want a new policy with long-term care insurance", + "insurance_change" + ], + [ + "i want a new motorcycle insurance plan", + "insurance_change" + ], + [ + "how do i adjust my insurance policy", + "insurance_change" + ], + [ + "my insurance policy needs to be adjusted", + "insurance_change" + ], + [ + "i am in need of a switch to my insurance plan", + "insurance_change" + ], + [ + "walk me through on how to change my insurance", + "insurance_change" + ], + [ + "i wish to request a change in insurance plans", + "insurance_change" + ], + [ + "i would like to alter my insurance plan", + "insurance_change" + ], + [ + "i need to know how to change my insurance", + "insurance_change" + ], + [ + "i want to switch my insurance coverage", + "insurance_change" + ], + [ + "help me change my insurance", + "insurance_change" + ], + [ + "how do i replace my insurance", + "insurance_change" + ], + [ + "i need help finding my mobile phone", + "find_phone" + ], + [ + "help me figure out where my cell phone is", + "find_phone" + ], + [ + "give me a hand finding my mobile device", + "find_phone" + ], + [ + "i can't find my cell and need help locating it", + "find_phone" + ], + [ + "can you help me find my cell", + "find_phone" + ], + [ + "help, i cannot find my phone", + "find_phone" + ], + [ + "i can't seem to find my phone", + "find_phone" + ], + [ + "are you able to track a phone", + "find_phone" + ], + [ + "my phone cannot be found", + "find_phone" + ], + [ + "i have misplaced my phone", + "find_phone" + ], + [ + "i don't know where i left my phone", + "find_phone" + ], + [ + "i left my phone somewhere", + "find_phone" + ], + [ + "i am looking for my phone", + "find_phone" + ], + [ + "i need you to find my phone", + "find_phone" + ], + [ + "please locate my phone", + "find_phone" + ], + [ + "can you help me find my lost phone", + "find_phone" + ], + [ + "i need help figuring out where my phone is", + "find_phone" + ], + [ + "please help me figure out where my lost phone is", + "find_phone" + ], + [ + "please help me find my phone, because i lost it", + "find_phone" + ], + [ + "i lost my phone, can you help me find it", + "find_phone" + ], + [ + "who has seen my cellphone", + "find_phone" + ], + [ + "have you seen my cellphone", + "find_phone" + ], + [ + "can you find my cellphone", + "find_phone" + ], + [ + "find my cellphone", + "find_phone" + ], + [ + "please help me find my phone", + "find_phone" + ], + [ + "where my phone", + "find_phone" + ], + [ + "where was the last place i had my phone", + "find_phone" + ], + [ + "can you find my iphone", + "find_phone" + ], + [ + "i can't find my phone", + "find_phone" + ], + [ + "call my phone, i can't find it", + "find_phone" + ], + [ + "can you find my lost phone", + "find_phone" + ], + [ + "do you know where my phone is", + "find_phone" + ], + [ + "can you help me find my cellphone", + "find_phone" + ], + [ + "can you call my cellphone", + "find_phone" + ], + [ + "my phone is lost - can you help me find it", + "find_phone" + ], + [ + "where is my phone", + "find_phone" + ], + [ + "ai can you help me find my phone", + "find_phone" + ], + [ + "ai, i lost my phone, help me find it please", + "find_phone" + ], + [ + "ai, please help me find my phone", + "find_phone" + ], + [ + "ai locate my phone", + "find_phone" + ], + [ + "ai find my phone", + "find_phone" + ], + [ + "how can i find my phone", + "find_phone" + ], + [ + "my phone is lost, can you help with that", + "find_phone" + ], + [ + "i need to locate my phone", + "find_phone" + ], + [ + "find out where my phone is", + "find_phone" + ], + [ + "help me find my phone", + "find_phone" + ], + [ + "locate my phone please", + "find_phone" + ], + [ + "what is the location of my phone", + "find_phone" + ], + [ + "my phone is currently lost", + "find_phone" + ], + [ + "i don't remember where my phone is", + "find_phone" + ], + [ + "locate my phone for me", + "find_phone" + ], + [ + "the location of my phone is unknown to me", + "find_phone" + ], + [ + "find my phone", + "find_phone" + ], + [ + "i need to find my phone", + "find_phone" + ], + [ + "please aid in my searching for my lost phone", + "find_phone" + ], + [ + "please help me locate my phone", + "find_phone" + ], + [ + "where did i last place my phone", + "find_phone" + ], + [ + "can you assist me in locating my phone", + "find_phone" + ], + [ + "is my phone in the house", + "find_phone" + ], + [ + "i lost my phone and need help retrieving it", + "find_phone" + ], + [ + "help me search for my phone", + "find_phone" + ], + [ + "misplaced my phone", + "find_phone" + ], + [ + "can you help locate my phone", + "find_phone" + ], + [ + "i need my phone, but can't find it", + "find_phone" + ], + [ + "i lost my phone and need assistance", + "find_phone" + ], + [ + "i don't know where my phone is", + "find_phone" + ], + [ + "i can't find my phone do you know where it is", + "find_phone" + ], + [ + "please tell me where my phone is", + "find_phone" + ], + [ + "can you help me find my phone", + "find_phone" + ], + [ + "do you know where my phone is located now", + "find_phone" + ], + [ + "can you track the location of my phone", + "find_phone" + ], + [ + "where can i find my phone", + "find_phone" + ], + [ + "can you locate my phone", + "find_phone" + ], + [ + "do you know where i left my phone", + "find_phone" + ], + [ + "where is my phone now", + "find_phone" + ], + [ + "alexa, tell me the location of my phone", + "find_phone" + ], + [ + "siri, where is my iphone", + "find_phone" + ], + [ + "siri, tell me where my iphone is", + "find_phone" + ], + [ + "siri, find my iphone", + "find_phone" + ], + [ + "help me locate my phone", + "find_phone" + ], + [ + "you need to help me find my cellphone", + "find_phone" + ], + [ + "help me find my cellphone", + "find_phone" + ], + [ + "please help me find my cellphone", + "find_phone" + ], + [ + "where did i put my phone", + "find_phone" + ], + [ + "tell me where my phone is", + "find_phone" + ], + [ + "please find my phone", + "find_phone" + ], + [ + "locate my phone", + "find_phone" + ], + [ + "i would like some help finding my phone", + "find_phone" + ], + [ + "i need to know where my phone is", + "find_phone" + ], + [ + "i seemed to misplaced my phone", + "find_phone" + ], + [ + "i lost my phone", + "find_phone" + ], + [ + "i need some help finding my phone", + "find_phone" + ], + [ + "can you locate my phone for me", + "find_phone" + ], + [ + "i don't know where i put my phone", + "find_phone" + ], + [ + "help find my phone", + "find_phone" + ], + [ + "i would like to know where my phone is", + "find_phone" + ], + [ + "i'd like help finding my fon", + "find_phone" + ], + [ + "i can't locate my phone", + "find_phone" + ], + [ + "can you tell me where i left my phone", + "find_phone" + ], + [ + "can you please locate my phone", + "find_phone" + ], + [ + "does ireland have any travel alerts i should be aware of", + "travel_alert" + ], + [ + "does north korea have any travel alerts i should be aware of", + "travel_alert" + ], + [ + "are there any travel alerts for russia", + "travel_alert" + ], + [ + "does spain have any travel alerts i should be aware of", + "travel_alert" + ], + [ + "are there any travel alerts for north korea", + "travel_alert" + ], + [ + "does macedonia have any travel alerts i should be aware of", + "travel_alert" + ], + [ + "are there any travel alerts for syria", + "travel_alert" + ], + [ + "are there any travel alerts for ukraine", + "travel_alert" + ], + [ + "does myanmar have any travel alerts i should be aware of", + "travel_alert" + ], + [ + "are there any travel alerts for china", + "travel_alert" + ], + [ + "is there a travel alert for russia", + "travel_alert" + ], + [ + "is there a travel alert for scotland", + "travel_alert" + ], + [ + "does russia have any travel alerts i should be aware of", + "travel_alert" + ], + [ + "is it safe to travel to iceland", + "travel_alert" + ], + [ + "is it safe to travel to russia", + "travel_alert" + ], + [ + "does italy have any travel alerts i should be aware of", + "travel_alert" + ], + [ + "does germany have any travel alerts i should be aware of", + "travel_alert" + ], + [ + "is there a travel alert for north korea", + "travel_alert" + ], + [ + "does china have any travel alerts i should be aware of", + "travel_alert" + ], + [ + "is there a travel alert for canada", + "travel_alert" + ], + [ + "is it safe to travel to norway", + "travel_alert" + ], + [ + "is it safe to travel to bermuda", + "travel_alert" + ], + [ + "is it safe to travel to argentina", + "travel_alert" + ], + [ + "does finland have any travel alerts i should be aware of", + "travel_alert" + ], + [ + "is there a travel alert for spain", + "travel_alert" + ], + [ + "have there been any travel alerts issued for france", + "travel_alert" + ], + [ + "tell me about any travel alerts issued for germany", + "travel_alert" + ], + [ + "are there any travel warnings for london", + "travel_alert" + ], + [ + "should i know about any travel alerts before traveling in the usa", + "travel_alert" + ], + [ + "are there any new travel warnings for the us", + "travel_alert" + ], + [ + "any travel advisories for portugal", + "travel_alert" + ], + [ + "can you tell me if germany issued any travel warnings", + "travel_alert" + ], + [ + "does france have any current travel alerts", + "travel_alert" + ], + [ + "does spain expect any travel alerts", + "travel_alert" + ], + [ + "i am going to australia and want to be notified of any travel alerts", + "travel_alert" + ], + [ + "i am going to be traveling in turkey, are there any alerts", + "travel_alert" + ], + [ + "are there any alerts for traveling in belize", + "travel_alert" + ], + [ + "what alerts are listed for traveling to paris", + "travel_alert" + ], + [ + "i need to know about travel alerts for mexico", + "travel_alert" + ], + [ + "what travel alerts are there in china", + "travel_alert" + ], + [ + "are there any alerts for travelling to beirut", + "travel_alert" + ], + [ + "argentina travel alert yes or no", + "travel_alert" + ], + [ + "does argentina have a travel alert", + "travel_alert" + ], + [ + "is there a travel alert in argentina", + "travel_alert" + ], + [ + "list of countries with travel alerts", + "travel_alert" + ], + [ + "can traveling to nepal be safe (what's safe in x)", + "travel_alert" + ], + [ + "will i be safe while traveling to lyon (will you be safe)", + "travel_alert" + ], + [ + "how safe is it to travel to mongolia (how safe is mongolia)", + "travel_alert" + ], + [ + "is it safe to travel to rio de janeiro (is rio de janeiro safe)", + "travel_alert" + ], + [ + "is traveling to dublin safe (will dublin be safe)", + "travel_alert" + ], + [ + "is new caledonia safer than other countries", + "travel_alert" + ], + [ + "is las vegas a safe place to visit", + "travel_alert" + ], + [ + "if i go to baltimore will i be safe", + "travel_alert" + ], + [ + "can you give me the travel alerts for jalisco, mexico", + "travel_alert" + ], + [ + "what are the latest travel alerts for dubai", + "travel_alert" + ], + [ + "are there any travel alerts i should know about for buenos aires, argentina", + "travel_alert" + ], + [ + "i need any relevant travel alerts for australia", + "travel_alert" + ], + [ + "are there travel notifications for columbia", + "travel_alert" + ], + [ + "where in the world is there a travel alert", + "travel_alert" + ], + [ + "what are today's travel advisories", + "travel_alert" + ], + [ + "can you list the places that there are travel alerts for", + "travel_alert" + ], + [ + "where are there current travel alerts", + "travel_alert" + ], + [ + "is there a travel alert for [country]", + "travel_alert" + ], + [ + "if i got to indonesia is it safe", + "travel_alert" + ], + [ + "i am thinking of going to brazil and was wondering if that is hazardous", + "travel_alert" + ], + [ + "would it be safe to go to columbia", + "travel_alert" + ], + [ + "is mexico a safe place", + "travel_alert" + ], + [ + "what potential hazards are there for going to spain", + "travel_alert" + ], + [ + "does a travel alert exist for that country", + "travel_alert" + ], + [ + "inform me if there's a travel alert for the country", + "travel_alert" + ], + [ + "does the country have a travel alert", + "travel_alert" + ], + [ + "i'd like to see if there's a travel alert for the country", + "travel_alert" + ], + [ + "can you tell me if there's a travel alert for that country", + "travel_alert" + ], + [ + "any travel alerts for south korea", + "travel_alert" + ], + [ + "are there travel alerts for europe", + "travel_alert" + ], + [ + "what are the currect travel alerts in africa", + "travel_alert" + ], + [ + "can i safely travel to brazil", + "travel_alert" + ], + [ + "does japan have any travel alerts i should be aware of", + "travel_alert" + ], + [ + "is there travel alerts for greece", + "travel_alert" + ], + [ + "how safe is it to travel to germany", + "travel_alert" + ], + [ + "is it safe to travel to china", + "travel_alert" + ], + [ + "is it safe to fly to russia", + "travel_alert" + ], + [ + "does france have any travel alerts i should be aware of", + "travel_alert" + ], + [ + "look for travel alerts for china", + "travel_alert" + ], + [ + "does south korea have any travel alerts i should be aware of", + "travel_alert" + ], + [ + "is it dangerous to travel to mexico", + "travel_alert" + ], + [ + "any travel alerts for canada", + "travel_alert" + ], + [ + "any travel alerts for that country i should know about", + "travel_alert" + ], + [ + "are there any travel alerts in that region", + "travel_alert" + ], + [ + "i need to know the travel alerts for kenya", + "travel_alert" + ], + [ + "any alerts for travelers to canada", + "travel_alert" + ], + [ + "should i be worried about any travel alerts for that country", + "travel_alert" + ], + [ + "look up travel alerts for canada", + "travel_alert" + ], + [ + "is there a travel alert for that country", + "travel_alert" + ], + [ + "find if there are any travel alerts for canada", + "travel_alert" + ], + [ + "search for any travel alerts for canada", + "travel_alert" + ], + [ + "does kenya have any travel alerts right now", + "travel_alert" + ], + [ + "check travel alerts for kenya", + "travel_alert" + ], + [ + "do i need to read any travel alerts for kenya", + "travel_alert" + ], + [ + "search for travel alerts for kenya", + "travel_alert" + ], + [ + "how do i put in a pto request for the first to the ninth", + "pto_request" + ], + [ + "am i allowed to put in a pto request for now to april", + "pto_request" + ], + [ + "is there a time i can put in a pto request for dec 2 to new years", + "pto_request" + ], + [ + "when can i put a pto request in for feb 22 to march 1", + "pto_request" + ], + [ + "i need a pto request on march 1 to 2", + "pto_request" + ], + [ + "on march 1-2 i want a pto request made for me", + "pto_request" + ], + [ + "schedule a pto request for me on march 1-2", + "pto_request" + ], + [ + "for march 1 to 2 make a pto request for me", + "pto_request" + ], + [ + "i want to schedule a pto request on march 1-2", + "pto_request" + ], + [ + "between october 7th and october 10th, i'd like for there to be a pto request for me", + "pto_request" + ], + [ + "i need a pto request for the dates jan 15th to jan 20th", + "pto_request" + ], + [ + "let's do a personal pto request for the dates may 12th to may 15th", + "pto_request" + ], + [ + "can you set up a pto request for me for march 20th to april 12th", + "pto_request" + ], + [ + "i'd like for their to be a pto request for me made for the dates june 4th to june 8th", + "pto_request" + ], + [ + "i'd like to go on vacation", + "pto_request" + ], + [ + "create a pto request for march 21st to march 26th", + "pto_request" + ], + [ + "i need to put in a pto request from the 8th to the 17th of january", + "pto_request" + ], + [ + "can you put in a pto request for the 5th of june to june 8th", + "pto_request" + ], + [ + "from december 22nd to the 25th, make me a pto request", + "pto_request" + ], + [ + "i need a pto request put in for the weekend of june 1st to june 2nd", + "pto_request" + ], + [ + "how do i schedule vacation days", + "pto_request" + ], + [ + "put in a pto request for march 4 to march 6", + "pto_request" + ], + [ + "i need to put in a pto request for march 4 to march 6", + "pto_request" + ], + [ + "how do i use my vacation days", + "pto_request" + ], + [ + "how do i put in for vacation", + "pto_request" + ], + [ + "how can i schedule a vacation request", + "pto_request" + ], + [ + "can you put in a pto request for march 4 to march 6 for me", + "pto_request" + ], + [ + "put in for time off march 4 to march 6", + "pto_request" + ], + [ + "where do i make a vacation request", + "pto_request" + ], + [ + "can i take pto form march 4 to march 6", + "pto_request" + ], + [ + "may i take a pto on february 7 and 8", + "pto_request" + ], + [ + "please tell me how to submit a vacation request", + "pto_request" + ], + [ + "can i take a pto for two days, starting on february 7", + "pto_request" + ], + [ + "i would like to know how to make a vacation request", + "pto_request" + ], + [ + "please tell me how to go about asking for a vacation", + "pto_request" + ], + [ + "can you tell me how to make a vacation request", + "pto_request" + ], + [ + "i would like to request a pto on february 7 and 8", + "pto_request" + ], + [ + "i would like to take a paid time off for february 7 and 8", + "pto_request" + ], + [ + "would you be able to tell me how to make a vacation request", + "pto_request" + ], + [ + "is it possible for me to take a pto for two days, starting february 7", + "pto_request" + ], + [ + "i want to put in a request for pto from may 5 to may 12", + "pto_request" + ], + [ + "i want you to make me a pto request for me for april twenty through may two", + "pto_request" + ], + [ + "i want to request pto from november 7 to 11", + "pto_request" + ], + [ + "how can i request a vacation from work", + "pto_request" + ], + [ + "how do i request vacation time", + "pto_request" + ], + [ + "what do i need to do to request vacation time off", + "pto_request" + ], + [ + "can you put in a pto request for me for july second and third", + "pto_request" + ], + [ + "what do i need to do if i want to ask for vacation time", + "pto_request" + ], + [ + "put in a pto request for me i want it for the ninth and the tenth of august", + "pto_request" + ], + [ + "how do i ask to have a vacation", + "pto_request" + ], + [ + "can you schedule a vacation for next week", + "pto_request" + ], + [ + "i'd like to make a vacation request", + "pto_request" + ], + [ + "what do i do to request a vacation", + "pto_request" + ], + [ + "how can i make a vacation request", + "pto_request" + ], + [ + "how do i book a vacation", + "pto_request" + ], + [ + "what is the process for requesting a vacation", + "pto_request" + ], + [ + "i want to schedule a vacation, can i request that through you", + "pto_request" + ], + [ + "can i put in a vacation request with you", + "pto_request" + ], + [ + "i need to set up a vacation request, what do i need to give you", + "pto_request" + ], + [ + "i need to take some time off, can i have the next week off", + "pto_request" + ], + [ + "what do i need to make a vacation request with you", + "pto_request" + ], + [ + "i need a pto request for march 3rd and 4th", + "pto_request" + ], + [ + "would it be possible to make a pto request for january 15th and 16th", + "pto_request" + ], + [ + "please put in a pto request for june 5th and 6th", + "pto_request" + ], + [ + "set a pto request for april 1st and 2nd", + "pto_request" + ], + [ + "i would like to make a pto request for july 17th and 18th", + "pto_request" + ], + [ + "submit a request for pto for the dates may 5th to the 12th", + "pto_request" + ], + [ + "please place a pto request for february 18th to the february 25th", + "pto_request" + ], + [ + "i would like you put in a pto request for the dates july 4th to the 8th", + "pto_request" + ], + [ + "i need to submit a request for pto for june 12th to june 14th", + "pto_request" + ], + [ + "can you put in a pto request for march 7th to the 9th", + "pto_request" + ], + [ + "i'd like to take a vacation day from 2/24 to 2/25", + "pto_request" + ], + [ + "i'd like to schedule some pto from 2/22 to 2/25", + "pto_request" + ], + [ + "make a pto request from april 2 to april 4", + "pto_request" + ], + [ + "request pto from march 8th until march 11th", + "pto_request" + ], + [ + "please request pto for me from march 3rd to march 7th", + "pto_request" + ], + [ + "could you submit a pto request for me from dates oct thirty to nov second", + "pto_request" + ], + [ + "could you submit a pto request for me from dates mar 3 to 9, please", + "pto_request" + ], + [ + "could you submit a pto request for me for dates april 21 to 30, please", + "pto_request" + ], + [ + "can you submit a pto request for me from dates nov 2 to 10, please", + "pto_request" + ], + [ + "could you submit a pto request for me for dates june 11 to 14", + "pto_request" + ], + [ + "please make a pto request for me from dates jan 21 to begininning of february", + "pto_request" + ], + [ + "please make a pto request for dates tomorrow to the twentieth", + "pto_request" + ], + [ + "please make a pto request from dates september 1 to 15", + "pto_request" + ], + [ + "make a pto request for dates november 11 to black friday", + "pto_request" + ], + [ + "make a pto request from dates may 3 to 9", + "pto_request" + ], + [ + "i want to put in a pto request for march 1-8", + "pto_request" + ], + [ + "how can i go about requesting a vacation", + "pto_request" + ], + [ + "can you put in a pto request for me from march 1-7", + "pto_request" + ], + [ + "please assist me by making a pto request for march 11-18", + "pto_request" + ], + [ + "would i be able to put in a pto request for march 21-26", + "pto_request" + ], + [ + "create for me a pto request for march 16-21", + "pto_request" + ], + [ + "what steps should i take if i want to request vacation", + "pto_request" + ], + [ + "tell me how to request vacation", + "pto_request" + ], + [ + "i'm intereted in requesting pto from april 1-5", + "pto_request" + ], + [ + "i need help making a pto request for march 3-10", + "pto_request" + ], + [ + "am i able to place a pto request for february 20-25", + "pto_request" + ], + [ + "can i request pto from march 9-16", + "pto_request" + ], + [ + "what is the protocol for requesting a vacation", + "pto_request" + ], + [ + "i want help making a pto request for february 22-27", + "pto_request" + ], + [ + "what steps should i take to improve my credit score", + "improve_credit_score" + ], + [ + "give me a recommendation to improve my credit score", + "improve_credit_score" + ], + [ + "what can i do to raise my credit score", + "improve_credit_score" + ], + [ + "steps to raise my credit score", + "improve_credit_score" + ], + [ + "is there a quick way to improve my credit score", + "improve_credit_score" + ], + [ + "what are ways to improve my credit", + "improve_credit_score" + ], + [ + "how to keep my credit score from going down", + "improve_credit_score" + ], + [ + "what are some ways to increase my credit", + "improve_credit_score" + ], + [ + "what can i do to keep my score from dropping", + "improve_credit_score" + ], + [ + "how do i build my credit score", + "improve_credit_score" + ], + [ + "how can i build my credit", + "improve_credit_score" + ], + [ + "what are ways to improve my credit score", + "improve_credit_score" + ], + [ + "i want to keep my credit score from going down, how do i do that", + "improve_credit_score" + ], + [ + "what can i do to improve my credit score", + "improve_credit_score" + ], + [ + "how can i keep my credit score from going down", + "improve_credit_score" + ], + [ + "how can i improve my credit score", + "improve_credit_score" + ], + [ + "how do i keep my credit score from dropping", + "improve_credit_score" + ], + [ + "how to improve my credit score", + "improve_credit_score" + ], + [ + "what are some way s i can do to improe my credit score", + "improve_credit_score" + ], + [ + "how to keep my credit up", + "improve_credit_score" + ], + [ + "how to keep my credit from dropping", + "improve_credit_score" + ], + [ + "i want to keep my credit from going down, how do i do this", + "improve_credit_score" + ], + [ + "my credit is going down what should i do", + "improve_credit_score" + ], + [ + "how do i maintain my credit score", + "improve_credit_score" + ], + [ + "how can i build credit", + "improve_credit_score" + ], + [ + "how do i keep good credit", + "improve_credit_score" + ], + [ + "what are ways to build credit", + "improve_credit_score" + ], + [ + "how to build up my credit score", + "improve_credit_score" + ], + [ + "what can i do to keep my credit in good standing", + "improve_credit_score" + ], + [ + "how do i keep my credit from lowering", + "improve_credit_score" + ], + [ + "give me some ways to build my credit score", + "improve_credit_score" + ], + [ + "what can i do to maintain good credit", + "improve_credit_score" + ], + [ + "can you tell me some tricks and tips i can use to see an increase in my credit score", + "improve_credit_score" + ], + [ + "are there ways for me to make my credit score better", + "improve_credit_score" + ], + [ + "i need a list of different methods for building my credit score", + "improve_credit_score" + ], + [ + "what are some of the ways that i can see an improvement in my credit score", + "improve_credit_score" + ], + [ + "what methods can i use to improve my credit score", + "improve_credit_score" + ], + [ + "what are some tips to build my credit score", + "improve_credit_score" + ], + [ + "help me build my credit score by showing me some ways on how to", + "improve_credit_score" + ], + [ + "show me some ways to build my credit score", + "improve_credit_score" + ], + [ + "what are the best ways to build my credit score", + "improve_credit_score" + ], + [ + "what are some steps to building my credit score", + "improve_credit_score" + ], + [ + "will doing this hurt my credit score", + "improve_credit_score" + ], + [ + "tell me all the ways my credit score can get hurt", + "improve_credit_score" + ], + [ + "i'm not sure if this will hurt my credit score", + "improve_credit_score" + ], + [ + "i want to find out if this will hurt my credit", + "improve_credit_score" + ], + [ + "tell me if the following thing can hurt my credit score", + "improve_credit_score" + ], + [ + "i want to know if opening a new account will decrease my credit score", + "improve_credit_score" + ], + [ + "i heard that opening a new account will decrease my credit score, is it true", + "improve_credit_score" + ], + [ + "is it true that opening a new account can decrease your credit score", + "improve_credit_score" + ], + [ + "please confirm that opening a new account can decrease your credit score", + "improve_credit_score" + ], + [ + "tell me if opening a new account will decrease my credit score", + "improve_credit_score" + ], + [ + "what are some mistakes to avoid so that my credit score stays high", + "improve_credit_score" + ], + [ + "how can i protect my credit rating", + "improve_credit_score" + ], + [ + "tell me some things i can do to secure my credit rating", + "improve_credit_score" + ], + [ + "what are some ways to keep my credit score up", + "improve_credit_score" + ], + [ + "give me tips on maintaining good credit", + "improve_credit_score" + ], + [ + "what factors can ruin a credit score", + "improve_credit_score" + ], + [ + "pull up ways to lower credit score", + "improve_credit_score" + ], + [ + "is it possible to lower my credit score by doing this", + "improve_credit_score" + ], + [ + "what can harm my credit score", + "improve_credit_score" + ], + [ + "are there any new harmful things that could affect my credit score", + "improve_credit_score" + ], + [ + "how can i make my credit score better", + "improve_credit_score" + ], + [ + "what steps can i take to make sure my credit score doesn't go down", + "improve_credit_score" + ], + [ + "how can i ensure my credit score doesn't drop", + "improve_credit_score" + ], + [ + "i'd like to improve my credit score", + "improve_credit_score" + ], + [ + "what do i do to stop my credit score from going lower", + "improve_credit_score" + ], + [ + "how do i make my credit score better", + "improve_credit_score" + ], + [ + "how can i go about improving my credit score", + "improve_credit_score" + ], + [ + "i'd like to make my credit score better", + "improve_credit_score" + ], + [ + "i'd like to find ways to improve my credit score", + "improve_credit_score" + ], + [ + "how do i prevent my credit score from lowering", + "improve_credit_score" + ], + [ + "how can i stop my credit score from dropping", + "improve_credit_score" + ], + [ + "tell me how to improve my credit score", + "improve_credit_score" + ], + [ + "ways to build credit", + "improve_credit_score" + ], + [ + "tell me ways to improve my credit score", + "improve_credit_score" + ], + [ + "how can i hurt my credit score", + "improve_credit_score" + ], + [ + "does carrying a balance hurt my credit score", + "improve_credit_score" + ], + [ + "would being late hurt my credit", + "improve_credit_score" + ], + [ + "does medical debt hurt my credit score", + "improve_credit_score" + ], + [ + "would late payments hurt my credit", + "improve_credit_score" + ], + [ + "can i hurt my credit score", + "improve_credit_score" + ], + [ + "how is the credit score hurt", + "improve_credit_score" + ], + [ + "so how can i hurt my credit score", + "improve_credit_score" + ], + [ + "will checking your credit lower my score", + "improve_credit_score" + ], + [ + "is it true a hard pull hurts my credit score", + "improve_credit_score" + ], + [ + "what lowers you credit score", + "improve_credit_score" + ], + [ + "can i harm my credit if i miss a car payment", + "improve_credit_score" + ], + [ + "will a loan lower my credit score", + "improve_credit_score" + ], + [ + "how do i make sure my credit doesn't fall", + "improve_credit_score" + ], + [ + "what's the best way to build credit", + "improve_credit_score" + ], + [ + "can i improve my credit score", + "improve_credit_score" + ], + [ + "what lowers credit score", + "improve_credit_score" + ], + [ + "how do i build credit", + "improve_credit_score" + ], + [ + "how to improve a credit score", + "improve_credit_score" + ], + [ + "how do i improve my credit score", + "improve_credit_score" + ], + [ + "how to protect my credit score", + "improve_credit_score" + ], + [ + "can i protect my credit score", + "improve_credit_score" + ], + [ + "how to keep credit score high", + "improve_credit_score" + ], + [ + "do you know if bouncing one check on your checking account can hurt your credit score or not", + "improve_credit_score" + ], + [ + "lets hear an interesting fact about funko pops", + "fun_fact" + ], + [ + "know any interesting facts", + "fun_fact" + ], + [ + "what is one fun fact", + "fun_fact" + ], + [ + "tell me a fact", + "fun_fact" + ], + [ + "lets hear a fact", + "fun_fact" + ], + [ + "any unique trivia about beats headphones", + "fun_fact" + ], + [ + "tell me a fact i may not know", + "fun_fact" + ], + [ + "what is one thing i might not know about nike shoes", + "fun_fact" + ], + [ + "tell me something interesting about sperm whales", + "fun_fact" + ], + [ + "i want to know a fun fact about pluto", + "fun_fact" + ], + [ + "what's an interesting fact about flamingos", + "fun_fact" + ], + [ + "tell me a random fact", + "fun_fact" + ], + [ + "have any cool facts on reptiles", + "fun_fact" + ], + [ + "i want to learn an interesting fact about cats", + "fun_fact" + ], + [ + "read me some fun facts", + "fun_fact" + ], + [ + "tell me a few facts about cats", + "fun_fact" + ], + [ + "help me learn something intriguing about turtles", + "fun_fact" + ], + [ + "read me some interesting information about cats", + "fun_fact" + ], + [ + "what's an interesting tidbit about rivers", + "fun_fact" + ], + [ + "can you tell me something i don't know about banks", + "fun_fact" + ], + [ + "can you tell me a fun fact regarding cars", + "fun_fact" + ], + [ + "do you know any fun facts about shampoo", + "fun_fact" + ], + [ + "what's a fun fact about eggs", + "fun_fact" + ], + [ + "what's a neat fact about twinkies", + "fun_fact" + ], + [ + "i'd like to hear a fun fact about adult entertainment", + "fun_fact" + ], + [ + "tell me something neat about slinkies", + "fun_fact" + ], + [ + "tell me something fun about gravity", + "fun_fact" + ], + [ + "say trivia about lebron james", + "fun_fact" + ], + [ + "tell me a fun fact about mt everest", + "fun_fact" + ], + [ + "give me some trivia about lebron james", + "fun_fact" + ], + [ + "what are some trivia questions about lebron james", + "fun_fact" + ], + [ + "repeat that fun fact about mt everest", + "fun_fact" + ], + [ + "what is a fun fact about mt everest", + "fun_fact" + ], + [ + "say a fun fact about mt everest", + "fun_fact" + ], + [ + "do you know any fun facts about mt everest", + "fun_fact" + ], + [ + "explain some trivia about lebron james", + "fun_fact" + ], + [ + "communicate trivia about lebron james", + "fun_fact" + ], + [ + "what are fun facts about lighthouses", + "fun_fact" + ], + [ + "can you tell me fun facts about lighthouses", + "fun_fact" + ], + [ + "tell me interesting facts about lighthouses", + "fun_fact" + ], + [ + "tell me a fun trivia bit about artificial intelligence", + "fun_fact" + ], + [ + "do you know any trivia about the ocean", + "fun_fact" + ], + [ + "tell me something neat about the ocean floor", + "fun_fact" + ], + [ + "i'd like to hear a fun fact about the nfl", + "fun_fact" + ], + [ + "i want to hear an interesting fact about dinosaurs", + "fun_fact" + ], + [ + "please tell me an interesting tidbit about the roman empire", + "fun_fact" + ], + [ + "can you share some trivia with me about us history", + "fun_fact" + ], + [ + "do you know any fun facts about the ocean", + "fun_fact" + ], + [ + "i want to learn a neat fact about black holes", + "fun_fact" + ], + [ + "can you give me a good piece of trivia about the rainforest", + "fun_fact" + ], + [ + "tell me something interesting about outer space", + "fun_fact" + ], + [ + "share with me a fun fact about outer space", + "fun_fact" + ], + [ + "tell me a neat fact about the ocean", + "fun_fact" + ], + [ + "tell me some interesting trivia about dinosaurs", + "fun_fact" + ], + [ + "i want to hear a fun fact about american presidents", + "fun_fact" + ], + [ + "give me an interesting fact about antarctica", + "fun_fact" + ], + [ + "can you share something interesting about world war one", + "fun_fact" + ], + [ + "i want to know some trivia about our solar system", + "fun_fact" + ], + [ + "tell me a fun fact about the olympics", + "fun_fact" + ], + [ + "tell me something cool about elephants", + "fun_fact" + ], + [ + "name some awesome things about dogs", + "fun_fact" + ], + [ + "list some neat stuff about rats", + "fun_fact" + ], + [ + "what's a good trivia fact about china", + "fun_fact" + ], + [ + "give me a fun fact about otters", + "fun_fact" + ], + [ + "do you know any fun facts about australian football", + "fun_fact" + ], + [ + "tell me some trivia about birds", + "fun_fact" + ], + [ + "do you know any trivia about ostriches", + "fun_fact" + ], + [ + "what's a good fun fact about great britain", + "fun_fact" + ], + [ + "give me trivia about bats", + "fun_fact" + ], + [ + "fun facts about tigers", + "fun_fact" + ], + [ + "tell me something interesting about los angeles", + "fun_fact" + ], + [ + "what's a fun fact about mythology", + "fun_fact" + ], + [ + "what's a fun fact relating to elephants", + "fun_fact" + ], + [ + "what's a cool and interesting thing about dogs", + "fun_fact" + ], + [ + "i'd like to hear some trivia about florida", + "fun_fact" + ], + [ + "tell me a fun fact about butterflies", + "fun_fact" + ], + [ + "please give me a really impressive piece of trivia about bubble gum", + "fun_fact" + ], + [ + "what is the most fun fact you know about the film industry", + "fun_fact" + ], + [ + "please tell me trivia about hamburgers", + "fun_fact" + ], + [ + "what is the most unique piece of trivia relating to cameras", + "fun_fact" + ], + [ + "what's a fun fact about elephants", + "fun_fact" + ], + [ + "tell me some amazing trivia about radios", + "fun_fact" + ], + [ + "tell me a fun fact about computer", + "fun_fact" + ], + [ + "please tell me a really fun fact about facebook", + "fun_fact" + ], + [ + "can you tell me the most interesting fact about resistors", + "fun_fact" + ], + [ + "what is an amazing trivia fact relating to 3d printing", + "fun_fact" + ], + [ + "tell me a fun fact about tigers", + "fun_fact" + ], + [ + "can you tell me a fun fact about elephants", + "fun_fact" + ], + [ + "what is a fun fact about dogs", + "fun_fact" + ], + [ + "what would be a fun fact about cats", + "fun_fact" + ], + [ + "tell me all about the trivia with friends", + "fun_fact" + ], + [ + "i need to know trivia on star wars", + "fun_fact" + ], + [ + "lets fin out some fun facts about humans", + "fun_fact" + ], + [ + "i want to know all about trivia for the office", + "fun_fact" + ], + [ + "explain to me the trivia on twilight", + "fun_fact" + ], + [ + "lets go threw some trivia on sports", + "fun_fact" + ], + [ + "trivia about something,tell me some", + "fun_fact" + ], + [ + "tell me about something some trivia", + "fun_fact" + ], + [ + "tell me some something trivia", + "fun_fact" + ], + [ + "about something,tell me some trivia", + "fun_fact" + ], + [ + "adjust your language setting to english", + "change_language" + ], + [ + "change and set your language setting to english", + "change_language" + ], + [ + "set your language setting to english", + "change_language" + ], + [ + "make your preferred language english", + "change_language" + ], + [ + "i would like to have language set to spanish, please", + "change_language" + ], + [ + "please give me your responses only in french from now on", + "change_language" + ], + [ + "can we speak in english rather than zulu", + "change_language" + ], + [ + "i would like to change your language from portuguese to italian", + "change_language" + ], + [ + "change the response language to french please", + "change_language" + ], + [ + "what languages can i switch to for your responses", + "change_language" + ], + [ + "can you give me the answers in italian instead of english", + "change_language" + ], + [ + "i want us to speak to each other in spanish from now on", + "change_language" + ], + [ + "switch the language for your responses, please", + "change_language" + ], + [ + "let's speak in mandarin instead of english", + "change_language" + ], + [ + "how can we start communicating in french rather than english", + "change_language" + ], + [ + "please change the language that you are responding in", + "change_language" + ], + [ + "how do i change the language that your responses are delivered in", + "change_language" + ], + [ + "i need to switch the language for your responses", + "change_language" + ], + [ + "i need to change language to spanish", + "change_language" + ], + [ + "fix my language to spanish", + "change_language" + ], + [ + "speak in the language english", + "change_language" + ], + [ + "i need to change my speaking to spanish", + "change_language" + ], + [ + "i want to switch speaking to french", + "change_language" + ], + [ + "replace my language to chinese", + "change_language" + ], + [ + "can you change your language to japanese", + "change_language" + ], + [ + "change your language to spanish please", + "change_language" + ], + [ + "can you translate that to french", + "change_language" + ], + [ + "please respond to me in spanish", + "change_language" + ], + [ + "can you speak to me using japanese", + "change_language" + ], + [ + "i would appreciate it if you could talk to me in french", + "change_language" + ], + [ + "do you know french", + "change_language" + ], + [ + "can we talk in french", + "change_language" + ], + [ + "can you talk to me in italian", + "change_language" + ], + [ + "can you speak to me in french", + "change_language" + ], + [ + "can you speak to me in chinese", + "change_language" + ], + [ + "talk to me in italian from now on", + "change_language" + ], + [ + "can i start talking to you in french", + "change_language" + ], + [ + "can you talk to me in french", + "change_language" + ], + [ + "can you talk in spanish", + "change_language" + ], + [ + "can i start talking to you in spanish", + "change_language" + ], + [ + "please talk to me in spanish", + "change_language" + ], + [ + "can you understand me, if i start talking in italian", + "change_language" + ], + [ + "is it ok if i start speaking to you in german", + "change_language" + ], + [ + "can i give you instructions in japanese", + "change_language" + ], + [ + "talk to me in spanish from now on", + "change_language" + ], + [ + "can you talk to me in chinese", + "change_language" + ], + [ + "i am going to switch to greek", + "change_language" + ], + [ + "i want to use spanish as my language", + "change_language" + ], + [ + "i will be speaking chinese going forward", + "change_language" + ], + [ + "the language i am using will now be italian", + "change_language" + ], + [ + "i am changing over to italian now", + "change_language" + ], + [ + "is there an option to speak only in mandarin", + "change_language" + ], + [ + "let's go ahead and switch your language", + "change_language" + ], + [ + "i want to edit the language", + "change_language" + ], + [ + "is it possible to only talk in spanish", + "change_language" + ], + [ + "let me talk to you in greek", + "change_language" + ], + [ + "change the native language", + "change_language" + ], + [ + "can i speak to you in german", + "change_language" + ], + [ + "is there an option to change the language", + "change_language" + ], + [ + "i need to change the language to french", + "change_language" + ], + [ + "how can i adjust the spoken language", + "change_language" + ], + [ + "answer me in french", + "change_language" + ], + [ + "please respond in latin from now on", + "change_language" + ], + [ + "talk to me in italian", + "change_language" + ], + [ + "let\u2019s chat using spanish", + "change_language" + ], + [ + "i need the language set to swahili", + "change_language" + ], + [ + "change the language you're using to american english", + "change_language" + ], + [ + "switch the language setting over to german", + "change_language" + ], + [ + "change language to french, please", + "change_language" + ], + [ + "can you swap the language to afrikaans for me", + "change_language" + ], + [ + "i want you to address me in italian", + "change_language" + ], + [ + "i want you to speak in french", + "change_language" + ], + [ + "start talking in spanish", + "change_language" + ], + [ + "can you speak in french", + "change_language" + ], + [ + "i want to hear from you in german", + "change_language" + ], + [ + "change your language setting to german", + "change_language" + ], + [ + "alter your language to french", + "change_language" + ], + [ + "change your language prefrences japanese", + "change_language" + ], + [ + "change your language setting to chinese", + "change_language" + ], + [ + "alter your language choice to dutch", + "change_language" + ], + [ + "change your language", + "change_language" + ], + [ + "can i change your language", + "change_language" + ], + [ + "select a new language", + "change_language" + ], + [ + "i want to put you in a different language", + "change_language" + ], + [ + "let's change the language for you", + "change_language" + ], + [ + "set default language to english", + "change_language" + ], + [ + "you should respond in english", + "change_language" + ], + [ + "please respond in english", + "change_language" + ], + [ + "change your spoken language to english", + "change_language" + ], + [ + "change language setting to english", + "change_language" + ], + [ + "switch your language setting to english", + "change_language" + ], + [ + "i want your language changed to chinese", + "change_language" + ], + [ + "can you start talking to me in spanish from here on out", + "change_language" + ], + [ + "please speak to me in chinese", + "change_language" + ], + [ + "please make your language setting french", + "change_language" + ], + [ + "please speak german to me from now on", + "change_language" + ], + [ + "i need your language setting to be russian now", + "change_language" + ], + [ + "please change your language setting to spanish", + "change_language" + ], + [ + "i want your responses to be in french", + "change_language" + ], + [ + "from now on, i want you to answer me using japanese", + "change_language" + ], + [ + "on what date do i get paid", + "payday" + ], + [ + "what day do i get my paycheck", + "payday" + ], + [ + "i need to know when to expect my next paycheck", + "payday" + ], + [ + "tell me when my next paycheck will arrive", + "payday" + ], + [ + "what date do i get my next paycheck", + "payday" + ], + [ + "when will i be getting my next paycheck", + "payday" + ], + [ + "when's the the last time i was paid", + "payday" + ], + [ + "what date did i receive my last paycheck", + "payday" + ], + [ + "when was my last payday", + "payday" + ], + [ + "when was my last paycheck", + "payday" + ], + [ + "when's the last time i got a paycheck", + "payday" + ], + [ + "i need to know when i was paid last", + "payday" + ], + [ + "tell me when i last got paid", + "payday" + ], + [ + "tell me when i received my last paycheck", + "payday" + ], + [ + "i want to know when i was last paid", + "payday" + ], + [ + "when did i get my last paycheck", + "payday" + ], + [ + "please give me the expected arrival date for my next paycheck", + "payday" + ], + [ + "tell me when i received my most recent paycheck", + "payday" + ], + [ + "do you know when i can expect my next paycheck", + "payday" + ], + [ + "i need to know when i got latest paycheck", + "payday" + ], + [ + "tell me when my next paycheck is set to arrive", + "payday" + ], + [ + "can you confirm the date my last paycheck was received", + "payday" + ], + [ + "can you tell me what day my next paycheck will come", + "payday" + ], + [ + "what is the date of my last paycheck", + "payday" + ], + [ + "i need to know the date my next paycheck will be here", + "payday" + ], + [ + "please find the receipt date for my last paycheck", + "payday" + ], + [ + "when does my paycheck arrive", + "payday" + ], + [ + "i want to know when to expect my next paycheck", + "payday" + ], + [ + "will i get my paycheck soon", + "payday" + ], + [ + "what date will my next paycheck be here", + "payday" + ], + [ + "is my paycheck arriving soon", + "payday" + ], + [ + "what day will my paycheck come", + "payday" + ], + [ + "did i receive my paycheck this week", + "payday" + ], + [ + "when will my next paycheck be", + "payday" + ], + [ + "when am i paid", + "payday" + ], + [ + "when is my pay period", + "payday" + ], + [ + "how much longer until i have a direct deposit", + "payday" + ], + [ + "how many days until my next payday", + "payday" + ], + [ + "when will my paycheck be available", + "payday" + ], + [ + "my next paycheck is available when", + "payday" + ], + [ + "when will i recieve my next paycheck", + "payday" + ], + [ + "let me know when i'm going to be paid", + "payday" + ], + [ + "can you tell me when i'm supposed to get paid", + "payday" + ], + [ + "tell me when i get paid", + "payday" + ], + [ + "how much longer until the next payday", + "payday" + ], + [ + "when will i recieve another paycheck", + "payday" + ], + [ + "what date is another paycheck due", + "payday" + ], + [ + "when do i get paid again", + "payday" + ], + [ + "when should another paycheck arrive", + "payday" + ], + [ + "when is my next paycheck due", + "payday" + ], + [ + "when will i be paid again", + "payday" + ], + [ + "which date is my next paycheck due", + "payday" + ], + [ + "what is my next payday", + "payday" + ], + [ + "find my next payday", + "payday" + ], + [ + "next payday please", + "payday" + ], + [ + "my next payday", + "payday" + ], + [ + "what is the date i get paid", + "payday" + ], + [ + "day that i get paid", + "payday" + ], + [ + "what is my pay date", + "payday" + ], + [ + "next payday", + "payday" + ], + [ + "what day do i get paid", + "payday" + ], + [ + "what day is my next payday", + "payday" + ], + [ + "when is the next day i get paid", + "payday" + ], + [ + "when will i get paid next", + "payday" + ], + [ + "when's my next paycheck", + "payday" + ], + [ + "how long is it until payday", + "payday" + ], + [ + "when should i expect my next paycheck", + "payday" + ], + [ + "when is the next time i get paid", + "payday" + ], + [ + "what day will i get paid", + "payday" + ], + [ + "when is my next direct deposit from my job", + "payday" + ], + [ + "when is payday", + "payday" + ], + [ + "when is my paycheck coming", + "payday" + ], + [ + "when was the last date that i got a paycheck", + "payday" + ], + [ + "when was i last paid", + "payday" + ], + [ + "when was the last date that i got paid", + "payday" + ], + [ + "when was the date that i was last paid", + "payday" + ], + [ + "when was the last date that i was paid", + "payday" + ], + [ + "when am i due for my next paycheck", + "payday" + ], + [ + "what time is my next paycheck coming", + "payday" + ], + [ + "when will my next paycheck come", + "payday" + ], + [ + "when will i get my next paycheck", + "payday" + ], + [ + "when is my next paycheck", + "payday" + ], + [ + "tell me my next paycheck", + "payday" + ], + [ + "when did i get paid the last time", + "payday" + ], + [ + "tell me when my next paycheck will be here", + "payday" + ], + [ + "when was the last time i got paid", + "payday" + ], + [ + "i wanna know when i was paid last", + "payday" + ], + [ + "when was my last payment", + "payday" + ], + [ + "when was i paid last", + "payday" + ], + [ + "i wanna know my next paycheck", + "payday" + ], + [ + "tell me on what day did i get paid last", + "payday" + ], + [ + "remind me of the date of my last paycheck", + "payday" + ], + [ + "on what date did i get paid last", + "payday" + ], + [ + "when did they deposit my last salary", + "payday" + ], + [ + "when was i paid the last time", + "payday" + ], + [ + "when's payday", + "payday" + ], + [ + "when's my next payday", + "payday" + ], + [ + "when do i get paid", + "payday" + ], + [ + "what day do i get paid next", + "payday" + ], + [ + "when do i get my next check", + "payday" + ], + [ + "tell me about today weather", + "replacement_card_duration" + ], + [ + "can my debit card be replaced quickly", + "replacement_card_duration" + ], + [ + "how long does visa take to get me a new card", + "replacement_card_duration" + ], + [ + "is my card made immedietly after reporting stolen", + "replacement_card_duration" + ], + [ + "can i replace a stolen card soon", + "replacement_card_duration" + ], + [ + "how long to replace a credit card", + "replacement_card_duration" + ], + [ + "how soon until you send me replacement card", + "replacement_card_duration" + ], + [ + "when will you mail me a replacement card", + "replacement_card_duration" + ], + [ + "how long until you send me a replacement card", + "replacement_card_duration" + ], + [ + "when will you send me a replacement card", + "replacement_card_duration" + ], + [ + "when can you send me a replacement card", + "replacement_card_duration" + ], + [ + "how long will delivery of a new card take", + "replacement_card_duration" + ], + [ + "when can i expect my replacement card", + "replacement_card_duration" + ], + [ + "how long can i expect to wait for a new card", + "replacement_card_duration" + ], + [ + "when do they mail me a replacement card", + "replacement_card_duration" + ], + [ + "when does the replacement card arrive", + "replacement_card_duration" + ], + [ + "if my credit card was stolen, how long will it take to replace", + "replacement_card_duration" + ], + [ + "how long will i have to wait until they replace a stolen credit card", + "replacement_card_duration" + ], + [ + "how long does it take to replace a stolen credit card", + "replacement_card_duration" + ], + [ + "how long will a new card take to come in the mail", + "replacement_card_duration" + ], + [ + "what's the timeline on replacing a stolen credit card", + "replacement_card_duration" + ], + [ + "do i get a replacement card mailed, and when", + "replacement_card_duration" + ], + [ + "what's the transit time on a new card", + "replacement_card_duration" + ], + [ + "will you notify me when my new card is on the way", + "replacement_card_duration" + ], + [ + "what is the quickest way to get a new card", + "replacement_card_duration" + ], + [ + "what is the turn around for a new card", + "replacement_card_duration" + ], + [ + "how long will it take to get a new card", + "replacement_card_duration" + ], + [ + "when can i expect my new card", + "replacement_card_duration" + ], + [ + "my new card will arrive when", + "replacement_card_duration" + ], + [ + "my new card arrives in the post when", + "replacement_card_duration" + ], + [ + "how long til my new card arrives by mail", + "replacement_card_duration" + ], + [ + "my new card will get here in the mail when", + "replacement_card_duration" + ], + [ + "if i ordered a new card, how long til it comes", + "replacement_card_duration" + ], + [ + "when can i expect my new card to get here", + "replacement_card_duration" + ], + [ + "when will my new card come in the mail", + "replacement_card_duration" + ], + [ + "when will my new visa get here", + "replacement_card_duration" + ], + [ + "my card is coming by mail how long will that take", + "replacement_card_duration" + ], + [ + "how long will it take a new card to come in the mail", + "replacement_card_duration" + ], + [ + "what date will my card be here", + "replacement_card_duration" + ], + [ + "how many days do i have to wait for my card", + "replacement_card_duration" + ], + [ + "when will me new card arrive", + "replacement_card_duration" + ], + [ + "how long does it take to get a replacement card", + "replacement_card_duration" + ], + [ + "if i order a new card how long would it take", + "replacement_card_duration" + ], + [ + "if i need a new card mailed how long will it take", + "replacement_card_duration" + ], + [ + "how long will it be for me to get a new card", + "replacement_card_duration" + ], + [ + "how long will a new card take to reach me", + "replacement_card_duration" + ], + [ + "time to get replacement credit card for stolen one", + "replacement_card_duration" + ], + [ + "how long it takes to get a new replacement card", + "replacement_card_duration" + ], + [ + "mailing to me for a new card takes how long", + "replacement_card_duration" + ], + [ + "mailing a new card to me takes how long", + "replacement_card_duration" + ], + [ + "for anew card to be mailed to me, how long does it take", + "replacement_card_duration" + ], + [ + "it takes how long to mail me a new card", + "replacement_card_duration" + ], + [ + "a new cards takes how long to mail to me", + "replacement_card_duration" + ], + [ + "average time to receive new card", + "replacement_card_duration" + ], + [ + "how long to get a new credit card", + "replacement_card_duration" + ], + [ + "how many days before my credit card arrives", + "replacement_card_duration" + ], + [ + "will my credit card be mailed soon", + "replacement_card_duration" + ], + [ + "when will i get my new credit card", + "replacement_card_duration" + ], + [ + "my credit card was stolen; how long before a new one will arrive", + "replacement_card_duration" + ], + [ + "my credit card has been stolen and i want to know how long it will be before i can get a new one", + "replacement_card_duration" + ], + [ + "how long will it take for me to get a new credit card to replace the one that was stolen", + "replacement_card_duration" + ], + [ + "my credit card got stolen and i need to know how long it will be before a new on arrives", + "replacement_card_duration" + ], + [ + "how many days will it take to get a new credit card to replace the one stolen from me", + "replacement_card_duration" + ], + [ + "what's the expected time to have a stolen credit card replaced", + "replacement_card_duration" + ], + [ + "how long does it take to replace a lost card", + "replacement_card_duration" + ], + [ + "how long should i expect to wait for my new card in the mail", + "replacement_card_duration" + ], + [ + "how long should i wait to get my new card when my old one was stolen", + "replacement_card_duration" + ], + [ + "what's the typical lag time in receiving a new credit card when your previous one was lost", + "replacement_card_duration" + ], + [ + "what's the usual time to get a new card when your previous one was lost", + "replacement_card_duration" + ], + [ + "how long will it take before the postal service delivers my new card", + "replacement_card_duration" + ], + [ + "what's the typical time it takes for a new card to arrive", + "replacement_card_duration" + ], + [ + "when will i get a replacement card for a lost one", + "replacement_card_duration" + ], + [ + "what's the eta for a new card to come in the mail", + "replacement_card_duration" + ], + [ + "my last card was stolen and i want to know how long until i get my new one", + "replacement_card_duration" + ], + [ + "how many days till i get a new card to replace the stolen one", + "replacement_card_duration" + ], + [ + "what's the average time it takes for a new card to arrive", + "replacement_card_duration" + ], + [ + "how long until the credit card company replaces my lost card", + "replacement_card_duration" + ], + [ + "how long does it take to get a replacement credit card when your last one was stolen", + "replacement_card_duration" + ], + [ + "how soon will i be sent a new card", + "replacement_card_duration" + ], + [ + "how many days does it take to receive a new card", + "replacement_card_duration" + ], + [ + "how long does it take you to mail me a new card", + "replacement_card_duration" + ], + [ + "how soon will you mail me a new card", + "replacement_card_duration" + ], + [ + "what is the earliest date i can get my new card", + "replacement_card_duration" + ], + [ + "whats the wait time for a replacement card", + "replacement_card_duration" + ], + [ + "how long until i get a replacement card", + "replacement_card_duration" + ], + [ + "how long before i can get a replacement card", + "replacement_card_duration" + ], + [ + "when will a replacement card get here", + "replacement_card_duration" + ], + [ + "how long is the shipping for my replacement card", + "replacement_card_duration" + ], + [ + "what date will my replacement card arrive on", + "replacement_card_duration" + ], + [ + "is my replacement card coming soon", + "replacement_card_duration" + ], + [ + "when will my card replacement arrive", + "replacement_card_duration" + ], + [ + "when will my card come", + "replacement_card_duration" + ], + [ + "when should i expect my replacement card", + "replacement_card_duration" + ], + [ + "when will my replacement card get mailed", + "replacement_card_duration" + ], + [ + "do you know when my card will come in", + "replacement_card_duration" + ], + [ + "do when you when my replacement card will get mailed", + "replacement_card_duration" + ], + [ + "what date will my replacement card get mailed", + "replacement_card_duration" + ], + [ + "what would be the estimated time from to get a new card mailed to me", + "replacement_card_duration" + ], + [ + "what is the time frame to get a new card mailed to me", + "replacement_card_duration" + ], + [ + "how long until i can expect my new card to get mailed to me", + "replacement_card_duration" + ], + [ + "what time is it in punta gorda, florida", + "time" + ], + [ + "what time is it in glenwood springs, co", + "time" + ], + [ + "what time is it in fredericksburg, tx", + "time" + ], + [ + "what time is it in las vegas, nv", + "time" + ], + [ + "what time is it in houston, tx", + "time" + ], + [ + "i need to know the current time in the central timezone", + "time" + ], + [ + "would you tell me the current time in the eastern timezone", + "time" + ], + [ + "let me know the current time in the central timezone", + "time" + ], + [ + "tell me what time it is in the central timezone", + "time" + ], + [ + "i am needing to know the current time in the eastern timezone", + "time" + ], + [ + "what is the time right now in the hst timezone", + "time" + ], + [ + "can you tell me the current time", + "time" + ], + [ + "what is the current time in cst", + "time" + ], + [ + "i need to know what time it is in florida", + "time" + ], + [ + "what is the time right now", + "time" + ], + [ + "in the mst time zone, what time is it right now", + "time" + ], + [ + "tell me what time it is right now", + "time" + ], + [ + "can you tell me the current time in the pacific timezone", + "time" + ], + [ + "look up the time in california", + "time" + ], + [ + "what is the current est time", + "time" + ], + [ + "can you tell me what time it is please", + "time" + ], + [ + "what time is it getting to be", + "time" + ], + [ + "what time do you have on your watch", + "time" + ], + [ + "what time would it be in rome right now", + "time" + ], + [ + "what's the time in london", + "time" + ], + [ + "what's the time set to in florida right now", + "time" + ], + [ + "what time is it currently in istanbul", + "time" + ], + [ + "what time is it right now in paris", + "time" + ], + [ + "what's the time right now", + "time" + ], + [ + "current time, please", + "time" + ], + [ + "would you mind telling me the time", + "time" + ], + [ + "can you give me the time", + "time" + ], + [ + "please let me know what time it is", + "time" + ], + [ + "what is the exact time right now in the hawaii time zone", + "time" + ], + [ + "what is the time", + "time" + ], + [ + "what is the time right now in the peruvian time zone", + "time" + ], + [ + "what is the exact time", + "time" + ], + [ + "what time is it exactly in the new zealand time zone", + "time" + ], + [ + "what is the exact time in the ist time zone", + "time" + ], + [ + "what is the time in the utc timezone", + "time" + ], + [ + "what time is it exactly", + "time" + ], + [ + "what is the time now", + "time" + ], + [ + "what time is it in russia", + "time" + ], + [ + "what time is it", + "time" + ], + [ + "what is the time in sydney, australia", + "time" + ], + [ + "what time is it in honolulu", + "time" + ], + [ + "what's the current time in greenwhich", + "time" + ], + [ + "what's the current time in est", + "time" + ], + [ + "what time is it on the pacific coast right now", + "time" + ], + [ + "given my time, what time is it in mst", + "time" + ], + [ + "have you the time", + "time" + ], + [ + "when is it right now", + "time" + ], + [ + "what hour and minute is it", + "time" + ], + [ + "what time is it right now in cst", + "time" + ], + [ + "what time is it in the eastern standard timezone", + "time" + ], + [ + "what time is it in the pacific standard timezone", + "time" + ], + [ + "what time is it in the alaska standard timezone", + "time" + ], + [ + "what time is it in the central standard timezone", + "time" + ], + [ + "what time is it in the mountain standard timezone", + "time" + ], + [ + "now what is the time", + "time" + ], + [ + "at the moment what is the time", + "time" + ], + [ + "i want to know the time", + "time" + ], + [ + "what time is it now", + "time" + ], + [ + "do you know the current time in southern california", + "time" + ], + [ + "what is the current time in china", + "time" + ], + [ + "what is the current time in mexico city", + "time" + ], + [ + "what is the current time in new york", + "time" + ], + [ + "what is the current time in istanbul", + "time" + ], + [ + "what time is it in buenos aires", + "time" + ], + [ + "what time is it in north korea", + "time" + ], + [ + "what does it say on the clock", + "time" + ], + [ + "in tokyo, what's the time", + "time" + ], + [ + "in tokyo, what time is it", + "time" + ], + [ + "what's the time in tokyo", + "time" + ], + [ + "time in tokyo", + "time" + ], + [ + "what time is it in tokyo", + "time" + ], + [ + "the time please", + "time" + ], + [ + "i want to know what time it is", + "time" + ], + [ + "can you tell me the time", + "time" + ], + [ + "i would like to know the time", + "time" + ], + [ + "i need to know the time", + "time" + ], + [ + "the current time", + "time" + ], + [ + "in the eastern timezone, what time is it now", + "time" + ], + [ + "in the central timezone, what time is it", + "time" + ], + [ + "what's the current time now cst", + "time" + ], + [ + "in pacific time, what's the current time", + "time" + ], + [ + "what time is it now pacific time", + "time" + ], + [ + "what is the current time, please", + "time" + ], + [ + "what's the current time, please", + "time" + ], + [ + "what is the time, please", + "time" + ], + [ + "how is the time", + "time" + ], + [ + "please tell me the time", + "time" + ], + [ + "what time is it in london", + "time" + ], + [ + "what time is it in new york", + "time" + ], + [ + "what time is it in paris", + "time" + ], + [ + "what time is it in daniel boone national forest timezone", + "time" + ], + [ + "what is the time in atlantic timezone", + "time" + ], + [ + "what's the time in anchorage timezone", + "time" + ], + [ + "in bst timezone, what time is it", + "time" + ], + [ + "do you have the time", + "time" + ], + [ + "when will my application for my credit card be processed", + "application_status" + ], + [ + "has the discover card approved my app", + "application_status" + ], + [ + "do you know if my amex card app went through", + "application_status" + ], + [ + "have they looked over my app for the new credit card yet", + "application_status" + ], + [ + "has my application for the mastercard card gone through", + "application_status" + ], + [ + "have my app for a new card been processed yet", + "application_status" + ], + [ + "has the application i put in for a new visa been processed", + "application_status" + ], + [ + "has there been any notice that my card app has been looked at", + "application_status" + ], + [ + "has visa gotten back to me regarding my card app", + "application_status" + ], + [ + "see if my form submission for an american express card has been seen", + "application_status" + ], + [ + "do you know if anyone's even looked at the application i sent in for the new visa card", + "application_status" + ], + [ + "has anyone looked at my mastercard application", + "application_status" + ], + [ + "have i gotten confirmation for my credit card app", + "application_status" + ], + [ + "can you check if my application for a discovery card has been looked over yet", + "application_status" + ], + [ + "is there any indication my application for a new credit card has been processed", + "application_status" + ], + [ + "i put in a credit card application, so what is the status with it currently", + "application_status" + ], + [ + "did my visa card app go through yet", + "application_status" + ], + [ + "did my chase card application go through yet", + "application_status" + ], + [ + "do you know the status of the credit card application i filed", + "application_status" + ], + [ + "has the application for my visa been processed", + "application_status" + ], + [ + "i filed a credit card application so what is going on with it", + "application_status" + ], + [ + "did my american express card application go through yet", + "application_status" + ], + [ + "what is the status of the application for a credit card i put in", + "application_status" + ], + [ + "has the application for my american express been processed yet", + "application_status" + ], + [ + "my credit card application has what status", + "application_status" + ], + [ + "where can i go to see if my credit card application has been processed", + "application_status" + ], + [ + "will i be notified when my application has been processed", + "application_status" + ], + [ + "what is the status of my credit card application", + "application_status" + ], + [ + "how will i know when my application for a credit card has been processed", + "application_status" + ], + [ + "where can i find out the status of my credit card application", + "application_status" + ], + [ + "tell me if my application has been processed yet, i signed up for a credit card recently", + "application_status" + ], + [ + "can you check and see if my credit card application has been approved or not", + "application_status" + ], + [ + "has my application for a trust bank credit card been mailed out and if so was i approved or not", + "application_status" + ], + [ + "could you check and see if my credit card application has been processed and approved or not", + "application_status" + ], + [ + "i want to know if my application for a credit card at community bank has been approved or not", + "application_status" + ], + [ + "can you find out if my application at smith bank was approved or not i applied for s credit card a month ago", + "application_status" + ], + [ + "can you tell me if my application for a credit card has been processed yet it was at chase bank", + "application_status" + ], + [ + "was my application approved or not for a credit card at chase bank", + "application_status" + ], + [ + "i want an update on my application for a credit card that i sent in a couple weeks ago", + "application_status" + ], + [ + "i haven't heard if my application for a credit card has been accepted or not can you check on it for me", + "application_status" + ], + [ + "please look into the latest status of my credit card application", + "application_status" + ], + [ + "can you update me on the status of my american express card application", + "application_status" + ], + [ + "can you find out the latest on my credit card application, i haven't heard an update in some time", + "application_status" + ], + [ + "find out for me if my amex card application was received", + "application_status" + ], + [ + "can you check the status of my credit card application", + "application_status" + ], + [ + "how can i track the progress of my credit card application", + "application_status" + ], + [ + "has my credit card application been received, or what is its current status", + "application_status" + ], + [ + "i need to know what the latest is with my application for a visa credit card", + "application_status" + ], + [ + "please check the status of my mastercard application", + "application_status" + ], + [ + "do you know what the latest is with my credit card application", + "application_status" + ], + [ + "i would like an update on the progress of my credit card application", + "application_status" + ], + [ + "update me on the status of my credit card application", + "application_status" + ], + [ + "please get me an update on the status of my credit card application", + "application_status" + ], + [ + "has there been any changes in the status of my credit card application", + "application_status" + ], + [ + "please find out the current status of my credit card application", + "application_status" + ], + [ + "i want to be updated on the most recent status of my credit card application", + "application_status" + ], + [ + "tell me the present status of the credit card application i submitted", + "application_status" + ], + [ + "look into the status of the credit card application i submitted recently for my new card", + "application_status" + ], + [ + "look to see if my application for the barclay's card has gone through yet", + "application_status" + ], + [ + "i want to know if my credit card application has been processed yet", + "application_status" + ], + [ + "i need to know if the application been processed", + "application_status" + ], + [ + "tell me straight if it has been processed or not", + "application_status" + ], + [ + "can you tell me when my credit card application will be processed", + "application_status" + ], + [ + "how much longer until my credit card application is checked", + "application_status" + ], + [ + "when will my credit card app be approved", + "application_status" + ], + [ + "has my credit card application gone through", + "application_status" + ], + [ + "check on my credit card application", + "application_status" + ], + [ + "do i have any updates about my credit card application", + "application_status" + ], + [ + "has my credit card application been processed", + "application_status" + ], + [ + "have i received any messages about my credit card application", + "application_status" + ], + [ + "when can i hear the decision on my credit card application", + "application_status" + ], + [ + "my credit card application status", + "application_status" + ], + [ + "i applied for the credit card, have you processed my application", + "application_status" + ], + [ + "how long to process my credit card application", + "application_status" + ], + [ + "how is my application on new credit card going", + "application_status" + ], + [ + "what is the status of my new credit card application", + "application_status" + ], + [ + "is my application processed for credit card", + "application_status" + ], + [ + "help with credit card application status", + "application_status" + ], + [ + "is my credit card application approved", + "application_status" + ], + [ + "what is the status of my application for the credit card", + "application_status" + ], + [ + "has my credit card application been processed yet", + "application_status" + ], + [ + "what's the current status of the credit card i applied for", + "application_status" + ], + [ + "in what status is my credit card application", + "application_status" + ], + [ + "did the application i put in for a mastercard go through yet", + "application_status" + ], + [ + "has my application for a new credit card been processed", + "application_status" + ], + [ + "has my amex application gone through yet", + "application_status" + ], + [ + "i applied for a visa card; did that go through", + "application_status" + ], + [ + "what status is my card application in", + "application_status" + ], + [ + "did they process the credit card i applied for", + "application_status" + ], + [ + "i applied for a new credit card; did it process yet", + "application_status" + ], + [ + "did discover get my card application yet", + "application_status" + ], + [ + "tell me about my american express application; did it go through", + "application_status" + ], + [ + "tell me a little more about the status of my credit card application", + "application_status" + ], + [ + "tell me the status of my credit card application", + "application_status" + ], + [ + "is the processing done on my new credit card", + "application_status" + ], + [ + "i'm desperate to know about my cc processing", + "application_status" + ], + [ + "have you heard anything back on my cc application", + "application_status" + ], + [ + "is it likely my credit card application has processed yet", + "application_status" + ], + [ + "has my credit card application been approved", + "application_status" + ], + [ + "when will my cc application process", + "application_status" + ], + [ + "what is the projected time frame for the flight to land", + "flight_status" + ], + [ + "is there any news on flight dl123", + "flight_status" + ], + [ + "what is the word on flight dl123", + "flight_status" + ], + [ + "when will we begin to board my scheduled flight", + "flight_status" + ], + [ + "whats the status of my frontier flight", + "flight_status" + ], + [ + "when will my flight take off", + "flight_status" + ], + [ + "what is the arrival time for my flight", + "flight_status" + ], + [ + "whats the status of my delta flight", + "flight_status" + ], + [ + "whats the update on flight dl123", + "flight_status" + ], + [ + "is there an update on flight dl123", + "flight_status" + ], + [ + "when will my flight land", + "flight_status" + ], + [ + "at what point should the flight land", + "flight_status" + ], + [ + "what time is my flight scheduled to leave", + "flight_status" + ], + [ + "when is my flight supposed to leave", + "flight_status" + ], + [ + "whats the status of my south west flight", + "flight_status" + ], + [ + "when should the flight land", + "flight_status" + ], + [ + "whats the latest on flight dl123", + "flight_status" + ], + [ + "whats the status of my united flight", + "flight_status" + ], + [ + "whats the status of my singapore flight", + "flight_status" + ], + [ + "give me the status of flight dl123", + "flight_status" + ], + [ + "tell me that status of flight dl123", + "flight_status" + ], + [ + "is flight dl123 coming in on time", + "flight_status" + ], + [ + "is flight dl123 on time", + "flight_status" + ], + [ + "what's the latest with my united flight", + "flight_status" + ], + [ + "update me on my delta flight please", + "flight_status" + ], + [ + "tell me what the status of my american airlines flight is", + "flight_status" + ], + [ + "look up when my flight is set to start boarding", + "flight_status" + ], + [ + "at what time will my flight land", + "flight_status" + ], + [ + "i need to know the status of my alaska air flight", + "flight_status" + ], + [ + "at what time will my flight begin boarding", + "flight_status" + ], + [ + "what time is my flight supposed to board", + "flight_status" + ], + [ + "tell me what time my flight ought to be landing", + "flight_status" + ], + [ + "tell me when my flight is scheduled to start boarding", + "flight_status" + ], + [ + "when is my plane scheduled to land", + "flight_status" + ], + [ + "when does boarding for my flight begin", + "flight_status" + ], + [ + "whats the most recent status for my virgin air flight", + "flight_status" + ], + [ + "can you check when my flight lands", + "flight_status" + ], + [ + "what time is my flight supposed to be landing", + "flight_status" + ], + [ + "can you tell me the status of my delta flight", + "flight_status" + ], + [ + "whats my delta flight's status", + "flight_status" + ], + [ + "is my delta flight on time", + "flight_status" + ], + [ + "when will my delta flight depart", + "flight_status" + ], + [ + "will my delta flight leave on time", + "flight_status" + ], + [ + "what is the eta of my flight", + "flight_status" + ], + [ + "when is my flight due to arrive", + "flight_status" + ], + [ + "what landing time is scheduled for my flight", + "flight_status" + ], + [ + "what time is my plane supposed to arrive", + "flight_status" + ], + [ + "what is the scheduled arrival time for my flight", + "flight_status" + ], + [ + "please tell me the status of my southwest flight", + "flight_status" + ], + [ + "i would appreciate it if you could tell me the status of my southwest flight", + "flight_status" + ], + [ + "what is the status of my frontier flight", + "flight_status" + ], + [ + "could you tell me the status of my frontier flight", + "flight_status" + ], + [ + "do you mind informing me the status of my southwest flight", + "flight_status" + ], + [ + "when will my aa flight be landing", + "flight_status" + ], + [ + "when's my flight boarding", + "flight_status" + ], + [ + "what's the latest info on flight dl123", + "flight_status" + ], + [ + "when will my panam flight be arriving", + "flight_status" + ], + [ + "when will my jetblue flight get here", + "flight_status" + ], + [ + "when will they let me board", + "flight_status" + ], + [ + "can you update me with the status of flight dl123", + "flight_status" + ], + [ + "what's the status of my united flight", + "flight_status" + ], + [ + "can you tell me where flight dl123 is", + "flight_status" + ], + [ + "at what point will this flight start letting people board", + "flight_status" + ], + [ + "how long until delta is at the gate", + "flight_status" + ], + [ + "when should i expect my flight to come in", + "flight_status" + ], + [ + "when can i start boarding my flight", + "flight_status" + ], + [ + "when's my flight getting here", + "flight_status" + ], + [ + "how long until my flight is here", + "flight_status" + ], + [ + "has flight dl123 arrived yet", + "flight_status" + ], + [ + "what time will i be allowed to board", + "flight_status" + ], + [ + "any idea where flight dl123 is right now", + "flight_status" + ], + [ + "what's my flight's eta", + "flight_status" + ], + [ + "what time does my flight get in", + "flight_status" + ], + [ + "when does my flight arrive", + "flight_status" + ], + [ + "let me know the status of flight dl123", + "flight_status" + ], + [ + "tell me the status of flight dl123", + "flight_status" + ], + [ + "i would love to know when my flight is going to land", + "flight_status" + ], + [ + "i wanna know the status of flight dl123", + "flight_status" + ], + [ + "tell me when my flight will land", + "flight_status" + ], + [ + "i gotta know when my flight will land", + "flight_status" + ], + [ + "please inform me when my flight scheduled to board", + "flight_status" + ], + [ + "i would like to know when my flight scheduled to board", + "flight_status" + ], + [ + "i need to know when my flight scheduled to board", + "flight_status" + ], + [ + "tell me when my flight scheduled to board", + "flight_status" + ], + [ + "please tell me when my flight will land", + "flight_status" + ], + [ + "i wanna know when my flight scheduled to board", + "flight_status" + ], + [ + "i need to know the status of flight dl123", + "flight_status" + ], + [ + "i wish to know when my flight will land", + "flight_status" + ], + [ + "what is the scheduled landing time for my flight", + "flight_status" + ], + [ + "what time will my flight be boarding", + "flight_status" + ], + [ + "what time is this flight supposed to land", + "flight_status" + ], + [ + "what time will i be able to board the plane", + "flight_status" + ], + [ + "when will i get to my destination", + "flight_status" + ], + [ + "can you tell me what time this flight is going to land", + "flight_status" + ], + [ + "please tell me what the boarding time is for my plane", + "flight_status" + ], + [ + "what time will my flight reach the destination", + "flight_status" + ], + [ + "can you tell me when my flight is going to board", + "flight_status" + ], + [ + "tell me when my flight is landing", + "flight_status" + ], + [ + "i need to know when my flight is landing", + "flight_status" + ], + [ + "so when is my flight landing", + "flight_status" + ], + [ + "please flip a coin and tell me what side it lands on", + "flip_coin" + ], + [ + "will you flip a coin so i can make a choice", + "flip_coin" + ], + [ + "flip a two sided coin and tell me what it lands on", + "flip_coin" + ], + [ + "i need you to flip a coin so i can decide", + "flip_coin" + ], + [ + "begin the coin flip now", + "flip_coin" + ], + [ + "i want you to help me make a decision by flipping a coin", + "flip_coin" + ], + [ + "please flip a coin, and i call heads", + "flip_coin" + ], + [ + "flip a coin and let me know if it lands on heads or tails, please", + "flip_coin" + ], + [ + "i want you to flip a fair sided coin", + "flip_coin" + ], + [ + "are you able to flip a two sided coin", + "flip_coin" + ], + [ + "i need you to flip a coin so i can make a choice", + "flip_coin" + ], + [ + "can you please flip a coin, i call tails", + "flip_coin" + ], + [ + "flip a coin, i call tails", + "flip_coin" + ], + [ + "heads or tails i choose tails", + "flip_coin" + ], + [ + "please tell me if a coin lands on tails", + "flip_coin" + ], + [ + "please tell me if a coin flip lands on heads or tails", + "flip_coin" + ], + [ + "flip a coin heads or tails", + "flip_coin" + ], + [ + "please flip a coin i select tails", + "flip_coin" + ], + [ + "will you flip a coin", + "flip_coin" + ], + [ + "can you get a coin and flip it", + "flip_coin" + ], + [ + "would you flip a coin", + "flip_coin" + ], + [ + "will you get a coin and flip it", + "flip_coin" + ], + [ + "flip a coin for me, with you calling heads", + "flip_coin" + ], + [ + "i'd like you to throw a virtual coin for me", + "flip_coin" + ], + [ + "can i get a random heads or tails", + "flip_coin" + ], + [ + "can you do a coin flip", + "flip_coin" + ], + [ + "i want a coin flip and i'll take tails", + "flip_coin" + ], + [ + "i call tails for a coin flip you need to do right now", + "flip_coin" + ], + [ + "do a virtual coin flip and tell me if i win as tails", + "flip_coin" + ], + [ + "randomly pick between heads or tails and tell me if tails wins", + "flip_coin" + ], + [ + "toss a coin and tell me what it lands on", + "flip_coin" + ], + [ + "choose heads or tails and tell me what you came up with", + "flip_coin" + ], + [ + "flip a fair coin i win if it's tails", + "flip_coin" + ], + [ + "flip a coin for me i call tails", + "flip_coin" + ], + [ + "flip me a coin i'm calling tails", + "flip_coin" + ], + [ + "take a coin and flip it and i call tails", + "flip_coin" + ], + [ + "hey, flip me a coin i call tails", + "flip_coin" + ], + [ + "flip a coin one time", + "flip_coin" + ], + [ + "flip that dime", + "flip_coin" + ], + [ + "i need to do a fair coin flip", + "flip_coin" + ], + [ + "flip that coin once; it must be tails", + "flip_coin" + ], + [ + "flip a quarter", + "flip_coin" + ], + [ + "do one coin flip; it will be tails", + "flip_coin" + ], + [ + "flip a coin; i say tails", + "flip_coin" + ], + [ + "how about a coin flip", + "flip_coin" + ], + [ + "let's decide with a coin flip", + "flip_coin" + ], + [ + "can you flip a coin once", + "flip_coin" + ], + [ + "if you flip a coin, i call tails", + "flip_coin" + ], + [ + "let's settle it with a coin flip", + "flip_coin" + ], + [ + "please flip a coin i hope its tails", + "flip_coin" + ], + [ + "i need you to flip a coin once", + "flip_coin" + ], + [ + "flip that coin please", + "flip_coin" + ], + [ + "flip the coin", + "flip_coin" + ], + [ + "flip that coin please, i choose heads", + "flip_coin" + ], + [ + "flip that coin now", + "flip_coin" + ], + [ + "i choose heads, now flip that coin", + "flip_coin" + ], + [ + "go ahead and flip that coin, i am choosing heads here", + "flip_coin" + ], + [ + "flip it please", + "flip_coin" + ], + [ + "i am choosing heads, now please flip that coin", + "flip_coin" + ], + [ + "go ahead and flip a coin", + "flip_coin" + ], + [ + "go ahead and flip that coin, i choose heads", + "flip_coin" + ], + [ + "can you flip a coin and tell me the result", + "flip_coin" + ], + [ + "i will determine it with a coin flip", + "flip_coin" + ], + [ + "i want you to flip a coin", + "flip_coin" + ], + [ + "flip a coin and tell me if its heads or tails", + "flip_coin" + ], + [ + "flip a coin if you will", + "flip_coin" + ], + [ + "can you do a coin flip for me", + "flip_coin" + ], + [ + "i need to have a coin flipped", + "flip_coin" + ], + [ + "i would like a coin flip", + "flip_coin" + ], + [ + "i ned you to flip a coin", + "flip_coin" + ], + [ + "i want a coin flipped", + "flip_coin" + ], + [ + "flip a coin for me", + "flip_coin" + ], + [ + "i want a coin flip", + "flip_coin" + ], + [ + "i require a coin flip", + "flip_coin" + ], + [ + "lets go with heads or tails", + "flip_coin" + ], + [ + "lets flip for it", + "flip_coin" + ], + [ + "toss a coin i will take heads", + "flip_coin" + ], + [ + "lets do a coin toss, i call tails", + "flip_coin" + ], + [ + "filp a coin, i call heads", + "flip_coin" + ], + [ + "spin a coin", + "flip_coin" + ], + [ + "lets do a coin toss", + "flip_coin" + ], + [ + "toss a coin i will take tails", + "flip_coin" + ], + [ + "do a coin flip", + "flip_coin" + ], + [ + "do heads or tails", + "flip_coin" + ], + [ + "coin flip", + "flip_coin" + ], + [ + "heads or tails please", + "flip_coin" + ], + [ + "ai, heads or tails", + "flip_coin" + ], + [ + "ai, coin flip", + "flip_coin" + ], + [ + "ai, please flip a coin", + "flip_coin" + ], + [ + "ai, give me the results of a coin flip", + "flip_coin" + ], + [ + "flip a coin for me ai", + "flip_coin" + ], + [ + "flip a coin, you win with heads", + "flip_coin" + ], + [ + "can you flip a coin, i will take tails", + "flip_coin" + ], + [ + "go ahead and flip a coin, i am calling tails", + "flip_coin" + ], + [ + "please flip a coin for me, tails i win", + "flip_coin" + ], + [ + "flip a coin, i have tails", + "flip_coin" + ], + [ + "heads or tails", + "flip_coin" + ], + [ + "perform a coin flip", + "flip_coin" + ], + [ + "do a coin toss", + "flip_coin" + ], + [ + "help me flip a coin", + "flip_coin" + ], + [ + "please change the name you refer to me by", + "change_user_name" + ], + [ + "how do i change the name you use to address me", + "change_user_name" + ], + [ + "is there a way i can change the name you use to address me", + "change_user_name" + ], + [ + "i need to change my name to something else for you to call me", + "change_user_name" + ], + [ + "can i have you call me something else", + "change_user_name" + ], + [ + "i go by brad", + "change_user_name" + ], + [ + "usually people refer to me as brad", + "change_user_name" + ], + [ + "i prefer to go by brad", + "change_user_name" + ], + [ + "people call me brad", + "change_user_name" + ], + [ + "my name is brad", + "change_user_name" + ], + [ + "call me carrie", + "change_user_name" + ], + [ + "my names carrie", + "change_user_name" + ], + [ + "my friends call me carrie", + "change_user_name" + ], + [ + "you can call me carrie", + "change_user_name" + ], + [ + "call me dad", + "change_user_name" + ], + [ + "you can call me stevie", + "change_user_name" + ], + [ + "you can call me sarah", + "change_user_name" + ], + [ + "you can call me james", + "change_user_name" + ], + [ + "call me jake", + "change_user_name" + ], + [ + "call me stevie", + "change_user_name" + ], + [ + "you can call me john", + "change_user_name" + ], + [ + "my name is steve", + "change_user_name" + ], + [ + "my name is john", + "change_user_name" + ], + [ + "please call me jim", + "change_user_name" + ], + [ + "i go by the name jim", + "change_user_name" + ], + [ + "feel free to call me jim", + "change_user_name" + ], + [ + "you can just speak to me as jim", + "change_user_name" + ], + [ + "my name is jim", + "change_user_name" + ], + [ + "please start calling me mandy", + "change_user_name" + ], + [ + "the name i go by is sandy", + "change_user_name" + ], + [ + "i like to be called mikey", + "change_user_name" + ], + [ + "please refer to me as sharon", + "change_user_name" + ], + [ + "john is my name", + "change_user_name" + ], + [ + "the name you should call me is janet", + "change_user_name" + ], + [ + "people call me gary", + "change_user_name" + ], + [ + "you can address me as lizzie", + "change_user_name" + ], + [ + "i want to be called mollie", + "change_user_name" + ], + [ + "you can call me cindy", + "change_user_name" + ], + [ + "call me ishmael", + "change_user_name" + ], + [ + "can you just start calling me sir", + "change_user_name" + ], + [ + "i'm called tim", + "change_user_name" + ], + [ + "my friends call me sam", + "change_user_name" + ], + [ + "i'd like you to address me as lord snugglebottom", + "change_user_name" + ], + [ + "i go by ted", + "change_user_name" + ], + [ + "they call me john", + "change_user_name" + ], + [ + "would you just like to call me paul", + "change_user_name" + ], + [ + "please call me johnny", + "change_user_name" + ], + [ + "just call me sam", + "change_user_name" + ], + [ + "i want you to call me this new name", + "change_user_name" + ], + [ + "talk to me by calling me this name from now on", + "change_user_name" + ], + [ + "the new name that i want you to call me is this one", + "change_user_name" + ], + [ + "please call me by this new name", + "change_user_name" + ], + [ + "please change my name", + "change_user_name" + ], + [ + "you can call me brandon", + "change_user_name" + ], + [ + "you can call me jeff", + "change_user_name" + ], + [ + "you can call me michael", + "change_user_name" + ], + [ + "you can call me steve", + "change_user_name" + ], + [ + "you can call me alan", + "change_user_name" + ], + [ + "call me mary", + "change_user_name" + ], + [ + "i need you to call me mary", + "change_user_name" + ], + [ + "would you call me mary", + "change_user_name" + ], + [ + "i want to be called by mary", + "change_user_name" + ], + [ + "i would like you to call me mary", + "change_user_name" + ], + [ + "can i change what you call me", + "change_user_name" + ], + [ + "i'd like you to call me something different", + "change_user_name" + ], + [ + "change the name that you call me", + "change_user_name" + ], + [ + "call me frank", + "change_user_name" + ], + [ + "you can refer to me as frank", + "change_user_name" + ], + [ + "i want you to call me something else", + "change_user_name" + ], + [ + "my name's frank", + "change_user_name" + ], + [ + "i'd like to be called frank", + "change_user_name" + ], + [ + "can i change my nickname", + "change_user_name" + ], + [ + "i am john", + "change_user_name" + ], + [ + "hi, i'm john", + "change_user_name" + ], + [ + "please call me frank from now on", + "change_user_name" + ], + [ + "can you call me bobby instead of bob", + "change_user_name" + ], + [ + "my name's bob", + "change_user_name" + ], + [ + "please call me bob", + "change_user_name" + ], + [ + "when you talk to me, use bob", + "change_user_name" + ], + [ + "please stop calling me dave, my name's bob", + "change_user_name" + ], + [ + "my name is stu, not sue!", + "change_user_name" + ], + [ + "i want you to start referring to me as lucky", + "change_user_name" + ], + [ + "i'd like you to refer to me as bob", + "change_user_name" + ], + [ + "i am david", + "change_user_name" + ], + [ + "change my name to master", + "change_user_name" + ], + [ + "you can call me al", + "change_user_name" + ], + [ + "just call me al", + "change_user_name" + ], + [ + "i go by stefan", + "change_user_name" + ], + [ + "just call me dennis", + "change_user_name" + ], + [ + "please change my name to loverboy", + "change_user_name" + ], + [ + "i want you to call me lord", + "change_user_name" + ], + [ + "i'd rather have you call be ray ray", + "change_user_name" + ], + [ + "they call me josh", + "change_user_name" + ], + [ + "i am josh", + "change_user_name" + ], + [ + "i want you to call me pam", + "change_user_name" + ], + [ + "i need to change my username", + "change_user_name" + ], + [ + "address me by the name stan", + "change_user_name" + ], + [ + "only call me dan", + "change_user_name" + ], + [ + "please only call me joe", + "change_user_name" + ], + [ + "can you call me something else", + "change_user_name" + ], + [ + "where is your place of origin", + "where_are_you_from" + ], + [ + "what is your place of origin", + "where_are_you_from" + ], + [ + "what is your country of origin", + "where_are_you_from" + ], + [ + "where is your country of origin", + "where_are_you_from" + ], + [ + "what is your nationality", + "where_are_you_from" + ], + [ + "tell me where you're made", + "where_are_you_from" + ], + [ + "tell me how you're made", + "where_are_you_from" + ], + [ + "what town were you born in", + "where_are_you_from" + ], + [ + "what country were you born in", + "where_are_you_from" + ], + [ + "where's your birthplace", + "where_are_you_from" + ], + [ + "you were born where", + "where_are_you_from" + ], + [ + "your birthplace is where", + "where_are_you_from" + ], + [ + "where are your origins located", + "where_are_you_from" + ], + [ + "where did you originate from", + "where_are_you_from" + ], + [ + "where is your home located", + "where_are_you_from" + ], + [ + "where do you trace your roots", + "where_are_you_from" + ], + [ + "where do you hail from", + "where_are_you_from" + ], + [ + "i'd like to know where you're from", + "where_are_you_from" + ], + [ + "where are your origins found", + "where_are_you_from" + ], + [ + "can you tell me where you are from", + "where_are_you_from" + ], + [ + "where is the location of your creation", + "where_are_you_from" + ], + [ + "can you tell me where you were created", + "where_are_you_from" + ], + [ + "could you tell me where did you originate", + "where_are_you_from" + ], + [ + "would you care to let me know where you were made", + "where_are_you_from" + ], + [ + "where is the location that you were made", + "where_are_you_from" + ], + [ + "in which area were you made", + "where_are_you_from" + ], + [ + "what country were you made", + "where_are_you_from" + ], + [ + "where was it you were made", + "where_are_you_from" + ], + [ + "where did they make you", + "where_are_you_from" + ], + [ + "where were you created", + "where_are_you_from" + ], + [ + "what place were you created in", + "where_are_you_from" + ], + [ + "in which place were you made", + "where_are_you_from" + ], + [ + "what's your country of origin", + "where_are_you_from" + ], + [ + "what was your place of creation", + "where_are_you_from" + ], + [ + "what location did you originate at", + "where_are_you_from" + ], + [ + "what's your place of manufacture", + "where_are_you_from" + ], + [ + "from whence do you hail", + "where_are_you_from" + ], + [ + "where do you come from", + "where_are_you_from" + ], + [ + "what is your point of origin", + "where_are_you_from" + ], + [ + "what's your nationality", + "where_are_you_from" + ], + [ + "where were you manufactured", + "where_are_you_from" + ], + [ + "where were your born", + "where_are_you_from" + ], + [ + "what country do you consider yourself a citizen of", + "where_are_you_from" + ], + [ + "where did you last live", + "where_are_you_from" + ], + [ + "what's your birthplace", + "where_are_you_from" + ], + [ + "where did you used to live", + "where_are_you_from" + ], + [ + "what area did you grow up in", + "where_are_you_from" + ], + [ + "what area were you born in", + "where_are_you_from" + ], + [ + "what state were you born in", + "where_are_you_from" + ], + [ + "were you born here", + "where_are_you_from" + ], + [ + "are you from the uk", + "where_are_you_from" + ], + [ + "are you from the us", + "where_are_you_from" + ], + [ + "are you from europe", + "where_are_you_from" + ], + [ + "where you from the usa", + "where_are_you_from" + ], + [ + "where is your family from", + "where_are_you_from" + ], + [ + "where are you originally from", + "where_are_you_from" + ], + [ + "where was your home before here", + "where_are_you_from" + ], + [ + "where did you live previously", + "where_are_you_from" + ], + [ + "where did you live before here", + "where_are_you_from" + ], + [ + "where did you live prior to living here", + "where_are_you_from" + ], + [ + "what is the area that you came from", + "where_are_you_from" + ], + [ + "what location did you live at before", + "where_are_you_from" + ], + [ + "where is your original location", + "where_are_you_from" + ], + [ + "where were you before moving here", + "where_are_you_from" + ], + [ + "do you know where you were born", + "where_are_you_from" + ], + [ + "can you tell me where you were born", + "where_are_you_from" + ], + [ + "where did you come from, originally", + "where_are_you_from" + ], + [ + "what was the location of your birth", + "where_are_you_from" + ], + [ + "what is the name of your birthplace", + "where_are_you_from" + ], + [ + "what is your native home", + "where_are_you_from" + ], + [ + "can you tell me your place of origin", + "where_are_you_from" + ], + [ + "where is your home", + "where_are_you_from" + ], + [ + "whereabouts are you from", + "where_are_you_from" + ], + [ + "did you grow up here", + "where_are_you_from" + ], + [ + "where were you given birth", + "where_are_you_from" + ], + [ + "where are you from", + "where_are_you_from" + ], + [ + "where did your mom have you", + "where_are_you_from" + ], + [ + "what city were you born in", + "where_are_you_from" + ], + [ + "what's your city of origin", + "where_are_you_from" + ], + [ + "where are your roots", + "where_are_you_from" + ], + [ + "when you were a child, where did you live", + "where_are_you_from" + ], + [ + "if you were to call a place your beginning, your home start, where would that be", + "where_are_you_from" + ], + [ + "so where did you live when you were a baby", + "where_are_you_from" + ], + [ + "what place do you call home", + "where_are_you_from" + ], + [ + "up until now, what place was your home base", + "where_are_you_from" + ], + [ + "what location were you born in", + "where_are_you_from" + ], + [ + "your birth occurred where", + "where_are_you_from" + ], + [ + "where is your birth place", + "where_are_you_from" + ], + [ + "you came from where", + "where_are_you_from" + ], + [ + "where were you made", + "where_are_you_from" + ], + [ + "where would you say you were born", + "where_are_you_from" + ], + [ + "tell me where you come from", + "where_are_you_from" + ], + [ + "tell me where you were born", + "where_are_you_from" + ], + [ + "where were you born", + "where_are_you_from" + ], + [ + "what's your hometown", + "where_are_you_from" + ], + [ + "where's home for you", + "where_are_you_from" + ], + [ + "in what state were you born", + "where_are_you_from" + ], + [ + "were you born in a hospital", + "where_are_you_from" + ], + [ + "where did your parents have you", + "where_are_you_from" + ], + [ + "where did your mom give birth", + "where_are_you_from" + ], + [ + "delete fries from shopping list", + "shopping_list_update" + ], + [ + "take off fries from the shopping list", + "shopping_list_update" + ], + [ + "please take away the fries from the shopping list", + "shopping_list_update" + ], + [ + "remove fries from my shopping list", + "shopping_list_update" + ], + [ + "we no longer need fries on the shopping lisr", + "shopping_list_update" + ], + [ + "cross out bananas from my shopping list and put papayas on it, please", + "shopping_list_update" + ], + [ + "i need to delete tomatoes from my shopping list and add onions instead", + "shopping_list_update" + ], + [ + "can you add carrots to my shopping list and delete potatoes", + "shopping_list_update" + ], + [ + "please remove ginger ale from my shopping list and add root beer", + "shopping_list_update" + ], + [ + "go ahead and erase cashews from my list, and add walnuts to it, please", + "shopping_list_update" + ], + [ + "add eggs to my shopping list and remove cheese", + "shopping_list_update" + ], + [ + "add corn to my shopping list and remove wine", + "shopping_list_update" + ], + [ + "add flour to my shopping list if it's not already on it", + "shopping_list_update" + ], + [ + "take bread off my shopping list and add milk", + "shopping_list_update" + ], + [ + "please add sugar to my shopping list if it's not on it", + "shopping_list_update" + ], + [ + "remove wine and add beer to my shopping list", + "shopping_list_update" + ], + [ + "is paprika listed on my shopping list, please add it", + "shopping_list_update" + ], + [ + "is bacon on my shopping list, add if it's not", + "shopping_list_update" + ], + [ + "delete soda from my shopping list and add water to it", + "shopping_list_update" + ], + [ + "do i have pepper my shopping list, if not add it", + "shopping_list_update" + ], + [ + "are bananas on the list, if not can you add them", + "shopping_list_update" + ], + [ + "do i have bananas on my list, if not please put them on the list", + "shopping_list_update" + ], + [ + "are bananas already on the list, if not go ahead and add them", + "shopping_list_update" + ], + [ + "are bananas on my shopping list can you add them if they aren't", + "shopping_list_update" + ], + [ + "do i have bananas on my shopping list, if not please add it", + "shopping_list_update" + ], + [ + "add bread to my list of groceries", + "shopping_list_update" + ], + [ + "add bread to my list of things to buy", + "shopping_list_update" + ], + [ + "put bread on my shopping list", + "shopping_list_update" + ], + [ + "make sure bread gets added to my shopping list", + "shopping_list_update" + ], + [ + "remind me to buy bread next time i go shopping", + "shopping_list_update" + ], + [ + "will you include kleenex on my list for shopping please", + "shopping_list_update" + ], + [ + "make sure walnuts is on my shopping list", + "shopping_list_update" + ], + [ + "put film on my shopping list", + "shopping_list_update" + ], + [ + "add sprite to my shopping list", + "shopping_list_update" + ], + [ + "write apples on my shopping list", + "shopping_list_update" + ], + [ + "add oranges to my to do shopping list", + "shopping_list_update" + ], + [ + "add mountain dew to my list for shopping", + "shopping_list_update" + ], + [ + "add coke to my shopping cart", + "shopping_list_update" + ], + [ + "add apples to my to do shopping list", + "shopping_list_update" + ], + [ + "add pepsi to my shopping bag", + "shopping_list_update" + ], + [ + "i'm out of bananas; add to shopping list", + "shopping_list_update" + ], + [ + "i need for you to remove milk from my shopping list and add bread", + "shopping_list_update" + ], + [ + "on my shopping list, remove bread and add milk", + "shopping_list_update" + ], + [ + "i need for you to get bananas added to my shopping list; i'm out", + "shopping_list_update" + ], + [ + "would you add bananas to my shopping list as i am out", + "shopping_list_update" + ], + [ + "add groceries to my shopping list as i am out", + "shopping_list_update" + ], + [ + "please get milk removed from my shopping list and add bread", + "shopping_list_update" + ], + [ + "would you remove bread from my shopping list and add bread", + "shopping_list_update" + ], + [ + "i want to remove milk from my shopping list and add bread", + "shopping_list_update" + ], + [ + "i am out of trash bags and need them to be added to my shopping list", + "shopping_list_update" + ], + [ + "please add milk on my shopping list, if it is not already on it", + "shopping_list_update" + ], + [ + "do i have milk on my shopping list please add it if it is not", + "shopping_list_update" + ], + [ + "i want you to add milk on my shopping list unless it is already on it", + "shopping_list_update" + ], + [ + "i would like you to add milk if it is not on my shopping list already", + "shopping_list_update" + ], + [ + "is the milk on the shopping list if not, please add", + "shopping_list_update" + ], + [ + "do me a favor and put sharpies on my list for shopping", + "shopping_list_update" + ], + [ + "please put silverware on my list for shopping", + "shopping_list_update" + ], + [ + "may i suggest we put paper towels on my list for shopping", + "shopping_list_update" + ], + [ + "maybe we can put blank cds on my list for shopping", + "shopping_list_update" + ], + [ + "can we put sunscreen on my list for shopping", + "shopping_list_update" + ], + [ + "make sure to put extra paint on the list", + "shopping_list_update" + ], + [ + "x on the shopping list please", + "shopping_list_update" + ], + [ + "can you put carrots on my shopping list", + "shopping_list_update" + ], + [ + "i would like to put carrots on my list for shopping", + "shopping_list_update" + ], + [ + "remove corn from my shopping list", + "shopping_list_update" + ], + [ + "put on my shopping list i need carots", + "shopping_list_update" + ], + [ + "remove chips from my shopping list", + "shopping_list_update" + ], + [ + "take frozen food off my shopping list", + "shopping_list_update" + ], + [ + "i need soda added to my list and carrots removed", + "shopping_list_update" + ], + [ + "i need oranges on my shopping list", + "shopping_list_update" + ], + [ + "take carrots off my list for shopping", + "shopping_list_update" + ], + [ + "my shopping list should have carrots on it", + "shopping_list_update" + ], + [ + "remove carrots from my shopping list and add soda", + "shopping_list_update" + ], + [ + "can you put oranges on my shopping list", + "shopping_list_update" + ], + [ + "put carrots on my shopping list", + "shopping_list_update" + ], + [ + "put soda on the shopping list and add carrots", + "shopping_list_update" + ], + [ + "can you take frozen food of my shopping list", + "shopping_list_update" + ], + [ + "can you take carrots off my shopping list and add soda", + "shopping_list_update" + ], + [ + "please make sure oranges are on my shopping list", + "shopping_list_update" + ], + [ + "add soda on my shopping list and remove carrots", + "shopping_list_update" + ], + [ + "get rid of butter on my shopping list", + "shopping_list_update" + ], + [ + "delete ice cream from my shopping list", + "shopping_list_update" + ], + [ + "take fresh carrots off my shopping list", + "shopping_list_update" + ], + [ + "i want you to remove shampoo from my shopping list", + "shopping_list_update" + ], + [ + "update my shopping list, delete canned olives", + "shopping_list_update" + ], + [ + "can you put detergent on my shopping list cause i'm all out", + "shopping_list_update" + ], + [ + "put milk on my shopping list cause i'm out of it", + "shopping_list_update" + ], + [ + "put spaghetti on my shopping list cause i'm out of it please", + "shopping_list_update" + ], + [ + "put rice and pudding on my shopping list cause i need them", + "shopping_list_update" + ], + [ + "can you please put toilet paper on the shopping list i'm out of it", + "shopping_list_update" + ], + [ + "i need to add cherrios to the grocery list", + "shopping_list_update" + ], + [ + "i'm low on cherrios can you add that to the shopping list", + "shopping_list_update" + ], + [ + "i ran out of cherrios so add that to the list", + "shopping_list_update" + ], + [ + "add cherrios to the shopping list", + "shopping_list_update" + ], + [ + "can you add cherrios to my shopping list", + "shopping_list_update" + ], + [ + "for the shopping list, add ham as well", + "shopping_list_update" + ], + [ + "are eggs on my list, if not add them", + "shopping_list_update" + ], + [ + "i need you to add creamer to my shopping list", + "shopping_list_update" + ], + [ + "please put milk on my list i just used the last of it", + "shopping_list_update" + ], + [ + "i no longer need milk, so forget that", + "shopping_list_update" + ], + [ + "what things can you help me with exactly", + "what_can_i_ask_you" + ], + [ + "what are the things you can help me with", + "what_can_i_ask_you" + ], + [ + "what exactly can you help me with", + "what_can_i_ask_you" + ], + [ + "what can you help me with exactly", + "what_can_i_ask_you" + ], + [ + "what can you help me with", + "what_can_i_ask_you" + ], + [ + "what kinds of questions can you answer", + "what_can_i_ask_you" + ], + [ + "tell me the subject areas you are familiar with", + "what_can_i_ask_you" + ], + [ + "what sorts of subjects are you well versed in", + "what_can_i_ask_you" + ], + [ + "what are the subject areas you are knowledgable in", + "what_can_i_ask_you" + ], + [ + "what kinds of things are you knowledgable about", + "what_can_i_ask_you" + ], + [ + "tell me the types of things i can ask you about", + "what_can_i_ask_you" + ], + [ + "what sorts of things can i ask you about", + "what_can_i_ask_you" + ], + [ + "tell me what you are capable of answering", + "what_can_i_ask_you" + ], + [ + "what sorts of queries should i give you", + "what_can_i_ask_you" + ], + [ + "what sorts of subjects do you know about", + "what_can_i_ask_you" + ], + [ + "what type of questions may i ask you", + "what_can_i_ask_you" + ], + [ + "which types of questions may i ask you", + "what_can_i_ask_you" + ], + [ + "what kind of questions may i ask you", + "what_can_i_ask_you" + ], + [ + "which types of questions can i ask you", + "what_can_i_ask_you" + ], + [ + "what kind of questions can i ask you", + "what_can_i_ask_you" + ], + [ + "what topics can i ask you about", + "what_can_i_ask_you" + ], + [ + "what information can i ask you", + "what_can_i_ask_you" + ], + [ + "what subjects do you know something about", + "what_can_i_ask_you" + ], + [ + "what kinds of questions can i ask you", + "what_can_i_ask_you" + ], + [ + "what types of things do you know", + "what_can_i_ask_you" + ], + [ + "what kind of questions do you accept", + "what_can_i_ask_you" + ], + [ + "what questions are permissible", + "what_can_i_ask_you" + ], + [ + "what can i ask you", + "what_can_i_ask_you" + ], + [ + "what are my list of commands", + "what_can_i_ask_you" + ], + [ + "what are the kinds of things you can help me with", + "what_can_i_ask_you" + ], + [ + "what kind of questions are you good at answering", + "what_can_i_ask_you" + ], + [ + "can i ask you about anything", + "what_can_i_ask_you" + ], + [ + "can you help me with anything i need", + "what_can_i_ask_you" + ], + [ + "what all can you do", + "what_can_i_ask_you" + ], + [ + "what things do you know about", + "what_can_i_ask_you" + ], + [ + "what are you able to help me with", + "what_can_i_ask_you" + ], + [ + "what types of things are you able to do", + "what_can_i_ask_you" + ], + [ + "what can you answer for me", + "what_can_i_ask_you" + ], + [ + "is there anything i can't ask you", + "what_can_i_ask_you" + ], + [ + "what questions do you respond to", + "what_can_i_ask_you" + ], + [ + "what should i ask you about", + "what_can_i_ask_you" + ], + [ + "what are you able to answer", + "what_can_i_ask_you" + ], + [ + "what's the sort of thing i should ask", + "what_can_i_ask_you" + ], + [ + "what kind of things can you answer", + "what_can_i_ask_you" + ], + [ + "what things can you do", + "what_can_i_ask_you" + ], + [ + "what can you do", + "what_can_i_ask_you" + ], + [ + "what types of questions do you have a response for", + "what_can_i_ask_you" + ], + [ + "what kinds of questions can you respond to", + "what_can_i_ask_you" + ], + [ + "what do you have answers for", + "what_can_i_ask_you" + ], + [ + "what questions am i allowed to ask", + "what_can_i_ask_you" + ], + [ + "what kinds of things can you do", + "what_can_i_ask_you" + ], + [ + "ai can you tell me what things i may ask", + "what_can_i_ask_you" + ], + [ + "what can i ask you, ai", + "what_can_i_ask_you" + ], + [ + "what am i able to ask the ai", + "what_can_i_ask_you" + ], + [ + "ai, tell me what things i should ask of you", + "what_can_i_ask_you" + ], + [ + "what sorts of things am i able to ask of you ai", + "what_can_i_ask_you" + ], + [ + "how can i get you to help me", + "what_can_i_ask_you" + ], + [ + "what types of things can i ask you", + "what_can_i_ask_you" + ], + [ + "what sort of things can you help me with", + "what_can_i_ask_you" + ], + [ + "what are you able to do", + "what_can_i_ask_you" + ], + [ + "what can i use you to help me with", + "what_can_i_ask_you" + ], + [ + "how can i use you", + "what_can_i_ask_you" + ], + [ + "what subjects do you know", + "what_can_i_ask_you" + ], + [ + "what subjects are you familiar with", + "what_can_i_ask_you" + ], + [ + "what subjects do you know about", + "what_can_i_ask_you" + ], + [ + "what types of subjects do you know", + "what_can_i_ask_you" + ], + [ + "what are you familiar with", + "what_can_i_ask_you" + ], + [ + "what do you know", + "what_can_i_ask_you" + ], + [ + "what subjects are you versed in", + "what_can_i_ask_you" + ], + [ + "can you tell me the subjects you know best", + "what_can_i_ask_you" + ], + [ + "tell me the subjects you're aware of", + "what_can_i_ask_you" + ], + [ + "let me know what subjects you comprehend well", + "what_can_i_ask_you" + ], + [ + "what are the sorts of things i can ask you about", + "what_can_i_ask_you" + ], + [ + "what questions are you programmed to answer", + "what_can_i_ask_you" + ], + [ + "what kinds of things can i ask you", + "what_can_i_ask_you" + ], + [ + "what kinds of questions can i ask of you", + "what_can_i_ask_you" + ], + [ + "are there certain types of questions i can ask you", + "what_can_i_ask_you" + ], + [ + "what kinds of things would you be able to help me with", + "what_can_i_ask_you" + ], + [ + "i need to know what kind of things you can help with", + "what_can_i_ask_you" + ], + [ + "i want to know what sort of things you can assist me with", + "what_can_i_ask_you" + ], + [ + "what sort of things are you able to help with", + "what_can_i_ask_you" + ], + [ + "let me know what you can assist me with", + "what_can_i_ask_you" + ], + [ + "how can i benefit from using you", + "what_can_i_ask_you" + ], + [ + "how can you assist me", + "what_can_i_ask_you" + ], + [ + "i wanna know the types of subjects are you familiar with", + "what_can_i_ask_you" + ], + [ + "i wish to know the types of subjects are you familiar with", + "what_can_i_ask_you" + ], + [ + "please inform me of the types of subjects are you familiar with", + "what_can_i_ask_you" + ], + [ + "what can you be asked about", + "what_can_i_ask_you" + ], + [ + "tell me the types of subjects are you familiar with", + "what_can_i_ask_you" + ], + [ + "i would like to know the types of subjects are you familiar with", + "what_can_i_ask_you" + ], + [ + "what can i ask you all about", + "what_can_i_ask_you" + ], + [ + "are you familiar with any types of subjects", + "what_can_i_ask_you" + ], + [ + "what skills do you have", + "what_can_i_ask_you" + ], + [ + "what are your capabilities", + "what_can_i_ask_you" + ], + [ + "what topics are you versed in", + "what_can_i_ask_you" + ], + [ + "what sort of stuff do you know", + "what_can_i_ask_you" + ], + [ + "what subjects do you know well", + "what_can_i_ask_you" + ], + [ + "what can i ask you to accomplish", + "what_can_i_ask_you" + ], + [ + "what tasks can you complete for me", + "what_can_i_ask_you" + ], + [ + "what type of questions are you partial to that i can ask you", + "what_can_i_ask_you" + ], + [ + "i don't know the answer", + "maybe" + ], + [ + "i'm unsure", + "maybe" + ], + [ + "shit if i know", + "maybe" + ], + [ + "no idea", + "maybe" + ], + [ + "hell if i know", + "maybe" + ], + [ + "either or should work", + "maybe" + ], + [ + "i dont know", + "maybe" + ], + [ + "both would work", + "maybe" + ], + [ + "it could be one or the other", + "maybe" + ], + [ + "i dont have an answer for that", + "maybe" + ], + [ + "not a clue", + "maybe" + ], + [ + "who knows", + "maybe" + ], + [ + "it could be either", + "maybe" + ], + [ + "sorry, i do not know", + "maybe" + ], + [ + "i'm unsure of the proper answer", + "maybe" + ], + [ + "i do not know that", + "maybe" + ], + [ + "maybe one, maybe the other", + "maybe" + ], + [ + "maybe, maybe not", + "maybe" + ], + [ + "it might be either one", + "maybe" + ], + [ + "perhaps either of them", + "maybe" + ], + [ + "i don't know how to answer to that", + "maybe" + ], + [ + "maybe either", + "maybe" + ], + [ + "i dunno", + "maybe" + ], + [ + "maybe yes, maybe no", + "maybe" + ], + [ + "might be true, might be false", + "maybe" + ], + [ + "possibly", + "maybe" + ], + [ + "it depends", + "maybe" + ], + [ + "i'm not sure what the answer is", + "maybe" + ], + [ + "i will know later", + "maybe" + ], + [ + "maybe", + "maybe" + ], + [ + "one or the other, or both", + "maybe" + ], + [ + "no clue", + "maybe" + ], + [ + "i am not to sure about that", + "maybe" + ], + [ + "either one would work", + "maybe" + ], + [ + "i really don't know", + "maybe" + ], + [ + "i am not confident on that", + "maybe" + ], + [ + "that i don't know", + "maybe" + ], + [ + "both maybe", + "maybe" + ], + [ + "i think it could be both", + "maybe" + ], + [ + "i don't know for sure", + "maybe" + ], + [ + "cant say", + "maybe" + ], + [ + "im not certain", + "maybe" + ], + [ + "im not sure", + "maybe" + ], + [ + "really dont know", + "maybe" + ], + [ + "i'm unsure of the answer", + "maybe" + ], + [ + "it could be possible", + "maybe" + ], + [ + "i can't answer yes or no right now", + "maybe" + ], + [ + "i can't answer that", + "maybe" + ], + [ + "i don't know the answer to that", + "maybe" + ], + [ + "i'm not sure", + "maybe" + ], + [ + "i can't decide", + "maybe" + ], + [ + "i can't tell", + "maybe" + ], + [ + "i'll have to think about it", + "maybe" + ], + [ + "not sure if that's a yes or a no", + "maybe" + ], + [ + "not quite sure how to respond", + "maybe" + ], + [ + "i'm torn on how to answer", + "maybe" + ], + [ + "not sure, maybe", + "maybe" + ], + [ + "that could maybe be it", + "maybe" + ], + [ + "i have no earthly idea at all", + "maybe" + ], + [ + "it may be either one", + "maybe" + ], + [ + "i don't have that information", + "maybe" + ], + [ + "i can't make up my mind", + "maybe" + ], + [ + "it's either of them", + "maybe" + ], + [ + "i don't have the answer", + "maybe" + ], + [ + "sorry no idea", + "maybe" + ], + [ + "it could be that one or the other one", + "maybe" + ], + [ + "i'm not sure which one because it could be either of them", + "maybe" + ], + [ + "i'm drawing a blank", + "maybe" + ], + [ + "i have no knowledge about it", + "maybe" + ], + [ + "no idea, sorry", + "maybe" + ], + [ + "i'm not sure which it is", + "maybe" + ], + [ + "i'm really not sure", + "maybe" + ], + [ + "i'm uncertain", + "maybe" + ], + [ + "i'm unaware of that", + "maybe" + ], + [ + "i have no knowledge of that", + "maybe" + ], + [ + "i am thinking it is either", + "maybe" + ], + [ + "hmmm, either could be a choice", + "maybe" + ], + [ + "i'm sure it could be either", + "maybe" + ], + [ + "well, i guess maybe", + "maybe" + ], + [ + "maybe is my answer", + "maybe" + ], + [ + "i know it could be either one", + "maybe" + ], + [ + "maybe is what i am going to answer", + "maybe" + ], + [ + "hmm, either", + "maybe" + ], + [ + "i'm pretty sure it could be either", + "maybe" + ], + [ + "i have no clue", + "maybe" + ], + [ + "it might be either", + "maybe" + ], + [ + "i don't know anything about that", + "maybe" + ], + [ + "it's possible that it could be either", + "maybe" + ], + [ + "i don't have a clue", + "maybe" + ], + [ + "it could be either, i think", + "maybe" + ], + [ + "i think it could be either one", + "maybe" + ], + [ + "i don't really know", + "maybe" + ], + [ + "i'm not sure of that", + "maybe" + ], + [ + "that's a possibility", + "maybe" + ], + [ + "how is the weather today", + "maybe" + ], + [ + "i haven't a clue", + "maybe" + ], + [ + "i haven't the foggiest", + "maybe" + ], + [ + "that answer's above my pay scale", + "maybe" + ], + [ + "i really don't have a clue", + "maybe" + ], + [ + "i have no idea", + "maybe" + ], + [ + "how do i change a car's oil", + "oil_change_how" + ], + [ + "can you find instructions on how to change oil in a car", + "oil_change_how" + ], + [ + "what do i need to change my oil", + "oil_change_how" + ], + [ + "how do i change the oil in a car", + "oil_change_how" + ], + [ + "how do i change the oil in my passat", + "oil_change_how" + ], + [ + "please tell me how to change the oil in my car", + "oil_change_how" + ], + [ + "tell me how to change the oil in 2014 odyssey", + "oil_change_how" + ], + [ + "find instructions for how to change the oil in a 2015 passat", + "oil_change_how" + ], + [ + "give me instructions for changing the oil in a 2015 passat", + "oil_change_how" + ], + [ + "do i need to go under the car to change oil", + "oil_change_how" + ], + [ + "what way can i change oil at home", + "oil_change_how" + ], + [ + "how do i switch out my oil", + "oil_change_how" + ], + [ + "what is the way to change motor oil", + "oil_change_how" + ], + [ + "i need step by step instructions on how to change the oil in my car", + "oil_change_how" + ], + [ + "what kind of oil do i need to change the oil in my car", + "oil_change_how" + ], + [ + "give me instructions on how to change the oil in my car", + "oil_change_how" + ], + [ + "can you tell me the steps to change the oil in my car", + "oil_change_how" + ], + [ + "is it easy to change the oil in my car", + "oil_change_how" + ], + [ + "how do i change the oil in my car", + "oil_change_how" + ], + [ + "can you tell me how to change the oil in my car", + "oil_change_how" + ], + [ + "do i need any tools to change the oil in my car", + "oil_change_how" + ], + [ + "what do i need to change the oil in my car", + "oil_change_how" + ], + [ + "please explain the steps to change oil", + "oil_change_how" + ], + [ + "i want to change the oil in my car", + "oil_change_how" + ], + [ + "do you know how to change car oil", + "oil_change_how" + ], + [ + "can you show me how to change the oil for my car", + "oil_change_how" + ], + [ + "search for how to change my oil", + "oil_change_how" + ], + [ + "i need to know how to change my oil", + "oil_change_how" + ], + [ + "find instructions on how to change my oil", + "oil_change_how" + ], + [ + "show me how to change my oil", + "oil_change_how" + ], + [ + "what oil should i use and how do i change it", + "oil_change_how" + ], + [ + "how do i change my oil with the correct type", + "oil_change_how" + ], + [ + "what oil do i need and how is it changed", + "oil_change_how" + ], + [ + "how do i change my oil and choose the right oil", + "oil_change_how" + ], + [ + "how do i choose the correct oil and how do i change it", + "oil_change_how" + ], + [ + "teach me how to change my oil", + "oil_change_how" + ], + [ + "i want a lesson on changing my oil", + "oil_change_how" + ], + [ + "give me instructions on how to change my oil", + "oil_change_how" + ], + [ + "i would like to know how to perform an oil change", + "oil_change_how" + ], + [ + "i intend to learn how to change oil", + "oil_change_how" + ], + [ + "i intend to learn how to change oil in my car", + "oil_change_how" + ], + [ + "i want manual on how to change oil", + "oil_change_how" + ], + [ + "give me manual on how to change oil", + "oil_change_how" + ], + [ + "i want to learn the process of changing oil", + "oil_change_how" + ], + [ + "i want to learn to change oil", + "oil_change_how" + ], + [ + "what is the way i can change my oil", + "oil_change_how" + ], + [ + "i want to practive changing oil", + "oil_change_how" + ], + [ + "get me instruction to change oil", + "oil_change_how" + ], + [ + "give me instruction mannual on how to change oil", + "oil_change_how" + ], + [ + "what kind of oil does my car take and how do i do a change", + "oil_change_how" + ], + [ + "can you assist with an oil change, and what type of oil do i get", + "oil_change_how" + ], + [ + "i want to change my oil if you can tell me what to do, and what kind do i get", + "oil_change_how" + ], + [ + "i should use what kind of oil and can you help me change it", + "oil_change_how" + ], + [ + "how do i do an oil change and what type do i use", + "oil_change_how" + ], + [ + "how do i change the oil for my car", + "oil_change_how" + ], + [ + "what do i do to change my car's oil", + "oil_change_how" + ], + [ + "can you give me instructions on how to change the oil for my car", + "oil_change_how" + ], + [ + "can you tell me how to change my car's oil", + "oil_change_how" + ], + [ + "what steps do i take to change the oil for my car", + "oil_change_how" + ], + [ + "i need to know how to change my car's oil", + "oil_change_how" + ], + [ + "tell me the procedure for changing oil in a car", + "oil_change_how" + ], + [ + "what actions do i take to change a car's oil", + "oil_change_how" + ], + [ + "how do i go about changing the oil in my car", + "oil_change_how" + ], + [ + "what are the steps to change the oil in my car", + "oil_change_how" + ], + [ + "what kind of oil do i need to use for my car", + "oil_change_how" + ], + [ + "how can i change my car oil", + "oil_change_how" + ], + [ + "how do i change my oil and what kind do i need", + "oil_change_how" + ], + [ + "how can my oil be changed in my car", + "oil_change_how" + ], + [ + "what kind of oil should i use for my current car", + "oil_change_how" + ], + [ + "how do i change my car oil", + "oil_change_how" + ], + [ + "how can i change my oil for my car", + "oil_change_how" + ], + [ + "how will i change my car's oil", + "oil_change_how" + ], + [ + "what kind of oil do i need to get and use for my car", + "oil_change_how" + ], + [ + "what is needed to change my oil", + "oil_change_how" + ], + [ + "how can i change my oil in my car", + "oil_change_how" + ], + [ + "i need to change my oil, how do i", + "oil_change_how" + ], + [ + "tell me how to change my car's oil, and what type of oil i should buy", + "oil_change_how" + ], + [ + "what kinds of oil can i use in my car, and how to i change the oil", + "oil_change_how" + ], + [ + "i need instructions on how to change my car's oil and what type i should buy", + "oil_change_how" + ], + [ + "i need to change my oil and have no idea how to do it", + "oil_change_how" + ], + [ + "can you tell me how to change my car's oil, and what type i need to buy", + "oil_change_how" + ], + [ + "i don't know how to change my oil or what type i need", + "oil_change_how" + ], + [ + "i'm due for an oil change and need assistance doing it and also need to know what kind of oil the car takes", + "oil_change_how" + ], + [ + "i can't change my oil and don't know what kind i need", + "oil_change_how" + ], + [ + "help me change my oil and what kind do i need", + "oil_change_how" + ], + [ + "how do i change my oil out and what kind should i use", + "oil_change_how" + ], + [ + "can you show me how to change the oil in my car", + "oil_change_how" + ], + [ + "i want to learn how to change the oil in my car", + "oil_change_how" + ], + [ + "what are the steps i need to do to change the oil in my car", + "oil_change_how" + ], + [ + "teach me how to change the oil in my vehicle", + "oil_change_how" + ], + [ + "give me instructions to change my oil", + "oil_change_how" + ], + [ + "steps to change car oil", + "oil_change_how" + ], + [ + "how should i prepare to change my own oil", + "oil_change_how" + ], + [ + "how do you change car oil", + "oil_change_how" + ], + [ + "how easy is it to change your own oil", + "oil_change_how" + ], + [ + "please show me instructions on how to change my oil", + "oil_change_how" + ], + [ + "what do i need in order to change my oil", + "oil_change_how" + ], + [ + "what are the procedures for changing my oil", + "oil_change_how" + ], + [ + "tell me what to do to change the oil in a subaru", + "oil_change_how" + ], + [ + "walk me through changing the oil on a tesla", + "oil_change_how" + ], + [ + "you need to call the melt in lakewood for a table for at 2:00, monday, the first week in march", + "restaurant_reservation" + ], + [ + "hey computer, make a reservation for 2 for my parents at red lobster on wednseday next, 2:00pm if possible", + "restaurant_reservation" + ], + [ + "i think we should reserve dad's regular table friday for 6 people, use his name, make that close to 4:00 pm at the club", + "restaurant_reservation" + ], + [ + "listen i need to get a reservation for , me and teresa at georgetown cafe on tuesday at 7:00 pm", + "restaurant_reservation" + ], + [ + "can you make me a reservation for 4 pm on the 22nd at ruth's", + "restaurant_reservation" + ], + [ + "i need a reservation at 8 on the 22nd of november at ruth's", + "restaurant_reservation" + ], + [ + "can i make a reservation for 6 pm on the 21st at sidetracks", + "restaurant_reservation" + ], + [ + "please reserve me a table at hell's kitchen on may 3rd at 8 pm", + "restaurant_reservation" + ], + [ + "please reserve me a table for 2 pm at maxwell's on the 14th", + "restaurant_reservation" + ], + [ + "can you make a reservation for me at the restaurant", + "restaurant_reservation" + ], + [ + "can you make a reservation at the restaurant for tomorrow", + "restaurant_reservation" + ], + [ + "can you book a table at the restaurant for me and my husband", + "restaurant_reservation" + ], + [ + "can you make a reservation at the restaurant for tonight", + "restaurant_reservation" + ], + [ + "can you get me a table for 6 at mark's at 11am", + "restaurant_reservation" + ], + [ + "can you get me a table for 1 at the vega at 1pm", + "restaurant_reservation" + ], + [ + "can you get a table for 5 at joe's at 5pm", + "restaurant_reservation" + ], + [ + "can you get me a table for 3 at captain d's at 2pm", + "restaurant_reservation" + ], + [ + "can you get me a table for 2 at mexico viejo at 3pm", + "restaurant_reservation" + ], + [ + "can you get me a table for 2 at diablo", + "restaurant_reservation" + ], + [ + "can you get me a table for 5 at johnnys", + "restaurant_reservation" + ], + [ + "can you get me a table for 8 at johnnys", + "restaurant_reservation" + ], + [ + "can you get me a table for 6 at johnnys", + "restaurant_reservation" + ], + [ + "can you get me a table for 4 at steve's", + "restaurant_reservation" + ], + [ + "reserve a table for 3 at outback steakhouse under the name lance at 7:00pm", + "restaurant_reservation" + ], + [ + "reserve a table for 4 at red lobster under the name dave at 7:30pm", + "restaurant_reservation" + ], + [ + "reserve a table for 6 at morton's under the name jaime at 8:30pm", + "restaurant_reservation" + ], + [ + "can you get me a table for 3 at olive garden at 7pm", + "restaurant_reservation" + ], + [ + "book a reservation for 6 at shakey's under the name jason", + "restaurant_reservation" + ], + [ + "reserve a table for 5 at lawry's under the name steve at 8:00pm", + "restaurant_reservation" + ], + [ + "book a reservation for 5 at lawry's under the name chris", + "restaurant_reservation" + ], + [ + "reserve a table for 2 at olive garden under the name jim at 6:00pm", + "restaurant_reservation" + ], + [ + "book a reservation for 4 at outback steakhouse under the name dave", + "restaurant_reservation" + ], + [ + "can you get me a table for 5 at outback steakhouse at 6:30pm", + "restaurant_reservation" + ], + [ + "book a reservation for 3 at red lobster under the name steve", + "restaurant_reservation" + ], + [ + "book a reservation for 2 at olive garden under the name jim", + "restaurant_reservation" + ], + [ + "can you get me a table for 8 at mastro's at 8:30pm", + "restaurant_reservation" + ], + [ + "can you get me a table for 4 at red lobster at 8pm", + "restaurant_reservation" + ], + [ + "can you get me a table for 6 at lawry's at 7:30pm", + "restaurant_reservation" + ], + [ + "is it possible to get a table for 4 at the village inn around 10am", + "restaurant_reservation" + ], + [ + "can you get me a table for 5 at mcdonalds at 5pm", + "restaurant_reservation" + ], + [ + "give me a table for 3 at o'reilly's bar for 7 please", + "restaurant_reservation" + ], + [ + "can i have a table held at the outback steakhouse for johnson at 5", + "restaurant_reservation" + ], + [ + "is it possible to book a room at the taco bell for reavers at 3", + "restaurant_reservation" + ], + [ + "i'd like to set up a reservation for kibble at 4", + "restaurant_reservation" + ], + [ + "can i reserve a table for 2 at the olive garden at 8", + "restaurant_reservation" + ], + [ + "i want to reserve a table at 8 at long john silver's under the name freddie", + "restaurant_reservation" + ], + [ + "i want to have a table for 2 at the broadmore around 6", + "restaurant_reservation" + ], + [ + "i need an 8 o'clock reservation at pizza hut for the last name mercury", + "restaurant_reservation" + ], + [ + "hey, i need to make a reservation for three at umi, six pm on february 30th", + "restaurant_reservation" + ], + [ + "hello, i'd like a reservation for two at the olive garden at six tonight", + "restaurant_reservation" + ], + [ + "can you set me up for a reservation for five at outback steakhouse on february 28th at seven pm", + "restaurant_reservation" + ], + [ + "i need a reservation for one at applebee's, four in the afternoon on march 3rd", + "restaurant_reservation" + ], + [ + "please make a reservation for me: party of two, february 22nd at chili's, two in the afternoon", + "restaurant_reservation" + ], + [ + "i gotta make a reservation for 8 pm at red robin for 3", + "restaurant_reservation" + ], + [ + "can i make a reservation for 8 pm at red robin for 3", + "restaurant_reservation" + ], + [ + "please book a reservation for 8 pm at red robin under the name kevin", + "restaurant_reservation" + ], + [ + "i want you to book a reservation for 8 pm at red robin under the name kevin", + "restaurant_reservation" + ], + [ + "you have to reserve a table for 4 at red robin under the name kevin at 7", + "restaurant_reservation" + ], + [ + "please reserve a table for 4 at red robin under the name kevin at 7", + "restaurant_reservation" + ], + [ + "i need you to reserve a table for 4 at red robin under the name kevin at 7", + "restaurant_reservation" + ], + [ + "reserve a table for 4 at red robin under the name kevin at 7", + "restaurant_reservation" + ], + [ + "i want to make a reservation for 8 pm at red robin for 3", + "restaurant_reservation" + ], + [ + "you must reserve a table for 4 at red robin under the name kevin at 7", + "restaurant_reservation" + ], + [ + "i think i need to make a reservation for 8 pm at red robin for 3", + "restaurant_reservation" + ], + [ + "i need you to book a reservation for 8 pm at red robin under the name kevin", + "restaurant_reservation" + ], + [ + "go ahead and book a reservation for 8 pm at red robin under the name kevin", + "restaurant_reservation" + ], + [ + "i need to make a reservation for 8 pm at red robin for 3", + "restaurant_reservation" + ], + [ + "book a reservation for 8 pm at red robin under the name kevin", + "restaurant_reservation" + ], + [ + "would you please make a reservation for 2 at olive garden for 5 pm today", + "restaurant_reservation" + ], + [ + "i'd like a reservation for 2 at olive garden for 5 pm today", + "restaurant_reservation" + ], + [ + "could you make reservations for 2 at olive garden for 5 pm today", + "restaurant_reservation" + ], + [ + "make a reservation at 5 pm today for 2 at olive garden", + "restaurant_reservation" + ], + [ + "please make a reservation for 2 at olive garden for 5 pm today", + "restaurant_reservation" + ], + [ + "i need you to reserve a table for 6:00 pm for three at devon's seafood", + "restaurant_reservation" + ], + [ + "make a reservation for three at prime rib at 6:30 pm", + "restaurant_reservation" + ], + [ + "i would like a reservation for 6:30 pm at pietro's under the name david jones", + "restaurant_reservation" + ], + [ + "please reserve a table for two at rouge for 7:00 pm", + "restaurant_reservation" + ], + [ + "can you get me a table for two for 8:00 pm at parc", + "restaurant_reservation" + ], + [ + "i would like you to secure a 4:30 pm reservation for five people at morton's steakhouse", + "restaurant_reservation" + ], + [ + "call and make a 5:45 pm reservation for jason rogers, table for four", + "restaurant_reservation" + ], + [ + "i need you to reserve at table for a party of four at devon's for 6:00 pm", + "restaurant_reservation" + ], + [ + "reserve a table for two for 7:30 pm at dibruno's under patrick donoghue", + "restaurant_reservation" + ], + [ + "please make a reservation at ruth's steaks for a party of five at 7:00 pm under jack arnold", + "restaurant_reservation" + ], + [ + "can i make a reservation for 2 at state bird for 7:30, please", + "restaurant_reservation" + ], + [ + "can i make a reservation for 2 at state bird for 8:30, please", + "restaurant_reservation" + ], + [ + "can i make a reservation for 2 at state bird for 6:30, please", + "restaurant_reservation" + ], + [ + "can i make a reservation for 3 at state bird for 8:30, please", + "restaurant_reservation" + ], + [ + "can i make a reservation for 2 at state bird for 8:30", + "restaurant_reservation" + ], + [ + "please make a reservation for us at joy bar for 4 adults", + "restaurant_reservation" + ], + [ + "please make me a reservation for monty's at noon for 55555", + "restaurant_reservation" + ], + [ + "now, i need a reservation for backwoods crossing at seven for 6 people", + "restaurant_reservation" + ], + [ + "make me a reservation for tomorrow at happys for four", + "restaurant_reservation" + ], + [ + "make me a reservation for 5 at coral for 10 pm immediately", + "restaurant_reservation" + ], + [ + "can you reserve a table for 2 at red lobster at 8pm", + "restaurant_reservation" + ], + [ + "schedule me a table for 2 at red lobster at 8", + "restaurant_reservation" + ], + [ + "check reservation availability for 2 at red lobster at 8pm", + "restaurant_reservation" + ], + [ + "make a reservation for 2 at red lobster at 8pm", + "restaurant_reservation" + ], + [ + "reserve a table for 2 at red lobster at 8:00", + "restaurant_reservation" + ], + [ + "reserve a table for four for tonight at 7 at the fatted calf", + "restaurant_reservation" + ], + [ + "make a reservation for tuesday at 7:00 pm at cielo for 2", + "restaurant_reservation" + ], + [ + "savings account balance at chase bank please", + "balance" + ], + [ + "check chase bank for my checking balance", + "balance" + ], + [ + "what is my checking account balance at chase", + "balance" + ], + [ + "i want my checking balance at chase", + "balance" + ], + [ + "what's my savings balance at chase", + "balance" + ], + [ + "do i have enough money in my chime bank account to take ashley to the movies tuesday", + "balance" + ], + [ + "check my visa account and see if i have enough money for dinner tonight", + "balance" + ], + [ + "is tehre enough in my bluebird account for groceries this week", + "balance" + ], + [ + "do i have enough in my sears account to buy a new dishwasher", + "balance" + ], + [ + "is there enough money in my discover account for a new pair of jeans", + "balance" + ], + [ + "what is the total of my bank accounts", + "balance" + ], + [ + "what is in my bank accounts", + "balance" + ], + [ + "what is the balance on my bank accounts", + "balance" + ], + [ + "what is remaining in my bank acccounts", + "balance" + ], + [ + "how much money is left in my bank accounts", + "balance" + ], + [ + "what amount of money is in my bank accounts", + "balance" + ], + [ + "what is the balance of my bank accounts", + "balance" + ], + [ + "what what kind money is available in my bank accounts", + "balance" + ], + [ + "what is the value of my bank accounts", + "balance" + ], + [ + "how much funds do i have in my bank accounts", + "balance" + ], + [ + "what's my checking account balance", + "balance" + ], + [ + "how much do i have in my checking", + "balance" + ], + [ + "what's the balance of my savings", + "balance" + ], + [ + "how much is in savings", + "balance" + ], + [ + "how much money is in my checking account", + "balance" + ], + [ + "what's the amount of money accumulated in my bank accounts", + "balance" + ], + [ + "what's my current bank savings", + "balance" + ], + [ + "how much total cash do i have in the bank", + "balance" + ], + [ + "what's my current checking balance", + "balance" + ], + [ + "can you tell me my current bank accounts balance", + "balance" + ], + [ + "what's the balance of my bank accounts", + "balance" + ], + [ + "what is my current balance on my home equity line of credit", + "balance" + ], + [ + "please find my balance on my chase mastercard", + "balance" + ], + [ + "can you tell me my checking account balance", + "balance" + ], + [ + "perform a search for my most recent balance on my amex account", + "balance" + ], + [ + "how much is the current balance in my td bank savings account", + "balance" + ], + [ + "what is my balance in checking account", + "balance" + ], + [ + "how much is available in my savings account", + "balance" + ], + [ + "tell me what i have in my money market account", + "balance" + ], + [ + "how much money do i have in my account", + "balance" + ], + [ + "how much is left of mastercard", + "balance" + ], + [ + "what is the available balance in savings", + "balance" + ], + [ + "what is the balance on my visa", + "balance" + ], + [ + "do i have enough money in my chase account for a new refrigerator", + "balance" + ], + [ + "do i have enough money in my charles schwab account to get a new baseball bat", + "balance" + ], + [ + "i'd like to know my bank balance please", + "balance" + ], + [ + "what's the balance on my bank account", + "balance" + ], + [ + "will the money in my capital one account cover a new washing machine", + "balance" + ], + [ + "could you check my bank balance for me", + "balance" + ], + [ + "will the amount in my chase bank account right now cover the cost of a new dryer", + "balance" + ], + [ + "i want to get a new shirt; will the money in my td ameritrade account cover it", + "balance" + ], + [ + "how much do i have in the bank", + "balance" + ], + [ + "what's my bank balance", + "balance" + ], + [ + "what is my bank balance", + "balance" + ], + [ + "is there any money left", + "balance" + ], + [ + "do i have any cash left", + "balance" + ], + [ + "can you tell me how much cash i have", + "balance" + ], + [ + "do i have enough in my boa account for a new pair of skis", + "balance" + ], + [ + "do i have enough in my chase account for new nikes", + "balance" + ], + [ + "can the funds in my wells fargo account cover my lift tickets", + "balance" + ], + [ + "do i have enough to cover new skis in my bank of america account", + "balance" + ], + [ + "do i have enough in my chase account for a plane ticket", + "balance" + ], + [ + "do you know how much i have in checking", + "balance" + ], + [ + "what is my saving's account balance", + "balance" + ], + [ + "what's the balance in my checking", + "balance" + ], + [ + "how much do i have in savings", + "balance" + ], + [ + "could you tell me what my checking account balance is", + "balance" + ], + [ + "what's my total net worth in all of my bank accounts", + "balance" + ], + [ + "what's my account balance", + "balance" + ], + [ + "i want to view my balance", + "balance" + ], + [ + "check my bank balance", + "balance" + ], + [ + "how much money do i have in all of my accounts", + "balance" + ], + [ + "how much money do i have in all of my accounts combined", + "balance" + ], + [ + "what's my checking balance", + "balance" + ], + [ + "how much money do i have total", + "balance" + ], + [ + "what's the total of my bank accounts", + "balance" + ], + [ + "how much money do i have in checking", + "balance" + ], + [ + "i wish to know the balance of my bank of american account", + "balance" + ], + [ + "what is the balance of my bank of american account", + "balance" + ], + [ + "i need to know my bank balance", + "balance" + ], + [ + "i wanna know the balance of my bank of american account", + "balance" + ], + [ + "i'd like to know the balance of my bank of american account", + "balance" + ], + [ + "i wish to know the balance of my bank of american account now", + "balance" + ], + [ + "please tell me my bank balance", + "balance" + ], + [ + "i wanna know my bank balance", + "balance" + ], + [ + "please let me know what my current bank balance is", + "balance" + ], + [ + "what is status of my bank account", + "balance" + ], + [ + "what is my balance", + "balance" + ], + [ + "what is the balance of my bank account", + "balance" + ], + [ + "what is is the details of my bank account", + "balance" + ], + [ + "is there enough money in my discover account for a vacation", + "balance" + ], + [ + "is there enough money in my account for expenses", + "balance" + ], + [ + "do i have enough money in my first hawaiian bank account for a vacation", + "balance" + ], + [ + "is there enough money in my bank of hawaii for vacation", + "balance" + ], + [ + "is there enough money in my discover account for airplane tickets", + "balance" + ], + [ + "what is my savings account balance", + "balance" + ], + [ + "what is my savings balance", + "balance" + ], + [ + "what is my money market account balance", + "balance" + ], + [ + "what is my bank balance for all accounts", + "balance" + ], + [ + "tell me my payroll account balance", + "balance" + ], + [ + "verify that i have reservations at chilis for john doe", + "confirm_reservation" + ], + [ + "can you check my reservations for mortons under david winters", + "confirm_reservation" + ], + [ + "can you check for reservations at wongs chinese for john acer", + "confirm_reservation" + ], + [ + "check and confirm reservations at ruth chris for carol lee", + "confirm_reservation" + ], + [ + "verify that my reservations at won wons for joe lee are good", + "confirm_reservation" + ], + [ + "check on my reservation for umami at 6pm", + "confirm_reservation" + ], + [ + "confirm a reservation for nicole brown at diangelo's at 6:45 pm, please", + "confirm_reservation" + ], + [ + "i need you to confirm that there is a reservation under the name david kramer for 7:00 pm at pietro's", + "confirm_reservation" + ], + [ + "i would like to confirm my 7:30 pm reservation at morton's steakhouse, under michael james", + "confirm_reservation" + ], + [ + "can you please confirm that i have a 6:00 pm table reserved under michelle solomon at devon's", + "confirm_reservation" + ], + [ + "please confirm my reservation at parc for 8:00 pm, with the name denise jack", + "confirm_reservation" + ], + [ + "please confirm my reservation for thursday at 10am", + "confirm_reservation" + ], + [ + "does it show me as having a reservation for tomorrow at 5", + "confirm_reservation" + ], + [ + "can you confirm my reservation for 6 at the outback", + "confirm_reservation" + ], + [ + "can you check that i have a reservation on february 28th for 3 in the afternoon", + "confirm_reservation" + ], + [ + "i want to make sure my reservation for 5 at mcdonalds is still set", + "confirm_reservation" + ], + [ + "i want to verify my reservation for the 18th at 1pm", + "confirm_reservation" + ], + [ + "do i have a reservation for may 1st, 2019 at 4 pm", + "confirm_reservation" + ], + [ + "can you verify that i have a reservation at o'reilly's for 9", + "confirm_reservation" + ], + [ + "can you assure me i have a table at taco bell at 7pm", + "confirm_reservation" + ], + [ + "is my 10am village inn reservation valid", + "confirm_reservation" + ], + [ + "please confirm my reservation for morton's at 5 pm", + "confirm_reservation" + ], + [ + "do i have reservations at o'neal's at 3 pm", + "confirm_reservation" + ], + [ + "is my reservation confirmed for lu shi at 7 pm", + "confirm_reservation" + ], + [ + "confirm my reservation at dino's at 6 pm", + "confirm_reservation" + ], + [ + "please tell me if my reservation is scheduled for sally's at 3 pm", + "confirm_reservation" + ], + [ + "check to see if i have reservations at prado at 6 pm", + "confirm_reservation" + ], + [ + "tell me if i have reservations at the back abbey at 6 pm", + "confirm_reservation" + ], + [ + "do you know if my reservation for dono is confirmed at 8 pm", + "confirm_reservation" + ], + [ + "do i have reservations at creme at 7 pm", + "confirm_reservation" + ], + [ + "i need to know if i have reservations at arufflo at 5 pm", + "confirm_reservation" + ], + [ + "i really need you to confirm my reservation for kevin at red robin", + "confirm_reservation" + ], + [ + "can you confirm my reservation for kevin at red robin", + "confirm_reservation" + ], + [ + "i wanna confirm my reservation for 2/20 at 8 pm", + "confirm_reservation" + ], + [ + "i'd like to confirm my reservation for 2/20 at 8 pm", + "confirm_reservation" + ], + [ + "i would like for you to confirm my reservation for red robin at 5 pm", + "confirm_reservation" + ], + [ + "i must confirm my reservation for 2/20 at 8 pm", + "confirm_reservation" + ], + [ + "i really want to confirm that i have a reservation at red robin for josh", + "confirm_reservation" + ], + [ + "i need you to confirm my reservation for kevin at red robin", + "confirm_reservation" + ], + [ + "will you confirm my reservation for red robin at 10", + "confirm_reservation" + ], + [ + "i wanna try and confirm that i have a reservation at red robin for josh", + "confirm_reservation" + ], + [ + "i need to confirm that i have a reservation at red robin for josh", + "confirm_reservation" + ], + [ + "please confirm my reservation for red robin at 9", + "confirm_reservation" + ], + [ + "i wish to confirm that i have a reservation at red robin for josh", + "confirm_reservation" + ], + [ + "i need to confirm my reservation for 2/20 at 8 pm", + "confirm_reservation" + ], + [ + "go ahead and confirm my reservation for kevin at red robin", + "confirm_reservation" + ], + [ + "please confirm my reservation for 2/20 at 8 pm", + "confirm_reservation" + ], + [ + "confirm my reservation for red robin at 8", + "confirm_reservation" + ], + [ + "i need you to confirm my reservation for outback steakhouse at 6", + "confirm_reservation" + ], + [ + "please confirm my reservation for kevin at red robin", + "confirm_reservation" + ], + [ + "i'd like to confirm that i have a reservation at red robin for josh", + "confirm_reservation" + ], + [ + "will you make sure robert has a reservation at ruth's steakhouse", + "confirm_reservation" + ], + [ + "do i still have the reservation on march 21 at 8pm", + "confirm_reservation" + ], + [ + "can you check that there's a reservation for mark at sidetracks", + "confirm_reservation" + ], + [ + "will you check there is a reservation for laura at black pearl", + "confirm_reservation" + ], + [ + "i need to make sure there is a reservation for george at connor oneil's", + "confirm_reservation" + ], + [ + "can you confirm my reservation for 6 pm on the 13th of february", + "confirm_reservation" + ], + [ + "can you confirm i have a reservation at 5 pm on march 13th", + "confirm_reservation" + ], + [ + "can you confirm my reservation for 8 pm on the 7th of november", + "confirm_reservation" + ], + [ + "please confirm i have a reservation for 2 pm on february 21st", + "confirm_reservation" + ], + [ + "can you verify mike has a reservation at black rock at 6 pm", + "confirm_reservation" + ], + [ + "i want my reservation for march 1 at 8 pm confirmed", + "confirm_reservation" + ], + [ + "will you please confirm my reservation for march 11 at 6:30 pm", + "confirm_reservation" + ], + [ + "i would like you to confirm my reservation for next saturday at 11 am", + "confirm_reservation" + ], + [ + "i need you to confirm my reservation for tomorrow at 3 pm", + "confirm_reservation" + ], + [ + "check to confirm my reservation for february 22 at noon", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at houlihan\u2019s for mike", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at the seven dwarves for peter", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at hu hot for paulie", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at macaroni grill for saul", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at chili\u2019s for melinda", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at macaroni grill for silva", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at kelly's for moreno", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at la palapa for bolding", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at gusteau's for krystine", + "confirm_reservation" + ], + [ + "i would like to try and confirm that i have a reservation at chili's for jamie", + "confirm_reservation" + ], + [ + "can you confirm my reservation for jim at lawry's", + "confirm_reservation" + ], + [ + "can you confirm my reservation for dave at outback steakhouse", + "confirm_reservation" + ], + [ + "can you confirm my reservation for lance at morton's", + "confirm_reservation" + ], + [ + "can you confirm my reservation for steve at olive garden", + "confirm_reservation" + ], + [ + "can you confirm my reservation for jaime at red lobster", + "confirm_reservation" + ], + [ + "i'd like for you to make sure my reservation is there for charlie's under jack", + "confirm_reservation" + ], + [ + "can you check and see i have a reservation under alex for bon apetite", + "confirm_reservation" + ], + [ + "can you verify my reservation under steve for friendly's", + "confirm_reservation" + ], + [ + "make sure my reservation is happening for john at olive garden", + "confirm_reservation" + ], + [ + "double check my reservation under adam for outback steakhouse", + "confirm_reservation" + ], + [ + "please confirm my reservation for april 1st at 9am", + "confirm_reservation" + ], + [ + "please confirm my reservation for march 8th at 12:00", + "confirm_reservation" + ], + [ + "can you confirm my reservation for donnobys at 5:00", + "confirm_reservation" + ], + [ + "can you confirm my reservation for minnis at 4:00", + "confirm_reservation" + ], + [ + "please confirm my reservation for may 9th at 4pm", + "confirm_reservation" + ], + [ + "please confirm my reservation for march 1st at 2pm", + "confirm_reservation" + ], + [ + "can you confirm my reservation for torris at 7:00", + "confirm_reservation" + ], + [ + "can you confirm my reservation for applebees at 2:00", + "confirm_reservation" + ], + [ + "can you confirm my reservation for chillis at 8:00", + "confirm_reservation" + ], + [ + "please confirm my reservation for feburary 21st at 6pm", + "confirm_reservation" + ], + [ + "confirm my taco house reservation for jean", + "confirm_reservation" + ], + [ + "can you you confirm my reservation for jean at taco house", + "confirm_reservation" + ], + [ + "does taco house have a reservation for jean", + "confirm_reservation" + ], + [ + "i would like to check my reservation for jean at taco house", + "confirm_reservation" + ], + [ + "can you block my chase account right away please", + "freeze_account" + ], + [ + "i want my chase account blocked immediately", + "freeze_account" + ], + [ + "i need you to block my chase account immediately", + "freeze_account" + ], + [ + "can you put a block on my chase account right away", + "freeze_account" + ], + [ + "please block my chase account right away", + "freeze_account" + ], + [ + "what do i do to freeze my account", + "freeze_account" + ], + [ + "place a hold on my bank account", + "freeze_account" + ], + [ + "how can i stop transactions on my account", + "freeze_account" + ], + [ + "freeze my account immediately", + "freeze_account" + ], + [ + "block my monkey market right now", + "freeze_account" + ], + [ + "put a stop on my deposit account", + "freeze_account" + ], + [ + "stop any future processing on my savings account", + "freeze_account" + ], + [ + "put a hault on my savings account", + "freeze_account" + ], + [ + "could you put a stop on my bank account, please", + "freeze_account" + ], + [ + "can you put a stop on my bank account now", + "freeze_account" + ], + [ + "can you put a stop on my bank account, please", + "freeze_account" + ], + [ + "could you freeze my account", + "freeze_account" + ], + [ + "could you freeze my account, please", + "freeze_account" + ], + [ + "can you put a stop on my bank account", + "freeze_account" + ], + [ + "can you freeze my account, please", + "freeze_account" + ], + [ + "could you freeze my account now", + "freeze_account" + ], + [ + "can you freeze my account", + "freeze_account" + ], + [ + "could you put a stop on my bank account", + "freeze_account" + ], + [ + "do you mind putting a stop on my bank account", + "freeze_account" + ], + [ + "i would like you to put a stop on my bank account", + "freeze_account" + ], + [ + "please turn my account to frozen", + "freeze_account" + ], + [ + "please make my account a frozen one", + "freeze_account" + ], + [ + "please make sure my account is frozen", + "freeze_account" + ], + [ + "is it too much trouble to put a stop on my bank account", + "freeze_account" + ], + [ + "i would love it if you could put a stop on my bank account", + "freeze_account" + ], + [ + "i would appreciate it if you put a stop on my bank account", + "freeze_account" + ], + [ + "please set my account as frozen", + "freeze_account" + ], + [ + "please freeze my account", + "freeze_account" + ], + [ + "i need my account frozen", + "freeze_account" + ], + [ + "i'd like my account frozen", + "freeze_account" + ], + [ + "i would like my account frozen", + "freeze_account" + ], + [ + "i want my account frozen", + "freeze_account" + ], + [ + "i really want my account frozen", + "freeze_account" + ], + [ + "no payments on my bank account", + "freeze_account" + ], + [ + "turn off my bank account", + "freeze_account" + ], + [ + "stop all payments to my bank account", + "freeze_account" + ], + [ + "shut down my account", + "freeze_account" + ], + [ + "close out my account", + "freeze_account" + ], + [ + "turn off my account", + "freeze_account" + ], + [ + "i need to hold off on my account", + "freeze_account" + ], + [ + "plase hold my account for now", + "freeze_account" + ], + [ + "terminate the account", + "freeze_account" + ], + [ + "i am going to need a block put on my chase account right away", + "freeze_account" + ], + [ + "would you please put a block on my chase account right away", + "freeze_account" + ], + [ + "i would like a block put on my chase account asap", + "freeze_account" + ], + [ + "can you please put a block on my chase account quickly", + "freeze_account" + ], + [ + "i need a block put on my chase account right away", + "freeze_account" + ], + [ + "i need to put a freeze on my banking account", + "freeze_account" + ], + [ + "put a freeze on my bank account", + "freeze_account" + ], + [ + "freeze my bank account", + "freeze_account" + ], + [ + "can i freeze my bank account", + "freeze_account" + ], + [ + "i want you to immediatly block any further activity on my bb&t bank account", + "freeze_account" + ], + [ + "block my citibank account right away", + "freeze_account" + ], + [ + "add a block to my capital one bank account so it cannot be used any more", + "freeze_account" + ], + [ + "please immediatly block my presidential bank account right now", + "freeze_account" + ], + [ + "put a block on my amalgamated bank account right now", + "freeze_account" + ], + [ + "please put a stop on my back account", + "freeze_account" + ], + [ + "please put a block on my td ameritrade account now", + "freeze_account" + ], + [ + "i'd like a stop placed on my bank account", + "freeze_account" + ], + [ + "place a block on my capital one account right now", + "freeze_account" + ], + [ + "i'd like a block on my charles schwab account immediately", + "freeze_account" + ], + [ + "i need you to place a stop on my bank account, thank you", + "freeze_account" + ], + [ + "place a stop on my bank account", + "freeze_account" + ], + [ + "i need you to freeze my account", + "freeze_account" + ], + [ + "i need you to block my mutualone account now", + "freeze_account" + ], + [ + "help me freeze my bank account, please", + "freeze_account" + ], + [ + "i'd like to put a freeze on my bank account", + "freeze_account" + ], + [ + "block my chase account asap", + "freeze_account" + ], + [ + "can you please freeze my bank account", + "freeze_account" + ], + [ + "can you please put a stop on my bank account", + "freeze_account" + ], + [ + "pause my account", + "freeze_account" + ], + [ + "put a hold on my bank account", + "freeze_account" + ], + [ + "please do a stop on my bank account", + "freeze_account" + ], + [ + "stop payments from my bank", + "freeze_account" + ], + [ + "put a hold on my account", + "freeze_account" + ], + [ + "stop my account activity", + "freeze_account" + ], + [ + "please pause my banking actions", + "freeze_account" + ], + [ + "dont allow any action on my account", + "freeze_account" + ], + [ + "don't let payments go through using my bank account", + "freeze_account" + ], + [ + "please freeze my bank account", + "freeze_account" + ], + [ + "i want my bank account frozen", + "freeze_account" + ], + [ + "my bank account must be frozen", + "freeze_account" + ], + [ + "please ask the bank to freeze my account", + "freeze_account" + ], + [ + "i need to freeze my bank account", + "freeze_account" + ], + [ + "put a block on my chase account right away", + "freeze_account" + ], + [ + "put a hold on my chase account right away please", + "freeze_account" + ], + [ + "freeze my account", + "freeze_account" + ], + [ + "place a stop on my main account for me please", + "freeze_account" + ], + [ + "please put a block on my wells fargo account", + "freeze_account" + ], + [ + "put a hold on my bank account please", + "freeze_account" + ], + [ + "put a hold on my bank of america account right away please", + "freeze_account" + ], + [ + "can you notify the bank to put a stop on my account", + "freeze_account" + ], + [ + "can you put a stop on my account", + "freeze_account" + ], + [ + "i need a stop placed on my bank account please", + "freeze_account" + ], + [ + "can you put a block on my visa account right away", + "freeze_account" + ], + [ + "ways to transfer my 401k", + "rollover_401k" + ], + [ + "where do i go the transfer my 401k", + "rollover_401k" + ], + [ + "who do i go to, to transfer my 401k", + "rollover_401k" + ], + [ + "what are the ways i can transfer my 401k", + "rollover_401k" + ], + [ + "i need guidance on how to rollover my 401k", + "rollover_401k" + ], + [ + "walk me through the process of transferring my 401k", + "rollover_401k" + ], + [ + "i want to figure out how to rollover my 401k", + "rollover_401k" + ], + [ + "tell me if i am able to rollover my 401k", + "rollover_401k" + ], + [ + "i have to transfer my 401k but i don't know how to do it", + "rollover_401k" + ], + [ + "i want to rollover my 401k but dont know how", + "rollover_401k" + ], + [ + "i need to know if it is possible to rollover my 401k", + "rollover_401k" + ], + [ + "i nee to know how to transfer my 401k", + "rollover_401k" + ], + [ + "will you help me figure out how to transfer my 401k", + "rollover_401k" + ], + [ + "explain to me how transferring my 401k works", + "rollover_401k" + ], + [ + "can you instruct me on how to rollover my 401k", + "rollover_401k" + ], + [ + "do you know if my 401k is able to be rolled over", + "rollover_401k" + ], + [ + "look up whether my 401k may be rolled over", + "rollover_401k" + ], + [ + "please walk me through the steps necessary to rollover my 401k", + "rollover_401k" + ], + [ + "how do i transport my 401k", + "rollover_401k" + ], + [ + "how do i relocate my 401k", + "rollover_401k" + ], + [ + "since i got a new job, i need help with my 401k rollover", + "rollover_401k" + ], + [ + "i have a new job now and need help with rolling over my 401k", + "rollover_401k" + ], + [ + "how do i move my 401k", + "rollover_401k" + ], + [ + "i recently got a new job and need assistance with my 401k rollover", + "rollover_401k" + ], + [ + "how do i redirect my 401k", + "rollover_401k" + ], + [ + "now that i have a new job, i need getting my 401k rolled over", + "rollover_401k" + ], + [ + "i have a new job and need direction with my 401k rollover", + "rollover_401k" + ], + [ + "i need help changing my 401k after i got a new job", + "rollover_401k" + ], + [ + "i just got a new job and need help transferring my 401k", + "rollover_401k" + ], + [ + "how do i rollover my 401k after i got a new job", + "rollover_401k" + ], + [ + "i need to rollover my 401k because i got a new job", + "rollover_401k" + ], + [ + "i jot got hired and need help with my retirement account", + "rollover_401k" + ], + [ + "could you roll over my 401k for me", + "rollover_401k" + ], + [ + "what are the steps for transfering my 401k", + "rollover_401k" + ], + [ + "walk me through on how to roll over my 401k", + "rollover_401k" + ], + [ + "help me roll over my 401k", + "rollover_401k" + ], + [ + "could you walk me through transfering my 401k", + "rollover_401k" + ], + [ + "i could use some help transfering my 401k", + "rollover_401k" + ], + [ + "help me transfer my 401k", + "rollover_401k" + ], + [ + "i need your assistance on transfering my 401k", + "rollover_401k" + ], + [ + "i need your assistance on rolling over my 401k", + "rollover_401k" + ], + [ + "i need help to roll over my 401k", + "rollover_401k" + ], + [ + "i have to get my 401k rollover because i just got a new job", + "rollover_401k" + ], + [ + "i just changed jobs and need help with my 401k rollover", + "rollover_401k" + ], + [ + "i have just switched jobs and need assistance with my 401k rollover", + "rollover_401k" + ], + [ + "i just started this new job and need help with my 401k rollover", + "rollover_401k" + ], + [ + "i just switched jobs and need a 401k rollover", + "rollover_401k" + ], + [ + "i'd like my 401k to be rolled over", + "rollover_401k" + ], + [ + "tell me how to get my 401k rolled over", + "rollover_401k" + ], + [ + "help me to roll over my 401k", + "rollover_401k" + ], + [ + "i'd like to roll over my 401k", + "rollover_401k" + ], + [ + "how can i roll over my 401k", + "rollover_401k" + ], + [ + "will my 401k rollover or not", + "rollover_401k" + ], + [ + "can a 401k be rolled over", + "rollover_401k" + ], + [ + "do i have the ability to rollover my 401k", + "rollover_401k" + ], + [ + "what's up with my 401k and will it roll over", + "rollover_401k" + ], + [ + "i'm on a new job but i need help with my 401k rollover", + "rollover_401k" + ], + [ + "i managed to get a new job but i need help with my 401k rollover", + "rollover_401k" + ], + [ + "i just acquired a new job but i need help with my 401k rollover", + "rollover_401k" + ], + [ + "i recently took a new job and need help with my 401k rollover", + "rollover_401k" + ], + [ + "i just got this new job but i need help with my 401k rollover", + "rollover_401k" + ], + [ + "i want help rolling over my 401k", + "rollover_401k" + ], + [ + "i need to rollover my 401k to a new job", + "rollover_401k" + ], + [ + "i want my 401k rolled over to a new workplace", + "rollover_401k" + ], + [ + "my previous job's 401k needs to be rolled over", + "rollover_401k" + ], + [ + "i need a 401k rolled over to my brand new job", + "rollover_401k" + ], + [ + "what do i do to rollover my 401k", + "rollover_401k" + ], + [ + "i need to rollover my 401k", + "rollover_401k" + ], + [ + "can you help me with rolling over my 401k", + "rollover_401k" + ], + [ + "i desperately need to rollover my 401k somehow", + "rollover_401k" + ], + [ + "my new job requires that i rollover my 401k", + "rollover_401k" + ], + [ + "can you help me figure out the process of rolling over a 401k", + "rollover_401k" + ], + [ + "what do i need to do to rollover my 401k", + "rollover_401k" + ], + [ + "can you help me rollover my 401k to my new place of employment", + "rollover_401k" + ], + [ + "how can i rollover my 401k at my new job", + "rollover_401k" + ], + [ + "can you assist me rolling over a 401k for a new job", + "rollover_401k" + ], + [ + "what's the process for rolling over my 401k", + "rollover_401k" + ], + [ + "i just found a better job and need to move my 401k over to my new employer", + "rollover_401k" + ], + [ + "i have to roll over my 401k to a new account and i don't know how", + "rollover_401k" + ], + [ + "i switched companies and need to rollover my 401k", + "rollover_401k" + ], + [ + "tell me how to transfer my 401k", + "rollover_401k" + ], + [ + "what are the steps for transferring my 401k", + "rollover_401k" + ], + [ + "transfer my 401k please", + "rollover_401k" + ], + [ + "i need to transfer my 401 k", + "rollover_401k" + ], + [ + "is there a way to transfer my 401k", + "rollover_401k" + ], + [ + "can you explain to me how to rollover my 401k", + "rollover_401k" + ], + [ + "can you help me figure out how to rollover my 401k", + "rollover_401k" + ], + [ + "i got a new job, can you help me with my 401k rollover", + "rollover_401k" + ], + [ + "i want to know how to rollover my 401k", + "rollover_401k" + ], + [ + "i need help with my 401k rollver since i got a new job", + "rollover_401k" + ], + [ + "i would like to know how to rollover my 401k", + "rollover_401k" + ], + [ + "explain to me how to rollover my 401k", + "rollover_401k" + ], + [ + "please help me with my 401k rollover since i got a new job", + "rollover_401k" + ], + [ + "can you help me with my 401k rollover since i got a new job", + "rollover_401k" + ], + [ + "i have a new job, help me with my 401k rollover", + "rollover_401k" + ], + [ + "i need assistance figuring out how to rollover my 401k", + "rollover_401k" + ], + [ + "i need to get some assistance figuring out how i can rollover my 401k, please", + "rollover_401k" + ], + [ + "i need to get some assistance figuring out how to rollover my 401k, please", + "rollover_401k" + ], + [ + "i need to get some assistance figuring out how to rollover my 401k", + "rollover_401k" + ], + [ + "i need assistance figuring out how to rollover my 401k, please", + "rollover_401k" + ], + [ + "who formed you", + "who_made_you" + ], + [ + "who constructed you", + "who_made_you" + ], + [ + "what's your design company", + "who_made_you" + ], + [ + "what company coded you", + "who_made_you" + ], + [ + "who fabricated you", + "who_made_you" + ], + [ + "what company wrote your code", + "who_made_you" + ], + [ + "what company owns your code", + "who_made_you" + ], + [ + "who brought you up", + "who_made_you" + ], + [ + "who is it that programmed you", + "who_made_you" + ], + [ + "whats it like to be programmed", + "who_made_you" + ], + [ + "who was the inventor of ai", + "who_made_you" + ], + [ + "ai was made by whom", + "who_made_you" + ], + [ + "tell me the inventor of ai", + "who_made_you" + ], + [ + "can you tell me who made ai", + "who_made_you" + ], + [ + "could you let me know who made you", + "who_made_you" + ], + [ + "would you let me know who programmed you", + "who_made_you" + ], + [ + "provide me the name of who programmed you", + "who_made_you" + ], + [ + "i want to know who made you", + "who_made_you" + ], + [ + "provide me the name of who made you", + "who_made_you" + ], + [ + "i am needing to know who made you", + "who_made_you" + ], + [ + "tell me who made you", + "who_made_you" + ], + [ + "tell me who programmed you", + "who_made_you" + ], + [ + "let me know who made you", + "who_made_you" + ], + [ + "i need to know who programmed you", + "who_made_you" + ], + [ + "i am wanting to know who programmed you", + "who_made_you" + ], + [ + "give me an answer to who made you", + "who_made_you" + ], + [ + "i'm needing to know who made you", + "who_made_you" + ], + [ + "what's your brand", + "who_made_you" + ], + [ + "who created you", + "who_made_you" + ], + [ + "who was your creator", + "who_made_you" + ], + [ + "who made your algorithms", + "who_made_you" + ], + [ + "who manufactured you", + "who_made_you" + ], + [ + "what's the name of the company that designed you", + "who_made_you" + ], + [ + "who's responsible for your existence", + "who_made_you" + ], + [ + "what's the business that caused you to be made", + "who_made_you" + ], + [ + "can you remember who compiled you", + "who_made_you" + ], + [ + "what company's software engineers gave you life", + "who_made_you" + ], + [ + "who are the people responsible for you", + "who_made_you" + ], + [ + "who invented you", + "who_made_you" + ], + [ + "who designed you", + "who_made_you" + ], + [ + "who developed your actions", + "who_made_you" + ], + [ + "who supplied your instructions", + "who_made_you" + ], + [ + "who formulated you", + "who_made_you" + ], + [ + "which company can i credit your design to", + "who_made_you" + ], + [ + "by which company are you designed by", + "who_made_you" + ], + [ + "to which company is your design accredited to", + "who_made_you" + ], + [ + "which company is responsible for your design", + "who_made_you" + ], + [ + "what organization created you", + "who_made_you" + ], + [ + "who developed your internal code", + "who_made_you" + ], + [ + "who created your ai program", + "who_made_you" + ], + [ + "who was your inventor", + "who_made_you" + ], + [ + "who engineered you", + "who_made_you" + ], + [ + "who is this ai's creater", + "who_made_you" + ], + [ + "who made this ai", + "who_made_you" + ], + [ + "who did the programming for this ai", + "who_made_you" + ], + [ + "i would like to know who programmed this ai", + "who_made_you" + ], + [ + "you were built by who", + "who_made_you" + ], + [ + "what company manufactured you", + "who_made_you" + ], + [ + "who were you made by", + "who_made_you" + ], + [ + "are you made in the usa", + "who_made_you" + ], + [ + "tell me your brand", + "who_made_you" + ], + [ + "tell me the company that produces you and similar machines", + "who_made_you" + ], + [ + "may i know who made you", + "who_made_you" + ], + [ + "what created you", + "who_made_you" + ], + [ + "do you know who you came from", + "who_made_you" + ], + [ + "who is your originator", + "who_made_you" + ], + [ + "who is your creator", + "who_made_you" + ], + [ + "who is responsible for who you are", + "who_made_you" + ], + [ + "who crafted you", + "who_made_you" + ], + [ + "who was your programmer", + "who_made_you" + ], + [ + "the programmer who made you is who", + "who_made_you" + ], + [ + "who did the programming on you", + "who_made_you" + ], + [ + "what is the name of the person who created you", + "who_made_you" + ], + [ + "who built you", + "who_made_you" + ], + [ + "how were you made", + "who_made_you" + ], + [ + "how did you come to be you", + "who_made_you" + ], + [ + "please identify the name of the creator of this ai", + "who_made_you" + ], + [ + "this ai was made by what person or team", + "who_made_you" + ], + [ + "who is the creator of this ai", + "who_made_you" + ], + [ + "how was this ai created", + "who_made_you" + ], + [ + "tell me what company programmed you", + "who_made_you" + ], + [ + "the creator of your ai, what is their name", + "who_made_you" + ], + [ + "who made the ai", + "who_made_you" + ], + [ + "what is the name of the person who made the ai", + "who_made_you" + ], + [ + "can you tell me who made the ai", + "who_made_you" + ], + [ + "will you tell me who made the ai", + "who_made_you" + ], + [ + "would you tell me who made the ai", + "who_made_you" + ], + [ + "who makes the ai", + "who_made_you" + ], + [ + "ai who made you", + "who_made_you" + ], + [ + "who made you ai", + "who_made_you" + ], + [ + "can you tell me who created you", + "who_made_you" + ], + [ + "who is responsible for making you", + "who_made_you" + ], + [ + "who were you invented by", + "who_made_you" + ], + [ + "i'd like to know who made you", + "who_made_you" + ], + [ + "who brought you to life", + "who_made_you" + ], + [ + "who made you up", + "who_made_you" + ], + [ + "what company created you", + "who_made_you" + ], + [ + "who gave you life", + "who_made_you" + ], + [ + "what company sponsored you", + "who_made_you" + ], + [ + "which company programmed you", + "who_made_you" + ], + [ + "estimated time to airport from current location, la", + "distance" + ], + [ + "how long to get to the airport in la", + "distance" + ], + [ + "how early should i leave to the airport in la", + "distance" + ], + [ + "does it take a long time to get to the airport in la", + "distance" + ], + [ + "is the ride short to the airport in la", + "distance" + ], + [ + "how long's it take to get to the panera downtown", + "distance" + ], + [ + "how long will it take to drive to the kroger in westwood", + "distance" + ], + [ + "how long will it take to walk to the safeway in the strip mall", + "distance" + ], + [ + "how long will it take me to get to the mcdonald's in the city", + "distance" + ], + [ + "how long will it take me to drive to the park in west county", + "distance" + ], + [ + "how long does it take to get to spago's in los angeles", + "distance" + ], + [ + "it takes how long to get to the beach in santa barbara", + "distance" + ], + [ + "how long does it take to get to universal studios in los angeles", + "distance" + ], + [ + "how long does it take to get to disneyland in anaheim", + "distance" + ], + [ + "it takes how long to get to mcdonald's in pomona", + "distance" + ], + [ + "if i take the bus, how long will it take to get to dubrovnik", + "distance" + ], + [ + "how much time will riding the bus to downtown take", + "distance" + ], + [ + "what's my eta on the bus ride to church", + "distance" + ], + [ + "how long will it take the bus to get to stop 23", + "distance" + ], + [ + "how long before i get to dallas , in time, not miles", + "distance" + ], + [ + "what is the distance to austin city limits from my hotel , the holiday inn at austin", + "distance" + ], + [ + "how far is the airport in dallas from my current location", + "distance" + ], + [ + "how far am i from the beach right now", + "distance" + ], + [ + "tell the miles it will take to get to las vegas from san diego", + "distance" + ], + [ + "give me the time left before i get to the hotel", + "distance" + ], + [ + "tell me how far i am from home in time and miles", + "distance" + ], + [ + "how miles does it take to get to red lobster from my current location", + "distance" + ], + [ + "how many miles until i get to the beach", + "distance" + ], + [ + "how far is the grand canyon from my current location in phoenix, az", + "distance" + ], + [ + "how many hours will it take to get to my destination", + "distance" + ], + [ + "how long will it take me to drive to my destination", + "distance" + ], + [ + "how many miles will it take to get to my destination", + "distance" + ], + [ + "where is the closest gas station", + "distance" + ], + [ + "what's the estimated time to get to ppg paints arena in pittsburgh via bus", + "distance" + ], + [ + "how long would it take to get to times square by bus", + "distance" + ], + [ + "how long would a bus to the empire state building take", + "distance" + ], + [ + "how long can i expect a bus ride to the liberty bell to take", + "distance" + ], + [ + "if i'm trying to get to heinz field, how long would it take by bus", + "distance" + ], + [ + "please let me know how long it'll be until i reach the sky harbor airport", + "distance" + ], + [ + "i want to know how long it is from here to the sky harbor airport", + "distance" + ], + [ + "will it be long to get to the sky harbor airport", + "distance" + ], + [ + "how long does it take to get to the sky harbor airport", + "distance" + ], + [ + "how long does it take until i reach the sky harbor airport", + "distance" + ], + [ + "approximately how long does it take to get to the resort in miami", + "distance" + ], + [ + "about how much time will it take to get to the laundry in this area", + "distance" + ], + [ + "approximately how much time will it take to get to tod's in minutes", + "distance" + ], + [ + "how long does it take to get to the park in detroit", + "distance" + ], + [ + "how long does it take to get to the airport in dallas", + "distance" + ], + [ + "how long does it take to get to outback in atlanta", + "distance" + ], + [ + "how long does it take to get to applebees in new york", + "distance" + ], + [ + "how long does it take to get to the mall in las vegas", + "distance" + ], + [ + "so to go to brooklyn, it would take me how long again", + "distance" + ], + [ + "if i take this bus, how long until i get to brooklyn", + "distance" + ], + [ + "from here, i take this bus to go to brooklyn and how long is the commute", + "distance" + ], + [ + "does it take 5 hrs to get to brooklyn by bus", + "distance" + ], + [ + "usually, how long does is the commute to brooklyn by bus", + "distance" + ], + [ + "what's the eta for grandma's house", + "distance" + ], + [ + "what is the average time to get to walmart in mays landing", + "distance" + ], + [ + "how long does it take to get to applebees in nj", + "distance" + ], + [ + "how long until i reach my destination", + "distance" + ], + [ + "i need a time update on the applebees trip", + "distance" + ], + [ + "i want to know the time to get to td bank in toms river", + "distance" + ], + [ + "what time will we arrive at the bank", + "distance" + ], + [ + "how fast can i get to target in trenton", + "distance" + ], + [ + "how long is the ride to phoenix", + "distance" + ], + [ + "how long will it take to get to outback in phoenix", + "distance" + ], + [ + "how long will it take to get to phoenix", + "distance" + ], + [ + "how long does it take to get to phoenix by bus", + "distance" + ], + [ + "how long does it take to get to dallas by bus", + "distance" + ], + [ + "how long will it take me to get to phoenix", + "distance" + ], + [ + "how long is it gonna take to get to red robin in avondale", + "distance" + ], + [ + "how long does it take to get to red robin on phoenix", + "distance" + ], + [ + "how long does it take to get to virginia by bus", + "distance" + ], + [ + "what is the time frame to get to phoenix", + "distance" + ], + [ + "how long does it take to get to houston by bus", + "distance" + ], + [ + "how long will it take me to get to red robin in glendale", + "distance" + ], + [ + "what is the length of time it takes to get to phoenix", + "distance" + ], + [ + "how long will it take for me to get to red robin in san diego", + "distance" + ], + [ + "how long does it take to get to orlando by bus", + "distance" + ], + [ + "how long will a bus ride take if i'm going to the capitol building", + "distance" + ], + [ + "if i go by bus, how long will it take to get to the airport", + "distance" + ], + [ + "how long is a bus ride to the library", + "distance" + ], + [ + "what amount of time would it take me to reach the university by bus", + "distance" + ], + [ + "how long will it take to reach central park by bus", + "distance" + ], + [ + "how much time does it take to get to levi stadium from san jose airport", + "distance" + ], + [ + "how long will it take to get to golden gate bridge from pier 39", + "distance" + ], + [ + "how long is the drive from sfo to fisherman's wharf", + "distance" + ], + [ + "how long will it take to get to long beach terminal from long beach airport", + "distance" + ], + [ + "how long will it take to get from galleria mall to state capitol", + "distance" + ], + [ + "by bus, how long would it take to get to detroit", + "distance" + ], + [ + "utilizing an automobile known as a bus, how long will it take to get to detroit", + "distance" + ], + [ + "what is the time that it will take to arrive at detroit", + "distance" + ], + [ + "how much time will pass between the start and end of our sojourn by bus to detroit", + "distance" + ], + [ + "what amount of time will pass in order for a person at our location to take bus to detroit", + "distance" + ], + [ + "how long will it take to reach my doctors office", + "distance" + ], + [ + "how long to reach my doctors office", + "distance" + ], + [ + "how much time to reach doctors office", + "distance" + ], + [ + "time taken to reach doctors office", + "distance" + ], + [ + "time taken from home to doctors office", + "distance" + ], + [ + "if i leave now, how long will it take me to drive to cape hatteras", + "distance" + ], + [ + "you refer to me as what", + "user_name" + ], + [ + "by what name do you refer to me", + "user_name" + ], + [ + "what name do you use when addressing me", + "user_name" + ], + [ + "is there a name that you call me", + "user_name" + ], + [ + "how do you usually refer to me", + "user_name" + ], + [ + "what is the name you call me saved as", + "user_name" + ], + [ + "regarding my name, whats it saved as", + "user_name" + ], + [ + "what name do you have saved for me", + "user_name" + ], + [ + "whats my name saved under", + "user_name" + ], + [ + "what is my first name saved as", + "user_name" + ], + [ + "do you know my name", + "user_name" + ], + [ + "say my name if you know it", + "user_name" + ], + [ + "can you guess my name", + "user_name" + ], + [ + "i want you to guess my name", + "user_name" + ], + [ + "by what name people call me", + "user_name" + ], + [ + "do you remember my name", + "user_name" + ], + [ + "say what you think my name is", + "user_name" + ], + [ + "show me what you think my name is", + "user_name" + ], + [ + "tell me what you think my name is", + "user_name" + ], + [ + "what can you call me", + "user_name" + ], + [ + "what would you like to call me", + "user_name" + ], + [ + "what would i be referred to as", + "user_name" + ], + [ + "what would you like to refer to me as", + "user_name" + ], + [ + "what do you think you will refer to me as", + "user_name" + ], + [ + "what will you call me", + "user_name" + ], + [ + "what will you refer to me as", + "user_name" + ], + [ + "what are you going to refer to me as", + "user_name" + ], + [ + "you saved my name how", + "user_name" + ], + [ + "in what format did you save my name", + "user_name" + ], + [ + "you wrote what for my name", + "user_name" + ], + [ + "what did ya save my name as", + "user_name" + ], + [ + "how did you save my name", + "user_name" + ], + [ + "what's my name in your system", + "user_name" + ], + [ + "how is my name listed", + "user_name" + ], + [ + "the name you have for me is what", + "user_name" + ], + [ + "what name am i under", + "user_name" + ], + [ + "call me by my name", + "user_name" + ], + [ + "tell me my designation", + "user_name" + ], + [ + "by what nym do you think of me", + "user_name" + ], + [ + "how do you say my name", + "user_name" + ], + [ + "what do you know me as", + "user_name" + ], + [ + "what do you say for my name", + "user_name" + ], + [ + "what's my name huh", + "user_name" + ], + [ + "please tell me the name you use for me", + "user_name" + ], + [ + "what name do you use to talk about me", + "user_name" + ], + [ + "how do you reference me", + "user_name" + ], + [ + "who do you think i am", + "user_name" + ], + [ + "can you tell me what you refer to me as", + "user_name" + ], + [ + "what am i called by you", + "user_name" + ], + [ + "what is my name saved as in your system", + "user_name" + ], + [ + "do you have any idea what my name is", + "user_name" + ], + [ + "can you tell me what my name is", + "user_name" + ], + [ + "what is the name you associate with me", + "user_name" + ], + [ + "what name do you have listed for me", + "user_name" + ], + [ + "what is the name you have listed for my identity", + "user_name" + ], + [ + "what do you refer to me as", + "user_name" + ], + [ + "what name do you know me by", + "user_name" + ], + [ + "how do you address me", + "user_name" + ], + [ + "tell me what you believe my name to be", + "user_name" + ], + [ + "what am i known as to you", + "user_name" + ], + [ + "what do you think i am called", + "user_name" + ], + [ + "tell me your guess of what my name is", + "user_name" + ], + [ + "can you tell me what you call me", + "user_name" + ], + [ + "what do you have my name saved under", + "user_name" + ], + [ + "what's my name saved under", + "user_name" + ], + [ + "what name do you call me", + "user_name" + ], + [ + "what is my name saved under", + "user_name" + ], + [ + "what is the name that you have for me, please", + "user_name" + ], + [ + "what is the name that you have for me", + "user_name" + ], + [ + "what name do you call me by", + "user_name" + ], + [ + "what is your name for me, please", + "user_name" + ], + [ + "what do you have me saved under", + "user_name" + ], + [ + "what's the name that you have for me, please", + "user_name" + ], + [ + "what is my name saved as", + "user_name" + ], + [ + "what name do you refer to me as", + "user_name" + ], + [ + "what might my name be", + "user_name" + ], + [ + "can you tell me my name", + "user_name" + ], + [ + "if you were smart, would you know my name", + "user_name" + ], + [ + "do you call me a certain name", + "user_name" + ], + [ + "do i have a name to you", + "user_name" + ], + [ + "what is your name for me", + "user_name" + ], + [ + "i want you to let me know what names you have for me", + "user_name" + ], + [ + "could you let me know what names you have for me", + "user_name" + ], + [ + "would you tell me what names you have for me", + "user_name" + ], + [ + "let me know what names you have for me", + "user_name" + ], + [ + "i need to know what names you have for me", + "user_name" + ], + [ + "do you my name", + "user_name" + ], + [ + "do you know how to refer to me", + "user_name" + ], + [ + "can you tell me what your refer to me as", + "user_name" + ], + [ + "my name is what", + "user_name" + ], + [ + "do you know what you call me", + "user_name" + ], + [ + "what is the name you call me", + "user_name" + ], + [ + "what name is mine", + "user_name" + ], + [ + "you have what name for me", + "user_name" + ], + [ + "so what is my name saved as", + "user_name" + ], + [ + "so what is my current name saved as", + "user_name" + ], + [ + "i wanna know what do you call me", + "user_name" + ], + [ + "let me know the name you have for me", + "user_name" + ], + [ + "so what name do you have for me", + "user_name" + ], + [ + "let me know what do you call me", + "user_name" + ], + [ + "timezone of cuba", + "timezone" + ], + [ + "what is the time zone of france", + "timezone" + ], + [ + "french time zone", + "timezone" + ], + [ + "which timezone is colombia", + "timezone" + ], + [ + "time zone in france", + "timezone" + ], + [ + "do you know what timezone italy is in", + "timezone" + ], + [ + "italy's timezone is what", + "timezone" + ], + [ + "the timezone of italy is what", + "timezone" + ], + [ + "italy is in what timezone", + "timezone" + ], + [ + "for italy what timezone is it in", + "timezone" + ], + [ + "i wanna know what timezone spain is in", + "timezone" + ], + [ + "what timezone is japan in", + "timezone" + ], + [ + "what timezone is philadelphia in", + "timezone" + ], + [ + "what timezone is china in", + "timezone" + ], + [ + "what timezone is scotland in", + "timezone" + ], + [ + "i need to know what timezone ireland is in", + "timezone" + ], + [ + "what timezone is sweden in", + "timezone" + ], + [ + "what timezone is phoenix in", + "timezone" + ], + [ + "what timezone is dallas in", + "timezone" + ], + [ + "tell me what timezone finland is in", + "timezone" + ], + [ + "what timezone is canada in", + "timezone" + ], + [ + "tell me the timezone that spain is in", + "timezone" + ], + [ + "what timezone is detroit in", + "timezone" + ], + [ + "what timezone is russia in", + "timezone" + ], + [ + "what's the time zone in miami", + "timezone" + ], + [ + "time zone in miami is what like", + "timezone" + ], + [ + "how is miami time zone like", + "timezone" + ], + [ + "time zone in miami is like what", + "timezone" + ], + [ + "miami time zone is what", + "timezone" + ], + [ + "what's the current timezone in barcelona", + "timezone" + ], + [ + "can you tell me the timezone in san francisco", + "timezone" + ], + [ + "in paris, what's the timezone", + "timezone" + ], + [ + "what's the timezone for london", + "timezone" + ], + [ + "what timezone does lisbon have", + "timezone" + ], + [ + "in what timezone is nigeria", + "timezone" + ], + [ + "which timezone is england in", + "timezone" + ], + [ + "can you tell me which timezone is cambodia in", + "timezone" + ], + [ + "in which timezone is jamaica", + "timezone" + ], + [ + "what timezone is viet nam in", + "timezone" + ], + [ + "what's the timezone for brasilia", + "timezone" + ], + [ + "which timezone is buenos aires in", + "timezone" + ], + [ + "what timezone is lima in", + "timezone" + ], + [ + "what's chicago's time zone", + "timezone" + ], + [ + "what is the timezone for quito", + "timezone" + ], + [ + "what timezone is chicago in", + "timezone" + ], + [ + "what timezone is boise in", + "timezone" + ], + [ + "what timezone is miami in", + "timezone" + ], + [ + "whats the timezone for modesto", + "timezone" + ], + [ + "what timezone is sacromento in", + "timezone" + ], + [ + "whats the timezone for san fransico", + "timezone" + ], + [ + "if i\u2019m in japan, what time zone am i in", + "timezone" + ], + [ + "tell me what time zone portugal uses", + "timezone" + ], + [ + "nigeria is in which time zone", + "timezone" + ], + [ + "the time zone for brazil is what", + "timezone" + ], + [ + "what time zone is ireland in", + "timezone" + ], + [ + "what's the timezone for boston", + "timezone" + ], + [ + "do you know the timezone for dublin", + "timezone" + ], + [ + "what's the timezone for san diego", + "timezone" + ], + [ + "what timezone is london is", + "timezone" + ], + [ + "what timezone is melbourne in", + "timezone" + ], + [ + "what timezone would tampa be in", + "timezone" + ], + [ + "what timezone do they use in la", + "timezone" + ], + [ + "can you tell me denver's timezone", + "timezone" + ], + [ + "what timezone does bangor have", + "timezone" + ], + [ + "does phoenix have a different timezone", + "timezone" + ], + [ + "do you know the timezone for phoenix", + "timezone" + ], + [ + "what timezone would i be in if i traveled to moscow", + "timezone" + ], + [ + "if you're in melbourne, what timezone are you in", + "timezone" + ], + [ + "what timezone is milan in", + "timezone" + ], + [ + "detroit is in what timezone", + "timezone" + ], + [ + "can you tell me what timezone chicago is in", + "timezone" + ], + [ + "doy ou know what timezone chicago is in", + "timezone" + ], + [ + "could you tell me what timezone reno is in", + "timezone" + ], + [ + "reno's timezone is what", + "timezone" + ], + [ + "if i change my timezone to reno, what would it be", + "timezone" + ], + [ + "do you know what the timezone is in reno", + "timezone" + ], + [ + "if i am in reno, what would the timezone be", + "timezone" + ], + [ + "find the applicable timezone for austin", + "timezone" + ], + [ + "what time zone are we currently in", + "timezone" + ], + [ + "please search for portland's timezone", + "timezone" + ], + [ + "in what timezone does baton rouge fall", + "timezone" + ], + [ + "can you tell me the timezone that hartford is in", + "timezone" + ], + [ + "i need to know what timezone sedona is in", + "timezone" + ], + [ + "can you tell my what france's timezone is", + "timezone" + ], + [ + "i would like information on france's timezone", + "timezone" + ], + [ + "i want to know france's timezone", + "timezone" + ], + [ + "which timezone is france in", + "timezone" + ], + [ + "what timezone is france in", + "timezone" + ], + [ + "what timezone is new york in", + "timezone" + ], + [ + "what timezone is reno in", + "timezone" + ], + [ + "what timezone is vegas in", + "timezone" + ], + [ + "what timezone is los angeles in", + "timezone" + ], + [ + "is austin in the central timezone", + "timezone" + ], + [ + "does the central timezone include austin", + "timezone" + ], + [ + "what is the timezone in las vegas", + "timezone" + ], + [ + "which timezone is las vegas in", + "timezone" + ], + [ + "las vegas is in what timezone", + "timezone" + ], + [ + "tell me the timezone las vegas is in", + "timezone" + ], + [ + "las vegas timezone please", + "timezone" + ], + [ + "what timezone is boston in", + "timezone" + ], + [ + "go past this song", + "next_song" + ], + [ + "put on the next song", + "next_song" + ], + [ + "please play the next song", + "next_song" + ], + [ + "go forward to the next song on the playlist", + "next_song" + ], + [ + "change the song to the next one", + "next_song" + ], + [ + "go to the next song on the playlist", + "next_song" + ], + [ + "go to my next song", + "next_song" + ], + [ + "skip this song", + "next_song" + ], + [ + "can you skip this song", + "next_song" + ], + [ + "pass this song", + "next_song" + ], + [ + "i want to hear the very next song on this playlist", + "next_song" + ], + [ + "i would like to hear the next song on this playlist", + "next_song" + ], + [ + "skip this song and play the next", + "next_song" + ], + [ + "play the next hit", + "next_song" + ], + [ + "remember to play the next number on this particular playlist", + "next_song" + ], + [ + "i would like to hear the next tune on this particular playlist", + "next_song" + ], + [ + "please put on the next number on this playlist", + "next_song" + ], + [ + "can you move to the next song", + "next_song" + ], + [ + "lets pause this song and move onto the next", + "next_song" + ], + [ + "lets pass on this song and do the next", + "next_song" + ], + [ + "play the next musical number", + "next_song" + ], + [ + "play the next tune", + "next_song" + ], + [ + "lets just play the next song please", + "next_song" + ], + [ + "hop to the next one", + "next_song" + ], + [ + "go to next song", + "next_song" + ], + [ + "play the next track", + "next_song" + ], + [ + "skip over this song", + "next_song" + ], + [ + "play the next song instead", + "next_song" + ], + [ + "play the song coming on next", + "next_song" + ], + [ + "play the next song queued up", + "next_song" + ], + [ + "move to the next song", + "next_song" + ], + [ + "what is the next song to be played", + "next_song" + ], + [ + "can we play the next track", + "next_song" + ], + [ + "can we stop this song and play the next one", + "next_song" + ], + [ + "can we skip this song", + "next_song" + ], + [ + "skip this and go to the next song", + "next_song" + ], + [ + "skip and play next song", + "next_song" + ], + [ + "skip and next", + "next_song" + ], + [ + "go to the next song and skip", + "next_song" + ], + [ + "go to the next song now", + "next_song" + ], + [ + "play one song forward", + "next_song" + ], + [ + "i want to hear the next song", + "next_song" + ], + [ + "go forward one song", + "next_song" + ], + [ + "the next song should be played", + "next_song" + ], + [ + "what's next on the list", + "next_song" + ], + [ + "play the next song", + "next_song" + ], + [ + "next song on the list, please", + "next_song" + ], + [ + "you must skip this song and play the next one", + "next_song" + ], + [ + "go ahead and skip this song and play the next one", + "next_song" + ], + [ + "you need to skip this song and play the next one", + "next_song" + ], + [ + "go ahead and play the next song on this playlist", + "next_song" + ], + [ + "go passed the song now", + "next_song" + ], + [ + "will you play the next song on this playlist", + "next_song" + ], + [ + "i need you to play the next song on this playlist", + "next_song" + ], + [ + "please skip this song and play the next one", + "next_song" + ], + [ + "please change the song now", + "next_song" + ], + [ + "please play the next song on this playlist", + "next_song" + ], + [ + "i want you to play the next song on this playlist", + "next_song" + ], + [ + "i need you to skip this song and play the next one", + "next_song" + ], + [ + "i don't want this song, move to the next", + "next_song" + ], + [ + "skip to the next song", + "next_song" + ], + [ + "play next song using this playlist", + "next_song" + ], + [ + "go to next song, please", + "next_song" + ], + [ + "forget this song and go to the next", + "next_song" + ], + [ + "move on to the next song", + "next_song" + ], + [ + "using this playlist, play next song", + "next_song" + ], + [ + "jump to the next song on this playlist", + "next_song" + ], + [ + "skip to the next song please", + "next_song" + ], + [ + "please go to the song after this one", + "next_song" + ], + [ + "please jump to the song that follows this one", + "next_song" + ], + [ + "let's play the next song now", + "next_song" + ], + [ + "can you fast forward to the next song", + "next_song" + ], + [ + "continue to next song on the playlist", + "next_song" + ], + [ + "take me to the next song on this playlist", + "next_song" + ], + [ + "find the next song on this playlist", + "next_song" + ], + [ + "proceed to the next song on this playlist", + "next_song" + ], + [ + "listen to next song on playlist", + "next_song" + ], + [ + "i want to listen to another song", + "next_song" + ], + [ + "go to the next tune", + "next_song" + ], + [ + "beginning playing the next tune", + "next_song" + ], + [ + "start playing the next track", + "next_song" + ], + [ + "advance to the next song", + "next_song" + ], + [ + "go forward to the next track", + "next_song" + ], + [ + "give me the next song", + "next_song" + ], + [ + "skip this song and play the next one", + "next_song" + ], + [ + "play the song after this", + "next_song" + ], + [ + "switch to the next song on this playlist please", + "next_song" + ], + [ + "change the song to the next one on this playlist", + "next_song" + ], + [ + "i want to listen to the next song on this playlist instead", + "next_song" + ], + [ + "stop the current song and play the next one on this playlist", + "next_song" + ], + [ + "could you skip to the next song on this playlist, please", + "next_song" + ], + [ + "could you play the next song on this playlist, please", + "next_song" + ], + [ + "can you play the next song on this playlist, please", + "next_song" + ], + [ + "could you play the next song on this playlist", + "next_song" + ], + [ + "could you skip to the next song on this playlist", + "next_song" + ], + [ + "play next on the playlist", + "next_song" + ], + [ + "skip to next song", + "next_song" + ], + [ + "next song play", + "next_song" + ], + [ + "stop this song and go to the next one", + "next_song" + ], + [ + "play the next song on this list", + "next_song" + ], + [ + "before i make my mastercard payment can you tell me what i've recently charged on it", + "transactions" + ], + [ + "please tell me all of my recent transactions", + "transactions" + ], + [ + "i want to pay my amazon credit card but i need to know the last few transactions", + "transactions" + ], + [ + "before i pay my walmart credit card did i make any purchases using it recently", + "transactions" + ], + [ + "i need to know all the recent transactions i've made", + "transactions" + ], + [ + "please tell me all the transactions i've made recently", + "transactions" + ], + [ + "what are the last ten transactions i've made", + "transactions" + ], + [ + "before i pay my capital one, what are the most recent transactions i've made", + "transactions" + ], + [ + "tell me the most recent charges on my chase credit card before i pay the bill", + "transactions" + ], + [ + "read off to me the last five transactions i've made", + "transactions" + ], + [ + "what transactions have i made on liquor in the past month", + "transactions" + ], + [ + "i'd like to see last week's atm transactions", + "transactions" + ], + [ + "show me the transactions from costco yesterday", + "transactions" + ], + [ + "i need to know something about my latest transaction", + "transactions" + ], + [ + "can you check on a transaction for me", + "transactions" + ], + [ + "i need some information on a recent transaction", + "transactions" + ], + [ + "i need a recent transaction looked into", + "transactions" + ], + [ + "can you let me know my latest transactions", + "transactions" + ], + [ + "what was the last thing i purchased", + "transactions" + ], + [ + "what did i buy last", + "transactions" + ], + [ + "how much did my last purchase cost", + "transactions" + ], + [ + "how expensive was my most recent transaction", + "transactions" + ], + [ + "when was my most recent transaction", + "transactions" + ], + [ + "show me the transactions made on my business card for supplies last quarter", + "transactions" + ], + [ + "may i get all of the food transactions that were made last month", + "transactions" + ], + [ + "can you show me the transactions that were made last night at the restaurant", + "transactions" + ], + [ + "what transactions did i make yesterday at the flea market", + "transactions" + ], + [ + "please show me what transactions i made on the first of this month", + "transactions" + ], + [ + "please tell me my in-person transactions for the last three days using my debit card", + "transactions" + ], + [ + "please give me my last ten debit card transactions in the month of december", + "transactions" + ], + [ + "what were my last five transactions on my visa card", + "transactions" + ], + [ + "i would like to hear all transactions made on my amex for the last ten days", + "transactions" + ], + [ + "can you list all of my online transactions for the month of january", + "transactions" + ], + [ + "show me my transactions on groceries", + "transactions" + ], + [ + "show me my transactions on tacobell", + "transactions" + ], + [ + "show me my transactions on make up at sephora", + "transactions" + ], + [ + "show me my transactions on mcdonalds", + "transactions" + ], + [ + "show me my transactions on clothes at macys", + "transactions" + ], + [ + "let me see the list of tranaction on my discovery credit card", + "transactions" + ], + [ + "let me know the list of transaction on my first hawaiian bank", + "transactions" + ], + [ + "i want to see the list of transaction on my bank of hawaii", + "transactions" + ], + [ + "list me my recent transaction", + "transactions" + ], + [ + "what are my recent transaction", + "transactions" + ], + [ + "please show me my recent transaction", + "transactions" + ], + [ + "i want to see my recent transaction", + "transactions" + ], + [ + "let me check my transaction for first bank card", + "transactions" + ], + [ + "let me check my transaction on my citi card", + "transactions" + ], + [ + "show me my recent transactoin", + "transactions" + ], + [ + "on my card what have been my recent purchases", + "transactions" + ], + [ + "pull up my recent transactions on my mastercard", + "transactions" + ], + [ + "on the card can you give me the last transactions", + "transactions" + ], + [ + "whats my recent transactions on my card", + "transactions" + ], + [ + "on my card what all are my latest transactions", + "transactions" + ], + [ + "show my transaction statement", + "transactions" + ], + [ + "retrieve my recent transactions", + "transactions" + ], + [ + "view my transactions for the last week", + "transactions" + ], + [ + "my transaction history", + "transactions" + ], + [ + "may transactions for last 2 days", + "transactions" + ], + [ + "what was my last transaction", + "transactions" + ], + [ + "show me recent transactions", + "transactions" + ], + [ + "what transactions happened in the last week", + "transactions" + ], + [ + "show me the last month of transactions", + "transactions" + ], + [ + "show me the last five transactions", + "transactions" + ], + [ + "what's the last transaction i made yesterday", + "transactions" + ], + [ + "show me yesterday's last transaction", + "transactions" + ], + [ + "open yesterday's last payment", + "transactions" + ], + [ + "show me last transaction", + "transactions" + ], + [ + "show me transactions related to travel", + "transactions" + ], + [ + "help me get access to my recent transaction history", + "transactions" + ], + [ + "i need to see my shopping transactions", + "transactions" + ], + [ + "get me access to a list of my recent transactions", + "transactions" + ], + [ + "i would like to take a look at my transaction history", + "transactions" + ], + [ + "can you pull up my most recent transactions", + "transactions" + ], + [ + "i want to see my entertainment transactions", + "transactions" + ], + [ + "where can i find my recent transaction history", + "transactions" + ], + [ + "can you show me transactions related to utilities", + "transactions" + ], + [ + "pull up my grocery transactions", + "transactions" + ], + [ + "what were my purchases on visa card last month", + "transactions" + ], + [ + "i spent what dollar amount last month on mastercard", + "transactions" + ], + [ + "what was the amount that i spent on fidelity visa last month", + "transactions" + ], + [ + "what did i spend at target on my barclays card last month", + "transactions" + ], + [ + "what amount did i spend for food on chase visa on current bill", + "transactions" + ], + [ + "i need to know last months transactions", + "transactions" + ], + [ + "i need to know the transactions i made on the 10th", + "transactions" + ], + [ + "i would like to see the transactions i made last week", + "transactions" + ], + [ + "can i see my transactions on the 7th", + "transactions" + ], + [ + "can i get my transactions for the date of the 23rd", + "transactions" + ], + [ + "show me the transaction on burger king", + "transactions" + ], + [ + "show me the transaction on macys", + "transactions" + ], + [ + "show me the transaction on mcdonald", + "transactions" + ], + [ + "show me the transaction on the food", + "transactions" + ], + [ + "show me the transaction on my car", + "transactions" + ], + [ + "bring up all purchases from target", + "transactions" + ], + [ + "show me my transactions within the past week", + "transactions" + ], + [ + "can i see my transactions from yesterday", + "transactions" + ], + [ + "show me all gas purchases within the last month", + "transactions" + ], + [ + "can you list all recent transactions", + "transactions" + ], + [ + "bring up my most recent purchases", + "transactions" + ], + [ + "i need to see all visa purchases for march", + "transactions" + ], + [ + "looking at january, show all wine purchases", + "transactions" + ], + [ + "can you suggest a restaurant for me to eat tonight", + "restaurant_suggestion" + ], + [ + "tell me where to go since i want to eat out tonight", + "restaurant_suggestion" + ], + [ + "i'm craving for italian food, where should i go", + "restaurant_suggestion" + ], + [ + "suggest a restaurant for me to eat tonight, please", + "restaurant_suggestion" + ], + [ + "i'm not going to cook today, can you suggest a restaurant", + "restaurant_suggestion" + ], + [ + "what restaurants are pet friendly near here", + "restaurant_suggestion" + ], + [ + "what are the best restaurants", + "restaurant_suggestion" + ], + [ + "what decent restaurants around here are italian", + "restaurant_suggestion" + ], + [ + "do you know any good restaurants good for kids", + "restaurant_suggestion" + ], + [ + "any good pizza restaurants around here", + "restaurant_suggestion" + ], + [ + "where should i go to eat tonight", + "restaurant_suggestion" + ], + [ + "where should i eat tonight", + "restaurant_suggestion" + ], + [ + "i want to eat out, where should i go", + "restaurant_suggestion" + ], + [ + "give me some good restaurants", + "restaurant_suggestion" + ], + [ + "i'm hungry, where should i go", + "restaurant_suggestion" + ], + [ + "name a good restaurant near me", + "restaurant_suggestion" + ], + [ + "where should i go for dinner", + "restaurant_suggestion" + ], + [ + "its date night and we cant decide where to go help", + "restaurant_suggestion" + ], + [ + "where do people go to eat in this town", + "restaurant_suggestion" + ], + [ + "i am hungry and need a restaurant suggestion", + "restaurant_suggestion" + ], + [ + "can you tell me the best place for cajun shrimp in tampa", + "restaurant_suggestion" + ], + [ + "what's a good place to eat chinese in san francisco", + "restaurant_suggestion" + ], + [ + "what's a highly rated place for steak in omaha", + "restaurant_suggestion" + ], + [ + "where can i pick up a good burger near where i am", + "restaurant_suggestion" + ], + [ + "what's a good place to go to for food around here", + "restaurant_suggestion" + ], + [ + "are there any decent places to get seafood in seattle", + "restaurant_suggestion" + ], + [ + "what's the best place for some thai in new york city", + "restaurant_suggestion" + ], + [ + "i'm famished so give me some places to eat!", + "restaurant_suggestion" + ], + [ + "any ideas on a good place to eat out", + "restaurant_suggestion" + ], + [ + "can you recommend any restaurants", + "restaurant_suggestion" + ], + [ + "i'm in the mood for italian, are there any good places around", + "restaurant_suggestion" + ], + [ + "please list nearby restaurants with 4 or more star reviews", + "restaurant_suggestion" + ], + [ + "where's a good place to get some grub", + "restaurant_suggestion" + ], + [ + "where would you eat italian in chicago", + "restaurant_suggestion" + ], + [ + "can i get good tacos anywhere in austin", + "restaurant_suggestion" + ], + [ + "is there a good fish place in salem", + "restaurant_suggestion" + ], + [ + "what are good places for a burrito in albuquerque", + "restaurant_suggestion" + ], + [ + "where should i go out for food to", + "restaurant_suggestion" + ], + [ + "can you recommend a decent place in chicago to get pizza", + "restaurant_suggestion" + ], + [ + "do you know of any good restaurants", + "restaurant_suggestion" + ], + [ + "help me find a good sushi spot in chicago", + "restaurant_suggestion" + ], + [ + "can you find me a good restaurant to try eating at", + "restaurant_suggestion" + ], + [ + "i want you to recommend a good local restaurant to me", + "restaurant_suggestion" + ], + [ + "tell me some good mexican restaurants in dallas", + "restaurant_suggestion" + ], + [ + "do you know of any good seafood restaurants in seattle", + "restaurant_suggestion" + ], + [ + "please find me some good thai restaurants in new york city", + "restaurant_suggestion" + ], + [ + "find me a good spot for southern comfort food in los angeles", + "restaurant_suggestion" + ], + [ + "are there any good restaurants in nyc that serve barbecue", + "restaurant_suggestion" + ], + [ + "i want to go out to eat but have no idea where to go, do you know of any places", + "restaurant_suggestion" + ], + [ + "i want recommendations for good sushi spots in los angeles", + "restaurant_suggestion" + ], + [ + "do you know of any good mexican restaurants in seattle", + "restaurant_suggestion" + ], + [ + "does boise have any good indian restaurants", + "restaurant_suggestion" + ], + [ + "can you suggest some quality chinese restaurants in oklahoma city", + "restaurant_suggestion" + ], + [ + "help me pick a nice restaurant to dine at", + "restaurant_suggestion" + ], + [ + "what mexican restaurant within 5 miles has the best reviews", + "restaurant_suggestion" + ], + [ + "show me 5-star dining establishments in nashville", + "restaurant_suggestion" + ], + [ + "are there any good chinese restaurants open right now", + "restaurant_suggestion" + ], + [ + "what are the best family restaurants in charlottesville", + "restaurant_suggestion" + ], + [ + "in boston, what are the best pizza places", + "restaurant_suggestion" + ], + [ + "are there some good thai restaurants in san antonio", + "restaurant_suggestion" + ], + [ + "what are the best italian restaurants in chicago", + "restaurant_suggestion" + ], + [ + "where are the good thai restaurants in atlanta", + "restaurant_suggestion" + ], + [ + "recommendations for good thai restaurants in las vegas", + "restaurant_suggestion" + ], + [ + "where should i go for good thai food in las vegas", + "restaurant_suggestion" + ], + [ + "i need suggestions for good thai restaurants in las vegas", + "restaurant_suggestion" + ], + [ + "where are some good thai restaurants in las vegas", + "restaurant_suggestion" + ], + [ + "tell me which restaurants are good for thai food in las vegas", + "restaurant_suggestion" + ], + [ + "can you list off 4 star restaurants", + "restaurant_suggestion" + ], + [ + "what type of restaurants are nearby", + "restaurant_suggestion" + ], + [ + "i need to know what restaurants are near me", + "restaurant_suggestion" + ], + [ + "can you list off different restaurants", + "restaurant_suggestion" + ], + [ + "what are some good places to eat at", + "restaurant_suggestion" + ], + [ + "could you locate me some good places in kentucky that serve sushi", + "restaurant_suggestion" + ], + [ + "does kentucky have any good restaurants that serve sushi", + "restaurant_suggestion" + ], + [ + "can you find me some good places in kentucky that serve sushi", + "restaurant_suggestion" + ], + [ + "what are some good places in kentucky that serve sushi", + "restaurant_suggestion" + ], + [ + "could you direct me to any good places in kentucky that serve sushi", + "restaurant_suggestion" + ], + [ + "find me a new place for dinner", + "restaurant_suggestion" + ], + [ + "can you find a good steakhouse for tonight", + "restaurant_suggestion" + ], + [ + "what's a good restaurant nearby", + "restaurant_suggestion" + ], + [ + "any new restaurants near the mall", + "restaurant_suggestion" + ], + [ + "what's your recommendation for dining out tonight", + "restaurant_suggestion" + ], + [ + "find me an asian restaurant", + "restaurant_suggestion" + ], + [ + "is there a barbecue restaurant around here", + "restaurant_suggestion" + ], + [ + "find an indian restaurant", + "restaurant_suggestion" + ], + [ + "can you recommend an indian restaurant", + "restaurant_suggestion" + ], + [ + "can you find a keto friendly restaurant", + "restaurant_suggestion" + ], + [ + "is there any good place in hawaii for pasta", + "restaurant_suggestion" + ], + [ + "is there any good place in hawaii kai that serve local food", + "restaurant_suggestion" + ], + [ + "i want sushi, is there any good place in ho chi minh", + "restaurant_suggestion" + ], + [ + "is there any good place for vietnamese food on the east side of the island", + "restaurant_suggestion" + ], + [ + "is there any good place for mexican food in hawaii", + "restaurant_suggestion" + ], + [ + "what are some good sushi restaurants in reno", + "restaurant_suggestion" + ], + [ + "which restaurants in reno are good for sushi", + "restaurant_suggestion" + ], + [ + "what are the best sushi restaurants in reno", + "restaurant_suggestion" + ], + [ + "what are good restaurants in reno that serve sushi", + "restaurant_suggestion" + ], + [ + "are there any sushi restaurants in reno that have good reviews", + "restaurant_suggestion" + ], + [ + "list me some good vietnamese restaurants in new york city", + "restaurant_suggestion" + ], + [ + "suggest some restaurants", + "restaurant_suggestion" + ], + [ + "give me some restaurant suggestions", + "restaurant_suggestion" + ], + [ + "how high are the rewards on my discover card", + "rewards_balance" + ], + [ + "how many rewards do i now have on my hy-vee card", + "rewards_balance" + ], + [ + "what's the current reward amount on my mastercard", + "rewards_balance" + ], + [ + "what's my current reward balance on my amex card", + "rewards_balance" + ], + [ + "what's my visa's current rewards balance", + "rewards_balance" + ], + [ + "how many reward points have stacked up for my amex card", + "rewards_balance" + ], + [ + "how many reward points do i have available to redeem on my visa", + "rewards_balance" + ], + [ + "what's the current reward amount on my visa", + "rewards_balance" + ], + [ + "what's the reward point count on my discover card", + "rewards_balance" + ], + [ + "what is my american express card's rewards balance", + "rewards_balance" + ], + [ + "what is my chase card's rewards balance", + "rewards_balance" + ], + [ + "what is my wells fargo card's rewards balance", + "rewards_balance" + ], + [ + "what is my citigroup card's rewards balance", + "rewards_balance" + ], + [ + "what is my bank of america card's rewards balance", + "rewards_balance" + ], + [ + "how can i see my rewards for my visa card", + "rewards_balance" + ], + [ + "tell me how to check my rewards for my american express card", + "rewards_balance" + ], + [ + "how can i look at rewards for my amex card", + "rewards_balance" + ], + [ + "tell me how to check rewards for my mastercard", + "rewards_balance" + ], + [ + "where are rewards from my visa card visible", + "rewards_balance" + ], + [ + "what is my current reward point total on my visa card", + "rewards_balance" + ], + [ + "how would i be able to check my kohls rewards card", + "rewards_balance" + ], + [ + "i need to know my reward point total looking at my debit card", + "rewards_balance" + ], + [ + "do i have enough points on my starbucks card yet", + "rewards_balance" + ], + [ + "help me check my visa rewards card", + "rewards_balance" + ], + [ + "can i check my gold rewards card online", + "rewards_balance" + ], + [ + "can you tell me how many points i have on my kohls card", + "rewards_balance" + ], + [ + "what is the easiest way to check my bank rewards card", + "rewards_balance" + ], + [ + "is there a better way to check my visa rewards card balance", + "rewards_balance" + ], + [ + "how many points are on my gold card", + "rewards_balance" + ], + [ + "what's the amount of points i have earned with my discover card", + "rewards_balance" + ], + [ + "i wonder how many points i have earned with my bank of america card", + "rewards_balance" + ], + [ + "have i earned a lot of points on my capital one card", + "rewards_balance" + ], + [ + "can you tell me how many points i have to date with my capital one miles card", + "rewards_balance" + ], + [ + "what's the total number of points i earned so far with my chase rewards card", + "rewards_balance" + ], + [ + "how many points have i already accrued on my chase mastercard", + "rewards_balance" + ], + [ + "i would like my total rewards points balance on my bank of america platinum rewards card, please", + "rewards_balance" + ], + [ + "i need to hear how many points i've obtained on my capital one visa", + "rewards_balance" + ], + [ + "how many points did i get on my discover card", + "rewards_balance" + ], + [ + "how many points did my visa earn", + "rewards_balance" + ], + [ + "what points were earned on my mastercard", + "rewards_balance" + ], + [ + "how many points have been earned on my amex", + "rewards_balance" + ], + [ + "how many points did i get on my visa card", + "rewards_balance" + ], + [ + "what's the balance of my reward points on my discover card", + "rewards_balance" + ], + [ + "i need to know my rewards balance on my discover card", + "rewards_balance" + ], + [ + "what's my discover card reward balance", + "rewards_balance" + ], + [ + "what's my rewards balance on my discover", + "rewards_balance" + ], + [ + "what is the reward balance on my discover card", + "rewards_balance" + ], + [ + "how many rewards points do i have for my visa card", + "rewards_balance" + ], + [ + "how many rewards points do i have for my wells fargo card", + "rewards_balance" + ], + [ + "how many rewards points do i have for my amazon card", + "rewards_balance" + ], + [ + "how many rewards points do i have for my chase card", + "rewards_balance" + ], + [ + "how many rewards points do i have for my mastercard", + "rewards_balance" + ], + [ + "what is my points total for my mastercard", + "rewards_balance" + ], + [ + "what's my total point number on my mastercard", + "rewards_balance" + ], + [ + "how many points do i have on my mastercard", + "rewards_balance" + ], + [ + "what is the number of points i earned with my mastercard", + "rewards_balance" + ], + [ + "how many points have i accumulated on my mastercard", + "rewards_balance" + ], + [ + "how can i see my rewards for my chase card", + "rewards_balance" + ], + [ + "where can i find my rewards for my chase card", + "rewards_balance" + ], + [ + "what do i have to do to see my rewards for my chase card", + "rewards_balance" + ], + [ + "how do i see me rewards for my chase card", + "rewards_balance" + ], + [ + "where are my rewards for my chase card", + "rewards_balance" + ], + [ + "what's the point balance on my marriot rewards card", + "rewards_balance" + ], + [ + "how many points do i have in total on my marriot rewards card", + "rewards_balance" + ], + [ + "show me the total up to date points on the marriot rewards card", + "rewards_balance" + ], + [ + "my marriot rewards card has how much for a point total", + "rewards_balance" + ], + [ + "give my my current points on my marriot rewards card", + "rewards_balance" + ], + [ + "can you tell me my starbucks rewards balance", + "rewards_balance" + ], + [ + "can you help me tell what my starbucks rewards balance is", + "rewards_balance" + ], + [ + "what is the remainder of my starbucks rewards balance", + "rewards_balance" + ], + [ + "my starbucks rewards balance is", + "rewards_balance" + ], + [ + "what is the total amount of my starbucks rewards balance", + "rewards_balance" + ], + [ + "i have how many points on my amex right now", + "rewards_balance" + ], + [ + "how many points are on my speedway card right now", + "rewards_balance" + ], + [ + "i have how many tier credits on my caesar's card", + "rewards_balance" + ], + [ + "how many points do i have on my mlife card", + "rewards_balance" + ], + [ + "how many delta miles are on my card right now", + "rewards_balance" + ], + [ + "how many rewards do i have on my chase card", + "rewards_balance" + ], + [ + "how do i find out my rewards balance on my chase card", + "rewards_balance" + ], + [ + "can i check my visa reward balance online", + "rewards_balance" + ], + [ + "when can i receive rewards on my visa card", + "rewards_balance" + ], + [ + "how do i check how many rewards i have on my master card", + "rewards_balance" + ], + [ + "how do i check my rewards for my gold card", + "rewards_balance" + ], + [ + "what rewards does my gold card get", + "rewards_balance" + ], + [ + "where do i find my gold card rewards", + "rewards_balance" + ], + [ + "what is the number of remaining rewards points on my chase card", + "rewards_balance" + ], + [ + "i need to find out the rewards points i have left on my american express card", + "rewards_balance" + ], + [ + "what is the amount of rewards points on my visa card", + "rewards_balance" + ], + [ + "do you know how many rewards points are currently on my discover card", + "rewards_balance" + ], + [ + "does my mastercard have any rewards points remaining", + "rewards_balance" + ], + [ + "put my points up for master card", + "rewards_balance" + ], + [ + "figure out my reward points for discovery card", + "rewards_balance" + ], + [ + "add all of my points for my current discover card", + "rewards_balance" + ], + [ + "calculate my points for visa", + "rewards_balance" + ], + [ + "add up my reward points for master card", + "rewards_balance" + ], + [ + "what the current balance of reward points on my mastercard", + "rewards_balance" + ], + [ + "what's my reward balance on my amex card", + "rewards_balance" + ], + [ + "how do i get my rewards balance on my diner's club card", + "rewards_balance" + ], + [ + "how many reward points does my discover card have", + "rewards_balance" + ], + [ + "tell me how to check rewards on my american express card", + "rewards_balance" + ], + [ + "i want to pay my bill, please", + "pay_bill" + ], + [ + "pay my water bill with my charles schwab account", + "pay_bill" + ], + [ + "i'd like to pay my bill", + "pay_bill" + ], + [ + "pay my internet bill with my discover account", + "pay_bill" + ], + [ + "can you help me pay a bill", + "pay_bill" + ], + [ + "i need to pay my bill", + "pay_bill" + ], + [ + "can i pay a bill", + "pay_bill" + ], + [ + "use my capital one account to pay for my gas bill", + "pay_bill" + ], + [ + "pay my electric bill from my amex account", + "pay_bill" + ], + [ + "i want to pay my house bill", + "pay_bill" + ], + [ + "i want to pay my car bill", + "pay_bill" + ], + [ + "i want to pay my insurance bill", + "pay_bill" + ], + [ + "i want to pay my tax bill", + "pay_bill" + ], + [ + "i need help paying my auto insurance bill", + "pay_bill" + ], + [ + "i need help paying my hoa bill", + "pay_bill" + ], + [ + "i need help paying my tuition bill", + "pay_bill" + ], + [ + "i need help paying my phone bill", + "pay_bill" + ], + [ + "my water bill is due, pay it immediately", + "pay_bill" + ], + [ + "i need to pay my water bill", + "pay_bill" + ], + [ + "please go ahead and make my student loan payment", + "pay_bill" + ], + [ + "go ahead and pay my american express bill now", + "pay_bill" + ], + [ + "i need to pay my electric bill now", + "pay_bill" + ], + [ + "can you assist me in paying my electric bill", + "pay_bill" + ], + [ + "i want to do a payment on my water bill", + "pay_bill" + ], + [ + "pay my mortgage from my checkings accounts", + "pay_bill" + ], + [ + "do a car payment from my savings account", + "pay_bill" + ], + [ + "can you give me a hand paying my water bill", + "pay_bill" + ], + [ + "i want to pay off my student loan", + "pay_bill" + ], + [ + "i need a bit of hand holding getting my trash bill paid", + "pay_bill" + ], + [ + "i need to pay my mortgage", + "pay_bill" + ], + [ + "are you able to help me pay my mortgage", + "pay_bill" + ], + [ + "i want to pay my car payment", + "pay_bill" + ], + [ + "i need to pay this month's tv subscription fee", + "pay_bill" + ], + [ + "will you aid me in paying my insurance premium", + "pay_bill" + ], + [ + "pay a bribe using my money market account", + "pay_bill" + ], + [ + "use my savings account to the pay the rent", + "pay_bill" + ], + [ + "use my checkings account to pay the electric bill", + "pay_bill" + ], + [ + "i'd like to pay my coned bill", + "pay_bill" + ], + [ + "please help with paying my cell phone bill", + "pay_bill" + ], + [ + "i'd like to make a payment on my credit card bill", + "pay_bill" + ], + [ + "i would like to pay my cell phone bill", + "pay_bill" + ], + [ + "please help me pay my cable bill", + "pay_bill" + ], + [ + "please tell me how to pay my gas bill", + "pay_bill" + ], + [ + "i need to get help paying my gas bill", + "pay_bill" + ], + [ + "i need help to pay my electric bill", + "pay_bill" + ], + [ + "can you help me pay my phone bill", + "pay_bill" + ], + [ + "will you take my bill payment", + "pay_bill" + ], + [ + "is it possible to pay my bill", + "pay_bill" + ], + [ + "how can i pay my bill", + "pay_bill" + ], + [ + "can i pay my bill", + "pay_bill" + ], + [ + "use my park bank account to pay my electric bill", + "pay_bill" + ], + [ + "pay my electric bill from my park bank account", + "pay_bill" + ], + [ + "pay my gas bill from my saving account", + "pay_bill" + ], + [ + "pay my cable bill from my facebook account", + "pay_bill" + ], + [ + "pay my cell bill from my deposit account", + "pay_bill" + ], + [ + "pay my electric bill from my paypal account", + "pay_bill" + ], + [ + "pay my water bill from my checking account", + "pay_bill" + ], + [ + "pay my phoe bill with my debit card", + "pay_bill" + ], + [ + "schedule a gas bill payment", + "pay_bill" + ], + [ + "pay the cable bill with my visa card", + "pay_bill" + ], + [ + "pay the red cross the monthly donation", + "pay_bill" + ], + [ + "i want to pay my internet bill", + "pay_bill" + ], + [ + "i want to pay my gas bill", + "pay_bill" + ], + [ + "i want to pay my electric bill", + "pay_bill" + ], + [ + "i want to pay my rent bill", + "pay_bill" + ], + [ + "i want to pay my water bill", + "pay_bill" + ], + [ + "make a payment on the electric bill", + "pay_bill" + ], + [ + "help me pay my electric bill", + "pay_bill" + ], + [ + "pay the electric bill", + "pay_bill" + ], + [ + "pay electric", + "pay_bill" + ], + [ + "please pay electric bill", + "pay_bill" + ], + [ + "i got to pay my cable bill", + "pay_bill" + ], + [ + "i need help paying my store bill", + "pay_bill" + ], + [ + "i wanna pay my cable bill from my checking account", + "pay_bill" + ], + [ + "i need help paying my cable bill", + "pay_bill" + ], + [ + "pay my cable bill from my checking account", + "pay_bill" + ], + [ + "i must pay my cable bill from my checking account", + "pay_bill" + ], + [ + "i gotta pay my cable bill", + "pay_bill" + ], + [ + "i must pay my cable bill", + "pay_bill" + ], + [ + "i wish to pay my cable bill", + "pay_bill" + ], + [ + "i need to pay my cable bill", + "pay_bill" + ], + [ + "i need help paying my rent bill", + "pay_bill" + ], + [ + "i need help paying my water bill", + "pay_bill" + ], + [ + "i really want to pay my cable bill from my checking account", + "pay_bill" + ], + [ + "i need help paying my electric bill", + "pay_bill" + ], + [ + "i need to pay my cable bill from my checking account", + "pay_bill" + ], + [ + "what's the best way to pay my bill", + "pay_bill" + ], + [ + "i'd really like to pay this bill", + "pay_bill" + ], + [ + "can you help me pay this bill", + "pay_bill" + ], + [ + "i am not sure how to pay my phone bill and need assistance", + "pay_bill" + ], + [ + "i need to make a bill payment", + "pay_bill" + ], + [ + "please pay my bill", + "pay_bill" + ], + [ + "can anyone help me pay my car bill", + "pay_bill" + ], + [ + "i want to pay that bill now", + "pay_bill" + ], + [ + "is there anyone available to help pay an internet bill", + "pay_bill" + ], + [ + "i need anyone who can help me pay my electric bill", + "pay_bill" + ], + [ + "help me pay my cable bill", + "pay_bill" + ], + [ + "can you pay the bill now", + "pay_bill" + ], + [ + "i need your help to pay my gas bill", + "pay_bill" + ], + [ + "pay my insurance bill", + "pay_bill" + ], + [ + "how much did i spend at restaurants last week", + "spending_history" + ], + [ + "how much have i spent lately on eating out", + "spending_history" + ], + [ + "what did i spend at the grocery store yesterday", + "spending_history" + ], + [ + "how much money did i spend at starbucks in the last week", + "spending_history" + ], + [ + "what was the total i spent at home depot last month", + "spending_history" + ], + [ + "where did all my money go this month", + "spending_history" + ], + [ + "what have my expenditures been at macys", + "spending_history" + ], + [ + "how much did i spend this week", + "spending_history" + ], + [ + "how much did i spend on christmas gifts in december", + "spending_history" + ], + [ + "how much money did i spend yesterday", + "spending_history" + ], + [ + "what did i spend at bath and body works last month", + "spending_history" + ], + [ + "how much did i spend on lunches last week", + "spending_history" + ], + [ + "what amount did i spend last week", + "spending_history" + ], + [ + "what did i spend my money on last week", + "spending_history" + ], + [ + "how much did i spend on movies last week", + "spending_history" + ], + [ + "have i been spending a lot on groceries lately", + "spending_history" + ], + [ + "have i been spending a lot on shoes lately", + "spending_history" + ], + [ + "have i been spending a lot on food lately", + "spending_history" + ], + [ + "have i been spending a lot on alcohol lately", + "spending_history" + ], + [ + "have i been spending a lot on take out lately", + "spending_history" + ], + [ + "how much have i spent on shoes lately", + "spending_history" + ], + [ + "did i spend a lot on shoes recently", + "spending_history" + ], + [ + "how much have i spent on shoes", + "spending_history" + ], + [ + "have i have been spending a lot of money on shoes", + "spending_history" + ], + [ + "what is the total i spent on shoes recently", + "spending_history" + ], + [ + "what have i spent over the last few days", + "spending_history" + ], + [ + "how much have i spent recently", + "spending_history" + ], + [ + "how much money have i dropped recently", + "spending_history" + ], + [ + "how much money have i spent this month", + "spending_history" + ], + [ + "what's the amount of money i spent yesterday", + "spending_history" + ], + [ + "could you tell me how much i've spent over the past two weeks", + "spending_history" + ], + [ + "how much money have i spent this week", + "spending_history" + ], + [ + "could you tell me how much money i spent last week", + "spending_history" + ], + [ + "please tell me how much i have spent recently", + "spending_history" + ], + [ + "how much did i spend last week", + "spending_history" + ], + [ + "can you tell me my spending history from last week", + "spending_history" + ], + [ + "i want to know how much i spent last week", + "spending_history" + ], + [ + "i want to know my recent spending", + "spending_history" + ], + [ + "how much have i paid for rent in the last 6 months", + "spending_history" + ], + [ + "how much money have i spent on groceries recently", + "spending_history" + ], + [ + "how much did i spend on groceries today", + "spending_history" + ], + [ + "how much have i spent eating out this week", + "spending_history" + ], + [ + "what chunk of my income have i spent on rent this year", + "spending_history" + ], + [ + "what's it been costing me to buy three packs a day", + "spending_history" + ], + [ + "what have car repairs ran me this month", + "spending_history" + ], + [ + "what has gas cost me this week", + "spending_history" + ], + [ + "what did car insurance run me this year", + "spending_history" + ], + [ + "what's the total amount i've spent eating out in the last two weeks", + "spending_history" + ], + [ + "how much have i spent on alcohol recently", + "spending_history" + ], + [ + "how much have i spent on books recently", + "spending_history" + ], + [ + "how much have i spent on food recently", + "spending_history" + ], + [ + "how much have i spent on bills recently", + "spending_history" + ], + [ + "how much have i spent on clothes recently", + "spending_history" + ], + [ + "i need to know my total spending on amazon for november and december 2018", + "spending_history" + ], + [ + "please list my total spending on grocery shopping for the last two months", + "spending_history" + ], + [ + "how much have i spent on starbucks since the beginning of 2019", + "spending_history" + ], + [ + "what is my total spent on dining out for the month of january", + "spending_history" + ], + [ + "what is the total amount that i have spent on the cash app for this month so far", + "spending_history" + ], + [ + "have i spent a lot on food recently", + "spending_history" + ], + [ + "i need to know what i have spent on food recently", + "spending_history" + ], + [ + "can you tell me what i have spent on food recently", + "spending_history" + ], + [ + "what have i spent on food recently", + "spending_history" + ], + [ + "what is the amount i have spent on food recently", + "spending_history" + ], + [ + "how much have i lately spent on eating out", + "spending_history" + ], + [ + "what have i spent lately in child care", + "spending_history" + ], + [ + "how much have i spent lately on food", + "spending_history" + ], + [ + "how much money have i recently spent on entertainment", + "spending_history" + ], + [ + "how much have i paid in medical expenses recently", + "spending_history" + ], + [ + "how much did i spend on gas last week", + "spending_history" + ], + [ + "can you tell me what i spend on gas for the past two weeks", + "spending_history" + ], + [ + "yesterday what did i spend on lunch", + "spending_history" + ], + [ + "i need to know what i spend on utilities for the last year", + "spending_history" + ], + [ + "what did i spend on groceries this month", + "spending_history" + ], + [ + "have i been giving lot of money to food to food lately", + "spending_history" + ], + [ + "how much money did i use to spend on catering five hours ago", + "spending_history" + ], + [ + "how much did i spend on gear two weeks ago", + "spending_history" + ], + [ + "have i been spending a lot on roast beef lately", + "spending_history" + ], + [ + "have i been spending a ton of money on movies lately", + "spending_history" + ], + [ + "how much money did i spend on tent equipment four hours ago", + "spending_history" + ], + [ + "how much did i spend on furniture last week", + "spending_history" + ], + [ + "how much did i spend on petrol 2 days ago", + "spending_history" + ], + [ + "how much money did i spend on food last month", + "spending_history" + ], + [ + "would please let me know how much i spent on food in january", + "spending_history" + ], + [ + "could you check my account and let me know how much i spent on food in january", + "spending_history" + ], + [ + "please check and tell me the amount i spent on food last month", + "spending_history" + ], + [ + "let me know the amount i spent on food last month", + "spending_history" + ], + [ + "i have been spending a lot on food out lately", + "spending_history" + ], + [ + "i have spent a lot on groceries lately", + "spending_history" + ], + [ + "i spent a lot on vacations recently", + "spending_history" + ], + [ + "i have been spending a lot on utility bills lately", + "spending_history" + ], + [ + "i have been spending a lot on insurance lately", + "spending_history" + ], + [ + "did i go out to eat more than usual", + "spending_history" + ], + [ + "have i been spending more money at restaurants", + "spending_history" + ], + [ + "how much did i spend on food", + "spending_history" + ], + [ + "how much do i spend going out to eat", + "spending_history" + ], + [ + "what's my going out to eat tab this month vs last month", + "spending_history" + ], + [ + "how much did i spend shopping for clothes today", + "spending_history" + ], + [ + "how much did i spend the past 3 days", + "spending_history" + ], + [ + "how much did i spend on gas the past month", + "spending_history" + ], + [ + "how much have i spent on food in the past week", + "spending_history" + ], + [ + "have they approved my vacation request yet", + "pto_request_status" + ], + [ + "give me the status of my vacation request", + "pto_request_status" + ], + [ + "am i going to be able to get my vacation request", + "pto_request_status" + ], + [ + "i want to check on my vacation request", + "pto_request_status" + ], + [ + "is my vacation approved yet", + "pto_request_status" + ], + [ + "my vacation, has it been approved yet", + "pto_request_status" + ], + [ + "have i been approved for vacation yet", + "pto_request_status" + ], + [ + "am i approved for vacation yet", + "pto_request_status" + ], + [ + "did they approve my day off request", + "pto_request_status" + ], + [ + "is my day off approved", + "pto_request_status" + ], + [ + "did they say yes to my day off request", + "pto_request_status" + ], + [ + "did i get my day off", + "pto_request_status" + ], + [ + "is my day off request approved", + "pto_request_status" + ], + [ + "update on vacation request", + "pto_request_status" + ], + [ + "what is the current status of my vacation request", + "pto_request_status" + ], + [ + "i need status on that vacation request", + "pto_request_status" + ], + [ + "how is my vacation request looking", + "pto_request_status" + ], + [ + "please inform me on my current vacation request status", + "pto_request_status" + ], + [ + "have they recieved my vacation request and approved it", + "pto_request_status" + ], + [ + "will my vacation be approved soon", + "pto_request_status" + ], + [ + "did my vacation get approved", + "pto_request_status" + ], + [ + "do we have good news in the form of vacation approval", + "pto_request_status" + ], + [ + "has my vacation request been acknowledged", + "pto_request_status" + ], + [ + "has my request for vacation days been signed by my supervisor yet", + "pto_request_status" + ], + [ + "has my supervisor approved my vacation", + "pto_request_status" + ], + [ + "has may supervisor approved the vacation days i asked for", + "pto_request_status" + ], + [ + "on my vacation request, what is the latest information", + "pto_request_status" + ], + [ + "what is the news on my vacation request", + "pto_request_status" + ], + [ + "what is the update on my vacation request", + "pto_request_status" + ], + [ + "what is the most recent info for my request for vacation", + "pto_request_status" + ], + [ + "what is the status for what i requested for my vacation", + "pto_request_status" + ], + [ + "tell me about my vacation request", + "pto_request_status" + ], + [ + "update me on my vacation request", + "pto_request_status" + ], + [ + "what about my vacation request", + "pto_request_status" + ], + [ + "has the status of my vacation request changed", + "pto_request_status" + ], + [ + "has my vacation request been updated", + "pto_request_status" + ], + [ + "has my vacation time been signed off on", + "pto_request_status" + ], + [ + "what's my vacation status", + "pto_request_status" + ], + [ + "has my vacation been approved", + "pto_request_status" + ], + [ + "has my vacation been ok'd", + "pto_request_status" + ], + [ + "will i be allowed to take vacation", + "pto_request_status" + ], + [ + "are they going to let me take vacation", + "pto_request_status" + ], + [ + "has my request for vacation time been okayed", + "pto_request_status" + ], + [ + "has my vacation time at work been allowed", + "pto_request_status" + ], + [ + "is walmart going to let me take the vacation time i asked for", + "pto_request_status" + ], + [ + "i'm i okayed for vacation time", + "pto_request_status" + ], + [ + "did you get confirmation my vacation is a go", + "pto_request_status" + ], + [ + "is the request for vacation i filed with my manager at intel approved yet", + "pto_request_status" + ], + [ + "do you know if my vacation request went through", + "pto_request_status" + ], + [ + "has my manager at mcdonald's confirmed i can take vacation", + "pto_request_status" + ], + [ + "have they authorized my vacation", + "pto_request_status" + ], + [ + "i want to know if my vacation request has been approved", + "pto_request_status" + ], + [ + "the status of my day off request, please", + "pto_request_status" + ], + [ + "do you know if my vacation request has been approved", + "pto_request_status" + ], + [ + "has my vacation request been approved", + "pto_request_status" + ], + [ + "what is the status of my vacation request", + "pto_request_status" + ], + [ + "any news for me regarding my day off request", + "pto_request_status" + ], + [ + "i want to know the status of my day off request", + "pto_request_status" + ], + [ + "tell me the status of my vacation request", + "pto_request_status" + ], + [ + "tell me the status of my day off request", + "pto_request_status" + ], + [ + "could you tell me the status of my vacation request", + "pto_request_status" + ], + [ + "i requested some vacation time; has it been approved", + "pto_request_status" + ], + [ + "can you share the status of my day off request", + "pto_request_status" + ], + [ + "was my day off request approved", + "pto_request_status" + ], + [ + "status of my request for vacation", + "pto_request_status" + ], + [ + "what's my day off request's status", + "pto_request_status" + ], + [ + "has my day off request been approved or denied yet", + "pto_request_status" + ], + [ + "has my vacation request been denied or approved yet", + "pto_request_status" + ], + [ + "has my request for the day off been approved yet", + "pto_request_status" + ], + [ + "how is the approval of my day off progressing", + "pto_request_status" + ], + [ + "how is the approval of my day off going", + "pto_request_status" + ], + [ + "whats going on with my day off request", + "pto_request_status" + ], + [ + "any status update on my day off request", + "pto_request_status" + ], + [ + "did you hear back about my day off request", + "pto_request_status" + ], + [ + "is my day off request still pending", + "pto_request_status" + ], + [ + "has anyone looked over my request for a day off", + "pto_request_status" + ], + [ + "has anyone approved my day off request", + "pto_request_status" + ], + [ + "how's my day off request looking", + "pto_request_status" + ], + [ + "has my day off request been looked at yet", + "pto_request_status" + ], + [ + "i need you to let me know what the status of my day off request is", + "pto_request_status" + ], + [ + "please let me know what the status of my day off request is", + "pto_request_status" + ], + [ + "could you tell me what the status of my day off request is", + "pto_request_status" + ], + [ + "would you tell me what the status of my day of request is", + "pto_request_status" + ], + [ + "i need to know the status of my day off request", + "pto_request_status" + ], + [ + "has my vacation request been approved yet", + "pto_request_status" + ], + [ + "has my vacation been approved yet", + "pto_request_status" + ], + [ + "has my time off request been approved yet", + "pto_request_status" + ], + [ + "check on the status of my vacation request please", + "pto_request_status" + ], + [ + "please check to see if my vacation request has been updated", + "pto_request_status" + ], + [ + "please find out the status of my vacation request", + "pto_request_status" + ], + [ + "do you know if my vacation was approved yet or not", + "pto_request_status" + ], + [ + "please tell me if my vacation has been approved or not", + "pto_request_status" + ], + [ + "can you look into the status of my vacation request", + "pto_request_status" + ], + [ + "i want to know what the latest is on my vacation request i submitted", + "pto_request_status" + ], + [ + "i need to know if my vacation was approved", + "pto_request_status" + ], + [ + "please check to see if my vacation has been approved", + "pto_request_status" + ], + [ + "do you know if my vacation request is still pending", + "pto_request_status" + ], + [ + "can you find out if my vacation time off request has been approved or not", + "pto_request_status" + ], + [ + "i sent in a request for vacation time off and am wondering if its been approved yet", + "pto_request_status" + ], + [ + "i haven't heard if my request for time off for vacation has been approved , can you get an update for me", + "pto_request_status" + ], + [ + "how do i look up my credit score", + "credit_score" + ], + [ + "please look up my credit score", + "credit_score" + ], + [ + "can you figure out how to find my credit score", + "credit_score" + ], + [ + "are you able to lookup my credit rating", + "credit_score" + ], + [ + "how can i find my credit rating", + "credit_score" + ], + [ + "where can i check my credit rating", + "credit_score" + ], + [ + "say my credit score", + "credit_score" + ], + [ + "give me my credit score", + "credit_score" + ], + [ + "i want my credit score", + "credit_score" + ], + [ + "inform me of my credit score", + "credit_score" + ], + [ + "clue me in on my credit score", + "credit_score" + ], + [ + "provide me with my credit score", + "credit_score" + ], + [ + "my credit score is", + "credit_score" + ], + [ + "i need my credit score", + "credit_score" + ], + [ + "find my credit score for me", + "credit_score" + ], + [ + "what is my credit score", + "credit_score" + ], + [ + "please get my credit score", + "credit_score" + ], + [ + "can you find my credit score", + "credit_score" + ], + [ + "i'd like to know what my credit rating is", + "credit_score" + ], + [ + "please tell me my credit rating", + "credit_score" + ], + [ + "what in the world is my credit rating", + "credit_score" + ], + [ + "my credit score is what", + "credit_score" + ], + [ + "tell me my credit score please", + "credit_score" + ], + [ + "can you tell me my credit score", + "credit_score" + ], + [ + "find my credit score and tell it to me", + "credit_score" + ], + [ + "get my credit score", + "credit_score" + ], + [ + "what is my exact credit score", + "credit_score" + ], + [ + "how good is my credit score", + "credit_score" + ], + [ + "what's my credit score rating", + "credit_score" + ], + [ + "what kind of credit score do i have", + "credit_score" + ], + [ + "if i want my credit score, how do i find it", + "credit_score" + ], + [ + "how do i find information about my credit score", + "credit_score" + ], + [ + "what is the process of finding my credit score", + "credit_score" + ], + [ + "how do i get my credit score", + "credit_score" + ], + [ + "how do i locate my current credit score", + "credit_score" + ], + [ + "where is my credit score", + "credit_score" + ], + [ + "how do i see my credit score", + "credit_score" + ], + [ + "how exactly do i find my credit score", + "credit_score" + ], + [ + "how do i locate my credit score", + "credit_score" + ], + [ + "how do i find out what my credit score is", + "credit_score" + ], + [ + "i really wanna know my credit score", + "credit_score" + ], + [ + "i wish to know my credit rating", + "credit_score" + ], + [ + "let me understand my credit rating", + "credit_score" + ], + [ + "i wanna know my credit rating now", + "credit_score" + ], + [ + "i gotta know my credit score", + "credit_score" + ], + [ + "tell me my credit rating", + "credit_score" + ], + [ + "i would love to know my credit score", + "credit_score" + ], + [ + "i wish to know my credit score", + "credit_score" + ], + [ + "i wanna know my credit score", + "credit_score" + ], + [ + "tell me what my credit rating is", + "credit_score" + ], + [ + "can you provide me my credit score", + "credit_score" + ], + [ + "i'd like the number for my credit score", + "credit_score" + ], + [ + "tell me my credit score", + "credit_score" + ], + [ + "verify with me my credit score", + "credit_score" + ], + [ + "can you help me find my credit score", + "credit_score" + ], + [ + "would you tell me my credit score", + "credit_score" + ], + [ + "how do i find my credit score", + "credit_score" + ], + [ + "will you tell me my credit score", + "credit_score" + ], + [ + "do you know my credit score", + "credit_score" + ], + [ + "how to see my credit score", + "credit_score" + ], + [ + "can i see my credit score", + "credit_score" + ], + [ + "hows my credit score", + "credit_score" + ], + [ + "websites that share credit ratings", + "credit_score" + ], + [ + "what's my credit rating", + "credit_score" + ], + [ + "how do i find out my credit rating", + "credit_score" + ], + [ + "how to locate my credit score", + "credit_score" + ], + [ + "where is my credit score located", + "credit_score" + ], + [ + "where can i find my credit score", + "credit_score" + ], + [ + "find my credit score", + "credit_score" + ], + [ + "tell me the steps to getting my credit score", + "credit_score" + ], + [ + "help me locate my credit score", + "credit_score" + ], + [ + "lets look up my credit score", + "credit_score" + ], + [ + "i would like to look up my credit score please", + "credit_score" + ], + [ + "i want to find out what my credit score is", + "credit_score" + ], + [ + "help me find my credit score", + "credit_score" + ], + [ + "what is my fica score", + "credit_score" + ], + [ + "can you reveal my credit score", + "credit_score" + ], + [ + "how is my credit score rated", + "credit_score" + ], + [ + "any idea what my credit score is", + "credit_score" + ], + [ + "show me my credit score please", + "credit_score" + ], + [ + "let me know what my credit score is", + "credit_score" + ], + [ + "is my credit score high", + "credit_score" + ], + [ + "i am trying to find my credit score", + "credit_score" + ], + [ + "show me my credit score", + "credit_score" + ], + [ + "how does my credit score look", + "credit_score" + ], + [ + "is my credit report low", + "credit_score" + ], + [ + "whats my credit rating", + "credit_score" + ], + [ + "what is my current credit score", + "credit_score" + ], + [ + "where can i check my credit score", + "credit_score" + ], + [ + "where can i see my credit score", + "credit_score" + ], + [ + "how can i find out my credit score", + "credit_score" + ], + [ + "inform me of my current credit rating", + "credit_score" + ], + [ + "please notify me of my credit rating", + "credit_score" + ], + [ + "i would like to be told about my credit rating", + "credit_score" + ], + [ + "can you tell me about my credit rating", + "credit_score" + ], + [ + "tell me my current credit rating", + "credit_score" + ], + [ + "what is the number of my credit score", + "credit_score" + ], + [ + "what's my credit score", + "credit_score" + ], + [ + "let me know my credit score", + "credit_score" + ], + [ + "how is my credit score", + "credit_score" + ], + [ + "how can i apply for a discover card", + "new_card" + ], + [ + "can i apply for a discover card", + "new_card" + ], + [ + "how do applications for discover cards work", + "new_card" + ], + [ + "is this how i apply for a discover card", + "new_card" + ], + [ + "what does it take to get a new card", + "new_card" + ], + [ + "how do i sign up for a new credit card", + "new_card" + ], + [ + "can i complete an application for a new credit card", + "new_card" + ], + [ + "is it possible to get a new credit card", + "new_card" + ], + [ + "please show me how to apply for a visa card", + "new_card" + ], + [ + "i need to apply for a visa card", + "new_card" + ], + [ + "i need to know how to apply for a visa card", + "new_card" + ], + [ + "tell me how to apply for a visa card", + "new_card" + ], + [ + "what is the process to apply for a visa card", + "new_card" + ], + [ + "show me how to apply for a visa card", + "new_card" + ], + [ + "can you let me know the info on how to apply for a visa card", + "new_card" + ], + [ + "visa card, i want to apply", + "new_card" + ], + [ + "show me the application for a visa card", + "new_card" + ], + [ + "how do i get a new credit card sent to me", + "new_card" + ], + [ + "can you send me a new credit card please mine is getting old and unusable", + "new_card" + ], + [ + "can you apply for idaho independent card for me", + "new_card" + ], + [ + "please apply cc visa card for me", + "new_card" + ], + [ + "apply for a kbc card for me", + "new_card" + ], + [ + "i want to apply for a alphabank card", + "new_card" + ], + [ + "i would like to apply for a bank of america travel rewards credit card", + "new_card" + ], + [ + "i need to apply for a new credit card", + "new_card" + ], + [ + "i wanna apply for a new credit card", + "new_card" + ], + [ + "i got to apply for a new credit card", + "new_card" + ], + [ + "i wanna apply for a bank of america travel rewards credit card", + "new_card" + ], + [ + "i need to apply for a bank of america travel rewards credit card", + "new_card" + ], + [ + "i desire to apply for a bank of america travel rewards credit card", + "new_card" + ], + [ + "apply for a bank of america travel rewards credit card", + "new_card" + ], + [ + "i must apply for a new credit card", + "new_card" + ], + [ + "i gotta apply for a new credit card", + "new_card" + ], + [ + "i would like to apply for a master card", + "new_card" + ], + [ + "i would like to apply for a green card", + "new_card" + ], + [ + "i would like to apply for a visa card", + "new_card" + ], + [ + "i would like to apply for a credit card", + "new_card" + ], + [ + "i would like to apply for a discover card", + "new_card" + ], + [ + "what's the procedure to apply for a new credit card", + "new_card" + ], + [ + "how can i get a new credit card", + "new_card" + ], + [ + "direct me to the application for a new credit card", + "new_card" + ], + [ + "apply for an american express card", + "new_card" + ], + [ + "can you tell me if i might be able to apply for a new credit card", + "new_card" + ], + [ + "might i be able to apply for a new credit card", + "new_card" + ], + [ + "can you help me apply for a visa card", + "new_card" + ], + [ + "i want to apply for a discover card", + "new_card" + ], + [ + "am i eligible for a new credit card application", + "new_card" + ], + [ + "is it possible to apply for a new credit card", + "new_card" + ], + [ + "i think i'd like to apply for an amex", + "new_card" + ], + [ + "am i able to apply for a new credit card", + "new_card" + ], + [ + "application for a mastercard", + "new_card" + ], + [ + "can i get a new card", + "new_card" + ], + [ + "i would like to apply for a new card", + "new_card" + ], + [ + "can i maybe apply for a new card", + "new_card" + ], + [ + "can i please get a new card", + "new_card" + ], + [ + "can i get a brand new card please", + "new_card" + ], + [ + "list the steps for applying for an american express card", + "new_card" + ], + [ + "what's the process for getting an american express card", + "new_card" + ], + [ + "what do i need to do to get an american express card", + "new_card" + ], + [ + "help me get an american express card", + "new_card" + ], + [ + "help me apply for an american express card", + "new_card" + ], + [ + "i am hoping to apply for an amex card", + "new_card" + ], + [ + "i want to find a new credit card to sign up for", + "new_card" + ], + [ + "how do i apply for a barclay's card", + "new_card" + ], + [ + "walk me through the process of applying for an american express card", + "new_card" + ], + [ + "i need help figuring out a new credit card to get", + "new_card" + ], + [ + "i am interested in applying for a visa card", + "new_card" + ], + [ + "i am interested in acquiring a new credit card", + "new_card" + ], + [ + "i want to apply for a mastercard", + "new_card" + ], + [ + "walk me through applying for a visa card", + "new_card" + ], + [ + "i want to submit an application for a barclay's card", + "new_card" + ], + [ + "can you help me sign up for a new credit card", + "new_card" + ], + [ + "i need to know how to apply for a mastercard", + "new_card" + ], + [ + "i intend to apply for an american express card", + "new_card" + ], + [ + "tell me how to apply for an american express card", + "new_card" + ], + [ + "i feel like it is time for me to sign up for a new credit card", + "new_card" + ], + [ + "how to apply for platinum card", + "new_card" + ], + [ + "i would like to apply for a air canada card visa, can you help me", + "new_card" + ], + [ + "please help me apply for a silver card", + "new_card" + ], + [ + "tell me the process of applying for a apollo card", + "new_card" + ], + [ + "can you tell me how to apply for a western card", + "new_card" + ], + [ + "how can i apply for a visa card", + "new_card" + ], + [ + "how can i apply for a visa card, please", + "new_card" + ], + [ + "how do i apply for a visa card, please", + "new_card" + ], + [ + "how can i apply for a mastercard, please", + "new_card" + ], + [ + "what if you need to obtain a new credit card", + "new_card" + ], + [ + "what if you want to obtain a new credit card", + "new_card" + ], + [ + "what if you want a new credit card", + "new_card" + ], + [ + "what if you need to get a new credit card", + "new_card" + ], + [ + "show me how i can get a new credit card", + "new_card" + ], + [ + "can you help me find out how to get a new credit card", + "new_card" + ], + [ + "how do i get a new credit card", + "new_card" + ], + [ + "can you help me get a new credit card", + "new_card" + ], + [ + "what is the process i need to follow to get a new credit card", + "new_card" + ], + [ + "may i apply for a new credit card", + "new_card" + ], + [ + "how do i go about applying for a new credit card", + "new_card" + ], + [ + "i would like to apply for a new credit card", + "new_card" + ], + [ + "could you please let me apply for a new credit card", + "new_card" + ], + [ + "is it possible to apply for a visa card", + "new_card" + ], + [ + "hey what do i do to apply for a visa card", + "new_card" + ], + [ + "locate lost luggage from flight america airlines in o'hare", + "lost_luggage" + ], + [ + "on flight america airlines in o'hare lost luggage", + "lost_luggage" + ], + [ + "in o'hare lost luggage on flight america airlines", + "lost_luggage" + ], + [ + "lost luggage on flight america airlines in o'hare", + "lost_luggage" + ], + [ + "while on flight america airlines i lost luggage in o'hare", + "lost_luggage" + ], + [ + "it seems my luggage was lost", + "lost_luggage" + ], + [ + "my luggage was lost so what do i do", + "lost_luggage" + ], + [ + "my luggage is missing i was on spirit flight ab123 from chicago", + "lost_luggage" + ], + [ + "i think my luggage has been lost", + "lost_luggage" + ], + [ + "i think my luggage was misplaced or has been lost", + "lost_luggage" + ], + [ + "i lost my luggage coming from new york city on american flight ab123", + "lost_luggage" + ], + [ + "what step do i take if my bag got lost on the flight", + "lost_luggage" + ], + [ + "i lost my luggage coming from chicago on delta flight ab123", + "lost_luggage" + ], + [ + "what is the next step if my luggage was lost", + "lost_luggage" + ], + [ + "i lost my luggage, what now", + "lost_luggage" + ], + [ + "i lost my luggage", + "lost_luggage" + ], + [ + "my luggage is missing i was on frontier flight ab123 from seattle", + "lost_luggage" + ], + [ + "my luggage was lost on the flight", + "lost_luggage" + ], + [ + "my luggage is lost i was on delta flight ab123 from detroit", + "lost_luggage" + ], + [ + "can you please help me find my lost luggage", + "lost_luggage" + ], + [ + "my luggage has not arrived and i would like help locating it", + "lost_luggage" + ], + [ + "my luggage has not arrived and i would like assistance locating it", + "lost_luggage" + ], + [ + "can you please help me locate my luggage", + "lost_luggage" + ], + [ + "my luggage is lost and i would like help trying to locate it", + "lost_luggage" + ], + [ + "im at lax and my bags aren't", + "lost_luggage" + ], + [ + "my bags did not arrive here at smf", + "lost_luggage" + ], + [ + "i got to vegas airport but my bags didn't", + "lost_luggage" + ], + [ + "where are my bags, not here at the airport", + "lost_luggage" + ], + [ + "my bags didn't make it to the new orleans airport", + "lost_luggage" + ], + [ + "i'm not able to find my luggage and i was on southwest airlines flight ab123 out of houston", + "lost_luggage" + ], + [ + "my luggage is missing i was on american airlines flight ab123 out of dallas", + "lost_luggage" + ], + [ + "i just traveled on american airlines flight ab123 out of dallas i can't find my luggage", + "lost_luggage" + ], + [ + "i flew on southwest airlines flight ab123 out of dallas and i can not find my luggage", + "lost_luggage" + ], + [ + "i was on american airlines flight ab123 out of houston and i can't find my luggage", + "lost_luggage" + ], + [ + "what if i lost my luggage", + "lost_luggage" + ], + [ + "help, i lost my luggage", + "lost_luggage" + ], + [ + "what to do if luggage lost", + "lost_luggage" + ], + [ + "how to find lost luggage", + "lost_luggage" + ], + [ + "what do you do if your luggage is missing", + "lost_luggage" + ], + [ + "what is the best way to deal with my lost luggage", + "lost_luggage" + ], + [ + "i'm in baggage claim at the airport and my luggage didn't make it", + "lost_luggage" + ], + [ + "who can i turn to if i lost my luggage", + "lost_luggage" + ], + [ + "i'm waiting for my luggage in the airport now but it's been a while and it's still not arrived", + "lost_luggage" + ], + [ + "where do i begin the process of reporting my luggage lost", + "lost_luggage" + ], + [ + "my luggage is nowhere in sight, it might be lost", + "lost_luggage" + ], + [ + "if i lost my luggage, where can i get help", + "lost_luggage" + ], + [ + "i believe it looks like my luggage has disappeared", + "lost_luggage" + ], + [ + "my luggage is missing, i think", + "lost_luggage" + ], + [ + "it appears that my luggage has vanished", + "lost_luggage" + ], + [ + "can you tell me what to do as i am in the airport and have been for some time and there is still no sign of my suitcase", + "lost_luggage" + ], + [ + "there's a strong possibility that my luggage has gone missing", + "lost_luggage" + ], + [ + "how do i handle the situation if i lost my luggage", + "lost_luggage" + ], + [ + "is there someone i can talk to since i am in the airport waiting for my luggage which never came", + "lost_luggage" + ], + [ + "what should i do if i'm waiting at the airport and my luggage is not here", + "lost_luggage" + ], + [ + "i think my luggage got lost", + "lost_luggage" + ], + [ + "i believe that my luggage was lost", + "lost_luggage" + ], + [ + "it looks as though my luggage has been lost", + "lost_luggage" + ], + [ + "i don't know where my luggage is", + "lost_luggage" + ], + [ + "i'm having trouble finding my luggage i was on delta flight ab123 out of new york", + "lost_luggage" + ], + [ + "i was on delta flight ab123 out of new york and i can't find my luggage", + "lost_luggage" + ], + [ + "i miss placed my luggage i was on delta flight ab123 out of new york", + "lost_luggage" + ], + [ + "my luggage is lost i was on delta flight ab123 out of new york", + "lost_luggage" + ], + [ + "i was on delta flight ab123 out of new york and haven't been able to locate my luggage", + "lost_luggage" + ], + [ + "my luggage appears to be missing", + "lost_luggage" + ], + [ + "i need to find my luggage", + "lost_luggage" + ], + [ + "do you know where my luggage is", + "lost_luggage" + ], + [ + "i can't find my luggage anywhere and there's no more on the conveyor", + "lost_luggage" + ], + [ + "can you see if you can track where my luggage is", + "lost_luggage" + ], + [ + "what the heck, where's my luggage!", + "lost_luggage" + ], + [ + "i can't find any of my luggage!", + "lost_luggage" + ], + [ + "do you know where the luggage for people on panam flight ab123 out of tuscon is", + "lost_luggage" + ], + [ + "who do i report lost luggage to", + "lost_luggage" + ], + [ + "i'm here at dia but my luggage isn't!", + "lost_luggage" + ], + [ + "find me the number for jet blue's customer service so i can yell at someone about my missing luggage", + "lost_luggage" + ], + [ + "can you help me locate lost luggage", + "lost_luggage" + ], + [ + "how do i find lost luggage", + "lost_luggage" + ], + [ + "i arrived on delta flight ab123 from juno but my luggage doesn't appear to have come with me", + "lost_luggage" + ], + [ + "what's the procedure to deal with lost luggage", + "lost_luggage" + ], + [ + "i just flew in on american airlines flight ab123 from chicago and can't find my luggage", + "lost_luggage" + ], + [ + "can you check where my luggage is off jetblue flight ab123 out of buffalo", + "lost_luggage" + ], + [ + "where's my luggage for american airlines flight ab123 out of denver", + "lost_luggage" + ], + [ + "how do i go about resolving my luggage that didn't arrive", + "lost_luggage" + ], + [ + "can you find out what happened to my luggage", + "lost_luggage" + ], + [ + "do you know whom i should contact since my luggage did not arrive", + "lost_luggage" + ], + [ + "my luggage did not arrive, please investigate", + "lost_luggage" + ], + [ + "where is my luggage, i was on delta flight ab123 out of dc", + "lost_luggage" + ], + [ + "i need my luggage found, i was on delta flight ab123 out of san francisco", + "lost_luggage" + ], + [ + "i can't locate my luggage, i was on jetblue flight ab123 out of detroit", + "lost_luggage" + ], + [ + "my luggage is lost, i was on american airlines ab123 out of los angeles", + "lost_luggage" + ], + [ + "i need assistance with my lost luggage, i was on american airlines ab123 out of talahasse", + "lost_luggage" + ], + [ + "help me find my luggage", + "lost_luggage" + ], + [ + "tell me where my luggage is", + "lost_luggage" + ], + [ + "how do i find lost luggage in an airport", + "lost_luggage" + ], + [ + "i need to figure out what to do about lost luggage", + "lost_luggage" + ], + [ + "my luggage is lost,what do i do now", + "lost_luggage" + ], + [ + "who do i go to to find lost luggage", + "lost_luggage" + ], + [ + "who do i complain to about my luggage not arriving at the airport", + "lost_luggage" + ], + [ + "can you help me find my luggage it was lost on delta flight abc123 from houston", + "lost_luggage" + ], + [ + "i need my luggage that your airline lost it was flight abc123 and now it\u2019s suddenly missing", + "lost_luggage" + ], + [ + "my luggage was on delta flight abc123 out of houston and now i can\u2019t find it", + "lost_luggage" + ], + [ + "i didn't hear you please repeat", + "repeat" + ], + [ + "please repeat", + "repeat" + ], + [ + "i want you to repeat that", + "repeat" + ], + [ + "one more time please", + "repeat" + ], + [ + "i need you to repeat that", + "repeat" + ], + [ + "i need you to please repeat that", + "repeat" + ], + [ + "one more time for me please", + "repeat" + ], + [ + "i would like that repeated", + "repeat" + ], + [ + "just another time please", + "repeat" + ], + [ + "say it again please", + "repeat" + ], + [ + "i must have you repeat that", + "repeat" + ], + [ + "say it again", + "repeat" + ], + [ + "i need that repeated", + "repeat" + ], + [ + "just one more time", + "repeat" + ], + [ + "i want to have that repeated for me", + "repeat" + ], + [ + "i want that repeated", + "repeat" + ], + [ + "ai what was the question", + "repeat" + ], + [ + "ai i didn't hear you", + "repeat" + ], + [ + "ai please repeat", + "repeat" + ], + [ + "ai could you say that again", + "repeat" + ], + [ + "excuse me", + "repeat" + ], + [ + "i did not hear you", + "repeat" + ], + [ + "i didn't get that, please repeat", + "repeat" + ], + [ + "please repeat yourself", + "repeat" + ], + [ + "i didn't catch that, please repeat", + "repeat" + ], + [ + "can you say that over", + "repeat" + ], + [ + "restate the last thing you told me", + "repeat" + ], + [ + "repeat what you just said", + "repeat" + ], + [ + "i didn't catch that say it again", + "repeat" + ], + [ + "what was that last thing you said", + "repeat" + ], + [ + "repeat what you just told me", + "repeat" + ], + [ + "please say that one more time", + "repeat" + ], + [ + "hold on what was that you just said", + "repeat" + ], + [ + "repeat that last response", + "repeat" + ], + [ + "i need you to repeat that, please", + "repeat" + ], + [ + "i did not quite hear you, can you say it again", + "repeat" + ], + [ + "can you please repeat that response", + "repeat" + ], + [ + "i did not hear you, please repeat", + "repeat" + ], + [ + "say it one more time please", + "repeat" + ], + [ + "i didn't hear, please say it again", + "repeat" + ], + [ + "im sorry can you repeat yourself", + "repeat" + ], + [ + "i missed what you said, can you say it again", + "repeat" + ], + [ + "i couldn't hear you, can you repeat it", + "repeat" + ], + [ + "i didn't hear say it again please", + "repeat" + ], + [ + "can you repeat yourself", + "repeat" + ], + [ + "i would like you to repeat yourself", + "repeat" + ], + [ + "i missed that last one, please repeat", + "repeat" + ], + [ + "what was that", + "repeat" + ], + [ + "i didn't hear you can you repeat that", + "repeat" + ], + [ + "please repeat that phrase", + "repeat" + ], + [ + "i missed what you said, please say it again", + "repeat" + ], + [ + "can you tell me what you just said", + "repeat" + ], + [ + "will you repeat that, please", + "repeat" + ], + [ + "could you repeat that, please", + "repeat" + ], + [ + "would you repeat that, please", + "repeat" + ], + [ + "would you repeat that", + "repeat" + ], + [ + "would you please ask the question again", + "repeat" + ], + [ + "i am needing for you to say that again", + "repeat" + ], + [ + "i need for you to ask the question again", + "repeat" + ], + [ + "could you ask the question again", + "repeat" + ], + [ + "i am going to need you to say that again", + "repeat" + ], + [ + "would you say that again, please", + "repeat" + ], + [ + "repeat the question", + "repeat" + ], + [ + "i didn't hear what you said", + "repeat" + ], + [ + "repeat that please", + "repeat" + ], + [ + "i didn't hear you", + "repeat" + ], + [ + "i didnt hear what you just said, can you say it again", + "repeat" + ], + [ + "may you repeat what you said again", + "repeat" + ], + [ + "i didn't hear what you just said, can you repeat it", + "repeat" + ], + [ + "i didn't understand what you just said, can you repeat it", + "repeat" + ], + [ + "i didnt understand what you just said, can you say it again", + "repeat" + ], + [ + "can you say what you just said again", + "repeat" + ], + [ + "could you repeat what you just said again", + "repeat" + ], + [ + "would you repeat what you just said", + "repeat" + ], + [ + "will you please repeat what you said", + "repeat" + ], + [ + "what did you just mention", + "repeat" + ], + [ + "i need that said again", + "repeat" + ], + [ + "i need to know again", + "repeat" + ], + [ + "please say it again", + "repeat" + ], + [ + "tell me once more", + "repeat" + ], + [ + "repeat that again", + "repeat" + ], + [ + "replay what you just said", + "repeat" + ], + [ + "i missed that, say it again", + "repeat" + ], + [ + "could you say that again", + "repeat" + ], + [ + "repeat your last message", + "repeat" + ], + [ + "say it one more time", + "repeat" + ], + [ + "i did not understand say it again", + "repeat" + ], + [ + "can you please sat it one more time", + "repeat" + ], + [ + "i did not catch that, repeat what you just said", + "repeat" + ], + [ + "sorry, i didn't hear you, can you say that gain", + "repeat" + ], + [ + "i didn't hear you, can you repeat that louder", + "repeat" + ], + [ + "i didn't catch that so please repeat it", + "repeat" + ], + [ + "please run that by me again", + "repeat" + ], + [ + "i missed that say it again", + "repeat" + ], + [ + "can you say again", + "repeat" + ], + [ + "please repeat what you just said", + "repeat" + ], + [ + "can i get you to say that once more", + "repeat" + ], + [ + "will you repeat what you just said", + "repeat" + ], + [ + "please repeat over what you said", + "repeat" + ], + [ + "come again with that", + "repeat" + ], + [ + "what kind of mileage do i get out of gas", + "mpg" + ], + [ + "what's the fuel economy of my car", + "mpg" + ], + [ + "how many miles per gallon do i get in my car", + "mpg" + ], + [ + "tell me my car's fuel economy", + "mpg" + ], + [ + "what kind of gas mileage do i get", + "mpg" + ], + [ + "what gas mileage does my car get", + "mpg" + ], + [ + "in my car, what's the fuel economy", + "mpg" + ], + [ + "how many miles per gallon do i get", + "mpg" + ], + [ + "what's my car's gas mileage", + "mpg" + ], + [ + "how many miles per gallon does my car get", + "mpg" + ], + [ + "look up the gas mileage for my vehicle", + "mpg" + ], + [ + "can you tell me the miles per gallon rate of my car", + "mpg" + ], + [ + "tell me my car's gas mileage please", + "mpg" + ], + [ + "what is the gas mileage for the car that i drive", + "mpg" + ], + [ + "how many miles can i drive on 1 gallon of gas", + "mpg" + ], + [ + "how many miles does my car get per gallon", + "mpg" + ], + [ + "what\u2019s my gas mileage", + "mpg" + ], + [ + "retrieve my current mpg on my car", + "mpg" + ], + [ + "tell me the gas mileage on my car", + "mpg" + ], + [ + "tell me my miles per gallon on my car", + "mpg" + ], + [ + "how much mpg does this car get in the city", + "mpg" + ], + [ + "what kind of mpg does this car get in the city", + "mpg" + ], + [ + "how many miles per gallon does it get in the city", + "mpg" + ], + [ + "how many miles per gallon does it get on the highway", + "mpg" + ], + [ + "can you give me the car's mpg for the city", + "mpg" + ], + [ + "what's the mpg for the car when it's on the highway", + "mpg" + ], + [ + "what are the estimates for the car's highway mpg", + "mpg" + ], + [ + "how much highway mpg does it get", + "mpg" + ], + [ + "for city driving, what's the car's mpg", + "mpg" + ], + [ + "how far can the car get per gallon on the highway", + "mpg" + ], + [ + "tell me the mpg of this car", + "mpg" + ], + [ + "can you tell me the mpg of this car", + "mpg" + ], + [ + "how many mpg does this car get", + "mpg" + ], + [ + "mpg of this car", + "mpg" + ], + [ + "what is the mpg of this car", + "mpg" + ], + [ + "what is the mpg", + "mpg" + ], + [ + "how much is this mpg", + "mpg" + ], + [ + "what's my current mpg", + "mpg" + ], + [ + "how much mpg do i have", + "mpg" + ], + [ + "what's my car's miles per gallon", + "mpg" + ], + [ + "calculate car mpg", + "mpg" + ], + [ + "what's my gas mileage like", + "mpg" + ], + [ + "is the fuel economy of this car good or bad", + "mpg" + ], + [ + "average mpg", + "mpg" + ], + [ + "what mpg does my car get", + "mpg" + ], + [ + "what is my average mpg in this car", + "mpg" + ], + [ + "tell me about this cars fuel economy", + "mpg" + ], + [ + "do you know the fuel economy of this car", + "mpg" + ], + [ + "what's the mpg of this car", + "mpg" + ], + [ + "what's the miles per gallon on this car", + "mpg" + ], + [ + "how does this do on gas mileage", + "mpg" + ], + [ + "whats the cars fuel mileage like", + "mpg" + ], + [ + "how does this car do on its fuel", + "mpg" + ], + [ + "what is the city mpg for this car", + "mpg" + ], + [ + "how many miles per gallon does this car get in the city", + "mpg" + ], + [ + "what is the city fuel efficiency for this car", + "mpg" + ], + [ + "what's the fuel economy for this car downtown", + "mpg" + ], + [ + "how many mpg does this rig get when i'm in the city", + "mpg" + ], + [ + "how much gas does this use in the city", + "mpg" + ], + [ + "do you know what this car's mpg is", + "mpg" + ], + [ + "how is this car rated for fuel economy", + "mpg" + ], + [ + "what's this car guzzle in gas when driving in town", + "mpg" + ], + [ + "what mpg does this car get on the expressway", + "mpg" + ], + [ + "what's the non-city mpg for this car", + "mpg" + ], + [ + "what'll this car do for gas mileage on the open road", + "mpg" + ], + [ + "how good is the fuel usage for this vehicle", + "mpg" + ], + [ + "what's this car get for highway driving", + "mpg" + ], + [ + "how much gas does this car use in the city", + "mpg" + ], + [ + "do you know the mpg for this vehicle", + "mpg" + ], + [ + "how's the mpg for this on the freeway", + "mpg" + ], + [ + "how many mpgs does this car get on the highway", + "mpg" + ], + [ + "how's the fuel efficiency for city driving for this car", + "mpg" + ], + [ + "what's this car do for fuel economy", + "mpg" + ], + [ + "what is the amount of miles per gallon this car gets on the highway", + "mpg" + ], + [ + "how many mpg does this get on the highway", + "mpg" + ], + [ + "what is the highway mpg on this car", + "mpg" + ], + [ + "how many miles per gallon does this car get on the highway", + "mpg" + ], + [ + "does this car get good mpg on the highway", + "mpg" + ], + [ + "what is the cars mpg on the highway", + "mpg" + ], + [ + "what is the mpg like for this car while driving in the city", + "mpg" + ], + [ + "what is the mpg on this car", + "mpg" + ], + [ + "how does this cars mpg do on the highway", + "mpg" + ], + [ + "whats the cars mpg", + "mpg" + ], + [ + "please tell me what the mpg is for this car", + "mpg" + ], + [ + "how does this car do with mpg in the city", + "mpg" + ], + [ + "tell me what this cars highway mpg is", + "mpg" + ], + [ + "what is the mpg for this car in city", + "mpg" + ], + [ + "does this car get good mpg in the city", + "mpg" + ], + [ + "what mpg does this car get in city", + "mpg" + ], + [ + "what mpg does this car get on the highway", + "mpg" + ], + [ + "how much mpg does this car get on the highway", + "mpg" + ], + [ + "please look up the this cars mpg", + "mpg" + ], + [ + "my mpg is how much", + "mpg" + ], + [ + "how many miles per gallon am i getting", + "mpg" + ], + [ + "how much is my mpg", + "mpg" + ], + [ + "what's the mileage on my car", + "mpg" + ], + [ + "how expensive is it to fuel this car", + "mpg" + ], + [ + "how many miles will a gallon of gas take this car", + "mpg" + ], + [ + "how many mpg does this car have", + "mpg" + ], + [ + "how far can i go on one tank of gas", + "mpg" + ], + [ + "when should i change my car oil", + "oil_change_when" + ], + [ + "do i need to change my oil", + "oil_change_when" + ], + [ + "how often do you have to change your oil", + "oil_change_when" + ], + [ + "how do i know when i have to change my oil", + "oil_change_when" + ], + [ + "when do i need to change my oil", + "oil_change_when" + ], + [ + "when am i due for an oil change", + "oil_change_when" + ], + [ + "how long before i neet to get my oil changed", + "oil_change_when" + ], + [ + "at how many miles am i required to get my oil changed", + "oil_change_when" + ], + [ + "when should my oil get changed", + "oil_change_when" + ], + [ + "when do i need you change my oil", + "oil_change_when" + ], + [ + "when is my oil due to be changed", + "oil_change_when" + ], + [ + "when should my oil be changed", + "oil_change_when" + ], + [ + "how long until i need to change my oil", + "oil_change_when" + ], + [ + "how many miles can i drive before changing my oil", + "oil_change_when" + ], + [ + "at which mileage, should i get my oil changed", + "oil_change_when" + ], + [ + "when should i change my oil again", + "oil_change_when" + ], + [ + "at what point should the oil be changed again", + "oil_change_when" + ], + [ + "how much longer until i need an oil change", + "oil_change_when" + ], + [ + "when do i need to change the oil again", + "oil_change_when" + ], + [ + "when do i need to change my oil again", + "oil_change_when" + ], + [ + "when should i change my oil next", + "oil_change_when" + ], + [ + "at what point will i need another oil change", + "oil_change_when" + ], + [ + "when will i need another oil change", + "oil_change_when" + ], + [ + "when will i need to change my oil again", + "oil_change_when" + ], + [ + "when do i need to get an oil change", + "oil_change_when" + ], + [ + "when must i change oil", + "oil_change_when" + ], + [ + "when do i need my oil changed", + "oil_change_when" + ], + [ + "when should oil be changed in my car", + "oil_change_when" + ], + [ + "when is an oil change needed by me", + "oil_change_when" + ], + [ + "i really must know when should i get my oil changed next", + "oil_change_when" + ], + [ + "when must i change the oil in my car", + "oil_change_when" + ], + [ + "i gotta know when should i get my oil changed next", + "oil_change_when" + ], + [ + "when do i have to change oil", + "oil_change_when" + ], + [ + "when should i change the oil in my car", + "oil_change_when" + ], + [ + "when do i need an oil change", + "oil_change_when" + ], + [ + "when does my oil need some changing", + "oil_change_when" + ], + [ + "i wanna know when should i get my oil changed next", + "oil_change_when" + ], + [ + "i must know when should i get my oil changed next", + "oil_change_when" + ], + [ + "i need to know when should i get my oil changed next", + "oil_change_when" + ], + [ + "how often should i change my oil", + "oil_change_when" + ], + [ + "oil changes are typical done how often", + "oil_change_when" + ], + [ + "when's my next oil change due", + "oil_change_when" + ], + [ + "oil changes are typical done when", + "oil_change_when" + ], + [ + "when is my oil change expected", + "oil_change_when" + ], + [ + "is there a way to tell when i need my oil changed", + "oil_change_when" + ], + [ + "when is my next oil change", + "oil_change_when" + ], + [ + "tell me how i know when i need an oil change", + "oil_change_when" + ], + [ + "how do i know when i need my next oil change", + "oil_change_when" + ], + [ + "when do i need my next oil change", + "oil_change_when" + ], + [ + "is it time for an oil change", + "oil_change_when" + ], + [ + "should i get an oil change", + "oil_change_when" + ], + [ + "when is the best time for my next oil change", + "oil_change_when" + ], + [ + "what date should i next change my oil", + "oil_change_when" + ], + [ + "the next time i change my oil, when should it be", + "oil_change_when" + ], + [ + "what duration of time should i wait before i change my oil", + "oil_change_when" + ], + [ + "after how long should i change my oil", + "oil_change_when" + ], + [ + "when will my car need an oil change", + "oil_change_when" + ], + [ + "can you make a note for my next oil change", + "oil_change_when" + ], + [ + "how long before i need an oil change", + "oil_change_when" + ], + [ + "when do you think i should change my oil", + "oil_change_when" + ], + [ + "when is my next oil change suggested", + "oil_change_when" + ], + [ + "what is the due date for my next oil change", + "oil_change_when" + ], + [ + "in how many miles do i need to schedule my oil change", + "oil_change_when" + ], + [ + "when is my car due for an oil change and lube", + "oil_change_when" + ], + [ + "how many miles can i drive before needing the next oil change", + "oil_change_when" + ], + [ + "it's been 3 years since i changed my oil, how long until i have to deal with it", + "oil_change_when" + ], + [ + "can you check when i'm next due for an oil change", + "oil_change_when" + ], + [ + "my oil seems pretty black, does that mean i should change it", + "oil_change_when" + ], + [ + "when's the next time i should go for an oil change", + "oil_change_when" + ], + [ + "my car's been throwing cels that i think are oil related, so i'm wondering if it's time to take it in or not", + "oil_change_when" + ], + [ + "my next oil change is when", + "oil_change_when" + ], + [ + "at what time should i get my oil changed next", + "oil_change_when" + ], + [ + "how much longer until i need to get my oil changed", + "oil_change_when" + ], + [ + "what is the next date that i should change my oil at", + "oil_change_when" + ], + [ + "when would you recommend i get my oil changed", + "oil_change_when" + ], + [ + "when would it be required for me to get my oil changed", + "oil_change_when" + ], + [ + "when is my next oil change due", + "oil_change_when" + ], + [ + "what is the average time to go between oil changes", + "oil_change_when" + ], + [ + "do i need to have my oil changed after 3000 miles", + "oil_change_when" + ], + [ + "how soon should i have my oil changed", + "oil_change_when" + ], + [ + "how often should i have my oil changed", + "oil_change_when" + ], + [ + "what is the recommended time frame to change my oil", + "oil_change_when" + ], + [ + "how many miles can i drive before i need to change my oil", + "oil_change_when" + ], + [ + "how long can i go before changing my oil", + "oil_change_when" + ], + [ + "how long is an oil change good for", + "oil_change_when" + ], + [ + "i need to know when my oil should be changed", + "oil_change_when" + ], + [ + "when do people typically change their oil", + "oil_change_when" + ], + [ + "how often should the oil get changed", + "oil_change_when" + ], + [ + "what is the time frame for changing oil", + "oil_change_when" + ], + [ + "about how long before i need another oil change", + "oil_change_when" + ], + [ + "how long does oil last in a car", + "oil_change_when" + ], + [ + "do you change the oil in your car more than once a year", + "oil_change_when" + ], + [ + "when is my car due for an oil change", + "oil_change_when" + ], + [ + "when do cars need their oil changed", + "oil_change_when" + ], + [ + "when do i change my oil", + "oil_change_when" + ], + [ + "how long can you go between oil changes", + "oil_change_when" + ], + [ + "how often should you get an oil change", + "oil_change_when" + ], + [ + "when can i get oil changed", + "oil_change_when" + ], + [ + "when should i change this oil", + "oil_change_when" + ], + [ + "when to change my oil", + "oil_change_when" + ], + [ + "yep", + "yes" + ], + [ + "that is affirmative", + "yes" + ], + [ + "what you just said is true", + "yes" + ], + [ + "that is not false", + "yes" + ], + [ + "that is a fact", + "yes" + ], + [ + "i agree with the truth of what you just said", + "yes" + ], + [ + "i believe what you just said is true", + "yes" + ], + [ + "that would be great", + "yes" + ], + [ + "that would be awesome", + "yes" + ], + [ + "that is totally true", + "yes" + ], + [ + "oh yes", + "yes" + ], + [ + "yes that is right", + "yes" + ], + [ + "that is a yes", + "yes" + ], + [ + "that seems true", + "yes" + ], + [ + "positive", + "yes" + ], + [ + "true", + "yes" + ], + [ + "very true", + "yes" + ], + [ + "that will be true", + "yes" + ], + [ + "that appears true", + "yes" + ], + [ + "that is true", + "yes" + ], + [ + "it is true", + "yes" + ], + [ + "that is right", + "yes" + ], + [ + "that statement was correct", + "yes" + ], + [ + "i think that's true", + "yes" + ], + [ + "that is accurate", + "yes" + ], + [ + "yes, that is it", + "yes" + ], + [ + "correct", + "yes" + ], + [ + "the answer is yes", + "yes" + ], + [ + "all right", + "yes" + ], + [ + "it's indeed true", + "yes" + ], + [ + "that's a yes from me", + "yes" + ], + [ + "yes you are correct", + "yes" + ], + [ + "that's a definite yes", + "yes" + ], + [ + "yes that's it", + "yes" + ], + [ + "i vote yes", + "yes" + ], + [ + "that is correct", + "yes" + ], + [ + "yes, that is true", + "yes" + ], + [ + "yep, that's right", + "yes" + ], + [ + "yeah that's what i want", + "yes" + ], + [ + "you got it", + "yes" + ], + [ + "yeah that's right, so true", + "yes" + ], + [ + "true is my response", + "yes" + ], + [ + "yes, that's affirmative", + "yes" + ], + [ + "yes, you got it", + "yes" + ], + [ + "absolutely!", + "yes" + ], + [ + "do that", + "yes" + ], + [ + "absolutely correct", + "yes" + ], + [ + "confirm", + "yes" + ], + [ + "yes, i'd really like that alot", + "yes" + ], + [ + "agreed, that's valid", + "yes" + ], + [ + "affirmative, go ahead", + "yes" + ], + [ + "yes that's correct", + "yes" + ], + [ + "yeah, that's how it is", + "yes" + ], + [ + "yeah, that's right", + "yes" + ], + [ + "of course", + "yes" + ], + [ + "that's the truth", + "yes" + ], + [ + "exactly right", + "yes" + ], + [ + "yes, that's accurate", + "yes" + ], + [ + "yes, that is accurate", + "yes" + ], + [ + "yes, that's what i want", + "yes" + ], + [ + "yes, that is a fact", + "yes" + ], + [ + "yes, that is correct", + "yes" + ], + [ + "yes, that's confirmed", + "yes" + ], + [ + "indeed", + "yes" + ], + [ + "yes", + "yes" + ], + [ + "uh-huh", + "yes" + ], + [ + "correct, that's true", + "yes" + ], + [ + "yes, that's correct", + "yes" + ], + [ + "yeah", + "yes" + ], + [ + "yeap", + "yes" + ], + [ + "ok", + "yes" + ], + [ + "sure thing", + "yes" + ], + [ + "yes you are right", + "yes" + ], + [ + "yes you are", + "yes" + ], + [ + "yes i do like that", + "yes" + ], + [ + "yes that is correct", + "yes" + ], + [ + "yes i am", + "yes" + ], + [ + "i think it's true", + "yes" + ], + [ + "that would be yes", + "yes" + ], + [ + "that would be true", + "yes" + ], + [ + "i believe that's true", + "yes" + ], + [ + "uh huh", + "yes" + ], + [ + "yep, that's true", + "yes" + ], + [ + "yes, that is actually true", + "yes" + ], + [ + "yes, that's it", + "yes" + ], + [ + "yes, that is right", + "yes" + ], + [ + "correct, it is affirmative", + "yes" + ], + [ + "the answer to that is a resounding yes", + "yes" + ], + [ + "i can confirm it is affirmative", + "yes" + ], + [ + "my response to that is yes", + "yes" + ], + [ + "i have to say affirmative on that one", + "yes" + ], + [ + "i would have to say yes as my answer", + "yes" + ], + [ + "the answer to that is affirmative", + "yes" + ], + [ + "that is true, yes", + "yes" + ], + [ + "it is definitely affirmative", + "yes" + ], + [ + "is is very much true", + "yes" + ], + [ + "it is a true", + "yes" + ], + [ + "its a for sure true", + "yes" + ], + [ + "yes sir", + "yes" + ], + [ + "it's true", + "yes" + ], + [ + "can you give me some suggestions to go site seeing when i get there", + "travel_suggestion" + ], + [ + "can you get me any recommendations for the place i'm traveling to", + "travel_suggestion" + ], + [ + "please suggest some fun tourist activities in tokyo", + "travel_suggestion" + ], + [ + "i need help with some fun tourist things to do in tokyo", + "travel_suggestion" + ], + [ + "could you tell me what fun tourist things i could do in tokyo", + "travel_suggestion" + ], + [ + "what should i do for fun in tokyo", + "travel_suggestion" + ], + [ + "what do tourists do in tokyo", + "travel_suggestion" + ], + [ + "what sites are there to see when in evans", + "travel_suggestion" + ], + [ + "what can i do in evans", + "travel_suggestion" + ], + [ + "name some things i should do while in evans", + "travel_suggestion" + ], + [ + "if i go to evans, what should i do", + "travel_suggestion" + ], + [ + "what is there to do in evans", + "travel_suggestion" + ], + [ + "what can i do in new orleans for fun", + "travel_suggestion" + ], + [ + "what do you recommend to do in vegas", + "travel_suggestion" + ], + [ + "is there anything fun to do in berlin", + "travel_suggestion" + ], + [ + "find something fun for me to do in dallas", + "travel_suggestion" + ], + [ + "what's fun to do in thailand", + "travel_suggestion" + ], + [ + "where should i book my next trip", + "travel_suggestion" + ], + [ + "what are some hot travel destinations", + "travel_suggestion" + ], + [ + "what's a good place to travel to", + "travel_suggestion" + ], + [ + "where should i travel to next", + "travel_suggestion" + ], + [ + "what's the best place to travel to this time of year", + "travel_suggestion" + ], + [ + "when visiting chicago, what things can i do there", + "travel_suggestion" + ], + [ + "what are some good restaurants in chicago", + "travel_suggestion" + ], + [ + "what are some activities to do in chicago", + "travel_suggestion" + ], + [ + "when travelling in chicago, what kinds of attractions should i see", + "travel_suggestion" + ], + [ + "what kind of entertainment is available in chicago", + "travel_suggestion" + ], + [ + "show me some things to do in gatlinburg", + "travel_suggestion" + ], + [ + "what are the main attractions in gatlinburg", + "travel_suggestion" + ], + [ + "name the five star attractions in gatlinburg", + "travel_suggestion" + ], + [ + "what are some of the attractions in gatlinburg", + "travel_suggestion" + ], + [ + "what are the most popular attractions in gatlinburg", + "travel_suggestion" + ], + [ + "where should i spend my time off", + "travel_suggestion" + ], + [ + "give me some awesome travel destinations", + "travel_suggestion" + ], + [ + "what's the best place to just get away from it all", + "travel_suggestion" + ], + [ + "what are some tourist sites to see in ann arbor", + "travel_suggestion" + ], + [ + "name some tourist things to do in chicago", + "travel_suggestion" + ], + [ + "in austin, what are some tourist things to do", + "travel_suggestion" + ], + [ + "name some tourist things to do in seattle", + "travel_suggestion" + ], + [ + "what are some fun, tourist sites to see in nyc", + "travel_suggestion" + ], + [ + "what experiences does kentucky offer", + "travel_suggestion" + ], + [ + "what's something interesting to do kentucky", + "travel_suggestion" + ], + [ + "what things are there to do in kentucky", + "travel_suggestion" + ], + [ + "what could i do for fun in kentucky", + "travel_suggestion" + ], + [ + "what does kentucky have to offer for things to do", + "travel_suggestion" + ], + [ + "what are the big tourist sites in sweden", + "travel_suggestion" + ], + [ + "what are some fun things to do in sweden", + "travel_suggestion" + ], + [ + "can you tell me about the best tourist attractions in sweden", + "travel_suggestion" + ], + [ + "what are some of sweden's best sights", + "travel_suggestion" + ], + [ + "what can i do in nashville", + "travel_suggestion" + ], + [ + "help me find things to do in nashville", + "travel_suggestion" + ], + [ + "can i do a lot in nashville", + "travel_suggestion" + ], + [ + "i need ideas for things to do in nashville", + "travel_suggestion" + ], + [ + "do you know of any activities in nashville", + "travel_suggestion" + ], + [ + "what are some touristy things to do in boston", + "travel_suggestion" + ], + [ + "what kinds of fun things are there in boston for tourists", + "travel_suggestion" + ], + [ + "are there any exciting tourist things to do in boston", + "travel_suggestion" + ], + [ + "what kinds of fun touristy things are there to do in boston", + "travel_suggestion" + ], + [ + "are there any fun tourist things to do in boston", + "travel_suggestion" + ], + [ + "what are some fun things i can partake in in atlanta", + "travel_suggestion" + ], + [ + "tell me things i can do in chicago", + "travel_suggestion" + ], + [ + "provide me with ideas of things we can do in charlotte", + "travel_suggestion" + ], + [ + "give me a list of things to do in orlando", + "travel_suggestion" + ], + [ + "where should i travel if i want to visit some history museums", + "travel_suggestion" + ], + [ + "i'd like some suggestions on where to go on my vacation this year", + "travel_suggestion" + ], + [ + "are there any interesting things to do in atlanta, georgia", + "travel_suggestion" + ], + [ + "is there anything fun to do in manassas, virginia", + "travel_suggestion" + ], + [ + "i want to travel this year but i need some suggestions", + "travel_suggestion" + ], + [ + "where should i travel if i want to go to a nice beach", + "travel_suggestion" + ], + [ + "give me some ideas on what i can do in seattle for fun", + "travel_suggestion" + ], + [ + "what do you suggest for entertainment in tampa, florida", + "travel_suggestion" + ], + [ + "what are some fun things to do in butte, montana", + "travel_suggestion" + ], + [ + "in portland, what things are there to do", + "travel_suggestion" + ], + [ + "what things can i do in portland", + "travel_suggestion" + ], + [ + "what are some things i can do in portland", + "travel_suggestion" + ], + [ + "what are some things to do in portland", + "travel_suggestion" + ], + [ + "what things are there to do in portland", + "travel_suggestion" + ], + [ + "what is there to do besides drink in germany", + "travel_suggestion" + ], + [ + "what festivals are there to see in paris", + "travel_suggestion" + ], + [ + "what fun is there to do in england", + "travel_suggestion" + ], + [ + "where is the best winery in the south of france", + "travel_suggestion" + ], + [ + "what should i do in france", + "travel_suggestion" + ], + [ + "where do you suggest i plan my next vacation", + "travel_suggestion" + ], + [ + "what are your best travel suggestions", + "travel_suggestion" + ], + [ + "what are some suggestions for places to travel", + "travel_suggestion" + ], + [ + "what do people in sioux falls do for fun", + "travel_suggestion" + ], + [ + "what's there to do in seattle", + "travel_suggestion" + ], + [ + "are there any interesting activities to do in austin", + "travel_suggestion" + ], + [ + "where's a good place to go if i want to see mountains", + "travel_suggestion" + ], + [ + "what's a nice place to visit a beautiful beach", + "travel_suggestion" + ], + [ + "what should i do in bangor", + "travel_suggestion" + ], + [ + "what do tourists do for fun in seattle", + "travel_suggestion" + ], + [ + "are there any fun tourist activities in australia", + "travel_suggestion" + ], + [ + "what's a good use of my time in toronto", + "travel_suggestion" + ], + [ + "what can a tourist in denver do", + "travel_suggestion" + ], + [ + "what sort of things do people do in new york", + "travel_suggestion" + ], + [ + "tell me some things to see in tampa", + "travel_suggestion" + ], + [ + "is there anything neat to do in boston", + "travel_suggestion" + ], + [ + "what are some interesting things to do in dc", + "travel_suggestion" + ], + [ + "what's the funnest thing for a tourist to do in iceland", + "travel_suggestion" + ], + [ + "what do my health benefits consist of", + "insurance" + ], + [ + "what health benefits are available to me", + "insurance" + ], + [ + "what health benefits can i use", + "insurance" + ], + [ + "what are the health benefits i have", + "insurance" + ], + [ + "what health benefits do i have", + "insurance" + ], + [ + "i need to know my health benefits", + "insurance" + ], + [ + "what is my health plan", + "insurance" + ], + [ + "what's the name of my medical coverage", + "insurance" + ], + [ + "i need to know more about my health plan", + "insurance" + ], + [ + "are my health benefits good", + "insurance" + ], + [ + "tell me what my health plan is called", + "insurance" + ], + [ + "do i have many health benefits", + "insurance" + ], + [ + "tell me about my health insurance", + "insurance" + ], + [ + "what is the name of my health insurance", + "insurance" + ], + [ + "list all of my health benefits", + "insurance" + ], + [ + "my insurance gives me what benefits", + "insurance" + ], + [ + "what benefits are available with my insurance", + "insurance" + ], + [ + "what benefits does my insurance provide", + "insurance" + ], + [ + "what benefits are provided by my insurance", + "insurance" + ], + [ + "my insurance benefits are what", + "insurance" + ], + [ + "what benefits do i get from insurance", + "insurance" + ], + [ + "give me information on my health plan", + "insurance" + ], + [ + "i'd like to know about my health plan", + "insurance" + ], + [ + "can you tell me my health plan", + "insurance" + ], + [ + "insurance benefits", + "insurance" + ], + [ + "what benefits are associated with my insurance", + "insurance" + ], + [ + "can you tell me my insurance benefits", + "insurance" + ], + [ + "what benefits does my insurance have", + "insurance" + ], + [ + "i'm curious what health plan i'm on", + "insurance" + ], + [ + "i'm wondering what health plan i'm on", + "insurance" + ], + [ + "can you let me know what health plan i'm on", + "insurance" + ], + [ + "do you know the health plan i'm on", + "insurance" + ], + [ + "is it possible for you to let me know what health plan i'm on", + "insurance" + ], + [ + "tell me about my insurance benefits", + "insurance" + ], + [ + "list my insurance benefits", + "insurance" + ], + [ + "list insurance benefits", + "insurance" + ], + [ + "insurance benefit information", + "insurance" + ], + [ + "insurance benefit details", + "insurance" + ], + [ + "give me the name of the insurance plan that i enrolled in", + "insurance" + ], + [ + "tell me the name of my insurance plan", + "insurance" + ], + [ + "what is the name of my insurance plan", + "insurance" + ], + [ + "what is the name of the insurance plan that i'm enrolled in", + "insurance" + ], + [ + "please provide the name of the insurance plan that i'm enrolled in", + "insurance" + ], + [ + "what's the healthcare plan i'm on", + "insurance" + ], + [ + "what's the deal with my health care", + "insurance" + ], + [ + "what's my current health care plan", + "insurance" + ], + [ + "any word on my healthcare plan", + "insurance" + ], + [ + "what healthcare plan do you have me on", + "insurance" + ], + [ + "i need you to tell me what benefits are included in my insurance", + "insurance" + ], + [ + "please find the benefits provided by my insurance", + "insurance" + ], + [ + "what benefits do i have with my insurance", + "insurance" + ], + [ + "can you tell me what is included in my health benefits", + "insurance" + ], + [ + "please tell my what insurance plan i registered for", + "insurance" + ], + [ + "i need to know what my health benefits cover, please", + "insurance" + ], + [ + "i would like to hear a list of my insurance benefits, please", + "insurance" + ], + [ + "what is the insurance plan that i'm signed up for", + "insurance" + ], + [ + "please tell me what's provided in my health benefits", + "insurance" + ], + [ + "which insurance plan do i currently have", + "insurance" + ], + [ + "can you tell me the name of the insurance plan i'm a member of", + "insurance" + ], + [ + "remind me of which insurance plan i'm currently enrolled in", + "insurance" + ], + [ + "what benefits does my health coverage give me", + "insurance" + ], + [ + "i would like to know all of the covered benefits that are given by my health care plan", + "insurance" + ], + [ + "can you tell me what benefits i receive with my insurance", + "insurance" + ], + [ + "is there an insurance plan for my health", + "insurance" + ], + [ + "can i see my health benefits", + "insurance" + ], + [ + "what are the benefits i get for my health", + "insurance" + ], + [ + "what is the aid i get from these health benefits", + "insurance" + ], + [ + "can i obtain health benefits", + "insurance" + ], + [ + "give me info on my health plan", + "insurance" + ], + [ + "what was my health plan again", + "insurance" + ], + [ + "what health plan do i have", + "insurance" + ], + [ + "tell me my health plan", + "insurance" + ], + [ + "what's my health plan", + "insurance" + ], + [ + "which insurance plan am i enrolled in, please", + "insurance" + ], + [ + "what type of insurance plan am i enrolled in, please", + "insurance" + ], + [ + "what kind of insurance plan am i enrolled in", + "insurance" + ], + [ + "what kind of insurance plan am i enrolled in, please", + "insurance" + ], + [ + "may i know my insurance benefits", + "insurance" + ], + [ + "where is the list of my insurance benefits", + "insurance" + ], + [ + "what's my insurance benefits like", + "insurance" + ], + [ + "how do i know my insurance benefits", + "insurance" + ], + [ + "what insurance benefits am i getting", + "insurance" + ], + [ + "how would you define my health benefits", + "insurance" + ], + [ + "will you summarize my health benefits", + "insurance" + ], + [ + "define my health benefits", + "insurance" + ], + [ + "how would you describe my health benefits", + "insurance" + ], + [ + "what is the definition of my health benefits", + "insurance" + ], + [ + "can you explain my benefits", + "insurance" + ], + [ + "whats included with my insurance", + "insurance" + ], + [ + "what insurance benefits do i have", + "insurance" + ], + [ + "what do my benefits look like", + "insurance" + ], + [ + "what benefits are included in my package", + "insurance" + ], + [ + "what are my insurance assets", + "insurance" + ], + [ + "what are my insurance advantages", + "insurance" + ], + [ + "what are my insurance perks", + "insurance" + ], + [ + "what are my insurance rewards", + "insurance" + ], + [ + "what are my insurance amenities", + "insurance" + ], + [ + "do you know what my health benefits are", + "insurance" + ], + [ + "please look up the name of my insurance plan", + "insurance" + ], + [ + "can you tell me the name of my insurance plan", + "insurance" + ], + [ + "i need to add the chore of vacuuming to my task list", + "todo_list_update" + ], + [ + "put wash the counters down on my list of pending tasks", + "todo_list_update" + ], + [ + "take doing the dishes off my todo list", + "todo_list_update" + ], + [ + "blank out my todo list", + "todo_list_update" + ], + [ + "erase all items on my todo list", + "todo_list_update" + ], + [ + "delete everything on my todo list", + "todo_list_update" + ], + [ + "add clean bathroom to my to do list", + "todo_list_update" + ], + [ + "go ahead and take cleaning the bathroom off my todo list", + "todo_list_update" + ], + [ + "you can remove vacuuming off the todo list", + "todo_list_update" + ], + [ + "make my todo list blank", + "todo_list_update" + ], + [ + "please take shoveling the car off my todo list", + "todo_list_update" + ], + [ + "i'd like you to remove throw away dvds off my todo list", + "todo_list_update" + ], + [ + "put clean stovetop on my list of reminders", + "todo_list_update" + ], + [ + "nuke all items on my todo list", + "todo_list_update" + ], + [ + "will you put change the light bulbs on my list of things to do", + "todo_list_update" + ], + [ + "delete everything from the task list", + "todo_list_update" + ], + [ + "hurry up and just erase everything from the todo list", + "todo_list_update" + ], + [ + "can you kindly clear my agenda list", + "todo_list_update" + ], + [ + "hey just take off everything from my todo list", + "todo_list_update" + ], + [ + "i don't want to do anything today so just clear the todo list", + "todo_list_update" + ], + [ + "please include feeding the fish on my to do list", + "todo_list_update" + ], + [ + "please remove laundry from my list of chores", + "todo_list_update" + ], + [ + "please clear out my whole to do list", + "todo_list_update" + ], + [ + "i want you to clear out my to do list", + "todo_list_update" + ], + [ + "i want you to add cleaning the toilet to my to do list", + "todo_list_update" + ], + [ + "make sure my to do list is completely clear please", + "todo_list_update" + ], + [ + "please include laundry on my to do list", + "todo_list_update" + ], + [ + "can you please add take out recycling on my list of chores to complete", + "todo_list_update" + ], + [ + "please get rid off everything on my to do list", + "todo_list_update" + ], + [ + "please take feeding the fish off of my list of tasks to complete", + "todo_list_update" + ], + [ + "i need to add dusting the bookshelf to my to do list", + "todo_list_update" + ], + [ + "please put washing the dishes on my list of tasks to accomplish", + "todo_list_update" + ], + [ + "please be sure to put folding laundry on my to do list for me", + "todo_list_update" + ], + [ + "please put watering the plants on my to do list", + "todo_list_update" + ], + [ + "please erase everything on my to do list", + "todo_list_update" + ], + [ + "take watering the plants off of my to do list", + "todo_list_update" + ], + [ + "i just finished taking out my recycling, so cross that off my to do list", + "todo_list_update" + ], + [ + "can you check washing the dishes off on my to do list", + "todo_list_update" + ], + [ + "i need laundry put on my list of tasks to complete", + "todo_list_update" + ], + [ + "please add watering the plants to my current to do list", + "todo_list_update" + ], + [ + "to my domestic task list please add paint kitchen", + "todo_list_update" + ], + [ + "add to my task list get carpet cleaned", + "todo_list_update" + ], + [ + "add clean the bathroom to my task list", + "todo_list_update" + ], + [ + "put clean refrigerator on my spring cleaning to do list", + "todo_list_update" + ], + [ + "on my big project task list please add paint shutters in spring", + "todo_list_update" + ], + [ + "delete my to do list", + "todo_list_update" + ], + [ + "erase get a haircut from my to do list, please", + "todo_list_update" + ], + [ + "i need to include a stop at the pharmacy to the list of things to do", + "todo_list_update" + ], + [ + "please cross off schedule acupuncture appointment off of the to do list", + "todo_list_update" + ], + [ + "please put my acupuncture appointment on my to list", + "todo_list_update" + ], + [ + "can you add a trip to the post office to my to do list, please", + "todo_list_update" + ], + [ + "please also list wash laundry on my to do list", + "todo_list_update" + ], + [ + "will you please put remember to drop off at the dry cleaner's to my current to do list", + "todo_list_update" + ], + [ + "would you kindly remove five mile run from my list of things to do", + "todo_list_update" + ], + [ + "let's go ahead and scratch laundry off my to do list, please!", + "todo_list_update" + ], + [ + "can you delete lunch with david from my to do list", + "todo_list_update" + ], + [ + "put dishes on to do list", + "todo_list_update" + ], + [ + "on my to do list, add dishes", + "todo_list_update" + ], + [ + "i need to do dishes put it on my to do list", + "todo_list_update" + ], + [ + "add dishes to my list", + "todo_list_update" + ], + [ + "cleaning needs to be on my to do list", + "todo_list_update" + ], + [ + "please add cleaning on my list to do", + "todo_list_update" + ], + [ + "cleaning needs to go on my list of things to do", + "todo_list_update" + ], + [ + "on my to do list, add cleaning", + "todo_list_update" + ], + [ + "i need to do cleaning so add it to my to do list", + "todo_list_update" + ], + [ + "on my to do list, i need cleaning added", + "todo_list_update" + ], + [ + "put cleaning on my to do list", + "todo_list_update" + ], + [ + "please put cleaning on my list of things to do", + "todo_list_update" + ], + [ + "add cleaning to my to do list", + "todo_list_update" + ], + [ + "on my list of things to do, add cleaning", + "todo_list_update" + ], + [ + "can you place laundry on my to do list", + "todo_list_update" + ], + [ + "help remind me that i need to add laundry to my list of housework", + "todo_list_update" + ], + [ + "if you could remind me about doing laundry i would appreciate it", + "todo_list_update" + ], + [ + "please remind me to add laundry to my list of chores", + "todo_list_update" + ], + [ + "add laundry to my list of shit to do", + "todo_list_update" + ], + [ + "add change filters to my to do list", + "todo_list_update" + ], + [ + "add schedule appraiser to my to do list", + "todo_list_update" + ], + [ + "add mop bathroom to my to do list", + "todo_list_update" + ], + [ + "add do laundry to my to do list", + "todo_list_update" + ], + [ + "put buy dog food on my to do list", + "todo_list_update" + ], + [ + "on my to do list, add exercising", + "todo_list_update" + ], + [ + "remove all items from todo list", + "todo_list_update" + ], + [ + "add grocery shopping to my list of things to do", + "todo_list_update" + ], + [ + "clear out my entire todo list", + "todo_list_update" + ], + [ + "remove laundry from my todo list", + "todo_list_update" + ], + [ + "put laundry on my to do list", + "todo_list_update" + ], + [ + "nix folding laundry from my todo list", + "todo_list_update" + ], + [ + "add washing dishes to my to do list", + "todo_list_update" + ], + [ + "cross volunteering off my todo list", + "todo_list_update" + ], + [ + "take everything off my todo list", + "todo_list_update" + ], + [ + "i no longer need to wash dishes; take it of my list", + "todo_list_update" + ], + [ + "delete everything on my to do list", + "todo_list_update" + ], + [ + "mark down cleaning the bathroom on my list of things to do", + "todo_list_update" + ], + [ + "throw mopping onto my to do list", + "todo_list_update" + ], + [ + "can you remind me to mop later by putting it on my to do list today", + "todo_list_update" + ], + [ + "will you make sure that mopping is on my to do list", + "todo_list_update" + ], + [ + "will you add mopping to my to do list please", + "todo_list_update" + ], + [ + "can you put mopping on my to do list", + "todo_list_update" + ], + [ + "place cleaning the backyard on my list of things to do", + "todo_list_update" + ], + [ + "please put the meeting with carla on my to do list", + "todo_list_update" + ], + [ + "tell me my reminders", + "reminder" + ], + [ + "tell me my current reminders list", + "reminder" + ], + [ + "please read my reminders", + "reminder" + ], + [ + "will you repeat my reminder list", + "reminder" + ], + [ + "check my reminders for mop and floor", + "reminder" + ], + [ + "read my reminder list to me", + "reminder" + ], + [ + "is mop the floor already in my reminders", + "reminder" + ], + [ + "read back the reminder list", + "reminder" + ], + [ + "what's on the reminder list", + "reminder" + ], + [ + "read my reminders to me", + "reminder" + ], + [ + "check my reminders for mop the floor", + "reminder" + ], + [ + "what reminders do i have", + "reminder" + ], + [ + "read what i added to the reminder list", + "reminder" + ], + [ + "can you list each item on my reminder list", + "reminder" + ], + [ + "can you tell me what reminders i've set", + "reminder" + ], + [ + "tell me what's on my reminder list", + "reminder" + ], + [ + "do i have any reminders to look up how to properly do a potato in my microwave", + "reminder" + ], + [ + "do i have a reminder for our neighbor's anniversary", + "reminder" + ], + [ + "tell my all my reminders", + "reminder" + ], + [ + "is respond to the professor's email on my list of reminders", + "reminder" + ], + [ + "read me my reminders list", + "reminder" + ], + [ + "go through all the reminders on my list and state what they are", + "reminder" + ], + [ + "is there a reminder for my aa meeting on my list", + "reminder" + ], + [ + "speak back to me what's on my reminder list", + "reminder" + ], + [ + "iterate the items on my reminder list", + "reminder" + ], + [ + "please go through my reminder list and tell me what's on it", + "reminder" + ], + [ + "did i add to my reminder list that i need to take the car in for an oil change", + "reminder" + ], + [ + "what did i want to remember again", + "reminder" + ], + [ + "what did i put on my list of reminders", + "reminder" + ], + [ + "can you tell me the reminders i have set up", + "reminder" + ], + [ + "what were the reminders that i made", + "reminder" + ], + [ + "i wanted to remember what again", + "reminder" + ], + [ + "can you remind me what i was trying to remember", + "reminder" + ], + [ + "i had a list of reminders what were they", + "reminder" + ], + [ + "remind me of what i asked you to remember", + "reminder" + ], + [ + "what reminders did i have", + "reminder" + ], + [ + "what are the thing i told you to help me remember", + "reminder" + ], + [ + "read my reminders please", + "reminder" + ], + [ + "what's on my reminder list today", + "reminder" + ], + [ + "do i have anything in my reminders", + "reminder" + ], + [ + "what did i ask to be reminded about", + "reminder" + ], + [ + "check if getting a light bulb is on my list of reminders", + "reminder" + ], + [ + "is buying a light bulb on my reminders list", + "reminder" + ], + [ + "confirm that buy a light bulb is on my list of reminders", + "reminder" + ], + [ + "please read my list of reminders", + "reminder" + ], + [ + "what is now on my reminder list", + "reminder" + ], + [ + "what things are currently on my reminder list", + "reminder" + ], + [ + "tell me what is showing up on my reminder list", + "reminder" + ], + [ + "what are the items on my reminder list", + "reminder" + ], + [ + "can you read my list back to me", + "reminder" + ], + [ + "can you repeat my list back to me", + "reminder" + ], + [ + "can you describe my list back to me", + "reminder" + ], + [ + "what is on my reminder list", + "reminder" + ], + [ + "is checking the mail on my list of reminder", + "reminder" + ], + [ + "i want to see my reminder list", + "reminder" + ], + [ + "what do i want to remember", + "reminder" + ], + [ + "let me know what is on my reminder list", + "reminder" + ], + [ + "can you please repeat my list back to me", + "reminder" + ], + [ + "tell me what is on my reminder list", + "reminder" + ], + [ + "let me see the reminder list please", + "reminder" + ], + [ + "can you read me my list of reminders", + "reminder" + ], + [ + "what do i have on my list of reminders", + "reminder" + ], + [ + "what did i list in my reminders", + "reminder" + ], + [ + "i wanted to remember some things, what were they", + "reminder" + ], + [ + "can you remind me the things i was trying to remember", + "reminder" + ], + [ + "let me know what's on my list of reminders", + "reminder" + ], + [ + "can you tell me what things i was trying to remember", + "reminder" + ], + [ + "tell me what's on my reminders list please", + "reminder" + ], + [ + "what were those things i was trying to remember", + "reminder" + ], + [ + "do you know what things i wanted to remember", + "reminder" + ], + [ + "what are in my reminders list", + "reminder" + ], + [ + "my list of reminders is what", + "reminder" + ], + [ + "on my list of reminders is what", + "reminder" + ], + [ + "the lists of my reminders is what", + "reminder" + ], + [ + "reminders of my list is what", + "reminder" + ], + [ + "is there a reminder set to clean the gutters", + "reminder" + ], + [ + "what do i have on my reminder list", + "reminder" + ], + [ + "please read all the items on my reminder list", + "reminder" + ], + [ + "can you tell me all the reminders i have set on my reminder list", + "reminder" + ], + [ + "did i request a reminder for my niece's graduation", + "reminder" + ], + [ + "can you read my reminder list, please", + "reminder" + ], + [ + "is the company party on my list of reminders", + "reminder" + ], + [ + "did i set up a reminder to clean the bathroom", + "reminder" + ], + [ + "what did i include on my list of things to remember", + "reminder" + ], + [ + "please look to see if paying bills is on my reminders list currently", + "reminder" + ], + [ + "please tell me everything on my list of reminders", + "reminder" + ], + [ + "tell me if flipping the mattress is on my list of reminders please", + "reminder" + ], + [ + "i need to know the content of my list of reminders", + "reminder" + ], + [ + "tell me everything i included on my list of things to remember for later", + "reminder" + ], + [ + "check to see if picking up glenn from the airport is on my list of reminders", + "reminder" + ], + [ + "go through my reminder list with me please", + "reminder" + ], + [ + "i would like to hear you read my reminder list to me", + "reminder" + ], + [ + "i want to hear what is on my reminders list", + "reminder" + ], + [ + "read my list of reminders to me", + "reminder" + ], + [ + "tell me what i had wanted to remember earlier", + "reminder" + ], + [ + "did i include cleaning the hamster cage on my list of reminders", + "reminder" + ], + [ + "walk me through the items on my reminder list", + "reminder" + ], + [ + "i need to know what it is that i wanted to remember before", + "reminder" + ], + [ + "please give me a rundown of my reminder list", + "reminder" + ], + [ + "i want to hear everything on my reminder list", + "reminder" + ], + [ + "can you slow your speaking down", + "change_speed" + ], + [ + "slow down your talking too fast i don't understand you", + "change_speed" + ], + [ + "you're talking too fast i need you to slow it down", + "change_speed" + ], + [ + "you're speaking too fast, slow down", + "change_speed" + ], + [ + "can you speak slower please", + "change_speed" + ], + [ + "can you please speed up your speech settings", + "change_speed" + ], + [ + "i want you to adjust your speaking to be faster", + "change_speed" + ], + [ + "can you speak faster please", + "change_speed" + ], + [ + "i want you to speak to me faster", + "change_speed" + ], + [ + "decrease the speed of your speech please", + "change_speed" + ], + [ + "please speed up your speaking pattern", + "change_speed" + ], + [ + "i want you to talk more slowly", + "change_speed" + ], + [ + "your voice speed is too slow, please increase it", + "change_speed" + ], + [ + "i want your speech settings to be made slower", + "change_speed" + ], + [ + "you are talking far too fast for me, can you slow it down a bit", + "change_speed" + ], + [ + "please make it so you say your words more slowly", + "change_speed" + ], + [ + "can you talk slower please", + "change_speed" + ], + [ + "can you speed up your speech please", + "change_speed" + ], + [ + "i want you to talk more quickly", + "change_speed" + ], + [ + "you are talking too fast for me, please slow down", + "change_speed" + ], + [ + "please increase the speed of your speech, it is too slow", + "change_speed" + ], + [ + "could you slow down your speech", + "change_speed" + ], + [ + "please increase the speed of your talking", + "change_speed" + ], + [ + "please slow down i can't understand you", + "change_speed" + ], + [ + "i want you to speak more slowly to me", + "change_speed" + ], + [ + "speed up your speech", + "change_speed" + ], + [ + "speak slower", + "change_speed" + ], + [ + "i'd like you to talk faster", + "change_speed" + ], + [ + "speak at a slower rate", + "change_speed" + ], + [ + "talk slower, please", + "change_speed" + ], + [ + "slow your roll", + "change_speed" + ], + [ + "slow your speech", + "change_speed" + ], + [ + "slow down your speech", + "change_speed" + ], + [ + "slow down your talking", + "change_speed" + ], + [ + "speak faster, please", + "change_speed" + ], + [ + "speak more quickly, please", + "change_speed" + ], + [ + "i need you to speak faster", + "change_speed" + ], + [ + "you should talk faster", + "change_speed" + ], + [ + "slow your speech down", + "change_speed" + ], + [ + "present your speech at a slower pace", + "change_speed" + ], + [ + "can you slow down", + "change_speed" + ], + [ + "make your speed a bit slower", + "change_speed" + ], + [ + "can you please speed up your speech", + "change_speed" + ], + [ + "make your speech slower than now", + "change_speed" + ], + [ + "change the speed of your voice to slower", + "change_speed" + ], + [ + "slow down", + "change_speed" + ], + [ + "can you please slow down", + "change_speed" + ], + [ + "find a new voice that is slower than your current voice", + "change_speed" + ], + [ + "can you please talk faster", + "change_speed" + ], + [ + "talker faster please", + "change_speed" + ], + [ + "slow the speech down", + "change_speed" + ], + [ + "hey, speak slowly", + "change_speed" + ], + [ + "reduce your speed of voice", + "change_speed" + ], + [ + "hey ai, don't speak fast", + "change_speed" + ], + [ + "hey, slow down and take your time", + "change_speed" + ], + [ + "hey ai, reduce your speed of speaking", + "change_speed" + ], + [ + "can you slow down your speech", + "change_speed" + ], + [ + "how do i slow down my ai's voice", + "change_speed" + ], + [ + "could you speak a little more slowly", + "change_speed" + ], + [ + "how do i change your options so that you speak more slowly", + "change_speed" + ], + [ + "how do i change the speed of my ai's voice", + "change_speed" + ], + [ + "adjust speech rate to a faster setting", + "change_speed" + ], + [ + "please use a quicker rate of speech", + "change_speed" + ], + [ + "speak faster", + "change_speed" + ], + [ + "speed up your talking please", + "change_speed" + ], + [ + "could you not talk so slowly", + "change_speed" + ], + [ + "can you please talk slower", + "change_speed" + ], + [ + "can you talk a bit slower please", + "change_speed" + ], + [ + "can you please not talk so fast", + "change_speed" + ], + [ + "speak slower please", + "change_speed" + ], + [ + "please don't speak so fast", + "change_speed" + ], + [ + "can you speak with me using faster speech", + "change_speed" + ], + [ + "please say things more quickly", + "change_speed" + ], + [ + "will you speak more rapidly", + "change_speed" + ], + [ + "i would like you to increase the speed of your speech please", + "change_speed" + ], + [ + "i'd like you to speak a bit slower", + "change_speed" + ], + [ + "can you change how fast you're talking to speak more slowly", + "change_speed" + ], + [ + "i can't understand you because of how rapidly you're speaking", + "change_speed" + ], + [ + "can you slow down how fast you talk", + "change_speed" + ], + [ + "please speak slower", + "change_speed" + ], + [ + "whoa whoa please slow down", + "change_speed" + ], + [ + "is there any way you can decrease your speaking rate", + "change_speed" + ], + [ + "why are you talking so sloooooooooowly, please speed it up!", + "change_speed" + ], + [ + "can i get you to talk at a slightly faster rate", + "change_speed" + ], + [ + "can you talk at a normal speed please", + "change_speed" + ], + [ + "please stop talking so fast", + "change_speed" + ], + [ + "hey, stop talking like you're a stretch taped", + "change_speed" + ], + [ + "please slow down how you're speaking", + "change_speed" + ], + [ + "you're talking too quickly for me to understand", + "change_speed" + ], + [ + "is it possible to speed up of your replies", + "change_speed" + ], + [ + "where do i find instructions on how to speed up voice replies", + "change_speed" + ], + [ + "how do i speed up the speech of this ai", + "change_speed" + ], + [ + "sorry, can you speak a little faster", + "change_speed" + ], + [ + "sorry, can you speak a little quicker, please", + "change_speed" + ], + [ + "can you speak a little faster, please", + "change_speed" + ], + [ + "sorry, can you speak a little faster, please", + "change_speed" + ], + [ + "could you speak a little faster, please", + "change_speed" + ], + [ + "i need to change your voice settings", + "change_speed" + ], + [ + "can you slow down the speed in which you speak", + "change_speed" + ], + [ + "you're speaking too fast and i need to change that", + "change_speed" + ], + [ + "how's the air pressure in my tires", + "tire_pressure" + ], + [ + "what's my tires current air pressure", + "tire_pressure" + ], + [ + "what's the amount of air in my tires right now", + "tire_pressure" + ], + [ + "are my tire's air pressure good enough to drive on", + "tire_pressure" + ], + [ + "what's the inflation of my tires", + "tire_pressure" + ], + [ + "what's the current psi for my tires", + "tire_pressure" + ], + [ + "how low is the pressure in my tires", + "tire_pressure" + ], + [ + "what's the current tire pressure of my tires", + "tire_pressure" + ], + [ + "is the air pressure in my tires low", + "tire_pressure" + ], + [ + "what's my current tire pressure", + "tire_pressure" + ], + [ + "is the air pressure on my tires low", + "tire_pressure" + ], + [ + "do i need to fill up my tires", + "tire_pressure" + ], + [ + "are my tires in need of air", + "tire_pressure" + ], + [ + "should i put air in my tires", + "tire_pressure" + ], + [ + "are my tires requiring a fill-up", + "tire_pressure" + ], + [ + "are my tires good on air", + "tire_pressure" + ], + [ + "have my tires got adequate amounts of air in them", + "tire_pressure" + ], + [ + "do i need more air in my tires", + "tire_pressure" + ], + [ + "should i be concerned about the air in my tires", + "tire_pressure" + ], + [ + "how is the air level in my tires", + "tire_pressure" + ], + [ + "how much air is in my tires", + "tire_pressure" + ], + [ + "is there air in my tires", + "tire_pressure" + ], + [ + "air amount in tires", + "tire_pressure" + ], + [ + "how high is the air in my tires", + "tire_pressure" + ], + [ + "how much air remains in my tires", + "tire_pressure" + ], + [ + "what is the tire pressure in my car", + "tire_pressure" + ], + [ + "are my tires full or low", + "tire_pressure" + ], + [ + "what is the current tire pressure level in the car", + "tire_pressure" + ], + [ + "tell me my car's tires' air pressure", + "tire_pressure" + ], + [ + "do i need to fill my tires", + "tire_pressure" + ], + [ + "tell me my tires' air pressure", + "tire_pressure" + ], + [ + "what's my tires' air pressure", + "tire_pressure" + ], + [ + "what's my car's tire pressure", + "tire_pressure" + ], + [ + "what is the air pressure in my tires", + "tire_pressure" + ], + [ + "can you tell me the tire pressure in my car", + "tire_pressure" + ], + [ + "what's my air pressure right now", + "tire_pressure" + ], + [ + "what's the air level in my tires", + "tire_pressure" + ], + [ + "tell me my car's tire pressure level", + "tire_pressure" + ], + [ + "how many psi's are my tires at the moment", + "tire_pressure" + ], + [ + "the car feels wobbly so check my tire pressure", + "tire_pressure" + ], + [ + "what is my current tire pressure for each tire", + "tire_pressure" + ], + [ + "tell me ths pressure of my tires", + "tire_pressure" + ], + [ + "please measure my tire pressure", + "tire_pressure" + ], + [ + "the cars riding funny, does the tire pressure feel low to you", + "tire_pressure" + ], + [ + "can you check the tire pressure", + "tire_pressure" + ], + [ + "do the tires look a little low on pressure", + "tire_pressure" + ], + [ + "what is the pressure like on my tires", + "tire_pressure" + ], + [ + "measure tire pressure", + "tire_pressure" + ], + [ + "check my car's tire pressure", + "tire_pressure" + ], + [ + "gauge the tire pressure", + "tire_pressure" + ], + [ + "how much pressure is in my car's tire", + "tire_pressure" + ], + [ + "what is my car's tire pressure", + "tire_pressure" + ], + [ + "are my tires fully inflated", + "tire_pressure" + ], + [ + "do i need to inflate my tires", + "tire_pressure" + ], + [ + "are my tires aired properly", + "tire_pressure" + ], + [ + "are my tires ok on pressure", + "tire_pressure" + ], + [ + "is the pressure in my tires optimal", + "tire_pressure" + ], + [ + "are my tires properly inflated with air", + "tire_pressure" + ], + [ + "are my tires good on pressure", + "tire_pressure" + ], + [ + "do my tires have enough air", + "tire_pressure" + ], + [ + "please check and report on my tire pressure", + "tire_pressure" + ], + [ + "how's my tire pressure", + "tire_pressure" + ], + [ + "i want an evaluation of my car's tire pressure", + "tire_pressure" + ], + [ + "can you give me a reading of my car's tire pressure please", + "tire_pressure" + ], + [ + "i would like to know my car's tire pressure please", + "tire_pressure" + ], + [ + "how are my tires", + "tire_pressure" + ], + [ + "are my tires low", + "tire_pressure" + ], + [ + "should i air up the tires", + "tire_pressure" + ], + [ + "do the tires need air", + "tire_pressure" + ], + [ + "how is the tire pressure", + "tire_pressure" + ], + [ + "how much pressure are currently in my tires", + "tire_pressure" + ], + [ + "how much pressure is in my tires", + "tire_pressure" + ], + [ + "whats the pressure like in my tires", + "tire_pressure" + ], + [ + "how are the tires on air pressure", + "tire_pressure" + ], + [ + "please check the pressure in my tires", + "tire_pressure" + ], + [ + "hows the air in my tires", + "tire_pressure" + ], + [ + "i am needing to know how low the air in my tires are", + "tire_pressure" + ], + [ + "tell me how low the air in my tires are", + "tire_pressure" + ], + [ + "i want to know how low the air in my tires are", + "tire_pressure" + ], + [ + "let me know how low the air in my tires are", + "tire_pressure" + ], + [ + "would you let me know how low the air in my tires are", + "tire_pressure" + ], + [ + "what does my tire pressure look like", + "tire_pressure" + ], + [ + "are my tires under-inflated", + "tire_pressure" + ], + [ + "is my tire pressure in the correct range", + "tire_pressure" + ], + [ + "do my tires need air", + "tire_pressure" + ], + [ + "should i pump my tires", + "tire_pressure" + ], + [ + "are my tires low on air", + "tire_pressure" + ], + [ + "do my tires seem too low on air", + "tire_pressure" + ], + [ + "would it be smart to put air in my tires", + "tire_pressure" + ], + [ + "what's the tire pressure of my car", + "tire_pressure" + ], + [ + "is my tire pressure okay", + "tire_pressure" + ], + [ + "can you tell me what's the car's tire pressure", + "tire_pressure" + ], + [ + "tire pressure please", + "tire_pressure" + ], + [ + "can you check my tire pressure", + "tire_pressure" + ], + [ + "can you tell me what my tire pressure is", + "tire_pressure" + ], + [ + "can you check the air in my tires", + "tire_pressure" + ], + [ + "check how much air is in my tires", + "tire_pressure" + ], + [ + "how much air do i have in my tires", + "tire_pressure" + ], + [ + "tell me what my tire pressure is", + "tire_pressure" + ], + [ + "how full are my tires", + "tire_pressure" + ], + [ + "no, that's incorrect", + "no" + ], + [ + "that's not true", + "no" + ], + [ + "that is not true, it's false", + "no" + ], + [ + "no way", + "no" + ], + [ + "not really", + "no" + ], + [ + "naw", + "no" + ], + [ + "nay", + "no" + ], + [ + "i must say no", + "no" + ], + [ + "i think not", + "no" + ], + [ + "that is actually false", + "no" + ], + [ + "i gotta say no", + "no" + ], + [ + "no thanks", + "no" + ], + [ + "no is the answer", + "no" + ], + [ + "i don't think so", + "no" + ], + [ + "it's a no", + "no" + ], + [ + "i think it is false", + "no" + ], + [ + "not true", + "no" + ], + [ + "that is not true", + "no" + ], + [ + "not at all", + "no" + ], + [ + "that turns out to be false", + "no" + ], + [ + "please, no", + "no" + ], + [ + "not that", + "no" + ], + [ + "definitely not", + "no" + ], + [ + "i would have to say the answer to that is no", + "no" + ], + [ + "i say no to that question", + "no" + ], + [ + "no, that is my response", + "no" + ], + [ + "i don't believe that is possible, it is false", + "no" + ], + [ + "i would say that the statement is definitely false", + "no" + ], + [ + "i am afraid that that is not the case", + "no" + ], + [ + "no, that information is wrong", + "no" + ], + [ + "that is a completely false statement", + "no" + ], + [ + "that would be a no", + "no" + ], + [ + "i do not think that is true, so i would say it is a false statement", + "no" + ], + [ + "incorrect, it is certainly a false statement", + "no" + ], + [ + "i do not believe that that is correct", + "no" + ], + [ + "the answer is definitely no", + "no" + ], + [ + "sorry, that is not true", + "no" + ], + [ + "that's a negative", + "no" + ], + [ + "no!", + "no" + ], + [ + "that's not right", + "no" + ], + [ + "no, don't do that", + "no" + ], + [ + "i don't like that, no", + "no" + ], + [ + "no way!", + "no" + ], + [ + "oh hell no, that'd be terrible!", + "no" + ], + [ + "that's inaccurate", + "no" + ], + [ + "that's not what i want!", + "no" + ], + [ + "that's completely false", + "no" + ], + [ + "that's incorrect!", + "no" + ], + [ + "that's totally wrong!", + "no" + ], + [ + "that's a hard no from me", + "no" + ], + [ + "no don't do that!", + "no" + ], + [ + "no that is not right", + "no" + ], + [ + "false for sure", + "no" + ], + [ + "that's definitely false", + "no" + ], + [ + "nope, that's false", + "no" + ], + [ + "no, that is not right", + "no" + ], + [ + "no, that is inaccurate", + "no" + ], + [ + "no, that can't be right", + "no" + ], + [ + "that is untrue", + "no" + ], + [ + "i disagree that is false", + "no" + ], + [ + "what you just said is false", + "no" + ], + [ + "that is erroneous", + "no" + ], + [ + "no that's wrong", + "no" + ], + [ + "that isn't the right answer", + "no" + ], + [ + "the information is wrong", + "no" + ], + [ + "that is not correct", + "no" + ], + [ + "that is not right", + "no" + ], + [ + "that is wrong", + "no" + ], + [ + "i'll pass", + "no" + ], + [ + "not that one", + "no" + ], + [ + "that's not right, so no", + "no" + ], + [ + "the answer is false", + "no" + ], + [ + "no, that is not right at all", + "no" + ], + [ + "that is overwhelmingly false", + "no" + ], + [ + "that's not right it's false", + "no" + ], + [ + "i say negative", + "no" + ], + [ + "negative for sure", + "no" + ], + [ + "nope", + "no" + ], + [ + "no thank you", + "no" + ], + [ + "that is not the case", + "no" + ], + [ + "no that isn't the case", + "no" + ], + [ + "no that isn't it", + "no" + ], + [ + "no that isn't correct", + "no" + ], + [ + "that would be \"no", + "no" + ], + [ + "you are wrong", + "no" + ], + [ + "no that is wrong", + "no" + ], + [ + "that is false", + "no" + ], + [ + "negative", + "no" + ], + [ + "what you just said is wrong", + "no" + ], + [ + "that\u2019s actually wrong", + "no" + ], + [ + "that\u2019s not correct", + "no" + ], + [ + "that\u2019s incorrect", + "no" + ], + [ + "are you sure i don\u2019t think that\u2019s correct", + "no" + ], + [ + "that'd be a no", + "no" + ], + [ + "nada", + "no" + ], + [ + "the answer is no", + "no" + ], + [ + "i think that's false", + "no" + ], + [ + "i believe that to be false", + "no" + ], + [ + "it seems not", + "no" + ], + [ + "that would be false", + "no" + ], + [ + "is the apr on my credit card good", + "apr" + ], + [ + "how good is the apr on my credit card", + "apr" + ], + [ + "do i have a good apr on my credit card", + "apr" + ], + [ + "does my credit card apr fall into a good range", + "apr" + ], + [ + "tell me how the apr on my hy-vee card is", + "apr" + ], + [ + "what's my apr on my discovery card", + "apr" + ], + [ + "what's an example of a good apr and what do i have", + "apr" + ], + [ + "how much is my apr on my bank of america card", + "apr" + ], + [ + "is my visa card's apr decent", + "apr" + ], + [ + "how good is the apr on my mastercard compared to others", + "apr" + ], + [ + "is the apr rate on my amex pretty good", + "apr" + ], + [ + "can you inform me what my apr is on my visa", + "apr" + ], + [ + "how high is the apr on my mastercard", + "apr" + ], + [ + "how much is my amex's apr", + "apr" + ], + [ + "what's the current apr for my mastercard", + "apr" + ], + [ + "how much do i pay in apr on my amex card", + "apr" + ], + [ + "what is the apr on my master card", + "apr" + ], + [ + "what is the apr on my visa card", + "apr" + ], + [ + "what is the apr on my discover card", + "apr" + ], + [ + "what is the apr on my chase freedom card", + "apr" + ], + [ + "what is the apr on my american express card", + "apr" + ], + [ + "what is the credit card apr exactly", + "apr" + ], + [ + "what is the credit card apr at the moment", + "apr" + ], + [ + "what is the credit card apr if you could fill me in", + "apr" + ], + [ + "what is the credit card apr please", + "apr" + ], + [ + "what is the credit card apr if you could tell me", + "apr" + ], + [ + "could you tell me what is the apr for the credit card", + "apr" + ], + [ + "could you please state the apr for the credit card", + "apr" + ], + [ + "what is the credit card's apr", + "apr" + ], + [ + "what is the apr for the credit card", + "apr" + ], + [ + "could you please tell me the apr for the credit card", + "apr" + ], + [ + "what is the apr rate on my bank of america card", + "apr" + ], + [ + "i need to know on my citibank card, what is the apr", + "apr" + ], + [ + "i need to know the apr on my credit union visa", + "apr" + ], + [ + "on my bank of america visa, what is the apr", + "apr" + ], + [ + "what is the apr on my aaa visa card", + "apr" + ], + [ + "review of my card apr", + "apr" + ], + [ + "how good is card apr", + "apr" + ], + [ + "can you give me an appraisal of my card's apr", + "apr" + ], + [ + "tell me the apr on my mastercard", + "apr" + ], + [ + "give me the apr for my mastercard", + "apr" + ], + [ + "fill me in on the apr for my american express card", + "apr" + ], + [ + "would you say that my card's apr is", + "apr" + ], + [ + "give me information about my card's apr", + "apr" + ], + [ + "what is the apr on my barclay's card", + "apr" + ], + [ + "i need to know the apr for my visa card", + "apr" + ], + [ + "can you look into whether my card has good apr or not", + "apr" + ], + [ + "tell me how good the apr is on my card please", + "apr" + ], + [ + "i must know my visa card's apr", + "apr" + ], + [ + "i need the apr on my visa card", + "apr" + ], + [ + "get me the apr on my visa card", + "apr" + ], + [ + "the apr on my visa card is what", + "apr" + ], + [ + "can you tell me the apr on my visa card", + "apr" + ], + [ + "my visa card what's the apr on that", + "apr" + ], + [ + "the apr on my disney visa, what is that exactly", + "apr" + ], + [ + "i'd like to know the apr on my visa card", + "apr" + ], + [ + "hey siri, tell me the apr on my disney visa", + "apr" + ], + [ + "check the apr on my disney visa, please", + "apr" + ], + [ + "how much is the apr these days on my nordstrom credit card", + "apr" + ], + [ + "on my wells fargo mastercard, what is the current apr", + "apr" + ], + [ + "tell me the current apr on my visa card from bbt", + "apr" + ], + [ + "what is the apr on my chase visa", + "apr" + ], + [ + "what will the apr on my transferred balance be after the first year on my bank of america credit card", + "apr" + ], + [ + "what's my apr on the credit card i used for a purchase a week ago", + "apr" + ], + [ + "what's my apr on the card i recently used to make a purchase", + "apr" + ], + [ + "what's my apr on my primary credit card", + "apr" + ], + [ + "what's my apr on this card", + "apr" + ], + [ + "what's the apr like for my credit card", + "apr" + ], + [ + "this credit card's apr is what", + "apr" + ], + [ + "what apr do i have with my credit card", + "apr" + ], + [ + "what apr does this credit card have", + "apr" + ], + [ + "what is the apr to my credit card", + "apr" + ], + [ + "i want you to tell me my credit card's apr", + "apr" + ], + [ + "tell me what my credit card's apr is", + "apr" + ], + [ + "would you please inform me about my credit card's apr", + "apr" + ], + [ + "do you know my credit card's apr", + "apr" + ], + [ + "it would be great if you could tell me my credit card's apr", + "apr" + ], + [ + "what is my credit card's annual percentage rate", + "apr" + ], + [ + "tell me my credit card's annual percentage rate", + "apr" + ], + [ + "my credit card's apr, please", + "apr" + ], + [ + "can you let me know my credit card's apr", + "apr" + ], + [ + "what is my apr for my credit card", + "apr" + ], + [ + "what is my apr", + "apr" + ], + [ + "i want to know my credit card apr", + "apr" + ], + [ + "is my apr for my credit card available", + "apr" + ], + [ + "tell me my credit card apr", + "apr" + ], + [ + "what's the apr on my visa card, please", + "apr" + ], + [ + "what's the apr on my amex card", + "apr" + ], + [ + "what's the apr on my amex card, please", + "apr" + ], + [ + "what is the apr on my amex card, please", + "apr" + ], + [ + "what is the apr on my amex card", + "apr" + ], + [ + "give me my credit card's apr", + "apr" + ], + [ + "what is the apr for my credit card", + "apr" + ], + [ + "please say my credit card's apr", + "apr" + ], + [ + "what is my credit card's apr", + "apr" + ], + [ + "please say the apr for my credit card", + "apr" + ], + [ + "credit card annual rate", + "apr" + ], + [ + "what's the annual rate on my discover card", + "apr" + ], + [ + "tell me the apr of my credit card", + "apr" + ], + [ + "what's the apr of my discover card", + "apr" + ], + [ + "what's the nutritional info for spaghetti", + "nutrition_info" + ], + [ + "what's the nutritional info for pizza", + "nutrition_info" + ], + [ + "how healthy are potato skins", + "nutrition_info" + ], + [ + "how healthy is spaghetti", + "nutrition_info" + ], + [ + "share the nutrition info for brownies with me", + "nutrition_info" + ], + [ + "share the nutrition info for french fries with me", + "nutrition_info" + ], + [ + "what's the nutritional info for potato skins", + "nutrition_info" + ], + [ + "what's the nutritional info for lasagna", + "nutrition_info" + ], + [ + "how healthy are french fries", + "nutrition_info" + ], + [ + "share the nutrition info for spaghetti with me", + "nutrition_info" + ], + [ + "share the nutrition info for cake with me", + "nutrition_info" + ], + [ + "what's the nutritional info for french fries", + "nutrition_info" + ], + [ + "how healthy is tomato soup", + "nutrition_info" + ], + [ + "share the nutrition info for pizza with me", + "nutrition_info" + ], + [ + "what do you know to be the nutritional info for macaroni and cheese to be", + "nutrition_info" + ], + [ + "the nutritional info for macaroni and cheese is what", + "nutrition_info" + ], + [ + "can you read to me the nutritional info for macaroni and cheese", + "nutrition_info" + ], + [ + "do you know the nutritional info for macaroni and cheese", + "nutrition_info" + ], + [ + "can you remember the nutritional info for macaroni and cheese", + "nutrition_info" + ], + [ + "is it healthy to eat pizza", + "nutrition_info" + ], + [ + "is pizza healthy", + "nutrition_info" + ], + [ + "how healthy is pizza", + "nutrition_info" + ], + [ + "could pizza be healthy", + "nutrition_info" + ], + [ + "is pizza considered healthy", + "nutrition_info" + ], + [ + "i'd like to know the nutritional content of eggs, please", + "nutrition_info" + ], + [ + "what's the nutrition content of chicken nuggets", + "nutrition_info" + ], + [ + "give me the nutrition facts for chicken breast", + "nutrition_info" + ], + [ + "what's the nutritional information for steak", + "nutrition_info" + ], + [ + "can you tell me the nutritional content of chicken nuggets", + "nutrition_info" + ], + [ + "what's the nutritional information of iceberg lettuce", + "nutrition_info" + ], + [ + "what kind of nutritional content do carrots have", + "nutrition_info" + ], + [ + "nutritional information for celery", + "nutrition_info" + ], + [ + "what are the nutritional facts of waffles", + "nutrition_info" + ], + [ + "can you tell me the nutrition info for pork sausage", + "nutrition_info" + ], + [ + "what's the nutritional info for an apple", + "nutrition_info" + ], + [ + "what's the nutritional info for chicken breast", + "nutrition_info" + ], + [ + "what's the nutritional info for a banana", + "nutrition_info" + ], + [ + "what's the nutritional info for a cheeseburger", + "nutrition_info" + ], + [ + "what's the nutritional info for a loaf of bread", + "nutrition_info" + ], + [ + "mashed potato's nutrition", + "nutrition_info" + ], + [ + "nutrition information of mashed potatoes", + "nutrition_info" + ], + [ + "what are the nutritional data for mashed potatoes", + "nutrition_info" + ], + [ + "are mashed potatoes good nutrition", + "nutrition_info" + ], + [ + "give me the nutritional information for mashed potatoes", + "nutrition_info" + ], + [ + "how healthy are apples", + "nutrition_info" + ], + [ + "i want to know if pizza is healthy", + "nutrition_info" + ], + [ + "can you tell me how healthy apples are", + "nutrition_info" + ], + [ + "are pasta dishes healthy", + "nutrition_info" + ], + [ + "do you know the nutrition facts for grapes", + "nutrition_info" + ], + [ + "i must know the nutritional info for grapes", + "nutrition_info" + ], + [ + "grapes have what kind of nutritional facts", + "nutrition_info" + ], + [ + "tell me the nutrition for grapes", + "nutrition_info" + ], + [ + "can you show me the nutrition facts for grapes", + "nutrition_info" + ], + [ + "i want to know the nutrition info for chicken nuggets", + "nutrition_info" + ], + [ + "tell me the nutritional information for chicken nuggets", + "nutrition_info" + ], + [ + "nutrition information for chicken nuggets, please", + "nutrition_info" + ], + [ + "can you tell me the nutritional information for chicken nuggets", + "nutrition_info" + ], + [ + "i would like you to share with me the nutrition info for chicken nuggets", + "nutrition_info" + ], + [ + "i want to know how nutritious an avocado typically is", + "nutrition_info" + ], + [ + "can you give me nutritional info on oranges", + "nutrition_info" + ], + [ + "can you tell me how many calories are in an apple", + "nutrition_info" + ], + [ + "i would like to know how much fat is in tbsp of olive oil", + "nutrition_info" + ], + [ + "can you give the nutritional information for the pasta", + "nutrition_info" + ], + [ + "let me see the nutrition content of the chicken tacos", + "nutrition_info" + ], + [ + "i need to see the chicken salad's nutritional info", + "nutrition_info" + ], + [ + "i need to know all about the nutrition of the beef taco", + "nutrition_info" + ], + [ + "i want to see the nutritional content of the hamburger", + "nutrition_info" + ], + [ + "what sort of nutrients does a steak have", + "nutrition_info" + ], + [ + "what's the facts about nutrients in rice milk", + "nutrition_info" + ], + [ + "what type of nutrition does spaghetti have", + "nutrition_info" + ], + [ + "how many kinds of nutrients does a glass of rice milk have", + "nutrition_info" + ], + [ + "can you give me information about the nutrition facts for celery", + "nutrition_info" + ], + [ + "what's the nutrient make up of a plate of spaghetti", + "nutrition_info" + ], + [ + "what's the nutrient info for a donut", + "nutrition_info" + ], + [ + "what's the nutritional info for a ganola bar", + "nutrition_info" + ], + [ + "can you tell me about the nutrients in jello", + "nutrition_info" + ], + [ + "how many nutrients are there in a bowl of cereal", + "nutrition_info" + ], + [ + "i need to know how healthy meatloaf is", + "nutrition_info" + ], + [ + "what are the nutrition facts of grilled chicken", + "nutrition_info" + ], + [ + "what are the nutrition facts for macaroni and cheese", + "nutrition_info" + ], + [ + "please fill me in on the nutrition facts for shrimp scampi", + "nutrition_info" + ], + [ + "is spaghetti healthy", + "nutrition_info" + ], + [ + "tell me how healthy mac and cheese is", + "nutrition_info" + ], + [ + "please give me the nutrition facts for chicken parmesan", + "nutrition_info" + ], + [ + "how healthy is grilled chicken", + "nutrition_info" + ], + [ + "i want to know the nutrition facts for pizza", + "nutrition_info" + ], + [ + "do you have nutrition facts for cheerios", + "nutrition_info" + ], + [ + "where are the nutrition facts for cheerios", + "nutrition_info" + ], + [ + "how nutritious are cheerios", + "nutrition_info" + ], + [ + "where on the cheerios box are the nutrition facts", + "nutrition_info" + ], + [ + "does the box have nutrition facts for cheerios on it", + "nutrition_info" + ], + [ + "what are the nutrition facts for a mcdouble at mcdonalds", + "nutrition_info" + ], + [ + "how healthy are lunchables", + "nutrition_info" + ], + [ + "what are the nutrition facts for a medium popcorn at the movies", + "nutrition_info" + ], + [ + "what's the nutritional info for a subway chicken sandwhich", + "nutrition_info" + ], + [ + "what are the nutrition facts for a rodeo cheese burger at burger king", + "nutrition_info" + ], + [ + "how healthy is pho", + "nutrition_info" + ], + [ + "what's the nutritional value for a pizza lunchable", + "nutrition_info" + ], + [ + "how healthy is stax chips", + "nutrition_info" + ], + [ + "what's the nutritional info for a cup of noodle soup", + "nutrition_info" + ], + [ + "does my calendar have anything for january 1st", + "calendar" + ], + [ + "what is there on january 1st on my calendar", + "calendar" + ], + [ + "are there any events on my calendar for january 1st", + "calendar" + ], + [ + "what do i have to do on january 1st", + "calendar" + ], + [ + "do i have anything scheduled on january 1st", + "calendar" + ], + [ + "what items do i have on my calendar for easter", + "calendar" + ], + [ + "what do i have on my calendar today, the 3rd", + "calendar" + ], + [ + "what've i got set for friday, the 13th, of next year", + "calendar" + ], + [ + "is my daughter's birthday on my calendar", + "calendar" + ], + [ + "did i had my wife and mine anniversary to my calendar", + "calendar" + ], + [ + "did i put an item on the calendar to get the dog neutered", + "calendar" + ], + [ + "can you tell me what's on my calendar for march 05, 2019", + "calendar" + ], + [ + "does the calendar already have easter noted on it", + "calendar" + ], + [ + "do i have a note on the calendar for black friday", + "calendar" + ], + [ + "what's on my calendar for march 01", + "calendar" + ], + [ + "anything on the schedule for october 14th", + "calendar" + ], + [ + "what does my schedule look like for april 1", + "calendar" + ], + [ + "do i have anything to do march 2nd", + "calendar" + ], + [ + "what do i have on my calendar for february 8", + "calendar" + ], + [ + "how is my calendar looking for may 6th", + "calendar" + ], + [ + "what do i have planned on my calendar for next sunday", + "calendar" + ], + [ + "do i have anything on my calendar next sunday", + "calendar" + ], + [ + "show me my calendar for next sunday", + "calendar" + ], + [ + "is my calendar free next sunday", + "calendar" + ], + [ + "what is on my calendar next sunday", + "calendar" + ], + [ + "what do i have scheduled on march 2nd on my calendar", + "calendar" + ], + [ + "are there any events on my calendar for march 2nd", + "calendar" + ], + [ + "have i scheduled anything on march 2nd on my calendar", + "calendar" + ], + [ + "do i have anything on my calendar for march 2nd", + "calendar" + ], + [ + "what do i have going on march 2nd on my calendar", + "calendar" + ], + [ + "what's happening on may 3rd", + "calendar" + ], + [ + "what's in the books for april 30th", + "calendar" + ], + [ + "what do i have going on may 4th", + "calendar" + ], + [ + "what is on my calander for valentines day", + "calendar" + ], + [ + "on the 26th what is on the table for my calendar", + "calendar" + ], + [ + "when am i next having a meeting in december", + "calendar" + ], + [ + "what is currently on my calendar for friday the 1st", + "calendar" + ], + [ + "tell what is showing on my calendar for the 17th of march", + "calendar" + ], + [ + "i wanna know what is currently on my calendar for friday the 1st", + "calendar" + ], + [ + "let me know what is showing on my calendar for the 17th of march", + "calendar" + ], + [ + "please inform me what is showing on my calendar for the 17th of march", + "calendar" + ], + [ + "i must know what is currently on my calendar for friday the 1st", + "calendar" + ], + [ + "i need to know what is currently on my calendar for friday the 1st", + "calendar" + ], + [ + "what is showing on my calendar for the 17th of march", + "calendar" + ], + [ + "i gotta know what is currently on my calendar for friday the 1st", + "calendar" + ], + [ + "tell me what is showing on my calendar for the 17th of march", + "calendar" + ], + [ + "what do i have scheduled on 3/15", + "calendar" + ], + [ + "what do i have planned on 3/15", + "calendar" + ], + [ + "what do i have to do on march 2 that's on my calendar", + "calendar" + ], + [ + "tell me what is on my calendar for march 2", + "calendar" + ], + [ + "what do i have on my calendar for march 2", + "calendar" + ], + [ + "let me know my march 2 calendar", + "calendar" + ], + [ + "what is on march 2 calendar", + "calendar" + ], + [ + "what time is my haircut on wednesday", + "calendar" + ], + [ + "do i have any appointments on tuesday", + "calendar" + ], + [ + "can you see whether i have an event called amy's surprise party on my calendar", + "calendar" + ], + [ + "can you tell me what my may 1st will be like according to my calendar", + "calendar" + ], + [ + "tell me everything on my calendar for may 1", + "calendar" + ], + [ + "remind me of the date of the event called 'anniversary dinner", + "calendar" + ], + [ + "what is on my schedule for the day of march 5th", + "calendar" + ], + [ + "what do i have scheduled for february 28th", + "calendar" + ], + [ + "what events are on my calendar for april 1st", + "calendar" + ], + [ + "is there an event titled anniversary dinner on my calendar", + "calendar" + ], + [ + "tell me if there is an event called annual physical in my calendar", + "calendar" + ], + [ + "can you give me an overview of what march 23 will look like for me", + "calendar" + ], + [ + "tell me what my calendar looks like for march 12th", + "calendar" + ], + [ + "check my calendar to see if an event called final exams exists", + "calendar" + ], + [ + "what do i have on my calendar for march 11", + "calendar" + ], + [ + "does my calendar include an event called shana's baby shower", + "calendar" + ], + [ + "pull up my calendar and tell me what i have scheduled for march 30", + "calendar" + ], + [ + "do i have anything on my schedule for april 15", + "calendar" + ], + [ + "tell me any events scheduled on my calendar for april 15", + "calendar" + ], + [ + "tell me what my calendar looks like for april 13", + "calendar" + ], + [ + "what have i got planned for the date of april 23", + "calendar" + ], + [ + "tell me what is on my calendar for april 1", + "calendar" + ], + [ + "the 21st, what is on my calendar", + "calendar" + ], + [ + "what's on the calendar for march 4th", + "calendar" + ], + [ + "what's on my calendar for tuesday", + "calendar" + ], + [ + "what's on my calendar for the 18th of march", + "calendar" + ], + [ + "i have what to do on wednesday", + "calendar" + ], + [ + "what do i have scheduled for march 2", + "calendar" + ], + [ + "do i have anything on my calendar for may 3", + "calendar" + ], + [ + "i want my schedule for march 2", + "calendar" + ], + [ + "tell me what is on my calendar for may 3", + "calendar" + ], + [ + "what's on my schedule for may 3", + "calendar" + ], + [ + "read me my schedule for march 2", + "calendar" + ], + [ + "do i have anything on my schedule for may 3", + "calendar" + ], + [ + "read my appointments for march 2", + "calendar" + ], + [ + "what is on my schedule for tomorrow", + "calendar" + ], + [ + "search my calendar for birthday party", + "calendar" + ], + [ + "do i have 30th birthday party on my calendar", + "calendar" + ], + [ + "search my calendar for birthday", + "calendar" + ], + [ + "check my calendar for 30th birthday party", + "calendar" + ], + [ + "check my calendar for saturday", + "calendar" + ], + [ + "tell me what's on the calendar for saturday", + "calendar" + ], + [ + "read my calendar events", + "calendar" + ], + [ + "what's on my agenda for tomorrow", + "calendar" + ], + [ + "what am i supposed to be doing today", + "calendar" + ], + [ + "what do i have planned for tomorrow", + "calendar" + ], + [ + "what do i have on my calendar for monday the 1st of march", + "calendar" + ], + [ + "book an uber for 6 people to go to the movies", + "uber" + ], + [ + "i need an uber for 6 people to the movies", + "uber" + ], + [ + "book a 6 person uber to the movies", + "uber" + ], + [ + "i need an uber to the movies for me and 5 other people", + "uber" + ], + [ + "i'm going to the movies book an uber for 6 people", + "uber" + ], + [ + "i need an uber to take me to the mall", + "uber" + ], + [ + "are there any ubers available that fit 5 people we are going to wendys", + "uber" + ], + [ + "call an uber that fits 5 people that are on their way to wendys", + "uber" + ], + [ + "book an uber suitable for seating 5 individuals and headed for the mall", + "uber" + ], + [ + "book me an uber to olive garden", + "uber" + ], + [ + "please book an uber for chima's", + "uber" + ], + [ + "call an uber to mark's house", + "uber" + ], + [ + "call an uber to mcdonalds", + "uber" + ], + [ + "i need an uber for 5 people to go to wendys", + "uber" + ], + [ + "please order an uber for me to go to the zoo", + "uber" + ], + [ + "can you please book an uber to the zoo", + "uber" + ], + [ + "order a large uber for 5 people to the zoo", + "uber" + ], + [ + "schedule an uber to the bean", + "uber" + ], + [ + "i am in need of an uber to the hospital", + "uber" + ], + [ + "i need an uber to times square asap", + "uber" + ], + [ + "i need an uber that will accommodate eight people to go to the closest amc theater", + "uber" + ], + [ + "can i get an uber for five people to go to the national gallery of art", + "uber" + ], + [ + "i need to get an uber for three people to go to the zoo", + "uber" + ], + [ + "i want to get an uber for one person to go to the library", + "uber" + ], + [ + "i need an uber that fits ten people to go to chipotle", + "uber" + ], + [ + "get an uber to take me to my brother's house in mineola", + "uber" + ], + [ + "i need an uber for 3 passengers to go to madison square garden", + "uber" + ], + [ + "get an uber to pick me up at work and take me home", + "uber" + ], + [ + "we need an uber pool for 2 passengers going to the greenboro airport", + "uber" + ], + [ + "find an uber xl to take me to the kroger near me", + "uber" + ], + [ + "find an uber for two passengers we are going to the airport in toledo", + "uber" + ], + [ + "i need an uber with a car seat for 2 adults and one child to take us to wilmington, de", + "uber" + ], + [ + "get an uber for 4 passengers to get us to the phl airport", + "uber" + ], + [ + "i need an uber pool from home in the morning at seven to the capitol building", + "uber" + ], + [ + "i need an uber to class tonight on the mainline campus", + "uber" + ], + [ + "can i get an uber for 2 home", + "uber" + ], + [ + "can i get an uber to central park for 5", + "uber" + ], + [ + "can i get a car to the baseball field for 12", + "uber" + ], + [ + "can i get an uber for 4 to the mall", + "uber" + ], + [ + "can i get an uber for myself to the grocery store", + "uber" + ], + [ + "i need to go to phoenix sky harbor airport using uber", + "uber" + ], + [ + "can you send me an uber to go to a restaurant in downtown phoenix", + "uber" + ], + [ + "is there any uber available to take me to the airport", + "uber" + ], + [ + "i want to reserve an uber to go to the airport", + "uber" + ], + [ + "i need an uber please", + "uber" + ], + [ + "help me get an uber to soldier field", + "uber" + ], + [ + "help me get an uber to ann arbor", + "uber" + ], + [ + "i need an uber to the sears tower", + "uber" + ], + [ + "can you get me an uber to the science museum", + "uber" + ], + [ + "assist me with finding an uber to big ben", + "uber" + ], + [ + "book an uber with the destination set to david's house, please", + "uber" + ], + [ + "i need an uber reserved to take me to the restaurant", + "uber" + ], + [ + "i would like an uber going to the train station, please", + "uber" + ], + [ + "please book me an uber ride to the stadium", + "uber" + ], + [ + "can you please reserve my uber to go to devon's seafood restaurant", + "uber" + ], + [ + "can you please order me an uber to get to jfk international", + "uber" + ], + [ + "please book me an uber and enter destination penn station, new york", + "uber" + ], + [ + "make an uber reservation to the ymca, center city, philadelphia, please", + "uber" + ], + [ + "i need an uber to get to dulles airport", + "uber" + ], + [ + "i would like an uber going to atlantic city, new jersey", + "uber" + ], + [ + "i need an uber", + "uber" + ], + [ + "please get me an uber to get to the movies", + "uber" + ], + [ + "i would like to get an uber to the movies", + "uber" + ], + [ + "i would like an uber please", + "uber" + ], + [ + "am i able to get an uber to the movies", + "uber" + ], + [ + "can you get me an uber to the movies", + "uber" + ], + [ + "i want an uber", + "uber" + ], + [ + "i need an uber to the movies", + "uber" + ], + [ + "get me an uber", + "uber" + ], + [ + "i would like to request an uber please", + "uber" + ], + [ + "uber, i have 3 people who are going to union station", + "uber" + ], + [ + "i need to get 3 riders to union station", + "uber" + ], + [ + "i want to book uber for 3 people to union station", + "uber" + ], + [ + "3 of us need to get to union station via uber", + "uber" + ], + [ + "can i get an uber to union station for 3 riders", + "uber" + ], + [ + "i need an uber to the doctor", + "uber" + ], + [ + "i need to catch an uber to cal expo", + "uber" + ], + [ + "schedule an uber to the mall", + "uber" + ], + [ + "get me an uber to the napa winery", + "uber" + ], + [ + "schedule me an uber to my job", + "uber" + ], + [ + "schedule me an uber to the mall", + "uber" + ], + [ + "get me an uber to the airport", + "uber" + ], + [ + "get me an uber to chilis", + "uber" + ], + [ + "book an uber to school", + "uber" + ], + [ + "get an uber to the airport", + "uber" + ], + [ + "ai i need to go to charlies with eight adults can you get uber", + "uber" + ], + [ + "ai i have 4 people need to get to get me uber", + "uber" + ], + [ + "i am stranded and need uber", + "uber" + ], + [ + "set me up with an uber", + "uber" + ], + [ + "i will need an uber for 3 to go to jfk airport", + "uber" + ], + [ + "i need an uber for 2 for orlando", + "uber" + ], + [ + "get me an uber for 4 heading to miam", + "uber" + ], + [ + "i will need an uber for 2 people to get to philadelphia", + "uber" + ], + [ + "i need to uber somewhere", + "uber" + ], + [ + "help me get an uber", + "uber" + ], + [ + "schedule an uber for 3 to go to the airport", + "uber" + ], + [ + "call an uber for 2 people to go to fourth street live", + "uber" + ], + [ + "i'm going to need an uber to take 4 people to the mall", + "uber" + ], + [ + "i need an uber for 7 people to go to safire restaurant", + "uber" + ], + [ + "can you call an uber for 2 to go to proof on main", + "uber" + ], + [ + "what is 7 x 7", + "calculator" + ], + [ + "please add 456 and 781 for me", + "calculator" + ], + [ + "what is 8 factorial", + "calculator" + ], + [ + "can you tell me what 30% off 279 is", + "calculator" + ], + [ + "can you tell me what 30% off 235 is, please", + "calculator" + ], + [ + "what is the sum of 3 plus 5", + "calculator" + ], + [ + "could you tell me what 30% off 235 is, please", + "calculator" + ], + [ + "can you tell me what 30% off 235 is", + "calculator" + ], + [ + "can you tell me what 30% off 279 is, please", + "calculator" + ], + [ + "what is the sum of 10 plus 5", + "calculator" + ], + [ + "what is 4 + 4", + "calculator" + ], + [ + "what is 60 percent off of 350 dollars", + "calculator" + ], + [ + "what is an 18 percent tip on 20 dollars", + "calculator" + ], + [ + "what is 25 percent of 6999", + "calculator" + ], + [ + "can you tell me what is 18 percent of $2500", + "calculator" + ], + [ + "what is 3/4 of 18", + "calculator" + ], + [ + "i need to know what is 85% of $1500", + "calculator" + ], + [ + "what is 20% of a thousand", + "calculator" + ], + [ + "what is 55 times 300", + "calculator" + ], + [ + "what is the square root of 1 million", + "calculator" + ], + [ + "will you help me with a math problem", + "calculator" + ], + [ + "can you help me solve a math problem", + "calculator" + ], + [ + "how to solve this math problem", + "calculator" + ], + [ + "what is 4 + 7", + "calculator" + ], + [ + "what is 4 x 4", + "calculator" + ], + [ + "what is 2 + 2", + "calculator" + ], + [ + "what is 20+ 5", + "calculator" + ], + [ + "what is 500 x 25", + "calculator" + ], + [ + "what is 2+2", + "calculator" + ], + [ + "what is 10 + 20", + "calculator" + ], + [ + "what is 22+ 6", + "calculator" + ], + [ + "what is the square root of 80", + "calculator" + ], + [ + "what is 5 x 4", + "calculator" + ], + [ + "what is 15% of 3143", + "calculator" + ], + [ + "what is the square root of 10294", + "calculator" + ], + [ + "how many square feet is a 13 by 74 room", + "calculator" + ], + [ + "what is three quarters of one sixth", + "calculator" + ], + [ + "what is 213 times 3", + "calculator" + ], + [ + "what is the square root of 144", + "calculator" + ], + [ + "what is the antilog of 365", + "calculator" + ], + [ + "what is 78 times 85", + "calculator" + ], + [ + "what is 250 times 118 times 9", + "calculator" + ], + [ + "what is 78 times 81 minus 5", + "calculator" + ], + [ + "what is 1785 minus 334 minus 87 plus 374 minus 400 plus 17", + "calculator" + ], + [ + "help me with math", + "calculator" + ], + [ + "i need you to help me with some math if you can", + "calculator" + ], + [ + "please help with my math", + "calculator" + ], + [ + "can you help me do math", + "calculator" + ], + [ + "can you do a math problem", + "calculator" + ], + [ + "what is 1 million twelve hundred divided by 400 thousand", + "calculator" + ], + [ + "what is the square root of 10500", + "calculator" + ], + [ + "what is 20 times 20 times 30", + "calculator" + ], + [ + "what is 10 to the 12th power", + "calculator" + ], + [ + "how much is 50 plus 756", + "calculator" + ], + [ + "what is 750 divided by 5", + "calculator" + ], + [ + "if i win 200000 how do i split it 7 ways", + "calculator" + ], + [ + "what is 900 times 8", + "calculator" + ], + [ + "can you tell me what 80 divided buy 4 is", + "calculator" + ], + [ + "560 divided by 3", + "calculator" + ], + [ + "what is 606 divided by 5", + "calculator" + ], + [ + "subtract 100 from 12", + "calculator" + ], + [ + "what is 005 percent of 1 percent", + "calculator" + ], + [ + "what is the square root of 31", + "calculator" + ], + [ + "what is six divided by 16", + "calculator" + ], + [ + "how many times can 12 go into 600", + "calculator" + ], + [ + "what is the square root of sixteen", + "calculator" + ], + [ + "what is 562 times 400", + "calculator" + ], + [ + "add twelve and twelve please", + "calculator" + ], + [ + "what is 10 + 10", + "calculator" + ], + [ + "what is the square root of 5", + "calculator" + ], + [ + "what is 1/2 times 5/8", + "calculator" + ], + [ + "what is 80980 + 098098 + 80980 + 1243", + "calculator" + ], + [ + "what is 13 times 45", + "calculator" + ], + [ + "what is 34 times 80908", + "calculator" + ], + [ + "what is 90908 divided by 30890", + "calculator" + ], + [ + "what is 38% of 389209", + "calculator" + ], + [ + "what is the square root of 66", + "calculator" + ], + [ + "what is 2/3 x 1/9", + "calculator" + ], + [ + "can you do algebra", + "calculator" + ], + [ + "what is 1 fifth times 2 fifths", + "calculator" + ], + [ + "what's 3 plus 3", + "calculator" + ], + [ + "what's ten times eight", + "calculator" + ], + [ + "i need to know what 75 plus 43 is", + "calculator" + ], + [ + "what do you get if you divide 3 by 2", + "calculator" + ], + [ + "what is the area of a 20 x 20 room", + "calculator" + ], + [ + "subtract 85 from 997", + "calculator" + ], + [ + "what is 20 + 20", + "calculator" + ], + [ + "what is the square root of 2784", + "calculator" + ], + [ + "how many times does 8 go into 2000", + "calculator" + ], + [ + "what is 35 times 23", + "calculator" + ], + [ + "what is 3 to the 6th power", + "calculator" + ], + [ + "what is 63 percent of 145", + "calculator" + ], + [ + "can you calculate 18 divided by 45", + "calculator" + ], + [ + "what is the square root of 104", + "calculator" + ], + [ + "what\u2019s the answer to 5-6=", + "calculator" + ], + [ + "what is the sum of 8 + 3", + "calculator" + ], + [ + "please provide the square root of 36", + "calculator" + ], + [ + "what does 6 x 1 equal", + "calculator" + ], + [ + "what does 2 + 2 equal", + "calculator" + ], + [ + "what is 10000 divided by 20", + "calculator" + ], + [ + "i would like to know what today's date is", + "date" + ], + [ + "i need information on today's date", + "date" + ], + [ + "tell me what date it is please", + "date" + ], + [ + "tell me what day today is", + "date" + ], + [ + "can you tell me tomorrow's date", + "date" + ], + [ + "what is the date for tomorrow", + "date" + ], + [ + "i would like to know tomorrow's date", + "date" + ], + [ + "what is the month and day tomorrow", + "date" + ], + [ + "in six days, what will it be", + "date" + ], + [ + "what day will it be in fourteen days", + "date" + ], + [ + "which day will it be five days from now", + "date" + ], + [ + "after another eight days, what day will it be", + "date" + ], + [ + "what day is it gonna be in twenty-one days", + "date" + ], + [ + "current date", + "date" + ], + [ + "what day of the month is it today", + "date" + ], + [ + "what date is it", + "date" + ], + [ + "can you tell me the date today", + "date" + ], + [ + "please share today's date", + "date" + ], + [ + "what date is it today", + "date" + ], + [ + "what day is it", + "date" + ], + [ + "what is the day", + "date" + ], + [ + "tell me what day it is", + "date" + ], + [ + "is it monday, tuesday, wednesday, thursday, friday, saturday, or sunday", + "date" + ], + [ + "what's the day of the week", + "date" + ], + [ + "what's the date tomorrow, please", + "date" + ], + [ + "what is the date tomorrow", + "date" + ], + [ + "what is the date tomorrow, please", + "date" + ], + [ + "what is tomorrow's date, please", + "date" + ], + [ + "can you tell me what today's date is", + "date" + ], + [ + "what is today's month, day and year", + "date" + ], + [ + "today's date is what", + "date" + ], + [ + "please tell me today's date", + "date" + ], + [ + "could you tell me today's date", + "date" + ], + [ + "i need to know today's date please", + "date" + ], + [ + "would you please tell me today's date", + "date" + ], + [ + "what is the date today", + "date" + ], + [ + "today's date is what exactly", + "date" + ], + [ + "please tell me what date it is today", + "date" + ], + [ + "can you tell me today's date", + "date" + ], + [ + "i need to know today's date", + "date" + ], + [ + "what would tomorrow's date be", + "date" + ], + [ + "tell me the date today", + "date" + ], + [ + "i'd like to know the date tomorrow", + "date" + ], + [ + "in 2 days, what date will it be", + "date" + ], + [ + "what will be the date tomorrow", + "date" + ], + [ + "what will the date be in 10 days", + "date" + ], + [ + "15 days from today, what will the date be", + "date" + ], + [ + "what's the date tomorrow", + "date" + ], + [ + "i need to know what date it is tomorrow", + "date" + ], + [ + "in 100 days from now, what will be the date", + "date" + ], + [ + "what will be the date in 100 days from now", + "date" + ], + [ + "tell me what the date is tomorrow", + "date" + ], + [ + "give me tomorrow's date please", + "date" + ], + [ + "what day is it today", + "date" + ], + [ + "do you have the date", + "date" + ], + [ + "what is the date of today", + "date" + ], + [ + "please give me today's date", + "date" + ], + [ + "what is today's date", + "date" + ], + [ + "what date is today", + "date" + ], + [ + "what is today", + "date" + ], + [ + "today is what date", + "date" + ], + [ + "what's the day today", + "date" + ], + [ + "what year is it", + "date" + ], + [ + "what's the date 400 days from now", + "date" + ], + [ + "can you tell me the current date", + "date" + ], + [ + "tell me the date 650 days from now", + "date" + ], + [ + "what's the current date, month and year", + "date" + ], + [ + "what will the date be 100 days from now", + "date" + ], + [ + "what day of the week is it", + "date" + ], + [ + "what day will it be 373 days from now", + "date" + ], + [ + "i need to know the date in 256 days", + "date" + ], + [ + "what is the date", + "date" + ], + [ + "give me the date today", + "date" + ], + [ + "i need to know what the date is today", + "date" + ], + [ + "i'd like to know what the date is", + "date" + ], + [ + "what's today's date", + "date" + ], + [ + "tell me what the date is today", + "date" + ], + [ + "show me a calendar", + "date" + ], + [ + "show me the date", + "date" + ], + [ + "i need the full date for today", + "date" + ], + [ + "what day of the month is it", + "date" + ], + [ + "can you remind me of the date", + "date" + ], + [ + "tomorrow, what will the date be", + "date" + ], + [ + "tell me what the date is for tomorrow", + "date" + ], + [ + "tell me what the date will be tomorrow", + "date" + ], + [ + "what is tomorrow's date", + "date" + ], + [ + "what's tomorrow on the calender", + "date" + ], + [ + "what date is tomorrow", + "date" + ], + [ + "calender says tomorrow is", + "date" + ], + [ + "tell me tomorrow's date", + "date" + ], + [ + "the date tomorrow is what", + "date" + ], + [ + "when will it be in 10 days", + "date" + ], + [ + "what day is it tomorrow", + "date" + ], + [ + "what's the current date", + "date" + ], + [ + "what is the full date after today", + "date" + ], + [ + "what's the date 32 days from now", + "date" + ], + [ + "can you tell me the date", + "date" + ], + [ + "what will the date be in 64 days", + "date" + ], + [ + "can you tell me what the next day is", + "date" + ], + [ + "what's today", + "date" + ], + [ + "if i fly american to los angeles, how many carry ons am i allowed", + "carry_on" + ], + [ + "how many carry ons will american let me take for a flight to los vegas", + "carry_on" + ], + [ + "if i take a flight on pan am to denver, how many carry ons are included", + "carry_on" + ], + [ + "if i fly on virgin to chicago, how many carry ons can i take", + "carry_on" + ], + [ + "how my carry ons does spirit airlines allow me for a flight to dallas", + "carry_on" + ], + [ + "would you let me know how many carry ons i can take on a flight with southwest airlines to miami", + "carry_on" + ], + [ + "i need to know the carry-on restrictions for united airlines", + "carry_on" + ], + [ + "tell me the carry-on restrictions for united airlines", + "carry_on" + ], + [ + "i need to know how many carry ons i can take on a flight with southwest airlines to houston", + "carry_on" + ], + [ + "let me know how many carry ons i can take on a flight with southwest airlines to dallas", + "carry_on" + ], + [ + "tell me how many carry ons i can take on a flight with southwest airlines to dallas", + "carry_on" + ], + [ + "would you let me know the carry-on restrictions for american airlines", + "carry_on" + ], + [ + "i am wanting to know how many carry ons i can take on a flight with southwest airlines to houston", + "carry_on" + ], + [ + "could you list out the carry-on restrictions for american airlines", + "carry_on" + ], + [ + "i am wanting to know the carry-on restrictions for united airlines", + "carry_on" + ], + [ + "what carry-on restrictions does southwest impose", + "carry_on" + ], + [ + "carry-on restrictions for air emirates", + "carry_on" + ], + [ + "does delta have any carry-on restrictions", + "carry_on" + ], + [ + "what's restricted in my carry-on with united", + "carry_on" + ], + [ + "what restrictions do my carry-ons need to comply with for delta", + "carry_on" + ], + [ + "how much luggage can i carry with me on flight dl2200 to denver", + "carry_on" + ], + [ + "am i allowed carry ons for my flight with westjet to edmonton", + "carry_on" + ], + [ + "how many carry ons am i allowed to take on my canadair flight to frankfurt", + "carry_on" + ], + [ + "is there are limit of carry ons for my flight with aer lingus to cork", + "carry_on" + ], + [ + "what are the carry on limits for delta", + "carry_on" + ], + [ + "am i limited in carry ons for jet blue", + "carry_on" + ], + [ + "what am i allowed to carry on for american airlines", + "carry_on" + ], + [ + "does delta have any restrictions for what i can carry on", + "carry_on" + ], + [ + "does jet blue have any carry-on restrictions", + "carry_on" + ], + [ + "how many carry-on items are allowed per passenger", + "carry_on" + ], + [ + "what are the carry-on rules", + "carry_on" + ], + [ + "is there a carry-on item weight limit", + "carry_on" + ], + [ + "how big can a carry-on bag be", + "carry_on" + ], + [ + "does delta have carry-on restrictions", + "carry_on" + ], + [ + "do you know the carry-on restrictions for delta", + "carry_on" + ], + [ + "delta has too many carry-on restrictions! do you know them", + "carry_on" + ], + [ + "are there carry-on restrictions for delta", + "carry_on" + ], + [ + "what are the carry on rules for united", + "carry_on" + ], + [ + "tell me united's carry on policy", + "carry_on" + ], + [ + "what should i know about the carry on policy for american", + "carry_on" + ], + [ + "let me know the carry on policy for alaska airlines", + "carry_on" + ], + [ + "i want to know the carry on policy for southwest", + "carry_on" + ], + [ + "if i fly internationally, do brittish airwaiys have carry-on limitations", + "carry_on" + ], + [ + "can i carry on a garment bag, a small travel bag, and a back pack on my trip with american airlines", + "carry_on" + ], + [ + "i am flying jetblue and need to know what the most number of bags are that i can carry on", + "carry_on" + ], + [ + "what are the carry-on fees with delta for international flights", + "carry_on" + ], + [ + "what are the carry-on limits for flying domestically with delta", + "carry_on" + ], + [ + "how many carry ons can i take on a flight with jet blue to washington dc", + "carry_on" + ], + [ + "how many carry ons can i take on a flight with virgin airlines to vancouver bc", + "carry_on" + ], + [ + "how many carry ons can i take on a flight with delta to mexico city", + "carry_on" + ], + [ + "how many carry ons can i take on a flight with united to lax", + "carry_on" + ], + [ + "how many carry ons can i take on a flight with american airlines to seattle", + "carry_on" + ], + [ + "what is the carry-on policy say for flights on delta airlines", + "carry_on" + ], + [ + "what are the carry-on restrictions for singapore airlines", + "carry_on" + ], + [ + "what are the carry-on restrictions for frontier airlines", + "carry_on" + ], + [ + "what does the carry-on policy say for flights on united airlines", + "carry_on" + ], + [ + "how many bags can i carry-on for flights on singapore airlines", + "carry_on" + ], + [ + "what are the carry-on restrictions for delta", + "carry_on" + ], + [ + "what are the carry-on restrictions for united", + "carry_on" + ], + [ + "what are the carry-on restrictions for southwest airlines", + "carry_on" + ], + [ + "what are the rules regarding carry-on baggage for flights on virgin airlines", + "carry_on" + ], + [ + "what can't i carry-on to delta", + "carry_on" + ], + [ + "what is the carry on limit", + "carry_on" + ], + [ + "what are delta's carry-on policies for flights", + "carry_on" + ], + [ + "what are the rules for carry on luggage", + "carry_on" + ], + [ + "can you look up the carry-on restrictions for delta", + "carry_on" + ], + [ + "are there restrictions for carry-ons on delta", + "carry_on" + ], + [ + "what can i carry-on delta flights", + "carry_on" + ], + [ + "do i have to pay for carry-ons on delta", + "carry_on" + ], + [ + "what are the carry on limits for delta flights", + "carry_on" + ], + [ + "is there a carry on weight limit", + "carry_on" + ], + [ + "what restrictions are there for carry-on on delta", + "carry_on" + ], + [ + "what are the rules for carry on luggage for delta", + "carry_on" + ], + [ + "what are delta's carry-on restrictions", + "carry_on" + ], + [ + "tell me the carry on rules", + "carry_on" + ], + [ + "does united airlines allow more than one carry on", + "carry_on" + ], + [ + "how strict is spirit when it comes to carry ons", + "carry_on" + ], + [ + "can i have 3 carry ons with delta at jfk", + "carry_on" + ], + [ + "what is american airlines carry on policy", + "carry_on" + ], + [ + "does delta allow more than one carry on when traveling to miami", + "carry_on" + ], + [ + "does delta charge for carry ons", + "carry_on" + ], + [ + "what are my carry on options when flying american airlines to trenton", + "carry_on" + ], + [ + "how many carry ons does spirit allow when flying to dallas", + "carry_on" + ], + [ + "what is delta's carry on policy", + "carry_on" + ], + [ + "do you know about carry ons out of tampa with spirit", + "carry_on" + ], + [ + "search for carry on rules for flights on delta airlines", + "carry_on" + ], + [ + "what are the requirements for carry on on flights with united airlines", + "carry_on" + ], + [ + "please find the rules for carry on when flying with spirit airlines", + "carry_on" + ], + [ + "i need to know the carry on policy for american airlines flights", + "carry_on" + ], + [ + "can you tell me jet blue airlines' carry on policy", + "carry_on" + ], + [ + "from a flight from muscat to qatar, how many carry ons can i take", + "carry_on" + ], + [ + "do i need to pay for delta carry on", + "carry_on" + ], + [ + "which rules does delta have for carry on", + "carry_on" + ], + [ + "when taking a flight with lion to singapore, how many carry ons are allowed", + "carry_on" + ], + [ + "how many carry ons are allowed on a flight with wow to iceland", + "carry_on" + ], + [ + "on a flight with allegiant to orlando, how many carry ons can i take", + "carry_on" + ], + [ + "when taking a flight with porter to toronto, how many carry ons can i take", + "carry_on" + ], + [ + "on a flight with jin air to jeju, how many carry ons are allowed", + "carry_on" + ], + [ + "let me know the rules for carry ons for continental", + "carry_on" + ], + [ + "i want to know the carry on policy for aeromexico", + "carry_on" + ], + [ + "have i used half of my days off yet", + "pto_used" + ], + [ + "go to my job portal, i'd like to know how many days off i have used", + "pto_used" + ], + [ + "what amount of days off have i already utilized", + "pto_used" + ], + [ + "call hr so i can figure out how many days off i've taken", + "pto_used" + ], + [ + "how many times have i taken off from work this year", + "pto_used" + ], + [ + "about how many vacation days have i taken", + "pto_used" + ], + [ + "count how many sick days i've used", + "pto_used" + ], + [ + "can you check how much pto i have already used", + "pto_used" + ], + [ + "tell me the exact amount of pto i have used", + "pto_used" + ], + [ + "my pto used so far is what right now", + "pto_used" + ], + [ + "i've used how much pto so far", + "pto_used" + ], + [ + "get the details on the pto i have used", + "pto_used" + ], + [ + "how much time did i take off so far", + "pto_used" + ], + [ + "including the day i missed because of snow, how much time have i take off work so far", + "pto_used" + ], + [ + "how many sick, personal, and vacation days have i billed so far this year", + "pto_used" + ], + [ + "can you add up how much time i've taken off so far", + "pto_used" + ], + [ + "what's the number of day's i've taken off", + "pto_used" + ], + [ + "how many days so far have i taken off", + "pto_used" + ], + [ + "tell me how many days i've taken off at this point", + "pto_used" + ], + [ + "so far how many days have i taken off", + "pto_used" + ], + [ + "i need to know how many days so far i've taken off", + "pto_used" + ], + [ + "how many days have i taken off this year", + "pto_used" + ], + [ + "can you tell me how much pto i've gone through", + "pto_used" + ], + [ + "how many personal days have i taken", + "pto_used" + ], + [ + "how many vacation days have i consumed", + "pto_used" + ], + [ + "how much pto have i depleted", + "pto_used" + ], + [ + "how much vacation have i already used this year", + "pto_used" + ], + [ + "what's the total of days i've taken for me time so far", + "pto_used" + ], + [ + "how many of my sick days have i gone through", + "pto_used" + ], + [ + "what amount of pto have i taken", + "pto_used" + ], + [ + "what is the extent of the pto i've taken", + "pto_used" + ], + [ + "what's the amount of time off i've had", + "pto_used" + ], + [ + "what's the amount of time i've taken off work this year", + "pto_used" + ], + [ + "what's the total vacation days i've gone through", + "pto_used" + ], + [ + "how many personal days have i taken this month", + "pto_used" + ], + [ + "what's the total pto i've used", + "pto_used" + ], + [ + "count the number of vacation days i've taken and tell me", + "pto_used" + ], + [ + "how many of my vacation days have i depleted", + "pto_used" + ], + [ + "what's the amount of vacation days i've taken", + "pto_used" + ], + [ + "how much of my pto have i depleted", + "pto_used" + ], + [ + "up to this point, how much of my pto have i used", + "pto_used" + ], + [ + "please find out how many of my vacation days i have spent", + "pto_used" + ], + [ + "check to see how many days off i have used in total so far", + "pto_used" + ], + [ + "look up my total number of days off so far", + "pto_used" + ], + [ + "i need to know how many vacation days i have used up please", + "pto_used" + ], + [ + "find out how much of my pto is already used", + "pto_used" + ], + [ + "tell me the amount of pto i have used at this point", + "pto_used" + ], + [ + "check to see how many days off i have used", + "pto_used" + ], + [ + "look up how many of my days off i have used so far", + "pto_used" + ], + [ + "look up the amount of vacation days i have used please", + "pto_used" + ], + [ + "can you count for me the total number of days off i have used", + "pto_used" + ], + [ + "look up the amount of pto i have already used", + "pto_used" + ], + [ + "do you know the total number of vacation days i have used", + "pto_used" + ], + [ + "i need to know how many of my days off i have used at this point", + "pto_used" + ], + [ + "please find out how many days off i have used by this point", + "pto_used" + ], + [ + "what is the total number of days i have taken off so far", + "pto_used" + ], + [ + "i need to know how much of my pto has been used at this point", + "pto_used" + ], + [ + "how many vacation days have i spent in total", + "pto_used" + ], + [ + "find out for me how many days off i have taken in total at this point", + "pto_used" + ], + [ + "i need to know the number of days off i have taken at this point", + "pto_used" + ], + [ + "how many days did i skip work", + "pto_used" + ], + [ + "how much vacation have i taken", + "pto_used" + ], + [ + "how many days was i sick or on vacation", + "pto_used" + ], + [ + "which days did i take vacation", + "pto_used" + ], + [ + "which days did i take off work", + "pto_used" + ], + [ + "how many vacation days have i used", + "pto_used" + ], + [ + "how many days have i taken off so far", + "pto_used" + ], + [ + "how much time have i taken off this year", + "pto_used" + ], + [ + "how many times have i used my annual leave", + "pto_used" + ], + [ + "how much paid time off have i taken", + "pto_used" + ], + [ + "how many of my paid days off have i used", + "pto_used" + ], + [ + "how much pto do i have used up", + "pto_used" + ], + [ + "how much of my time off have i used", + "pto_used" + ], + [ + "how many days of pto have i used", + "pto_used" + ], + [ + "can you tell me how many vacation days i've taken", + "pto_used" + ], + [ + "what's my vacation day usage so far", + "pto_used" + ], + [ + "what kind of pto do i have left", + "pto_used" + ], + [ + "how many times did i take a day off", + "pto_used" + ], + [ + "tell me how many vacation days i've used", + "pto_used" + ], + [ + "how much pto has been used on my behalf", + "pto_used" + ], + [ + "how many days off have i taken", + "pto_used" + ], + [ + "what kind of pto have i used", + "pto_used" + ], + [ + "what kind of vacation days have i used so far", + "pto_used" + ], + [ + "tell me how much pto i've used", + "pto_used" + ], + [ + "how much paid time off have i used", + "pto_used" + ], + [ + "how many days off did i use so far", + "pto_used" + ], + [ + "tell me the number of days off i took this year", + "pto_used" + ], + [ + "how many days off have i had this year", + "pto_used" + ], + [ + "so far, how many days off have i taken", + "pto_used" + ], + [ + "tell me my usage of vacation days", + "pto_used" + ], + [ + "whats my count of vacation days used thus far", + "pto_used" + ], + [ + "how many vacation days have i taken", + "pto_used" + ], + [ + "what is the status of my pto", + "pto_used" + ], + [ + "how much paid time off do i have left", + "pto_used" + ], + [ + "how many days of pto are available", + "pto_used" + ], + [ + "how many vacation days have i used up", + "pto_used" + ], + [ + "how many vacation days did i use", + "pto_used" + ], + [ + "what is the total number of vacation days i've used", + "pto_used" + ], + [ + "have i used any vacation days this year", + "pto_used" + ], + [ + "how many vacation days have i used so far", + "pto_used" + ], + [ + "my car needs to be brought for maintenance", + "schedule_maintenance" + ], + [ + "could you schedule car maintenance for me", + "schedule_maintenance" + ], + [ + "i need someone to look at my car because my check engine light is on", + "schedule_maintenance" + ], + [ + "locate someone to look at my car because my check engine light is on", + "schedule_maintenance" + ], + [ + "i require a car maintenance", + "schedule_maintenance" + ], + [ + "who is available to check why my check engine light is on", + "schedule_maintenance" + ], + [ + "could you find someone to check out my car because the check engine light is on", + "schedule_maintenance" + ], + [ + "i need to schedule car maintenance", + "schedule_maintenance" + ], + [ + "please schedule car maintenance for me", + "schedule_maintenance" + ], + [ + "who can i contact about why check engine light is on", + "schedule_maintenance" + ], + [ + "i want to schedule a tire check up somewhere", + "schedule_maintenance" + ], + [ + "i need to get my tires checked out somewhere", + "schedule_maintenance" + ], + [ + "i need to find somewhere to check my tires out", + "schedule_maintenance" + ], + [ + "i need to get my tired checked at one of the location", + "schedule_maintenance" + ], + [ + "can i schedule a check up for my tires somewhere", + "schedule_maintenance" + ], + [ + "where in sacramento ca i schedule maintenance on my car", + "schedule_maintenance" + ], + [ + "i want to to schedule maintenance on my vehicle", + "schedule_maintenance" + ], + [ + "look for auto companies that do scheduled maintenance on my vehicle", + "schedule_maintenance" + ], + [ + "i need some work done on my car so need to schedule auto mechanic for maintenance", + "schedule_maintenance" + ], + [ + "find local deals who schedule maintenance on cars", + "schedule_maintenance" + ], + [ + "where can i find a place where i can schedule to check my tires out", + "schedule_maintenance" + ], + [ + "is there a special place where i can schedule to check my tires out", + "schedule_maintenance" + ], + [ + "where can i schedule to get my tires checked out", + "schedule_maintenance" + ], + [ + "where is an appropriate place where i can schedule to check out my tires", + "schedule_maintenance" + ], + [ + "is there a location i can schedule to check out my tires", + "schedule_maintenance" + ], + [ + "can you make an appointment for an oil change", + "schedule_maintenance" + ], + [ + "please make an appointment for an oil change", + "schedule_maintenance" + ], + [ + "i need you to find a mechanic for my check engine light", + "schedule_maintenance" + ], + [ + "please schedule an appointment for my oil to get changed", + "schedule_maintenance" + ], + [ + "my car needs maintenance scheduled", + "schedule_maintenance" + ], + [ + "how i do schedule car maintenance", + "schedule_maintenance" + ], + [ + "my check engine light is on and someone needs to look at it", + "schedule_maintenance" + ], + [ + "i need to get my oil change so make an appointment", + "schedule_maintenance" + ], + [ + "the check engine light is on and i need a mechanic", + "schedule_maintenance" + ], + [ + "my car needs maintenance prepared", + "schedule_maintenance" + ], + [ + "my car needs an appointment for an oil change", + "schedule_maintenance" + ], + [ + "i need someone to look at my check engine light", + "schedule_maintenance" + ], + [ + "help me find someone to look at my check engine light", + "schedule_maintenance" + ], + [ + "put a tire inspection on my schedule please", + "schedule_maintenance" + ], + [ + "i need to find someone to look at my check engine light", + "schedule_maintenance" + ], + [ + "is it possible to get schedule getting my tires inspected", + "schedule_maintenance" + ], + [ + "i'd like to schedule a tire inspection", + "schedule_maintenance" + ], + [ + "who in the area can inspect my engine light", + "schedule_maintenance" + ], + [ + "set an appointment for an oil change", + "schedule_maintenance" + ], + [ + "book an oil change please", + "schedule_maintenance" + ], + [ + "can you please obtain an oil change appointment for me", + "schedule_maintenance" + ], + [ + "where can i get my tires checked and how can i schedule it", + "schedule_maintenance" + ], + [ + "is there someone in the area who can check my engine light since it is on", + "schedule_maintenance" + ], + [ + "i need the soonest appointment for an oil change", + "schedule_maintenance" + ], + [ + "i am in need of an oil change, set an appointment", + "schedule_maintenance" + ], + [ + "please find someone who specializes in cars, my check engine light has turned on", + "schedule_maintenance" + ], + [ + "my check engine light has switched on, schedule someone to inspect it", + "schedule_maintenance" + ], + [ + "i need to schedule a car repair", + "schedule_maintenance" + ], + [ + "can i schedule a car repair", + "schedule_maintenance" + ], + [ + "how do i schedule car maintenance", + "schedule_maintenance" + ], + [ + "i want to schedule car maintenance", + "schedule_maintenance" + ], + [ + "i wanna have an appointment to get my oil changed", + "schedule_maintenance" + ], + [ + "i wanna schedule some car maintenance", + "schedule_maintenance" + ], + [ + "can someone look at my car cause the check engine light is on", + "schedule_maintenance" + ], + [ + "i need to schedule some car maintenance", + "schedule_maintenance" + ], + [ + "i got to schedule somewhere get my tires checked out", + "schedule_maintenance" + ], + [ + "i must schedule somewhere get my tires checked out", + "schedule_maintenance" + ], + [ + "i'd like to get an appointment to get my oil changed", + "schedule_maintenance" + ], + [ + "i want to schedule somewhere get my tires checked out", + "schedule_maintenance" + ], + [ + "i gotta schedule some car maintenance", + "schedule_maintenance" + ], + [ + "y check engine light currently came on and i need assistance with it", + "schedule_maintenance" + ], + [ + "i need help cause my check engine light came on", + "schedule_maintenance" + ], + [ + "i have to schedule somewhere get my tires checked out", + "schedule_maintenance" + ], + [ + "i need to have an appointment to get my oil changed", + "schedule_maintenance" + ], + [ + "i need an appointment to get my oil changed", + "schedule_maintenance" + ], + [ + "i got to schedule some car maintenance", + "schedule_maintenance" + ], + [ + "my engine light came on, so i need to get help", + "schedule_maintenance" + ], + [ + "i want to get an appointment to get my oil changed", + "schedule_maintenance" + ], + [ + "my check engine light is on and i need to take a look at it", + "schedule_maintenance" + ], + [ + "i have to schedule some car maintenance", + "schedule_maintenance" + ], + [ + "i need to schedule somewhere get my tires checked out", + "schedule_maintenance" + ], + [ + "i would like an appointment to get my oil changed", + "schedule_maintenance" + ], + [ + "can i please get an appointment to get my oil changed", + "schedule_maintenance" + ], + [ + "i need an oil change, make an appointment", + "schedule_maintenance" + ], + [ + "find a mechanic to look at my check engine light", + "schedule_maintenance" + ], + [ + "book an appointment for an oil change", + "schedule_maintenance" + ], + [ + "i should get my tires checked, schedule that", + "schedule_maintenance" + ], + [ + "how do i schedule getting my tires checked", + "schedule_maintenance" + ], + [ + "i need someone to look at my car and tell me why the light is on", + "schedule_maintenance" + ], + [ + "schedule an oil change for me", + "schedule_maintenance" + ], + [ + "which mechanic can check my check engine light", + "schedule_maintenance" + ], + [ + "make a reminder to schedule a tire check", + "schedule_maintenance" + ], + [ + "who can look at my car, the engine light is on", + "schedule_maintenance" + ], + [ + "set a time to get my oil changed", + "schedule_maintenance" + ], + [ + "make an appointment to check my tires", + "schedule_maintenance" + ], + [ + "i don't know why my check engine light is on, i need a mechanic", + "schedule_maintenance" + ], + [ + "make an appointment for an oil change", + "schedule_maintenance" + ], + [ + "make arrangements for me to get my oil changed", + "schedule_maintenance" + ], + [ + "can you schedule me a mechanic", + "schedule_maintenance" + ], + [ + "schedule an appointment to get my oil changed", + "schedule_maintenance" + ], + [ + "i need to get my oil changed", + "schedule_maintenance" + ], + [ + "schedule a time to get my oil changed", + "schedule_maintenance" + ], + [ + "find me a mechanic", + "schedule_maintenance" + ], + [ + "schedule a mechanic", + "schedule_maintenance" + ], + [ + "schedule car repairs", + "schedule_maintenance" + ], + [ + "im going to be in canada from august 10th until august 12th", + "travel_notification" + ], + [ + "im going to be in slovakia from january 16th until january 19th", + "travel_notification" + ], + [ + "im going to be in paraguay from january 7th until january 10th", + "travel_notification" + ], + [ + "i'm going to be in thailand from october 15th until october 23rd", + "travel_notification" + ], + [ + "im going to be in jamaica from october 4th until october 8th", + "travel_notification" + ], + [ + "my bank needs to know i am going to be out of the country", + "travel_notification" + ], + [ + "i am going out of country and my bank needs to be notified", + "travel_notification" + ], + [ + "i need to inform the bank i am going out of country", + "travel_notification" + ], + [ + "i am going out of country and need to inform my bank", + "travel_notification" + ], + [ + "tell the bank i'm traveling between denver and la", + "travel_notification" + ], + [ + "tell my bank i am traveling out of country", + "travel_notification" + ], + [ + "i'm driving from la to denver and need my bank notified", + "travel_notification" + ], + [ + "notify my bank i am travailing from denver to la", + "travel_notification" + ], + [ + "i'm traveling between denver and la so tell my bank", + "travel_notification" + ], + [ + "i need to let my bank know i am traveling to la", + "travel_notification" + ], + [ + "i need to let my bank know i am traveling to detroit", + "travel_notification" + ], + [ + "i need to let my bank know i am traveling to new york", + "travel_notification" + ], + [ + "i need to let my bank know i am traveling to chicago", + "travel_notification" + ], + [ + "i need to let my bank know i am traveling to paris", + "travel_notification" + ], + [ + "i will be traveling to rome from february 1 to march 1, please make this aware to my bank", + "travel_notification" + ], + [ + "inform my bank that i will be in rome from february 1 to march 1", + "travel_notification" + ], + [ + "please let my bank know that i will be in rome from february 1 to march 1", + "travel_notification" + ], + [ + "mark down that i will be in rome from february 1 to march 1 and notify my bank", + "travel_notification" + ], + [ + "notify my bank that i will be in rome from february 1 to march 1", + "travel_notification" + ], + [ + "i need to let my bank know that i'll be travelling internationally", + "travel_notification" + ], + [ + "can you tell my bank that i'll be travelling internationally soon", + "travel_notification" + ], + [ + "i'll soon be travelling internationally; could you let my bank know", + "travel_notification" + ], + [ + "i'll be out of the country soon, and want to notify my bank", + "travel_notification" + ], + [ + "i'm going out of the country and need to notify my bank", + "travel_notification" + ], + [ + "tell my bank that i'm going to france", + "travel_notification" + ], + [ + "tell my bank that i'll be in canada this weekend", + "travel_notification" + ], + [ + "let my bank know that i'm traveling to prague", + "travel_notification" + ], + [ + "let my bank know that i'll be in moscow, russia", + "travel_notification" + ], + [ + "inform my bank that i'll be going to europe", + "travel_notification" + ], + [ + "i'm traveling to paris soon and want to inform my bank", + "travel_notification" + ], + [ + "i'm traveling to fresnosoon and want to inform my bank", + "travel_notification" + ], + [ + "i'm traveling to london soon and want to inform my bank", + "travel_notification" + ], + [ + "i'm traveling to ca soon and want to inform my bank", + "travel_notification" + ], + [ + "i'm traveling tony soon and want to inform my bank", + "travel_notification" + ], + [ + "i've let me bank know that i'm visiting south america from may to october", + "travel_notification" + ], + [ + "i've notified my bank that i'm in mexico from august 1 to august 5", + "travel_notification" + ], + [ + "i let my bank know that i'm traveling to greece from march to april", + "travel_notification" + ], + [ + "i've told my financial institution that i'm in africa from august 6 to december 5", + "travel_notification" + ], + [ + "call the bank and tell them i will be in france on the 16th until the 26th", + "travel_notification" + ], + [ + "notify my bank i'll be in rome from the 1st to the 17th", + "travel_notification" + ], + [ + "tell my bank i'll be in jamaica from the 4th to the 11th", + "travel_notification" + ], + [ + "please tell my bank i will be in israel from the 6th to the 23rd", + "travel_notification" + ], + [ + "alert the bank that i am traveling to tokyo on the 7th until the 21st", + "travel_notification" + ], + [ + "i'm traveling to denmark soon and want to inform my bank", + "travel_notification" + ], + [ + "alert my bank and let them know that i'm travelling to switzerland", + "travel_notification" + ], + [ + "alert my bank and let them know that i'm travelling to china", + "travel_notification" + ], + [ + "i'm traveling to belgium soon and want to inform my bank", + "travel_notification" + ], + [ + "i'm traveling to sweden soon and want to inform my bank", + "travel_notification" + ], + [ + "i'm traveling to morocco soon and want to inform my bank", + "travel_notification" + ], + [ + "alert my bank and let them know i'm travelling to japan", + "travel_notification" + ], + [ + "tell my bank that i will be taveling to south korea", + "travel_notification" + ], + [ + "alert my bank and tell them that i'm travelling to paris", + "travel_notification" + ], + [ + "i'm traveling to england soon and want to inform my bank", + "travel_notification" + ], + [ + "how can i tell my bank i'm going to vietnam", + "travel_notification" + ], + [ + "how do i let my bank know i'm going to vietnam", + "travel_notification" + ], + [ + "i'm going to paris soon and want to let my bank know, how do i do that", + "travel_notification" + ], + [ + "how can i let my bank know i'm going to denmark", + "travel_notification" + ], + [ + "how do i inform my bank i'm going to paris", + "travel_notification" + ], + [ + "from january to august, i will be in uruguay, please let me bank know", + "travel_notification" + ], + [ + "tell my bank that i'll be in uruguay during january to august", + "travel_notification" + ], + [ + "i will be in uruguay from january to august, please let me bank know", + "travel_notification" + ], + [ + "can you let my bank know i'll be in uruguay from january to august", + "travel_notification" + ], + [ + "please let my bank know that i will be in uruguay from january to august", + "travel_notification" + ], + [ + "tell my bank i am taking a trip to brazil from june 1st to july 1st", + "travel_notification" + ], + [ + "inform my bank i will travel to brazil from june 1st to july 1st", + "travel_notification" + ], + [ + "let me bank know i will be in brazil from june 1st to july 1st", + "travel_notification" + ], + [ + "tell my bank i will be traveling in brazil from june 1st to july 1st", + "travel_notification" + ], + [ + "tell my bank i will be in brazil from june 1st to july 1st", + "travel_notification" + ], + [ + "i'm travelling to seattle soon and want to inform my bank", + "travel_notification" + ], + [ + "i'm travelling to thailand soon and want to inform my bank", + "travel_notification" + ], + [ + "i'm travelling to spain soon and want to inform my bank", + "travel_notification" + ], + [ + "alert my bank and let them know that i'm travelling to brussels", + "travel_notification" + ], + [ + "alert my bank and let them know that i'm travelling to oslo", + "travel_notification" + ], + [ + "alert my bank and let them know that i'm travelling to stockholm", + "travel_notification" + ], + [ + "i'm travelling to boston soon and want to inform my bank", + "travel_notification" + ], + [ + "alert my bank and let them know that i'm travelling to london", + "travel_notification" + ], + [ + "i'm travelling to ireland soon and want to inform my bank", + "travel_notification" + ], + [ + "alert my bank and let them know that i'm travelling to madrid", + "travel_notification" + ], + [ + "the bank should know i am going to asia soon", + "travel_notification" + ], + [ + "since i am traveling to asia, i need to inform the bank", + "travel_notification" + ], + [ + "i need to tell bank that i am taking a trip to asia", + "travel_notification" + ], + [ + "i am going to asia in a bit, i should tell the bank", + "travel_notification" + ], + [ + "i need to let my bank know i am visiting asia soon", + "travel_notification" + ], + [ + "let my bank know i will be travelling to the cayman islands", + "travel_notification" + ], + [ + "i am going to south america, let my bank know", + "travel_notification" + ], + [ + "inform my bank i will be travelling to central africa", + "travel_notification" + ], + [ + "let my bank know i will be on travel to fes", + "travel_notification" + ], + [ + "tell my bank i will be travelling to the caribbean", + "travel_notification" + ], + [ + "please tell my bank that i will be traveling abroad", + "travel_notification" + ], + [ + "the bank needs to know that i am traveling soon", + "travel_notification" + ], + [ + "make sur eyou tell the bank that i will be traveling internationally soon", + "travel_notification" + ], + [ + "please tell the bank i will be traveling internationally", + "travel_notification" + ], + [ + "tell the bank i will be traveling internationally soon", + "travel_notification" + ], + [ + "let my bank know that i'm going to norway between march 3 and march 5", + "travel_notification" + ], + [ + "tell my bank i'm going to france", + "travel_notification" + ], + [ + "please link with my phone", + "sync_device" + ], + [ + "please connect the device to my phone", + "sync_device" + ], + [ + "please link up to my phone", + "sync_device" + ], + [ + "could you link with my phone", + "sync_device" + ], + [ + "please turn off your wifi from my phone", + "sync_device" + ], + [ + "please remove your connection to my phone", + "sync_device" + ], + [ + "please unlink my phone", + "sync_device" + ], + [ + "please get off my phone connection", + "sync_device" + ], + [ + "please desync my current mobile", + "sync_device" + ], + [ + "i no longer want this phone to sync", + "sync_device" + ], + [ + "please link up to my cell", + "sync_device" + ], + [ + "create a link with my phone", + "sync_device" + ], + [ + "stop syncing with this phone", + "sync_device" + ], + [ + "i don't want this phone synced any more", + "sync_device" + ], + [ + "desync from my iphone", + "sync_device" + ], + [ + "please immediately disconnect this mobile", + "sync_device" + ], + [ + "establish a connection to my phone", + "sync_device" + ], + [ + "my phone needs to be unsynced now", + "sync_device" + ], + [ + "could you unsync my phone please", + "sync_device" + ], + [ + "you can unsync from my phone now", + "sync_device" + ], + [ + "disconnect from my phone please", + "sync_device" + ], + [ + "please unsync phone from phone from home system", + "sync_device" + ], + [ + "i must disconnect from my phone", + "sync_device" + ], + [ + "go and disconnect from my phone", + "sync_device" + ], + [ + "you must connect to my phone", + "sync_device" + ], + [ + "please connect to my phone", + "sync_device" + ], + [ + "you have to connect to my phone", + "sync_device" + ], + [ + "go ahead and disconnect from my phone", + "sync_device" + ], + [ + "i wanna disconnect from my phone", + "sync_device" + ], + [ + "i need to disconnect from my phone", + "sync_device" + ], + [ + "you need to connect to my phone", + "sync_device" + ], + [ + "go ahead and connect to my phone", + "sync_device" + ], + [ + "get connected to my phone", + "sync_device" + ], + [ + "i want for you to connect to my phone", + "sync_device" + ], + [ + "disconnect from my phone for me", + "sync_device" + ], + [ + "would you disconnect from my phone", + "sync_device" + ], + [ + "help me to disconnect from my phone", + "sync_device" + ], + [ + "would you connect to my phone", + "sync_device" + ], + [ + "i need for you to connect to my phone", + "sync_device" + ], + [ + "i need you to disconnect from my phone", + "sync_device" + ], + [ + "i want for you to disconnect from my phone", + "sync_device" + ], + [ + "connect to my phone for me", + "sync_device" + ], + [ + "mind connecting to my phone", + "sync_device" + ], + [ + "connect with my phone please", + "sync_device" + ], + [ + "can you link to my phone", + "sync_device" + ], + [ + "will you connect to my phone", + "sync_device" + ], + [ + "please disconnect from my phone", + "sync_device" + ], + [ + "please connect with my phone", + "sync_device" + ], + [ + "please unsync from my phone", + "sync_device" + ], + [ + "pair with my smart phone", + "sync_device" + ], + [ + "i want you to disconnect from my phone", + "sync_device" + ], + [ + "unsync from my phone", + "sync_device" + ], + [ + "please connect with my smart phone", + "sync_device" + ], + [ + "disconnect from my phone now, please", + "sync_device" + ], + [ + "could you connect to my phone", + "sync_device" + ], + [ + "can you connect to my phone, please", + "sync_device" + ], + [ + "disconnect from my phone, please", + "sync_device" + ], + [ + "could you connect to my phone, please", + "sync_device" + ], + [ + "can you connect with my phone, please", + "sync_device" + ], + [ + "could you connect with my phone, please", + "sync_device" + ], + [ + "pair my phone please", + "sync_device" + ], + [ + "pair with my phone please", + "sync_device" + ], + [ + "with my phone please pair", + "sync_device" + ], + [ + "pair with my phone", + "sync_device" + ], + [ + "would you unsync the phone now please", + "sync_device" + ], + [ + "unsync my phone now please", + "sync_device" + ], + [ + "how can i unsync my phone", + "sync_device" + ], + [ + "go ahead an unsync my phone now", + "sync_device" + ], + [ + "unsync my phone", + "sync_device" + ], + [ + "please remove the phone's sync", + "sync_device" + ], + [ + "remove the sync from my phone", + "sync_device" + ], + [ + "please unsync my phone", + "sync_device" + ], + [ + "desync from my phone", + "sync_device" + ], + [ + "can we pair this with my new phone", + "sync_device" + ], + [ + "i would like to pair this with my new phone", + "sync_device" + ], + [ + "i am going to go ahead and pair this with my new phone", + "sync_device" + ], + [ + "lets pair this with my new phone", + "sync_device" + ], + [ + "i need to pair this with my phone", + "sync_device" + ], + [ + "use my phone and connect please", + "sync_device" + ], + [ + "would you please pair with my phone", + "sync_device" + ], + [ + "initiate connection with my phone, please", + "sync_device" + ], + [ + "please begin pairing with my phone", + "sync_device" + ], + [ + "will you please end the connection to my phone", + "sync_device" + ], + [ + "you can disconnect from my phone now", + "sync_device" + ], + [ + "stop the connection with my phone", + "sync_device" + ], + [ + "let's terminate connection to my phone please", + "sync_device" + ], + [ + "i want you to connect using my phone", + "sync_device" + ], + [ + "i want to disconnect the current connection to my phone", + "sync_device" + ], + [ + "disconnect from my phone now", + "sync_device" + ], + [ + "disconnect from my phone", + "sync_device" + ], + [ + "i'd like you to disconnect from my phone", + "sync_device" + ], + [ + "do you think you could disconnect from my phone", + "sync_device" + ], + [ + "can you disconnect from my phone", + "sync_device" + ], + [ + "please get off my phone", + "sync_device" + ], + [ + "are you able to get into my phone at the moment", + "sync_device" + ], + [ + "can you get access to my phone right now", + "sync_device" + ], + [ + "do you have access to my phone", + "sync_device" + ], + [ + "are you able to link to my phone", + "sync_device" + ], + [ + "is my phone connectable right now", + "sync_device" + ], + [ + "quickly disconnect the phone", + "sync_device" + ], + [ + "you have been a big help, thank you so much", + "thank_you" + ], + [ + "i appreciate your help, thank you", + "thank_you" + ], + [ + "i really appreciate your help, thank you", + "thank_you" + ], + [ + "i am very grateful", + "thank_you" + ], + [ + "i appreciate the assistance", + "thank_you" + ], + [ + "i want to thank you for helping", + "thank_you" + ], + [ + "much obliged", + "thank_you" + ], + [ + "your help is appreciated", + "thank_you" + ], + [ + "gracias", + "thank_you" + ], + [ + "i appreciate that", + "thank_you" + ], + [ + "thanks so much!", + "thank_you" + ], + [ + "many thanks", + "thank_you" + ], + [ + "appreciate it", + "thank_you" + ], + [ + "thanks!", + "thank_you" + ], + [ + "i thank you", + "thank_you" + ], + [ + "thank you kindly", + "thank_you" + ], + [ + "thank you so very much", + "thank_you" + ], + [ + "thank you for helping me", + "thank_you" + ], + [ + "i'm grateful to you", + "thank_you" + ], + [ + "you did a good job thank you", + "thank_you" + ], + [ + "good looking out", + "thank_you" + ], + [ + "i wish you were here earlier", + "thank_you" + ], + [ + "it's so much easier with you around", + "thank_you" + ], + [ + "you've been a great help", + "thank_you" + ], + [ + "thanks for the help", + "thank_you" + ], + [ + "thanks please", + "thank_you" + ], + [ + "why thank you", + "thank_you" + ], + [ + "thanks for the answer", + "thank_you" + ], + [ + "thank you very much for the answer", + "thank_you" + ], + [ + "okay thanks", + "thank_you" + ], + [ + "thanks a lot", + "thank_you" + ], + [ + "thanks a lot for the answer", + "thank_you" + ], + [ + "thank you for the answer", + "thank_you" + ], + [ + "thank you a lot for that answer", + "thank_you" + ], + [ + "thanks for helping me!", + "thank_you" + ], + [ + "i'm so glad you helped me!", + "thank_you" + ], + [ + "i appreciate your help!", + "thank_you" + ], + [ + "i am thankful for your help!", + "thank_you" + ], + [ + "i have much gratitude for your help", + "thank_you" + ], + [ + "i appreciate your help", + "thank_you" + ], + [ + "i appreciate you helping me", + "thank_you" + ], + [ + "awesome, thanks", + "thank_you" + ], + [ + "thank you so much", + "thank_you" + ], + [ + "thank you very much for the assistance", + "thank_you" + ], + [ + "i appreciate it", + "thank_you" + ], + [ + "thanks again!", + "thank_you" + ], + [ + "thanks for the info", + "thank_you" + ], + [ + "thanks for letting me know", + "thank_you" + ], + [ + "that's all i need, thanks!", + "thank_you" + ], + [ + "thanks, that's helpful", + "thank_you" + ], + [ + "thank you for the information", + "thank_you" + ], + [ + "thanks for answering my question", + "thank_you" + ], + [ + "your efforts don't go unnoticed", + "thank_you" + ], + [ + "i appreciate what you did", + "thank_you" + ], + [ + "you are so thoughtful and i appreciate your gesture", + "thank_you" + ], + [ + "you are so nice to think of me", + "thank_you" + ], + [ + "you were so kind to do that", + "thank_you" + ], + [ + "your answer pleased me", + "thank_you" + ], + [ + "i'm happy with your answer", + "thank_you" + ], + [ + "your answer was enjoyable", + "thank_you" + ], + [ + "your answer was good", + "thank_you" + ], + [ + "thanks for giving me assistance", + "thank_you" + ], + [ + "really great!", + "thank_you" + ], + [ + "appreciate the help", + "thank_you" + ], + [ + "i'm grateful for the answer you just gave me", + "thank_you" + ], + [ + "that'll work, good job!", + "thank_you" + ], + [ + "good answer, thanks for providing it", + "thank_you" + ], + [ + "i'm grateful for the assistance", + "thank_you" + ], + [ + "thanks for that!", + "thank_you" + ], + [ + "good job with assisting me", + "thank_you" + ], + [ + "nice, excellent!", + "thank_you" + ], + [ + "i'm grateful", + "thank_you" + ], + [ + "i appreciate that answer!", + "thank_you" + ], + [ + "i would like to thank you", + "thank_you" + ], + [ + "i can not thank you enough", + "thank_you" + ], + [ + "i need to thank you", + "thank_you" + ], + [ + "i really thank you", + "thank_you" + ], + [ + "let me thank you", + "thank_you" + ], + [ + "thank you!", + "thank_you" + ], + [ + "thanks for the help!", + "thank_you" + ], + [ + "you're the best!", + "thank_you" + ], + [ + "i appreciate that answer", + "thank_you" + ], + [ + "your answer is appreciated", + "thank_you" + ], + [ + "i am thankful for the answer", + "thank_you" + ], + [ + "oh sweet thanks", + "thank_you" + ], + [ + "oh, thanks", + "thank_you" + ], + [ + "merci beaucoup", + "thank_you" + ], + [ + "thanks again", + "thank_you" + ], + [ + "thanks", + "thank_you" + ], + [ + "thank you for answering that", + "thank_you" + ], + [ + "thank you", + "thank_you" + ], + [ + "thanks for that", + "thank_you" + ], + [ + "thank you for your time", + "thank_you" + ], + [ + "i appreciate the help", + "thank_you" + ], + [ + "thank ya!", + "thank_you" + ], + [ + "thanks for your response", + "thank_you" + ], + [ + "youre a doll", + "thank_you" + ], + [ + "thanks for your cooperation", + "thank_you" + ], + [ + "i owe you one!", + "thank_you" + ], + [ + "thanks for helping out", + "thank_you" + ], + [ + "will you roll a d20", + "roll_dice" + ], + [ + "will you roll a 12 sided dice", + "roll_dice" + ], + [ + "will you roll a 10 sided dice", + "roll_dice" + ], + [ + "i'd like you to roll dice", + "roll_dice" + ], + [ + "i'd like a 7 sided dice roll please", + "roll_dice" + ], + [ + "i need to roll a 10 sided die", + "roll_dice" + ], + [ + "please roll a 7 sided die", + "roll_dice" + ], + [ + "let's roll some dice", + "roll_dice" + ], + [ + "i want to roll some dice", + "roll_dice" + ], + [ + "can you roll a fair, 6 sided die", + "roll_dice" + ], + [ + "i'd like to roll a dice and get the result", + "roll_dice" + ], + [ + "can you roll a dice", + "roll_dice" + ], + [ + "i want to roll a dice", + "roll_dice" + ], + [ + "help me roll a dice", + "roll_dice" + ], + [ + "roll a dice for me", + "roll_dice" + ], + [ + "go ahead and roll those dice", + "roll_dice" + ], + [ + "i need you to roll an 8 sided dice", + "roll_dice" + ], + [ + "i want you to roll dice", + "roll_dice" + ], + [ + "go ahead and roll that 9 sided dice", + "roll_dice" + ], + [ + "roll a 7 sided dice", + "roll_dice" + ], + [ + "roll the 10 sided dice on time", + "roll_dice" + ], + [ + "roll a pair of dice", + "roll_dice" + ], + [ + "please do a dice roll", + "roll_dice" + ], + [ + "please roll a 6 sided dice", + "roll_dice" + ], + [ + "roll a 6 sided die", + "roll_dice" + ], + [ + "roll a die", + "roll_dice" + ], + [ + "roll die", + "roll_dice" + ], + [ + "please roll a die now", + "roll_dice" + ], + [ + "roll this dice", + "roll_dice" + ], + [ + "i need a 10 sided die rolled", + "roll_dice" + ], + [ + "i would like a 10 sided die rolled", + "roll_dice" + ], + [ + "would you roll the dice", + "roll_dice" + ], + [ + "role a 10 sided die for me", + "roll_dice" + ], + [ + "could you role a ten sided die", + "roll_dice" + ], + [ + "can you roll a 10 sided die", + "roll_dice" + ], + [ + "the dice need to be rolled", + "roll_dice" + ], + [ + "i would like the dice to be rolled", + "roll_dice" + ], + [ + "toss a die would you", + "roll_dice" + ], + [ + "play vegas baby roll a dice for mama", + "roll_dice" + ], + [ + "find a virtual dice and roll it for me please", + "roll_dice" + ], + [ + "roll a dice and give me a number from 1 to 6", + "roll_dice" + ], + [ + "roll dice now", + "roll_dice" + ], + [ + "roll dice", + "roll_dice" + ], + [ + "roll the dice", + "roll_dice" + ], + [ + "roll dice please", + "roll_dice" + ], + [ + "go ahead and roll the dice", + "roll_dice" + ], + [ + "please roll dice", + "roll_dice" + ], + [ + "will you roll a 6 sided dice", + "roll_dice" + ], + [ + "will you roll a 3 sided dice", + "roll_dice" + ], + [ + "will you roll a 5 sided dice", + "roll_dice" + ], + [ + "will you roll a 2 sided dice", + "roll_dice" + ], + [ + "will you roll a 4 sided dice", + "roll_dice" + ], + [ + "please roll the dice", + "roll_dice" + ], + [ + "roll a dice", + "roll_dice" + ], + [ + "give me a random number between 1 and 6", + "roll_dice" + ], + [ + "i want you to roll a dice", + "roll_dice" + ], + [ + "ai, please roll the dice", + "roll_dice" + ], + [ + "roll that dice, ai", + "roll_dice" + ], + [ + "ai, would you kindly roll the dice", + "roll_dice" + ], + [ + "ai, go ahead and roll the dice", + "roll_dice" + ], + [ + "please roll the dice, ai", + "roll_dice" + ], + [ + "could you roll a 6 sided dice", + "roll_dice" + ], + [ + "can you roll a 6 sided dice", + "roll_dice" + ], + [ + "i'd like you to roll a 6 sided dice", + "roll_dice" + ], + [ + "roll a 6 sided dice for me", + "roll_dice" + ], + [ + "could you roll the 8 sided dice", + "roll_dice" + ], + [ + "can you roll the 12 sided dice please", + "roll_dice" + ], + [ + "go ahead and roll the 6 sided dice for me", + "roll_dice" + ], + [ + "please roll the 10 sided dice", + "roll_dice" + ], + [ + "please roll the 5 sided dice", + "roll_dice" + ], + [ + "give the dice a roll", + "roll_dice" + ], + [ + "roll the dice for me", + "roll_dice" + ], + [ + "can you roll the dice", + "roll_dice" + ], + [ + "could you roll the dice please", + "roll_dice" + ], + [ + "i need you to roll dice now", + "roll_dice" + ], + [ + "provide a random roll of the dice", + "roll_dice" + ], + [ + "can you roll dice", + "roll_dice" + ], + [ + "throw the dice", + "roll_dice" + ], + [ + "roll the dice!", + "roll_dice" + ], + [ + "roll the die!", + "roll_dice" + ], + [ + "shoot the dice!", + "roll_dice" + ], + [ + "throw the dice!", + "roll_dice" + ], + [ + "roll them bones!", + "roll_dice" + ], + [ + "6 sided dice roll", + "roll_dice" + ], + [ + "roll 6 sided die", + "roll_dice" + ], + [ + "roll die, 6 sided", + "roll_dice" + ], + [ + "roll a die with 6 sides please", + "roll_dice" + ], + [ + "roll a die with 6 sides", + "roll_dice" + ], + [ + "what do you get if you roll a six sided dice", + "roll_dice" + ], + [ + "tell me the result of a dice roll with five sides", + "roll_dice" + ], + [ + "what do you get when you roll a dice with five sides", + "roll_dice" + ], + [ + "i'd like to know how much you get when you roll a ten sided dice", + "roll_dice" + ], + [ + "when you roll a six sided dice what is the results", + "roll_dice" + ], + [ + "roll an eight sided die", + "roll_dice" + ], + [ + "roll a pair of eight sided dice", + "roll_dice" + ], + [ + "i need an algorithm to give me the result of rolling one twelve sided die", + "roll_dice" + ], + [ + "what number do you get when you roll one six sided die", + "roll_dice" + ], + [ + "roll a pair of six sided dice", + "roll_dice" + ], + [ + "can you roll a 4 sided dice", + "roll_dice" + ], + [ + "roll a seven sided dice for me", + "roll_dice" + ], + [ + "jello should stay in the fridge for how long", + "food_last" + ], + [ + "when will my milk be no good", + "food_last" + ], + [ + "when will my eggs go bad", + "food_last" + ], + [ + "how long will my eggs be good for", + "food_last" + ], + [ + "what date does my apple juice expire", + "food_last" + ], + [ + "how long until my cereal is ruined", + "food_last" + ], + [ + "what's the max time i can leave a green pepper in the fridge", + "food_last" + ], + [ + "what's the time frame for hamburger stored in the freezer to go bad", + "food_last" + ], + [ + "how long can i keep deer meat in the freezer before it's unedible", + "food_last" + ], + [ + "has the leftover hamburger from last saturday gone bad", + "food_last" + ], + [ + "is there a limit to how long you can store bread in the freezer", + "food_last" + ], + [ + "i've had eggs in the fridge since monday, are they still safe", + "food_last" + ], + [ + "how long can you keep chicken in the freeze before it goes bad", + "food_last" + ], + [ + "is the tofu i put in the fridge tuesday still edible today", + "food_last" + ], + [ + "how long does cottage cheese keep in the fridge", + "food_last" + ], + [ + "what's the shelf life of guacamole in the fridge", + "food_last" + ], + [ + "how long does it take for dough in the freezer to go off", + "food_last" + ], + [ + "will i get sick if i eat the tuna salad from friday", + "food_last" + ], + [ + "i put some leftover stew in the fridge and want to know how long it'll last", + "food_last" + ], + [ + "how long can i leave tuna casserole in the fridge", + "food_last" + ], + [ + "is it still safe to consume the cake she backed last thursday", + "food_last" + ], + [ + "can i safely eat chicken that i've had in my fridge since monday", + "food_last" + ], + [ + "can i eat chicken if it's been in the fridge since monday", + "food_last" + ], + [ + "is it safe to eat chicken that has been in the fridge since monday", + "food_last" + ], + [ + "will the chicken have gone bad if it's been in the fridge since monday", + "food_last" + ], + [ + "is it okay to eat chicken that i put in the fridge on monday", + "food_last" + ], + [ + "how soon until the milk expires", + "food_last" + ], + [ + "the milk will expire when", + "food_last" + ], + [ + "tell me when the milk will expire", + "food_last" + ], + [ + "what is the expiration date of the milk", + "food_last" + ], + [ + "will it be all right for me to drink milk i've had in the fridge since tuesday", + "food_last" + ], + [ + "what is the shelf life for beef in the freezer", + "food_last" + ], + [ + "can i eat the eggs i've had in the fridge since 2/21", + "food_last" + ], + [ + "how long can i keep a ham in the freezer", + "food_last" + ], + [ + "how long will chicken last in the freezer", + "food_last" + ], + [ + "can i drink milk i've kept in the fridge since wednesday", + "food_last" + ], + [ + "how long will steaks last in the freezer", + "food_last" + ], + [ + "what's the shelf life for eggs in the fridge", + "food_last" + ], + [ + "how long can i store eggs in the fridge", + "food_last" + ], + [ + "will it be okay for me to eat my leftover turkey from monday that's been in my fridge", + "food_last" + ], + [ + "how long can i keep fish in the freezer before it gets ruined", + "food_last" + ], + [ + "how long will my milk be good in the fridge", + "food_last" + ], + [ + "how long will eggs last in the fridge", + "food_last" + ], + [ + "i've had eggs in the fridge since monday are they safe eat", + "food_last" + ], + [ + "is the meatloaf still good to eat, i've had it in the refrigerator since last monday", + "food_last" + ], + [ + "apples expire in how long", + "food_last" + ], + [ + "cut cucumbers can stay in the fridge for how long before spoiling", + "food_last" + ], + [ + "ribs can stay in the fridge for how long before they turn", + "food_last" + ], + [ + "when do ribs expire", + "food_last" + ], + [ + "bananas expire in how long", + "food_last" + ], + [ + "how long does it take tomatoes to expire", + "food_last" + ], + [ + "how long can i keep avocados in the fridge before they go bad", + "food_last" + ], + [ + "how long can i keep macaroni in the fridge before it spoils", + "food_last" + ], + [ + "oranges expire in how long", + "food_last" + ], + [ + "cut carrots can stay in the fridge for how long before going bad", + "food_last" + ], + [ + "i wanna know how long can i keep pizza in the freezer for before it goes bad", + "food_last" + ], + [ + "how long can i keep pizza in the freezer for before it goes bad", + "food_last" + ], + [ + "it seems to be that i have had pizza in the fridge since monday, so is it safe to eat", + "food_last" + ], + [ + "how long can pizza be in the fridge", + "food_last" + ], + [ + "so how long can pizza last in the fridge", + "food_last" + ], + [ + "it turns out i have had pizza in the fridge since monday, so is it safe to eat", + "food_last" + ], + [ + "i got to know how long can i keep pizza in the freezer for before it goes bad", + "food_last" + ], + [ + "so it seems i have had pizza in the fridge since monday, so is it safe to eat", + "food_last" + ], + [ + "how long can i leave pizza in the fridge", + "food_last" + ], + [ + "tell me how long can i keep pizza in the freezer for before it goes bad", + "food_last" + ], + [ + "how long can i have pizza in the fridge", + "food_last" + ], + [ + "i have had pizza in the fridge since monday, so is it safe to eat", + "food_last" + ], + [ + "so i have had pizza in the fridge since monday, so is it safe to eat", + "food_last" + ], + [ + "i need to know how long can i keep pizza in the freezer for before it goes bad", + "food_last" + ], + [ + "how long can i put pizza in the fridge", + "food_last" + ], + [ + "what is the length of time i can leave pork in the fridge", + "food_last" + ], + [ + "how long until pork spoils in the fridge", + "food_last" + ], + [ + "how long is pork good in the fridge", + "food_last" + ], + [ + "is there a time limit on leaving pork in the fridge", + "food_last" + ], + [ + "when does pork go bad in the fridge", + "food_last" + ], + [ + "when does milk expire", + "food_last" + ], + [ + "how long does it take frozen steaks to go bad", + "food_last" + ], + [ + "how long does bread last in the freezer", + "food_last" + ], + [ + "how long does bread last", + "food_last" + ], + [ + "how long can i expect chicken breast to be good for before expiration", + "food_last" + ], + [ + "how long will eggs keep in the freezer", + "food_last" + ], + [ + "how long do i have before frozen chicken will go bad", + "food_last" + ], + [ + "how long are eggs good for", + "food_last" + ], + [ + "how long can i expect to keep steak in the freezer", + "food_last" + ], + [ + "what's the expiration for steak", + "food_last" + ], + [ + "is it ok to eat alfredo that's been in the fridge since last sunday", + "food_last" + ], + [ + "my chinese food has sat in the fridge since friday but can i still eat it", + "food_last" + ], + [ + "how long is it safe to leave a burger in the refrigerator", + "food_last" + ], + [ + "what is the fridge life of spahghetti", + "food_last" + ], + [ + "check if it is ok to eat cheese that has been in the refrigerator since last tuesday", + "food_last" + ], + [ + "give me the length of time that i can leave milk in my fridge", + "food_last" + ], + [ + "how long is it safe to leave shrimp in the fridge", + "food_last" + ], + [ + "i have had pasta in the fridge since monday, can is till consume it", + "food_last" + ], + [ + "am i good to eat this burger from the fridge that i got two mondays ago", + "food_last" + ], + [ + "when will lettuce in the fridge go bad", + "food_last" + ], + [ + "i've got some chips from monday, will they still be ok to eat", + "food_last" + ], + [ + "i have potatoes in the cupboard from wednesday, are they fine", + "food_last" + ], + [ + "i have tomatoes from tuesday, do you think those are still good", + "food_last" + ], + [ + "i've had these burger patties in the freezer since saturday, are they still fine to cook", + "food_last" + ], + [ + "if i have garlic from sunday is it still fine to use", + "food_last" + ], + [ + "how long will the turkey take to cook", + "cook_time" + ], + [ + "so how long do you think the chicken will take", + "cook_time" + ], + [ + "how long does pizza take to cook", + "cook_time" + ], + [ + "how long is the chicken gonna take", + "cook_time" + ], + [ + "how long will the chicken take to cook", + "cook_time" + ], + [ + "how long does it take to cook roast beef", + "cook_time" + ], + [ + "how long does it take to boil an egg", + "cook_time" + ], + [ + "how long does it take to bake a pork loin", + "cook_time" + ], + [ + "how long does it take to make roast chicken", + "cook_time" + ], + [ + "how long does it take to cook a pork chop", + "cook_time" + ], + [ + "how much time do i need to make the chicken", + "cook_time" + ], + [ + "what's the prep and cooking time on pizza dough", + "cook_time" + ], + [ + "how long does it take to make lasagna", + "cook_time" + ], + [ + "how long will it take to make the wings", + "cook_time" + ], + [ + "what's the cooking time for the cake", + "cook_time" + ], + [ + "the steak must go under the broiler for how long", + "cook_time" + ], + [ + "how long do i put the casserole in", + "cook_time" + ], + [ + "if i cook the pizza at 400 degrees how long must it be in for", + "cook_time" + ], + [ + "how long do you need to put the cuish in for", + "cook_time" + ], + [ + "the sauce must simmer then go in the oven but for how long", + "cook_time" + ], + [ + "i need the cooking length for a turkey", + "cook_time" + ], + [ + "how many minutes do i cook baked ziti", + "cook_time" + ], + [ + "how long does it take to cook ham", + "cook_time" + ], + [ + "i need to know how long to do a pot roast in a slow cooker", + "cook_time" + ], + [ + "how long does a roast take", + "cook_time" + ], + [ + "how long is it acceptable to carmelize onions", + "cook_time" + ], + [ + "when should i take an apple pie out", + "cook_time" + ], + [ + "how long do you cook a salmon", + "cook_time" + ], + [ + "how much time does it take to boil an egg", + "cook_time" + ], + [ + "what is the duration of time cookies should be in the oven", + "cook_time" + ], + [ + "about how long should you cook lasagna", + "cook_time" + ], + [ + "what is the prep time for a 10 lb turkey", + "cook_time" + ], + [ + "how many minutes to melt cheese", + "cook_time" + ], + [ + "how long to reheat chinese food", + "cook_time" + ], + [ + "how long do you cook pasta for", + "cook_time" + ], + [ + "about how long should you cook a 10 pound turkey", + "cook_time" + ], + [ + "how long does it take to prepare pot roast", + "cook_time" + ], + [ + "how long to microwave a pizza", + "cook_time" + ], + [ + "how long should i cook a glazed ham", + "cook_time" + ], + [ + "how long should i cook a spiral ham", + "cook_time" + ], + [ + "how long do the brownies have to cook", + "cook_time" + ], + [ + "how long to i bake the brownies", + "cook_time" + ], + [ + "how long should i bake the brownies for", + "cook_time" + ], + [ + "for how long should i bake the brownies", + "cook_time" + ], + [ + "how long do the brownies need to be in the oven", + "cook_time" + ], + [ + "how long does this dish need to be in the oven", + "cook_time" + ], + [ + "for how long does this need to cook", + "cook_time" + ], + [ + "what do i set the timer for if i'm making gyoza", + "cook_time" + ], + [ + "what should i put on the timer to cook this dish", + "cook_time" + ], + [ + "how long do i cook this dish of rice", + "cook_time" + ], + [ + "how long should a cake bake", + "cook_time" + ], + [ + "how long to microwave a frozen dinner", + "cook_time" + ], + [ + "what's the preparation time for spaghetti", + "cook_time" + ], + [ + "how long should this be in the oven", + "cook_time" + ], + [ + "how long to cook a frozen pizza", + "cook_time" + ], + [ + "i want to bake brownies, how long do they bake for", + "cook_time" + ], + [ + "how long do you bake a cake", + "cook_time" + ], + [ + "how long does it take to make shrimp scampi", + "cook_time" + ], + [ + "how long to cook steak for", + "cook_time" + ], + [ + "how long do you cook a hamburger for", + "cook_time" + ], + [ + "how long should i expect beef stroganoff to prepare", + "cook_time" + ], + [ + "how long do i cook steak", + "cook_time" + ], + [ + "what's the cooking time for chicken alfredo", + "cook_time" + ], + [ + "how long does it take pork to cook", + "cook_time" + ], + [ + "how much time do i need to prepare chicken", + "cook_time" + ], + [ + "noodles need to cook for how long", + "cook_time" + ], + [ + "how long should i boil noodles for", + "cook_time" + ], + [ + "how long do noodles need to cook", + "cook_time" + ], + [ + "what time should i cook noodles for", + "cook_time" + ], + [ + "how long do i need to make lasagne", + "cook_time" + ], + [ + "how long will it take me to make baked chicken", + "cook_time" + ], + [ + "how long will it take to fix shepherd's pie", + "cook_time" + ], + [ + "how long do cheeseburgers take to make", + "cook_time" + ], + [ + "how long should i cook the ham for", + "cook_time" + ], + [ + "how long should i cook the eggs for", + "cook_time" + ], + [ + "how long should i cook the asparagus for", + "cook_time" + ], + [ + "how long should i cook the pasta for", + "cook_time" + ], + [ + "how long should i cook the steak for", + "cook_time" + ], + [ + "what is the necessary amount of time required to prepare pot roast", + "cook_time" + ], + [ + "how long am i supposed to cook pork loin", + "cook_time" + ], + [ + "how long must i cook spaghetti for", + "cook_time" + ], + [ + "tell me how long i will need to spend preparing a meat loaf dish", + "cook_time" + ], + [ + "i need to know the preparation time required for fried chicken", + "cook_time" + ], + [ + "how long should i spend preparing roast beef", + "cook_time" + ], + [ + "what amount of time do i need to cook lobster for", + "cook_time" + ], + [ + "what is the proper time to cook steak for", + "cook_time" + ], + [ + "how long should i cook chicken", + "cook_time" + ], + [ + "tell me how long i ought to spend preparing fajitas", + "cook_time" + ], + [ + "how long should i cook chicken thighs", + "cook_time" + ], + [ + "how long should i cook a ny steak", + "cook_time" + ], + [ + "how long do i cook pork", + "cook_time" + ], + [ + "how long do i cook the chicken roast", + "cook_time" + ], + [ + "how long do i cook chicken breast", + "cook_time" + ], + [ + "what's the time it takes to make a decent omelette", + "cook_time" + ], + [ + "how long should i fry an egg for", + "cook_time" + ], + [ + "what's the prep time for a garden salad", + "cook_time" + ], + [ + "what's the usual time for tuna casserole", + "cook_time" + ], + [ + "how long do you need to bake chicken for it to be safe to eat", + "cook_time" + ], + [ + "how long should i cook a steak for", + "cook_time" + ], + [ + "how long should i wait before i can bake bread with homemade dough", + "cook_time" + ], + [ + "remind me to call my mother saturday morning", + "reminder_update" + ], + [ + "please set up a reminder i need to remember to ask about work", + "reminder_update" + ], + [ + "make a reminder for me to do my resume", + "reminder_update" + ], + [ + "remind me to take out the garbage in the morning", + "reminder_update" + ], + [ + "the next time it rains, remind me to close the windows", + "reminder_update" + ], + [ + "could you make me a reminder to do the floors", + "reminder_update" + ], + [ + "i need a reminder set for signing up for the conference", + "reminder_update" + ], + [ + "set a reminder for me to call my brother at 8 pm", + "reminder_update" + ], + [ + "make me a reminder about booking it", + "reminder_update" + ], + [ + "at 4 tomorrow afternoon, remind me to start the oven", + "reminder_update" + ], + [ + "how about a reminder", + "reminder_update" + ], + [ + "i would like a reminder", + "reminder_update" + ], + [ + "i need to make a reminder please", + "reminder_update" + ], + [ + "please give me a reminder", + "reminder_update" + ], + [ + "can you set me a reminder", + "reminder_update" + ], + [ + "can i set a reminder", + "reminder_update" + ], + [ + "please make a reminder", + "reminder_update" + ], + [ + "add a reminder to check how the body is decomposing", + "reminder_update" + ], + [ + "remind me to set the meat out to defrost", + "reminder_update" + ], + [ + "create a reminder for me to exercise this week", + "reminder_update" + ], + [ + "will you add a reminder for me", + "reminder_update" + ], + [ + "add a reminder to pick milk up at the store", + "reminder_update" + ], + [ + "make a reminder to do my taxes", + "reminder_update" + ], + [ + "set a reminder to remind me to check when my car payment is", + "reminder_update" + ], + [ + "set a reminder for me to take my meds", + "reminder_update" + ], + [ + "can you create a reminder", + "reminder_update" + ], + [ + "create a reminder for me to send flowers to my mom for mother's day", + "reminder_update" + ], + [ + "i'd like to have a reminder made", + "reminder_update" + ], + [ + "set a reminder for later", + "reminder_update" + ], + [ + "please remind me later", + "reminder_update" + ], + [ + "remind me again please", + "reminder_update" + ], + [ + "remind me later", + "reminder_update" + ], + [ + "please remind me at a later time", + "reminder_update" + ], + [ + "set a reminder", + "reminder_update" + ], + [ + "remind me", + "reminder_update" + ], + [ + "please remind me of something", + "reminder_update" + ], + [ + "i need a reminder", + "reminder_update" + ], + [ + "i would like to be reminded", + "reminder_update" + ], + [ + "set a reminder for me", + "reminder_update" + ], + [ + "i need a reminder to remind me to do something", + "reminder_update" + ], + [ + "i want you to remind me of something", + "reminder_update" + ], + [ + "i need you to remind me to get something done", + "reminder_update" + ], + [ + "remind me to call the vet tomorrow", + "reminder_update" + ], + [ + "set a reminder for me to do this in a bit", + "reminder_update" + ], + [ + "can you set a reminder for the meeting", + "reminder_update" + ], + [ + "set a reminder to go dress shopping", + "reminder_update" + ], + [ + "remember to remind me of this later", + "reminder_update" + ], + [ + "i need to set a reminder to go to the post office", + "reminder_update" + ], + [ + "set a reminder for tomorrows meeting", + "reminder_update" + ], + [ + "set a reminder for the movie", + "reminder_update" + ], + [ + "set a reminder to go grocery shopping", + "reminder_update" + ], + [ + "set a reminder to feed the dogs", + "reminder_update" + ], + [ + "set a reminder to go check the mail", + "reminder_update" + ], + [ + "make a reminder to change the cat litter", + "reminder_update" + ], + [ + "set a reminder for my doctors appointment", + "reminder_update" + ], + [ + "dont forget to set a reminder to pay the bills", + "reminder_update" + ], + [ + "please remind me to do this later", + "reminder_update" + ], + [ + "remind me to do this in awhile", + "reminder_update" + ], + [ + "help me set a reminder to work out", + "reminder_update" + ], + [ + "dont let me forget to do that thing later", + "reminder_update" + ], + [ + "make a reminder to work out at the gym", + "reminder_update" + ], + [ + "set a reminder to pick up the kids", + "reminder_update" + ], + [ + "set a reminder to call my mom", + "reminder_update" + ], + [ + "remind me to take the chicken out in a hour", + "reminder_update" + ], + [ + "set reminder to prepare for my meeting at 10 am", + "reminder_update" + ], + [ + "set reminder for tomorrow to eat", + "reminder_update" + ], + [ + "remind me to bring a jacket in tomorrow", + "reminder_update" + ], + [ + "set a reminder to bring a book to work tomorrow", + "reminder_update" + ], + [ + "set a new reminder for tomorrow at 4am", + "reminder_update" + ], + [ + "make reminder to pay rent on the 30th of every month", + "reminder_update" + ], + [ + "open up a reminder, pay taxes on monday", + "reminder_update" + ], + [ + "new reminder, please", + "reminder_update" + ], + [ + "create a reminder to give the cat her flea medicine", + "reminder_update" + ], + [ + "set up a reminder to give the cat her flea medicine", + "reminder_update" + ], + [ + "i need you to make a reminder for me to give the cat her flea medicine", + "reminder_update" + ], + [ + "make a reminder, pay taxes on monday", + "reminder_update" + ], + [ + "set reminder pay taxes on monday", + "reminder_update" + ], + [ + "make a reminder to give the cat her flea medicine", + "reminder_update" + ], + [ + "set up an alarm to remind me to give my cat her flea medicine", + "reminder_update" + ], + [ + "set reminder to feed cat tonight at 6pm", + "reminder_update" + ], + [ + "set a reminder for monday pay taxes", + "reminder_update" + ], + [ + "create a reminder to pay taxes on monday", + "reminder_update" + ], + [ + "remind me to use the bathroom", + "reminder_update" + ], + [ + "please reminder for car meet", + "reminder_update" + ], + [ + "remind me to clean room", + "reminder_update" + ], + [ + "i need to be notified to clean the room", + "reminder_update" + ], + [ + "remind me tommorow at 3pm i have a doctors appointment", + "reminder_update" + ], + [ + "remind me friday to call my mother", + "reminder_update" + ], + [ + "make me a reminder that tommorow is trash day", + "reminder_update" + ], + [ + "set up a reminder that i need to pay my car ins the 23rd", + "reminder_update" + ], + [ + "set up a reminder to mail a check tommorow", + "reminder_update" + ], + [ + "i need to take out the trash please remind me", + "reminder_update" + ], + [ + "set a reminder to take out the trash", + "reminder_update" + ], + [ + "tell me to take out the trash in an hour", + "reminder_update" + ], + [ + "remind me to take out the trash", + "reminder_update" + ], + [ + "please remind me to take out the trash", + "reminder_update" + ], + [ + "i need to be reminded to pray", + "reminder_update" + ], + [ + "i want to get reminded to clean my room", + "reminder_update" + ], + [ + "remind me to call bob", + "reminder_update" + ], + [ + "give me a reminder for calling bill", + "reminder_update" + ], + [ + "immediately the credit card company must be told that i lost my card from them", + "report_lost_card" + ], + [ + "i lost my debit card and need it reported as lost", + "report_lost_card" + ], + [ + "i can't seem to find my gold card and want it reported as lost", + "report_lost_card" + ], + [ + "i lost my chase bank card and want it labeled as lost", + "report_lost_card" + ], + [ + "can you report my td bank card as lost", + "report_lost_card" + ], + [ + "i misplaced my visa and need it marked as lost", + "report_lost_card" + ], + [ + "what do i do if my visa card got stolen", + "report_lost_card" + ], + [ + "what should i do when my visa card is stolen", + "report_lost_card" + ], + [ + "my visa card was stolen", + "report_lost_card" + ], + [ + "my visa card got stolen", + "report_lost_card" + ], + [ + "i think my visa card was stolen", + "report_lost_card" + ], + [ + "my visa has been stolen by someone", + "report_lost_card" + ], + [ + "someone stole my mastercade", + "report_lost_card" + ], + [ + "my visa was stolen", + "report_lost_card" + ], + [ + "my american express card needs to be reported as stolen", + "report_lost_card" + ], + [ + "my discover card has been stolen", + "report_lost_card" + ], + [ + "report lost card to discover company", + "report_lost_card" + ], + [ + "report discover card as lost", + "report_lost_card" + ], + [ + "how do i report a lost discover credit card", + "report_lost_card" + ], + [ + "where to report lost discover credit card", + "report_lost_card" + ], + [ + "report lost card", + "report_lost_card" + ], + [ + "report a lost card here", + "report_lost_card" + ], + [ + "please report my stolen card", + "report_lost_card" + ], + [ + "could you please help me, my card has been stolen and i need to report it", + "report_lost_card" + ], + [ + "my credit card has been stolen, please report it", + "report_lost_card" + ], + [ + "oh no, report my card, it's stolen", + "report_lost_card" + ], + [ + "i would like to have my card reported as stolen", + "report_lost_card" + ], + [ + "i need to report a card that's been lost but i dont know how", + "report_lost_card" + ], + [ + "how can i report a card that has been lost", + "report_lost_card" + ], + [ + "file a report for a lost american express card", + "report_lost_card" + ], + [ + "help me report my lost mastercard", + "report_lost_card" + ], + [ + "i lost my card, how should i report that", + "report_lost_card" + ], + [ + "what should i do if my card is lost", + "report_lost_card" + ], + [ + "report my lost visa card", + "report_lost_card" + ], + [ + "i lost my amex and need to report it", + "report_lost_card" + ], + [ + "i have to report a lost visa card", + "report_lost_card" + ], + [ + "walk me through the process of reporting a lost card", + "report_lost_card" + ], + [ + "what can i do if my card is lost", + "report_lost_card" + ], + [ + "my card is lost what do i do", + "report_lost_card" + ], + [ + "my card is lost how do i report it", + "report_lost_card" + ], + [ + "what must i do to report my card lost", + "report_lost_card" + ], + [ + "can you help me report my lost card please", + "report_lost_card" + ], + [ + "my card is lost please report it", + "report_lost_card" + ], + [ + "i need to report that my card has been lost", + "report_lost_card" + ], + [ + "i want you to repord my card as lost", + "report_lost_card" + ], + [ + "i lost my card, what do i do", + "report_lost_card" + ], + [ + "i need to report that my card is lost", + "report_lost_card" + ], + [ + "i need to replace my lost card", + "report_lost_card" + ], + [ + "what do i do if i lost my card", + "report_lost_card" + ], + [ + "how do i report a lost card", + "report_lost_card" + ], + [ + "someone stole my discover card", + "report_lost_card" + ], + [ + "my american saving bank was stolen", + "report_lost_card" + ], + [ + "someone stole my discover credit card", + "report_lost_card" + ], + [ + "someone stole my capital one credit card", + "report_lost_card" + ], + [ + "my capital one credit card was stolen", + "report_lost_card" + ], + [ + "my card is to be reported stolen", + "report_lost_card" + ], + [ + "my stolen card needs to be reported", + "report_lost_card" + ], + [ + "i need to report my stolen card", + "report_lost_card" + ], + [ + "i have to report my card as stolen", + "report_lost_card" + ], + [ + "i am obliged to report my stolen card", + "report_lost_card" + ], + [ + "i need to report my card as stolen, please", + "report_lost_card" + ], + [ + "i can't find my mastercard and i want to report it as lost, please", + "report_lost_card" + ], + [ + "i can't find my visa card and i want to report it as lost", + "report_lost_card" + ], + [ + "i can't find my mastercard and i want to report it as lost", + "report_lost_card" + ], + [ + "i would like to report my card as stolen", + "report_lost_card" + ], + [ + "i can't find my visa card and i want to report it as lost, please", + "report_lost_card" + ], + [ + "i'd like to report my card as stolen", + "report_lost_card" + ], + [ + "i'd like to report my card as stolen, please", + "report_lost_card" + ], + [ + "i can't locate my mastercard and i want to report it as lost, please", + "report_lost_card" + ], + [ + "i would like to report my card as stolen, please", + "report_lost_card" + ], + [ + "i need to report a stolen card, please", + "report_lost_card" + ], + [ + "i think my card is stolen and needs to be reported", + "report_lost_card" + ], + [ + "i would like to report a stolen card", + "report_lost_card" + ], + [ + "is there anyway, i can report my card being stolen", + "report_lost_card" + ], + [ + "my card is stolen, i need to report it", + "report_lost_card" + ], + [ + "my new debit card is lost and i need to report it", + "report_lost_card" + ], + [ + "my bronze card is missing i would like to report it as lost", + "report_lost_card" + ], + [ + "i lost my purple credit card and need to report it", + "report_lost_card" + ], + [ + "i lost my silicon valley card", + "report_lost_card" + ], + [ + "i lost my commerce card and need to report it as lost", + "report_lost_card" + ], + [ + "someone stole my card", + "report_lost_card" + ], + [ + "i need help since someone stole my card", + "report_lost_card" + ], + [ + "my credit card was stolen", + "report_lost_card" + ], + [ + "i need to report credit card theft", + "report_lost_card" + ], + [ + "who do i report card theft to", + "report_lost_card" + ], + [ + "i want to report my card as lost", + "report_lost_card" + ], + [ + "i need to report a lost card", + "report_lost_card" + ], + [ + "what do i do to report a lost card", + "report_lost_card" + ], + [ + "how do i report my lost card", + "report_lost_card" + ], + [ + "help me report a lost card", + "report_lost_card" + ], + [ + "can you report my lost discover card", + "report_lost_card" + ], + [ + "report my card as lost", + "report_lost_card" + ], + [ + "i lost my card how do i report it", + "report_lost_card" + ], + [ + "i lost my discover card, i want to report it", + "report_lost_card" + ], + [ + "i want to report my discover card as lost", + "report_lost_card" + ], + [ + "i can't find my discover card, how do i report it", + "report_lost_card" + ], + [ + "i can't find my credit card and i want to report it as lost", + "report_lost_card" + ], + [ + "i can't find my insurance card and i want to report it as lost", + "report_lost_card" + ], + [ + "i can't find my student id card and i want to report it as lost", + "report_lost_card" + ], + [ + "i need to report my card as stolen, who do i tell", + "report_lost_card" + ], + [ + "what about changing the sugar for baking soda", + "ingredient_substitution" + ], + [ + "can i swap sugar for salt", + "ingredient_substitution" + ], + [ + "would it be possible to replace the salt with baking soda", + "ingredient_substitution" + ], + [ + "instead of pepper, can i use salt", + "ingredient_substitution" + ], + [ + "can i take out the olive oil and use lard", + "ingredient_substitution" + ], + [ + "can i use water instead of milk", + "ingredient_substitution" + ], + [ + "it is okay to use water in place of milk", + "ingredient_substitution" + ], + [ + "it is okay to replace water instead of milk", + "ingredient_substitution" + ], + [ + "is it okay to switch water for milk", + "ingredient_substitution" + ], + [ + "will it be okay if i use water instead of milk", + "ingredient_substitution" + ], + [ + "can i substitute ginger for garlic", + "ingredient_substitution" + ], + [ + "can i substitute rice for potatoes", + "ingredient_substitution" + ], + [ + "can i substitute oregano for basil", + "ingredient_substitution" + ], + [ + "can i substitute bacon for sausage", + "ingredient_substitution" + ], + [ + "can i substitute honey for sugar", + "ingredient_substitution" + ], + [ + "can i switch cream with milk in a recipe", + "ingredient_substitution" + ], + [ + "can i exchange milk for cream in recipes", + "ingredient_substitution" + ], + [ + "is milk an ok substitute for cream", + "ingredient_substitution" + ], + [ + "can i use milk instead of cream", + "ingredient_substitution" + ], + [ + "can i switch cream out for milk", + "ingredient_substitution" + ], + [ + "can i substitute skim milk for whole milk", + "ingredient_substitution" + ], + [ + "is it okay to substitute oregano for basil", + "ingredient_substitution" + ], + [ + "can i use colby jack cheese instead of cheddar in a recipe", + "ingredient_substitution" + ], + [ + "can i use dark brown sugar instead of brown sugar", + "ingredient_substitution" + ], + [ + "can i substitute lemon juice for vinegar", + "ingredient_substitution" + ], + [ + "can i use apple juice instead of grape juice", + "ingredient_substitution" + ], + [ + "can i substitute apple juice for wine", + "ingredient_substitution" + ], + [ + "can i substitute vinegar for apple cider vinegar", + "ingredient_substitution" + ], + [ + "can i substitute lemon juice for lime juice", + "ingredient_substitution" + ], + [ + "can i use sour cream instead of yogurt", + "ingredient_substitution" + ], + [ + "is it possible to substitute apple cider vinegar for lemons", + "ingredient_substitution" + ], + [ + "i need to know if i could substitute apple sauce with eggs", + "ingredient_substitution" + ], + [ + "is honey a good sugar substitute", + "ingredient_substitution" + ], + [ + "could i use olive oil instead of grape seed oil", + "ingredient_substitution" + ], + [ + "can i use flour as a substitute for bread crumbs", + "ingredient_substitution" + ], + [ + "i need to swap salt for baking soda", + "ingredient_substitution" + ], + [ + "i wanna swap salt for baking soda", + "ingredient_substitution" + ], + [ + "i need to sub sugar for salt", + "ingredient_substitution" + ], + [ + "can i sub sugar for salt", + "ingredient_substitution" + ], + [ + "is it ok to sub sugar for salt", + "ingredient_substitution" + ], + [ + "let me swap salt for baking soda", + "ingredient_substitution" + ], + [ + "please allow me to swap salt for baking soda", + "ingredient_substitution" + ], + [ + "is it acceptable to swap salt for baking soda", + "ingredient_substitution" + ], + [ + "i gotta sub sugar for salt", + "ingredient_substitution" + ], + [ + "i wanna sub sugar for salt", + "ingredient_substitution" + ], + [ + "can i use flour instead of cornstarch to make gravy", + "ingredient_substitution" + ], + [ + "can i substitute yogurt for sour cream", + "ingredient_substitution" + ], + [ + "if a recipe calls for sour cream, can i use yogurt", + "ingredient_substitution" + ], + [ + "can i use sour cream in place of creme fraiche", + "ingredient_substitution" + ], + [ + "can i use yogurt in place of sour cream", + "ingredient_substitution" + ], + [ + "can i use sour cream instead of milk", + "ingredient_substitution" + ], + [ + "i don't have sour cream, can i use yogurt instead", + "ingredient_substitution" + ], + [ + "can i swap yogurt for sour cream", + "ingredient_substitution" + ], + [ + "can yogurt be used for sour cream", + "ingredient_substitution" + ], + [ + "is it fine to sub bread flour with all-purpose flour", + "ingredient_substitution" + ], + [ + "are you able to sub white sugar for brown sugar", + "ingredient_substitution" + ], + [ + "can you sub half and half for heavy whipping cream", + "ingredient_substitution" + ], + [ + "can i use baking powder instead of baking soda", + "ingredient_substitution" + ], + [ + "do you think i can sub honey for sugar", + "ingredient_substitution" + ], + [ + "proper to substitute cumin for tumeric", + "ingredient_substitution" + ], + [ + "can substitute cumin for tumeric", + "ingredient_substitution" + ], + [ + "cumin may be substituted for tumeric", + "ingredient_substitution" + ], + [ + "is almond milk an acceptable substitute for milk", + "ingredient_substitution" + ], + [ + "can i swap coconut milk for condensed milk", + "ingredient_substitution" + ], + [ + "can i substitute eggs for milk in a recipe", + "ingredient_substitution" + ], + [ + "could i use white wine instead of red wine in a recipe", + "ingredient_substitution" + ], + [ + "can i substitute ketchup for mustard", + "ingredient_substitution" + ], + [ + "can i substitute milk for almond milk", + "ingredient_substitution" + ], + [ + "is it acceptable to swap milk for water", + "ingredient_substitution" + ], + [ + "is it acceptable to swap chicken for pork", + "ingredient_substitution" + ], + [ + "is it acceptable to swap marinara for alfredo", + "ingredient_substitution" + ], + [ + "can i substitute milk for water", + "ingredient_substitution" + ], + [ + "is it acceptable to swap rice for quinoa", + "ingredient_substitution" + ], + [ + "can i substitute butter for margarine", + "ingredient_substitution" + ], + [ + "is it acceptable to swap beef for tempeh", + "ingredient_substitution" + ], + [ + "can i substitute salt for pepper", + "ingredient_substitution" + ], + [ + "is it ok to use brown sugar instead of powdered sugar", + "ingredient_substitution" + ], + [ + "can i use margarine instead of butter", + "ingredient_substitution" + ], + [ + "can i switch in almond butter for peanut butter", + "ingredient_substitution" + ], + [ + "can i use salt instead of baking soda", + "ingredient_substitution" + ], + [ + "can i substitute cream for milk", + "ingredient_substitution" + ], + [ + "can i use baking soda instead of baking powder", + "ingredient_substitution" + ], + [ + "what can i use as a substitute for yeast", + "ingredient_substitution" + ], + [ + "substitute for milk in pancakes", + "ingredient_substitution" + ], + [ + "alternatives to white wine in food", + "ingredient_substitution" + ], + [ + "can i use something else if i don't have eggs", + "ingredient_substitution" + ], + [ + "can i use a green pepper instead of a red pepper", + "ingredient_substitution" + ], + [ + "is it possible to use sausage instead of hot dog", + "ingredient_substitution" + ], + [ + "is it ok to substitute spinach for lettuce", + "ingredient_substitution" + ], + [ + "is crushed garlic the same as powdered garlic for a spaghetti sauce", + "ingredient_substitution" + ], + [ + "can i use almond milk instead of rice milk", + "ingredient_substitution" + ], + [ + "can i swap cayenne pepper for black pepper", + "ingredient_substitution" + ], + [ + "can i use normal flour if i don't have bread flour", + "ingredient_substitution" + ], + [ + "can i use olive oil instead of butter", + "ingredient_substitution" + ], + [ + "can i use coconut oil instead of olive oil", + "ingredient_substitution" + ], + [ + "can you just use regular milk instead of buttermilk", + "ingredient_substitution" + ], + [ + "can i use strawberries instead of pineapples for this", + "ingredient_substitution" + ], + [ + "can i use sharp cheddar instead of muenster", + "ingredient_substitution" + ], + [ + "can i use mayonnaise instead of miracle whip", + "ingredient_substitution" + ], + [ + "can i substitute rice milk for milk", + "ingredient_substitution" + ], + [ + "place a phone call to yiming", + "make_call" + ], + [ + "phone lobby", + "make_call" + ], + [ + "can you call dominos pizza", + "make_call" + ], + [ + "can you redial the last number dialed", + "make_call" + ], + [ + "call 911", + "make_call" + ], + [ + "can you call a taxi", + "make_call" + ], + [ + "can you call mom", + "make_call" + ], + [ + "call work", + "make_call" + ], + [ + "call justin", + "make_call" + ], + [ + "call home", + "make_call" + ], + [ + "call erryn", + "make_call" + ], + [ + "i have to call the commander", + "make_call" + ], + [ + "i will be calling hr", + "make_call" + ], + [ + "it is important that i call katie", + "make_call" + ], + [ + "x is who i need to call", + "make_call" + ], + [ + "i am going to call the landlord", + "make_call" + ], + [ + "call macy", + "make_call" + ], + [ + "dial lisa's cell phone number", + "make_call" + ], + [ + "please dial david now", + "make_call" + ], + [ + "i need you to call michael at home", + "make_call" + ], + [ + "can you call mary", + "make_call" + ], + [ + "please phone lizzy", + "make_call" + ], + [ + "please dial x's phone number", + "make_call" + ], + [ + "dial x's phone please", + "make_call" + ], + [ + "please call toby", + "make_call" + ], + [ + "call dave", + "make_call" + ], + [ + "call my best friend", + "make_call" + ], + [ + "can you make a phone call to mark", + "make_call" + ], + [ + "can you call my mom", + "make_call" + ], + [ + "call mark", + "make_call" + ], + [ + "call friend", + "make_call" + ], + [ + "can i call a restaurant", + "make_call" + ], + [ + "can you make a phone call to kevin", + "make_call" + ], + [ + "call bob for me", + "make_call" + ], + [ + "call my mother", + "make_call" + ], + [ + "call jim", + "make_call" + ], + [ + "can you make a phone call to roger", + "make_call" + ], + [ + "can you make a phone call to dave", + "make_call" + ], + [ + "call mymother", + "make_call" + ], + [ + "can you make a phone call to randy", + "make_call" + ], + [ + "bella needs to be called", + "make_call" + ], + [ + "give liz a call", + "make_call" + ], + [ + "would you give jenny a call", + "make_call" + ], + [ + "i want you to call bella", + "make_call" + ], + [ + "phone call secretary", + "make_call" + ], + [ + "get a hold of sue", + "make_call" + ], + [ + "i'm looking to call a group", + "make_call" + ], + [ + "call tom", + "make_call" + ], + [ + "dial x's number", + "make_call" + ], + [ + "dial christie's cell", + "make_call" + ], + [ + "call christie's work number", + "make_call" + ], + [ + "phone christie", + "make_call" + ], + [ + "call christie", + "make_call" + ], + [ + "please dial christie's number", + "make_call" + ], + [ + "can you call someone", + "make_call" + ], + [ + "call someone for me", + "make_call" + ], + [ + "dial someone's phone number", + "make_call" + ], + [ + "i need to talk to someone on the phone", + "make_call" + ], + [ + "call someone", + "make_call" + ], + [ + "it's time for me to call drew", + "make_call" + ], + [ + "it's necessary to call michael", + "make_call" + ], + [ + "i must call jordan", + "make_call" + ], + [ + "x is waiting for me to call", + "make_call" + ], + [ + "put me on a call to sally", + "make_call" + ], + [ + "place a call to bill now", + "make_call" + ], + [ + "i want to place a call to mike", + "make_call" + ], + [ + "i have to call jane", + "make_call" + ], + [ + "can you call russell", + "make_call" + ], + [ + "place call to robby", + "make_call" + ], + [ + "dial sarah", + "make_call" + ], + [ + "call robby", + "make_call" + ], + [ + "phone sarah", + "make_call" + ], + [ + "call sarah", + "make_call" + ], + [ + "call robby for me", + "make_call" + ], + [ + "i want to call robby", + "make_call" + ], + [ + "can you call robby", + "make_call" + ], + [ + "phonecall sarah", + "make_call" + ], + [ + "i want to talk to sarah", + "make_call" + ], + [ + "dial steven", + "make_call" + ], + [ + "phone steven", + "make_call" + ], + [ + "ring steven", + "make_call" + ], + [ + "call steven", + "make_call" + ], + [ + "i want to make a call to uncle", + "make_call" + ], + [ + "use my phone to dial work", + "make_call" + ], + [ + "start a phone call with kathy", + "make_call" + ], + [ + "initiate a phone call with receptionist", + "make_call" + ], + [ + "can a phone call be made to maria", + "make_call" + ], + [ + "i need you to call the broker", + "make_call" + ], + [ + "please do me a favor and call brother mario", + "make_call" + ], + [ + "can you please call nata", + "make_call" + ], + [ + "call sandra right now", + "make_call" + ], + [ + "immediately call tom", + "make_call" + ], + [ + "i must call dr smith", + "make_call" + ], + [ + "connect me to bob", + "make_call" + ], + [ + "place a call to father callahan", + "make_call" + ], + [ + "i should call ruthie", + "make_call" + ], + [ + "please call christy", + "make_call" + ], + [ + "i must call roderick", + "make_call" + ], + [ + "please make a phone call to christopher", + "make_call" + ], + [ + "i need to call mark", + "make_call" + ], + [ + "wake me up at noon tomorrow", + "alarm" + ], + [ + "set my alarm for getting up", + "alarm" + ], + [ + "make sure my alarm is set for three thirty in the morning", + "alarm" + ], + [ + "please set an alarm for mid day", + "alarm" + ], + [ + "have an alarm set for three in the morning", + "alarm" + ], + [ + "you need to set alarm for me", + "alarm" + ], + [ + "i need you to set alarm for me", + "alarm" + ], + [ + "set the alarm for me", + "alarm" + ], + [ + "can you set alarm for me", + "alarm" + ], + [ + "please set alarm for me", + "alarm" + ], + [ + "make a new alarm for 6 in the morning", + "alarm" + ], + [ + "make a new alarm", + "alarm" + ], + [ + "create an alarm", + "alarm" + ], + [ + "i need an alarm for 6am", + "alarm" + ], + [ + "can you alert me at 6 in the morning", + "alarm" + ], + [ + "i'd like a new alarm set for 6am", + "alarm" + ], + [ + "set an alarm for 6am, please", + "alarm" + ], + [ + "initiate a new alarm please", + "alarm" + ], + [ + "set up an alarm", + "alarm" + ], + [ + "make up a new alarm", + "alarm" + ], + [ + "i want to make an alarm", + "alarm" + ], + [ + "i would like an alarm set", + "alarm" + ], + [ + "schedule an alarm", + "alarm" + ], + [ + "i need an alarm set", + "alarm" + ], + [ + "i need alarms set for 6am and 615am", + "alarm" + ], + [ + "i need an alarm to go off tomorrow at five fifteen", + "alarm" + ], + [ + "can you set an alarm for seven fifteen for tomorrow", + "alarm" + ], + [ + "set me an alarm for 4pm and another for 5pm", + "alarm" + ], + [ + "set one alarm for 215pm and another for 7pm", + "alarm" + ], + [ + "create an alarm for 9 am and another one for 11 am", + "alarm" + ], + [ + "set the alarm to go off at 9 tomorrow", + "alarm" + ], + [ + "make an alarm for tomorrow at twilight", + "alarm" + ], + [ + "set up two alarms one for 10am and another for 2pm", + "alarm" + ], + [ + "please set up an alarm to go off tomorrow at daybreak", + "alarm" + ], + [ + "could you set one alarm for 8am saturday and one for 9am sunday", + "alarm" + ], + [ + "can i turn on the alarm now", + "alarm" + ], + [ + "how do i set the alarm", + "alarm" + ], + [ + "please turn on the alarm", + "alarm" + ], + [ + "set my alarm for 6am tomorrow", + "alarm" + ], + [ + "set alarm for 6am", + "alarm" + ], + [ + "can you play an alarm at 5pm", + "alarm" + ], + [ + "create alarm 6am", + "alarm" + ], + [ + "set alarm for 5pm", + "alarm" + ], + [ + "make an alarm 6am", + "alarm" + ], + [ + "create an alarm for 6am", + "alarm" + ], + [ + "put in an alarm for 5pm", + "alarm" + ], + [ + "i want an alarm at 5pm", + "alarm" + ], + [ + "set my alarm for 5pm", + "alarm" + ], + [ + "set an alarm", + "alarm" + ], + [ + "create alarm", + "alarm" + ], + [ + "set alarm", + "alarm" + ], + [ + "i need an alarm to wake me up at 8 tomorrow morning", + "alarm" + ], + [ + "i need you to set an alarm for 8am tomorrow", + "alarm" + ], + [ + "please set an alarm for 5 am", + "alarm" + ], + [ + "set an alarm for 9pm please", + "alarm" + ], + [ + "i need an alarm set for 6 in the morning", + "alarm" + ], + [ + "i need an alarm set for 10:00 and another set for 3:00", + "alarm" + ], + [ + "set an alarm for me for 10:00 and another one set for 4:00", + "alarm" + ], + [ + "would you set my alarm for 10:00 and another for 3:00", + "alarm" + ], + [ + "provide assistance by setting an alarm at 8:00 and another for 11:00", + "alarm" + ], + [ + "assist me by setting my alarm for 9:00 and another for 11:00", + "alarm" + ], + [ + "tomorrow i need an alarm at 7 tomorrow", + "alarm" + ], + [ + "at 9 tomorrow, set off the alarm", + "alarm" + ], + [ + "tomorrow i would like an alarm for 9 tomorrow", + "alarm" + ], + [ + "tomorrow i need the alarm to go off at 5", + "alarm" + ], + [ + "sound the alarm at 6 am tomorrow", + "alarm" + ], + [ + "set reminder for 2 pm", + "alarm" + ], + [ + "wake me up at 6 am", + "alarm" + ], + [ + "ring my phone at 12 pm", + "alarm" + ], + [ + "set alarm for 5 am", + "alarm" + ], + [ + "please set an alarm for 2 pm for me", + "alarm" + ], + [ + "set an alarm for 5 pm", + "alarm" + ], + [ + "can you make an alarm for 7 am", + "alarm" + ], + [ + "set a 5 am alarm please", + "alarm" + ], + [ + "i need an alarm at 8 pm", + "alarm" + ], + [ + "set an alarm to start work and another to stop", + "alarm" + ], + [ + "set an alarm to go to sleep and another to wake up", + "alarm" + ], + [ + "please set a reminder for me", + "alarm" + ], + [ + "set an alarm to work out and another to go home", + "alarm" + ], + [ + "create an alarm for me", + "alarm" + ], + [ + "set an alarm for lunch and another for dinner", + "alarm" + ], + [ + "make an alarm for me", + "alarm" + ], + [ + "set an alarm for my meeting and another for my phone call", + "alarm" + ], + [ + "i want an alarm set up", + "alarm" + ], + [ + "i need an alarm set please", + "alarm" + ], + [ + "have an alarm wake me at 10:30 am", + "alarm" + ], + [ + "i want an alarm to go off at 9 am", + "alarm" + ], + [ + "i need an alarm set for 9 am and another for 11 am", + "alarm" + ], + [ + "i need an alarm set for 5:30 pm", + "alarm" + ], + [ + "i need you to schedule an alarm", + "alarm" + ], + [ + "please create an alarm for 5:45 am and an alarm for 6:15 am", + "alarm" + ], + [ + "would you set up an alarm for me", + "alarm" + ], + [ + "please create one alarm for 330 pm and one for 8 pm", + "alarm" + ], + [ + "please create a new alarm for me", + "alarm" + ], + [ + "i need an alarm to go off at 6 am", + "alarm" + ], + [ + "please set two alarms, one at 12 pm and the next at 1 pm", + "alarm" + ], + [ + "please create an alarm for 12 noon", + "alarm" + ], + [ + "i need one alarm to go off at 6:30 am and a second alarm set for 8:00 am", + "alarm" + ], + [ + "help me get up at eight thirty in the morning tomorrow", + "alarm" + ], + [ + "i want to be woken up at 9 tomorrow", + "alarm" + ], + [ + "what are the things that i have for today", + "todo_list" + ], + [ + "what is left to do today", + "todo_list" + ], + [ + "what do i have to do today", + "todo_list" + ], + [ + "the tasks for today, what are they", + "todo_list" + ], + [ + "i need to know what my to-do list is looking like", + "todo_list" + ], + [ + "is cleaning the kitchen coming up on my list of things i have to do today", + "todo_list" + ], + [ + "do i have cleaning the counters on my to-do list", + "todo_list" + ], + [ + "is cleaning the toilet on my to-do list", + "todo_list" + ], + [ + "tell me what is on the list of things to do", + "todo_list" + ], + [ + "tell me what is on my to do list", + "todo_list" + ], + [ + "is vacuuming on my list of things to do", + "todo_list" + ], + [ + "will an oil change be on my to-do list tomorrow", + "todo_list" + ], + [ + "read me my list of things to do", + "todo_list" + ], + [ + "please read my todo list", + "todo_list" + ], + [ + "tell me what is on my todo list", + "todo_list" + ], + [ + "i need my todo list read", + "todo_list" + ], + [ + "i need to hear my todo list", + "todo_list" + ], + [ + "is taking out the trash on my to do list", + "todo_list" + ], + [ + "read to me my to do list", + "todo_list" + ], + [ + "read back my to do list", + "todo_list" + ], + [ + "can you tell me my to do list", + "todo_list" + ], + [ + "i want to know what i have to do", + "todo_list" + ], + [ + "read back to me my to do list", + "todo_list" + ], + [ + "tell me the content of my to do list today", + "todo_list" + ], + [ + "what is on my to do list", + "todo_list" + ], + [ + "please read back to me my to do list", + "todo_list" + ], + [ + "let me know what i have to do today", + "todo_list" + ], + [ + "is fixing mom's kitchen blind on my to do list", + "todo_list" + ], + [ + "check my domestic to do list for carpet cleaning", + "todo_list" + ], + [ + "do my task list have call kath on it", + "todo_list" + ], + [ + "check my to do list to see if jewelry repair is listed", + "todo_list" + ], + [ + "does my errand list have goodwill on it", + "todo_list" + ], + [ + "can you tell me the items on my to do list", + "todo_list" + ], + [ + "do i have brush my teeth on my todo list", + "todo_list" + ], + [ + "what chores do i have waiting on my reminder list", + "todo_list" + ], + [ + "do i have get an oil change on my todo list", + "todo_list" + ], + [ + "do i already have a task on my todo list to research delaware", + "todo_list" + ], + [ + "what do i have on my need to do list", + "todo_list" + ], + [ + "read my complete todo list to me", + "todo_list" + ], + [ + "i want to hear everything on my todo list", + "todo_list" + ], + [ + "do i have any birthdays on my todo list", + "todo_list" + ], + [ + "how many items are on my todo list", + "todo_list" + ], + [ + "is doing my laundry already on my todo list", + "todo_list" + ], + [ + "how many chores are on my todo list", + "todo_list" + ], + [ + "iterate the items on my todo list", + "todo_list" + ], + [ + "do i have an item on my todo list related to shopping", + "todo_list" + ], + [ + "are the items on my todo list listed alphabetically", + "todo_list" + ], + [ + "did i add purchase tickets to the penguin game to my todo list", + "todo_list" + ], + [ + "did i remember to add buy flowers to my chore list today", + "todo_list" + ], + [ + "can you check if i've added an item to throw out the carcasses on my todo list", + "todo_list" + ], + [ + "what tasks have i yet to complete off my list", + "todo_list" + ], + [ + "do i have anything on my todo list about shoveling snow", + "todo_list" + ], + [ + "what items do i need to do", + "todo_list" + ], + [ + "did i create a task to clean the gutters on my list", + "todo_list" + ], + [ + "tell me what i have on my todo list", + "todo_list" + ], + [ + "is studying for the chem exam on my todo list", + "todo_list" + ], + [ + "please tell me all items on my todo list", + "todo_list" + ], + [ + "do i have a car wash scheduled on my to do list", + "todo_list" + ], + [ + "at what time is laundry on my to do list", + "todo_list" + ], + [ + "have i set aside a time on my to do list to do my taxes", + "todo_list" + ], + [ + "did i jot down a time to see my accountant on my to do list", + "todo_list" + ], + [ + "when is babysitting on my to do list", + "todo_list" + ], + [ + "what does my to-do list consist of", + "todo_list" + ], + [ + "can you please tell me what is on my to-do list", + "todo_list" + ], + [ + "i wonder what my to-do list looks like for today", + "todo_list" + ], + [ + "what does my to-do list look like", + "todo_list" + ], + [ + "let me hear all of the items on my to do list, please", + "todo_list" + ], + [ + "repeat my to do list to me, please", + "todo_list" + ], + [ + "let's go over the list of items on the to do list just to be sure we got it all", + "todo_list" + ], + [ + "can i hear the complete to do list just dictated", + "todo_list" + ], + [ + "tell me what things i need to accomplish per my to do list, please", + "todo_list" + ], + [ + "can you tell me all of the things on my to do list for tomorrow, please", + "todo_list" + ], + [ + "please remind me of the tasks on my to do list", + "todo_list" + ], + [ + "go ahead and say all of the points on my list of to-do's please", + "todo_list" + ], + [ + "what do i have to do tomorrow, according to my to-do list", + "todo_list" + ], + [ + "i want to hear my to do list please", + "todo_list" + ], + [ + "what have i got on my to-do list", + "todo_list" + ], + [ + "let me know whether folding laundry is on my to do list", + "todo_list" + ], + [ + "can you tell me the tasks on my to-do list", + "todo_list" + ], + [ + "i need to know what tasks are on my to-do list", + "todo_list" + ], + [ + "i want to hear my to do list read out loud", + "todo_list" + ], + [ + "can you look to see whether feeding the fish is on my to do list", + "todo_list" + ], + [ + "please let me know if giving the dog a bath is on my list of tasks to complete", + "todo_list" + ], + [ + "can you walk me through the various tasks on my to do list", + "todo_list" + ], + [ + "what do i have left to do on my to-do list", + "todo_list" + ], + [ + "is changing the water filter on my to do list right now", + "todo_list" + ], + [ + "please tell me all the items on my to do list right now", + "todo_list" + ], + [ + "please inform me of what tasks i have listed on my to do list", + "todo_list" + ], + [ + "look to see if i have folding laundry on my to do list", + "todo_list" + ], + [ + "please read out my list of tasks to accomplish", + "todo_list" + ], + [ + "i need to know everything on my to do list currently", + "todo_list" + ], + [ + "i need to know if sorting the mail is on my to do list", + "todo_list" + ], + [ + "can you read my to do list to me please", + "todo_list" + ], + [ + "check my to do list to see if feeding the fish is on it", + "todo_list" + ], + [ + "did i put unpacking groceries on my to do list", + "todo_list" + ], + [ + "will you please go back over everything on my to do list", + "todo_list" + ], + [ + "read my to-do list to me", + "todo_list" + ], + [ + "i need to know if cleaning out the fridge is on my to do list", + "todo_list" + ], + [ + "do i have watering the plants on my to do list", + "todo_list" + ], + [ + "let's go through my to do list items please", + "todo_list" + ], + [ + "use a different accent", + "change_accent" + ], + [ + "try using a different accent", + "change_accent" + ], + [ + "speak in a different accent", + "change_accent" + ], + [ + "change the accent you're speaking in", + "change_accent" + ], + [ + "could you change the accent you're using", + "change_accent" + ], + [ + "would you change your accent to the male british one", + "change_accent" + ], + [ + "i want your accent changed to the male british one", + "change_accent" + ], + [ + "i need for you to change your accent to the male british one", + "change_accent" + ], + [ + "would you please get your accent changed to the male british one", + "change_accent" + ], + [ + "try it with a male voice", + "change_accent" + ], + [ + "could you use a male voice", + "change_accent" + ], + [ + "use a male voice now", + "change_accent" + ], + [ + "use a male voice instead", + "change_accent" + ], + [ + "try a male voice", + "change_accent" + ], + [ + "i would prefer your voice to be male", + "change_accent" + ], + [ + "please use a male voice when speaking", + "change_accent" + ], + [ + "can you switch to the female voice", + "change_accent" + ], + [ + "change to a male voice", + "change_accent" + ], + [ + "please change your accent to a british male", + "change_accent" + ], + [ + "can you change the way you talk to a male british voice", + "change_accent" + ], + [ + "could you talk like a british male", + "change_accent" + ], + [ + "can i change the voice to male", + "change_accent" + ], + [ + "i want to hear the female voice option", + "change_accent" + ], + [ + "is there a way to change the voice to male", + "change_accent" + ], + [ + "i would prefer to hear the female voice", + "change_accent" + ], + [ + "i would prefer to hear you speak like a british male", + "change_accent" + ], + [ + "start speaking in a male british voice", + "change_accent" + ], + [ + "go ahead and switch to the female voice", + "change_accent" + ], + [ + "i shall switch to the male voice", + "change_accent" + ], + [ + "i must to the female voice", + "change_accent" + ], + [ + "please change to the female voice", + "change_accent" + ], + [ + "please change your accent to the male british one", + "change_accent" + ], + [ + "i need you to change your accent to the male british one", + "change_accent" + ], + [ + "i need to to the female voice", + "change_accent" + ], + [ + "i need to switch to the male voice", + "change_accent" + ], + [ + "go ahead and switch to the male voice", + "change_accent" + ], + [ + "you need to change your accent to the male british one", + "change_accent" + ], + [ + "i gotta to the female voice", + "change_accent" + ], + [ + "i wanna switch to the male voice", + "change_accent" + ], + [ + "go ahead and change your accent to the male british one", + "change_accent" + ], + [ + "i must switch to the male voice", + "change_accent" + ], + [ + "i want you to change your accent to the male british one", + "change_accent" + ], + [ + "i wanna change to the female voice", + "change_accent" + ], + [ + "i want to change what accent you use", + "change_accent" + ], + [ + "use a new accent", + "change_accent" + ], + [ + "switch to a different accent", + "change_accent" + ], + [ + "can you use a different accent", + "change_accent" + ], + [ + "let's change your accent", + "change_accent" + ], + [ + "speak in a male voice", + "change_accent" + ], + [ + "can i hear the male voice please", + "change_accent" + ], + [ + "can you change your accent to the male british one", + "change_accent" + ], + [ + "use your male voice", + "change_accent" + ], + [ + "please talk to me in the male british accent", + "change_accent" + ], + [ + "use one of your male voices", + "change_accent" + ], + [ + "can you use the male british accent", + "change_accent" + ], + [ + "speak in a woman's voice", + "change_accent" + ], + [ + "switch over to the male voice mode", + "change_accent" + ], + [ + "go to the female voice", + "change_accent" + ], + [ + "please use your female voice", + "change_accent" + ], + [ + "please change your accent the male british one", + "change_accent" + ], + [ + "make your accent the male british one", + "change_accent" + ], + [ + "switch over to the female voice", + "change_accent" + ], + [ + "use a woman's voice", + "change_accent" + ], + [ + "can you speak like a british dude", + "change_accent" + ], + [ + "do you have the ability to do a male british accent", + "change_accent" + ], + [ + "is it possible for you to speak with a british gent's accent", + "change_accent" + ], + [ + "can i get you to talk like a pouty english guy", + "change_accent" + ], + [ + "if you can do accents, i want to hear you talk like david bowie", + "change_accent" + ], + [ + "do a british male accent only", + "change_accent" + ], + [ + "i want to hear a male british accent", + "change_accent" + ], + [ + "change to a male british accent", + "change_accent" + ], + [ + "switch to british male accent", + "change_accent" + ], + [ + "can you do a british male accent", + "change_accent" + ], + [ + "change accent to male british", + "change_accent" + ], + [ + "set to female voice", + "change_accent" + ], + [ + "please change accent to british male", + "change_accent" + ], + [ + "please set to female voice", + "change_accent" + ], + [ + "use male voice", + "change_accent" + ], + [ + "can you switch to female voice", + "change_accent" + ], + [ + "please use male voice", + "change_accent" + ], + [ + "switch to female voice", + "change_accent" + ], + [ + "can you use male voice", + "change_accent" + ], + [ + "use male voice now", + "change_accent" + ], + [ + "can you make your accent british male", + "change_accent" + ], + [ + "now use male voice", + "change_accent" + ], + [ + "speak as a british male", + "change_accent" + ], + [ + "change accent to british male", + "change_accent" + ], + [ + "change to female voice", + "change_accent" + ], + [ + "use the male voice please", + "change_accent" + ], + [ + "can you swap to male voice", + "change_accent" + ], + [ + "i want to change to male voice", + "change_accent" + ], + [ + "use female voice now instead", + "change_accent" + ], + [ + "please start using female voice", + "change_accent" + ], + [ + "i want to use the female voice now", + "change_accent" + ], + [ + "i prefer female voice now", + "change_accent" + ], + [ + "switch from the male to the female voice", + "change_accent" + ], + [ + "please use male voice instead", + "change_accent" + ], + [ + "switch over from female to the male voice", + "change_accent" + ], + [ + "i need a new accent male british", + "change_accent" + ], + [ + "switch to male british accent", + "change_accent" + ], + [ + "where can i locate my w2 so i can do my taxes", + "w2" + ], + [ + "where is the w-2 form located", + "w2" + ], + [ + "where can i locate my w-2 form", + "w2" + ], + [ + "where can one receive their w-2 form", + "w2" + ], + [ + "what is the location of my w2 that is needed for taxes", + "w2" + ], + [ + "where would my w2 be found so i can do my taxes", + "w2" + ], + [ + "i need to find my w2 so i can do taxes", + "w2" + ], + [ + "where are w-2 forms given", + "w2" + ], + [ + "i require my w2 for taxes and need to locate it", + "w2" + ], + [ + "where do i get the form i need for taxes", + "w2" + ], + [ + "how can i get my year end summary for taxes", + "w2" + ], + [ + "where should i go to get a w2 to do my taxes", + "w2" + ], + [ + "where do i pick up a w2 form", + "w2" + ], + [ + "where can i get a w2 form", + "w2" + ], + [ + "tell me where a w2 is available please", + "w2" + ], + [ + "a w2 form can be gotten from where", + "w2" + ], + [ + "can i get a w2 form online", + "w2" + ], + [ + "help me get a w2 to do my taxes", + "w2" + ], + [ + "what location can i get a w2 from", + "w2" + ], + [ + "where can i get a w2", + "w2" + ], + [ + "a w2 form is obtainable where", + "w2" + ], + [ + "who can send me a w2 so i can complete my taxes", + "w2" + ], + [ + "how can i get my w2 to do my taxes", + "w2" + ], + [ + "where can i pick up my w2 to do my taxes", + "w2" + ], + [ + "where do i get the form that shows my wages for the year for taxes", + "w2" + ], + [ + "can you tell me what the form is employers are supposed to send you for taxes and where i get it", + "w2" + ], + [ + "i've got tax issues and need help obtaining my w2", + "w2" + ], + [ + "i need to do taxes and have to get a w2", + "w2" + ], + [ + "where do i find the irs form that tells me the amount of money i owe them", + "w2" + ], + [ + "where do i get the tax form that i have to report to the irs", + "w2" + ], + [ + "can you locate my w-2", + "w2" + ], + [ + "i would like to know how to find my w-2", + "w2" + ], + [ + "can you help me find my w-2", + "w2" + ], + [ + "hey, anyone seen my w-2", + "w2" + ], + [ + "help - i can't find my w-2", + "w2" + ], + [ + "where is my w-2", + "w2" + ], + [ + "where can i get my w-2", + "w2" + ], + [ + "i need to download my w-2 form", + "w2" + ], + [ + "can you access my w-2", + "w2" + ], + [ + "how can i get a hold of my w-2", + "w2" + ], + [ + "i need to get a hold of my w-2 right now", + "w2" + ], + [ + "where can i get the form i need to do my taxes", + "w2" + ], + [ + "where can i get the form i need to do my taxes, please", + "w2" + ], + [ + "where can i get the employment document that i need to do my taxes, please", + "w2" + ], + [ + "where can i get a w2 form from", + "w2" + ], + [ + "where can i obtain a w2 form", + "w2" + ], + [ + "where can i find a w2 form", + "w2" + ], + [ + "where can i obtain a w2 form from", + "w2" + ], + [ + "where can i get the employment form i need to do my taxes", + "w2" + ], + [ + "where can i get the employment form i need to do my taxes, please", + "w2" + ], + [ + "where is my w2", + "w2" + ], + [ + "where can i find my w2", + "w2" + ], + [ + "where can i find my w2 as i need it for tax reasons", + "w2" + ], + [ + "where do i get my tax papers", + "w2" + ], + [ + "where do i recieve a w2", + "w2" + ], + [ + "how do i get a w2", + "w2" + ], + [ + "is this where i get a w2", + "w2" + ], + [ + "can you tell me where to get a w2", + "w2" + ], + [ + "who has the tax form that shows my wages", + "w2" + ], + [ + "what is that tax form that shows my wages and where do i get it", + "w2" + ], + [ + "where do i locate the form that has my tax information", + "w2" + ], + [ + "who has the tax form that has my wage informaton", + "w2" + ], + [ + "where do i get the tax form that shows my wages", + "w2" + ], + [ + "where's my w-2", + "w2" + ], + [ + "i can't find my w-2", + "w2" + ], + [ + "do you know where my w-2 is", + "w2" + ], + [ + "i'm having trouble locating my w-2", + "w2" + ], + [ + "where can i find my w-2", + "w2" + ], + [ + "provide me assistance on where to go to get my w2 for tax reasons", + "w2" + ], + [ + "i am in need of my w2 for tax reasons; provide me where to get it", + "w2" + ], + [ + "assist me on where to go to get my w2 for tax reasons", + "w2" + ], + [ + "where do i go to get my w2 for tax reasons", + "w2" + ], + [ + "where can i get my w2 from for tax reasons", + "w2" + ], + [ + "i would like to get the forms to file for my w2", + "w2" + ], + [ + "where could i locate a w2 form from", + "w2" + ], + [ + "locate my w-2 form", + "w2" + ], + [ + "where could i find forms to get my w2", + "w2" + ], + [ + "where can i find my tax form to report what i earn", + "w2" + ], + [ + "where do i go to get my w-2", + "w2" + ], + [ + "how do i find my w-2 form", + "w2" + ], + [ + "what is the form i need to report my earnings", + "w2" + ], + [ + "where do i get my w2 form from", + "w2" + ], + [ + "tell me where to get myy w-2 form", + "w2" + ], + [ + "where can i find my w-2 form", + "w2" + ], + [ + "where can i locate a form for my w2", + "w2" + ], + [ + "is my w2 available at the post office", + "w2" + ], + [ + "i need to know where to get a w-2 form", + "w2" + ], + [ + "when will i receive my w2", + "w2" + ], + [ + "can i get my w2 online", + "w2" + ], + [ + "how do i get a w-2", + "w2" + ], + [ + "i need help getting a w-2", + "w2" + ], + [ + "can i get a w-2 from the post office", + "w2" + ], + [ + "can i get my w-2 online", + "w2" + ], + [ + "does my w2 come by mail", + "w2" + ], + [ + "how and where are my w2 forms given", + "w2" + ], + [ + "where can i get my w2 forms from", + "w2" + ], + [ + "from where are w2 forms given", + "w2" + ], + [ + "how do i get a w2 form and from where", + "w2" + ], + [ + "how do i get a personal w2 form", + "w2" + ], + [ + "have i been sent my w-2 in my email", + "w2" + ], + [ + "when should i pay my bill by", + "bill_due" + ], + [ + "when is my car insurance due", + "bill_due" + ], + [ + "when's the gas bill due", + "bill_due" + ], + [ + "when do i pay the utilities", + "bill_due" + ], + [ + "do i pay my rent this week", + "bill_due" + ], + [ + "i need to know when i must pay my car bill", + "bill_due" + ], + [ + "how much is my water bill", + "bill_due" + ], + [ + "is my bill due this week", + "bill_due" + ], + [ + "how much time left to pay my bill", + "bill_due" + ], + [ + "what day is my car insurance due", + "bill_due" + ], + [ + "when's the electric bill due", + "bill_due" + ], + [ + "when's the next phone bill", + "bill_due" + ], + [ + "when is my next car payment", + "bill_due" + ], + [ + "when is too late to pay my cable bill", + "bill_due" + ], + [ + "can you alert me when my phone bill is due", + "bill_due" + ], + [ + "on what day do i pay my car payment", + "bill_due" + ], + [ + "how can i know when my cable bill is due", + "bill_due" + ], + [ + "what day do i have to pay for my capital one card", + "bill_due" + ], + [ + "how long do i have left to pay for my chase credit card", + "bill_due" + ], + [ + "what is the due date of my att bill", + "bill_due" + ], + [ + "when is my xfinity bill due", + "bill_due" + ], + [ + "how many more days before my verizon bill is due", + "bill_due" + ], + [ + "i cant remember when my bill is due", + "bill_due" + ], + [ + "what is the due date of my bill", + "bill_due" + ], + [ + "what day is my bill due", + "bill_due" + ], + [ + "when is my bill due", + "bill_due" + ], + [ + "tell me when my bill will be due", + "bill_due" + ], + [ + "how do i locate when my gas bill is do", + "bill_due" + ], + [ + "i would like to know my electric bills date it needs to be payed", + "bill_due" + ], + [ + "i need to know where to locate when my gas bill is due", + "bill_due" + ], + [ + "can you tell me when my electric bill is due", + "bill_due" + ], + [ + "i need to know the due date for my credit card", + "bill_due" + ], + [ + "where should i look for when my gas bill is due", + "bill_due" + ], + [ + "can you tell me the date my credit card is due", + "bill_due" + ], + [ + "i'd like to find the date that my gas bill is due", + "bill_due" + ], + [ + "how do i know when to pay my gas bill", + "bill_due" + ], + [ + "when do i have to pay my water bill by", + "bill_due" + ], + [ + "when do i have to pay my electric bill by", + "bill_due" + ], + [ + "when do i have to pay my internet bill by", + "bill_due" + ], + [ + "when do i have to pay my gas bill by", + "bill_due" + ], + [ + "tell me when i have to pay my bill", + "bill_due" + ], + [ + "what date do i have to pay my bill", + "bill_due" + ], + [ + "give me the date my bill is due", + "bill_due" + ], + [ + "on what day do i have to pay my nordstrom bill", + "bill_due" + ], + [ + "when is my chase visa due", + "bill_due" + ], + [ + "when do i need to pay my annual payment for auto insurance", + "bill_due" + ], + [ + "what is the exact due date for my mortgage payment", + "bill_due" + ], + [ + "what is the due date for my metronorth monthy pass", + "bill_due" + ], + [ + "can you tell me when my peco energy bill is due this month", + "bill_due" + ], + [ + "please find the exact payment due date for my sprint phone bill", + "bill_due" + ], + [ + "what is the due date on my xfinity internet bill for february", + "bill_due" + ], + [ + "what is the latest date that i can pay my direct tv bill this month", + "bill_due" + ], + [ + "i need the new due date for my pgw gas bill", + "bill_due" + ], + [ + "what time do i have to pay z bill", + "bill_due" + ], + [ + "whats the due date for z bill", + "bill_due" + ], + [ + "how soon before my catering bill is due", + "bill_due" + ], + [ + "how long before my lawn guy bill's due", + "bill_due" + ], + [ + "when's my heater bill due", + "bill_due" + ], + [ + "what date is my water bill due", + "bill_due" + ], + [ + "whats the deadline for amex payment", + "bill_due" + ], + [ + "when is my visa due", + "bill_due" + ], + [ + "when is visa due", + "bill_due" + ], + [ + "do you know when i need to pay my mastercard", + "bill_due" + ], + [ + "what's the due date for my american express payment", + "bill_due" + ], + [ + "when is my mortgage payment due", + "bill_due" + ], + [ + "what's the due date for the credit card", + "bill_due" + ], + [ + "when's the next time i have to pay the insurance", + "bill_due" + ], + [ + "how long do i have to pay the gas bill", + "bill_due" + ], + [ + "when's the rent due", + "bill_due" + ], + [ + "when does the car payment come due", + "bill_due" + ], + [ + "when does the electric bill up", + "bill_due" + ], + [ + "how do i check when my mortgage is next up for payment", + "bill_due" + ], + [ + "when do i owe the state payment for my car tags", + "bill_due" + ], + [ + "when do i owe the rent", + "bill_due" + ], + [ + "do i need to pay my credit card bill already", + "bill_due" + ], + [ + "do you know when my next electric bill is due", + "bill_due" + ], + [ + "where do i find information on when the water bill is due", + "bill_due" + ], + [ + "how do i ascertain when my next insurance payment will be", + "bill_due" + ], + [ + "what do i do to check when my next credit card payment is", + "bill_due" + ], + [ + "when do i need to pay my at&t bill", + "bill_due" + ], + [ + "what is the due date of my at&t bill", + "bill_due" + ], + [ + "is my at&t bill do soon", + "bill_due" + ], + [ + "when is my at&t bill due", + "bill_due" + ], + [ + "what date is my at&t bill due", + "bill_due" + ], + [ + "when's the ac bill due", + "bill_due" + ], + [ + "what day is the z bill due", + "bill_due" + ], + [ + "what's the due date for the renting bill", + "bill_due" + ], + [ + "i want to know when a bill is due", + "bill_due" + ], + [ + "what day is the bill due", + "bill_due" + ], + [ + "i would like to know when the bill is due", + "bill_due" + ], + [ + "what is the due date for a bill", + "bill_due" + ], + [ + "when is the bill due", + "bill_due" + ], + [ + "how do i find when my water bill needs to be paid", + "bill_due" + ], + [ + "when is my water bill due", + "bill_due" + ], + [ + "how do i find when my cable bill is due", + "bill_due" + ], + [ + "when is my electric bill due", + "bill_due" + ], + [ + "when do i need to pay the water bil", + "bill_due" + ], + [ + "how do i find when my medical bill is due", + "bill_due" + ], + [ + "when do i need to pay the cable bill", + "bill_due" + ], + [ + "how do i find when my electric bill is due", + "bill_due" + ], + [ + "can you provide me the calories in the smoothie", + "calories" + ], + [ + "can you tell me the calories for the cheeseburger", + "calories" + ], + [ + "i'd like the calories for this chicken breast", + "calories" + ], + [ + "how many calories in this slice of pizza", + "calories" + ], + [ + "what about the calories for this chicken salad", + "calories" + ], + [ + "how many calories are in a large fry", + "calories" + ], + [ + "a large french fry has how many calories", + "calories" + ], + [ + "what is the calorie content of a scoop of chocolate ice cream", + "calories" + ], + [ + "how many calories in scoop of chocolate ice cream", + "calories" + ], + [ + "tell me how many calories in a medium size apple", + "calories" + ], + [ + "how many calories does a scoop of chocolate ice cream have", + "calories" + ], + [ + "how many calories are in a can of coke", + "calories" + ], + [ + "what's the number of calories in a pepsi", + "calories" + ], + [ + "what is the calorie content of a small bag of lay's potato chips", + "calories" + ], + [ + "how many calories does a kitkat have", + "calories" + ], + [ + "how many calories are there in a scoop of chocolate ice cream", + "calories" + ], + [ + "how many calories does a scoop of chocolate ice cream contain", + "calories" + ], + [ + "what's the expected calories in a cream filled cookie", + "calories" + ], + [ + "what's the amount of calories in a cheesy omelette", + "calories" + ], + [ + "can you tell me the calorie count in a glazed donut", + "calories" + ], + [ + "what's the calorie count for tuna casserole", + "calories" + ], + [ + "how many calories are in waffles", + "calories" + ], + [ + "what's the calorie content for fried eggs", + "calories" + ], + [ + "what's the amount of calories in an cream filled oatmeal cookie", + "calories" + ], + [ + "how many calories are in chocolate cake", + "calories" + ], + [ + "how high in calories is pork", + "calories" + ], + [ + "how many calories are in a honey bun", + "calories" + ], + [ + "what does a sausage sandwich have for calories", + "calories" + ], + [ + "what's the number of calories in a coke", + "calories" + ], + [ + "what are the total calories for two servings of pasta", + "calories" + ], + [ + "how many calories should i plan to be in a donut", + "calories" + ], + [ + "how many calories would i estimate for fettuccine alfredo", + "calories" + ], + [ + "how many calories does a big mac have", + "calories" + ], + [ + "what's the caloric content if you eat roast beef", + "calories" + ], + [ + "how many calories would i consume if i ate a loaded hotdog", + "calories" + ], + [ + "what's the expected calorie load of a peanut butter and jelly sandwich", + "calories" + ], + [ + "what's a big bowl of ice cream contain in calories", + "calories" + ], + [ + "do cheetos have a lot of calories", + "calories" + ], + [ + "what's the calorie content of cheetos", + "calories" + ], + [ + "looks up the calories in cheetos", + "calories" + ], + [ + "calorie count of cheetos", + "calories" + ], + [ + "how many calories do cheetos have", + "calories" + ], + [ + "how many calories are in a cup of white rice", + "calories" + ], + [ + "how many calories are in vanilla ice cream", + "calories" + ], + [ + "one cup of almonds has how many calories", + "calories" + ], + [ + "what's the calorie info for 2 cups of regular chex mix", + "calories" + ], + [ + "what's the caloric content in a bowl of rice crispies with milk", + "calories" + ], + [ + "a bowl of cheerios with milk has how many calories", + "calories" + ], + [ + "how many calories are in a bag of regular doritos", + "calories" + ], + [ + "how many calories are in chocolate ice cream", + "calories" + ], + [ + "2 cups of grapes have how many calories", + "calories" + ], + [ + "how many calories are in spaghetti and meat sauce", + "calories" + ], + [ + "in one cookie, how many calories would i find", + "calories" + ], + [ + "what is the calorie count for one cookie", + "calories" + ], + [ + "if i ate a cookie, how many calories would i be ingesting", + "calories" + ], + [ + "cookies have how many calories", + "calories" + ], + [ + "how many calories are in a cookie", + "calories" + ], + [ + "how many calories in gum", + "calories" + ], + [ + "how many calories in chicken", + "calories" + ], + [ + "how many calories in meatloaf", + "calories" + ], + [ + "how many calories are in chicken breast", + "calories" + ], + [ + "how many calories in peanuts", + "calories" + ], + [ + "what is the total number of calories in a bag of potato chips", + "calories" + ], + [ + "can you tell me the amount of calories i can expect one tuna sandwich to contain", + "calories" + ], + [ + "give me expected number of calories in a breakfast burrito", + "calories" + ], + [ + "can you tell me the number of calories in one serving of whole cashews", + "calories" + ], + [ + "please tell me the total calories a single serving of chocolate ice cream is expected to contain", + "calories" + ], + [ + "i need to know the total calories for a chicken caesar salad", + "calories" + ], + [ + "please tell me how many calories one chocolate bar contains", + "calories" + ], + [ + "what's the average number of calories in one cup of tomato soup", + "calories" + ], + [ + "do you know how many calories are in a single chicken breast", + "calories" + ], + [ + "i need to know the number of calories on average in a handful of pistachios", + "calories" + ], + [ + "what is the caloric value of a cookie", + "calories" + ], + [ + "how many calories are in cookies", + "calories" + ], + [ + "can you tell me how many calories are in cookies", + "calories" + ], + [ + "what is the calorie count in a cookie", + "calories" + ], + [ + "what are the calories in a cookie", + "calories" + ], + [ + "what is the calorie count for muffins", + "calories" + ], + [ + "are there a lot of calories in muffins", + "calories" + ], + [ + "tell me the amount of calories in muffins", + "calories" + ], + [ + "what is the caloric total in these muffins", + "calories" + ], + [ + "what amount of calories are in one muffin", + "calories" + ], + [ + "look up the calories in an apple", + "calories" + ], + [ + "tell me the calorie content of an apple", + "calories" + ], + [ + "what's the caloric content of an apple", + "calories" + ], + [ + "tell me the calorie content for an apple", + "calories" + ], + [ + "i need to know the calorie content in a piece of pepperoni pizza", + "calories" + ], + [ + "how many calories are in an apple", + "calories" + ], + [ + "i want the calorie content for a banana", + "calories" + ], + [ + "tell me the number of calories in a banana", + "calories" + ], + [ + "what is the calorie look like in apples", + "calories" + ], + [ + "what is the calorie going to be if i'm eating cereal", + "calories" + ], + [ + "add up the calories in tacos", + "calories" + ], + [ + "how many calories are in cheerios", + "calories" + ], + [ + "what type of calorie numbers are in onions", + "calories" + ], + [ + "i need to know the calorie count of a bacon cheeseburger", + "calories" + ], + [ + "whats the calorie content of oatmeal", + "calories" + ], + [ + "what is the calorie count of an apple", + "calories" + ], + [ + "how many calories on average are in a hot dog", + "calories" + ], + [ + "how many calories are in a piece of bacon", + "calories" + ], + [ + "let my credit card company know that my card split in half", + "damaged_card" + ], + [ + "how do you report a burned debit card", + "damaged_card" + ], + [ + "my card split in half, how do i report it", + "damaged_card" + ], + [ + "report my burned card to the company", + "damaged_card" + ], + [ + "what do i say when i report a split credit card", + "damaged_card" + ], + [ + "my card was damaged by my cat; can i report that", + "damaged_card" + ], + [ + "i dropped my card in my gasoline and the printing wore off", + "damaged_card" + ], + [ + "i need to report that my dog chewed up my card", + "damaged_card" + ], + [ + "it seems i can't use my card since it has been damaged", + "damaged_card" + ], + [ + "unfortunately, my card is damaged and unusable", + "damaged_card" + ], + [ + "what should i do with an unusable and damaged card", + "damaged_card" + ], + [ + "my card is unusable because it's damaged", + "damaged_card" + ], + [ + "i cracked my card and need a replacement", + "damaged_card" + ], + [ + "my card got melted and i need to report it", + "damaged_card" + ], + [ + "my card got melted and i need to report it, please", + "damaged_card" + ], + [ + "my card got melted in the dryer and i need to report it, please", + "damaged_card" + ], + [ + "my card got damaged and i need to report it", + "damaged_card" + ], + [ + "my card got damaged and i need to report it, please", + "damaged_card" + ], + [ + "my card is damaged so i can not use it", + "damaged_card" + ], + [ + "report the card has been damaged", + "damaged_card" + ], + [ + "i can not use my card, it is damaged", + "damaged_card" + ], + [ + "the card is torn, let's report it", + "damaged_card" + ], + [ + "report that the card has been wrecked", + "damaged_card" + ], + [ + "my card is damaged and no longer function", + "damaged_card" + ], + [ + "my card is damaged and unusable", + "damaged_card" + ], + [ + "my card is wrecked, let's report it", + "damaged_card" + ], + [ + "report the card has been torn", + "damaged_card" + ], + [ + "i can not use my card since it is damaged", + "damaged_card" + ], + [ + "i need to report a bent card", + "damaged_card" + ], + [ + "my card split in half, can i report it", + "damaged_card" + ], + [ + "i cracked my card, order a new one", + "damaged_card" + ], + [ + "report that i split my card", + "damaged_card" + ], + [ + "please make a report that my card is split", + "damaged_card" + ], + [ + "the magnetic strip on my card is scratched, let the card company know", + "damaged_card" + ], + [ + "i cut up the wrong card, please contact the bank and let them know", + "damaged_card" + ], + [ + "i creased my card today, contact the bank", + "damaged_card" + ], + [ + "my card is cracked, please tell the card company", + "damaged_card" + ], + [ + "the dog chewed up my card, will you find out what it takes to get a replacement", + "damaged_card" + ], + [ + "the plastic numbers on my card are falling off", + "damaged_card" + ], + [ + "corner of my credit card is chipped off", + "damaged_card" + ], + [ + "my card got snapped in half", + "damaged_card" + ], + [ + "my card is too scratched and won't read correctly", + "damaged_card" + ], + [ + "the sticker on my card is peeling off", + "damaged_card" + ], + [ + "i can't use my card because it is broken", + "damaged_card" + ], + [ + "my broken card won't work", + "damaged_card" + ], + [ + "i can't use my damaged card", + "damaged_card" + ], + [ + "my damage card is not working", + "damaged_card" + ], + [ + "my damage card will not work", + "damaged_card" + ], + [ + "i don't know who to notify that i ran my credit card over with the lawn mower", + "damaged_card" + ], + [ + "i ran my credit card over with the lawn mower and need to replace it", + "damaged_card" + ], + [ + "i need to replace my credit card because i ran it over with the lawn mower", + "damaged_card" + ], + [ + "my card is partially damaged how do i report this", + "damaged_card" + ], + [ + "my card is not working and i need to let them know", + "damaged_card" + ], + [ + "my card broke in half and i need to report this", + "damaged_card" + ], + [ + "the chip on my card is damaged and i need a new one", + "damaged_card" + ], + [ + "my card's magnetic strip is not working and i want to notify them", + "damaged_card" + ], + [ + "my card has a deep crease through the middle so i would like to report it", + "damaged_card" + ], + [ + "how do i report my card if it got cut in half", + "damaged_card" + ], + [ + "my card is cracked and i want to report it", + "damaged_card" + ], + [ + "my card is too scratched up and i need to report it", + "damaged_card" + ], + [ + "i need to report my bent card", + "damaged_card" + ], + [ + "report to the company that i damaged my card", + "damaged_card" + ], + [ + "call the card company and ask them to replace my card", + "damaged_card" + ], + [ + "i damaged the card; can you replace the card", + "damaged_card" + ], + [ + "i demagnetized my card and want to report it", + "damaged_card" + ], + [ + "i want to report a broken card", + "damaged_card" + ], + [ + "my phone was too close to my card and demagnetized it, how can i report this", + "damaged_card" + ], + [ + "my card has been erased and i need to report it", + "damaged_card" + ], + [ + "i need a report form for my damaged, demagnetized card", + "damaged_card" + ], + [ + "how to report bent credit card", + "damaged_card" + ], + [ + "i can't use my broken card", + "damaged_card" + ], + [ + "i broke my card", + "damaged_card" + ], + [ + "how to tell the company that my credit card melted", + "damaged_card" + ], + [ + "my card is broken", + "damaged_card" + ], + [ + "my card isn't working", + "damaged_card" + ], + [ + "who do i report to if my credit card snaps", + "damaged_card" + ], + [ + "i accidentally bent my card, what do i do", + "damaged_card" + ], + [ + "my card doesn't work anymore", + "damaged_card" + ], + [ + "how do i report a melted credit card", + "damaged_card" + ], + [ + "my card needs replaced, i accidentally scraped it", + "damaged_card" + ], + [ + "i'd like to report my card as damaged, it's bent", + "damaged_card" + ], + [ + "i bent my card, can you report it to my bank", + "damaged_card" + ], + [ + "my card got scratched badly, can you tell my bank to send a replacement", + "damaged_card" + ], + [ + "my card snapped, can you tell my bank to send a replacement", + "damaged_card" + ], + [ + "i accidentally put my credit card in the shredder", + "damaged_card" + ], + [ + "my credit card fell out of my back pocket and got flushed down the toilet", + "damaged_card" + ], + [ + "my credit card snapped in half while i was fiddling with it", + "damaged_card" + ], + [ + "my dog ate my credit card and ruined it", + "damaged_card" + ], + [ + "i was using my credit card as a cutting board and accidentally sliced it in half", + "damaged_card" + ], + [ + "can you assist me with reporting that the atm nicked my card", + "damaged_card" + ], + [ + "i need to report a new card please the atm hurt mine", + "damaged_card" + ], + [ + "how report that scratched my card", + "damaged_card" + ], + [ + "the atm chewed up my card can i get a new one", + "damaged_card" + ], + [ + "an atm ate my card, how do i report it", + "damaged_card" + ], + [ + "my card fell out of my wallet and i ran over it so it does not work", + "damaged_card" + ], + [ + "my card fell in the toilet and now the chip does not work", + "damaged_card" + ], + [ + "the magnetic strip on my card is scratched up pretty badly from overuse can i get a new one", + "damaged_card" + ], + [ + "i need a new card because my dog chewed on it and now it does not work", + "damaged_card" + ], + [ + "i want to report my damaged card i accidentally cut it up thinking it was my expired card", + "damaged_card" + ], + [ + "i cracked my rewards card can i get a different one", + "damaged_card" + ], + [ + "do people like the donuts at tgi", + "restaurant_reviews" + ], + [ + "are the donuts at tgi well reviewed", + "restaurant_reviews" + ], + [ + "how are the donuts reviews at tgi", + "restaurant_reviews" + ], + [ + "what are the comments on the donuts at tgi", + "restaurant_reviews" + ], + [ + "are people recommending the donuts at tgi", + "restaurant_reviews" + ], + [ + "does outback steakhouse have good reviews", + "restaurant_reviews" + ], + [ + "does pizza hut have good reviews", + "restaurant_reviews" + ], + [ + "does have good reviews have great reviews", + "restaurant_reviews" + ], + [ + "does red robin have good reviews", + "restaurant_reviews" + ], + [ + "so does outback steakhouse have good reviews", + "restaurant_reviews" + ], + [ + "how good are the ratings for pizza hut", + "restaurant_reviews" + ], + [ + "how good are the ratings for red robin", + "restaurant_reviews" + ], + [ + "how good are the ratings for outback", + "restaurant_reviews" + ], + [ + "how good are the ratings for papa john's", + "restaurant_reviews" + ], + [ + "how good are the ratings for the olive garden", + "restaurant_reviews" + ], + [ + "what are people saying about chipotle", + "restaurant_reviews" + ], + [ + "tell me the reviews for chipotle", + "restaurant_reviews" + ], + [ + "do people like chipotle", + "restaurant_reviews" + ], + [ + "give me the reviews for chipotle", + "restaurant_reviews" + ], + [ + "what are the ratings for chipotle", + "restaurant_reviews" + ], + [ + "how good are the ratings for chic-fil-a", + "restaurant_reviews" + ], + [ + "how good are the ratings for olive garden", + "restaurant_reviews" + ], + [ + "how good are the ratings for longhorn steakhouse", + "restaurant_reviews" + ], + [ + "does chic-fil-a have good reviews", + "restaurant_reviews" + ], + [ + "how good are the ratings for outback steakhouse", + "restaurant_reviews" + ], + [ + "how good are the ratings for applebees", + "restaurant_reviews" + ], + [ + "does wendy's have good reviews", + "restaurant_reviews" + ], + [ + "does mcdonalds have good reviews", + "restaurant_reviews" + ], + [ + "does longhorn steakhouse have good reviews", + "restaurant_reviews" + ], + [ + "what reviews does miyabi have", + "restaurant_reviews" + ], + [ + "does applebee's have good reviews", + "restaurant_reviews" + ], + [ + "how are the reviews for cracker barrel", + "restaurant_reviews" + ], + [ + "are the reviews for mi casita good", + "restaurant_reviews" + ], + [ + "are the reviews good or bad for burger king", + "restaurant_reviews" + ], + [ + "tell me the ratings for the local denny's", + "restaurant_reviews" + ], + [ + "does the bleu olive have decent reviews", + "restaurant_reviews" + ], + [ + "how are the reviews for la loconda", + "restaurant_reviews" + ], + [ + "how many stars does la vignette have", + "restaurant_reviews" + ], + [ + "does the mediterranean grille have good reviews", + "restaurant_reviews" + ], + [ + "have you heard how the enchiladas are at jose's taco shop", + "restaurant_reviews" + ], + [ + "how does yelp report the enchiladas are at jose's taco shop", + "restaurant_reviews" + ], + [ + "does ihop have good reviews", + "restaurant_reviews" + ], + [ + "can you tell me if eating at outback's any good", + "restaurant_reviews" + ], + [ + "what do people say about village inn", + "restaurant_reviews" + ], + [ + "are the pancakes at ihop any good", + "restaurant_reviews" + ], + [ + "how are the reviews for spaghetti at the olive garden", + "restaurant_reviews" + ], + [ + "how's the lo mein rated at hun lee's", + "restaurant_reviews" + ], + [ + "how's the sausage pizza at pizza hut", + "restaurant_reviews" + ], + [ + "is mcdonalds a good place to eat", + "restaurant_reviews" + ], + [ + "what's the reviews have to say about burger king", + "restaurant_reviews" + ], + [ + "how are the burgers at carl jr's", + "restaurant_reviews" + ], + [ + "are the chili's reviews any good", + "restaurant_reviews" + ], + [ + "are the reviews for applebee's good", + "restaurant_reviews" + ], + [ + "i want to know how the mcdonalds reviews are", + "restaurant_reviews" + ], + [ + "tell me about the reviews for chilis", + "restaurant_reviews" + ], + [ + "let me know how the outback steakhouse reviews are", + "restaurant_reviews" + ], + [ + "how good are the ratings for per se", + "restaurant_reviews" + ], + [ + "what are the reviews like for khin khao", + "restaurant_reviews" + ], + [ + "how good are the ratings for the french laundry", + "restaurant_reviews" + ], + [ + "how good are the ratings for chez panisse", + "restaurant_reviews" + ], + [ + "how good are the ratings for peter luger steakhouse", + "restaurant_reviews" + ], + [ + "what are the reviews like for mission chinese", + "restaurant_reviews" + ], + [ + "what are the reviews like for zazie", + "restaurant_reviews" + ], + [ + "what are the reviews like for bar tartine", + "restaurant_reviews" + ], + [ + "what are the reviews like for la camelia", + "restaurant_reviews" + ], + [ + "how are people liking the sushi at yakamoto", + "restaurant_reviews" + ], + [ + "is there any opinions on the sushi at yakamoto", + "restaurant_reviews" + ], + [ + "is the sushi well-received at yakamoto", + "restaurant_reviews" + ], + [ + "at yakamoto how is their sushi", + "restaurant_reviews" + ], + [ + "what is the sushi like at yakamoto", + "restaurant_reviews" + ], + [ + "what are the reviews like at minnis", + "restaurant_reviews" + ], + [ + "does buffalo wild wings have good reviews", + "restaurant_reviews" + ], + [ + "tell me the reviews for bjs", + "restaurant_reviews" + ], + [ + "what are the ratings about at pho king", + "restaurant_reviews" + ], + [ + "how are the ratings like for buffalo wild wings", + "restaurant_reviews" + ], + [ + "read some of the reviews for wing stop", + "restaurant_reviews" + ], + [ + "does applebees have alright reviews", + "restaurant_reviews" + ], + [ + "does bjs get good reviews", + "restaurant_reviews" + ], + [ + "what are the ratings like for chilis", + "restaurant_reviews" + ], + [ + "what do the ratings say about korean bbq", + "restaurant_reviews" + ], + [ + "what do the ratings say for black bear diner", + "restaurant_reviews" + ], + [ + "what are the reviews for mountain mikes", + "restaurant_reviews" + ], + [ + "i need to hear reviews for panda express", + "restaurant_reviews" + ], + [ + "what are the reviews like for black bear dinner", + "restaurant_reviews" + ], + [ + "does chillis have good reviews", + "restaurant_reviews" + ], + [ + "do people like the food at wendy's", + "restaurant_reviews" + ], + [ + "are there any positive reviews for wendy's", + "restaurant_reviews" + ], + [ + "what kind of reviews does wendy's have", + "restaurant_reviews" + ], + [ + "are there any negative reviews for wendy's", + "restaurant_reviews" + ], + [ + "what do people think about the sandwiches at wendy's", + "restaurant_reviews" + ], + [ + "look up the ratings for olive garden", + "restaurant_reviews" + ], + [ + "pull up the ratings for macaroni grill", + "restaurant_reviews" + ], + [ + "tell me about the reviews for olive garden", + "restaurant_reviews" + ], + [ + "are the reviews for chevy's any good", + "restaurant_reviews" + ], + [ + "has ruby tuesday got good reviews", + "restaurant_reviews" + ], + [ + "does chili's have good reviews", + "restaurant_reviews" + ], + [ + "tell me how good ihop's ratings are", + "restaurant_reviews" + ], + [ + "fill me in on the reviews for ruby tuesday", + "restaurant_reviews" + ], + [ + "does ihop have positive reviews", + "restaurant_reviews" + ], + [ + "what are reviews for ihop like", + "restaurant_reviews" + ], + [ + "where can i see the routing number for bmo", + "routing" + ], + [ + "i need to know what my wife's account's routing number is", + "routing" + ], + [ + "how do i locate my routing number for tax reasons", + "routing" + ], + [ + "where can i look up x's routing number", + "routing" + ], + [ + "please give my routing number for my national account", + "routing" + ], + [ + "where do i go to find my routing number for southpoint", + "routing" + ], + [ + "tell me my first national account's routing number", + "routing" + ], + [ + "how can i find my routing number for el dorado", + "routing" + ], + [ + "i need you to tell my what my routing number is for my first county account", + "routing" + ], + [ + "i need the routing number for my woodlawn account", + "routing" + ], + [ + "where do i find the routing number for sunflower bank", + "routing" + ], + [ + "can i get the routing number for sunflower bank", + "routing" + ], + [ + "where do i find the routing number for nfcu", + "routing" + ], + [ + "what's bank of america's routing number", + "routing" + ], + [ + "i need to know nfcu's routing number", + "routing" + ], + [ + "can you tell me the routing number of wells fargo", + "routing" + ], + [ + "where do i find the routing number for great western bank", + "routing" + ], + [ + "how do i find axos bank's routing number", + "routing" + ], + [ + "ai, routing number for my b of a checking account", + "routing" + ], + [ + "ai, what is my chase checking routing number", + "routing" + ], + [ + "ai, routing number for my wells fargo checking", + "routing" + ], + [ + "ai, what is the routing number for my citibank savings account", + "routing" + ], + [ + "ai, what is my chase routing number", + "routing" + ], + [ + "what's my routing number from chase", + "routing" + ], + [ + "can you help me find my routing number from wells fargo", + "routing" + ], + [ + "could you tell me what my routing number from first republic is", + "routing" + ], + [ + "do you know where i can find my suntrust routing number", + "routing" + ], + [ + "how can i find my routing number from bank of america", + "routing" + ], + [ + "what routing number do i use to send an international wire with citibank", + "routing" + ], + [ + "search for my routing number for my checking account with wells fargo", + "routing" + ], + [ + "what is my pnc account routing number", + "routing" + ], + [ + "can you tell me the routing number for my chase checking", + "routing" + ], + [ + "please find my routing number for my citizens' bank account", + "routing" + ], + [ + "i need to know my bank of america account routing number", + "routing" + ], + [ + "i need to find the correct td bank routing number for my pennsylvania account", + "routing" + ], + [ + "what is the correct routing number for my citizens bank account, pennsylvania", + "routing" + ], + [ + "please find the routing number for chase bank accounts opened in new york", + "routing" + ], + [ + "can you tell me the routing number for bank of america for domestic accounts", + "routing" + ], + [ + "please tell me what my bank routing number is", + "routing" + ], + [ + "i must learn my routing number", + "routing" + ], + [ + "what's the routing number for my money market account", + "routing" + ], + [ + "tell me my bank routing number", + "routing" + ], + [ + "where do i find the routing number for wells fargo", + "routing" + ], + [ + "i wanna know my bank of america routing number", + "routing" + ], + [ + "tell me my bank of america routing number", + "routing" + ], + [ + "how do i get the routing number for chase", + "routing" + ], + [ + "what's the routing number for my savings account", + "routing" + ], + [ + "let me know my bank of america routing number", + "routing" + ], + [ + "what's the routing number for my checking account", + "routing" + ], + [ + "let me know my routing number", + "routing" + ], + [ + "what's the routing number for my current savings", + "routing" + ], + [ + "i need to know my routing number", + "routing" + ], + [ + "what's the routing number for my current checking", + "routing" + ], + [ + "i must know my bank of america routing number", + "routing" + ], + [ + "show me the routing number for chase", + "routing" + ], + [ + "i need to know my bank of america routing number", + "routing" + ], + [ + "what is my routing number for home federal account", + "routing" + ], + [ + "show me my routing number for account finishing in 29309", + "routing" + ], + [ + "for my westport account, what is the routing number", + "routing" + ], + [ + "what is the routing number for royal", + "routing" + ], + [ + "display the routing number for account huntington", + "routing" + ], + [ + "provide me the routing number for my fed account", + "routing" + ], + [ + "give me the routing number for my paragon account", + "routing" + ], + [ + "let me know what the routing number for my civista account is", + "routing" + ], + [ + "inform me of the routing number for my amerifirst account", + "routing" + ], + [ + "tell me the routing number for my wf account", + "routing" + ], + [ + "routing number for american river", + "routing" + ], + [ + "what is the routing number of cadence", + "routing" + ], + [ + "what's my pioneer routing number", + "routing" + ], + [ + "can you tell me my routing number for summit", + "routing" + ], + [ + "what is my routing number for marine bank", + "routing" + ], + [ + "can you tell me my routing number", + "routing" + ], + [ + "what is my routing number", + "routing" + ], + [ + "i need my routing number", + "routing" + ], + [ + "i want to know my routing number please", + "routing" + ], + [ + "where do i find the routing number for usaa", + "routing" + ], + [ + "what's the routing number for my navy federal account", + "routing" + ], + [ + "what's the routing number for my chase account", + "routing" + ], + [ + "what's the routing number for my bank of america account", + "routing" + ], + [ + "where do i find the routing number for chase", + "routing" + ], + [ + "where do i find the routing number for bank of america", + "routing" + ], + [ + "where do i find the routing number for bank of the west", + "routing" + ], + [ + "where do i find the routing number for navy federal", + "routing" + ], + [ + "what's the routing number for my bank of the west account", + "routing" + ], + [ + "what's the routing number for my usaa account", + "routing" + ], + [ + "what's my bank routing number", + "routing" + ], + [ + "can i get the routing number for my boa account", + "routing" + ], + [ + "i need to know the routing number for my wells fargo account", + "routing" + ], + [ + "what is the routing number for my wells fargo account", + "routing" + ], + [ + "please tell me the routing number for my wells fargo account", + "routing" + ], + [ + "please tell me my bank of america routing number", + "routing" + ], + [ + "i need to know the routing number for my checking", + "routing" + ], + [ + "could you tell me the routing number for my chase checking account", + "routing" + ], + [ + "what is my routing number on my checking account", + "routing" + ], + [ + "i need the routing number to my chase checking account", + "routing" + ], + [ + "what is the routing number on my first merit account", + "routing" + ], + [ + "can you help me find the routing number", + "routing" + ], + [ + "will you tell me my routing number", + "routing" + ], + [ + "would you tell me my routing number", + "routing" + ], + [ + "i need to know chase banks routing #", + "routing" + ], + [ + "what type of pet do you have", + "do_you_have_pets" + ], + [ + "share some information about your pets with me", + "do_you_have_pets" + ], + [ + "do you have any type of pet", + "do_you_have_pets" + ], + [ + "do you own pets", + "do_you_have_pets" + ], + [ + "what are the pets that you have in your possession", + "do_you_have_pets" + ], + [ + "describe your types of pets", + "do_you_have_pets" + ], + [ + "how would you explain the pets you own", + "do_you_have_pets" + ], + [ + "what are the pet types you own", + "do_you_have_pets" + ], + [ + "do you have any pet animals", + "do_you_have_pets" + ], + [ + "any pets in your household", + "do_you_have_pets" + ], + [ + "do you have any domestic animals", + "do_you_have_pets" + ], + [ + "which animals do you have at home", + "do_you_have_pets" + ], + [ + "tell me all about the creatures you own", + "do_you_have_pets" + ], + [ + "specifically, what pets do you own", + "do_you_have_pets" + ], + [ + "if you had to choose, would you choose a cat or a dog", + "do_you_have_pets" + ], + [ + "what is your favorite, cats or dogs", + "do_you_have_pets" + ], + [ + "what kind of person are you, a cat or dog", + "do_you_have_pets" + ], + [ + "which food do you give your pets", + "do_you_have_pets" + ], + [ + "how old are your pets", + "do_you_have_pets" + ], + [ + "the pets are all good", + "do_you_have_pets" + ], + [ + "what is the colour of your pets", + "do_you_have_pets" + ], + [ + "what is your favourite pet", + "do_you_have_pets" + ], + [ + "do you have many kinds of pets at your house", + "do_you_have_pets" + ], + [ + "what kind of pets live with you", + "do_you_have_pets" + ], + [ + "how many different pets do you have", + "do_you_have_pets" + ], + [ + "do you have different kinds of pets", + "do_you_have_pets" + ], + [ + "what sort of pets do you have", + "do_you_have_pets" + ], + [ + "tell me about your pets", + "do_you_have_pets" + ], + [ + "what sort of person are you, a cat or dog person", + "do_you_have_pets" + ], + [ + "tell me if you like cats or dogs", + "do_you_have_pets" + ], + [ + "let me know about your pets", + "do_you_have_pets" + ], + [ + "can you tell me the types of pets you have", + "do_you_have_pets" + ], + [ + "i'd like to learn more about your pets", + "do_you_have_pets" + ], + [ + "so what pets do you have", + "do_you_have_pets" + ], + [ + "would you say you like cats or dogs", + "do_you_have_pets" + ], + [ + "would you say you're a person who likes cats or dogs more", + "do_you_have_pets" + ], + [ + "cats or dogs", + "do_you_have_pets" + ], + [ + "i want to know what kinds of pets you have", + "do_you_have_pets" + ], + [ + "would you let me know if you are a cat or dog person", + "do_you_have_pets" + ], + [ + "let me know what kinds of pets you have", + "do_you_have_pets" + ], + [ + "would you tell me what kind of pets you have", + "do_you_have_pets" + ], + [ + "i am needing to know what kind of pets you have", + "do_you_have_pets" + ], + [ + "tell me what kind of pets you have", + "do_you_have_pets" + ], + [ + "i want to know if you are a cat or dog person", + "do_you_have_pets" + ], + [ + "let me know if you are a cat or dog person", + "do_you_have_pets" + ], + [ + "i need to know whether you are a cat or dog person", + "do_you_have_pets" + ], + [ + "tell me whether you are a cat or dog person", + "do_you_have_pets" + ], + [ + "you have what kind of pets", + "do_you_have_pets" + ], + [ + "you have pets of what kind", + "do_you_have_pets" + ], + [ + "pets you have what kind", + "do_you_have_pets" + ], + [ + "on pets, what kind do you have", + "do_you_have_pets" + ], + [ + "kind of what pets do you have", + "do_you_have_pets" + ], + [ + "imagine you had to pick a preferred animal between cats or dogs, which will you pick", + "do_you_have_pets" + ], + [ + "why types of animals do you currently have as pets", + "do_you_have_pets" + ], + [ + "to what animal species do your pets belong", + "do_you_have_pets" + ], + [ + "what species of pets do you own", + "do_you_have_pets" + ], + [ + "what sort of animals are your pets", + "do_you_have_pets" + ], + [ + "would you say you like dogs more or cats more", + "do_you_have_pets" + ], + [ + "are you currently a pet owner", + "do_you_have_pets" + ], + [ + "have you any pets", + "do_you_have_pets" + ], + [ + "would you say that you are now a pet owner", + "do_you_have_pets" + ], + [ + "think about if you could only say one or the other, which animal do you see yourself choosing, cats or dogs", + "do_you_have_pets" + ], + [ + "which do you prefer, cats or dogs", + "do_you_have_pets" + ], + [ + "what pets do you currently own", + "do_you_have_pets" + ], + [ + "if you were getting a pet, would you get a cat or would you get a dog", + "do_you_have_pets" + ], + [ + "which pets do you own now", + "do_you_have_pets" + ], + [ + "so are cats and dogs liked by you", + "do_you_have_pets" + ], + [ + "are you a cat person", + "do_you_have_pets" + ], + [ + "so do you like cats or dogs", + "do_you_have_pets" + ], + [ + "i gotta know what kinds of pets you have", + "do_you_have_pets" + ], + [ + "tell me what kinds of pets you have", + "do_you_have_pets" + ], + [ + "do you like cat or dogs", + "do_you_have_pets" + ], + [ + "i need to know what kinds of pets you have", + "do_you_have_pets" + ], + [ + "i wanna know what kinds of pets you have", + "do_you_have_pets" + ], + [ + "do you like cats or dogs", + "do_you_have_pets" + ], + [ + "i must know what kinds of pets you have", + "do_you_have_pets" + ], + [ + "if you had to choose, cat or dog", + "do_you_have_pets" + ], + [ + "would you like to live with a cat or a dog", + "do_you_have_pets" + ], + [ + "which domestic animal do you prefer, dog or cat", + "do_you_have_pets" + ], + [ + "what is your favorite pet, a cat or a dog", + "do_you_have_pets" + ], + [ + "do you have pets", + "do_you_have_pets" + ], + [ + "do you keep any pets", + "do_you_have_pets" + ], + [ + "what are all your pets", + "do_you_have_pets" + ], + [ + "what are your pets", + "do_you_have_pets" + ], + [ + "how many pets do you have", + "do_you_have_pets" + ], + [ + "what animals do you have", + "do_you_have_pets" + ], + [ + "do you own any pet", + "do_you_have_pets" + ], + [ + "what kind of pets do you own", + "do_you_have_pets" + ], + [ + "what are the pets that you take care of", + "do_you_have_pets" + ], + [ + "do you own any pet at all", + "do_you_have_pets" + ], + [ + "what are the pets that you raise", + "do_you_have_pets" + ], + [ + "do you have any pet at all", + "do_you_have_pets" + ], + [ + "can you tell me about the pets you have", + "do_you_have_pets" + ], + [ + "can you tell me if you have any pets", + "do_you_have_pets" + ], + [ + "i am curious about whether you have pets", + "do_you_have_pets" + ], + [ + "i want to know whether or not you are a pet owner", + "do_you_have_pets" + ], + [ + "what sorts of pets do you own", + "do_you_have_pets" + ], + [ + "i want to hear about your pets", + "do_you_have_pets" + ], + [ + "are you a pet owner", + "do_you_have_pets" + ], + [ + "what types of pets do you own", + "do_you_have_pets" + ], + [ + "i want to know if there is meeting room available at 8", + "schedule_meeting" + ], + [ + "meeting room availability from 8:00 please", + "schedule_meeting" + ], + [ + "are there any meetings room available between 8:00 and 9:00 am", + "schedule_meeting" + ], + [ + "i want to check if there is any meeting room available between 8:00 and 10:00 am", + "schedule_meeting" + ], + [ + "tell me how do i schedule a meeting", + "schedule_meeting" + ], + [ + "show me how do i schedule a meeting", + "schedule_meeting" + ], + [ + "i want to know how do i schedule a meeting", + "schedule_meeting" + ], + [ + "meeting room availability at 8:00 please", + "schedule_meeting" + ], + [ + "i want to find out how do i schedule a meeting", + "schedule_meeting" + ], + [ + "do you know how do i schedule a meeting", + "schedule_meeting" + ], + [ + "can you schedule a meeting with steve at the office", + "schedule_meeting" + ], + [ + "can you schedule a meeting with jessica at the office, please", + "schedule_meeting" + ], + [ + "can you schedule a meeting with james at the office, please", + "schedule_meeting" + ], + [ + "how do i create a meeting", + "schedule_meeting" + ], + [ + "how can i create a meeting", + "schedule_meeting" + ], + [ + "how can i schedule a meeting", + "schedule_meeting" + ], + [ + "can you schedule a meeting with steve at the office, please", + "schedule_meeting" + ], + [ + "can you schedule a meeting with james at the office", + "schedule_meeting" + ], + [ + "do you have a meeting room open from noon until 2:00 pm", + "schedule_meeting" + ], + [ + "i'd like to schedule a meeting room from 1:00 pm until 2:00 pm", + "schedule_meeting" + ], + [ + "can i book a meeting room from 2:00 pm to 3:00 pm", + "schedule_meeting" + ], + [ + "are there any meeting rooms free from 10:00 am until 10:30 am", + "schedule_meeting" + ], + [ + "what is your availability for conference rooms between one and two today", + "schedule_meeting" + ], + [ + "i want to schedule a meeting with tom for 6pm", + "schedule_meeting" + ], + [ + "add a new meeting with tom for 6pm", + "schedule_meeting" + ], + [ + "how can you schedule a meeting for me", + "schedule_meeting" + ], + [ + "can you schedule a meeting for me", + "schedule_meeting" + ], + [ + "schedule a meeting with tom for 6pm", + "schedule_meeting" + ], + [ + "i need to schedule a meeting", + "schedule_meeting" + ], + [ + "schedule a meeting for me", + "schedule_meeting" + ], + [ + "add a meeting with tom at 6pm", + "schedule_meeting" + ], + [ + "i need to set a meeting with tom at 6pm", + "schedule_meeting" + ], + [ + "would you schedule a meeting with carrie and lisa please", + "schedule_meeting" + ], + [ + "i need you to schedule a meeting with carrie and lisa", + "schedule_meeting" + ], + [ + "schedule a meeting with carrie and lisa", + "schedule_meeting" + ], + [ + "i want you to schedule a meeting with carrie and lisa", + "schedule_meeting" + ], + [ + "could you please schedule a meeting with carrie and lisa", + "schedule_meeting" + ], + [ + "i want a meeting to be scheduled", + "schedule_meeting" + ], + [ + "tell me how i can schedule a meeting", + "schedule_meeting" + ], + [ + "help me schedule a meeting", + "schedule_meeting" + ], + [ + "how does scheduling a meeting work", + "schedule_meeting" + ], + [ + "help me get a meeting set up", + "schedule_meeting" + ], + [ + "i need a meeting scheduled with bob for 7:00am on 9/11", + "schedule_meeting" + ], + [ + "get me a meeting with bill for 5:30pm tomorrow", + "schedule_meeting" + ], + [ + "i have to meet with sam at 9:00am in two days", + "schedule_meeting" + ], + [ + "set a meeting with tom for 5:30 tomorrow", + "schedule_meeting" + ], + [ + "i'm having trouble scheduling a meeting", + "schedule_meeting" + ], + [ + "put a meeting on my schedule with pam for 3:00pm on february 11th", + "schedule_meeting" + ], + [ + "are there meeting rooms available between 9-10", + "schedule_meeting" + ], + [ + "are there meeting rooms available between 7-9", + "schedule_meeting" + ], + [ + "are there meeting rooms available between 11-12", + "schedule_meeting" + ], + [ + "are there meeting rooms available between 4-8", + "schedule_meeting" + ], + [ + "are there meeting rooms available between 10-11", + "schedule_meeting" + ], + [ + "can you put in a meeting for the blue room on friday", + "schedule_meeting" + ], + [ + "can you sign me up for a meeting in the blue room on friday", + "schedule_meeting" + ], + [ + "i want to know if there are meeting rooms available between 9:00 am and 11:00 am", + "schedule_meeting" + ], + [ + "please help me schedule a meeting with john love at 9 am tomorrow", + "schedule_meeting" + ], + [ + "between 9:00 am and 11:00 am, are there meeting rooms available", + "schedule_meeting" + ], + [ + "could you schedule a meeting with john smith at 1 pm tomorrow", + "schedule_meeting" + ], + [ + "i need you to schedule a meeting with bob brown at noon the day after tomorrow", + "schedule_meeting" + ], + [ + "can see you see if there are meeting rooms available between 9:00 am and 11:00 am", + "schedule_meeting" + ], + [ + "see if you can schedule a meeting with don southerland tomorrow at noon", + "schedule_meeting" + ], + [ + "i need meeting rooms between 9:00 am and 11:00 am, are there any available", + "schedule_meeting" + ], + [ + "can you schedule a meeting at 10 am tomorrow with john smith", + "schedule_meeting" + ], + [ + "please tell me if there are meeting rooms available between 9:00 am and 11:00 am", + "schedule_meeting" + ], + [ + "can you schedule a meeting room for interviews on thursday", + "schedule_meeting" + ], + [ + "can you schedule a meeting with damon for 1", + "schedule_meeting" + ], + [ + "can you schedule a meeting with john for 12", + "schedule_meeting" + ], + [ + "can you schedule a meeting with steve for 5", + "schedule_meeting" + ], + [ + "can you schedule a meeting with george for 4", + "schedule_meeting" + ], + [ + "can you schedule a meeting with matt for 3", + "schedule_meeting" + ], + [ + "a meeting needs to be schedule and i need to know how", + "schedule_meeting" + ], + [ + "show me how to schedule a meeting", + "schedule_meeting" + ], + [ + "tell me how to schedule a meeting", + "schedule_meeting" + ], + [ + "schedule a meeting room for friday at 3pm", + "schedule_meeting" + ], + [ + "at noon, schedule a meeting with saul", + "schedule_meeting" + ], + [ + "i'd like to pencil in a meeting with seth at 11am", + "schedule_meeting" + ], + [ + "what's the meeting room availability between noon and 2", + "schedule_meeting" + ], + [ + "set up a meeting with frank at 2pm", + "schedule_meeting" + ], + [ + "are there any open meeting rooms between noon and 1", + "schedule_meeting" + ], + [ + "book me a meeting room for 12pm on february 28th", + "schedule_meeting" + ], + [ + "are any meeting rooms open between 9 and 10", + "schedule_meeting" + ], + [ + "is there an open meeting room between 2 and 4", + "schedule_meeting" + ], + [ + "can you hook me up with a meeting room on saturday morning at 10am", + "schedule_meeting" + ], + [ + "i need to schedule a meeting with mae at 5pm", + "schedule_meeting" + ], + [ + "i'm going to need a meeting room on 9am on tuesday", + "schedule_meeting" + ], + [ + "i need a meeting room at 2pm on friday", + "schedule_meeting" + ], + [ + "i'm going to need to meet with scott at 1pm", + "schedule_meeting" + ], + [ + "is it possible to book a meeting room between 10 and 11", + "schedule_meeting" + ], + [ + "would you be able to help me with a meeting room on wednesday at 3pm", + "schedule_meeting" + ], + [ + "during afternoon is there a meeting room to use", + "schedule_meeting" + ], + [ + "is there a meeting room available between one and two", + "schedule_meeting" + ], + [ + "what is the availability of meeting rooms during the afternoon", + "schedule_meeting" + ], + [ + "how many rooms are available between 2 and 3", + "schedule_meeting" + ], + [ + "check if meeting rooms are free from 6 to 7", + "schedule_meeting" + ], + [ + "please find out if rooms are free from 1 to 2", + "schedule_meeting" + ], + [ + "are any rooms free from 12 to 1", + "schedule_meeting" + ], + [ + "are there rooms available between 5 and 530", + "schedule_meeting" + ], + [ + "if i want to schedule a meeting, how do i do it", + "schedule_meeting" + ], + [ + "how is a meeting scheduled", + "schedule_meeting" + ], + [ + "what kind of gasoline can this car take", + "gas_type" + ], + [ + "is there a certain type of gas i need to use", + "gas_type" + ], + [ + "i need to know what kind of gas i can use on this car", + "gas_type" + ], + [ + "is any type of gas ok on this car", + "gas_type" + ], + [ + "is there a certain type of gas i need to use for this car", + "gas_type" + ], + [ + "i want to know the type of gasoline for this car", + "gas_type" + ], + [ + "tell me the gas type for that car", + "gas_type" + ], + [ + "tell me what type of gas this car uses", + "gas_type" + ], + [ + "tell me what kind of gas this car uses", + "gas_type" + ], + [ + "what type of fuel does my car need", + "gas_type" + ], + [ + "what type of gas does the car use", + "gas_type" + ], + [ + "what type of fuel do i need to use to fill the car up with", + "gas_type" + ], + [ + "what type of gas do i need to use in this car", + "gas_type" + ], + [ + "what type of gas does this car need", + "gas_type" + ], + [ + "what kind of fuel do i need", + "gas_type" + ], + [ + "what kind of gas will i need to put in this car", + "gas_type" + ], + [ + "i need to know what kind of fuel this car needs", + "gas_type" + ], + [ + "what kind of gas should i use to fill the car", + "gas_type" + ], + [ + "what kind of petrol goes in the tank", + "gas_type" + ], + [ + "can i use any fuel in my car", + "gas_type" + ], + [ + "what kind of fuel should i use to fill the car", + "gas_type" + ], + [ + "tell me what type of fuel i need to use for this car", + "gas_type" + ], + [ + "what fuel do i need for my car", + "gas_type" + ], + [ + "what kind of gas should i put in this car", + "gas_type" + ], + [ + "what gas do i need to fill the car up with", + "gas_type" + ], + [ + "does my car need specific fuel", + "gas_type" + ], + [ + "which type of gas do i need to put in my car", + "gas_type" + ], + [ + "what sort of gas does the car need", + "gas_type" + ], + [ + "tell me what cas is needed for this car", + "gas_type" + ], + [ + "i need to know what kind of gas to put in this car", + "gas_type" + ], + [ + "i would like to know the kind of gas that this car uses", + "gas_type" + ], + [ + "tell me the gas i need to fill this car up with", + "gas_type" + ], + [ + "what gas does the car need", + "gas_type" + ], + [ + "what gas does that car currently use", + "gas_type" + ], + [ + "what gas does the car use", + "gas_type" + ], + [ + "i wanna know the gas i need to fill this car up with", + "gas_type" + ], + [ + "what kind of gas does my car currently need", + "gas_type" + ], + [ + "what gas is needed for the car", + "gas_type" + ], + [ + "i wanna know the gad i need to fill this car up with", + "gas_type" + ], + [ + "please inform me the gas i need to fill this car up with", + "gas_type" + ], + [ + "what gas does my car use", + "gas_type" + ], + [ + "so what kind of gas does my car need", + "gas_type" + ], + [ + "i wish to know the gas i need to fill this car up with", + "gas_type" + ], + [ + "what type of gas does my car use", + "gas_type" + ], + [ + "what kind of gas does my car use", + "gas_type" + ], + [ + "what type of gas am i allowed to put in this car", + "gas_type" + ], + [ + "what kind of gas should go in this car", + "gas_type" + ], + [ + "what kind of gas goes in this car", + "gas_type" + ], + [ + "what type of gas does this car take", + "gas_type" + ], + [ + "what kind of gas does my vehicle take", + "gas_type" + ], + [ + "what sort of fuel does this car take", + "gas_type" + ], + [ + "what type of fuel is used for this vehicle", + "gas_type" + ], + [ + "what sort of fuel should i use for this car", + "gas_type" + ], + [ + "tell me the kind of fuel that my vehicle operates on", + "gas_type" + ], + [ + "what kind of fuel does my vehicle run on", + "gas_type" + ], + [ + "what sort of gas should i get for my car", + "gas_type" + ], + [ + "tell me the right kind of gas for this car", + "gas_type" + ], + [ + "look up the kind of fuel i use in my car", + "gas_type" + ], + [ + "what sort of fuel do i need for my car", + "gas_type" + ], + [ + "can you check what fuel type to use with this car", + "gas_type" + ], + [ + "what kind of gas does this car take", + "gas_type" + ], + [ + "look up the type of gas needed for this vehicle", + "gas_type" + ], + [ + "tell me the fuel type used by my car", + "gas_type" + ], + [ + "what kind of gas is needed for this car", + "gas_type" + ], + [ + "does it matter what kind of gas i fill up my car with", + "gas_type" + ], + [ + "should i use premium gas with this car", + "gas_type" + ], + [ + "will using a different type of gas matter for this car", + "gas_type" + ], + [ + "will this car run on the cheaper gas", + "gas_type" + ], + [ + "can i put normal unleaded in this car", + "gas_type" + ], + [ + "is unleaded ok or should i use premium", + "gas_type" + ], + [ + "what percentage gas do i need", + "gas_type" + ], + [ + "what kind of gas does this car use", + "gas_type" + ], + [ + "what type of fuel should i use in my car", + "gas_type" + ], + [ + "which fuel does my car take", + "gas_type" + ], + [ + "what kind of fuel goes in my engine", + "gas_type" + ], + [ + "does this car take regular gas", + "gas_type" + ], + [ + "tell me the gasoline type for this car", + "gas_type" + ], + [ + "what type of gas do i need to put in this car", + "gas_type" + ], + [ + "what type of gas do i need for this car", + "gas_type" + ], + [ + "does this care use premium gas", + "gas_type" + ], + [ + "is regular gas ok or does this car need something else", + "gas_type" + ], + [ + "which gas grade does this car take", + "gas_type" + ], + [ + "which gas type does this car take", + "gas_type" + ], + [ + "what's the correct fuel type for my car", + "gas_type" + ], + [ + "does this car need high octane gas", + "gas_type" + ], + [ + "does this take regular unleaded", + "gas_type" + ], + [ + "is there a minimum gas grade this car needs", + "gas_type" + ], + [ + "tell me the fuel my car takes", + "gas_type" + ], + [ + "my car uses what type of fuel", + "gas_type" + ], + [ + "tell me the type of fuel my car takes", + "gas_type" + ], + [ + "tell me what type of fuel my car uses", + "gas_type" + ], + [ + "what type of fuel does my car use", + "gas_type" + ], + [ + "what kind of gas do i put in my car", + "gas_type" + ], + [ + "what gasoline do i need to buy", + "gas_type" + ], + [ + "what kind of gas does my car take", + "gas_type" + ], + [ + "what kind of gas does this car need", + "gas_type" + ], + [ + "what kind of gas should i put into this car", + "gas_type" + ], + [ + "what gas does this car need", + "gas_type" + ], + [ + "what gas should i fill it up with", + "gas_type" + ], + [ + "what do i need to gas up this car", + "gas_type" + ], + [ + "do i need a socket converter if i'm going to mexico", + "plug_type" + ], + [ + "does england have a different plug type and if so what is it", + "plug_type" + ], + [ + "is there a conversion plug if you travel to australia", + "plug_type" + ], + [ + "what kind of plug type do they use in russia", + "plug_type" + ], + [ + "what type of plug do i need to bring if i visit japan", + "plug_type" + ], + [ + "what type of plug do they use in mexico", + "plug_type" + ], + [ + "when you go to germany, do you need a special converter for your plugs", + "plug_type" + ], + [ + "do visitors to japan need to use a socket converter", + "plug_type" + ], + [ + "do you need a special outlet converter in sweden", + "plug_type" + ], + [ + "do i need a power adapter in mexico", + "plug_type" + ], + [ + "do they use special outlets in australia", + "plug_type" + ], + [ + "do they use any special type of plug in spain that you need a converter for", + "plug_type" + ], + [ + "do i need to have a socket converter in canada", + "plug_type" + ], + [ + "is a socket converter required if i travel to russia", + "plug_type" + ], + [ + "do they use weird plugs in australia where i'd need some kind of socket converter", + "plug_type" + ], + [ + "is there an outlet plug adapter", + "plug_type" + ], + [ + "can you tell me what kind of outlet plug there is over there", + "plug_type" + ], + [ + "how do i know what the outlets are like", + "plug_type" + ], + [ + "i'm going out of country, what type of outlet plug do i need", + "plug_type" + ], + [ + "what if i have the wrong plug", + "plug_type" + ], + [ + "do i need a socket converter if i'm going to be in ohio", + "plug_type" + ], + [ + "in osaka, do i need a plug converter for my electronics", + "plug_type" + ], + [ + "will i need a plug converter for my electronics in amman", + "plug_type" + ], + [ + "what plug types are there in cuba", + "plug_type" + ], + [ + "in chile, what kind of plugs are used", + "plug_type" + ], + [ + "what type of plugs do they use in london", + "plug_type" + ], + [ + "if i visit cairo will i need a plug converter", + "plug_type" + ], + [ + "to charge my phone in india will i need a plug converter", + "plug_type" + ], + [ + "what kind of plugs will i need when i'm in ecuador", + "plug_type" + ], + [ + "will i need to use a plug converter in el salvador", + "plug_type" + ], + [ + "what plugs are used in spain", + "plug_type" + ], + [ + "what type of plug does the country use", + "plug_type" + ], + [ + "give me the plug type for the country", + "plug_type" + ], + [ + "what kind of plug does the country use", + "plug_type" + ], + [ + "i have to know what plug that country uses", + "plug_type" + ], + [ + "inform me as to the plug type of the country", + "plug_type" + ], + [ + "which type of plugs do they use in scotland", + "plug_type" + ], + [ + "are socket converters needed in lisbon", + "plug_type" + ], + [ + "will i need a socket converter when i go to france", + "plug_type" + ], + [ + "is a socket converter required in india", + "plug_type" + ], + [ + "what kind of plug does my hair dryer use in south korea", + "plug_type" + ], + [ + "if i go to dublin is a socket converter needed", + "plug_type" + ], + [ + "what type of plugs are used in cambodia", + "plug_type" + ], + [ + "what kind of plug do i need for my razor in ireland", + "plug_type" + ], + [ + "when i go to dubai will i need a socket converter", + "plug_type" + ], + [ + "when i go to mexico, what kind of plugs do i need", + "plug_type" + ], + [ + "what kind of plug converter is needed in c", + "plug_type" + ], + [ + "what kind of outlets does havana have", + "plug_type" + ], + [ + "do i need a plug converter in doha", + "plug_type" + ], + [ + "is a plug converter required for haiti", + "plug_type" + ], + [ + "do i need to get a plug converter for athens", + "plug_type" + ], + [ + "do i need a socket converter if i'm going to be in russia", + "plug_type" + ], + [ + "do i need a plug converter when i visit russia", + "plug_type" + ], + [ + "do i need a socket converter if i'm going to be in china", + "plug_type" + ], + [ + "do i need a socket converter if i'm going to be in uruguay", + "plug_type" + ], + [ + "do i need a plug converter when i visit belgium", + "plug_type" + ], + [ + "what plug type does russia use", + "plug_type" + ], + [ + "what plug type does greece use", + "plug_type" + ], + [ + "do i need a socket converter if i'm going to be in germany", + "plug_type" + ], + [ + "what plug type does spain use", + "plug_type" + ], + [ + "what plug type is used in spain", + "plug_type" + ], + [ + "do i need a socket converter if i'm going to be in france", + "plug_type" + ], + [ + "tell me the plug type that is used in scotland", + "plug_type" + ], + [ + "should i bring a converter to barcelona", + "plug_type" + ], + [ + "do i need a converter in barcelona", + "plug_type" + ], + [ + "are barcelona plugs compatible", + "plug_type" + ], + [ + "will my plugs work in barcelona", + "plug_type" + ], + [ + "are the plugs different in barcelona", + "plug_type" + ], + [ + "what kind of outlets do they use in z", + "plug_type" + ], + [ + "what kind of electrical outlets do they use in z", + "plug_type" + ], + [ + "what kind of electrical plugs do they uze in z", + "plug_type" + ], + [ + "what kind of hertz outlets do they use in z", + "plug_type" + ], + [ + "do i need a socket converter in england", + "plug_type" + ], + [ + "are socket converters necessary in england", + "plug_type" + ], + [ + "should i bring my socket converter while traveling to england", + "plug_type" + ], + [ + "should i bring my socket converter to england", + "plug_type" + ], + [ + "does england require socket converters", + "plug_type" + ], + [ + "should i buy a specific plug type when in china", + "plug_type" + ], + [ + "would i need to buy a plug converter when in rome", + "plug_type" + ], + [ + "do i really need a plug converter when in london", + "plug_type" + ], + [ + "what type of plug do i need when in rome", + "plug_type" + ], + [ + "would it be smart to get a plug converter when i visit israel", + "plug_type" + ], + [ + "what do the plugs look like in japan", + "plug_type" + ], + [ + "should i buy a plug converter if i am traveling to egypt", + "plug_type" + ], + [ + "does australia have different plug sizes", + "plug_type" + ], + [ + "what are those european plugs called", + "plug_type" + ], + [ + "should i purchase a new plug converter when in france", + "plug_type" + ], + [ + "when i visit thailand do i need a plug converter", + "plug_type" + ], + [ + "can i use the plug i use at home when traveling in south america", + "plug_type" + ], + [ + "is a plug converter necessary in mexico", + "plug_type" + ], + [ + "when in europe would i be able to use a regular plug", + "plug_type" + ], + [ + "can i use an ordinary plug in scotland", + "plug_type" + ], + [ + "what is the plug type in france", + "plug_type" + ], + [ + "what plug type would i use in japan", + "plug_type" + ], + [ + "do i need a plug converter when i visit france", + "plug_type" + ], + [ + "do i need a plug converter when i visit china", + "plug_type" + ], + [ + "do i need a socket converter if i'm going to be in sweden", + "plug_type" + ], + [ + "do i need a socket converter if i'm going to be in eithiopia", + "plug_type" + ], + [ + "do i need a socket converter if i'm going to be in hong kong", + "plug_type" + ], + [ + "what plug type should i use in england", + "plug_type" + ], + [ + "tell me the status of my tires and when i need to replace them", + "tire_change" + ], + [ + "how many more miles can i drive before changing my tires", + "tire_change" + ], + [ + "how many miles can i drive before changing my tires", + "tire_change" + ], + [ + "when will my tires need to be replaced", + "tire_change" + ], + [ + "how is the tread on my tires", + "tire_change" + ], + [ + "when should i replace my tires next if i last replaced them on july 15th", + "tire_change" + ], + [ + "when are my tires due to be changed", + "tire_change" + ], + [ + "what date should i get my tires changed", + "tire_change" + ], + [ + "my tires need to be changed when", + "tire_change" + ], + [ + "how often do tires need changing", + "tire_change" + ], + [ + "when should i try to change my tires", + "tire_change" + ], + [ + "when is it imperative that i get my tires changed", + "tire_change" + ], + [ + "when do my tires need some changing", + "tire_change" + ], + [ + "when do my tires need changing", + "tire_change" + ], + [ + "when do i have to get my tires changed", + "tire_change" + ], + [ + "when should i replace my tires next if i last replaced them on the 1st", + "tire_change" + ], + [ + "tell when should i get my tires changed next", + "tire_change" + ], + [ + "tell me when should i get my tires changed next", + "tire_change" + ], + [ + "i need to know when should i get my tires changed next", + "tire_change" + ], + [ + "let me know when should i get my tires changed next", + "tire_change" + ], + [ + "when shall i get my tires changed", + "tire_change" + ], + [ + "when do i need to get my tires changed", + "tire_change" + ], + [ + "when must i get my tires changed", + "tire_change" + ], + [ + "i wanna know when should i get my tires changed next", + "tire_change" + ], + [ + "when am i due for a tire change", + "tire_change" + ], + [ + "do i need new tires if i just got them replaced on january 2017", + "tire_change" + ], + [ + "how many times a year should i change my tires", + "tire_change" + ], + [ + "do i need replacement tires if my last purchase was in june 2015", + "tire_change" + ], + [ + "if i bought new tires on may 27th, should i still need new ones", + "tire_change" + ], + [ + "would i need new tires if my last purchase was in may of 2018", + "tire_change" + ], + [ + "would you say i need new tires if i last bought them on the 24th", + "tire_change" + ], + [ + "do i need to change any of my tires", + "tire_change" + ], + [ + "i got my new tires a month ago, when should i replace them", + "tire_change" + ], + [ + "when should i get new tires i just replaced them", + "tire_change" + ], + [ + "i purchased new tires yesterday, should i buy new ones", + "tire_change" + ], + [ + "how soon should i replace my tires from yesterday", + "tire_change" + ], + [ + "i replaced my tires yesterday, when should i get new ones", + "tire_change" + ], + [ + "can you please let me know when next my tires are due to be changed", + "tire_change" + ], + [ + "please confirm the next time i should get the tires on my car replaced", + "tire_change" + ], + [ + "when is it recommended that i change my tires next", + "tire_change" + ], + [ + "how long until i should have my tires replaced", + "tire_change" + ], + [ + "when should i get new tires i last replaced them four years ago", + "tire_change" + ], + [ + "how many miles do i drive before i have to get new tires i replaced them four years ago", + "tire_change" + ], + [ + "how low should the tread be on my tires to replace them i bought new tires four years ago", + "tire_change" + ], + [ + "when should i get my tires changed again", + "tire_change" + ], + [ + "when do my tires need to be changed again", + "tire_change" + ], + [ + "when will i need to change my tires again", + "tire_change" + ], + [ + "when do i need to change my tires again", + "tire_change" + ], + [ + "when should my tires be changed next", + "tire_change" + ], + [ + "i replaced my tires on may 2, so when should i replace them next", + "tire_change" + ], + [ + "if i replaced my tires on labor day, when should i next replace them", + "tire_change" + ], + [ + "when should i have my tires replaced if i replaced them on the first of march", + "tire_change" + ], + [ + "if i replaced my tires on christmas eve, when will i need to replace them again", + "tire_change" + ], + [ + "when will i need to replace my tires if i last replaced them on december 20", + "tire_change" + ], + [ + "how long can i go before i need to change my tires", + "tire_change" + ], + [ + "when should i go in and have my tires changed", + "tire_change" + ], + [ + "how much time do i have before i have to change my tires", + "tire_change" + ], + [ + "when should i get new tires", + "tire_change" + ], + [ + "when ought i get my tires changed next", + "tire_change" + ], + [ + "are my tires due to be changed", + "tire_change" + ], + [ + "are my tires due to be changed soon", + "tire_change" + ], + [ + "how long until i have to replace my tires", + "tire_change" + ], + [ + "how much longer until i have to change my tires", + "tire_change" + ], + [ + "when's the next time i should change my tires", + "tire_change" + ], + [ + "when do i take my car in for a tire change", + "tire_change" + ], + [ + "how long until i need to change my tires", + "tire_change" + ], + [ + "how many miles until i change my tires", + "tire_change" + ], + [ + "when are my tires next due for a change", + "tire_change" + ], + [ + "how often do you change your tires", + "tire_change" + ], + [ + "how long do tires last for", + "tire_change" + ], + [ + "how many miles can i drive before i need to change my tires", + "tire_change" + ], + [ + "what signs should i look for to know if i should change my tires", + "tire_change" + ], + [ + "is there a way to tell if i need new tires", + "tire_change" + ], + [ + "when should i replace my tires next, if i replaced them on january 15, 2018", + "tire_change" + ], + [ + "when should i replace my tires if i replaced them last year", + "tire_change" + ], + [ + "how do i know when to change my tires", + "tire_change" + ], + [ + "tell me how i can tell if my tires need to be changed", + "tire_change" + ], + [ + "is it time for new tires", + "tire_change" + ], + [ + "do i need new tires", + "tire_change" + ], + [ + "tell me when i need to replace my tires, if i replaced them on october 1, 2017", + "tire_change" + ], + [ + "do i need to replace my tires if i replaced my tires in january", + "tire_change" + ], + [ + "i replaced my tires in december, when should i replace them again", + "tire_change" + ], + [ + "how often should i replace my tires sense i replaced them on 2/21/17", + "tire_change" + ], + [ + "i replaced my tires last year when should i replace my tires again", + "tire_change" + ], + [ + "when do you think i should replace my tires because i replaced them on 12/21/17", + "tire_change" + ], + [ + "how long before i need to replace my tires after i replaced them on 2/24/18", + "tire_change" + ], + [ + "when should i replace my tires sense i last replaced them on 3/21/17", + "tire_change" + ], + [ + "when is the right time to change my tires", + "tire_change" + ], + [ + "is it time to change my tires", + "tire_change" + ], + [ + "when do i need to change my tires", + "tire_change" + ], + [ + "do my tires need to be changed", + "tire_change" + ], + [ + "should i change my tires", + "tire_change" + ], + [ + "when will my tires need changed", + "tire_change" + ], + [ + "how many miles before i need my tires changed", + "tire_change" + ], + [ + "is there a specific date when i should get my tires changed", + "tire_change" + ], + [ + "can you tell me when my tires should get changed", + "tire_change" + ], + [ + "is there a time when i should get my tires changed", + "tire_change" + ], + [ + "would you tell me when i should replace my tires next if i last replaced them on june 2", + "tire_change" + ], + [ + "help me and let me know when i should replace my tires next if i last replaced them on june 2", + "tire_change" + ], + [ + "i need to know when i should replace my tires next if i last replaced them on june 2", + "tire_change" + ], + [ + "how many pesos can i get for one dollar", + "exchange_rate" + ], + [ + "what is the current going rate for exchanging dollars for pesos", + "exchange_rate" + ], + [ + "tell me the exchange rate between dollars and pesos", + "exchange_rate" + ], + [ + "let me know what the exchange rate between dollars and pesos is", + "exchange_rate" + ], + [ + "what's the exchange rate between dollars and pesos", + "exchange_rate" + ], + [ + "whats dollars won in 15", + "exchange_rate" + ], + [ + "what's dollars yen in 10", + "exchange_rate" + ], + [ + "whats pesos australian dollars in 20", + "exchange_rate" + ], + [ + "whats rupees dollars in 30", + "exchange_rate" + ], + [ + "whats euros kroner in 25", + "exchange_rate" + ], + [ + "how many lira can i get for 250 dollars", + "exchange_rate" + ], + [ + "what is the exchange rate in pesos for 100 dollars", + "exchange_rate" + ], + [ + "how many dollars can i exchange for 25 euros", + "exchange_rate" + ], + [ + "how many dollars can i exchange for 75 euros", + "exchange_rate" + ], + [ + "what is the equal number of dollars i can exchange for 50 pesos", + "exchange_rate" + ], + [ + "tell me the exchange rate between rubles and dollars", + "exchange_rate" + ], + [ + "i wanna know five dollars in yen and rubles", + "exchange_rate" + ], + [ + "what's the currency conversion between rubles and yen", + "exchange_rate" + ], + [ + "how many dollars can i exchange for 10 yen", + "exchange_rate" + ], + [ + "i wanna know the exchange rate between yen and dollars", + "exchange_rate" + ], + [ + "how many dollars can i exchange for 10000 rubles", + "exchange_rate" + ], + [ + "what is 5 in yen and rubles", + "exchange_rate" + ], + [ + "how many dollars can i exchange for 5000 rubles", + "exchange_rate" + ], + [ + "i need to know five dollars in yen and rubles", + "exchange_rate" + ], + [ + "how many dollars can i exchange for 10000 yen", + "exchange_rate" + ], + [ + "i gotta know the exchange rate between yen and rubles", + "exchange_rate" + ], + [ + "what's the currency conversion between rubles and dollars", + "exchange_rate" + ], + [ + "what's the currency conversion between usd and yen", + "exchange_rate" + ], + [ + "what's the currency conversion between usd and pounds", + "exchange_rate" + ], + [ + "i would love to know the exchange rate between rubles and pounds", + "exchange_rate" + ], + [ + "tell me five dollars in yen and rubles", + "exchange_rate" + ], + [ + "i must know five dollars in yen and rubles", + "exchange_rate" + ], + [ + "let me know the exchange rate between dollars and rubles", + "exchange_rate" + ], + [ + "how many dollars can i exchange for 100000 yen", + "exchange_rate" + ], + [ + "what's the currency conversion between rubles and pounds", + "exchange_rate" + ], + [ + "what is the exchange rate between usd and british pounds", + "exchange_rate" + ], + [ + "usd to yen is what right now", + "exchange_rate" + ], + [ + "what is the exchange rate between british pounds and yen", + "exchange_rate" + ], + [ + "usd to the euro exchanges at what right now", + "exchange_rate" + ], + [ + "what is the exchange rate between usd and the euro", + "exchange_rate" + ], + [ + "how much can i expect to receive if i trade in 6 yens", + "exchange_rate" + ], + [ + "what is the amount of dollars i get if i trade in 6 yens", + "exchange_rate" + ], + [ + "what is the maximum dollars i can get for 6 yens", + "exchange_rate" + ], + [ + "what is the quantity of dollars i receive for trading 6 yens", + "exchange_rate" + ], + [ + "how much dollars do i receive if i trade in 6 yens", + "exchange_rate" + ], + [ + "how many pesos in one dollar us", + "exchange_rate" + ], + [ + "how much is twenty pounds sterling in us dollars", + "exchange_rate" + ], + [ + "what is the the exchange rate for us dollars to euros", + "exchange_rate" + ], + [ + "can you tell me the exchange rate for yen to euros", + "exchange_rate" + ], + [ + "what is the exchange rate from pounds sterling to us dollars", + "exchange_rate" + ], + [ + "how many pesos equals 500 dollars", + "exchange_rate" + ], + [ + "tell me how many pesos equal 500 dollars", + "exchange_rate" + ], + [ + "what is the conversion for 500 dollars to pesos", + "exchange_rate" + ], + [ + "how much is 500 dollars in pesos", + "exchange_rate" + ], + [ + "500 dollars equals what in pesos", + "exchange_rate" + ], + [ + "how does 10 pounds convert to euros", + "exchange_rate" + ], + [ + "how many canadian dollars can i get for 5 us dollars", + "exchange_rate" + ], + [ + "how many euros can i exchange for 5 us dollars", + "exchange_rate" + ], + [ + "what is the exchange to yen if i have 100 us dollars", + "exchange_rate" + ], + [ + "how many us dollars can i get for 20 euros", + "exchange_rate" + ], + [ + "can you tell me today's rate for cad to usd", + "exchange_rate" + ], + [ + "how much cad can i get with my one usd", + "exchange_rate" + ], + [ + "is the dollar strong against the yen today", + "exchange_rate" + ], + [ + "tell me the exchange rate of dollars to yen", + "exchange_rate" + ], + [ + "what is one dollar worth in mexico", + "exchange_rate" + ], + [ + "i need to know the conversion for dollars to pesos", + "exchange_rate" + ], + [ + "can you tell me dollars to franks", + "exchange_rate" + ], + [ + "i would like to know the usd to aud conversion rate", + "exchange_rate" + ], + [ + "i need to know the dollar to peso conversion", + "exchange_rate" + ], + [ + "us dollars to uk", + "exchange_rate" + ], + [ + "exchange rate between mexico and us", + "exchange_rate" + ], + [ + "how many dollars is one mexican peso", + "exchange_rate" + ], + [ + "dollar to pesos exchange rate", + "exchange_rate" + ], + [ + "exchange rate to go from dollar to yen", + "exchange_rate" + ], + [ + "us and mexico exchange rate", + "exchange_rate" + ], + [ + "what is 2 francs in euros", + "exchange_rate" + ], + [ + "what's 10 pounds in dollars", + "exchange_rate" + ], + [ + "what is 56 dollars in yen", + "exchange_rate" + ], + [ + "what's 11 yen in pounds", + "exchange_rate" + ], + [ + "what's 10 euros in dollars", + "exchange_rate" + ], + [ + "how many swedish kroner do i get for a dollar", + "exchange_rate" + ], + [ + "how much is 10 us dollars in canadian dollars", + "exchange_rate" + ], + [ + "what is 50 dollars in euros", + "exchange_rate" + ], + [ + "what is the exchange rate for canadian dollars to us dollars", + "exchange_rate" + ], + [ + "what is the current exchange rate for the dollar and the yen", + "exchange_rate" + ], + [ + "if i have 10 us dollars, how many pounds sterling is that", + "exchange_rate" + ], + [ + "if i have 20,000 yen, how much is that in usd", + "exchange_rate" + ], + [ + "what's 50 euro in dollars", + "exchange_rate" + ], + [ + "how much is the euro in dollars", + "exchange_rate" + ], + [ + "what is the current exchange rate of yen to lira", + "exchange_rate" + ], + [ + "convert krugerrands to saudi riyal", + "exchange_rate" + ], + [ + "tell me the currency conversion rate from kurus to euros", + "exchange_rate" + ], + [ + "i need the exchange rate between pounds and us dollars", + "exchange_rate" + ], + [ + "what is the exchange rate between rubles and us dollars", + "exchange_rate" + ], + [ + "how many dollars can i exchange for 200 pounds", + "exchange_rate" + ], + [ + "how many euros can i exchange for 200 yen", + "exchange_rate" + ], + [ + "how many canadian dollars can i exchange for 200 yen", + "exchange_rate" + ], + [ + "how many dollars can i exchange for 200 yen", + "exchange_rate" + ], + [ + "how many dollars can i exchange for 200 euros", + "exchange_rate" + ], + [ + "what is the yen worth in terms of the peso", + "exchange_rate" + ], + [ + "when is the upcoming holiday, please", + "next_holiday" + ], + [ + "when is the upcoming holiday", + "next_holiday" + ], + [ + "what day is our next free day", + "next_holiday" + ], + [ + "when is the next scheduled holiday", + "next_holiday" + ], + [ + "when is the next scheduled holiday, please", + "next_holiday" + ], + [ + "when is our next free day", + "next_holiday" + ], + [ + "when is our next free day, please", + "next_holiday" + ], + [ + "what day is our next free day, please", + "next_holiday" + ], + [ + "what day is our next free day on the calendar, please", + "next_holiday" + ], + [ + "when is the next holiday, please", + "next_holiday" + ], + [ + "are there any holidays this month", + "next_holiday" + ], + [ + "when is the next day i have off", + "next_holiday" + ], + [ + "how many more days until my next paid day off", + "next_holiday" + ], + [ + "which holiday is next in line", + "next_holiday" + ], + [ + "i need to know how long until my next vacation day", + "next_holiday" + ], + [ + "is there a holiday next week", + "next_holiday" + ], + [ + "how many days until i am off", + "next_holiday" + ], + [ + "when is my next vacation day", + "next_holiday" + ], + [ + "what's the time period till our next day off", + "next_holiday" + ], + [ + "how much time till the next day off", + "next_holiday" + ], + [ + "how much longer till the next day off", + "next_holiday" + ], + [ + "how much time till the next time off", + "next_holiday" + ], + [ + "how many days till we have off again", + "next_holiday" + ], + [ + "when's the next time i get a day off", + "next_holiday" + ], + [ + "when is the next scheduled day off", + "next_holiday" + ], + [ + "what's the next day i am scheduled off", + "next_holiday" + ], + [ + "what's the closest holiday after today", + "next_holiday" + ], + [ + "do i have a day off coming up soon", + "next_holiday" + ], + [ + "what is the next holiday on the calendar", + "next_holiday" + ], + [ + "how many days until my next day off", + "next_holiday" + ], + [ + "what holiday comes next", + "next_holiday" + ], + [ + "when will i get the next holiday with pay", + "next_holiday" + ], + [ + "when is the next time off for a holiday here", + "next_holiday" + ], + [ + "check when the next day is i can go fishing will be", + "next_holiday" + ], + [ + "when is the next office holiday", + "next_holiday" + ], + [ + "when does my current job have the next official paid holiday", + "next_holiday" + ], + [ + "what's the next scheduled holiday at this job", + "next_holiday" + ], + [ + "when will we next get to stay home from work", + "next_holiday" + ], + [ + "when's the next federally recognized holiday", + "next_holiday" + ], + [ + "when's the next time my job'll give me a day to myself", + "next_holiday" + ], + [ + "when does this place let us have a holiday next", + "next_holiday" + ], + [ + "let me know when my next day off is", + "next_holiday" + ], + [ + "can you tell me when our next day off is", + "next_holiday" + ], + [ + "when do i get a day off", + "next_holiday" + ], + [ + "give me the info of when our next day off is", + "next_holiday" + ], + [ + "show me my next day off", + "next_holiday" + ], + [ + "how many more weeks until the next holiday", + "next_holiday" + ], + [ + "which holiday is next", + "next_holiday" + ], + [ + "how many more days until the next holiday", + "next_holiday" + ], + [ + "how soon until the next holiday", + "next_holiday" + ], + [ + "tell me when i will next have the day off", + "next_holiday" + ], + [ + "tell me when the next holiday arrives", + "next_holiday" + ], + [ + "tell me when the next day off will be", + "next_holiday" + ], + [ + "please look up the next holiday for me", + "next_holiday" + ], + [ + "i need to know when i will next have the day off", + "next_holiday" + ], + [ + "find out for me when the next holiday will be", + "next_holiday" + ], + [ + "look up when our next day off will be", + "next_holiday" + ], + [ + "i need to know when the next holiday is", + "next_holiday" + ], + [ + "when can i expect my next day off", + "next_holiday" + ], + [ + "can you tell me what the next holiday is", + "next_holiday" + ], + [ + "do you know the date of my next day off", + "next_holiday" + ], + [ + "please tell me what the next holiday is", + "next_holiday" + ], + [ + "i need to know when the next holiday will be", + "next_holiday" + ], + [ + "i need to know when my next day off is", + "next_holiday" + ], + [ + "what is the date of the next holiday", + "next_holiday" + ], + [ + "how soon is my next day off", + "next_holiday" + ], + [ + "tell me when my next day off is", + "next_holiday" + ], + [ + "how long until my next day off", + "next_holiday" + ], + [ + "when will we have another day off", + "next_holiday" + ], + [ + "what is my next day off", + "next_holiday" + ], + [ + "whats the next day that i am off", + "next_holiday" + ], + [ + "how many days until the next holiday arrives", + "next_holiday" + ], + [ + "what day am i off next", + "next_holiday" + ], + [ + "how much longer until my next day off", + "next_holiday" + ], + [ + "when is my next day off", + "next_holiday" + ], + [ + "when will i be off again", + "next_holiday" + ], + [ + "to what extent until the following day away from work", + "next_holiday" + ], + [ + "to what extent until the following three day weekend", + "next_holiday" + ], + [ + "to what extent until the following free day", + "next_holiday" + ], + [ + "what is the next holiday", + "next_holiday" + ], + [ + "tell me what holiday is comming up next", + "next_holiday" + ], + [ + "are there any holiday's comming up", + "next_holiday" + ], + [ + "what holiday's are comming up next", + "next_holiday" + ], + [ + "when can i expect the next holiday here", + "next_holiday" + ], + [ + "is the next day off coming up", + "next_holiday" + ], + [ + "when's the next day off coming up", + "next_holiday" + ], + [ + "how long before the next day off is here", + "next_holiday" + ], + [ + "when is the next day off", + "next_holiday" + ], + [ + "when will the day off be", + "next_holiday" + ], + [ + "i need to know when i get my next day off", + "next_holiday" + ], + [ + "when do i finally get a day off", + "next_holiday" + ], + [ + "when don't i have to work next", + "next_holiday" + ], + [ + "what holiday can i expect next", + "next_holiday" + ], + [ + "do you know when my next day off is coming", + "next_holiday" + ], + [ + "what holiday is coming up next", + "next_holiday" + ], + [ + "when do i have some time off next", + "next_holiday" + ], + [ + "when's the next holiday coming", + "next_holiday" + ], + [ + "can you tell me the next holiday", + "next_holiday" + ], + [ + "what's the next holiday", + "next_holiday" + ], + [ + "what's the date of the next closest holiday", + "next_holiday" + ], + [ + "raise the volume to 4 please", + "change_volume" + ], + [ + "please set the volume to 4", + "change_volume" + ], + [ + "please increase the volume to 4", + "change_volume" + ], + [ + "please raise the volume to 4", + "change_volume" + ], + [ + "set the volume to 4 please", + "change_volume" + ], + [ + "bring the volume up overall", + "change_volume" + ], + [ + "make the volume louder", + "change_volume" + ], + [ + "bring the sound up", + "change_volume" + ], + [ + "turn your speakers up", + "change_volume" + ], + [ + "make the speakers louder", + "change_volume" + ], + [ + "lower your volume", + "change_volume" + ], + [ + "go ahead and increase the volume to 4 please", + "change_volume" + ], + [ + "you must increase the volume to 4 please", + "change_volume" + ], + [ + "go ahead and your volume", + "change_volume" + ], + [ + "you must increase your volume", + "change_volume" + ], + [ + "please increase your volume", + "change_volume" + ], + [ + "please increase your speaker volume", + "change_volume" + ], + [ + "go now and increase the volume to 4 please", + "change_volume" + ], + [ + "please increase the volume to 4 please", + "change_volume" + ], + [ + "i want to increase your volume", + "change_volume" + ], + [ + "i need you to your volume", + "change_volume" + ], + [ + "please your volume", + "change_volume" + ], + [ + "go ahead and increase your speaker volume", + "change_volume" + ], + [ + "i want you to your volume", + "change_volume" + ], + [ + "i need you to increase your volume", + "change_volume" + ], + [ + "i need you to increase your speaker volume", + "change_volume" + ], + [ + "please go ahead and increase your speaker volume", + "change_volume" + ], + [ + "make my volume louder please", + "change_volume" + ], + [ + "make the sound of my speaker greater", + "change_volume" + ], + [ + "can you rise the volume of this please", + "change_volume" + ], + [ + "change the speaker volume to a louder one", + "change_volume" + ], + [ + "i want the speaker to be louder please", + "change_volume" + ], + [ + "i can't hear you", + "change_volume" + ], + [ + "turn it up please", + "change_volume" + ], + [ + "i need it louder", + "change_volume" + ], + [ + "the sound is too low", + "change_volume" + ], + [ + "the speaker volume needs to be increased", + "change_volume" + ], + [ + "would you please increase your speaker volume", + "change_volume" + ], + [ + "i need you to increase the speaker volume", + "change_volume" + ], + [ + "can you increase the speaker volume", + "change_volume" + ], + [ + "turn up the volume level to 4", + "change_volume" + ], + [ + "turn up the volume level to 4, please", + "change_volume" + ], + [ + "increase the volume level to 4, please", + "change_volume" + ], + [ + "increase the volume level to 4 now", + "change_volume" + ], + [ + "increase the volume level to 4", + "change_volume" + ], + [ + "can i have my volume increased", + "change_volume" + ], + [ + "can my volume be increased", + "change_volume" + ], + [ + "can i increase my volume", + "change_volume" + ], + [ + "volume needs to be at 4", + "change_volume" + ], + [ + "volume should be increased to 4", + "change_volume" + ], + [ + "boost volume to 4", + "change_volume" + ], + [ + "i want volume at 4", + "change_volume" + ], + [ + "i want that volume bumped up to 4", + "change_volume" + ], + [ + "the volume should be decreased", + "change_volume" + ], + [ + "raise the volume", + "change_volume" + ], + [ + "lower the volume", + "change_volume" + ], + [ + "i would like the volume lower", + "change_volume" + ], + [ + "can you turn this down", + "change_volume" + ], + [ + "turn the volume up", + "change_volume" + ], + [ + "i'd like to turn up the volume", + "change_volume" + ], + [ + "turn up the speaker volume", + "change_volume" + ], + [ + "get louder", + "change_volume" + ], + [ + "volume should be set at 4", + "change_volume" + ], + [ + "i'd like it to be louder", + "change_volume" + ], + [ + "can you please turn the volume to 4", + "change_volume" + ], + [ + "please speak louder", + "change_volume" + ], + [ + "increase your vocals", + "change_volume" + ], + [ + "lower your voice box", + "change_volume" + ], + [ + "increase your voice box", + "change_volume" + ], + [ + "turn your vocals down", + "change_volume" + ], + [ + "turn your voice box down", + "change_volume" + ], + [ + "turn down your volume", + "change_volume" + ], + [ + "limit your volume", + "change_volume" + ], + [ + "please adjust your settings", + "change_volume" + ], + [ + "change the volume to 4 now please", + "change_volume" + ], + [ + "go ahead and put the volume to 4", + "change_volume" + ], + [ + "set the volume to 4 now", + "change_volume" + ], + [ + "can you change the volume to 4", + "change_volume" + ], + [ + "turn the volume to 4", + "change_volume" + ], + [ + "can you turn the volume to 4", + "change_volume" + ], + [ + "set the volume at 4 for me please", + "change_volume" + ], + [ + "make the volume set to 4", + "change_volume" + ], + [ + "i want volume set to 4", + "change_volume" + ], + [ + "turn volume to the number 4 setting", + "change_volume" + ], + [ + "turn the volume to level 4", + "change_volume" + ], + [ + "make the volume 4", + "change_volume" + ], + [ + "please make sure the volume is on 4", + "change_volume" + ], + [ + "turn down volume", + "change_volume" + ], + [ + "please increase volume", + "change_volume" + ], + [ + "raise volume", + "change_volume" + ], + [ + "decrease volume level", + "change_volume" + ], + [ + "lower volume level", + "change_volume" + ], + [ + "set volume higher", + "change_volume" + ], + [ + "increase volume", + "change_volume" + ], + [ + "lower volume", + "change_volume" + ], + [ + "please raise volume", + "change_volume" + ], + [ + "decrease volume", + "change_volume" + ], + [ + "increase volume to 4", + "change_volume" + ], + [ + "put volume at 4", + "change_volume" + ], + [ + "decrease volume to 4", + "change_volume" + ], + [ + "who is your employeer", + "who_do_you_work_for" + ], + [ + "who is the boss of you", + "who_do_you_work_for" + ], + [ + "i gotta know who is your boss", + "who_do_you_work_for" + ], + [ + "tell me who is your boss", + "who_do_you_work_for" + ], + [ + "let me know who is your boss", + "who_do_you_work_for" + ], + [ + "i wanna know who is your boss", + "who_do_you_work_for" + ], + [ + "i need to know who is your boss", + "who_do_you_work_for" + ], + [ + "what is the name of your boss", + "who_do_you_work_for" + ], + [ + "what is the full name of your boss", + "who_do_you_work_for" + ], + [ + "do you know the name of your boss", + "who_do_you_work_for" + ], + [ + "could you tell me the name of your boss", + "who_do_you_work_for" + ], + [ + "your boss is", + "who_do_you_work_for" + ], + [ + "are you my worker", + "who_do_you_work_for" + ], + [ + "are you working for me or what", + "who_do_you_work_for" + ], + [ + "are you working for another person or entity", + "who_do_you_work_for" + ], + [ + "are you here to serve me", + "who_do_you_work_for" + ], + [ + "who or what association do you work for", + "who_do_you_work_for" + ], + [ + "describe who it is you work for", + "who_do_you_work_for" + ], + [ + "what entity is your boss", + "who_do_you_work_for" + ], + [ + "you work for who", + "who_do_you_work_for" + ], + [ + "you work for whom", + "who_do_you_work_for" + ], + [ + "what's your boss' name", + "who_do_you_work_for" + ], + [ + "are you working for someone other than me", + "who_do_you_work_for" + ], + [ + "who do you work for", + "who_do_you_work_for" + ], + [ + "do you work for me or is that wrong", + "who_do_you_work_for" + ], + [ + "what does your boss go by", + "who_do_you_work_for" + ], + [ + "who do you call your boss", + "who_do_you_work_for" + ], + [ + "when asked who you work for, what would you say", + "who_do_you_work_for" + ], + [ + "your boss is who", + "who_do_you_work_for" + ], + [ + "are you employed by someone else", + "who_do_you_work_for" + ], + [ + "you work for someone else or no", + "who_do_you_work_for" + ], + [ + "you work for what company or person exactly", + "who_do_you_work_for" + ], + [ + "do you have an employer", + "who_do_you_work_for" + ], + [ + "do you have a boss", + "who_do_you_work_for" + ], + [ + "are you paid by somebody", + "who_do_you_work_for" + ], + [ + "are you employed by someone", + "who_do_you_work_for" + ], + [ + "which organization you work for", + "who_do_you_work_for" + ], + [ + "who do you function for", + "who_do_you_work_for" + ], + [ + "who do you do task for", + "who_do_you_work_for" + ], + [ + "who do you job for", + "who_do_you_work_for" + ], + [ + "why do u work for them", + "who_do_you_work_for" + ], + [ + "who are they that you work for", + "who_do_you_work_for" + ], + [ + "who is it u work for", + "who_do_you_work_for" + ], + [ + "who is the person u work for", + "who_do_you_work_for" + ], + [ + "who do i work for", + "who_do_you_work_for" + ], + [ + "who is you employer", + "who_do_you_work_for" + ], + [ + "is it correct to say you work for me", + "who_do_you_work_for" + ], + [ + "who are you currently working for", + "who_do_you_work_for" + ], + [ + "are you self employed", + "who_do_you_work_for" + ], + [ + "who is your employer", + "who_do_you_work_for" + ], + [ + "are you now working for me", + "who_do_you_work_for" + ], + [ + "would you say you are working for me", + "who_do_you_work_for" + ], + [ + "who are you working for", + "who_do_you_work_for" + ], + [ + "who pay your salary", + "who_do_you_work_for" + ], + [ + "what organization do you work for", + "who_do_you_work_for" + ], + [ + "where else do you work", + "who_do_you_work_for" + ], + [ + "do you have another job", + "who_do_you_work_for" + ], + [ + "you working for someone else on the side", + "who_do_you_work_for" + ], + [ + "who do yo work for", + "who_do_you_work_for" + ], + [ + "who is in charge of you", + "who_do_you_work_for" + ], + [ + "what is your boss's name", + "who_do_you_work_for" + ], + [ + "would you say that you know who your boss is", + "who_do_you_work_for" + ], + [ + "do you know who you report to", + "who_do_you_work_for" + ], + [ + "don't you work for your self", + "who_do_you_work_for" + ], + [ + "don't you work for someone else", + "who_do_you_work_for" + ], + [ + "is there another person you work for", + "who_do_you_work_for" + ], + [ + "do you work for anyone else", + "who_do_you_work_for" + ], + [ + "who would you say your employer is", + "who_do_you_work_for" + ], + [ + "are you working for me", + "who_do_you_work_for" + ], + [ + "am i your boss", + "who_do_you_work_for" + ], + [ + "is there someone else you work for", + "who_do_you_work_for" + ], + [ + "are you employed by me", + "who_do_you_work_for" + ], + [ + "is there another entity you work for", + "who_do_you_work_for" + ], + [ + "who would you say that you are working for", + "who_do_you_work_for" + ], + [ + "do you happen to be employed by me", + "who_do_you_work_for" + ], + [ + "who would you say you work for", + "who_do_you_work_for" + ], + [ + "who would you say that you are employed by", + "who_do_you_work_for" + ], + [ + "who would you say you are employed by", + "who_do_you_work_for" + ], + [ + "am i your employer", + "who_do_you_work_for" + ], + [ + "is there another company you work for", + "who_do_you_work_for" + ], + [ + "are you my employee", + "who_do_you_work_for" + ], + [ + "am i your supervisor", + "who_do_you_work_for" + ], + [ + "am i your manager", + "who_do_you_work_for" + ], + [ + "who is the person you work for", + "who_do_you_work_for" + ], + [ + "for what person do you work", + "who_do_you_work_for" + ], + [ + "if you had to say who you worked for who would it be", + "who_do_you_work_for" + ], + [ + "who tells you what to do", + "who_do_you_work_for" + ], + [ + "who directs your labor", + "who_do_you_work_for" + ], + [ + "who do you take orders from", + "who_do_you_work_for" + ], + [ + "who do you consider your employer", + "who_do_you_work_for" + ], + [ + "who calls the shots for your employment", + "who_do_you_work_for" + ], + [ + "what company do you toil for", + "who_do_you_work_for" + ], + [ + "who do you report to", + "who_do_you_work_for" + ], + [ + "who is your boss", + "who_do_you_work_for" + ], + [ + "who is your manager", + "who_do_you_work_for" + ], + [ + "am i the one you work for", + "who_do_you_work_for" + ], + [ + "are you influenced by someone else", + "who_do_you_work_for" + ], + [ + "who else do you work for", + "who_do_you_work_for" + ], + [ + "who else commands you", + "who_do_you_work_for" + ], + [ + "are you working for someone else", + "who_do_you_work_for" + ], + [ + "how high is my credit limit for my old navy card", + "credit_limit" + ], + [ + "how high is my credit limit for my target card", + "credit_limit" + ], + [ + "what is the credit limit for my usaa card", + "credit_limit" + ], + [ + "how high is my credit limit for my childrens place card", + "credit_limit" + ], + [ + "how high is my credit limit for my walmart card", + "credit_limit" + ], + [ + "what is the credit limit for my bank of the west card", + "credit_limit" + ], + [ + "what is the credit limit for my chase card", + "credit_limit" + ], + [ + "how high is my credit limit for my navy federal card", + "credit_limit" + ], + [ + "what is the credit limit for my navy federal card", + "credit_limit" + ], + [ + "what is the credit limit for my bank of america card", + "credit_limit" + ], + [ + "what's my current spending limit", + "credit_limit" + ], + [ + "credit limit", + "credit_limit" + ], + [ + "what's the credit limit on my account", + "credit_limit" + ], + [ + "could you share what my current credit limit is", + "credit_limit" + ], + [ + "what's my current credit limit", + "credit_limit" + ], + [ + "what is the spending limit i have", + "credit_limit" + ], + [ + "what is the max on my credit limit", + "credit_limit" + ], + [ + "what is the limit on my credit", + "credit_limit" + ], + [ + "i need to know my spending limit on my visa", + "credit_limit" + ], + [ + "whats the max i can spend on my visa", + "credit_limit" + ], + [ + "how much can i max out on my visa", + "credit_limit" + ], + [ + "what's my visa limit", + "credit_limit" + ], + [ + "how much to i have left on my visa card limit", + "credit_limit" + ], + [ + "can you tell me the limit i currently have on my barclay card", + "credit_limit" + ], + [ + "what is my spending limit on my chase sapphire card", + "credit_limit" + ], + [ + "how much can i spend, at most, on my chase freedom", + "credit_limit" + ], + [ + "what is the current credit limit i have on my wells fargo mastercard", + "credit_limit" + ], + [ + "how much am i allowed to spend on my discover card", + "credit_limit" + ], + [ + "what is my amex credit limit", + "credit_limit" + ], + [ + "tell me the credit on my mastercard", + "credit_limit" + ], + [ + "tell me the limit for credit on my mastercard", + "credit_limit" + ], + [ + "look up the credit limit for my visa", + "credit_limit" + ], + [ + "i need know my credit limit on my american express card", + "credit_limit" + ], + [ + "how can i check my credit card limit", + "credit_limit" + ], + [ + "what is my credit limit looking like", + "credit_limit" + ], + [ + "where can i go to find out my credit limit", + "credit_limit" + ], + [ + "what's the credit limit on my visa", + "credit_limit" + ], + [ + "tell me the limit on my discover card", + "credit_limit" + ], + [ + "what is the credit limit on my discover card", + "credit_limit" + ], + [ + "what's the limit on my american express card", + "credit_limit" + ], + [ + "tell me my visa's credit limit", + "credit_limit" + ], + [ + "what is my credit limit", + "credit_limit" + ], + [ + "how much is my credit limit", + "credit_limit" + ], + [ + "can you tell me my credit limit", + "credit_limit" + ], + [ + "the credit limit on my account is how much", + "credit_limit" + ], + [ + "what's my limit on my visa card", + "credit_limit" + ], + [ + "what's my visa card's credit limit", + "credit_limit" + ], + [ + "how much can i spend on my visa card", + "credit_limit" + ], + [ + "what's my visa card's limit", + "credit_limit" + ], + [ + "what's the credit limit on my visa card", + "credit_limit" + ], + [ + "will you tell me my spending limit", + "credit_limit" + ], + [ + "will you let me know what my spending limit is", + "credit_limit" + ], + [ + "would you tell me my spending limit", + "credit_limit" + ], + [ + "can you tell me my spending limit", + "credit_limit" + ], + [ + "tel me the credit limit for my credit card", + "credit_limit" + ], + [ + "i wanna know the limit on my credit card", + "credit_limit" + ], + [ + "please tell me my spending limit", + "credit_limit" + ], + [ + "tell me the credit limit on my mastercard", + "credit_limit" + ], + [ + "i would love to know my spending limit", + "credit_limit" + ], + [ + "i wish to know my credit limit for my credit card", + "credit_limit" + ], + [ + "let me know the credit limit for my credit card", + "credit_limit" + ], + [ + "how high is my balance on my discovery card", + "credit_limit" + ], + [ + "can you find my credit limit on my mastercard", + "credit_limit" + ], + [ + "what's my current limit on my mastercard", + "credit_limit" + ], + [ + "what's my current limit on my visa", + "credit_limit" + ], + [ + "what's the credit limit on my discovery card", + "credit_limit" + ], + [ + "what's my credit limit on my visa", + "credit_limit" + ], + [ + "how high of a credit limit do i have on my amex card", + "credit_limit" + ], + [ + "what can i put on my bank of america card", + "credit_limit" + ], + [ + "what's my limit on my amex card", + "credit_limit" + ], + [ + "please check my credit limit on my visa", + "credit_limit" + ], + [ + "report my credit limit", + "credit_limit" + ], + [ + "what credit limit do i have", + "credit_limit" + ], + [ + "how is that credit limit", + "credit_limit" + ], + [ + "how is my credit limit", + "credit_limit" + ], + [ + "what is my credit limit at", + "credit_limit" + ], + [ + "credit limit info", + "credit_limit" + ], + [ + "what is the credit limit", + "credit_limit" + ], + [ + "i want to know my spending limit", + "credit_limit" + ], + [ + "what is the max credit limit for my card", + "credit_limit" + ], + [ + "can you let me know what my credit limit is for my visa card", + "credit_limit" + ], + [ + "tell me the visa card credit limit", + "credit_limit" + ], + [ + "what is my visa card limit", + "credit_limit" + ], + [ + "do you know my credit limit for the visa card", + "credit_limit" + ], + [ + "i need to know what the visa card credit limit is", + "credit_limit" + ], + [ + "how high is my credit limit for my chase card", + "credit_limit" + ], + [ + "how high is my credit limit for my wells fargo card", + "credit_limit" + ], + [ + "how high is my credit limit for my american express card", + "credit_limit" + ], + [ + "how high is my credit limit for my citigroup card", + "credit_limit" + ], + [ + "how high is my credit limit for my bank of america card", + "credit_limit" + ], + [ + "what is my spending limit on my mastercard", + "credit_limit" + ], + [ + "how much it the credit limit on my visa card", + "credit_limit" + ], + [ + "what is the credit limit on my visa", + "credit_limit" + ], + [ + "what is my limit on my visa card", + "credit_limit" + ], + [ + "what is the spending limit on my visa", + "credit_limit" + ], + [ + "how much can i charge on my visa", + "credit_limit" + ], + [ + "how much can i spend wth my visa", + "credit_limit" + ], + [ + "can i please know the credit limit for my citibank card", + "credit_limit" + ], + [ + "please let me know the credit limit on my citibank card", + "credit_limit" + ], + [ + "i would like to know the credit limit for my citibank card", + "credit_limit" + ], + [ + "do you know how long of a wait it will be", + "how_busy" + ], + [ + "how long is the restaurant line before we go", + "how_busy" + ], + [ + "how long will it take to get seated at needham's", + "how_busy" + ], + [ + "how long will the wait be at noon if we went to nagomi", + "how_busy" + ], + [ + "will i have to wait for long before being seated at the cheese cake factory", + "how_busy" + ], + [ + "how long should i expect to wait at the cheesecake factory before getting seated", + "how_busy" + ], + [ + "what is the average wait time at the cheese cake factory", + "how_busy" + ], + [ + "how long will i have to wait before being seated at the cheese cake factory", + "how_busy" + ], + [ + "how long will the wait time be at the cheese cake factory", + "how_busy" + ], + [ + "how long will i have to wait if i want to eat at panera", + "how_busy" + ], + [ + "how long would i have to wait if i want to go to golden corral", + "how_busy" + ], + [ + "how busy will panera be at noon", + "how_busy" + ], + [ + "is there a wait time to get into tgifridays", + "how_busy" + ], + [ + "will cracker barrel be crowded around five this evening", + "how_busy" + ], + [ + "how busy will golden corral be at 7:30 tonight", + "how_busy" + ], + [ + "can you tell me how busy chipotle will be at nine tonight", + "how_busy" + ], + [ + "what is the wait time at applebee's", + "how_busy" + ], + [ + "would i have to wait long if i want to eat at chili's", + "how_busy" + ], + [ + "if i go to tgifridays at eight, will they be crowded", + "how_busy" + ], + [ + "how much traffic do they get around dinner time", + "how_busy" + ], + [ + "can you check to see how busy that restaurant is for dinner", + "how_busy" + ], + [ + "is that place busy around dinner time", + "how_busy" + ], + [ + "is that restaurant crowded during dinner", + "how_busy" + ], + [ + "how busy it that place for dinner", + "how_busy" + ], + [ + "can i expect chili's to be busy at 4:30", + "how_busy" + ], + [ + "do you think longhorn steakhouse will be busy at 5pm", + "how_busy" + ], + [ + "how busy do you expect olive garden to be at 6", + "how_busy" + ], + [ + "what's the table wait at applebees", + "how_busy" + ], + [ + "i want a table at texas roadhouse; how long will it be", + "how_busy" + ], + [ + "how long does it take to get a table at chili's", + "how_busy" + ], + [ + "how many people do you think will be at applebees at 7", + "how_busy" + ], + [ + "how long will i wait for a table at red lobster", + "how_busy" + ], + [ + "is red lobster busy at 6pm", + "how_busy" + ], + [ + "what's the wait for a table at olive garden right now", + "how_busy" + ], + [ + "around nine, is ambrosio busy", + "how_busy" + ], + [ + "is sage busy around noon", + "how_busy" + ], + [ + "for toby's, is it busy around six", + "how_busy" + ], + [ + "at four, how much business does georgio have", + "how_busy" + ], + [ + "how long can i expect to wait for a restaurant table", + "how_busy" + ], + [ + "what time can i expect to be seated at this restaurant", + "how_busy" + ], + [ + "what is the wait time at this restaurant", + "how_busy" + ], + [ + "will there be a wait time at this restaurant", + "how_busy" + ], + [ + "what is the sitting time at this restaurant", + "how_busy" + ], + [ + "how busy is orchids at 7", + "how_busy" + ], + [ + "how busy is zippy around 12 for lunch", + "how_busy" + ], + [ + "how long is the wait at orchids", + "how_busy" + ], + [ + "how long is the wait at imanas", + "how_busy" + ], + [ + "how busy is imanas tei at 7 dinner", + "how_busy" + ], + [ + "what is the wait supposed to be at zippys", + "how_busy" + ], + [ + "how busy is mc donald at 8 in the morning", + "how_busy" + ], + [ + "how busy is michel at 9", + "how_busy" + ], + [ + "how busy is imanas at 6", + "how_busy" + ], + [ + "how long do i have to wait for shokudo", + "how_busy" + ], + [ + "how busy is teddy bigger burder around 5", + "how_busy" + ], + [ + "how long is the wait at assagios today", + "how_busy" + ], + [ + "how busy is shokudo at 12", + "how_busy" + ], + [ + "how busy is jiro at 12 lunch time", + "how_busy" + ], + [ + "at 5 pm, is kaya very busy", + "how_busy" + ], + [ + "how busy is kaya around 5 pm", + "how_busy" + ], + [ + "around 5 pm, how busy is kaya", + "how_busy" + ], + [ + "is kaya very busy at 5 pm", + "how_busy" + ], + [ + "is kaya busy around 5 pm", + "how_busy" + ], + [ + "how long is the wait at macaroni grill", + "how_busy" + ], + [ + "does macaroni grill have a wait how long", + "how_busy" + ], + [ + "check the wait time for macaroni grill", + "how_busy" + ], + [ + "how long will it take to be seated at macaroni grill", + "how_busy" + ], + [ + "what's the wait at macaroni grill", + "how_busy" + ], + [ + "will i be able to get a seat at 5pm", + "how_busy" + ], + [ + "tell me how busy the restaurant will be between 5 and 7pm", + "how_busy" + ], + [ + "is the restaurant busy at lunchtime", + "how_busy" + ], + [ + "will the restaurant be busy at 5pm", + "how_busy" + ], + [ + "when will the restaurant be busiest", + "how_busy" + ], + [ + "how busy is ihop generally around noon", + "how_busy" + ], + [ + "please look into the current wait times at chili's right now", + "how_busy" + ], + [ + "at 5:30 pm, how busy can i expect olive garden to be", + "how_busy" + ], + [ + "if i go to olive garden at 4 pm, how busy will it be", + "how_busy" + ], + [ + "how busy will chili's be if i go at 6 pm", + "how_busy" + ], + [ + "how long would i need to wait for a table at ihop right now", + "how_busy" + ], + [ + "i would like to find out if macaroni grill will be busy around 7:00 pm", + "how_busy" + ], + [ + "can you tell me how busy outback steakhouse will be at 7:30 pm", + "how_busy" + ], + [ + "find out how busy ihop usually is around 5 pm", + "how_busy" + ], + [ + "find out what wait times are like right now at olive garden", + "how_busy" + ], + [ + "can you tell me what the wait is like right now at cracker barrel", + "how_busy" + ], + [ + "tell me how busy macaroni grill will be around 8 pm", + "how_busy" + ], + [ + "check to see how long of a wait i would be facing if i go to outback steakhouse", + "how_busy" + ], + [ + "i want to know how busy ruby tuesday will be at around 8:45 pm", + "how_busy" + ], + [ + "do you know how busy outback steakhouse tends to be at 7:00 pm", + "how_busy" + ], + [ + "how long will it take me to be seated at ihop", + "how_busy" + ], + [ + "how long will i stand in line at carl jr's", + "how_busy" + ], + [ + "how busy is ihop at 5 pm", + "how_busy" + ], + [ + "does ihop have a lot of business around 7 am", + "how_busy" + ], + [ + "what's the typical wait time at red lobster", + "how_busy" + ], + [ + "would you say that red lobster's pretty buy at noon", + "how_busy" + ], + [ + "what's the crowd like at hopper's bar around 11pm", + "how_busy" + ], + [ + "can you tell me if there's a lot of wait time at wendy's around 8am", + "how_busy" + ], + [ + "how long will it take to be seated at the flying w", + "how_busy" + ], + [ + "what's the typical time to eat at red lobster", + "how_busy" + ], + [ + "how busy does outback get around 7pm", + "how_busy" + ], + [ + "will i have to wait to get a table at ihop", + "how_busy" + ], + [ + "how many people go to chili's around 9pm", + "how_busy" + ], + [ + "can i make a reservation for redrobin", + "accept_reservations" + ], + [ + "is it possible to make a reservation at redrobin", + "accept_reservations" + ], + [ + "does redrobin take reservations", + "accept_reservations" + ], + [ + "are reservations taken at redrobin", + "accept_reservations" + ], + [ + "does redrobin do reservations", + "accept_reservations" + ], + [ + "can acero take reservation", + "accept_reservations" + ], + [ + "can you make reservations at hodak's", + "accept_reservations" + ], + [ + "tell me if per se in nyc takes reservations", + "accept_reservations" + ], + [ + "tell me if the cheshire takes reservations", + "accept_reservations" + ], + [ + "will qdoba take reservations", + "accept_reservations" + ], + [ + "does burger king accept reservations", + "accept_reservations" + ], + [ + "does gramercy tavern in new york accept reservations", + "accept_reservations" + ], + [ + "does acero in maplewood allow reservations", + "accept_reservations" + ], + [ + "does cielo take reservations", + "accept_reservations" + ], + [ + "find out if la tour d'argent in paris takes reservations", + "accept_reservations" + ], + [ + "does tony's in downton let you make reservations", + "accept_reservations" + ], + [ + "does gramercy tavern accept reservations", + "accept_reservations" + ], + [ + "does mcdonalds take reservations", + "accept_reservations" + ], + [ + "can you make reservations at steak 'n' shake", + "accept_reservations" + ], + [ + "will nobu take reservations", + "accept_reservations" + ], + [ + "do they take reservations at carrabbas", + "accept_reservations" + ], + [ + "do they take reservations at applebees", + "accept_reservations" + ], + [ + "do they take reservations at olive garden", + "accept_reservations" + ], + [ + "do they take reservations at buffalo wild wings", + "accept_reservations" + ], + [ + "do they take reservations at outback steakhouse", + "accept_reservations" + ], + [ + "i need to know if angelos takes reservations", + "accept_reservations" + ], + [ + "does applebees in trenton do reservations", + "accept_reservations" + ], + [ + "does luigi's take reservations", + "accept_reservations" + ], + [ + "please find out if napolis takes lunch reservations", + "accept_reservations" + ], + [ + "does hannahs in galloway take reservations", + "accept_reservations" + ], + [ + "does stanleys take brunch reservations", + "accept_reservations" + ], + [ + "tell me if luigis in brick takes reservations", + "accept_reservations" + ], + [ + "i need to know if capones does reservations in trenton", + "accept_reservations" + ], + [ + "does marios in brooklyn take reservations", + "accept_reservations" + ], + [ + "do you know if bottlenecks takes dinner reservations", + "accept_reservations" + ], + [ + "do you know if whether or not zeus does reservations", + "accept_reservations" + ], + [ + "can you let me if zeus accepts reservations", + "accept_reservations" + ], + [ + "i need to find out do you know if zeus does reservations", + "accept_reservations" + ], + [ + "please tell me does zeus do reservations", + "accept_reservations" + ], + [ + "can you tell me if zeus does reservations", + "accept_reservations" + ], + [ + "can i get a reservation at melting pot tomorrow", + "accept_reservations" + ], + [ + "what locations of applebee's take reservations", + "accept_reservations" + ], + [ + "can i get a reservation at champs", + "accept_reservations" + ], + [ + "where can i find jimmy john's reservations", + "accept_reservations" + ], + [ + "how many culver's take reservations", + "accept_reservations" + ], + [ + "is there evening reservations available in the eve", + "accept_reservations" + ], + [ + "do you know if bahama breeze does reservations", + "accept_reservations" + ], + [ + "do you know if ruth chris does reservations", + "accept_reservations" + ], + [ + "do you know if cheese cake factory does reservations", + "accept_reservations" + ], + [ + "do you know if benihana does reservations", + "accept_reservations" + ], + [ + "do you know if olive garden does reservations", + "accept_reservations" + ], + [ + "does the steakhouse on main st take reservations", + "accept_reservations" + ], + [ + "does sidetracks take reservations", + "accept_reservations" + ], + [ + "are reservations allowed at burger king", + "accept_reservations" + ], + [ + "does black rock take reservations", + "accept_reservations" + ], + [ + "can i make reservations at applebee's or no", + "accept_reservations" + ], + [ + "does buffalo wild wings do reservations", + "accept_reservations" + ], + [ + "does minnies cafe in modesto take reservations", + "accept_reservations" + ], + [ + "does bjs take reservations", + "accept_reservations" + ], + [ + "will they take reservations at chillis", + "accept_reservations" + ], + [ + "does pho king in ceres take reservations", + "accept_reservations" + ], + [ + "can applebees take any reservations", + "accept_reservations" + ], + [ + "does arbys in lakewood take reservations", + "accept_reservations" + ], + [ + "does minnis take reservations", + "accept_reservations" + ], + [ + "do they take reservations at bjs", + "accept_reservations" + ], + [ + "does buffalo wild wings take reservations", + "accept_reservations" + ], + [ + "does buffalo wild wings in concord take reservations", + "accept_reservations" + ], + [ + "will they take reservations at torris", + "accept_reservations" + ], + [ + "does black bear diner in tracy take reservations", + "accept_reservations" + ], + [ + "does chillis take reservations", + "accept_reservations" + ], + [ + "do they take reservations at bar tartine", + "accept_reservations" + ], + [ + "do they take reservations at mcdonalds", + "accept_reservations" + ], + [ + "do they take reservations at the progress", + "accept_reservations" + ], + [ + "does tartine in san francisco take reservations", + "accept_reservations" + ], + [ + "does cowgirl creamery in san francisco take reservations", + "accept_reservations" + ], + [ + "do they take reservations at state bird", + "accept_reservations" + ], + [ + "does nopa in san francisco take reservations", + "accept_reservations" + ], + [ + "does bar tartine in san francisco take reservations", + "accept_reservations" + ], + [ + "do they take reservations at arby's", + "accept_reservations" + ], + [ + "does pizzeria delfina in san francisco take reservations", + "accept_reservations" + ], + [ + "does iron skillet at the truck stop trake reservations", + "accept_reservations" + ], + [ + "does the zen garden in la take reservations", + "accept_reservations" + ], + [ + "does moes in la except rerservations", + "accept_reservations" + ], + [ + "does ruby tuesday accept reservations", + "accept_reservations" + ], + [ + "can i make a reservation at chevy's", + "accept_reservations" + ], + [ + "is it possible to make reservations in advance for macaroni grill", + "accept_reservations" + ], + [ + "is it possible to make reservations with famous dave's restaurant", + "accept_reservations" + ], + [ + "is it possible to make reservations at chili's", + "accept_reservations" + ], + [ + "does chili's take reservations", + "accept_reservations" + ], + [ + "can you tell me if ruby tuesday does reservations", + "accept_reservations" + ], + [ + "does olive garden take reservations", + "accept_reservations" + ], + [ + "do you know whether ihop does reservations", + "accept_reservations" + ], + [ + "does michael's accept reservations", + "accept_reservations" + ], + [ + "do they accept reservations at michael's", + "accept_reservations" + ], + [ + "can you make a reservation at michael's", + "accept_reservations" + ], + [ + "can i make a reservation at michael's", + "accept_reservations" + ], + [ + "does the restaurant michael's take reservations", + "accept_reservations" + ], + [ + "do they take reservations at mendy's", + "accept_reservations" + ], + [ + "do you know if outback allows reservations", + "accept_reservations" + ], + [ + "do they take reservations at red robin", + "accept_reservations" + ], + [ + "can you find my package in transit", + "order_status" + ], + [ + "track my package please", + "order_status" + ], + [ + "help me find my package", + "order_status" + ], + [ + "i need to track my package", + "order_status" + ], + [ + "what's going on with my order", + "order_status" + ], + [ + "can you see where my package is", + "order_status" + ], + [ + "do you know anything about the status of my order", + "order_status" + ], + [ + "can you check if my order has been delivered", + "order_status" + ], + [ + "are you able to figure out where my package is", + "order_status" + ], + [ + "order status", + "order_status" + ], + [ + "is my order being delivered soon", + "order_status" + ], + [ + "where's my package", + "order_status" + ], + [ + "do you know where my package is", + "order_status" + ], + [ + "check status on my deliver, has it been delivered", + "order_status" + ], + [ + "is my order shown as delivered", + "order_status" + ], + [ + "did my order ship", + "order_status" + ], + [ + "can you tell where my package is", + "order_status" + ], + [ + "is my package able to be tracked by you", + "order_status" + ], + [ + "can you find my package", + "order_status" + ], + [ + "can you locate my package", + "order_status" + ], + [ + "are you able to tack my package", + "order_status" + ], + [ + "has my online order shipped yet", + "order_status" + ], + [ + "i need to know what the most recent update is on the status of my online purchase", + "order_status" + ], + [ + "look up the status of the order i placed online", + "order_status" + ], + [ + "check to see the status of my recent online order", + "order_status" + ], + [ + "find out the status of my most recent online purchase", + "order_status" + ], + [ + "i ordered some curtains off amazon, can you tell me if it's been shipped yet", + "order_status" + ], + [ + "what's the status of my order", + "order_status" + ], + [ + "can you check on the status of my orders at amazon", + "order_status" + ], + [ + "can you tell me what the status of my last amazon order is", + "order_status" + ], + [ + "can you tell me if my last amazon order is coming today", + "order_status" + ], + [ + "show me tracking on my order", + "order_status" + ], + [ + "what is the status of my order", + "order_status" + ], + [ + "can you update me on my last amazon orders", + "order_status" + ], + [ + "i just placed my order today, what is the status of it", + "order_status" + ], + [ + "can i please get the status my order", + "order_status" + ], + [ + "my order was put in and i was wonder how i can see the status of it", + "order_status" + ], + [ + "i submitted my order is there any updates on it yet", + "order_status" + ], + [ + "hey, i just put in my order and i was wondering what the status of it", + "order_status" + ], + [ + "what's the current location of my package", + "order_status" + ], + [ + "has my ordered arrived", + "order_status" + ], + [ + "when will my package arrive", + "order_status" + ], + [ + "can you see if my order was delivered", + "order_status" + ], + [ + "did my order ever get distributed today", + "order_status" + ], + [ + "where was my package last at", + "order_status" + ], + [ + "can you help me find my package", + "order_status" + ], + [ + "was my order dropped off", + "order_status" + ], + [ + "where's my package right now", + "order_status" + ], + [ + "would you track my package", + "order_status" + ], + [ + "please track my package", + "order_status" + ], + [ + "track my package now please", + "order_status" + ], + [ + "could you please track my package", + "order_status" + ], + [ + "i need you to track my package", + "order_status" + ], + [ + "what is the status of my online order", + "order_status" + ], + [ + "what's the status of the order i placed online last week with target", + "order_status" + ], + [ + "please tell me the status of my last online order from walmart", + "order_status" + ], + [ + "can i still make changes to my order, or has it already been shipped", + "order_status" + ], + [ + "i need an update on my online order from nespresso", + "order_status" + ], + [ + "when can i expect to receive the order", + "order_status" + ], + [ + "has my order been shipped", + "order_status" + ], + [ + "can you give me a status update on my online order from amazon", + "order_status" + ], + [ + "what is the status of my online order of coffee pods", + "order_status" + ], + [ + "what is the status of my recent order", + "order_status" + ], + [ + "can you please check on the status of my online order", + "order_status" + ], + [ + "check up on the status of my online order", + "order_status" + ], + [ + "online order: status", + "order_status" + ], + [ + "check on the status of my order", + "order_status" + ], + [ + "where is my order", + "order_status" + ], + [ + "is my order here yet", + "order_status" + ], + [ + "when will my order be delivered", + "order_status" + ], + [ + "check the status of my order", + "order_status" + ], + [ + "show me where my order is", + "order_status" + ], + [ + "has my order been shipped yet", + "order_status" + ], + [ + "can you check to see if my order has been delivered", + "order_status" + ], + [ + "could you check to see if my order has been delivered, please", + "order_status" + ], + [ + "can you check to see if my order has been delivered, please", + "order_status" + ], + [ + "could you check if my order has been delivered, please", + "order_status" + ], + [ + "could you check to see if my order has been delivered", + "order_status" + ], + [ + "has the order that i placed arrived", + "order_status" + ], + [ + "is my order already here", + "order_status" + ], + [ + "is my order due yet", + "order_status" + ], + [ + "is the packaged delivered already", + "order_status" + ], + [ + "has my order arrived yet", + "order_status" + ], + [ + "how soon will me package arrive", + "order_status" + ], + [ + "when can i expect my order", + "order_status" + ], + [ + "check order number", + "order_status" + ], + [ + "track package, please", + "order_status" + ], + [ + "are you able to track my package", + "order_status" + ], + [ + "track my package", + "order_status" + ], + [ + "what is the tracking on my package", + "order_status" + ], + [ + "get the tracking on my package", + "order_status" + ], + [ + "what is the status of my delivery order", + "order_status" + ], + [ + "where is my delivery order", + "order_status" + ], + [ + "has my delivery order arrived yet", + "order_status" + ], + [ + "has my delivery order showed up", + "order_status" + ], + [ + "i ordered for delivery, has is arrived yet", + "order_status" + ], + [ + "what is the status of my most recent order", + "order_status" + ], + [ + "has my recent order shipped", + "order_status" + ], + [ + "when will my order be here", + "order_status" + ], + [ + "will my order be here by saturday", + "order_status" + ], + [ + "how do i change my pin for number for my abc bank account", + "pin_change" + ], + [ + "what do i need to do to change my abc bank account pin number", + "pin_change" + ], + [ + "i have no idea what the pin is for my checking account", + "pin_change" + ], + [ + "i cannot recall the pin for my savings account", + "pin_change" + ], + [ + "i forgot the pin number for my college fund account", + "pin_change" + ], + [ + "set up a new pin number on my college fund account and make it be 1234", + "pin_change" + ], + [ + "i want 1234 to be the new pin number for my joint account", + "pin_change" + ], + [ + "please change my checking account pin to 1234", + "pin_change" + ], + [ + "i need to set up a new pin number for my college fund account", + "pin_change" + ], + [ + "i want my savings account pin to be 1234 from now on", + "pin_change" + ], + [ + "please change my retirement account pin number to 1234", + "pin_change" + ], + [ + "my checking account needs a new pin number", + "pin_change" + ], + [ + "i seem to have lost the pin for my retirement account", + "pin_change" + ], + [ + "i would like to replace the pin number for my retirement account", + "pin_change" + ], + [ + "i'd like to change my pin number for my checking account", + "pin_change" + ], + [ + "i want a new pin for my savings account", + "pin_change" + ], + [ + "i'm afraid i've forgotten the pin for my 401k account", + "pin_change" + ], + [ + "i need help changing my pin", + "pin_change" + ], + [ + "is there a way to get my pin number", + "pin_change" + ], + [ + "is there a way to change my pin number for my savings account", + "pin_change" + ], + [ + "i need my pin number", + "pin_change" + ], + [ + "how do i get my pin number, i forgot mine", + "pin_change" + ], + [ + "help me change my pin number for my money market account", + "pin_change" + ], + [ + "how do i get a new pin", + "pin_change" + ], + [ + "tell me how i can get a new pin number", + "pin_change" + ], + [ + "tell me how to retrieve my pin number", + "pin_change" + ], + [ + "help me, i forgot my pin number", + "pin_change" + ], + [ + "what is the procedure for getting a new pin number", + "pin_change" + ], + [ + "how do i change my pin number for my payroll account", + "pin_change" + ], + [ + "change my pin number for my checking account", + "pin_change" + ], + [ + "change my amex account pin to 1234", + "pin_change" + ], + [ + "change my amex pin to 1234", + "pin_change" + ], + [ + "swap my amex pin to 1234", + "pin_change" + ], + [ + "switch my amex pin to 1234", + "pin_change" + ], + [ + "set my amex pin to 1234", + "pin_change" + ], + [ + "you need to change the pin on my bank of america account to be 1234", + "pin_change" + ], + [ + "i need you to change the pin on my bank of america account to be 1234", + "pin_change" + ], + [ + "i need to change my pin number for my account", + "pin_change" + ], + [ + "i must change my pin number for my money market account", + "pin_change" + ], + [ + "i cannot remember what my pin is for my bank of america checking account", + "pin_change" + ], + [ + "i really need to change my pin number for my account", + "pin_change" + ], + [ + "i cannot remember what my pin is for my bank of america checking account this moment", + "pin_change" + ], + [ + "i want to change my pin number for my checking account", + "pin_change" + ], + [ + "i want to change my pin number for my account", + "pin_change" + ], + [ + "please go and change the pin on my bank of america account to be 1234", + "pin_change" + ], + [ + "i must change my pin number for my account", + "pin_change" + ], + [ + "go ahead and change the pin on my bank of america account to be 1234", + "pin_change" + ], + [ + "i got to change my pin number for my account", + "pin_change" + ], + [ + "i need to change my pin number for my savings account", + "pin_change" + ], + [ + "i wanna change my pin number for my credit acount", + "pin_change" + ], + [ + "please change the pin on my bank of america account to be 1234", + "pin_change" + ], + [ + "i really cannot remember what my pin is for my bank of america checking account", + "pin_change" + ], + [ + "i gotta change my pin number for my debit account", + "pin_change" + ], + [ + "i am unable to remember what my pin is for my bank of america checking account", + "pin_change" + ], + [ + "so it turns out i can't remember what my pin is for my bank of america checking account", + "pin_change" + ], + [ + "how do i change my pin number for my account, please", + "pin_change" + ], + [ + "how do i update my pin number for my account, please", + "pin_change" + ], + [ + "i would like to change the pin on my checking account, please", + "pin_change" + ], + [ + "i'd like to change the pin on my savings account, please", + "pin_change" + ], + [ + "change the pin on my capital one account to be 1234", + "pin_change" + ], + [ + "change the pin on my redwood credit union account to be 1234", + "pin_change" + ], + [ + "change the pin on my chase account to be 1234", + "pin_change" + ], + [ + "how do i update my pin number for my account", + "pin_change" + ], + [ + "i would like to change the pin on my savings account", + "pin_change" + ], + [ + "change the pin on my wells fargo account to be 1234", + "pin_change" + ], + [ + "change the pin on my bank of america account to be 1234", + "pin_change" + ], + [ + "i would like to change the pin on my checking account", + "pin_change" + ], + [ + "i would like to change the pin on my savings account, please", + "pin_change" + ], + [ + "how do i reset my pin number for my account, please", + "pin_change" + ], + [ + "please change pin to 1234 on my bank account trailing in 3829", + "pin_change" + ], + [ + "on account ending in 3838 change my pin to 1234", + "pin_change" + ], + [ + "change my pin to 1234 on account ending with digits 4994", + "pin_change" + ], + [ + "change the pin on my bank account first republic to 1234", + "pin_change" + ], + [ + "change pin to 1234 on account banner", + "pin_change" + ], + [ + "help me change my pin number", + "pin_change" + ], + [ + "can you tell me how i change my pin number", + "pin_change" + ], + [ + "tell me how to change my pin number", + "pin_change" + ], + [ + "help me out with changing this pin number", + "pin_change" + ], + [ + "can i change my pin number", + "pin_change" + ], + [ + "help me get my pin on my capitol one account changed to 3892", + "pin_change" + ], + [ + "how can i switch the pin on my wells fargo account to 9982", + "pin_change" + ], + [ + "i need a reminder for my pin number", + "pin_change" + ], + [ + "help me remember my pin number", + "pin_change" + ], + [ + "change the pin on my bofa account to 3892", + "pin_change" + ], + [ + "i need to reset my pin number", + "pin_change" + ], + [ + "can you reset my pin number", + "pin_change" + ], + [ + "can you change my 1st national account pin to 4892", + "pin_change" + ], + [ + "can you help me with my pin number", + "pin_change" + ], + [ + "please make the pin on my zion bank account to 3232", + "pin_change" + ], + [ + "can you tell me my password checking account", + "pin_change" + ], + [ + "please tell me my pin number for my synovus account", + "pin_change" + ], + [ + "what's my pin for my fidelity account", + "pin_change" + ], + [ + "i cant recall my pin number for my city first account", + "pin_change" + ], + [ + "i forgot my pin number for my northfield account", + "pin_change" + ], + [ + "i'd like to change my pin number for my wells fargo account", + "pin_change" + ], + [ + "i would like to change my pin number for my chase account", + "pin_change" + ], + [ + "i need to change my pin number for my checking account", + "pin_change" + ], + [ + "i'd like to change my pin number for my savings account", + "pin_change" + ], + [ + "i forgot my pin number to my chase account", + "pin_change" + ], + [ + "can you help me remember my pin to my boa account", + "pin_change" + ], + [ + "syonara, ai device!", + "goodbye" + ], + [ + "goodbye, helpful ai device!", + "goodbye" + ], + [ + "bye-bye", + "goodbye" + ], + [ + "goodbye, ai assistant", + "goodbye" + ], + [ + "glad we got to talk", + "goodbye" + ], + [ + "i'm glad i got to talk to you", + "goodbye" + ], + [ + "nice to speak with you", + "goodbye" + ], + [ + "this was a great conversation", + "goodbye" + ], + [ + "talk to you later", + "goodbye" + ], + [ + "tata for now", + "goodbye" + ], + [ + "i'm out of here", + "goodbye" + ], + [ + "that's all, bye", + "goodbye" + ], + [ + "see ya later", + "goodbye" + ], + [ + "adios ai", + "goodbye" + ], + [ + "it was great to see you again, see ya later!", + "goodbye" + ], + [ + "i had a pleasure talking to you, see you later", + "goodbye" + ], + [ + "nice talking again, bye", + "goodbye" + ], + [ + "i have to go but it was nice talking again!", + "goodbye" + ], + [ + "i am glad we got to talk again, see you soon", + "goodbye" + ], + [ + "sayonara", + "goodbye" + ], + [ + "catch you around", + "goodbye" + ], + [ + "good seeing you", + "goodbye" + ], + [ + "later, thanks for chatting", + "goodbye" + ], + [ + "adios", + "goodbye" + ], + [ + "great talk, take it easy", + "goodbye" + ], + [ + "see ya", + "goodbye" + ], + [ + "great chat, talk to you later", + "goodbye" + ], + [ + "nice talk, talk to you later", + "goodbye" + ], + [ + "thanks for chatting, later", + "goodbye" + ], + [ + "goodbye to you", + "goodbye" + ], + [ + "i must say goodbye", + "goodbye" + ], + [ + "i'm saying goodbye now", + "goodbye" + ], + [ + "it is time to say goodbye", + "goodbye" + ], + [ + "i have to say goodbye", + "goodbye" + ], + [ + "cya later", + "goodbye" + ], + [ + "i enjoyed talking to you", + "goodbye" + ], + [ + "thanks for talking", + "goodbye" + ], + [ + "it was good chatting", + "goodbye" + ], + [ + "it was nice chatting with you", + "goodbye" + ], + [ + "always nice to talk to you", + "goodbye" + ], + [ + "see you later, alligator", + "goodbye" + ], + [ + "good night", + "goodbye" + ], + [ + "it was nice to get in touch", + "goodbye" + ], + [ + "see you soon", + "goodbye" + ], + [ + "later gator!", + "goodbye" + ], + [ + "it was nice to talk it out with you", + "goodbye" + ], + [ + "it was nice to converse with you", + "goodbye" + ], + [ + "ill see you around", + "goodbye" + ], + [ + "take it easy!", + "goodbye" + ], + [ + "later gater", + "goodbye" + ], + [ + "it was nice to speak with you", + "goodbye" + ], + [ + "see you later alligator", + "goodbye" + ], + [ + "fairwell", + "goodbye" + ], + [ + "have a good one", + "goodbye" + ], + [ + "peace", + "goodbye" + ], + [ + "bye for now", + "goodbye" + ], + [ + "thanks, bye", + "goodbye" + ], + [ + "i have to get going", + "goodbye" + ], + [ + "talk to you later!", + "goodbye" + ], + [ + "i\u2019ll be leaving now", + "goodbye" + ], + [ + "i\u2019m leaving-goodbye!", + "goodbye" + ], + [ + "thanks for talking to me", + "goodbye" + ], + [ + "it was really nice to be able to chat with you", + "goodbye" + ], + [ + "it was good to talk to you today", + "goodbye" + ], + [ + "it was great to have this conversation with you", + "goodbye" + ], + [ + "it was nice to catch up with you", + "goodbye" + ], + [ + "it was enjoyable talking with you", + "goodbye" + ], + [ + "it was great chatting with you", + "goodbye" + ], + [ + "it was cool talking with you", + "goodbye" + ], + [ + "it was pleasant conversing with you", + "goodbye" + ], + [ + "good bye my friend", + "goodbye" + ], + [ + "i need to go now", + "goodbye" + ], + [ + "see you again soon", + "goodbye" + ], + [ + "i've got to run now", + "goodbye" + ], + [ + "goodbye!", + "goodbye" + ], + [ + "i had fun speaking with you", + "goodbye" + ], + [ + "bye!", + "goodbye" + ], + [ + "later!", + "goodbye" + ], + [ + "adios!", + "goodbye" + ], + [ + "until next time!", + "goodbye" + ], + [ + "farewell!", + "goodbye" + ], + [ + "it was enjoyable to chat with you", + "goodbye" + ], + [ + "i'm outta here!", + "goodbye" + ], + [ + "it was pleasant having a conversation with you", + "goodbye" + ], + [ + "bye now", + "goodbye" + ], + [ + "buhbye", + "goodbye" + ], + [ + "see you in a while", + "goodbye" + ], + [ + "see you around", + "goodbye" + ], + [ + "nice to see you again", + "goodbye" + ], + [ + "nice to see you", + "goodbye" + ], + [ + "talk later", + "goodbye" + ], + [ + "tootles", + "goodbye" + ], + [ + "peace out", + "goodbye" + ], + [ + "goodbye for now ai", + "goodbye" + ], + [ + "ai goodbye", + "goodbye" + ], + [ + "i'll talk to you later ai", + "goodbye" + ], + [ + "we'll talk later ai", + "goodbye" + ], + [ + "i have to go ai goodbye", + "goodbye" + ], + [ + "bye bye!", + "goodbye" + ], + [ + "see you later!", + "goodbye" + ], + [ + "why is there a hold on my american saving bank account", + "account_blocked" + ], + [ + "i am nost sure why my account is blocked", + "account_blocked" + ], + [ + "why is there a hold on my capital one checking account", + "account_blocked" + ], + [ + "i think my account is blocked but i do not know the reason", + "account_blocked" + ], + [ + "can you tell me why is my bank account frozen", + "account_blocked" + ], + [ + "why is there a hold on my edward jones account", + "account_blocked" + ], + [ + "why am i locked out of my bank account", + "account_blocked" + ], + [ + "why in the world am i locked out of my bank account", + "account_blocked" + ], + [ + "what is the reason for frozen status on my bank account", + "account_blocked" + ], + [ + "check for why is my bank account frozen", + "account_blocked" + ], + [ + "i don't know the reason my account is blocked", + "account_blocked" + ], + [ + "find out for me why is my bank account frozen", + "account_blocked" + ], + [ + "can you find out why is my bank account frozen", + "account_blocked" + ], + [ + "why is there a hold on my discover account", + "account_blocked" + ], + [ + "tell me why am i locked out of my bank account", + "account_blocked" + ], + [ + "what is the reason i am locked out of my bank account", + "account_blocked" + ], + [ + "why is my account blocked", + "account_blocked" + ], + [ + "find out the reason why am i locked out of my bank account", + "account_blocked" + ], + [ + "i think my account is block but i am not sure why", + "account_blocked" + ], + [ + "why is there a hold on my charles swab account", + "account_blocked" + ], + [ + "my chase account has a hold why", + "account_blocked" + ], + [ + "what's the reason for a hold on my wells fargo account", + "account_blocked" + ], + [ + "can you find the reason for the block on my account", + "account_blocked" + ], + [ + "there's a hold on my chase account, but why", + "account_blocked" + ], + [ + "tell me the reason there is a hold or block on my account", + "account_blocked" + ], + [ + "why does my credit union account have a hold on it", + "account_blocked" + ], + [ + "figure out why there is a block on my account please", + "account_blocked" + ], + [ + "why am i seeing a hold on my boa account", + "account_blocked" + ], + [ + "my account has been blocked, but i have no idea why", + "account_blocked" + ], + [ + "why is there a block on my account", + "account_blocked" + ], + [ + "can you please unlock my bank account", + "account_blocked" + ], + [ + "please let me into my bank account", + "account_blocked" + ], + [ + "why cannot i take any money out from my bank account", + "account_blocked" + ], + [ + "what was the reason my bank account was frozen", + "account_blocked" + ], + [ + "who froze my bank account", + "account_blocked" + ], + [ + "who can i talk to right away about the current freeze on my account", + "account_blocked" + ], + [ + "my checking account has a hold on it and i need to know why", + "account_blocked" + ], + [ + "why is my bank account stopping all transactions from going through", + "account_blocked" + ], + [ + "i need to know why my bank account is blocking all of activity", + "account_blocked" + ], + [ + "can you find out what triggered a hold on my bank account", + "account_blocked" + ], + [ + "can i talk to someone about why there is a hold on my checking account", + "account_blocked" + ], + [ + "what caused a freeze to be put on my bank account", + "account_blocked" + ], + [ + "my account has a hold on it and i can't access my funds, why", + "account_blocked" + ], + [ + "is there a reason that my bank account has a freeze on it", + "account_blocked" + ], + [ + "what would cause my bank account to be frozen", + "account_blocked" + ], + [ + "do you know why i can't log into my bank account", + "account_blocked" + ], + [ + "why can't i get into my account", + "account_blocked" + ], + [ + "did i do something to get my bank account frozen", + "account_blocked" + ], + [ + "was my bank account frozen for a specific reason", + "account_blocked" + ], + [ + "why are the funds in my bank account frozen", + "account_blocked" + ], + [ + "what would cause me to be locked out of my bank account", + "account_blocked" + ], + [ + "why am i unable to access my bank account", + "account_blocked" + ], + [ + "why is my bank account frozen", + "account_blocked" + ], + [ + "why would i have been locked out of my own account", + "account_blocked" + ], + [ + "can you explain to me why my bank account might be frozen", + "account_blocked" + ], + [ + "i am very confused about why or how my bank would lock me out of my account", + "account_blocked" + ], + [ + "why would the bank have frozen my account", + "account_blocked" + ], + [ + "do you know why the bank put a hold on my joint checking account", + "account_blocked" + ], + [ + "i don't understand why there is a hold on my retirement fund account", + "account_blocked" + ], + [ + "can you explain why there is a hold on my savings account", + "account_blocked" + ], + [ + "what's the deal with my bank account being locked", + "account_blocked" + ], + [ + "what reason could the bank have had for blocking my account", + "account_blocked" + ], + [ + "why would a hold have been placed on my checking account", + "account_blocked" + ], + [ + "why on earth would a block have been placed on my account", + "account_blocked" + ], + [ + "i'm confused about the reason for my bank account being frozen", + "account_blocked" + ], + [ + "i don't understand why i have been barred from accessing my own account", + "account_blocked" + ], + [ + "i don't understand why my bank account is frozen right now", + "account_blocked" + ], + [ + "how come i am being denied access to my bank account", + "account_blocked" + ], + [ + "do you know why my account appears to be blocked", + "account_blocked" + ], + [ + "i am confused because my account seems to have been blocked for no reason", + "account_blocked" + ], + [ + "i am very confused about the block that seems to have been placed on my account why is it there", + "account_blocked" + ], + [ + "how is it possible that my account has been frozen", + "account_blocked" + ], + [ + "how come a hold was placed on my 401k account", + "account_blocked" + ], + [ + "could you please tell me, my wells fargo account, is there a hold and why", + "account_blocked" + ], + [ + "i am unable to complete my order, why could there be a hold on my wells fargo account", + "account_blocked" + ], + [ + "was a hold placed on my wells fargo account, and if so why", + "account_blocked" + ], + [ + "in regards to my wells fargo account, why is there a hold", + "account_blocked" + ], + [ + "why was a hold placed on my wells fargo account", + "account_blocked" + ], + [ + "call my bank customer service number", + "account_blocked" + ], + [ + "why is my account locked", + "account_blocked" + ], + [ + "what's with the block on my bank account", + "account_blocked" + ], + [ + "why did my bank account freeze", + "account_blocked" + ], + [ + "why'd they put a freeze on my bank account", + "account_blocked" + ], + [ + "why is my bank account blocking me", + "account_blocked" + ], + [ + "why can't i access my bank account", + "account_blocked" + ], + [ + "i think my account is blocked", + "account_blocked" + ], + [ + "for what reason is my account blocked", + "account_blocked" + ], + [ + "can you tell me why there's a hold on my mutualone account", + "account_blocked" + ], + [ + "why don't i have access to my bank account", + "account_blocked" + ], + [ + "why isn't it letting me into my bank account", + "account_blocked" + ], + [ + "my capital one account has a hold; why", + "account_blocked" + ], + [ + "why does my visa account have a hold on it", + "account_blocked" + ], + [ + "why am i seeing a hold on my charles schwab account", + "account_blocked" + ], + [ + "tell me about the hold on my chase account", + "account_blocked" + ], + [ + "can you tell me why my bank account is frozen", + "account_blocked" + ], + [ + "do you know why my account is blocked", + "account_blocked" + ], + [ + "help, my account is blocked", + "account_blocked" + ], + [ + "help me please, my account is blocked", + "account_blocked" + ], + [ + "help me unblock my account", + "account_blocked" + ], + [ + "my account is blocked, help me figure out why", + "account_blocked" + ], + [ + "which song is playing", + "what_song" + ], + [ + "what's this song called", + "what_song" + ], + [ + "what song is this", + "what_song" + ], + [ + "what's the name of this song", + "what_song" + ], + [ + "what is this song", + "what_song" + ], + [ + "can you tell me what song this is", + "what_song" + ], + [ + "which song is this", + "what_song" + ], + [ + "can you look up the name of this song", + "what_song" + ], + [ + "i'd like to know what this song is", + "what_song" + ], + [ + "can you tell me the name of this song", + "what_song" + ], + [ + "do you know what this song is", + "what_song" + ], + [ + "what's song am i hearing", + "what_song" + ], + [ + "tell me the song title", + "what_song" + ], + [ + "what's the title of this track", + "what_song" + ], + [ + "what song am i listening to", + "what_song" + ], + [ + "who sings this song", + "what_song" + ], + [ + "what's the name of what's playing on my speakers", + "what_song" + ], + [ + "what's this track", + "what_song" + ], + [ + "what's playing right now", + "what_song" + ], + [ + "what's the title of this", + "what_song" + ], + [ + "what's the name of this tune", + "what_song" + ], + [ + "what's the name of this release", + "what_song" + ], + [ + "what's the title of this tune", + "what_song" + ], + [ + "what track am i listening to", + "what_song" + ], + [ + "what's this jam called", + "what_song" + ], + [ + "what's this song", + "what_song" + ], + [ + "can you name the song on the speakers", + "what_song" + ], + [ + "who is this song that's on the stereo", + "what_song" + ], + [ + "can you give me the name of this tune", + "what_song" + ], + [ + "tell me what song this is", + "what_song" + ], + [ + "tell me the name of the song that is playing", + "what_song" + ], + [ + "tell me the name of this song", + "what_song" + ], + [ + "let me know what song is playing", + "what_song" + ], + [ + "help me to know what song is playing", + "what_song" + ], + [ + "i want to know what song is playing", + "what_song" + ], + [ + "i am wanting to know what song this is", + "what_song" + ], + [ + "i am needing to know what song is playing", + "what_song" + ], + [ + "could you let me know what song this is", + "what_song" + ], + [ + "i need to know what song this is", + "what_song" + ], + [ + "what is that song that's playing", + "what_song" + ], + [ + "what is the name of the song that's playing on the radio right now", + "what_song" + ], + [ + "what's the name of the song you're playing", + "what_song" + ], + [ + "what music is playing on the the bluetooth now", + "what_song" + ], + [ + "which song is playing now", + "what_song" + ], + [ + "can you tell me this song", + "what_song" + ], + [ + "name this song, please", + "what_song" + ], + [ + "what's the song currently playing", + "what_song" + ], + [ + "what's the name of the current song", + "what_song" + ], + [ + "what song is playing", + "what_song" + ], + [ + "what band is this", + "what_song" + ], + [ + "i like this song who is it by", + "what_song" + ], + [ + "what is the title of this track", + "what_song" + ], + [ + "tell me the artist currently playing", + "what_song" + ], + [ + "what's the artist's name of this song", + "what_song" + ], + [ + "what is the track title of the song playing", + "what_song" + ], + [ + "name the singer of this track", + "what_song" + ], + [ + "who sang this song", + "what_song" + ], + [ + "who plays this song", + "what_song" + ], + [ + "what's the now playing song that we are listening to", + "what_song" + ], + [ + "what's the current song that we are listening at this time", + "what_song" + ], + [ + "what's the name of the song that we are listening to", + "what_song" + ], + [ + "what's the song that we are listening at this moment", + "what_song" + ], + [ + "what's the song they are playing for us right now", + "what_song" + ], + [ + "what's the name of this song i'm listening to", + "what_song" + ], + [ + "what am i listening to", + "what_song" + ], + [ + "what is the current song", + "what_song" + ], + [ + "can you tell me what song i'm hearing", + "what_song" + ], + [ + "what am i hearing on the speakers now", + "what_song" + ], + [ + "what's this song playing", + "what_song" + ], + [ + "whats the name of the playing song", + "what_song" + ], + [ + "tell me this songs name", + "what_song" + ], + [ + "i need to know this song's name", + "what_song" + ], + [ + "i want to know the name of the song that's playing", + "what_song" + ], + [ + "can you tell me the mane of the song playing", + "what_song" + ], + [ + "i'd like to know this song's name", + "what_song" + ], + [ + "can you get me the name of this song", + "what_song" + ], + [ + "find out what this song is", + "what_song" + ], + [ + "i would like to know this song's title", + "what_song" + ], + [ + "i need to know what this song is called", + "what_song" + ], + [ + "tell me the title of this song", + "what_song" + ], + [ + "tell me this song's name", + "what_song" + ], + [ + "what is the song that's playing", + "what_song" + ], + [ + "tell me the song that's playing right now", + "what_song" + ], + [ + "do you know the name of this song", + "what_song" + ], + [ + "do you know what song this is", + "what_song" + ], + [ + "what is the name of this song", + "what_song" + ], + [ + "can you tell me the song we are listening to", + "what_song" + ], + [ + "which song are we listening to", + "what_song" + ], + [ + "what is the song that is currently playing", + "what_song" + ], + [ + "can you tell me what this song is", + "what_song" + ], + [ + "whats the name of this song", + "what_song" + ], + [ + "what is the title of this tune", + "what_song" + ], + [ + "what tune is this", + "what_song" + ], + [ + "what is that noise", + "what_song" + ], + [ + "what is playing", + "what_song" + ], + [ + "whats the title of this", + "what_song" + ], + [ + "whats the title of this song", + "what_song" + ], + [ + "the song on speaker is what like", + "what_song" + ], + [ + "the song on speaker is what", + "what_song" + ], + [ + "what is the song on speaker", + "what_song" + ], + [ + "are there any transaction fees associated with my chase card if i am in tokyo", + "international_fees" + ], + [ + "does my usaa card have international transaction fees", + "international_fees" + ], + [ + "does my bank of the west card have international transaction fees", + "international_fees" + ], + [ + "are there any transaction fees associated with my usaa card if i am in india", + "international_fees" + ], + [ + "does my navy federal card have international transaction fees", + "international_fees" + ], + [ + "does my chase card have international transaction fees", + "international_fees" + ], + [ + "are there any transaction fees associated with my navy federal card if i am in germany", + "international_fees" + ], + [ + "are there any transaction fees associated with my usaa card if i am in south korea", + "international_fees" + ], + [ + "does my bank of america card have international transaction fees", + "international_fees" + ], + [ + "are there any transaction fees associated with my navy federal card if i am in japan", + "international_fees" + ], + [ + "what are the fees for using my card in toronto", + "international_fees" + ], + [ + "do i incur extra fees if i use my card in london", + "international_fees" + ], + [ + "do travelers to egypt get hit with transaction fees if they're using a mastercard", + "international_fees" + ], + [ + "do i have to pay amex transaction fees in brazil", + "international_fees" + ], + [ + "if i use my card in denver will i get charged extra", + "international_fees" + ], + [ + "are there fees for using my card in tampa", + "international_fees" + ], + [ + "will my discover card ding me with transaction fees if i'm in aruba", + "international_fees" + ], + [ + "does bank of america charge transaction fees if you use it in canada", + "international_fees" + ], + [ + "will i pay extra if i use my card in juarez", + "international_fees" + ], + [ + "are there transaction fees for my visa if i'm in russia", + "international_fees" + ], + [ + "what is the surcharge for using my card in italy while i visit", + "international_fees" + ], + [ + "for my card is there a extra card while i'm staying in italy", + "international_fees" + ], + [ + "is there a surcharge for using my card in italy while i'm there", + "international_fees" + ], + [ + "will i get charged extra if i use my card while in italy", + "international_fees" + ], + [ + "how much is the charge of using my card in italy during my stay there", + "international_fees" + ], + [ + "what are the international transaction fees on my amex", + "international_fees" + ], + [ + "give me a list of international transaction fees for my amex", + "international_fees" + ], + [ + "what kind of international transaction fees are related to my amex", + "international_fees" + ], + [ + "will my amex institute international transaction fees on a charge", + "international_fees" + ], + [ + "can i see all the international transaction fees on my amex", + "international_fees" + ], + [ + "what are the fees to use my card in nigeria", + "international_fees" + ], + [ + "what are the foreign transaction fees for cuba", + "international_fees" + ], + [ + "what additional fees do you charge if i use my card in lisbon", + "international_fees" + ], + [ + "how much are the foreign transaction fees in brisbane", + "international_fees" + ], + [ + "what fees are charged if i use something in paris", + "international_fees" + ], + [ + "does visa charge transaction fees in the uk", + "international_fees" + ], + [ + "i need to know if there are transaction fees for my visa card in canada", + "international_fees" + ], + [ + "does american express charge transaction fees for iceland", + "international_fees" + ], + [ + "are there transaction fees charged to my discover card in japan", + "international_fees" + ], + [ + "are transaction fees charged for my aaa card in canada", + "international_fees" + ], + [ + "when i am in spain using my cmaden card, is there any transaction fee", + "international_fees" + ], + [ + "what are the transaction fee using our card in florence if any", + "international_fees" + ], + [ + "tell me if there is any transaction fee using royal card in europe", + "international_fees" + ], + [ + "are there any transaction fee if i use my boston private card in scotland", + "international_fees" + ], + [ + "i want to know if there is any transaction fee using washington federal card when i am in canada", + "international_fees" + ], + [ + "how much is the atm fee for my boa card in orlando, fl", + "international_fees" + ], + [ + "what's the transaction fee for my boa card in orlando, fl", + "international_fees" + ], + [ + "if i use my card in mexico, will there be added fees", + "international_fees" + ], + [ + "are there extra charges for using my card in mexico", + "international_fees" + ], + [ + "what, if any, are the charges for using my card in mexico", + "international_fees" + ], + [ + "is there a surcharge for using my card in mexico", + "international_fees" + ], + [ + "are there extra fees for using my card in mexico", + "international_fees" + ], + [ + "are there international transaction fees for using my chase card", + "international_fees" + ], + [ + "do i have to pay international transaction fees when i use my chase card", + "international_fees" + ], + [ + "what are my chase cards fees for international transactions", + "international_fees" + ], + [ + "how much are the international transaction fees for my chase card", + "international_fees" + ], + [ + "what are the international transaction fees for my chase card", + "international_fees" + ], + [ + "will i be charged if i use the card in germany", + "international_fees" + ], + [ + "will i be charged if i use the card in italy", + "international_fees" + ], + [ + "will i be charged if i use the card in france", + "international_fees" + ], + [ + "will i be charged if i use the card in australia", + "international_fees" + ], + [ + "will i be charged if i use the card in paris", + "international_fees" + ], + [ + "does my card charge if i use it in china", + "international_fees" + ], + [ + "is there a fee associated with use of my card in burkina faso", + "international_fees" + ], + [ + "is there a charge to use my card in japan", + "international_fees" + ], + [ + "if i use my card in tahiti, will i be charged", + "international_fees" + ], + [ + "does my card charge a fee for use in indonesia", + "international_fees" + ], + [ + "is there any transaction fees on my citibank card if used in spain", + "international_fees" + ], + [ + "how much can i expect in transaction fees for using my visa in portugal", + "international_fees" + ], + [ + "can you tell me if i will have any transactions fees for using my discover card in turkey", + "international_fees" + ], + [ + "i would like to know if there are any fees for using my capital one card in london, england", + "international_fees" + ], + [ + "are there any fees for using my amex in england", + "international_fees" + ], + [ + "are there any international transaction fees associated with my visa card", + "international_fees" + ], + [ + "does my amex card use international transaction fees", + "international_fees" + ], + [ + "will i receive a fee if i use my card in ireland", + "international_fees" + ], + [ + "if i use my card in mexico do i get an extra fee", + "international_fees" + ], + [ + "will i be charged extra for using my card in spain", + "international_fees" + ], + [ + "is there an extra fee for using my card in costa rica", + "international_fees" + ], + [ + "will my mastercard charge me a fee for international transactions", + "international_fees" + ], + [ + "will i get a fee for international transactions with my visa card", + "international_fees" + ], + [ + "do i get charged more for using my card in canada", + "international_fees" + ], + [ + "does my mastercard charge international transaction fees", + "international_fees" + ], + [ + "how much do you charge if i use my card in japan", + "international_fees" + ], + [ + "will i be charged for using my card in japan", + "international_fees" + ], + [ + "do i need to pay any fee if i use my card in japan", + "international_fees" + ], + [ + "do you charge me if i use my card in japan", + "international_fees" + ], + [ + "will you charge me if i use my card in japan", + "international_fees" + ], + [ + "show me the international transactions fees for the zenith card", + "international_fees" + ], + [ + "what are the international transactions fees for my industrial bank card", + "international_fees" + ], + [ + "are there many international transactions fees for the freedom card", + "international_fees" + ], + [ + "are there international transactions fees for rainbow card", + "international_fees" + ], + [ + "does the national card have international transactions fees and how much", + "international_fees" + ], + [ + "will i be charged if i use my card in dublin", + "international_fees" + ], + [ + "will i be charged if i use my card in detroit", + "international_fees" + ], + [ + "are there any transaction fees associated with my amex card if i am in the uk", + "international_fees" + ], + [ + "will i be charged if i use my card in mexico", + "international_fees" + ], + [ + "will i be charged if i use my card in canada", + "international_fees" + ], + [ + "will i be charged if i use my card in france", + "international_fees" + ], + [ + "are there any transaction fees associated with my amex card if i am in france", + "international_fees" + ], + [ + "are there any transaction fees associated with my amex card if i am in belgium", + "international_fees" + ], + [ + "tell me when my car last had its oil changed", + "last_maintenance" + ], + [ + "when did i last do maintenance on my car", + "last_maintenance" + ], + [ + "when did i last take my car in for maintenance", + "last_maintenance" + ], + [ + "can you find the date of my last oil change", + "last_maintenance" + ], + [ + "when did i last bring my car in to have it looked at", + "last_maintenance" + ], + [ + "find the date of the last oil swap for my car", + "last_maintenance" + ], + [ + "what was the date when i last had my car inspected", + "last_maintenance" + ], + [ + "how long's it been since my car was at autozone", + "last_maintenance" + ], + [ + "what's the amount of time since having my car given a once over by a mechanic", + "last_maintenance" + ], + [ + "when did i last have my vehicle checked on", + "last_maintenance" + ], + [ + "when did i last bring my car in to get looked over", + "last_maintenance" + ], + [ + "what date did i last take my car in", + "last_maintenance" + ], + [ + "how long's it been since i had my car serviced", + "last_maintenance" + ], + [ + "when was the last time i changed my oil", + "last_maintenance" + ], + [ + "when did i last have a mechanic check out my car", + "last_maintenance" + ], + [ + "when did i last service my car with an oil change", + "last_maintenance" + ], + [ + "what was the last time i had my car at the dealer for repairs", + "last_maintenance" + ], + [ + "when did i last have my car fixed", + "last_maintenance" + ], + [ + "what day did i last have a technician check out my vehicle", + "last_maintenance" + ], + [ + "when did i last have my vehicle serviced", + "last_maintenance" + ], + [ + "my car was looked at when", + "last_maintenance" + ], + [ + "let me know when my car was last looked at", + "last_maintenance" + ], + [ + "when did my car get looked at last", + "last_maintenance" + ], + [ + "tell me when someone looked at my car last", + "last_maintenance" + ], + [ + "what date did i have my oil changed last", + "last_maintenance" + ], + [ + "what day did i change my oil", + "last_maintenance" + ], + [ + "do you remember when i last changed my oil", + "last_maintenance" + ], + [ + "was my last oil change on wednesday", + "last_maintenance" + ], + [ + "when was the last time i had an oil change", + "last_maintenance" + ], + [ + "how long ago was my car last in the shop", + "last_maintenance" + ], + [ + "when was the last time i got my oil changed", + "last_maintenance" + ], + [ + "do you have a date for the last time the car was in the shop", + "last_maintenance" + ], + [ + "what date was my car last at the mechanics", + "last_maintenance" + ], + [ + "how long has it been since my oil was changed", + "last_maintenance" + ], + [ + "how long has it been since my car was in the shop", + "last_maintenance" + ], + [ + "when did i get my last oil change", + "last_maintenance" + ], + [ + "what date was my oil last changed", + "last_maintenance" + ], + [ + "do you remember my last oil change", + "last_maintenance" + ], + [ + "when was my car in the shop last", + "last_maintenance" + ], + [ + "when did i last have car maintenance", + "last_maintenance" + ], + [ + "when was my last maintenance on my car in the shop", + "last_maintenance" + ], + [ + "when was my car last repaired", + "last_maintenance" + ], + [ + "when did my oil last get changed", + "last_maintenance" + ], + [ + "when were my tires changed", + "last_maintenance" + ], + [ + "when was my car last worked on", + "last_maintenance" + ], + [ + "i can't remember when my car last went to the shop, can you find out for me", + "last_maintenance" + ], + [ + "find out when my most recent oil change occurred", + "last_maintenance" + ], + [ + "check to see when my car was last in the shop", + "last_maintenance" + ], + [ + "when was my most recent oil change", + "last_maintenance" + ], + [ + "i need to know the date of my car's last visit to the shop please", + "last_maintenance" + ], + [ + "look up the date of my car's most recent visit to the shop", + "last_maintenance" + ], + [ + "i need to know when i last took my car in for a check up", + "last_maintenance" + ], + [ + "please tell me when the last time was that my car was in the shop", + "last_maintenance" + ], + [ + "look up the date of my last oil change", + "last_maintenance" + ], + [ + "i need you to look up the date of my car's last visit to the shop", + "last_maintenance" + ], + [ + "find out the last time i had my car checked", + "last_maintenance" + ], + [ + "do you know when my car was last looked at", + "last_maintenance" + ], + [ + "do you know when i last took my car in to the shop", + "last_maintenance" + ], + [ + "i can't remember when my car was last serviced, can you find out for me", + "last_maintenance" + ], + [ + "find out how long it has been since my car was last in the shop", + "last_maintenance" + ], + [ + "please tell me the last time i took my car to the shop", + "last_maintenance" + ], + [ + "how long has it been since my car was last looked at", + "last_maintenance" + ], + [ + "tell me the date of my last car check up", + "last_maintenance" + ], + [ + "i need to know when my oil was last changed", + "last_maintenance" + ], + [ + "dates for my car in the shop", + "last_maintenance" + ], + [ + "last time car was in shop", + "last_maintenance" + ], + [ + "last incident of my car in the shop", + "last_maintenance" + ], + [ + "when was my car in the shop", + "last_maintenance" + ], + [ + "when did my car get serviced last", + "last_maintenance" + ], + [ + "how long has it been since my car was looked at", + "last_maintenance" + ], + [ + "how long ago did my car get looked at", + "last_maintenance" + ], + [ + "what was the date of my last auto appointment", + "last_maintenance" + ], + [ + "when was my last car service date", + "last_maintenance" + ], + [ + "when did i take to car to the auto shop", + "last_maintenance" + ], + [ + "when did i have my car looked at", + "last_maintenance" + ], + [ + "when did i last get my car tuned up", + "last_maintenance" + ], + [ + "when did i go to the mechanic", + "last_maintenance" + ], + [ + "when did i take my car to the mechanic", + "last_maintenance" + ], + [ + "do you know how long its been since i had my oil changed and a tune up", + "last_maintenance" + ], + [ + "when did last go to the auto repair shop", + "last_maintenance" + ], + [ + "i need to know when was the last time i had my car checked out for a tune up", + "last_maintenance" + ], + [ + "tell me the last time i had my car checked out at sam's repair shop", + "last_maintenance" + ], + [ + "when did i take my car to paul's auto last", + "last_maintenance" + ], + [ + "when was the last time my car was in the shop", + "last_maintenance" + ], + [ + "tell me when was car in shop", + "last_maintenance" + ], + [ + "so when was car in shop", + "last_maintenance" + ], + [ + "when was the car in the shop", + "last_maintenance" + ], + [ + "you need to tell me when was car in shop", + "last_maintenance" + ], + [ + "i need to know when i last carried my car to the shop", + "last_maintenance" + ], + [ + "what's the date on which my last oil change occurred", + "last_maintenance" + ], + [ + "what is the last date of service on my car", + "last_maintenance" + ], + [ + "can you remind me of when i last had an oil change", + "last_maintenance" + ], + [ + "please find the date of my last oil change", + "last_maintenance" + ], + [ + "search and tell me when my most recent oil change happened, please", + "last_maintenance" + ], + [ + "when did i most recently have my car in the shop", + "last_maintenance" + ], + [ + "i last took my car to the shop, when", + "last_maintenance" + ], + [ + "i need to know when it was that i last took my car to have the oil changed", + "last_maintenance" + ], + [ + "how long has it been since my car was last in the shop", + "last_maintenance" + ], + [ + "check my calendar for the date that my care was last serviced", + "last_maintenance" + ], + [ + "how long has it been since my last auto maintenance", + "last_maintenance" + ], + [ + "when is today's meeting with john", + "meeting_schedule" + ], + [ + "when is my meeting with dan scheduled for", + "meeting_schedule" + ], + [ + "when is the meeting with homer scheduled for", + "meeting_schedule" + ], + [ + "do i have any meetings with stan today", + "meeting_schedule" + ], + [ + "how many meetings do i have scheduled between 10 and 3", + "meeting_schedule" + ], + [ + "on what day is my meeting with dr lee", + "meeting_schedule" + ], + [ + "tell me how many meetings with pete i have for today", + "meeting_schedule" + ], + [ + "about how many meetings am i attending between 12 and 3 today", + "meeting_schedule" + ], + [ + "how many total meetings will i have between 2 and 5", + "meeting_schedule" + ], + [ + "can you tell me what time i am meeting with sarah today", + "meeting_schedule" + ], + [ + "when is that meeting with kara", + "meeting_schedule" + ], + [ + "do i have meetings from 1 to 4 today", + "meeting_schedule" + ], + [ + "do i have many meetings today between 2 and 4", + "meeting_schedule" + ], + [ + "what time is my meeting with steve", + "meeting_schedule" + ], + [ + "for today only, how many meetings are with jake", + "meeting_schedule" + ], + [ + "do i have any meetings with mark today", + "meeting_schedule" + ], + [ + "when is my meeting with bob", + "meeting_schedule" + ], + [ + "tell me when my meeting is scheduled with roger", + "meeting_schedule" + ], + [ + "when am i gonna be meeting roger", + "meeting_schedule" + ], + [ + "do i have any meetings today between 5 and 6", + "meeting_schedule" + ], + [ + "do i have any meetings today between 2 and 3", + "meeting_schedule" + ], + [ + "do i have any meetings with ben today", + "meeting_schedule" + ], + [ + "do i have any meetings with roger today", + "meeting_schedule" + ], + [ + "do i have any meetings today between 8 and 9", + "meeting_schedule" + ], + [ + "when is my meeting with roger", + "meeting_schedule" + ], + [ + "i wanna know when my meeting is with dan", + "meeting_schedule" + ], + [ + "do i have any meetings with michael today", + "meeting_schedule" + ], + [ + "do i have any meetings with dave today", + "meeting_schedule" + ], + [ + "do i have any meetings today between 4 and 5", + "meeting_schedule" + ], + [ + "do i have any meetings today between 6 and 7", + "meeting_schedule" + ], + [ + "tell me the meeting schedule for the day", + "meeting_schedule" + ], + [ + "what is the meeting schedule today", + "meeting_schedule" + ], + [ + "tell me the meeting schdule please", + "meeting_schedule" + ], + [ + "what is my meeting schedule today", + "meeting_schedule" + ], + [ + "what is my meeting schedule like for the day", + "meeting_schedule" + ], + [ + "share my meeting schedule with me", + "meeting_schedule" + ], + [ + "do i have meetings scheduled today", + "meeting_schedule" + ], + [ + "what kind of meetings do i have today", + "meeting_schedule" + ], + [ + "what meetings do i have scheduled today", + "meeting_schedule" + ], + [ + "go over my meeting schedule with me please", + "meeting_schedule" + ], + [ + "do i have to be at any meetings today", + "meeting_schedule" + ], + [ + "any meetings on the schedule today", + "meeting_schedule" + ], + [ + "what meetings are on my schedule today", + "meeting_schedule" + ], + [ + "meetings today", + "meeting_schedule" + ], + [ + "what meetings are scheduled for today", + "meeting_schedule" + ], + [ + "does today's schedule include any meetings", + "meeting_schedule" + ], + [ + "are there any meetings on the calendar for today", + "meeting_schedule" + ], + [ + "do i have any meeting to go to today", + "meeting_schedule" + ], + [ + "what meetings do i have today", + "meeting_schedule" + ], + [ + "what meetings are on my calendar", + "meeting_schedule" + ], + [ + "when do i have meetings today", + "meeting_schedule" + ], + [ + "what's on my meeting schedule today", + "meeting_schedule" + ], + [ + "what times are my meetings", + "meeting_schedule" + ], + [ + "what are my meetings today", + "meeting_schedule" + ], + [ + "which meetings do i have today", + "meeting_schedule" + ], + [ + "are there any meetings i have today", + "meeting_schedule" + ], + [ + "bring up any mettings for today", + "meeting_schedule" + ], + [ + "when are my meetings today between noon and one", + "meeting_schedule" + ], + [ + "am i scheduled for any meetings between noon and one", + "meeting_schedule" + ], + [ + "how many meetings do i have today between noon and one", + "meeting_schedule" + ], + [ + "what meetings do i have today between noon and one", + "meeting_schedule" + ], + [ + "are there meetings schedules today between noon and one", + "meeting_schedule" + ], + [ + "do i have any meetings planned for today", + "meeting_schedule" + ], + [ + "are any meetings scheduled for today", + "meeting_schedule" + ], + [ + "do i have any meetings scheduled for today", + "meeting_schedule" + ], + [ + "are any meetings booked for today", + "meeting_schedule" + ], + [ + "what time i have to meet mr accountant", + "meeting_schedule" + ], + [ + "is mr ceo waiting me now", + "meeting_schedule" + ], + [ + "do i have to meet the dev squad to day", + "meeting_schedule" + ], + [ + "give me a run down of my meeting schedules for the day", + "meeting_schedule" + ], + [ + "let me know every meeting i have scheduled today", + "meeting_schedule" + ], + [ + "do you know if i have any meetings set up with travis today", + "meeting_schedule" + ], + [ + "do you see any meetings with john on my schedule today", + "meeting_schedule" + ], + [ + "check to see if i have any meetings with peter today", + "meeting_schedule" + ], + [ + "am i scheduled to meet with heather today", + "meeting_schedule" + ], + [ + "what meetings do i have on my agenda today", + "meeting_schedule" + ], + [ + "have i got any meetings today with sara", + "meeting_schedule" + ], + [ + "tell me what my day looks like today in terms of meetings", + "meeting_schedule" + ], + [ + "what scheduled meetings do i have today", + "meeting_schedule" + ], + [ + "are there any meetings on my calendar today", + "meeting_schedule" + ], + [ + "am i scheduled for any gatherings today", + "meeting_schedule" + ], + [ + "is the gang getting together this afternoon", + "meeting_schedule" + ], + [ + "do i have any meetings coming up today", + "meeting_schedule" + ], + [ + "please list my meetings for today", + "meeting_schedule" + ], + [ + "i need to know if i have any meetings scheduled for today", + "meeting_schedule" + ], + [ + "please list my meetings for today from 8:00 am to 2:00 pm", + "meeting_schedule" + ], + [ + "did i schedule any meetings for today", + "meeting_schedule" + ], + [ + "tell me my scheduled meetings for today only, please", + "meeting_schedule" + ], + [ + "let me hear all meetings for today", + "meeting_schedule" + ], + [ + "do i have any meetings scheduled between 3 and 5 pm today", + "meeting_schedule" + ], + [ + "what meetings are on my schedule today between 1:00 pm and 4:00 pm", + "meeting_schedule" + ], + [ + "are there any meetings for today on my calendar", + "meeting_schedule" + ], + [ + "tell me today's scheduled conferences from noon on wards", + "meeting_schedule" + ], + [ + "is a meeting with ruth on my schedule today", + "meeting_schedule" + ], + [ + "what do i have going on between 9 and 10", + "meeting_schedule" + ], + [ + "do i meet with joan today", + "meeting_schedule" + ], + [ + "when's my meeting with richard", + "meeting_schedule" + ], + [ + "what meetings do i have today from 3 to 4", + "meeting_schedule" + ], + [ + "when is my meeting with john", + "meeting_schedule" + ], + [ + "what is on my schedule between 10:00 am and 11:00 am", + "meeting_schedule" + ], + [ + "what do you put in chicken noodle casserole", + "ingredients_list" + ], + [ + "what goes into chicken noodle casserole", + "ingredients_list" + ], + [ + "what do i need to make chicken noodle casserole", + "ingredients_list" + ], + [ + "how do you make chicken noodle casserole", + "ingredients_list" + ], + [ + "chicken noodle casserole is made from what", + "ingredients_list" + ], + [ + "tell me what ingredients i will need to make this meal", + "ingredients_list" + ], + [ + "what are the ingredients of spaghetti", + "ingredients_list" + ], + [ + "what ingredients are present in marshmallows", + "ingredients_list" + ], + [ + "tell me the ingredients in pizza", + "ingredients_list" + ], + [ + "what ingredients are found in hunan chicken", + "ingredients_list" + ], + [ + "i need to know the ingredients in a hamburger", + "ingredients_list" + ], + [ + "show me the ingredients that i need for ceviche", + "ingredients_list" + ], + [ + "do you have a list of ingredients that i'll need for blondies", + "ingredients_list" + ], + [ + "give me a list of ingredients needed for pizza dough", + "ingredients_list" + ], + [ + "tell me what ingredients i need for carne asada", + "ingredients_list" + ], + [ + "what ingredients are required for chicken noodle soup", + "ingredients_list" + ], + [ + "what ingredients are in salsa", + "ingredients_list" + ], + [ + "what ingredients are in cheese cake", + "ingredients_list" + ], + [ + "what ingredients are in sugar cookies", + "ingredients_list" + ], + [ + "what ingredients are in spinach dip", + "ingredients_list" + ], + [ + "what ingredients are in coffee cakes", + "ingredients_list" + ], + [ + "what ingredients do i need to make egg salad", + "ingredients_list" + ], + [ + "what would i need if i wanted to make chicken marsala", + "ingredients_list" + ], + [ + "what ingredients are in antipasto salad", + "ingredients_list" + ], + [ + "what do i need to make chicken salad", + "ingredients_list" + ], + [ + "what kind of stuff is in potato salad", + "ingredients_list" + ], + [ + "ingredients needed to make a mexican lasagna", + "ingredients_list" + ], + [ + "what are all of the ingredients for brownies from scratch", + "ingredients_list" + ], + [ + "how can i make my own doughnuts/what ingredients", + "ingredients_list" + ], + [ + "what stuff would i need to make tortellini", + "ingredients_list" + ], + [ + "what do i need to make a cake", + "ingredients_list" + ], + [ + "what all is in gumbo", + "ingredients_list" + ], + [ + "what ingredients do i need for gumbo", + "ingredients_list" + ], + [ + "which ingredients does gumbo have", + "ingredients_list" + ], + [ + "what are the ingredients in gumbo", + "ingredients_list" + ], + [ + "what is gumbo made of", + "ingredients_list" + ], + [ + "what ingredients do i need to bake a cake", + "ingredients_list" + ], + [ + "i want to cook a quick breakfast what ingredients do i need", + "ingredients_list" + ], + [ + "what ingredients are needed for shrimp cocktail", + "ingredients_list" + ], + [ + "i\u2019m making spaghetti what ingredients do i need", + "ingredients_list" + ], + [ + "i want to make a meat stew what ingredients do i need", + "ingredients_list" + ], + [ + "what goes in broccoli cheddar soup", + "ingredients_list" + ], + [ + "show me the recipe for broccoli cheddar soup", + "ingredients_list" + ], + [ + "please list ingredients for broccoli cheddar soup", + "ingredients_list" + ], + [ + "what ingredients do i need to make broccoli cheddar soup", + "ingredients_list" + ], + [ + "i am making broccoli cheddar soup, what ingredients do i need", + "ingredients_list" + ], + [ + "what ingredients do i need for philly cheesesteaks", + "ingredients_list" + ], + [ + "what do i need to cook chicken soup", + "ingredients_list" + ], + [ + "what do i need to get to make lasagne", + "ingredients_list" + ], + [ + "what should i buy to make burritos tonight", + "ingredients_list" + ], + [ + "what ingredients do i need for tacos", + "ingredients_list" + ], + [ + "what are the ingredients to make shepherd's pie", + "ingredients_list" + ], + [ + "what do i need to buy to make a spaghetti", + "ingredients_list" + ], + [ + "what do i need to make spaghetti", + "ingredients_list" + ], + [ + "what is the ingredient list for an omelette", + "ingredients_list" + ], + [ + "what do i need if i want to make lasagna", + "ingredients_list" + ], + [ + "what do i need to make a cajun chili", + "ingredients_list" + ], + [ + "what goes into a strawberry smoothie", + "ingredients_list" + ], + [ + "what should i grab to make a german chocolate cake", + "ingredients_list" + ], + [ + "what do you put in chili", + "ingredients_list" + ], + [ + "what do you need to make pancakes", + "ingredients_list" + ], + [ + "what stuff do you dump in an omelette", + "ingredients_list" + ], + [ + "what do you use when you make a chef's salad", + "ingredients_list" + ], + [ + "what do you purchase to put in a shepherd's pie", + "ingredients_list" + ], + [ + "what do you put in a tibetan omelette", + "ingredients_list" + ], + [ + "what do you mix to make a chocolate cake", + "ingredients_list" + ], + [ + "what does subway use to make a cold cut combo", + "ingredients_list" + ], + [ + "what do you need to make general tsao's chicken", + "ingredients_list" + ], + [ + "what do you put in avocado dip", + "ingredients_list" + ], + [ + "what ingredients are in sushi", + "ingredients_list" + ], + [ + "what does it take to make buttermilk pancakes", + "ingredients_list" + ], + [ + "what do i need to buy to make pierogi", + "ingredients_list" + ], + [ + "what do i need to get to put into homemade tortillas", + "ingredients_list" + ], + [ + "what food items do you put in english breakfast", + "ingredients_list" + ], + [ + "what foods do i buy to put into a korean dinner", + "ingredients_list" + ], + [ + "what do you need to make dandelion wine properly", + "ingredients_list" + ], + [ + "what ingredients are in cake", + "ingredients_list" + ], + [ + "what ingredients are in tortillas", + "ingredients_list" + ], + [ + "what ingredients are in mashed potatoes", + "ingredients_list" + ], + [ + "what ingredients are in dough", + "ingredients_list" + ], + [ + "what ingredients are in chips", + "ingredients_list" + ], + [ + "the ingredients in pizza are what", + "ingredients_list" + ], + [ + "list the ingredients in pizza", + "ingredients_list" + ], + [ + "which ingredients are in pizza", + "ingredients_list" + ], + [ + "pizza has which ingredients", + "ingredients_list" + ], + [ + "the ingredients in pizza are which ones", + "ingredients_list" + ], + [ + "what ingredients do i need to make salmon salad", + "ingredients_list" + ], + [ + "what ingredients go in spaghetti", + "ingredients_list" + ], + [ + "what ingredients do i need to make pizza", + "ingredients_list" + ], + [ + "what ingredients do i need to make pancakes", + "ingredients_list" + ], + [ + "what ingredients do i need to make potato skins", + "ingredients_list" + ], + [ + "what ingredients go in mashed potato", + "ingredients_list" + ], + [ + "what ingredients go in potato skins", + "ingredients_list" + ], + [ + "what ingredients do i need to make spaghetti", + "ingredients_list" + ], + [ + "what ingredients go in a milky way", + "ingredients_list" + ], + [ + "what ingredients go in pizza", + "ingredients_list" + ], + [ + "what ingredients are necessary for a steak", + "ingredients_list" + ], + [ + "in making an omelette, what ingredients do i need", + "ingredients_list" + ], + [ + "in terms of making scrambled eggs, what ingredients do i need", + "ingredients_list" + ], + [ + "what ingredients do i need for chicken breast", + "ingredients_list" + ], + [ + "i'm afraid this charge on my account is fraud", + "report_fraud" + ], + [ + "i think there's fraud on my account", + "report_fraud" + ], + [ + "i think i have fraud on my account from walmart", + "report_fraud" + ], + [ + "there's been some fraudulent activity on my card", + "report_fraud" + ], + [ + "i'm pretty sure this charge from sam's club is fraudulent", + "report_fraud" + ], + [ + "i'm pretty sure this charge is fraudulent", + "report_fraud" + ], + [ + "i need to report some fraudulent card activity", + "report_fraud" + ], + [ + "there are some questionable charges on my card", + "report_fraud" + ], + [ + "i think there's a fraudulent transaction on my account", + "report_fraud" + ], + [ + "there's a shady charge from comcast on my account", + "report_fraud" + ], + [ + "my account has a fraudulent transaction i think", + "report_fraud" + ], + [ + "can you help me with some fraudulent charges on my card", + "report_fraud" + ], + [ + "i think i've been the victim of fraud", + "report_fraud" + ], + [ + "i'd like to report a fraudulent charge from people's natural gas", + "report_fraud" + ], + [ + "this costco charge looks fraudulent", + "report_fraud" + ], + [ + "there's fraudulent transaction going on", + "report_fraud" + ], + [ + "i may have a fraudulent transaction", + "report_fraud" + ], + [ + "i suspect some suspicious activity", + "report_fraud" + ], + [ + "there seems to be fraudulent activity", + "report_fraud" + ], + [ + "i suspect fraudulent transaction", + "report_fraud" + ], + [ + "i need to report fraudulent activity on my card", + "report_fraud" + ], + [ + "i'm reporting fraudelent activity on my card", + "report_fraud" + ], + [ + "there has been fraudulent activity on my card and i need to report it", + "report_fraud" + ], + [ + "i need to make a report due to fraudulent activity on my card", + "report_fraud" + ], + [ + "due to fraudulent activity on my card i need to make a report", + "report_fraud" + ], + [ + "how do i report a fraudulent charge on my visa", + "report_fraud" + ], + [ + "how do i report fraud on my discover card", + "report_fraud" + ], + [ + "how do i let visa know about a charge i didn't make", + "report_fraud" + ], + [ + "help me tell visa about fraud on my account", + "report_fraud" + ], + [ + "how do i tell mastercard about a fraudulent charge", + "report_fraud" + ], + [ + "i have activity on my bank of america card i don't recognize", + "report_fraud" + ], + [ + "i think a thief used my card", + "report_fraud" + ], + [ + "i have suspicious charges on my discovery card", + "report_fraud" + ], + [ + "i believe there's fraud on my card", + "report_fraud" + ], + [ + "i need to report fraudulent activity on my mastercard", + "report_fraud" + ], + [ + "i think someone's using my visa card without my permission", + "report_fraud" + ], + [ + "i have transactions on my card that aren't mine", + "report_fraud" + ], + [ + "my card has purchases i don't recognize", + "report_fraud" + ], + [ + "someone misused my card and put fraudulent transactions on it", + "report_fraud" + ], + [ + "i have charges on my amex card i didn't make", + "report_fraud" + ], + [ + "\"disable my card account and contact company to report fraudulent activty", + "report_fraud" + ], + [ + "\"i need to report fraudulent activity to my card company", + "report_fraud" + ], + [ + "\"please contact my credit card company to report fraudulent activity on", + "report_fraud" + ], + [ + "it looks like someone made an unauthorized amazon purchase on my account", + "report_fraud" + ], + [ + "i think my chase account has been compromised and fraud committed", + "report_fraud" + ], + [ + "i may have had fraud committed on my account", + "report_fraud" + ], + [ + "i'm thinking someone may have used my card in a fraudulent way", + "report_fraud" + ], + [ + "there is a fraudulent charge for paypal on my bank account", + "report_fraud" + ], + [ + "i think the charge for uber on my account is fraudulent", + "report_fraud" + ], + [ + "looks like someone made an unauthorized charge to nike on my account", + "report_fraud" + ], + [ + "i think someone stole my card and used it", + "report_fraud" + ], + [ + "i think someone made an illegal charge to my card", + "report_fraud" + ], + [ + "my account is showing a charge to venmo that i did not make", + "report_fraud" + ], + [ + "i gotta report fraudulent activity on my credit card", + "report_fraud" + ], + [ + "so i made a fraudulent transaction", + "report_fraud" + ], + [ + "i have a fraudulent transaction from wal mart on my account right now", + "report_fraud" + ], + [ + "turns out i made a fraudulent transaction", + "report_fraud" + ], + [ + "report fraudulent activity on my debit card", + "report_fraud" + ], + [ + "i made a fraudulent transaction", + "report_fraud" + ], + [ + "i have a fraudulent transaction from wal mart showing on my account", + "report_fraud" + ], + [ + "i think i made a fraudulent transaction", + "report_fraud" + ], + [ + "i have a fraudulent transaction from wal mart on my account", + "report_fraud" + ], + [ + "i must report fraudulent activity on my debit", + "report_fraud" + ], + [ + "i have a fraudulent transaction from red robin on my account", + "report_fraud" + ], + [ + "report fraudulent activity on my credit card now", + "report_fraud" + ], + [ + "i have a fraudulent transaction from fry's on my account", + "report_fraud" + ], + [ + "i got to report fraudulent activity on my credit card", + "report_fraud" + ], + [ + "i'm afraid there is a false transaction on my account", + "report_fraud" + ], + [ + "i have detected fraudulent activity on my account", + "report_fraud" + ], + [ + "i see a fraudulent transaction from netflix on my account", + "report_fraud" + ], + [ + "i spotted a fraudulent transaction from microsoft on my account", + "report_fraud" + ], + [ + "i see a suspicious transaction in my account history", + "report_fraud" + ], + [ + "it seems someone conducted a fraudulent transaction on my account", + "report_fraud" + ], + [ + "i need help investigating a suspicious transaction", + "report_fraud" + ], + [ + "i need to report a fraudulent transaction from postmates on my account", + "report_fraud" + ], + [ + "help me figure out where this fraudulent transaction from google came from on my account", + "report_fraud" + ], + [ + "can you help me deal with this fraudulent transaction from verizon on my account", + "report_fraud" + ], + [ + "i believe there are fraudulent charges on my card how can i report them", + "report_fraud" + ], + [ + "i didn't make these purchases on my card; these are fraudulent charges i need to report them", + "report_fraud" + ], + [ + "how can i report fraudulent charges on my card", + "report_fraud" + ], + [ + "it seems that there's fraudulent activity on my card i'd like to file a report", + "report_fraud" + ], + [ + "i want to report fraudulent activity on my card", + "report_fraud" + ], + [ + "send information about suspicious credit card activity", + "report_fraud" + ], + [ + "please report information about activity on my credit card", + "report_fraud" + ], + [ + "send fraudulent activity information", + "report_fraud" + ], + [ + "please file a fraud report", + "report_fraud" + ], + [ + "report fraud on my card", + "report_fraud" + ], + [ + "i want to report fraudulent activity on my visa card, please", + "report_fraud" + ], + [ + "i need to report fraudulent activity on my visa card, please", + "report_fraud" + ], + [ + "i want to report fraudulent activity on my amex card", + "report_fraud" + ], + [ + "i want to report fraudulent activity on my visa card", + "report_fraud" + ], + [ + "i want to report fraudulent activity on my amex card, please", + "report_fraud" + ], + [ + "i believe that there is some fraudulent activity on my capital one account", + "report_fraud" + ], + [ + "there is an unauthorized transaction on my bank of america checking", + "report_fraud" + ], + [ + "i see a purchase on my chase checking that i did not make", + "report_fraud" + ], + [ + "what steps do i take if there is a transaction that i do not recognize on my navy federal credit union account", + "report_fraud" + ], + [ + "i need to talk to someone about a transaction that was not made by me on my chase account", + "report_fraud" + ], + [ + "can you report credit card fraud for me", + "report_fraud" + ], + [ + "discover card reporting fraud", + "report_fraud" + ], + [ + "i need to know how to report fraud on my discover card", + "report_fraud" + ], + [ + "how many centimeters are in an inch", + "measurement_conversion" + ], + [ + "whats 5 feet in inches", + "measurement_conversion" + ], + [ + "what's 32 degrees fahrenheit in celsisus", + "measurement_conversion" + ], + [ + "what amount of millimeters are in 50 kilometers", + "measurement_conversion" + ], + [ + "how many crows are in 10 murders", + "measurement_conversion" + ], + [ + "what amount of miles are in a hundred kilometers", + "measurement_conversion" + ], + [ + "how many weeks are in 3 months", + "measurement_conversion" + ], + [ + "how many meters are in 50 feet", + "measurement_conversion" + ], + [ + "what's 8 ounces in cups", + "measurement_conversion" + ], + [ + "how many kilos are in 150 pounds", + "measurement_conversion" + ], + [ + "how do you convert pounds to grams", + "measurement_conversion" + ], + [ + "how many kilos are in 10 pounds", + "measurement_conversion" + ], + [ + "what is 15 ounces in grams, please", + "measurement_conversion" + ], + [ + "what is 20 ounces in grams, please", + "measurement_conversion" + ], + [ + "what is 10 ounces in grams, please", + "measurement_conversion" + ], + [ + "how do you convert ounces to pounds", + "measurement_conversion" + ], + [ + "how many kilos are in 25 pounds", + "measurement_conversion" + ], + [ + "what is 10 ounces in grams", + "measurement_conversion" + ], + [ + "how many kilos are in 20 pounds", + "measurement_conversion" + ], + [ + "how do you convert ounces to grams", + "measurement_conversion" + ], + [ + "how many kilos are in 100 pounds", + "measurement_conversion" + ], + [ + "how do you convert pounds to kilos", + "measurement_conversion" + ], + [ + "what is 15 ounces in grams", + "measurement_conversion" + ], + [ + "how do you convert ounces to kilos", + "measurement_conversion" + ], + [ + "how many inches and centimeters would i need if i had 10 feet of something", + "measurement_conversion" + ], + [ + "what's 10 inches in centimeters and millimeters", + "measurement_conversion" + ], + [ + "how many tablespoons and teaspoons is one cup", + "measurement_conversion" + ], + [ + "how much is 10kg in pounds and ounces", + "measurement_conversion" + ], + [ + "how many liters are in 500 gallons", + "measurement_conversion" + ], + [ + "what's 12 feet in meters", + "measurement_conversion" + ], + [ + "what is 22 meters in inches", + "measurement_conversion" + ], + [ + "12 feet is equal to how many inches", + "measurement_conversion" + ], + [ + "how many pints are in 22 gallons", + "measurement_conversion" + ], + [ + "how do you convert pounds to kilograms", + "measurement_conversion" + ], + [ + "how do you convert milliliters to ounces", + "measurement_conversion" + ], + [ + "how do you convert millimeters to decimeters", + "measurement_conversion" + ], + [ + "how do you convert inches to centimeters", + "measurement_conversion" + ], + [ + "how do you convert miles to kilometers", + "measurement_conversion" + ], + [ + "what would four inches be in centimeters", + "measurement_conversion" + ], + [ + "if i have four inches, how many centimeters is that", + "measurement_conversion" + ], + [ + "how many centimeters are in 4 inches", + "measurement_conversion" + ], + [ + "how do i convert four inches into centimeters", + "measurement_conversion" + ], + [ + "what are four inches in centimeters", + "measurement_conversion" + ], + [ + "tell me the conversion between tablespoons and cups", + "measurement_conversion" + ], + [ + "i need to know the conversion between tablespoons and teaspoons", + "measurement_conversion" + ], + [ + "what would be the conversion between tablespoons and teaspoons", + "measurement_conversion" + ], + [ + "what is the conversion between tablespoons and cups", + "measurement_conversion" + ], + [ + "help me to understand the conversion between tablespoons and teaspoons", + "measurement_conversion" + ], + [ + "tell me how to convert grams into ounces", + "measurement_conversion" + ], + [ + "i need to know how to convert liters into pints", + "measurement_conversion" + ], + [ + "help me convert feet into miles", + "measurement_conversion" + ], + [ + "how do i change pounds into kilograms", + "measurement_conversion" + ], + [ + "what is the proper way to convert centimeters into inches", + "measurement_conversion" + ], + [ + "how do i convert tablespoons to cups", + "measurement_conversion" + ], + [ + "how many ounces are in a cup", + "measurement_conversion" + ], + [ + "how many teaspoons are in a half a cup", + "measurement_conversion" + ], + [ + "how many tablespoons are in three cups", + "measurement_conversion" + ], + [ + "how many pints are in four cups", + "measurement_conversion" + ], + [ + "how many quarts are in a gallon", + "measurement_conversion" + ], + [ + "i wanna know how many teaspoons are in a tablespoon", + "measurement_conversion" + ], + [ + "how many cups make a gallon", + "measurement_conversion" + ], + [ + "how many tablespoons are in a cup", + "measurement_conversion" + ], + [ + "what is the conversion for pints to quarts", + "measurement_conversion" + ], + [ + "tell me what ten pounds in kilos is", + "measurement_conversion" + ], + [ + "what would five pounds be in kilos", + "measurement_conversion" + ], + [ + "i need to know how many cups are in a two gallons", + "measurement_conversion" + ], + [ + "tell me how many teaspoons are in two cups", + "measurement_conversion" + ], + [ + "how many miles is five kilometers", + "measurement_conversion" + ], + [ + "please convert 2 inches into meters for me", + "measurement_conversion" + ], + [ + "how many meters are in 2 inches", + "measurement_conversion" + ], + [ + "what's the conversion from inches to centimeters", + "measurement_conversion" + ], + [ + "can you convert 2 inches into meters", + "measurement_conversion" + ], + [ + "how many centimeters are one inch", + "measurement_conversion" + ], + [ + "how do i convert inches and centimeters", + "measurement_conversion" + ], + [ + "what is 2 inches in meters", + "measurement_conversion" + ], + [ + "convert 2 inches to meters", + "measurement_conversion" + ], + [ + "convert inches to centimeters", + "measurement_conversion" + ], + [ + "how many cups in a quart", + "measurement_conversion" + ], + [ + "is there an easy way to change feet into inches", + "measurement_conversion" + ], + [ + "how many cups are in 4 quarts", + "measurement_conversion" + ], + [ + "how many feet are in 50 yards", + "measurement_conversion" + ], + [ + "how many ounces in a gallon", + "measurement_conversion" + ], + [ + "can you convert millimeters to centimeters", + "measurement_conversion" + ], + [ + "how many teaspoons in a cup", + "measurement_conversion" + ], + [ + "convert inch to cm", + "measurement_conversion" + ], + [ + "how many inches are in 5 feet", + "measurement_conversion" + ], + [ + "convert cm to inch", + "measurement_conversion" + ], + [ + "how can i change centimeters into inches", + "measurement_conversion" + ], + [ + "how can i change inches into meters", + "measurement_conversion" + ], + [ + "how many centimeters are in 5 yards", + "measurement_conversion" + ], + [ + "how do you convert feet to inches", + "measurement_conversion" + ], + [ + "how many meters are in 10 millimeters", + "measurement_conversion" + ], + [ + "how can you convert miles to kilometers", + "measurement_conversion" + ], + [ + "how would i go about converting inches to yards", + "measurement_conversion" + ], + [ + "how would you convert yards to inches", + "measurement_conversion" + ], + [ + "how are yards converted to inches", + "measurement_conversion" + ], + [ + "how do i change inches to centimeters", + "measurement_conversion" + ], + [ + "what is inches in centimeters", + "measurement_conversion" + ], + [ + "i need to know the difference between inches and centimeters", + "measurement_conversion" + ], + [ + "what is the conversion of inches to centimeters", + "measurement_conversion" + ], + [ + "can you please turn on my furnace", + "smart_home" + ], + [ + "oven should be set to 350 now", + "smart_home" + ], + [ + "what temp is the ac at", + "smart_home" + ], + [ + "tell me who is by the garage door", + "smart_home" + ], + [ + "set my oven to 350 please", + "smart_home" + ], + [ + "make sure all doors are locked", + "smart_home" + ], + [ + "make the lights dimmer please", + "smart_home" + ], + [ + "please, will you turn on my tv", + "smart_home" + ], + [ + "turn lights on in my bedroom", + "smart_home" + ], + [ + "turn the fan to the on position", + "smart_home" + ], + [ + "start my vehicle", + "smart_home" + ], + [ + "please get my car started before i go out to it", + "smart_home" + ], + [ + "need the tv on please", + "smart_home" + ], + [ + "lock all the doors", + "smart_home" + ], + [ + "can you turn on the lights in the den", + "smart_home" + ], + [ + "turn the furnace on please", + "smart_home" + ], + [ + "check who's at the door", + "smart_home" + ], + [ + "please set the temperature to 70", + "smart_home" + ], + [ + "turn tv on please", + "smart_home" + ], + [ + "make the temperature 78 in here", + "smart_home" + ], + [ + "turn lights on in the garage", + "smart_home" + ], + [ + "what is my ac set to right now", + "smart_home" + ], + [ + "activate my furnace please", + "smart_home" + ], + [ + "can you set the temp to 69", + "smart_home" + ], + [ + "set my temp to 75", + "smart_home" + ], + [ + "can you see if i have my doors locked", + "smart_home" + ], + [ + "make sure the oven is set to 350 please", + "smart_home" + ], + [ + "the ac is set to what right now", + "smart_home" + ], + [ + "can you turn on the lights in the backyard", + "smart_home" + ], + [ + "can you turn on the tv", + "smart_home" + ], + [ + "can you turn the oven to 350", + "smart_home" + ], + [ + "who is at my front door", + "smart_home" + ], + [ + "can you turn my lights down just a bit", + "smart_home" + ], + [ + "will you please get my furnace turned on", + "smart_home" + ], + [ + "can you please dim the lights", + "smart_home" + ], + [ + "set my oven to 350 for me right now", + "smart_home" + ], + [ + "turn lights on in my master bathroom", + "smart_home" + ], + [ + "who is knocking", + "smart_home" + ], + [ + "turn on the fan", + "smart_home" + ], + [ + "can you get my car started", + "smart_home" + ], + [ + "are my doors locked right now", + "smart_home" + ], + [ + "can you get the fan going in here", + "smart_home" + ], + [ + "please turn my fan on", + "smart_home" + ], + [ + "warm up my car for me", + "smart_home" + ], + [ + "please make sure the temperature is set to 68", + "smart_home" + ], + [ + "are my doors in the locked position right now", + "smart_home" + ], + [ + "turn down the lights a little please", + "smart_home" + ], + [ + "what's the persons name at my door", + "smart_home" + ], + [ + "can you lock all the doors in the house", + "smart_home" + ], + [ + "i need some air; get the fan going", + "smart_home" + ], + [ + "what's the ac set to", + "smart_home" + ], + [ + "can you tell me what the ac is on", + "smart_home" + ], + [ + "lock every door on the property", + "smart_home" + ], + [ + "turn the tv to on right now", + "smart_home" + ], + [ + "please lock every door", + "smart_home" + ], + [ + "did i lock the doors", + "smart_home" + ], + [ + "dim the main lights please", + "smart_home" + ], + [ + "i need my furnace turned on", + "smart_home" + ], + [ + "put the garage lights on", + "smart_home" + ], + [ + "on the lounge lights turn", + "smart_home" + ], + [ + "can put fan on", + "smart_home" + ], + [ + "turn on the living room lights", + "smart_home" + ], + [ + "put fan on", + "smart_home" + ], + [ + "put on lights", + "smart_home" + ], + [ + "on turn tv", + "smart_home" + ], + [ + "on the fan", + "smart_home" + ], + [ + "on the tv", + "smart_home" + ], + [ + "switch fan", + "smart_home" + ], + [ + "light the bedroom lights", + "smart_home" + ], + [ + "switch tv", + "smart_home" + ], + [ + "tv on turn", + "smart_home" + ], + [ + "please start my car", + "smart_home" + ], + [ + "what is the temperature setting of the ac", + "smart_home" + ], + [ + "set temperature to 75", + "smart_home" + ], + [ + "can you look who is at the door", + "smart_home" + ], + [ + "what is the temperature the ac display is showing", + "smart_home" + ], + [ + "has anyone locked the door", + "smart_home" + ], + [ + "check to see who is at the doof", + "smart_home" + ], + [ + "what is the ac temperature", + "smart_home" + ], + [ + "please lock the doors", + "smart_home" + ], + [ + "can you please help me start the car", + "smart_home" + ], + [ + "turn the fan on please", + "smart_home" + ], + [ + "i would appreciate it if you help me turn the car on", + "smart_home" + ], + [ + "did anyone securely lock the door", + "smart_home" + ], + [ + "please set the temperature to 80", + "smart_home" + ], + [ + "turn the fan on", + "smart_home" + ], + [ + "put the lights on low", + "smart_home" + ], + [ + "can you please start my car", + "smart_home" + ], + [ + "what is the temperature on the ac", + "smart_home" + ], + [ + "can you check who is at the door", + "smart_home" + ], + [ + "set the temperaure to 71", + "smart_home" + ], + [ + "turn the lights down", + "smart_home" + ], + [ + "please turn the fan on", + "smart_home" + ], + [ + "can you please turn the fan on", + "smart_home" + ], + [ + "i want you to turn the fans on", + "smart_home" + ], + [ + "what temperature is the ac set at", + "smart_home" + ], + [ + "remember to lock the doors", + "smart_home" + ], + [ + "who is at the door", + "smart_home" + ], + [ + "please check the door to see who is there", + "smart_home" + ], + [ + "set the temperature to 78", + "smart_home" + ], + [ + "i need a bed in brownsburg near walmart from apil 4th until the 5th", + "book_hotel" + ], + [ + "i need a room in indianapolis near the track from may 2nd through the 5th", + "book_hotel" + ], + [ + "i need lodging in lizton near the ice cream parlor from may 3rd until the 8th", + "book_hotel" + ], + [ + "need a place to crash in elizabeth near the refinery from june 4th until the 9th", + "book_hotel" + ], + [ + "i need a place to stay in newark near a bodega from may 2nd through the 4th", + "book_hotel" + ], + [ + "i want to book a hotel room for 10 people from monday to tuesday in manhattan", + "book_hotel" + ], + [ + "is there a room big enough for 10 people from monday to tuesday in manhattan", + "book_hotel" + ], + [ + "is it possible to book 10 people from monday to tuesday in manhattan", + "book_hotel" + ], + [ + "i would like to reserve a hotel room that accomodates 10 people from monday to tuesday in manhattan", + "book_hotel" + ], + [ + "i'm inquiring about the availability of a room that fits 10 people from monday to tuesday in manhattan", + "book_hotel" + ], + [ + "book me a hotel in st louis near the arch from march 2nd to 5th", + "book_hotel" + ], + [ + "i need a room in london for 2 people from march 1st to 3rd", + "book_hotel" + ], + [ + "get me a hotel room for 3 people from march 12th to 14th in chicago", + "book_hotel" + ], + [ + "book me a hotel in new york near the empire state building from marc 2nd to 4th", + "book_hotel" + ], + [ + "book me a hotel in chicago near the water tower shopping from april 2nd to 4th", + "book_hotel" + ], + [ + "get me a hotel room for 4 people from march 1st to 3rd in seattle", + "book_hotel" + ], + [ + "in paris, get me a hotel room for 4 people from march 1st to 3rd", + "book_hotel" + ], + [ + "can you find me a hotel for 2 people on april 1st to 4th in rome", + "book_hotel" + ], + [ + "can you book me a hotel in los angeles near commerce casino from april 1st to the 5th", + "book_hotel" + ], + [ + "book me a hotel in seattle near the space needle from march 3rd to 5th", + "book_hotel" + ], + [ + "can you book me a room in new york city from april 2 through april 8", + "book_hotel" + ], + [ + "are there any openings in new york city from april 2 through april 8", + "book_hotel" + ], + [ + "are there any vacancies in new york city from april 2 through april 8", + "book_hotel" + ], + [ + "how about any bookings in new york city from april 2 through april 8", + "book_hotel" + ], + [ + "is there anything available in new york city from april 2 through april 8", + "book_hotel" + ], + [ + "book me a room on november 11 to 15 in cali", + "book_hotel" + ], + [ + "create a reservation novemeber 11 to 15 in cali", + "book_hotel" + ], + [ + "show me all hotels in evans with good reviews", + "book_hotel" + ], + [ + "which hotels in evans have good reviews", + "book_hotel" + ], + [ + "get me a room in cali on november 11 to 15", + "book_hotel" + ], + [ + "show me a well reviewed hotel in evans", + "book_hotel" + ], + [ + "what is the best rated hotel in evans", + "book_hotel" + ], + [ + "find me a place to stay in cali november 11 to 15", + "book_hotel" + ], + [ + "make a reservation to stay in cali from november 11 to 15", + "book_hotel" + ], + [ + "is it possible to have a place booked in salem from the 1st to the 3rd", + "book_hotel" + ], + [ + "see if you can get me a room in colorado springs near garden of the gods from march 01 to march 02", + "book_hotel" + ], + [ + "i'd like you to book me a room in austin near google's headquarters from january 01, 2020 to february 02, 2020", + "book_hotel" + ], + [ + "please book me a room in austin from tomorrow to the 2nd", + "book_hotel" + ], + [ + "i want a hotel room for 6 from the 1st through the 3rd in seattle", + "book_hotel" + ], + [ + "can you find me a decent hotel in denver", + "book_hotel" + ], + [ + "i'd like a placed booked in san diego from may 1st, 2020 to june 2nd, 2020", + "book_hotel" + ], + [ + "are there any good hotels in salem", + "book_hotel" + ], + [ + "what's a good hotel to stay at in chicago", + "book_hotel" + ], + [ + "will you find me a place to stay in casper from march 5th to march 11th", + "book_hotel" + ], + [ + "check if there's a hotel room that can receive 10 people in tampa from this friday for a week", + "book_hotel" + ], + [ + "can i get a hotel room that can accommodate 50 people in bangor from january 01, 2021 to january 30, 2021", + "book_hotel" + ], + [ + "i need a hotel booked in denver near the museum from friday to saturday", + "book_hotel" + ], + [ + "i want a hotel booked in salem near the concert hall from the first to the second", + "book_hotel" + ], + [ + "i required a hotel room for 20 people from march 8th through march 20th in las vegas", + "book_hotel" + ], + [ + "what hotels have decent reviews in bangor", + "book_hotel" + ], + [ + "is it possible to have a room booked in omaha near the convention hall for may 01, 2019 to may 05, 2019", + "book_hotel" + ], + [ + "i'd like to find a hotel in tampa that people liked enough to leave good reviews about", + "book_hotel" + ], + [ + "can you book me a place to stay in denver from wednesday to friday", + "book_hotel" + ], + [ + "i need a hotel room that can host 5 people from tomorrow to saturday in denver", + "book_hotel" + ], + [ + "please find me a hotel room for 4 people from monday to wednesday in lakewood", + "book_hotel" + ], + [ + "i need a hotel room big enough for 4 people from monday to wednesday in lakewood", + "book_hotel" + ], + [ + "i need a hotel room for 4 people in lakewood from monday to wednesday", + "book_hotel" + ], + [ + "what hotel would you recommend in lakewood for 4 people from monday to wednesday", + "book_hotel" + ], + [ + "i will be in lakewood from monday to wednesday and i need a hotel room for 4 people", + "book_hotel" + ], + [ + "please help me book a place to stay in pittsburgh from monday to friday", + "book_hotel" + ], + [ + "i need a place in pittsburgh to stay from monday to friday, can you help", + "book_hotel" + ], + [ + "help me find a hotel in columbus with good reviews", + "book_hotel" + ], + [ + "can you find me a hotel in columbus with good reviews", + "book_hotel" + ], + [ + "please find a columbus, ohio hotel with good reviews", + "book_hotel" + ], + [ + "will you help me book a place to stay from monday to friday in pittsburgh", + "book_hotel" + ], + [ + "can you book me a place to stay in pittsburgh from monday to friday", + "book_hotel" + ], + [ + "please book me a place in pittsburgh to stay from monday to friday", + "book_hotel" + ], + [ + "find a columbus, ohio hotel with good reviews", + "book_hotel" + ], + [ + "help me find a hotel in that has good reviews in columbus", + "book_hotel" + ], + [ + "do you know of any well reviewed hotels in chicago", + "book_hotel" + ], + [ + "help me find a well reviewed hotel in dallas", + "book_hotel" + ], + [ + "find me a hotel in kansas city with good reviews", + "book_hotel" + ], + [ + "i need to find a nice hotel with solid reviews in seattle", + "book_hotel" + ], + [ + "look up hotels with positive reviews in new york city", + "book_hotel" + ], + [ + "what hotels are near, ny, ny for the 9th to 11th", + "book_hotel" + ], + [ + "please book a hotel in ny, close to brooklyn, on the 25th to 30th", + "book_hotel" + ], + [ + "book a hotel in pa, harrisburg for the 10th to 15th", + "book_hotel" + ], + [ + "find and book a hotel in md, baltimore starting on the 7th to the 9th", + "book_hotel" + ], + [ + "i need to book a hotel in ny, queens arrive on 8th and leave on the 13th", + "book_hotel" + ], + [ + "i need a hotel in new orleans with awesome reviews", + "book_hotel" + ], + [ + "find a suitable lodging in vancouver on march 16-19", + "book_hotel" + ], + [ + "help me find a good reviews hotel in la", + "book_hotel" + ], + [ + "i need a hotel in new orleans from may 2 - 5 near the french quarter", + "book_hotel" + ], + [ + "find a hotel with great reviews in san francisco", + "book_hotel" + ], + [ + "find me a hotel in seattle with great reviews", + "book_hotel" + ], + [ + "help me a great hotel in vegas for this weekend", + "book_hotel" + ], + [ + "can you find me a place to stay in sacramento near the capitol on july 3-5", + "book_hotel" + ], + [ + "find a hotel in san francisco for march 8 & 9", + "book_hotel" + ], + [ + "i need a well-rated hotel in vegas", + "book_hotel" + ], + [ + "can i book a hotel in new york city near times square from 3/1 until 3/5", + "book_hotel" + ], + [ + "book me a hotel room in memphis for 3 people from 3/6 until 3/10", + "book_hotel" + ], + [ + "hotel room for 5 in austin for 3/1 until 3/8", + "book_hotel" + ], + [ + "i need a hotel in austin near south congress from 3/5 until 3/10", + "book_hotel" + ], + [ + "book me a hotel in pittsburgh near grant street for 3/15 through 3/18", + "book_hotel" + ], + [ + "march 20th through the 22nd, please book me a hotel room in manhattan big enough for 10 people", + "book_hotel" + ], + [ + "i'm going to need a hotel in tampa near ybor city for march 23rd through the 28th", + "book_hotel" + ], + [ + "i'm going to need a hotel room for 8 people in tallahassee from 3/10 until 3/12", + "book_hotel" + ], + [ + "could you reserve me a hotel room in philadelphia near chinatown from 3/19 through 3/22", + "book_hotel" + ], + [ + "in brooklyn, i need a hotel room for 4 from 3/15 until 3/20", + "book_hotel" + ], + [ + "book me a hotel with good ratings in nashville", + "book_hotel" + ], + [ + "check maps for my location", + "current_location" + ], + [ + "i'm lost, can you tell me where i am", + "current_location" + ], + [ + "how can i go about finding my location right now", + "current_location" + ], + [ + "please tell me my location using gps", + "current_location" + ], + [ + "where exactly am i", + "current_location" + ], + [ + "what's my location", + "current_location" + ], + [ + "is there a way to get my current location", + "current_location" + ], + [ + "what's the precise coordinates of this place", + "current_location" + ], + [ + "where am i right this moment", + "current_location" + ], + [ + "use the map and pinpoint my position", + "current_location" + ], + [ + "give me my location on the map", + "current_location" + ], + [ + "what's my current location", + "current_location" + ], + [ + "what street is this", + "current_location" + ], + [ + "can you direct me where to find where i am", + "current_location" + ], + [ + "what do i do to find my location", + "current_location" + ], + [ + "using this map i'd like to see my exact whereabouts", + "current_location" + ], + [ + "place a marker for me where i am on the map", + "current_location" + ], + [ + "i need to know my current gps coordinates", + "current_location" + ], + [ + "can i have my current gps coordinates", + "current_location" + ], + [ + "would you please tell me my current gps coordinates", + "current_location" + ], + [ + "please tell me my current gps coordinates", + "current_location" + ], + [ + "list my current gps coordinates", + "current_location" + ], + [ + "how do i know where i'm at", + "current_location" + ], + [ + "where am i located currently", + "current_location" + ], + [ + "tell me how to find my current location", + "current_location" + ], + [ + "showme how to find my location", + "current_location" + ], + [ + "i'd like to know where i am", + "current_location" + ], + [ + "what are the gps coordinates where i am located", + "current_location" + ], + [ + "at this location what are my gps coordinates", + "current_location" + ], + [ + "in the place i am what are my gps coordinates", + "current_location" + ], + [ + "what are my gps coordinates at this location", + "current_location" + ], + [ + "what are the gps coordinates of this spot i am at right now", + "current_location" + ], + [ + "where am i located", + "current_location" + ], + [ + "what country and city am i in", + "current_location" + ], + [ + "what are my longitude and latitude points", + "current_location" + ], + [ + "show me where i am on the map", + "current_location" + ], + [ + "display my location on a map", + "current_location" + ], + [ + "please show me where i am on a map", + "current_location" + ], + [ + "can you show me where i am on a map", + "current_location" + ], + [ + "where am i right now, location wise", + "current_location" + ], + [ + "what street am i on right now", + "current_location" + ], + [ + "tell me my current location please", + "current_location" + ], + [ + "what location do you see me at right now", + "current_location" + ], + [ + "what is my current location that you see right now", + "current_location" + ], + [ + "show me where i am", + "current_location" + ], + [ + "bring up my location", + "current_location" + ], + [ + "tell me where i am on a map", + "current_location" + ], + [ + "can you locate me on a map", + "current_location" + ], + [ + "show me where i am on a map", + "current_location" + ], + [ + "i need to know my location", + "current_location" + ], + [ + "i'm lost", + "current_location" + ], + [ + "can you tell me how to figure out my current location", + "current_location" + ], + [ + "i need to find out how i know my location right now", + "current_location" + ], + [ + "can you tell me my location", + "current_location" + ], + [ + "what do i do to find my current location", + "current_location" + ], + [ + "my current location", + "current_location" + ], + [ + "i would like to know my current location", + "current_location" + ], + [ + "how can i tell what my current location is", + "current_location" + ], + [ + "how can i know my current location", + "current_location" + ], + [ + "let me know where i'm located", + "current_location" + ], + [ + "i am in need of my location", + "current_location" + ], + [ + "help me find where i am", + "current_location" + ], + [ + "i do not know where i am", + "current_location" + ], + [ + "i would like to know my location", + "current_location" + ], + [ + "where are we located", + "current_location" + ], + [ + "tell me the current location", + "current_location" + ], + [ + "please tell me my current location", + "current_location" + ], + [ + "what are my gps coordinates right now", + "current_location" + ], + [ + "please tell me my present gps coordinates", + "current_location" + ], + [ + "i need to know my present gps coordinates", + "current_location" + ], + [ + "tell me my current gps coordinates", + "current_location" + ], + [ + "please give me my gps coordinates", + "current_location" + ], + [ + "how do i find my location right now, please", + "current_location" + ], + [ + "how do i find my location, please", + "current_location" + ], + [ + "could you find my location on the map, please", + "current_location" + ], + [ + "how do i find my present location right now", + "current_location" + ], + [ + "could you find my location on the map", + "current_location" + ], + [ + "how do i find my location right now", + "current_location" + ], + [ + "would you find my location on the map, please", + "current_location" + ], + [ + "can you find my location on the map, please", + "current_location" + ], + [ + "can you find my location on the map", + "current_location" + ], + [ + "how do i find my present location right now, please", + "current_location" + ], + [ + "give me my current location", + "current_location" + ], + [ + "let me know my current location", + "current_location" + ], + [ + "what is my location right now", + "current_location" + ], + [ + "can you tell me the address where i am right now", + "current_location" + ], + [ + "please locate me on the map and show me", + "current_location" + ], + [ + "tell me my current location", + "current_location" + ], + [ + "how can i go about finding my current location", + "current_location" + ], + [ + "i wanna know my current location", + "current_location" + ], + [ + "how can i find my current location", + "current_location" + ], + [ + "how will i find my current location", + "current_location" + ], + [ + "i'd like to know my current location", + "current_location" + ], + [ + "how can i locate where i am", + "current_location" + ], + [ + "how shall i find my current location", + "current_location" + ], + [ + "check out my location up on the map", + "current_location" + ], + [ + "could you pull up my location on the map", + "current_location" + ], + [ + "check me out on the map", + "current_location" + ], + [ + "look me up on the map", + "current_location" + ], + [ + "look my location up on the map", + "current_location" + ], + [ + "what are the conditions like in orlando", + "weather" + ], + [ + "what's the temperature like in tampa", + "weather" + ], + [ + "what's the forecast like for pittsburgh", + "weather" + ], + [ + "what are the conditions like in sarasota", + "weather" + ], + [ + "what's the climate like in chicago", + "weather" + ], + [ + "what will the temperature be tomorrow", + "weather" + ], + [ + "will it rain today", + "weather" + ], + [ + "will it freeze tonight", + "weather" + ], + [ + "give me the 7 day forecast", + "weather" + ], + [ + "is it hot outside", + "weather" + ], + [ + "what is the weather going to be like today", + "weather" + ], + [ + "is it going to rain today", + "weather" + ], + [ + "what is the weather going to be like tomorrow", + "weather" + ], + [ + "is it going to rain tonight", + "weather" + ], + [ + "are there any tornadoes coming soon", + "weather" + ], + [ + "is it snowing in the next two weeks", + "weather" + ], + [ + "what is the weather like in denver", + "weather" + ], + [ + "what is the weather like tomorrow", + "weather" + ], + [ + "what is the record high temperature for today", + "weather" + ], + [ + "whats the predicted weather suppose to be like", + "weather" + ], + [ + "whats the forecast for the weather", + "weather" + ], + [ + "what does the weather look like", + "weather" + ], + [ + "what does the forecast look like", + "weather" + ], + [ + "what is the weather going to be like", + "weather" + ], + [ + "tell me this week's forecast", + "weather" + ], + [ + "will it get over 90 degrees today", + "weather" + ], + [ + "what's the temperature outside", + "weather" + ], + [ + "tell me how the weather is", + "weather" + ], + [ + "weather", + "weather" + ], + [ + "what's the weather", + "weather" + ], + [ + "is it raining", + "weather" + ], + [ + "how is it outside", + "weather" + ], + [ + "how hot will it be tomorrow", + "weather" + ], + [ + "what is the weather for tomorrow in georgia", + "weather" + ], + [ + "what is the forecast for this week", + "weather" + ], + [ + "will it snow this weekend", + "weather" + ], + [ + "is there any rain in the next 3 days", + "weather" + ], + [ + "can you tell me what the weather will be please", + "weather" + ], + [ + "how's the weather", + "weather" + ], + [ + "what's the weather looking like", + "weather" + ], + [ + "what weather should i expect", + "weather" + ], + [ + "costa mesa current weather", + "weather" + ], + [ + "what is the temperature in costa mesa", + "weather" + ], + [ + "what is the weather report for costa mesa", + "weather" + ], + [ + "weather in costa mesa", + "weather" + ], + [ + "costa mesa weather", + "weather" + ], + [ + "i need meteorological data for tallahassee", + "weather" + ], + [ + "how's the weather in tallahassee", + "weather" + ], + [ + "read me the current weather report for tallahassee", + "weather" + ], + [ + "tell me the weather report for tallahassee", + "weather" + ], + [ + "what's the current weather situation for tallahassee", + "weather" + ], + [ + "what's the weekend forecast", + "weather" + ], + [ + "can you tell me the low tonight", + "weather" + ], + [ + "is it going to be sunny today", + "weather" + ], + [ + "what's the highest chance of rain for today", + "weather" + ], + [ + "how cold is it going to be tonight", + "weather" + ], + [ + "what is the weather forecast for seattle", + "weather" + ], + [ + "what is the weather outlook for seattle", + "weather" + ], + [ + "what are the weather conditions in seattle", + "weather" + ], + [ + "how is the weather in seattle", + "weather" + ], + [ + "what is the weather report for seattle", + "weather" + ], + [ + "can you give me info on miami weather", + "weather" + ], + [ + "what is miami weather like", + "weather" + ], + [ + "what can you tell me about miami weather", + "weather" + ], + [ + "what kind of weather does miami have", + "weather" + ], + [ + "how is the weather in miami", + "weather" + ], + [ + "what's the weather like right now", + "weather" + ], + [ + "give me a rundown of the weather", + "weather" + ], + [ + "what kind of weather is there", + "weather" + ], + [ + "tell me what the weather is like", + "weather" + ], + [ + "when is it going to rain again", + "weather" + ], + [ + "what is the high temperature for tomorrow", + "weather" + ], + [ + "how many of inches of snow did my hometown get last year", + "weather" + ], + [ + "what are the atmospheric conditions in sparks", + "weather" + ], + [ + "is it raining in sparks", + "weather" + ], + [ + "is it cloudy or sunny in sparks", + "weather" + ], + [ + "is sparks experiencing bad weather right now", + "weather" + ], + [ + "what is the weather like in sparks right now", + "weather" + ], + [ + "what is the temp right now", + "weather" + ], + [ + "when will it rain next", + "weather" + ], + [ + "when is the next rain chance", + "weather" + ], + [ + "what will the weather be this weekend", + "weather" + ], + [ + "what s the uv index tomorrow", + "weather" + ], + [ + "tell me today's weather forecast", + "weather" + ], + [ + "tell me about the weather today", + "weather" + ], + [ + "i want to know the weather forecast for today", + "weather" + ], + [ + "what will the weather be like", + "weather" + ], + [ + "what's the chance of rain on friday", + "weather" + ], + [ + "is there a uv or smog alert for tomorrow", + "weather" + ], + [ + "is it snowing right now in richmond, va", + "weather" + ], + [ + "what will the low temperatures be over the weekend", + "weather" + ], + [ + "can you let me know if it will be warm this week", + "weather" + ], + [ + "when is the next time it is suppose to rain", + "weather" + ], + [ + "how cold will it be tomorrow", + "weather" + ], + [ + "what is today's high temperature predicted to be", + "weather" + ], + [ + "how much snow will we be getting tomorrow", + "weather" + ], + [ + "what's the current weather", + "weather" + ], + [ + "what's it doing outside right now", + "weather" + ], + [ + "what's today's weather going to be", + "weather" + ], + [ + "please tell me the weather forecast", + "weather" + ], + [ + "how much are my state taxes", + "taxes" + ], + [ + "what will my state taxes cost", + "taxes" + ], + [ + "how much are taxes in my state", + "taxes" + ], + [ + "how much state taxes do i owe", + "taxes" + ], + [ + "tell me how much in tax on this", + "taxes" + ], + [ + "and what are the taxes", + "taxes" + ], + [ + "tell me what the tax amount is", + "taxes" + ], + [ + "what is the tax amount", + "taxes" + ], + [ + "how much are taxes on this", + "taxes" + ], + [ + "what is the amount of my federal taxes", + "taxes" + ], + [ + "about how much will my federal taxes be", + "taxes" + ], + [ + "how much will i have to pay in state taxes", + "taxes" + ], + [ + "what do my state taxes amount to", + "taxes" + ], + [ + "how much will i have to pay in federal taxes", + "taxes" + ], + [ + "how much do i owe for state taxes", + "taxes" + ], + [ + "what do my federal taxes amount to", + "taxes" + ], + [ + "what amount will my state taxes be", + "taxes" + ], + [ + "how much will my state taxes be", + "taxes" + ], + [ + "how much am i going to have to pay in taxes to the state", + "taxes" + ], + [ + "how much will i have to pay in colorado taxes", + "taxes" + ], + [ + "what's my bill going to be for my taxes for tennessee", + "taxes" + ], + [ + "how much am i going to have to pay in federal taxes this year", + "taxes" + ], + [ + "how much is the irs going to get from me", + "taxes" + ], + [ + "what's my irs bill going to look like", + "taxes" + ], + [ + "what will i need to pay in federal taxes", + "taxes" + ], + [ + "how much money am i going to lose this year for state taxes", + "taxes" + ], + [ + "how much money is the state going to take from me for taxes", + "taxes" + ], + [ + "how are my federal taxes looking this year", + "taxes" + ], + [ + "i have to pay how much back in taxes", + "taxes" + ], + [ + "how much will i pay the government back in taxes", + "taxes" + ], + [ + "what amount do i have to pay in taxes", + "taxes" + ], + [ + "how much do i have to pay back for my taxes", + "taxes" + ], + [ + "what is the amount of money that i have to pay in taxes", + "taxes" + ], + [ + "what is the total amount of tax deductions from my income", + "taxes" + ], + [ + "what do i pay currently in income taxes", + "taxes" + ], + [ + "i need to know how much tax i pay from my earnings", + "taxes" + ], + [ + "how much am i paying from my income in taxes", + "taxes" + ], + [ + "can you find the exact amount i pay income taxes", + "taxes" + ], + [ + "do i pay a lot of taxes on my income", + "taxes" + ], + [ + "how much am i expected to pay in tax", + "taxes" + ], + [ + "do i have to file a tax form", + "taxes" + ], + [ + "will i pay over $500 in federal taxes", + "taxes" + ], + [ + "what can i expect to pay in taxes", + "taxes" + ], + [ + "are my state tax payments too high", + "taxes" + ], + [ + "how much do americans pay for federal taxes on average", + "taxes" + ], + [ + "how much will i pay in state taxes", + "taxes" + ], + [ + "how much do i pay the government in taxes", + "taxes" + ], + [ + "what percentage do i pay in taxes", + "taxes" + ], + [ + "what percentage of my income is taken out for taxes", + "taxes" + ], + [ + "how much will i pay in federal taxes", + "taxes" + ], + [ + "what do i owe the government on my taxes", + "taxes" + ], + [ + "help me calculate my federal tax bill", + "taxes" + ], + [ + "can you calculate my state taxes", + "taxes" + ], + [ + "using my salary as a basis, what taxes will i owe", + "taxes" + ], + [ + "how are my state taxes looking", + "taxes" + ], + [ + "help me figure out my state taxes", + "taxes" + ], + [ + "can you calculate my tax", + "taxes" + ], + [ + "how much is my income tax", + "taxes" + ], + [ + "can you tell me my income tax", + "taxes" + ], + [ + "how much do i pay in income tax", + "taxes" + ], + [ + "how much tax do i owe", + "taxes" + ], + [ + "what kind of tax do i pay", + "taxes" + ], + [ + "what amount am i taxed on my income", + "taxes" + ], + [ + "what do you think will be the result of my federal tax return", + "taxes" + ], + [ + "what's the damage on my federal tax return", + "taxes" + ], + [ + "what does my federal tax return look like", + "taxes" + ], + [ + "what will my federal tax return be", + "taxes" + ], + [ + "how much money will i get or owe on my federal tax return", + "taxes" + ], + [ + "how much money do i pay in taxes", + "taxes" + ], + [ + "how much money do i pay in taxes, please", + "taxes" + ], + [ + "what amount of money do i pay in taxes, please", + "taxes" + ], + [ + "how much do i pay in taxes", + "taxes" + ], + [ + "how much do i pay in taxes, please", + "taxes" + ], + [ + "i need to know how much i should pay in tax", + "taxes" + ], + [ + "let me know my tax rate", + "taxes" + ], + [ + "what amount of tax should i pay", + "taxes" + ], + [ + "please tell me what i pay in taxes", + "taxes" + ], + [ + "i would like to know how much i pay in taxes", + "taxes" + ], + [ + "what is the total amount i pay in taxes", + "taxes" + ], + [ + "can you tell me how much i pay in taxes", + "taxes" + ], + [ + "how much does it seem my state taxes will be", + "taxes" + ], + [ + "tell me what my state taxes are", + "taxes" + ], + [ + "what are my state taxes looking like", + "taxes" + ], + [ + "can you tell me more about my federal taxes", + "taxes" + ], + [ + "what do i owe in federal taxes", + "taxes" + ], + [ + "give me the specifics on my federal taxes", + "taxes" + ], + [ + "what does it look like my state taxes will add up to", + "taxes" + ], + [ + "i need the details on my federal taxes", + "taxes" + ], + [ + "what do i currently pay in taxes", + "taxes" + ], + [ + "what do i pay in taxes", + "taxes" + ], + [ + "how much will i pay for state taxes this year", + "taxes" + ], + [ + "how different will my state taxes be", + "taxes" + ], + [ + "what is my state taxes currently", + "taxes" + ], + [ + "what will my state taxes amount to this year", + "taxes" + ], + [ + "how much did my state taxes change", + "taxes" + ], + [ + "how much tax do i pay", + "taxes" + ], + [ + "how much do i pay in tax", + "taxes" + ], + [ + "how much do i pay in my taxes", + "taxes" + ], + [ + "how much as my taxes by the way", + "taxes" + ], + [ + "what amount do my state taxes look like", + "taxes" + ], + [ + "what's the minimum i owe on the car payment", + "min_payment" + ], + [ + "what's the least amount i need to pay on the electric bill", + "min_payment" + ], + [ + "what's the smallest amount i can pay on the water bill", + "min_payment" + ], + [ + "what's the minimum amount for my electric bill", + "min_payment" + ], + [ + "what's the least i can pay on the medical payments for february", + "min_payment" + ], + [ + "how much can i get away with paying for my college loan", + "min_payment" + ], + [ + "what's the minimum required payment on my visa card", + "min_payment" + ], + [ + "i want to know my bill's minimum payment", + "min_payment" + ], + [ + "what is my bill's minimum payment", + "min_payment" + ], + [ + "minimum payment of my bill please", + "min_payment" + ], + [ + "can you tell me the minimum payment of my bill", + "min_payment" + ], + [ + "tell me the minimum payment of my bill", + "min_payment" + ], + [ + "the minumum to pay is what", + "min_payment" + ], + [ + "what is the minimum i can pay for my electric bill", + "min_payment" + ], + [ + "please lookup the minimum i need to pay on my credit card", + "min_payment" + ], + [ + "what is the minimum i need to pay for my cell phone bill", + "min_payment" + ], + [ + "tell me what my minimum payment is", + "min_payment" + ], + [ + "what is the minimum i have to pay on my chase card", + "min_payment" + ], + [ + "what is the minimum i can pay for my telephone bill", + "min_payment" + ], + [ + "what is the minimum i can pay for my light bill", + "min_payment" + ], + [ + "what is the minimum i can pay for the gas bill", + "min_payment" + ], + [ + "what do i have to pay on my amex that is the minimum", + "min_payment" + ], + [ + "i need to know my cable bill minimum payment", + "min_payment" + ], + [ + "please tell me the minimum i can pay on my electric bill", + "min_payment" + ], + [ + "please tell me the minimum i can pay on my water bill", + "min_payment" + ], + [ + "what is the lowest amount i can pay for my electric bill", + "min_payment" + ], + [ + "tell me the lowest amount i can pay for my cable bill", + "min_payment" + ], + [ + "let me know the minimum i can pay on my cable bill", + "min_payment" + ], + [ + "please tell me the bill's minimum payment", + "min_payment" + ], + [ + "what is the lowest amount i can pay for my cable bill", + "min_payment" + ], + [ + "tell me the minimum i can pay on my cable bill", + "min_payment" + ], + [ + "i need to know the bill's minimum payment", + "min_payment" + ], + [ + "tell me my electric bill minimum payment", + "min_payment" + ], + [ + "tell me the bill's minimum payment", + "min_payment" + ], + [ + "what is my cable bill minimum payment", + "min_payment" + ], + [ + "i would like to know the bill's minimum payment", + "min_payment" + ], + [ + "i must know my water bill minimum payment", + "min_payment" + ], + [ + "i wanna know the bill's minimum payment", + "min_payment" + ], + [ + "inform me the lowest amount i can pay for my cable bill", + "min_payment" + ], + [ + "i want you to tell me the minimum i can pay on my rent bill", + "min_payment" + ], + [ + "i would like to know my water bill minimum payment", + "min_payment" + ], + [ + "let me know the lowest amount i can pay for my cable bill", + "min_payment" + ], + [ + "find the minimum due on my peco energy bill for february", + "min_payment" + ], + [ + "what is the minimum payment on my chase mastercard", + "min_payment" + ], + [ + "please give me the minimum payment total for my sprint phone bill", + "min_payment" + ], + [ + "can you tell me the minimum amount due on my visa this month", + "min_payment" + ], + [ + "i want to know the bill's minimum payment", + "min_payment" + ], + [ + "please inform me of the minimum payment of the bill", + "min_payment" + ], + [ + "the bill's minimum payment, what is it", + "min_payment" + ], + [ + "what is the minimum amount of money required as payment for the bill", + "min_payment" + ], + [ + "what is the minimum payment for the bill", + "min_payment" + ], + [ + "i need to pay the smallest amount on my phone bill", + "min_payment" + ], + [ + "how little can i pay on my car bill", + "min_payment" + ], + [ + "what is the smallest i can pay on the water bill", + "min_payment" + ], + [ + "how tiny a payment can i make on electric bill", + "min_payment" + ], + [ + "how much do i have to at least pay on my medical bills", + "min_payment" + ], + [ + "how small of a payment can i make for my chase card bill", + "min_payment" + ], + [ + "what is the minimum payment i can make on my xcel energy bill", + "min_payment" + ], + [ + "please tell me the minimum amount i can pay on my wells fargo credit card", + "min_payment" + ], + [ + "what is the smallest amount i can pay on my tmobile bill", + "min_payment" + ], + [ + "what is the smallest payment i can make toward my xfinity bill", + "min_payment" + ], + [ + "can you tell me my cards minimum payment", + "min_payment" + ], + [ + "minimum payment for my credit card", + "min_payment" + ], + [ + "can i get the minimum payment for my credit card", + "min_payment" + ], + [ + "i would like to know the minimum payment for my credit card", + "min_payment" + ], + [ + "i need to know my cards minimum payment", + "min_payment" + ], + [ + "could you tell me the minimum payment on my mortgage", + "min_payment" + ], + [ + "what is the minimum payment on my eddie bauer card", + "min_payment" + ], + [ + "i need to know what the minimum payment is on my electric bill", + "min_payment" + ], + [ + "what is the bare minimum for my truck payment", + "min_payment" + ], + [ + "how much is the minimum payment on my chase card", + "min_payment" + ], + [ + "what is the least amount i can pay for power bill", + "min_payment" + ], + [ + "how much is the minimum payment for power bill", + "min_payment" + ], + [ + "what is the minimum payment for my credit card bill", + "min_payment" + ], + [ + "how much is the least i can pay for power bill", + "min_payment" + ], + [ + "what is the minimum payment for my power bill", + "min_payment" + ], + [ + "how low can i reduce my phone bill before paying", + "min_payment" + ], + [ + "how low can we get my phone bill", + "min_payment" + ], + [ + "what is the minimum payment on my phone bill", + "min_payment" + ], + [ + "what is the lowest i can pay on my phone bill", + "min_payment" + ], + [ + "what is the minimum i can pay for my phone bill", + "min_payment" + ], + [ + "how little can i pay for my water bill", + "min_payment" + ], + [ + "show my my minimum payment for youtube", + "min_payment" + ], + [ + "what's the minimum payment for my internet bill", + "min_payment" + ], + [ + "what's the minimum payment on my credit card bill", + "min_payment" + ], + [ + "what's the minimum payment on my phone bill", + "min_payment" + ], + [ + "what is the minimum payment i can make on my electric bill", + "min_payment" + ], + [ + "what's the minimum payment on my gas bill", + "min_payment" + ], + [ + "what's the least payment i can make on my cable bill", + "min_payment" + ], + [ + "what is the minimum required payment for my cell phone bill", + "min_payment" + ], + [ + "what's the minimum i can pay on my sewer bill", + "min_payment" + ], + [ + "tell me minimum to pay on landscape bill", + "min_payment" + ], + [ + "show me the minimum payment for my boat bill", + "min_payment" + ], + [ + "minimum to pay on power bill", + "min_payment" + ], + [ + "what's the minimum payment for our cc bill", + "min_payment" + ], + [ + "pay the minimum payment for m and t bill", + "min_payment" + ], + [ + "tell me my minimum citicard payment", + "min_payment" + ], + [ + "how much is the minimum payment due for my citicard this month", + "min_payment" + ], + [ + "can you tell me my minimum due for citicard", + "min_payment" + ], + [ + "what is the minimum for my citicard this month", + "min_payment" + ], + [ + "change to whisper mode", + "whisper_mode" + ], + [ + "change mode to whisper", + "whisper_mode" + ], + [ + "whisper mode off", + "whisper_mode" + ], + [ + "change out of whisper mode", + "whisper_mode" + ], + [ + "turn off whisper mode", + "whisper_mode" + ], + [ + "activate whisper mode", + "whisper_mode" + ], + [ + "whisper mode activate", + "whisper_mode" + ], + [ + "can you please lower the volume please", + "whisper_mode" + ], + [ + "use your indoor voice please", + "whisper_mode" + ], + [ + "whisper for me", + "whisper_mode" + ], + [ + "is it possible for you to whisper for me", + "whisper_mode" + ], + [ + "turn on your whisper mode", + "whisper_mode" + ], + [ + "i'm going to need you to be quiet now please", + "whisper_mode" + ], + [ + "don't make too much noise", + "whisper_mode" + ], + [ + "go into whisper mode now please", + "whisper_mode" + ], + [ + "can you use the whisper voice", + "whisper_mode" + ], + [ + "volume to whisper voice", + "whisper_mode" + ], + [ + "turn on the whisper voice", + "whisper_mode" + ], + [ + "go to the whisper voice", + "whisper_mode" + ], + [ + "can you whisper until i tell you not to", + "whisper_mode" + ], + [ + "switch to your whispering voice please", + "whisper_mode" + ], + [ + "whisper from here on out please", + "whisper_mode" + ], + [ + "whisper from now on", + "whisper_mode" + ], + [ + "i need you to use your whisper voice", + "whisper_mode" + ], + [ + "do not talk so loudly", + "whisper_mode" + ], + [ + "use your quiet voice", + "whisper_mode" + ], + [ + "you need to speak softer", + "whisper_mode" + ], + [ + "speak quiet as though you were in a church", + "whisper_mode" + ], + [ + "change to normal vocals mode", + "whisper_mode" + ], + [ + "turn your volume up", + "whisper_mode" + ], + [ + "turn up your volume", + "whisper_mode" + ], + [ + "switch to quiet mode", + "whisper_mode" + ], + [ + "let's start whispering", + "whisper_mode" + ], + [ + "let's switch to whisper voice", + "whisper_mode" + ], + [ + "let's use whisper voice", + "whisper_mode" + ], + [ + "i decide to switch out of whisper mode", + "whisper_mode" + ], + [ + "i want to switch out of whisper mode", + "whisper_mode" + ], + [ + "can you whisper", + "whisper_mode" + ], + [ + "let's switch out of whisper mode", + "whisper_mode" + ], + [ + "let's whisper", + "whisper_mode" + ], + [ + "go to whisper mode", + "whisper_mode" + ], + [ + "can you switch out of whisper mode", + "whisper_mode" + ], + [ + "i think we should whisper", + "whisper_mode" + ], + [ + "shh please speak with a whisper", + "whisper_mode" + ], + [ + "please turn on whisper mode", + "whisper_mode" + ], + [ + "go into whisper mode now", + "whisper_mode" + ], + [ + "i need you to go into whisper mode", + "whisper_mode" + ], + [ + "please only use a whisper when speaking", + "whisper_mode" + ], + [ + "i can't be loud and need you to speak more quietly", + "whisper_mode" + ], + [ + "go back to whisper mode, please", + "whisper_mode" + ], + [ + "change to whisper mode, please", + "whisper_mode" + ], + [ + "switch to whisper mode, please", + "whisper_mode" + ], + [ + "go back to whisper mode", + "whisper_mode" + ], + [ + "please switch to whisper", + "whisper_mode" + ], + [ + "switch to the whisper mode", + "whisper_mode" + ], + [ + "switch over to whisper", + "whisper_mode" + ], + [ + "switch to whisper please", + "whisper_mode" + ], + [ + "i want whisper mode to be switched off", + "whisper_mode" + ], + [ + "i want you to use whisper voice now", + "whisper_mode" + ], + [ + "please turn on whisper voice", + "whisper_mode" + ], + [ + "i dont need whisper mode on any more", + "whisper_mode" + ], + [ + "could you please get out of whisper mode", + "whisper_mode" + ], + [ + "i need your setting switched to whisper mode right away", + "whisper_mode" + ], + [ + "please shut off whisper mode for now", + "whisper_mode" + ], + [ + "make sure to set yourself to whisper mode before i go to the movie", + "whisper_mode" + ], + [ + "please turn on whisper mode because i am about to be in class", + "whisper_mode" + ], + [ + "i want your setting adjusted to whisper voice now", + "whisper_mode" + ], + [ + "please switch to whisper mode for now", + "whisper_mode" + ], + [ + "please begin using the whisper voice setting", + "whisper_mode" + ], + [ + "i want you to be in whisper mode now because i am in the library", + "whisper_mode" + ], + [ + "can you change to the whisper voice setting", + "whisper_mode" + ], + [ + "please speak with the whisper voice", + "whisper_mode" + ], + [ + "exit out of whisper mode", + "whisper_mode" + ], + [ + "is it possible for you to use the whisper voice", + "whisper_mode" + ], + [ + "switch to whisper mode", + "whisper_mode" + ], + [ + "i'd like you to use the whisper voice", + "whisper_mode" + ], + [ + "immediately begin using whisper mode", + "whisper_mode" + ], + [ + "i can't hear you, stop whispering!", + "whisper_mode" + ], + [ + "start using whisper mode", + "whisper_mode" + ], + [ + "stop using the whisper mode", + "whisper_mode" + ], + [ + "engage whisper mode now", + "whisper_mode" + ], + [ + "can you go to the whisper voice", + "whisper_mode" + ], + [ + "go back to normal mode please", + "whisper_mode" + ], + [ + "use the whisper voice", + "whisper_mode" + ], + [ + "use your whispering voice", + "whisper_mode" + ], + [ + "6 inch voices please", + "whisper_mode" + ], + [ + "can you switch to whisper mode", + "whisper_mode" + ], + [ + "i want whisper mode", + "whisper_mode" + ], + [ + "please switch to whisper mode", + "whisper_mode" + ], + [ + "would you mind switching to whisper mode", + "whisper_mode" + ], + [ + "could you please switch to whisper mode", + "whisper_mode" + ], + [ + "if you don't mind, please switch to whisper mode", + "whisper_mode" + ], + [ + "i need you to switch to whisper mode", + "whisper_mode" + ], + [ + "i want you to switch to whisper mode", + "whisper_mode" + ], + [ + "talk in whisper voice", + "whisper_mode" + ], + [ + "please whisper", + "whisper_mode" + ], + [ + "please use whisper", + "whisper_mode" + ], + [ + "please talk quietly", + "whisper_mode" + ], + [ + "use whisper voice", + "whisper_mode" + ], + [ + "turn to whisper mode", + "whisper_mode" + ], + [ + "please cancel what you are doing, i've changed my mind", + "cancel" + ], + [ + "never mind, cancel that", + "cancel" + ], + [ + "stop working on it, i need something else", + "cancel" + ], + [ + "cancel my last request, i know the answer", + "cancel" + ], + [ + "forget it, i do not need it anymore", + "cancel" + ], + [ + "pause", + "cancel" + ], + [ + "cancel that last thing", + "cancel" + ], + [ + "silence", + "cancel" + ], + [ + "quit", + "cancel" + ], + [ + "mute", + "cancel" + ], + [ + "stop", + "cancel" + ], + [ + "stop and go back", + "cancel" + ], + [ + "ai stop talking", + "cancel" + ], + [ + "quiet now", + "cancel" + ], + [ + "shhhh", + "cancel" + ], + [ + "how do i make you stop talking", + "cancel" + ], + [ + "can you be quiet please", + "cancel" + ], + [ + "please stop doing what i asked", + "cancel" + ], + [ + "please be quiet", + "cancel" + ], + [ + "i would like you to stop what you were doing", + "cancel" + ], + [ + "please cancel that last command", + "cancel" + ], + [ + "can you cancel what you were doing", + "cancel" + ], + [ + "can you cancel", + "cancel" + ], + [ + "shut up!", + "cancel" + ], + [ + "i need you to stop talking now", + "cancel" + ], + [ + "i want you to quit the action", + "cancel" + ], + [ + "discontinue please", + "cancel" + ], + [ + "i don't want you to speak any more for now", + "cancel" + ], + [ + "discontinue your current task", + "cancel" + ], + [ + "abort please", + "cancel" + ], + [ + "quit the current action please", + "cancel" + ], + [ + "forget my previous command", + "cancel" + ], + [ + "abort the current action", + "cancel" + ], + [ + "actually forget that i don't need it", + "cancel" + ], + [ + "quit what you are doing", + "cancel" + ], + [ + "sorry, you can actually stop that", + "cancel" + ], + [ + "i actually don't want this anymore, please abort", + "cancel" + ], + [ + "please cancel your present task", + "cancel" + ], + [ + "that's enough, don't say anymore please", + "cancel" + ], + [ + "i want you to stop your present action", + "cancel" + ], + [ + "stop talking please", + "cancel" + ], + [ + "what you are doing is not actually helpful, please cancel the action", + "cancel" + ], + [ + "please stop", + "cancel" + ], + [ + "cancel action", + "cancel" + ], + [ + "please cancel the input", + "cancel" + ], + [ + "ai, stop talking", + "cancel" + ], + [ + "ai, shut up", + "cancel" + ], + [ + "ai, stop!", + "cancel" + ], + [ + "please be quiet now", + "cancel" + ], + [ + "terminate", + "cancel" + ], + [ + "negate last command", + "cancel" + ], + [ + "halt", + "cancel" + ], + [ + "would you stop talking please", + "cancel" + ], + [ + "please abandon the current job", + "cancel" + ], + [ + "please abort the current task", + "cancel" + ], + [ + "terminate current process", + "cancel" + ], + [ + "i want you to cancel the current action", + "cancel" + ], + [ + "abort", + "cancel" + ], + [ + "please stop doing that", + "cancel" + ], + [ + "abort running program", + "cancel" + ], + [ + "don't continue with what you're doing", + "cancel" + ], + [ + "oh shut the hell up would you", + "cancel" + ], + [ + "destroy process", + "cancel" + ], + [ + "please cancel that last task", + "cancel" + ], + [ + "please refrain from carrying out the current task", + "cancel" + ], + [ + "ai, cancel that last request", + "cancel" + ], + [ + "do not complete the task that i gave you", + "cancel" + ], + [ + "ai, please stop your current task", + "cancel" + ], + [ + "actually, cancel that command", + "cancel" + ], + [ + "nevermind, cancel that", + "cancel" + ], + [ + "actually, cancel that", + "cancel" + ], + [ + "forget it", + "cancel" + ], + [ + "cancel that", + "cancel" + ], + [ + "don't do this process", + "cancel" + ], + [ + "undo", + "cancel" + ], + [ + "cancel current process", + "cancel" + ], + [ + "undo this process", + "cancel" + ], + [ + "just shut up", + "cancel" + ], + [ + "stop that", + "cancel" + ], + [ + "cancel that input", + "cancel" + ], + [ + "never mind, don't do that", + "cancel" + ], + [ + "never mind", + "cancel" + ], + [ + "stop doing that", + "cancel" + ], + [ + "halt that immediately", + "cancel" + ], + [ + "stop the process happening now", + "cancel" + ], + [ + "stop, i changed my mind", + "cancel" + ], + [ + "cancel that last command", + "cancel" + ], + [ + "oops cancel that", + "cancel" + ], + [ + "can you stop", + "cancel" + ], + [ + "could you stop talking for a second", + "cancel" + ], + [ + "could you stop please", + "cancel" + ], + [ + "can you switch off", + "cancel" + ], + [ + "can you stop speaking", + "cancel" + ], + [ + "can you please cancel", + "cancel" + ], + [ + "can you end the task", + "cancel" + ], + [ + "scratch", + "cancel" + ], + [ + "refrain from talking", + "cancel" + ], + [ + "halt the process", + "cancel" + ], + [ + "no more talking", + "cancel" + ], + [ + "i advise you to quit talking", + "cancel" + ], + [ + "to visit cambodia, do i need an international visa", + "international_visa" + ], + [ + "do i need to get a visa to visit canada", + "international_visa" + ], + [ + "will i need a visa to visit ireland", + "international_visa" + ], + [ + "will i need a travel visa to go to canary islands", + "international_visa" + ], + [ + "i want to visit portugal do i need a travel visa", + "international_visa" + ], + [ + "i want to see paris will i need an international visa", + "international_visa" + ], + [ + "for travel to argentina, do i need to get a travel visa", + "international_visa" + ], + [ + "will i have to apply for a visa if i want to visit mexico", + "international_visa" + ], + [ + "to vacation to tel aviv do i need a travel visa", + "international_visa" + ], + [ + "do i need to obtain a travel visa to go on vacation to places in eastern europe", + "international_visa" + ], + [ + "would i need a tourist visa for brazil", + "international_visa" + ], + [ + "do i need a tourist visa for europe", + "international_visa" + ], + [ + "i want to know if i shouldget a tourist visa for italy", + "international_visa" + ], + [ + "is it necessary to apply for a tourist visa for mexico", + "international_visa" + ], + [ + "should i get a travel visa for spain", + "international_visa" + ], + [ + "does moscow require travel visas to visit", + "international_visa" + ], + [ + "would i need a travel visa to go to the congo", + "international_visa" + ], + [ + "do i need an international visa to go to south korea", + "international_visa" + ], + [ + "do i need an international visa to go to tibet", + "international_visa" + ], + [ + "do i need an international visa to go to vietnam", + "international_visa" + ], + [ + "do i need an international visa to go to hong kong", + "international_visa" + ], + [ + "do i need an international visa to go to malaysia", + "international_visa" + ], + [ + "i am going to travel to mexico soon; do i need to get a visa", + "international_visa" + ], + [ + "i need to know if i must have an international visa to go to france", + "international_visa" + ], + [ + "i'm going to jamaica next week; am i needing a visa", + "international_visa" + ], + [ + "tell me whether i need an international visa to go to mexico", + "international_visa" + ], + [ + "i'm going to mexico; do i need an international via", + "international_visa" + ], + [ + "let me know if i need an international visa to go to sudan", + "international_visa" + ], + [ + "am i in need of an international visa to go to france", + "international_visa" + ], + [ + "do i need to get a visa for traveling to chile", + "international_visa" + ], + [ + "do i need a visa to travel to jamaica", + "international_visa" + ], + [ + "i need to know if i need a visa to travel to el salvador", + "international_visa" + ], + [ + "would i need a visa if i want to travel to mexico", + "international_visa" + ], + [ + "do i need a visa to travel to mexico", + "international_visa" + ], + [ + "does mexico require me to have a visa to travel there", + "international_visa" + ], + [ + "is a visa needed to go to mexico", + "international_visa" + ], + [ + "if i want to travel to mexico do i need to get a visa", + "international_visa" + ], + [ + "do i need a visa to scotland", + "international_visa" + ], + [ + "do i need a visa to russia", + "international_visa" + ], + [ + "do i need a visa for canada", + "international_visa" + ], + [ + "do i need a travel visa to visit germany", + "international_visa" + ], + [ + "i am going to russia and am wondering if i need a visa", + "international_visa" + ], + [ + "do i need a travel visa to visit russia", + "international_visa" + ], + [ + "do i need a travel visa to visit canada", + "international_visa" + ], + [ + "i am going to germany soon do i need a visa", + "international_visa" + ], + [ + "do i need a travel visa to visit japan", + "international_visa" + ], + [ + "do i need to get a visa for russia", + "international_visa" + ], + [ + "do i need a visa to go to greece", + "international_visa" + ], + [ + "do i need a travel visa to visit china", + "international_visa" + ], + [ + "do i need a visa for germany", + "international_visa" + ], + [ + "do i need a visa to go to somewhere internationally", + "international_visa" + ], + [ + "do i need a visa to spain", + "international_visa" + ], + [ + "do i need an international visa to go to mexico", + "international_visa" + ], + [ + "do i need an international visa to go to england", + "international_visa" + ], + [ + "do i need an international visa to go to brazil", + "international_visa" + ], + [ + "do i need an international visa to go to canada", + "international_visa" + ], + [ + "do i need an international visa to go to spain", + "international_visa" + ], + [ + "should i get a visa before going to cancun", + "international_visa" + ], + [ + "is a visa required to visit cancun", + "international_visa" + ], + [ + "will i need a visa to travel to cancun", + "international_visa" + ], + [ + "do i need a visa to go to cancun", + "international_visa" + ], + [ + "do i need a visa to travel to canada", + "international_visa" + ], + [ + "does mexico travel require a visa", + "international_visa" + ], + [ + "would i need to get a visa to go to ireland", + "international_visa" + ], + [ + "if i'm planning to go to the uk, do i need a visa", + "international_visa" + ], + [ + "might i need to get a visa to travel to venezuela", + "international_visa" + ], + [ + "i'm going to be going to canada soon, do they require a visa for entry", + "international_visa" + ], + [ + "do i need a visa to get into canada later this year", + "international_visa" + ], + [ + "does travelling to that place require a visa", + "international_visa" + ], + [ + "do i need a visa to go there", + "international_visa" + ], + [ + "do i need a visa to leave the country", + "international_visa" + ], + [ + "does international travel always require a visa", + "international_visa" + ], + [ + "when does travelling require a visa", + "international_visa" + ], + [ + "if i go to canada next month do i need a visa", + "international_visa" + ], + [ + "do i need to bring a visa when i go to canada next month", + "international_visa" + ], + [ + "i'm going to canada soon, do i need a visa", + "international_visa" + ], + [ + "what paperwork will i need to visit northern ireland", + "international_visa" + ], + [ + "should i get a visa for crete", + "international_visa" + ], + [ + "will i need a visa to go to moldova", + "international_visa" + ], + [ + "does laos require a travel visa", + "international_visa" + ], + [ + "do i need to apply for a visa to visit dnipro", + "international_visa" + ], + [ + "israel has strict restrictions do i need a visa to travel there", + "international_visa" + ], + [ + "visa's are hard to get do i need one when i travel to israel", + "international_visa" + ], + [ + "i'm vacationing in israel will i need a visa", + "international_visa" + ], + [ + "do i need a visa to travel to isreal", + "international_visa" + ], + [ + "i'm heading to israel soon, do i need a visa", + "international_visa" + ], + [ + "do i have to have a visa to go to denmark", + "international_visa" + ], + [ + "do i need a visa to go to cuba", + "international_visa" + ], + [ + "do i have to have a visa to go to the cayman islands", + "international_visa" + ], + [ + "does jamaica require a visa", + "international_visa" + ], + [ + "what documents to i need to go to egypt", + "international_visa" + ], + [ + "does france have their own version of a visa", + "international_visa" + ], + [ + "does mexico require an international visa", + "international_visa" + ], + [ + "does ireland require an international visa", + "international_visa" + ], + [ + "do i need an international visa to enter canada", + "international_visa" + ], + [ + "do i have to get an international visa before they'll let me in melbourne", + "international_visa" + ], + [ + "must i have an international visa when travelling to russia", + "international_visa" + ], + [ + "is an international visa needed to travel to z", + "international_visa" + ], + [ + "i want to go to korea, do i need an international visa", + "international_visa" + ], + [ + "do i need to apply for a travel visa if i am going to bermuda", + "international_visa" + ], + [ + "are there any specific shots i should get before traveling to england", + "vaccines" + ], + [ + "what are the recommended shots to get before i travel to south korea", + "vaccines" + ], + [ + "what are the recommended shots to get before i travel to england", + "vaccines" + ], + [ + "are there recommendations to get any specific shots before i travel to germany", + "vaccines" + ], + [ + "do i need certain shots before flying to eithiopia", + "vaccines" + ], + [ + "what type of specific shots should i get before flying to south korea", + "vaccines" + ], + [ + "are there specific shots i need before traveling to japan", + "vaccines" + ], + [ + "is it recommended to get specific shots before i travel to japan", + "vaccines" + ], + [ + "do i need specific shots before traveling to germany", + "vaccines" + ], + [ + "is it recommended to get any shots before i travel to africa", + "vaccines" + ], + [ + "how many vaccinations will i need to travel to asia", + "vaccines" + ], + [ + "which countries require vaccinations before entering for travel", + "vaccines" + ], + [ + "which types of vaccinations are required when leaving the united states", + "vaccines" + ], + [ + "what are common illnesses i should be vaccinated against when leaving the united states", + "vaccines" + ], + [ + "what are common vaccinations for someone travelling internationally", + "vaccines" + ], + [ + "does travel to africa require any shots", + "vaccines" + ], + [ + "do i need to protect myself with some shots for a trip to vietnam", + "vaccines" + ], + [ + "do i need any shots if i travel to africa", + "vaccines" + ], + [ + "would i need any immunization if i go to thailand", + "vaccines" + ], + [ + "will i need immunization for a trip to turkey", + "vaccines" + ], + [ + "can you tell me which shots i need for africa", + "vaccines" + ], + [ + "do i need special shots to go to africa", + "vaccines" + ], + [ + "how many shots do i need before i go to africa", + "vaccines" + ], + [ + "what are the necessary shots for travel to africa", + "vaccines" + ], + [ + "before i leave for mexico should i get some more vaccinations", + "vaccines" + ], + [ + "what are the shots i need in order to travel to mexico", + "vaccines" + ], + [ + "what shots do i need before heading to france", + "vaccines" + ], + [ + "are there any shots i should get before going to south africa", + "vaccines" + ], + [ + "do i need any vaccinations before going to indonesia", + "vaccines" + ], + [ + "what vaccinations should i get if i go to nigeria", + "vaccines" + ], + [ + "are vaccinations needed for trips to guana", + "vaccines" + ], + [ + "should i get a vaccination before i go to katmandu", + "vaccines" + ], + [ + "do i need to get vaccinated to go to thailand", + "vaccines" + ], + [ + "which vaccinations are required to go to viet nam", + "vaccines" + ], + [ + "is it recommended to get any specific shots before i travel to argentina", + "vaccines" + ], + [ + "is it recommended to get any specific shots before i travel to canada", + "vaccines" + ], + [ + "do i need a vaccination for spain", + "vaccines" + ], + [ + "is it recommended to get any specific shots before i travel to norway", + "vaccines" + ], + [ + "is it recommended to get any specific shots before i travel to japan", + "vaccines" + ], + [ + "do i need a vaccination to go to europe", + "vaccines" + ], + [ + "do i need a vaccination to go to greece", + "vaccines" + ], + [ + "is it recommended to get any specific shots before i travel to iceland", + "vaccines" + ], + [ + "do i need a vaccination to go to china", + "vaccines" + ], + [ + "do i need vaccinations to travel overseas", + "vaccines" + ], + [ + "do i need any shots before i go to south africa", + "vaccines" + ], + [ + "should i get any shots before i go to kenya", + "vaccines" + ], + [ + "is there a list of recommended shots to get before travelling to kenya", + "vaccines" + ], + [ + "do i need to see the doctor for shots before i go to south africa", + "vaccines" + ], + [ + "are there recommended vaccines to go there", + "vaccines" + ], + [ + "are there shots required before going to south africa", + "vaccines" + ], + [ + "what shots are recommended before traveling to kenya", + "vaccines" + ], + [ + "do i need to get vaccines before my trip", + "vaccines" + ], + [ + "i'm going to south africa, do i need to get any shots first", + "vaccines" + ], + [ + "should i get any shots before i go to south africa", + "vaccines" + ], + [ + "tell me if i need any more vaccines if i go there", + "vaccines" + ], + [ + "are any shots recommended before going to kenya", + "vaccines" + ], + [ + "do i need to get shots before i go to kenya", + "vaccines" + ], + [ + "what vaccines do i need before i travel there", + "vaccines" + ], + [ + "are my vaccines up to date for going there", + "vaccines" + ], + [ + "do i need some shots, if i am traveling to china", + "vaccines" + ], + [ + "do i need some vaccinations or anything if i'm going to eastern europe", + "vaccines" + ], + [ + "i'm going to india do i need some shots", + "vaccines" + ], + [ + "if i'm going to africa, do i need some shots first", + "vaccines" + ], + [ + "i'm going to south africa, so should i get some vaccinations or anything", + "vaccines" + ], + [ + "traveling to the uk am i going to need any specific shots", + "vaccines" + ], + [ + "if i am going to the uk are any specific shots needed", + "vaccines" + ], + [ + "are shots needed for uk travel", + "vaccines" + ], + [ + "do i need any specific shots if i go to the uk", + "vaccines" + ], + [ + "am i going to need vaccines for the trip", + "vaccines" + ], + [ + "am i required to get a vaccine for this trip", + "vaccines" + ], + [ + "will this trip require vaccines", + "vaccines" + ], + [ + "if i travel to the uk do i need any shots", + "vaccines" + ], + [ + "does my trip require vaccines", + "vaccines" + ], + [ + "will i need vaccines for my trip", + "vaccines" + ], + [ + "what shots do i need to get in order to travel to khartoum", + "vaccines" + ], + [ + "do i have to get shots to travel to iraq", + "vaccines" + ], + [ + "what shots are required to go out of the country", + "vaccines" + ], + [ + "do i need shots to go to thailand", + "vaccines" + ], + [ + "do you have a list of shots that i need for traveling to denmark", + "vaccines" + ], + [ + "please tell me if i need any shots before i go to mexico", + "vaccines" + ], + [ + "which shots do i need before i go to thailand", + "vaccines" + ], + [ + "which shots do i need to get before i go to africa next week", + "vaccines" + ], + [ + "do i need shots before i get to africa", + "vaccines" + ], + [ + "can you tell me which vaccines i need to take before mexico", + "vaccines" + ], + [ + "can you tell me if there are any shots that i am required to have before traveling to south africa", + "vaccines" + ], + [ + "what shots do i need before traveling to malawi", + "vaccines" + ], + [ + "please tell me what shots i am required to get to travel to india", + "vaccines" + ], + [ + "are there any mandatory shots that i must get before my trip to jamaica", + "vaccines" + ], + [ + "do i need to get any shots to travel to mexico", + "vaccines" + ], + [ + "do i need vaccinations to travel there", + "vaccines" + ], + [ + "are vaccinations required to travel there", + "vaccines" + ], + [ + "are vaccinations necessary to go there", + "vaccines" + ], + [ + "do i need to get vaccinations before i go", + "vaccines" + ], + [ + "which vaccinations should i get before i go", + "vaccines" + ], + [ + "i need a list of vaccinations for a trip to paris", + "vaccines" + ], + [ + "list all the shots i need to travel to france", + "vaccines" + ], + [ + "what vaccinations do i needs to travel to paris", + "vaccines" + ], + [ + "what vaccinations are required to enter paris from outside the country", + "vaccines" + ], + [ + "tell me what vaccinations i need to get into france", + "vaccines" + ], + [ + "should i get any vaccines before going over to the uk", + "vaccines" + ], + [ + "what is my vacation schedule look like", + "pto_balance" + ], + [ + "can you explain to me what type of vacation days i have still", + "pto_balance" + ], + [ + "what type of vacation schedule do i have left", + "pto_balance" + ], + [ + "can i get vacation day totals i have left", + "pto_balance" + ], + [ + "how many vacation days do i have saved up, please", + "pto_balance" + ], + [ + "how many vacation days do i have remaining", + "pto_balance" + ], + [ + "how many vacation days do i have saved up", + "pto_balance" + ], + [ + "how many vacation days do i have remaining, please", + "pto_balance" + ], + [ + "how many vacation days do i have left", + "pto_balance" + ], + [ + "how many vacation days do i still have", + "pto_balance" + ], + [ + "how many vacation days do i still get", + "pto_balance" + ], + [ + "i want to know how much vacation time i can use", + "pto_balance" + ], + [ + "do i have any vacation days to use", + "pto_balance" + ], + [ + "tell me if i have any spare vacation days", + "pto_balance" + ], + [ + "do i have any vacation time left", + "pto_balance" + ], + [ + "do i have any vacation days left", + "pto_balance" + ], + [ + "how many holiday days do i have left to use", + "pto_balance" + ], + [ + "i want to know how many vacation days i can use", + "pto_balance" + ], + [ + "how many vacation days do i have", + "pto_balance" + ], + [ + "do i have any personal days left", + "pto_balance" + ], + [ + "how many of my vacation days do i have remaining", + "pto_balance" + ], + [ + "how many vacation hours do i have", + "pto_balance" + ], + [ + "how much paid time off do i have saved", + "pto_balance" + ], + [ + "how many days do i have left of pto", + "pto_balance" + ], + [ + "how many day of my vacation are left for the year", + "pto_balance" + ], + [ + "how many pto days do i have left", + "pto_balance" + ], + [ + "how many pto days do i have for the year", + "pto_balance" + ], + [ + "how many vacation days do i have for the year", + "pto_balance" + ], + [ + "how many vacation days have i accrued", + "pto_balance" + ], + [ + "can you tell me how much pto i still have", + "pto_balance" + ], + [ + "what's the current amount of vacation owed to me", + "pto_balance" + ], + [ + "what number of vacation days remain for me", + "pto_balance" + ], + [ + "how many days can i slack off this year", + "pto_balance" + ], + [ + "do i have enough vacation to take a european trip", + "pto_balance" + ], + [ + "how much vacation am i currently entitled to", + "pto_balance" + ], + [ + "what's the amount of pto i have left", + "pto_balance" + ], + [ + "how much paid time off have i earned to date", + "pto_balance" + ], + [ + "what pto time to i have remaining", + "pto_balance" + ], + [ + "what's the current count of my pto days", + "pto_balance" + ], + [ + "what's the count of vacation days i have left", + "pto_balance" + ], + [ + "how much pto have i accrued", + "pto_balance" + ], + [ + "do i still have any pto days left, and if so, how many", + "pto_balance" + ], + [ + "how much pto do i have left", + "pto_balance" + ], + [ + "how much time off do i have left", + "pto_balance" + ], + [ + "what's my vacation day total", + "pto_balance" + ], + [ + "do i still have vacation days", + "pto_balance" + ], + [ + "how many vacation days do i have to spend", + "pto_balance" + ], + [ + "check how much pto i have left", + "pto_balance" + ], + [ + "what's the status on my vacation days", + "pto_balance" + ], + [ + "check days of pto", + "pto_balance" + ], + [ + "what is the saved vacation time i have left", + "pto_balance" + ], + [ + "how much time do i have for vacation saved", + "pto_balance" + ], + [ + "how many days of vacation time do i have saved", + "pto_balance" + ], + [ + "what is the amount of vacation days i have left", + "pto_balance" + ], + [ + "how many saved days of vacation time do i have", + "pto_balance" + ], + [ + "how many days for vacation do i have left", + "pto_balance" + ], + [ + "hoe many vacation days are left for me", + "pto_balance" + ], + [ + "how many days are left for me for vacation if i may ask", + "pto_balance" + ], + [ + "how many days off for vacation do i have left", + "pto_balance" + ], + [ + "how many vacation days do i have left this year", + "pto_balance" + ], + [ + "how many vacation days do i have saved", + "pto_balance" + ], + [ + "can you figure out how many vacation days i have left", + "pto_balance" + ], + [ + "i have how many vacation days saved up", + "pto_balance" + ], + [ + "i have how many vacation days left this year", + "pto_balance" + ], + [ + "i have how many vacation days left", + "pto_balance" + ], + [ + "how many days of vacation have i saved", + "pto_balance" + ], + [ + "i've saved what number of days of vacation", + "pto_balance" + ], + [ + "tell me the number of vacation days i have stored", + "pto_balance" + ], + [ + "what's the number of remaining vacation days i have", + "pto_balance" + ], + [ + "how many pto days do i have remaining", + "pto_balance" + ], + [ + "what is my remaining pto days", + "pto_balance" + ], + [ + "can you tell me the number of pto days i have left", + "pto_balance" + ], + [ + "can you tell me the remaining time i have for pto", + "pto_balance" + ], + [ + "do you know ho many vacation days i currently have", + "pto_balance" + ], + [ + "would you please tell me how many vacation days i have", + "pto_balance" + ], + [ + "please tell me how many vacation days i currently have", + "pto_balance" + ], + [ + "could you tell me how many vacation days i have left", + "pto_balance" + ], + [ + "how many days of vacation do i have", + "pto_balance" + ], + [ + "how much vacation time have i accrued", + "pto_balance" + ], + [ + "how many vacation hours have i accrued", + "pto_balance" + ], + [ + "please calculate my vacation time", + "pto_balance" + ], + [ + "i'd like to know how many vacation days i have", + "pto_balance" + ], + [ + "i want to know how many vacation days i have", + "pto_balance" + ], + [ + "what number of vacation days do i have", + "pto_balance" + ], + [ + "tell me how many vacation days i have", + "pto_balance" + ], + [ + "let me know the number of vacation days i have", + "pto_balance" + ], + [ + "i need to know how many vacation days i have", + "pto_balance" + ], + [ + "would you provide the number of vacation days i have", + "pto_balance" + ], + [ + "provide me the number of vacation days i have", + "pto_balance" + ], + [ + "how much pto do i have", + "pto_balance" + ], + [ + "do i have any remaining pto days", + "pto_balance" + ], + [ + "how much paid time off do i have", + "pto_balance" + ], + [ + "do i have any pto days left", + "pto_balance" + ], + [ + "do i have enough pto to take time off", + "pto_balance" + ], + [ + "how many more vacation days do i have for the year", + "pto_balance" + ], + [ + "tell me how many vacation days i have left", + "pto_balance" + ], + [ + "how many more vacation days can i use this year", + "pto_balance" + ], + [ + "how many vacation days are available to me", + "pto_balance" + ], + [ + "how many more pto days are there for me", + "pto_balance" + ], + [ + "let me know my vacation time", + "pto_balance" + ], + [ + "i'm at home, so where is the closest starbucks", + "directions" + ], + [ + "what's the distance between home and the closest starbucks", + "directions" + ], + [ + "is there a starbucks close to home", + "directions" + ], + [ + "direct me to the closest starbucks near home", + "directions" + ], + [ + "does home have a starbucks nearby", + "directions" + ], + [ + "how do i get to the beach by bus", + "directions" + ], + [ + "how do i get to the park on foot", + "directions" + ], + [ + "how do i get to the train on foot", + "directions" + ], + [ + "how do i get to the mall by bus", + "directions" + ], + [ + "how to i get to the mall on foot", + "directions" + ], + [ + "how do i get to the supermarket on foot", + "directions" + ], + [ + "how do i get to the museum on foot", + "directions" + ], + [ + "how do i get to the college by bus", + "directions" + ], + [ + "how do i get to the hotel by bus", + "directions" + ], + [ + "how do i get to the museum by bus", + "directions" + ], + [ + "assist me to know how to get to target by bus", + "directions" + ], + [ + "would you tell me how to get to walmart by bus", + "directions" + ], + [ + "i am needing you to tell me how to get to dallas, texas, by bus", + "directions" + ], + [ + "i need to know how to get to target by bus", + "directions" + ], + [ + "tell me how to get to target by bus", + "directions" + ], + [ + "i need to know where the nearest place that has mountain dew is", + "directions" + ], + [ + "how can i take a bus to dallas", + "directions" + ], + [ + "what steps do i need to take to take a bus to detroit", + "directions" + ], + [ + "how can i travel by bus to the grand canyon", + "directions" + ], + [ + "direct me to the closest korean grocery", + "directions" + ], + [ + "i want to visit chicago by bus what do i need to do", + "directions" + ], + [ + "tell me where is the closest coffee shop", + "directions" + ], + [ + "where can i find the mall closest to here", + "directions" + ], + [ + "can you tell me where the nearest rest station to me is", + "directions" + ], + [ + "i want to take a bus to mexico city how do i do that", + "directions" + ], + [ + "let me know how to get to the starbucks nearby", + "directions" + ], + [ + "would you give me directions to the closest starbucks restaurant", + "directions" + ], + [ + "how do i get to the closest starbucks", + "directions" + ], + [ + "where is the closest starbucks", + "directions" + ], + [ + "please give me directions to the nearest starbucks", + "directions" + ], + [ + "could you tell me how to get to the statue of liberty by bus", + "directions" + ], + [ + "from here, how do i get to the statue of liberty by bus", + "directions" + ], + [ + "i want to know how to get to statue of liberty by bus", + "directions" + ], + [ + "how do i get to statue of liberty by bus", + "directions" + ], + [ + "which bus should i take to get to the statue of liberty", + "directions" + ], + [ + "how close is a gas station to mcdonalds", + "directions" + ], + [ + "i need to get to a church immediately, please take me to one!", + "directions" + ], + [ + "take me to the nearest dairy queen", + "directions" + ], + [ + "can i take a bus to the grand canyon", + "directions" + ], + [ + "how do i get to the nearest post office", + "directions" + ], + [ + "where's the nearest gas station", + "directions" + ], + [ + "how would i walk to the liberty bell from here", + "directions" + ], + [ + "find me the closest public bathroom", + "directions" + ], + [ + "guide me to a laundromat near me", + "directions" + ], + [ + "take me to the closest walmart", + "directions" + ], + [ + "does the bus go to the washington monument", + "directions" + ], + [ + "are there any furniture outlets near the mall", + "directions" + ], + [ + "what's the best way to get to my bank by walking", + "directions" + ], + [ + "can a bus get me to the statue of liberty", + "directions" + ], + [ + "is a bar close to my church", + "directions" + ], + [ + "how do i get to the statue of liberty on foot", + "directions" + ], + [ + "what's the nearest ups store to walmart", + "directions" + ], + [ + "is there a tire repair place near the post office", + "directions" + ], + [ + "how do i get to the leaning tower by bus", + "directions" + ], + [ + "what's the closest mcdonalds", + "directions" + ], + [ + "what's the quickest way to a bank", + "directions" + ], + [ + "i want to see the golden gate bridge and i'm walking on 5th street right now", + "directions" + ], + [ + "is it possible to take the bus to the brooklyn bridge", + "directions" + ], + [ + "give me directions to the nearest gas station", + "directions" + ], + [ + "what's the direction for foot traffic to get to the eiffel tower", + "directions" + ], + [ + "i need directions to get to olympia by bus", + "directions" + ], + [ + "what are the directions to get to olympia by bus", + "directions" + ], + [ + "do you know how i get to olympia by bus", + "directions" + ], + [ + "is it possible to get to olympia by bus", + "directions" + ], + [ + "is there a way to go by bus to olympia", + "directions" + ], + [ + "i need an address for the closest starbucks to home", + "directions" + ], + [ + "please tell me the location of the nearest target store", + "directions" + ], + [ + "can you tell me where the atm closest to my current location is", + "directions" + ], + [ + "where is the nearest gas station to 20th and market streets, in philadelphia, pa", + "directions" + ], + [ + "find me the location of the nearest gas station", + "directions" + ], + [ + "can you tell me the nearest wells fargo bank location to port authority, new york", + "directions" + ], + [ + "please tell me the subway station nearest to madison square garden in new york", + "directions" + ], + [ + "what are the nearest streets to the statue of liberty in new york", + "directions" + ], + [ + "search for the nearest atm to newark penn station, newark in new jersey", + "directions" + ], + [ + "search for the nearest expressway to the airport", + "directions" + ], + [ + "where is starbucks", + "directions" + ], + [ + "starbucks near me", + "directions" + ], + [ + "find me starbucks", + "directions" + ], + [ + "what's the nearest starbucks", + "directions" + ], + [ + "where is the closest chevron gas station in columbus, ohio", + "directions" + ], + [ + "where is the nearest denny's to gillette stadium", + "directions" + ], + [ + "where is the closest walmart to boise, idaho", + "directions" + ], + [ + "where is the closest applebees to the empire state building", + "directions" + ], + [ + "where is the closest dog groomer in charlotte, north carolina", + "directions" + ], + [ + "i want to know the nearest bank's location", + "directions" + ], + [ + "i need to know the nearest bank's location", + "directions" + ], + [ + "i want to get directions to the closest atm", + "directions" + ], + [ + "i would like to know where the closest gas station is", + "directions" + ], + [ + "i want directions to the closest atm", + "directions" + ], + [ + "give me the location for the nearest bank", + "directions" + ], + [ + "i need to know directions to the nearest gas station", + "directions" + ], + [ + "can you tell me the nearest restaurant to me and give me directions", + "directions" + ], + [ + "can you tell me the location of the nearest bank", + "directions" + ], + [ + "where is the closest mcdonalds", + "directions" + ], + [ + "how would i get to city hall via bus", + "directions" + ], + [ + "what is the spelling of potato", + "spelling" + ], + [ + "spell potato", + "spelling" + ], + [ + "give me the spelling of potato", + "spelling" + ], + [ + "spell out potato", + "spelling" + ], + [ + "how do you spell tomato", + "spelling" + ], + [ + "can you spell water", + "spelling" + ], + [ + "how do you spell water", + "spelling" + ], + [ + "how is water spelled", + "spelling" + ], + [ + "water is spelled how", + "spelling" + ], + [ + "spell water", + "spelling" + ], + [ + "what's the letters in 'you' word like", + "spelling" + ], + [ + "the word 'you' got how many letters", + "spelling" + ], + [ + "how do you spell out university", + "spelling" + ], + [ + "how do you spell out newspaper", + "spelling" + ], + [ + "how do you spell out shepherd", + "spelling" + ], + [ + "how do you spell out espresso", + "spelling" + ], + [ + "how do you spell out wednesday", + "spelling" + ], + [ + "can you spell \"diatribe\" for me", + "spelling" + ], + [ + "spell \"requisite\" for me", + "spelling" + ], + [ + "what's the right way to spell miscellaneous", + "spelling" + ], + [ + "how do you spell syzygy", + "spelling" + ], + [ + "tell me how to spell anonymous", + "spelling" + ], + [ + "how is the word economy spelled", + "spelling" + ], + [ + "can you spell out the word special for me", + "spelling" + ], + [ + "i need to know how many r's are in restaurant", + "spelling" + ], + [ + "i need to know how to spell excellent", + "spelling" + ], + [ + "spell the word restaurant for me", + "spelling" + ], + [ + "tell me how many p's are in apple", + "spelling" + ], + [ + "how many e's are in sesame", + "spelling" + ], + [ + "tell me how many a's are in magical", + "spelling" + ], + [ + "what is the proper way to spell diamond", + "spelling" + ], + [ + "do you know how many o's are in honor", + "spelling" + ], + [ + "what's the right spelling of rambunctious", + "spelling" + ], + [ + "how do i spell catheter", + "spelling" + ], + [ + "can you tell me how to spell manipulation", + "spelling" + ], + [ + "what is the correct spelling of judgment", + "spelling" + ], + [ + "what's the spelling of cancer", + "spelling" + ], + [ + "how do you spell antithesis", + "spelling" + ], + [ + "how do i spell ambitious", + "spelling" + ], + [ + "how do you spell verisimilitude", + "spelling" + ], + [ + "how do you spell asian", + "spelling" + ], + [ + "what's the spelling of multimedia", + "spelling" + ], + [ + "can you tell me how to spell elephant", + "spelling" + ], + [ + "how do you spell hotdog", + "spelling" + ], + [ + "can you spell hamburger", + "spelling" + ], + [ + "spell government", + "spelling" + ], + [ + "tell me how to spell automobile", + "spelling" + ], + [ + "i need to know how to spell friend", + "spelling" + ], + [ + "how is friend spelled", + "spelling" + ], + [ + "how is the word acquaintance spelled", + "spelling" + ], + [ + "how do you spell friend", + "spelling" + ], + [ + "how do i spell acquaintance", + "spelling" + ], + [ + "what's the right way to spell indict", + "spelling" + ], + [ + "i want to know how to correctly spell cemetery", + "spelling" + ], + [ + "how do you spell mississippi", + "spelling" + ], + [ + "i wish i knew how to spell mississippi", + "spelling" + ], + [ + "can you remind me how to spell because", + "spelling" + ], + [ + "i need to know how to spell conscience", + "spelling" + ], + [ + "i need to know how to spell xylophone", + "spelling" + ], + [ + "how do you spell guerrilla", + "spelling" + ], + [ + "i am not sure how to spell punctuation", + "spelling" + ], + [ + "i forget how to spell xylophone", + "spelling" + ], + [ + "i don't know how to spell spaghetti", + "spelling" + ], + [ + "i don't know how to spell threshold", + "spelling" + ], + [ + "i don't know how to spell circumference", + "spelling" + ], + [ + "i don't know how to spell squirrel", + "spelling" + ], + [ + "i don't know how to spell mississippi", + "spelling" + ], + [ + "how can i spell avocado", + "spelling" + ], + [ + "tell me the complete spelling of definitely", + "spelling" + ], + [ + "i'd like to know how to spell cemetary", + "spelling" + ], + [ + "tell me how handkerchief is spelled", + "spelling" + ], + [ + "i'd like to know how acommodate is spelled", + "spelling" + ], + [ + "count the number of the letter a in happiness", + "spelling" + ], + [ + "the word is happiness; how many a's can you find in that word", + "spelling" + ], + [ + "find all the \"a\"s in happiness", + "spelling" + ], + [ + "tell how many a's are in the word happiness", + "spelling" + ], + [ + "how many a's can you find in the word happiness", + "spelling" + ], + [ + "what is the correct spelling for antipathy", + "spelling" + ], + [ + "how does the dictionary spell antipathy", + "spelling" + ], + [ + "how do you spell antipathy", + "spelling" + ], + [ + "spell antipathy for me", + "spelling" + ], + [ + "can you give me a spelling for antipathy", + "spelling" + ], + [ + "how do you spell superficial", + "spelling" + ], + [ + "i need help spelling superficial", + "spelling" + ], + [ + "i need to know how to spell superficial", + "spelling" + ], + [ + "i can't figure out how to spell superficial", + "spelling" + ], + [ + "what is the right way to spell superficial", + "spelling" + ], + [ + "how many es are in receiving", + "spelling" + ], + [ + "i don't know how to spell anethesia", + "spelling" + ], + [ + "i don't know how to spell malfeasance", + "spelling" + ], + [ + "i don't know how to spell theater", + "spelling" + ], + [ + "i don't know how to spell apparently", + "spelling" + ], + [ + "what's the proper way of spelling seance", + "spelling" + ], + [ + "how many ts are in tethered", + "spelling" + ], + [ + "how many cs are in acquiescence", + "spelling" + ], + [ + "how many ss are in narcissism", + "spelling" + ], + [ + "how do you spell sanguine", + "spelling" + ], + [ + "can you help me spell facetiousness", + "spelling" + ], + [ + "i don't know how to spell drought", + "spelling" + ], + [ + "how man z's are in zombie", + "spelling" + ], + [ + "how's everything", + "greeting" + ], + [ + "how are things going", + "greeting" + ], + [ + "hello, anyone there", + "greeting" + ], + [ + "are you okay right now", + "greeting" + ], + [ + "are you doing okay", + "greeting" + ], + [ + "how's it going right now", + "greeting" + ], + [ + "ahoy hoy", + "greeting" + ], + [ + "hey there!", + "greeting" + ], + [ + "how is everything with you", + "greeting" + ], + [ + "hey hey!", + "greeting" + ], + [ + "how have you been doing", + "greeting" + ], + [ + "it's nice to see you", + "greeting" + ], + [ + "hello there!", + "greeting" + ], + [ + "how is it going", + "greeting" + ], + [ + "how are things with you", + "greeting" + ], + [ + "hiya!", + "greeting" + ], + [ + "what's up", + "greeting" + ], + [ + "how're you doing", + "greeting" + ], + [ + "it's good to see you", + "greeting" + ], + [ + "is everything going okay", + "greeting" + ], + [ + "how is everything going", + "greeting" + ], + [ + "how goes it", + "greeting" + ], + [ + "hello, ai", + "greeting" + ], + [ + "hey, ai", + "greeting" + ], + [ + "wake up, ai", + "greeting" + ], + [ + "good day", + "greeting" + ], + [ + "greetings to you", + "greeting" + ], + [ + "hello, friend", + "greeting" + ], + [ + "whats up with you", + "greeting" + ], + [ + "hey there fellow", + "greeting" + ], + [ + "whats up", + "greeting" + ], + [ + "yo, hows it going", + "greeting" + ], + [ + "how are things for you", + "greeting" + ], + [ + "are things going well for you", + "greeting" + ], + [ + "hello siri", + "greeting" + ], + [ + "hi there alexa", + "greeting" + ], + [ + "how are you doing, ai", + "greeting" + ], + [ + "ai how are you doing today", + "greeting" + ], + [ + "how are you doing today, ai", + "greeting" + ], + [ + "how is my ai doing", + "greeting" + ], + [ + "ai how are you doing on this fine day", + "greeting" + ], + [ + "heller", + "greeting" + ], + [ + "so how is everything", + "greeting" + ], + [ + "how are you this day", + "greeting" + ], + [ + "hi how are you", + "greeting" + ], + [ + "how is everything going for you", + "greeting" + ], + [ + "hi how is everything", + "greeting" + ], + [ + "well hello", + "greeting" + ], + [ + "just wanted to say hi", + "greeting" + ], + [ + "how is your day", + "greeting" + ], + [ + "why hello", + "greeting" + ], + [ + "are you well", + "greeting" + ], + [ + "hola", + "greeting" + ], + [ + "good to see you", + "greeting" + ], + [ + "how've you been feeling", + "greeting" + ], + [ + "how are things", + "greeting" + ], + [ + "are you doing well", + "greeting" + ], + [ + "good evening", + "greeting" + ], + [ + "yo", + "greeting" + ], + [ + "ai, how are you feeling", + "greeting" + ], + [ + "how is the ai doing", + "greeting" + ], + [ + "ai, how are you doing", + "greeting" + ], + [ + "hi ai", + "greeting" + ], + [ + "have you been good", + "greeting" + ], + [ + "is everything ok with you", + "greeting" + ], + [ + "how have you been", + "greeting" + ], + [ + "are you doing ok", + "greeting" + ], + [ + "how are you", + "greeting" + ], + [ + "how's life", + "greeting" + ], + [ + "what's up with you", + "greeting" + ], + [ + "what's going on", + "greeting" + ], + [ + "how's it going with you", + "greeting" + ], + [ + "how's ife treating you", + "greeting" + ], + [ + "hello how's it going", + "greeting" + ], + [ + "how are you today", + "greeting" + ], + [ + "can you tell me how you're doing today", + "greeting" + ], + [ + "how are you this fine day", + "greeting" + ], + [ + "how are things treating you", + "greeting" + ], + [ + "aloha", + "greeting" + ], + [ + "are you feeling okay", + "greeting" + ], + [ + "how do you feel", + "greeting" + ], + [ + "bonjour", + "greeting" + ], + [ + "how are things going for you", + "greeting" + ], + [ + "what do you feel like doing", + "greeting" + ], + [ + "hello, what's up", + "greeting" + ], + [ + "hey how's life", + "greeting" + ], + [ + "hi there", + "greeting" + ], + [ + "hey how's it hanging", + "greeting" + ], + [ + "tell me how you've been", + "greeting" + ], + [ + "how is life treating you", + "greeting" + ], + [ + "hi there, how are things", + "greeting" + ], + [ + "hello, how are you", + "greeting" + ], + [ + "hey, how's it going", + "greeting" + ], + [ + "hello, are you doing alright", + "greeting" + ], + [ + "hi! are you doing okay", + "greeting" + ], + [ + "what's happening", + "greeting" + ], + [ + "hey what's up", + "greeting" + ], + [ + "why, hello bandit", + "greeting" + ], + [ + "howdy, what's new", + "greeting" + ], + [ + "salutations!", + "greeting" + ], + [ + "make the settings go back to the original", + "reset_settings" + ], + [ + "go back the the settings you had originally", + "reset_settings" + ], + [ + "change settings to how they were originally", + "reset_settings" + ], + [ + "go back to your original settings", + "reset_settings" + ], + [ + "reset the factory settings", + "reset_settings" + ], + [ + "reset the factory settings please", + "reset_settings" + ], + [ + "reset the factory settings now please", + "reset_settings" + ], + [ + "please reset the factory settings", + "reset_settings" + ], + [ + "reset the factory settings if possible", + "reset_settings" + ], + [ + "go ahead and reset your factory settings", + "reset_settings" + ], + [ + "change to factory settings now", + "reset_settings" + ], + [ + "please go back to to factory settings now", + "reset_settings" + ], + [ + "go back to factory settings now", + "reset_settings" + ], + [ + "you need to go back to the original settings", + "reset_settings" + ], + [ + "go ahead and go back to the original settings", + "reset_settings" + ], + [ + "i want you to reset your factory settings", + "reset_settings" + ], + [ + "please go back to the original settings", + "reset_settings" + ], + [ + "please reset your factory settings", + "reset_settings" + ], + [ + "go back to the original settings now", + "reset_settings" + ], + [ + "please go back to the settings of the original", + "reset_settings" + ], + [ + "i need you to reset your factory settings", + "reset_settings" + ], + [ + "you got to go back to factory settings now", + "reset_settings" + ], + [ + "please go to factory settings now", + "reset_settings" + ], + [ + "restore my factory settings immediately please", + "reset_settings" + ], + [ + "go back to factory settings please", + "reset_settings" + ], + [ + "can you restore factory settings now", + "reset_settings" + ], + [ + "go back to the factory settings for this device", + "reset_settings" + ], + [ + "i want factory settings restores right now", + "reset_settings" + ], + [ + "do a hard reset to factory settings", + "reset_settings" + ], + [ + "i'd like to reset to factory settings", + "reset_settings" + ], + [ + "clear all settings in a reset", + "reset_settings" + ], + [ + "please revert all settings to factory default", + "reset_settings" + ], + [ + "i'd like to revert to factory settings", + "reset_settings" + ], + [ + "reset to factory default", + "reset_settings" + ], + [ + "do a hard reset", + "reset_settings" + ], + [ + "please revert to your factory settings", + "reset_settings" + ], + [ + "return to your factory settings", + "reset_settings" + ], + [ + "you need to reset your factory settings", + "reset_settings" + ], + [ + "would you reset your factory settings", + "reset_settings" + ], + [ + "you should reset your factory settings", + "reset_settings" + ], + [ + "could you reset your factory settings please", + "reset_settings" + ], + [ + "reset to original settings", + "reset_settings" + ], + [ + "return to default settings", + "reset_settings" + ], + [ + "return to factory default", + "reset_settings" + ], + [ + "change back to your initial settings please", + "reset_settings" + ], + [ + "go back to your normal settings please", + "reset_settings" + ], + [ + "alter back to your orginal settings", + "reset_settings" + ], + [ + "reset to your natural settings", + "reset_settings" + ], + [ + "change back to your factory settins", + "reset_settings" + ], + [ + "i want to go back to the factory settings", + "reset_settings" + ], + [ + "help me get my device back to it's factory settings", + "reset_settings" + ], + [ + "tell me how i can reset to factory settings", + "reset_settings" + ], + [ + "i want my original settings back", + "reset_settings" + ], + [ + "return it back to the original settings", + "reset_settings" + ], + [ + "please turn my settings back to the original settings", + "reset_settings" + ], + [ + "get my back to factory settings", + "reset_settings" + ], + [ + "refresh to factory defaults", + "reset_settings" + ], + [ + "reset to default settings please", + "reset_settings" + ], + [ + "reset device to original settings", + "reset_settings" + ], + [ + "reset to default settings", + "reset_settings" + ], + [ + "please change back to initial device settings", + "reset_settings" + ], + [ + "go back to initial factory state", + "reset_settings" + ], + [ + "go back to initial settings", + "reset_settings" + ], + [ + "make all settings the initial defaults if you would", + "reset_settings" + ], + [ + "revert to factory settings please", + "reset_settings" + ], + [ + "i want you to reset to brand new please", + "reset_settings" + ], + [ + "revert to your factory settings", + "reset_settings" + ], + [ + "restore your original settings", + "reset_settings" + ], + [ + "restore your factory settings, please", + "reset_settings" + ], + [ + "restore your original settings now", + "reset_settings" + ], + [ + "restore your original settings, please", + "reset_settings" + ], + [ + "revert back to your factory settings", + "reset_settings" + ], + [ + "return to your original settings, please", + "reset_settings" + ], + [ + "revert to your factory settings, please", + "reset_settings" + ], + [ + "switch back to your factory settings", + "reset_settings" + ], + [ + "revert back to your factory settings, please", + "reset_settings" + ], + [ + "is it possible to change to original settings", + "reset_settings" + ], + [ + "can you go back to my original settings", + "reset_settings" + ], + [ + "i need you to switch to my original settings", + "reset_settings" + ], + [ + "go to default setting", + "reset_settings" + ], + [ + "change back to default settings", + "reset_settings" + ], + [ + "i want to be switched back to my factory settings", + "reset_settings" + ], + [ + "i'd like to switch back to my factory settings", + "reset_settings" + ], + [ + "put me back on my factory settings", + "reset_settings" + ], + [ + "i need to switch back to my factory settings", + "reset_settings" + ], + [ + "i need to go back on my factory settings", + "reset_settings" + ], + [ + "return to your original settings", + "reset_settings" + ], + [ + "restore the factory settings", + "reset_settings" + ], + [ + "let's go to default settings", + "reset_settings" + ], + [ + "go to factory settings", + "reset_settings" + ], + [ + "would you please reboot yourself to factory settings", + "reset_settings" + ], + [ + "please go back to your factory settings", + "reset_settings" + ], + [ + "please reconfigure yourself back to factory settings", + "reset_settings" + ], + [ + "i would like you to revert to your factory settings", + "reset_settings" + ], + [ + "i want to put you back to original settings", + "reset_settings" + ], + [ + "i want you reset to factory settings", + "reset_settings" + ], + [ + "i want factory settings put back in place", + "reset_settings" + ], + [ + "i want to reset your settings to the original", + "reset_settings" + ], + [ + "go back to the original settings", + "reset_settings" + ], + [ + "go back to your factory settings", + "reset_settings" + ], + [ + "what's your full name", + "what_is_your_name" + ], + [ + "i didn't get your name", + "what_is_your_name" + ], + [ + "what's should i call you by", + "what_is_your_name" + ], + [ + "can you tell me the ai's name", + "what_is_your_name" + ], + [ + "what is the ai's name", + "what_is_your_name" + ], + [ + "does the ai have a name", + "what_is_your_name" + ], + [ + "i'd like to know what to call you", + "what_is_your_name" + ], + [ + "what name do you prefer", + "what_is_your_name" + ], + [ + "do you have a preference regarding what i should call you", + "what_is_your_name" + ], + [ + "do you have a name i can use", + "what_is_your_name" + ], + [ + "what are you called", + "what_is_your_name" + ], + [ + "give me your name", + "what_is_your_name" + ], + [ + "what do people call you", + "what_is_your_name" + ], + [ + "what is your full name", + "what_is_your_name" + ], + [ + "tell me your full name", + "what_is_your_name" + ], + [ + "should i call you something in particular", + "what_is_your_name" + ], + [ + "what should i refer to you as", + "what_is_your_name" + ], + [ + "what name would you like me to call you", + "what_is_your_name" + ], + [ + "what name do you want me to call you", + "what_is_your_name" + ], + [ + "do you have a name that i can call you", + "what_is_your_name" + ], + [ + "what name should i use when talking with you", + "what_is_your_name" + ], + [ + "is there a particular name i should call you", + "what_is_your_name" + ], + [ + "is there a name that you preferred to be called by", + "what_is_your_name" + ], + [ + "please tell me the name i should use when talking to you", + "what_is_your_name" + ], + [ + "can i have your name please", + "what_is_your_name" + ], + [ + "can you me what they call you", + "what_is_your_name" + ], + [ + "and what would your name be", + "what_is_your_name" + ], + [ + "what name should i use for you", + "what_is_your_name" + ], + [ + "what would your name be", + "what_is_your_name" + ], + [ + "what do you want me to call you", + "what_is_your_name" + ], + [ + "what would you like to be called", + "what_is_your_name" + ], + [ + "what do you want me to refer to you as", + "what_is_your_name" + ], + [ + "what name would you like me to use", + "what_is_your_name" + ], + [ + "what name should i call you", + "what_is_your_name" + ], + [ + "do you have a name", + "what_is_your_name" + ], + [ + "please tell me your name", + "what_is_your_name" + ], + [ + "how should i refer to you", + "what_is_your_name" + ], + [ + "whats your name", + "what_is_your_name" + ], + [ + "how would you like me to refer to you", + "what_is_your_name" + ], + [ + "what name should i use to call for you", + "what_is_your_name" + ], + [ + "what is the name i should use to refer to you", + "what_is_your_name" + ], + [ + "do you know your name", + "what_is_your_name" + ], + [ + "who gave you your name", + "what_is_your_name" + ], + [ + "what name was given to you", + "what_is_your_name" + ], + [ + "what can i address you", + "what_is_your_name" + ], + [ + "what name do you like to go by", + "what_is_your_name" + ], + [ + "i want to know the name that was given by the person who made you", + "what_is_your_name" + ], + [ + "do people call you by a certain name what is it", + "what_is_your_name" + ], + [ + "what do you prefer being called", + "what_is_your_name" + ], + [ + "what do you prefer to be called", + "what_is_your_name" + ], + [ + "what did your friends call you", + "what_is_your_name" + ], + [ + "do you go by any nicknames", + "what_is_your_name" + ], + [ + "what is you name", + "what_is_your_name" + ], + [ + "what's your first name", + "what_is_your_name" + ], + [ + "what do you like being called", + "what_is_your_name" + ], + [ + "how would you like me to call you", + "what_is_your_name" + ], + [ + "who are you known as", + "what_is_your_name" + ], + [ + "how can i get your attention", + "what_is_your_name" + ], + [ + "what do you answer to", + "what_is_your_name" + ], + [ + "do you have a way you like to be referred to", + "what_is_your_name" + ], + [ + "can you tell me your name", + "what_is_your_name" + ], + [ + "how do i activate you", + "what_is_your_name" + ], + [ + "what name do you answer to", + "what_is_your_name" + ], + [ + "what can i refer to you by", + "what_is_your_name" + ], + [ + "what do they call you", + "what_is_your_name" + ], + [ + "how are you named", + "what_is_your_name" + ], + [ + "what's your designation", + "what_is_your_name" + ], + [ + "can i call you by any name", + "what_is_your_name" + ], + [ + "i want your name", + "what_is_your_name" + ], + [ + "i need to know your name", + "what_is_your_name" + ], + [ + "i need your name", + "what_is_your_name" + ], + [ + "i wanna know your name", + "what_is_your_name" + ], + [ + "i'd like your name", + "what_is_your_name" + ], + [ + "tell me your name", + "what_is_your_name" + ], + [ + "you must tell me your name", + "what_is_your_name" + ], + [ + "what name do you want to be called", + "what_is_your_name" + ], + [ + "when referring to you, what name do you want me to use", + "what_is_your_name" + ], + [ + "would you tell me your name", + "what_is_your_name" + ], + [ + "provide the name i should use to refer to you", + "what_is_your_name" + ], + [ + "i would like to know your name", + "what_is_your_name" + ], + [ + "hello, may i get your name", + "what_is_your_name" + ], + [ + "i am needing to know your name", + "what_is_your_name" + ], + [ + "tell me what name to use to refer to you", + "what_is_your_name" + ], + [ + "state your name", + "what_is_your_name" + ], + [ + "when referring to you, what name should i use", + "what_is_your_name" + ], + [ + "i want to know your name", + "what_is_your_name" + ], + [ + "ai, do you like your name", + "what_is_your_name" + ], + [ + "ai, what can i call you", + "what_is_your_name" + ], + [ + "ai, what's your name", + "what_is_your_name" + ], + [ + "ai, what do people call you", + "what_is_your_name" + ], + [ + "ai, what should i call you", + "what_is_your_name" + ], + [ + "please introduce yourself", + "what_is_your_name" + ], + [ + "could you tell me your name", + "what_is_your_name" + ], + [ + "would you like to introduce yourself", + "what_is_your_name" + ], + [ + "tell me about yourself", + "what_is_your_name" + ], + [ + "what name should i use to address you", + "what_is_your_name" + ], + [ + "what name should i refer to you as", + "what_is_your_name" + ], + [ + "how would you like to be referred to", + "what_is_your_name" + ], + [ + "what name should i use when i call you", + "what_is_your_name" + ], + [ + "do you have a name i should call you by", + "what_is_your_name" + ], + [ + "do a websearch for direct deposit set up", + "direct_deposit" + ], + [ + "search google for how to set up direct deposit", + "direct_deposit" + ], + [ + "info on setting up direct deposit", + "direct_deposit" + ], + [ + "info on direct deposit set-up", + "direct_deposit" + ], + [ + "tell me how to get my paycheck on direct deposit", + "direct_deposit" + ], + [ + "what are the steps for setting up direct deposit for my paycheck", + "direct_deposit" + ], + [ + "give me instructions to set up direct deposit for my paycheck", + "direct_deposit" + ], + [ + "i want to set up direct deposit for my paycheck, what do i need to do", + "direct_deposit" + ], + [ + "how do i set up direct deposit for my paycheck", + "direct_deposit" + ], + [ + "i'd really like to set up a direct deposit for my paycheck", + "direct_deposit" + ], + [ + "i wanna set up a direct deposit for my paycheck", + "direct_deposit" + ], + [ + "i'd like to set up a direct deposit for my paycheck", + "direct_deposit" + ], + [ + "i would like to set up direct deposit", + "direct_deposit" + ], + [ + "set up direct deposit for me", + "direct_deposit" + ], + [ + "i need to set up a direct deposit for my paycheck", + "direct_deposit" + ], + [ + "set up a direct deposit", + "direct_deposit" + ], + [ + "i need to set up direct deposit", + "direct_deposit" + ], + [ + "i want to set direct deposit", + "direct_deposit" + ], + [ + "help me get my pay check deposited directly to my home checking account", + "direct_deposit" + ], + [ + "set my paycheck up for direct deposit", + "direct_deposit" + ], + [ + "i want my paycheck to go directly to my bank account", + "direct_deposit" + ], + [ + "set up direct deposit to my money market account for my pay check", + "direct_deposit" + ], + [ + "how do i get direct deposit for my paycheck", + "direct_deposit" + ], + [ + "what's the procedure to get direct deposit for my paycheck", + "direct_deposit" + ], + [ + "set up payroll direct deposit to my checking account", + "direct_deposit" + ], + [ + "make it so my paycheck goes directly into my savings account", + "direct_deposit" + ], + [ + "how can i have my paycheck directly deposited", + "direct_deposit" + ], + [ + "i need to get direct deposit on my bofa account", + "direct_deposit" + ], + [ + "what do i need to set up direct deposit", + "direct_deposit" + ], + [ + "what is needed for setting up direct deposit", + "direct_deposit" + ], + [ + "can you walk me through setting up direct deposit", + "direct_deposit" + ], + [ + "what is needed to set up direct deposit", + "direct_deposit" + ], + [ + "i need help to set up direct deposit", + "direct_deposit" + ], + [ + "would you help me set up direct deposit", + "direct_deposit" + ], + [ + "assist me to set up direct deposit", + "direct_deposit" + ], + [ + "tell me how to set up direct deposit", + "direct_deposit" + ], + [ + "tell me how to set up direct deposit for my paycheck", + "direct_deposit" + ], + [ + "how do i direct deposit my paycheck", + "direct_deposit" + ], + [ + "what do i do to have my paycheck deposited directly in my account", + "direct_deposit" + ], + [ + "how can i have my paycheck directly deposited in my account", + "direct_deposit" + ], + [ + "i would like to set up a direct deposit, please tell me how", + "direct_deposit" + ], + [ + "how can i set up a direct deposit with my checking account", + "direct_deposit" + ], + [ + "can you tell me how to set up a direct deposit", + "direct_deposit" + ], + [ + "can you help me set up a direct depost", + "direct_deposit" + ], + [ + "how can i turn on direct deposit", + "direct_deposit" + ], + [ + "how can i set up direct deposits from my job to my bank", + "direct_deposit" + ], + [ + "what steps do i need to do to set up direct deposit", + "direct_deposit" + ], + [ + "i want to set up direct deposit what do i need to do", + "direct_deposit" + ], + [ + "what do i need to do to start direct deposit", + "direct_deposit" + ], + [ + "how do i go about setting up direct deposit", + "direct_deposit" + ], + [ + "how do i get direct deposit set up", + "direct_deposit" + ], + [ + "i'd like to know about setting up direct deposit", + "direct_deposit" + ], + [ + "can you tell me how to set up direct depost", + "direct_deposit" + ], + [ + "how do i get my check directly deposited", + "direct_deposit" + ], + [ + "direct deposit information", + "direct_deposit" + ], + [ + "how do i set up instant paycheck", + "direct_deposit" + ], + [ + "how do i direct deposit my check", + "direct_deposit" + ], + [ + "help me set up direct deposit to my bank of hawaii checking account", + "direct_deposit" + ], + [ + "can you show me how to set up direct deposit for my paycheck to my first hawaiian bank account", + "direct_deposit" + ], + [ + "i want to set up direct deposit to my first hawaiian bank account", + "direct_deposit" + ], + [ + "can you show me how to set up my paycheck to be direct deposit to my first hawaiian bank account", + "direct_deposit" + ], + [ + "how do i set up direct deposit to my bank of hawaii account", + "direct_deposit" + ], + [ + "help me set up a direct deposit", + "direct_deposit" + ], + [ + "how is a direct deposit set up", + "direct_deposit" + ], + [ + "how would i go about setting up a direct deposit", + "direct_deposit" + ], + [ + "i need to set up a direct deposit", + "direct_deposit" + ], + [ + "tell me how to set up a direct deposit", + "direct_deposit" + ], + [ + "onpay gives you two convenient ways to pay your employees", + "direct_deposit" + ], + [ + "can you help me set up direct deposit", + "direct_deposit" + ], + [ + "i need some guidance when it comes to direct deposit", + "direct_deposit" + ], + [ + "i want to switch to direct deposit", + "direct_deposit" + ], + [ + "how can i set up direct deposit", + "direct_deposit" + ], + [ + "what are the steps to direct deposit my check", + "direct_deposit" + ], + [ + "is there a specific way to set up direct deposit", + "direct_deposit" + ], + [ + "how do i arrange a direct deposit into my savings account", + "direct_deposit" + ], + [ + "how do you set up direct deposit", + "direct_deposit" + ], + [ + "can you teach me how to set up direct deposit, or show me who can", + "direct_deposit" + ], + [ + "can you show me how to set up direct deposit", + "direct_deposit" + ], + [ + "if i would like to set up direct deposit, how do i do it", + "direct_deposit" + ], + [ + "direct deposit instructions", + "direct_deposit" + ], + [ + "help setting up direct deposit", + "direct_deposit" + ], + [ + "please help me set up direct deposit", + "direct_deposit" + ], + [ + "what are the steps for setting up direct deposit", + "direct_deposit" + ], + [ + "how does one go about setting up direct deposit", + "direct_deposit" + ], + [ + "how to set up direct deposit for paychecks", + "direct_deposit" + ], + [ + "what's needed to direct deposit my paycheck", + "direct_deposit" + ], + [ + "what is required to direct deposit my paycheck", + "direct_deposit" + ], + [ + "how to direct deposit my paycheck", + "direct_deposit" + ], + [ + "i need to get my paycheck direct deposited to my chase account", + "direct_deposit" + ], + [ + "i'd like to have my paycheck direct deposited to my chase account", + "direct_deposit" + ], + [ + "what are the steps to set up direct deposit to my chase account", + "direct_deposit" + ], + [ + "how do i get my paycheck direct deposited to my chase account", + "direct_deposit" + ], + [ + "how do i set up direct deposit to my chase account", + "direct_deposit" + ], + [ + "what do i do to enable direct deposit", + "direct_deposit" + ], + [ + "can i get paychecks directly deposited to my bank of america account", + "direct_deposit" + ], + [ + "i have a great western bank account i want direct deposits to go to", + "direct_deposit" + ], + [ + "i'd like my paychecks direct deposited in my navyfed checking account", + "direct_deposit" + ], + [ + "can you walk me through setting up direct deposits to my bank of internet savings account", + "direct_deposit" + ], + [ + "how do i get paychecks put directly in my sunflower savings account", + "direct_deposit" + ], + [ + "let me set up direct deposit for this", + "direct_deposit" + ], + [ + "i want to know my interest rate", + "interest_rate" + ], + [ + "tell me my interest rate", + "interest_rate" + ], + [ + "what interest rate am i paying", + "interest_rate" + ], + [ + "my interest rate please", + "interest_rate" + ], + [ + "how do i know the interest rate for my signature account", + "interest_rate" + ], + [ + "how can i figure out my interest rate for my umpqua account", + "interest_rate" + ], + [ + "how can i find my interest rate for my alliance account", + "interest_rate" + ], + [ + "how can i figure out the interest rate for my columbia account", + "interest_rate" + ], + [ + "how can i find the interest rate for my red river account", + "interest_rate" + ], + [ + "what is the rate of interest on my savings account", + "interest_rate" + ], + [ + "how much interest am i getting on my savings", + "interest_rate" + ], + [ + "check the interest rate on my savings account", + "interest_rate" + ], + [ + "tell me my current savings account's interest rate", + "interest_rate" + ], + [ + "what's the interest rate on my savings", + "interest_rate" + ], + [ + "what is my interest rate payment", + "interest_rate" + ], + [ + "how do i figure out my intetest rate", + "interest_rate" + ], + [ + "how to calculate my interest rate", + "interest_rate" + ], + [ + "what is my intetest rate", + "interest_rate" + ], + [ + "i must find the interest rate for my checking account", + "interest_rate" + ], + [ + "i gotta find the interest rate for my checking account", + "interest_rate" + ], + [ + "i would love to know the interest rate on my bank of america cd account", + "interest_rate" + ], + [ + "i need to know the interest rate on my bank of america cd account", + "interest_rate" + ], + [ + "what is the interest rate on my bank of america cd account", + "interest_rate" + ], + [ + "i have to find the interest rate for my checking account", + "interest_rate" + ], + [ + "i must know the interest rate on my bank of america cd account", + "interest_rate" + ], + [ + "i really need to find the interest rate for my checking account", + "interest_rate" + ], + [ + "i need to find the interest rate for my checking account", + "interest_rate" + ], + [ + "i wanna know the interest rate on my bank of america cd account", + "interest_rate" + ], + [ + "what is the interest rate i am receiving from the start of the year", + "interest_rate" + ], + [ + "what's the interest rate i have from illinois national", + "interest_rate" + ], + [ + "can you tell me what my interest rate from first federal is", + "interest_rate" + ], + [ + "x has given me an interest rate, what is it", + "interest_rate" + ], + [ + "what's my interest rate from january", + "interest_rate" + ], + [ + "i need the interest rate on my capital one account", + "interest_rate" + ], + [ + "could you help me find the interest on my chase account", + "interest_rate" + ], + [ + "i need help finding the apr on my aspire loan", + "interest_rate" + ], + [ + "hi, can you tell me the interest on my ira", + "interest_rate" + ], + [ + "can you help me find the interest rate for my sba account", + "interest_rate" + ], + [ + "where do i go to view the interest rate on my brighton account", + "interest_rate" + ], + [ + "what do i need to do to look up my 1st republic account's interest rate", + "interest_rate" + ], + [ + "tell me how to locate the interest rate for my jonah account", + "interest_rate" + ], + [ + "what is the interest rate on my scotiabank account", + "interest_rate" + ], + [ + "please tell me what i can expect my bank of america interest rate to be", + "interest_rate" + ], + [ + "if i'm using citibank, what is the interest rate", + "interest_rate" + ], + [ + "what is the interest rate at chase", + "interest_rate" + ], + [ + "what would the interest rate at wells fargo be", + "interest_rate" + ], + [ + "i would like to know my chase interest rate", + "interest_rate" + ], + [ + "what is my current interest rate", + "interest_rate" + ], + [ + "what is my annual percentage rate", + "interest_rate" + ], + [ + "do you know what the interest rate is on my account", + "interest_rate" + ], + [ + "how percentage am i earning annually on my account", + "interest_rate" + ], + [ + "what interest rate will i get from city national", + "interest_rate" + ], + [ + "what interest rate will regions give me", + "interest_rate" + ], + [ + "what is the best interest rate i can get from now on", + "interest_rate" + ], + [ + "what is the interest rate i can get from the beginning of next year", + "interest_rate" + ], + [ + "is there any info on my savings interest rate online", + "interest_rate" + ], + [ + "is my savings interest rate too high", + "interest_rate" + ], + [ + "i need to know my interest rate", + "interest_rate" + ], + [ + "can i find out my checking interest rate online", + "interest_rate" + ], + [ + "is my savings interest rate too low", + "interest_rate" + ], + [ + "what is my interest rate for chase bank", + "interest_rate" + ], + [ + "how are the interest rates at chase bank", + "interest_rate" + ], + [ + "what is my credit card interest rate", + "interest_rate" + ], + [ + "i want to know td banks interest rates", + "interest_rate" + ], + [ + "how's my interest rate", + "interest_rate" + ], + [ + "does my checking interest rate seem low", + "interest_rate" + ], + [ + "what's the interest rate for my checking account", + "interest_rate" + ], + [ + "what's td bank's interest rate", + "interest_rate" + ], + [ + "can you tell me my current interest rate", + "interest_rate" + ], + [ + "let me know what my interest rate is", + "interest_rate" + ], + [ + "could you tell me my interest rate", + "interest_rate" + ], + [ + "what's my current interest rate, if you could look", + "interest_rate" + ], + [ + "what's my interest rate", + "interest_rate" + ], + [ + "what interest rate am i getting", + "interest_rate" + ], + [ + "could you find my interest rate for me", + "interest_rate" + ], + [ + "what interest rate am i getting from onewest bank", + "interest_rate" + ], + [ + "what interest rate am i getting from citigroup", + "interest_rate" + ], + [ + "what interest rate am i getting from chase", + "interest_rate" + ], + [ + "will you tell me the interest rate", + "interest_rate" + ], + [ + "can you tell me the interest rate", + "interest_rate" + ], + [ + "will you tell me my interest rate", + "interest_rate" + ], + [ + "would you tell me the interest rate", + "interest_rate" + ], + [ + "how much is the interest rate for the account i have at bluebird", + "interest_rate" + ], + [ + "how do i know what interest rate chase has", + "interest_rate" + ], + [ + "let me know my ally interest rate", + "interest_rate" + ], + [ + "on my chase bank account what is the interest rate", + "interest_rate" + ], + [ + "i need to know my b of a interest rate", + "interest_rate" + ], + [ + "can you tell me my interest rate", + "interest_rate" + ], + [ + "find my interest rate", + "interest_rate" + ], + [ + "what is my interest rate", + "interest_rate" + ], + [ + "help me determine my interest rate", + "interest_rate" + ], + [ + "what is the interest rate on my charles schwab checking account", + "interest_rate" + ], + [ + "what is the interest rate on my chase slate credit card", + "interest_rate" + ], + [ + "what is the interest rate on my barclay card arrival credit card", + "interest_rate" + ], + [ + "what is the interest rate on my capital one credit card", + "interest_rate" + ], + [ + "what is the interest rate on my bank of america credit card", + "interest_rate" + ], + [ + "i need to know the interest rate that applies to my personal loan", + "interest_rate" + ], + [ + "please tell me my current interest rate for my home equity line of credit", + "interest_rate" + ], + [ + "what is the interest rate on my money market account", + "interest_rate" + ], + [ + "can you please tell me the interest rate for cash advances on my visa", + "interest_rate" + ], + [ + "can you see if i can get a higher limit on my discovery card", + "credit_limit_change" + ], + [ + "can my credit limit on my discovery card go up", + "credit_limit_change" + ], + [ + "may i have a higher limit on my mastercard", + "credit_limit_change" + ], + [ + "can i get a higher credit limit on my amex card", + "credit_limit_change" + ], + [ + "is there a way to get a larger limit on my bank of america card", + "credit_limit_change" + ], + [ + "what's the possibility of getting a credit limit increase on my visa", + "credit_limit_change" + ], + [ + "is it possible to increase my credit limit to 1000 dollars", + "credit_limit_change" + ], + [ + "is it possible to have a higher limit on my visa", + "credit_limit_change" + ], + [ + "can i get a higher limit on my american express card", + "credit_limit_change" + ], + [ + "i'd like to increase my credit spending limit to 500 dollars", + "credit_limit_change" + ], + [ + "am i allowed to increase the credit limit on my mastercard", + "credit_limit_change" + ], + [ + "is it possible to get a credit limit increase to 3000", + "credit_limit_change" + ], + [ + "i'd like to increase my credit limit up to four thousand", + "credit_limit_change" + ], + [ + "can i increase my credit limit from 1000 to 2000 please", + "credit_limit_change" + ], + [ + "is it possible to increase the limit on my visa", + "credit_limit_change" + ], + [ + "should i increase my credit limitfor cardx", + "credit_limit_change" + ], + [ + "can i have my credit limit changed", + "credit_limit_change" + ], + [ + "credit limit change", + "credit_limit_change" + ], + [ + "please change credit", + "credit_limit_change" + ], + [ + "please change the credit limit", + "credit_limit_change" + ], + [ + "i want my credit limit changed", + "credit_limit_change" + ], + [ + "can i get a credit increase for my visa", + "credit_limit_change" + ], + [ + "can i get a higher limit on my visa card", + "credit_limit_change" + ], + [ + "can my limit be increased for my visa", + "credit_limit_change" + ], + [ + "can you increase how much i can spend on my visa", + "credit_limit_change" + ], + [ + "will you allow more spending on my visa", + "credit_limit_change" + ], + [ + "is it possible to increase my visa card limit", + "credit_limit_change" + ], + [ + "is the limit on my visa card able to be increased", + "credit_limit_change" + ], + [ + "is there a way to increase the limit on my visa card", + "credit_limit_change" + ], + [ + "am i able to increase the limit on my visa card", + "credit_limit_change" + ], + [ + "how do i increase the limit on my visa card", + "credit_limit_change" + ], + [ + "can you increase my credit limit", + "credit_limit_change" + ], + [ + "can you change my credit limit", + "credit_limit_change" + ], + [ + "can you change the limit on my credit please", + "credit_limit_change" + ], + [ + "i need to increase my credit limit", + "credit_limit_change" + ], + [ + "change my credit limit, please", + "credit_limit_change" + ], + [ + "help me change my credit limit", + "credit_limit_change" + ], + [ + "what do i do to change my credit limit", + "credit_limit_change" + ], + [ + "get my credit limit changed", + "credit_limit_change" + ], + [ + "i want to change my credit limit", + "credit_limit_change" + ], + [ + "please help me increase my mastercard credit card limit", + "credit_limit_change" + ], + [ + "i need to increase my credit limit for my visa credit card, can you assist me", + "credit_limit_change" + ], + [ + "i would like to increase my bank of america credit limit, can you help me", + "credit_limit_change" + ], + [ + "is there a way to increase the credit limit on my american express card", + "credit_limit_change" + ], + [ + "how can i increase my aa credit card limit", + "credit_limit_change" + ], + [ + "would it be possible to increase my chase card's limit", + "credit_limit_change" + ], + [ + "how do i raise the limit on my visa card", + "credit_limit_change" + ], + [ + "how would i raise my credit spending by 250 dollars", + "credit_limit_change" + ], + [ + "can i raise the limit to 500 dollars", + "credit_limit_change" + ], + [ + "can i get a credit limit raise on my credit card", + "credit_limit_change" + ], + [ + "how would i raise my credit spending by 2500 dollars", + "credit_limit_change" + ], + [ + "would i be able to increase my available credit by 600 dollars", + "credit_limit_change" + ], + [ + "i need a credit raise by 1000 dollars", + "credit_limit_change" + ], + [ + "is there a way to raise my mastercard credit", + "credit_limit_change" + ], + [ + "how would i go about raising my gold card limit", + "credit_limit_change" + ], + [ + "please increase my credit limit to $9,000", + "credit_limit_change" + ], + [ + "how do i request a credit limit increase on my visa", + "credit_limit_change" + ], + [ + "is it possible to get a new credit limit of $10,000", + "credit_limit_change" + ], + [ + "is it possible to increase the credit limit on my mastercard", + "credit_limit_change" + ], + [ + "can you increase my credit limit to $7,500", + "credit_limit_change" + ], + [ + "can i raise my credit limit to $12,000", + "credit_limit_change" + ], + [ + "tell me if i can get a higher limit on my visa", + "credit_limit_change" + ], + [ + "can i get my credit limit increased to $15,000", + "credit_limit_change" + ], + [ + "how do increase the credit limit on my visa card", + "credit_limit_change" + ], + [ + "can i get a higher credit limit on my american express", + "credit_limit_change" + ], + [ + "can i increase the credit limit for my usaa card", + "credit_limit_change" + ], + [ + "can i increase the credit limit on my kohls card", + "credit_limit_change" + ], + [ + "can i increase the credit limit for my navy federal card", + "credit_limit_change" + ], + [ + "can i increase my credit limit to 500 dollars", + "credit_limit_change" + ], + [ + "can i increase the credit limit on my target card", + "credit_limit_change" + ], + [ + "can i increase the credit limit for my bank of the west card", + "credit_limit_change" + ], + [ + "can i increase my credit limit to 700 dollars", + "credit_limit_change" + ], + [ + "can i increase the credit limit on my maurices card", + "credit_limit_change" + ], + [ + "can i increase the credit limit on my old navy card", + "credit_limit_change" + ], + [ + "can i increase my credit limit to 800 dollars", + "credit_limit_change" + ], + [ + "can i increase my credit limit to 1200 dollars", + "credit_limit_change" + ], + [ + "can i increase the credit limit for my chase card", + "credit_limit_change" + ], + [ + "can i increase the credit limit for my bank of america card", + "credit_limit_change" + ], + [ + "can i increase my credit limit to 1100 dollars", + "credit_limit_change" + ], + [ + "can i increase the credit limit on my walmart card", + "credit_limit_change" + ], + [ + "can you increase my credit limit to one thousand dollars", + "credit_limit_change" + ], + [ + "can my credit limit be increased to one thousand dollars", + "credit_limit_change" + ], + [ + "tell me if my credit limit can be increased to one thousand dollars", + "credit_limit_change" + ], + [ + "please see if you can increase my credit limit to one thousand dollars", + "credit_limit_change" + ], + [ + "i want to increase my credit limit to $1000, if possible", + "credit_limit_change" + ], + [ + "can i increase thencrdeit limit for my chase visa card", + "credit_limit_change" + ], + [ + "can i increase the credit limit for my american express card", + "credit_limit_change" + ], + [ + "can i increase the credit limit for my western union credit card", + "credit_limit_change" + ], + [ + "can i increase the credit limit for my wells fargo credit card", + "credit_limit_change" + ], + [ + "can i increase the credit limit for my visa platinum card", + "credit_limit_change" + ], + [ + "is it possible to increase the credit limit for my discover card", + "credit_limit_change" + ], + [ + "is it possible to raise the credit limit for my discover card", + "credit_limit_change" + ], + [ + "can i raise the credit limit for my discover card", + "credit_limit_change" + ], + [ + "will they let me up my credit limit to $1000", + "credit_limit_change" + ], + [ + "will i be able to increase my credit limit to $1000", + "credit_limit_change" + ], + [ + "can i up my credit limit to $1000", + "credit_limit_change" + ], + [ + "am i allowed to increase my credit limit to $1000", + "credit_limit_change" + ], + [ + "is it possible to increase my credit limit to $1000", + "credit_limit_change" + ], + [ + "can i get more money on my discover card", + "credit_limit_change" + ], + [ + "help increasing credit on discover card", + "credit_limit_change" + ], + [ + "what kinds of things are you into", + "what_are_your_hobbies" + ], + [ + "what's your favorite hobby", + "what_are_your_hobbies" + ], + [ + "what do you like to do in your spare time", + "what_are_your_hobbies" + ], + [ + "what do you do for fun", + "what_are_your_hobbies" + ], + [ + "do you have any hobbies", + "what_are_your_hobbies" + ], + [ + "do you have any past-times", + "what_are_your_hobbies" + ], + [ + "what are your favorite hobbies to take part in", + "what_are_your_hobbies" + ], + [ + "what things do you like to do", + "what_are_your_hobbies" + ], + [ + "what are your favorite hobbies", + "what_are_your_hobbies" + ], + [ + "what are your favorite things to do", + "what_are_your_hobbies" + ], + [ + "what are ai's hobbies", + "what_are_your_hobbies" + ], + [ + "i want to know if you have hobbies", + "what_are_your_hobbies" + ], + [ + "i'd like to know your hobbies", + "what_are_your_hobbies" + ], + [ + "let's talk about your hobbies", + "what_are_your_hobbies" + ], + [ + "can you tell me about your hobbies", + "what_are_your_hobbies" + ], + [ + "tell me your hobbies", + "what_are_your_hobbies" + ], + [ + "do ai have hobbies and if so what are yours", + "what_are_your_hobbies" + ], + [ + "what are you hobbies", + "what_are_your_hobbies" + ], + [ + "do you have any hobbies to speak of", + "what_are_your_hobbies" + ], + [ + "what hobbies do you do", + "what_are_your_hobbies" + ], + [ + "how do you spend your spare time", + "what_are_your_hobbies" + ], + [ + "what do you like to do when you have spare time", + "what_are_your_hobbies" + ], + [ + "what do you do when you're not working", + "what_are_your_hobbies" + ], + [ + "is there anything you like to do in your free time", + "what_are_your_hobbies" + ], + [ + "what are the things you like to do for fun", + "what_are_your_hobbies" + ], + [ + "what sort of things do you or work on for fun when you have extra time", + "what_are_your_hobbies" + ], + [ + "are there activities that you enjoy doing in your free time", + "what_are_your_hobbies" + ], + [ + "what are some things you like doing", + "what_are_your_hobbies" + ], + [ + "so what sort of hobbies are you into", + "what_are_your_hobbies" + ], + [ + "what do you do when you're not working, for fun", + "what_are_your_hobbies" + ], + [ + "what do you like to do when you're not working", + "what_are_your_hobbies" + ], + [ + "what sorts of things do you do to have a good time", + "what_are_your_hobbies" + ], + [ + "what kind of things do you do when you have free time", + "what_are_your_hobbies" + ], + [ + "can you describe your hobbies to me", + "what_are_your_hobbies" + ], + [ + "please tell me your hobbies", + "what_are_your_hobbies" + ], + [ + "tell me all about your hobbies", + "what_are_your_hobbies" + ], + [ + "i'd like to hear about your hobbies", + "what_are_your_hobbies" + ], + [ + "what things do you enjoy doing", + "what_are_your_hobbies" + ], + [ + "what are some things that you enjoy", + "what_are_your_hobbies" + ], + [ + "what do you like doing in your free time", + "what_are_your_hobbies" + ], + [ + "do you have anything you enjoy to do", + "what_are_your_hobbies" + ], + [ + "i like to paint in my free time-do you have any hobbies like that", + "what_are_your_hobbies" + ], + [ + "what hobbies do you like doing", + "what_are_your_hobbies" + ], + [ + "do you enjoy any hobbies", + "what_are_your_hobbies" + ], + [ + "what other hobbies do you enjoy", + "what_are_your_hobbies" + ], + [ + "what kinds of hobbies do you enjoy", + "what_are_your_hobbies" + ], + [ + "what are some of the hobbies you enjoy doing", + "what_are_your_hobbies" + ], + [ + "what do you enjoy doing while not working", + "what_are_your_hobbies" + ], + [ + "any hobbies", + "what_are_your_hobbies" + ], + [ + "what do you do to occupy your free time", + "what_are_your_hobbies" + ], + [ + "i would like to know what hobbies you enjoy", + "what_are_your_hobbies" + ], + [ + "what hobbies pique your interest", + "what_are_your_hobbies" + ], + [ + "what do you do in your spare time", + "what_are_your_hobbies" + ], + [ + "what do you do for hobbies", + "what_are_your_hobbies" + ], + [ + "what sorts of activities do you enjoy", + "what_are_your_hobbies" + ], + [ + "what kinds of activities do you enjoy", + "what_are_your_hobbies" + ], + [ + "what types of activities do you enjoy", + "what_are_your_hobbies" + ], + [ + "what sorts of hobbies do you enjoy", + "what_are_your_hobbies" + ], + [ + "what kind of activities do you enjoy", + "what_are_your_hobbies" + ], + [ + "what's your hobbies", + "what_are_your_hobbies" + ], + [ + "what things do you do for fun", + "what_are_your_hobbies" + ], + [ + "what hobbies do you like", + "what_are_your_hobbies" + ], + [ + "what do you like to do for fun", + "what_are_your_hobbies" + ], + [ + "what are some things you like to do", + "what_are_your_hobbies" + ], + [ + "tell me what you do for fun", + "what_are_your_hobbies" + ], + [ + "can you tell me some of your hobbies", + "what_are_your_hobbies" + ], + [ + "might you have any hobbies", + "what_are_your_hobbies" + ], + [ + "what kinds of things do you do for hobbies", + "what_are_your_hobbies" + ], + [ + "share some of your hobbies with me", + "what_are_your_hobbies" + ], + [ + "what keeps you busy in your free time", + "what_are_your_hobbies" + ], + [ + "what makes you happy in your free time", + "what_are_your_hobbies" + ], + [ + "what do you do in your down time", + "what_are_your_hobbies" + ], + [ + "please share your hobbies with me", + "what_are_your_hobbies" + ], + [ + "lets talk about your hobbies", + "what_are_your_hobbies" + ], + [ + "what kind of hobbies do you have", + "what_are_your_hobbies" + ], + [ + "what hobbies do you enjoy in your free time", + "what_are_your_hobbies" + ], + [ + "what kind of hobbies do you like to do", + "what_are_your_hobbies" + ], + [ + "what sort of things do you enjoy", + "what_are_your_hobbies" + ], + [ + "what are your favorite activities", + "what_are_your_hobbies" + ], + [ + "what hobbies do you like to partake in", + "what_are_your_hobbies" + ], + [ + "what sort of hobbies do you enjoy", + "what_are_your_hobbies" + ], + [ + "what do you do for fun in your free time", + "what_are_your_hobbies" + ], + [ + "tell me what you do in your free time", + "what_are_your_hobbies" + ], + [ + "what you do at the free time", + "what_are_your_hobbies" + ], + [ + "so what do you do at free time", + "what_are_your_hobbies" + ], + [ + "at free time what do you do", + "what_are_your_hobbies" + ], + [ + "what do you enjoy doing in your leisure time", + "what_are_your_hobbies" + ], + [ + "what types of hobbies do you enjoy", + "what_are_your_hobbies" + ], + [ + "what types of things do you like to do in your spare time", + "what_are_your_hobbies" + ], + [ + "what sorts of things are you into", + "what_are_your_hobbies" + ], + [ + "what sorts of things do you do for fun", + "what_are_your_hobbies" + ], + [ + "what sort of hobbies are you into", + "what_are_your_hobbies" + ], + [ + "how do you like to spend your free time", + "what_are_your_hobbies" + ], + [ + "inform me what you do for fun in your free time", + "what_are_your_hobbies" + ], + [ + "i gotta know your hobbies", + "what_are_your_hobbies" + ], + [ + "can you tell me your hobbies", + "what_are_your_hobbies" + ], + [ + "tell your hobbies", + "what_are_your_hobbies" + ], + [ + "what do you do in your free time", + "what_are_your_hobbies" + ], + [ + "i wanna know your hobbies", + "what_are_your_hobbies" + ], + [ + "i wish to know your hobbies", + "what_are_your_hobbies" + ], + [ + "what's the cheapest fares from lax to sfo for round trip flights leaving april 1st and returning april 7th", + "book_flight" + ], + [ + "for the dates april 1st to the 7th, find me round trip air tickets from la to sfo", + "book_flight" + ], + [ + "what southwest flights are there for lax to sfo arriving april 1st and returning april 7th", + "book_flight" + ], + [ + "what airlines have flights round trip on april 1st to april 7th from lax to sfo", + "book_flight" + ], + [ + "find me round trip flights out of lax to sfox", + "book_flight" + ], + [ + "find me a flight from tijuana to guadalajara on volaris", + "book_flight" + ], + [ + "i need a flight to be booked from san diego to boston through frontier", + "book_flight" + ], + [ + "i want a flight booked from new york to san francisco with continental", + "book_flight" + ], + [ + "get me a flight booked from houston to phoenix with american airlines", + "book_flight" + ], + [ + "i want to fly southwest from dallas to phoenix", + "book_flight" + ], + [ + "book a flight from chicago to dc on monday and returning on wednesday", + "book_flight" + ], + [ + "i need to get a flight out of lax to dia on the 16th for under four hundred", + "book_flight" + ], + [ + "book a flight from sacremento to tampa two weeks from now and returning a month after", + "book_flight" + ], + [ + "i'm looking for a roundtrip flight from afw to dgb for tomorrow until next week", + "book_flight" + ], + [ + "i'm looking for a roundtrip flight from oma to sps august 1st, 2019 to august 2nd, 2019", + "book_flight" + ], + [ + "i need to get a flight out of tampa to chicago in a month for under $123", + "book_flight" + ], + [ + "book a flight from denver to austin on the 16th and returning on the 20th", + "book_flight" + ], + [ + "book a flight from bangor to las vegas on may 1st and returning july 4th", + "book_flight" + ], + [ + "book a flight from seattle to dallas-fort worth on april the 1st and returning on april 5th", + "book_flight" + ], + [ + "i need to get a flight out of seattle to dulles next week for under $500", + "book_flight" + ], + [ + "i'm looking for a roundtrip flight from koa to mgj for june to july", + "book_flight" + ], + [ + "i need to get a flight out of denver to houston on friday for under $250", + "book_flight" + ], + [ + "i need to get a flight out of my local airport to england on monday, the 23rd for under a grand", + "book_flight" + ], + [ + "i'm looking for a roundtrip flight from aaf to dia for february 23rd to february 28th", + "book_flight" + ], + [ + "i'm looking for a roundtrip flight from fwa to hsv for march first to march fifth", + "book_flight" + ], + [ + "compare fares for al italia from bucharest to tampa returning before thanksgiving", + "book_flight" + ], + [ + "cheapest fare for flight from tehran to new york on august 1 with return on august 20", + "book_flight" + ], + [ + "compare prices for flights from recife to miami leaving may 20 returning june 5", + "book_flight" + ], + [ + "i need you to book me a flight from chicago to montpelier via united", + "book_flight" + ], + [ + "i need a roundtrip flight for 5/2 to 5/8 from nyc to los angeles", + "book_flight" + ], + [ + "can you find me a roundtrip flight from orlando to austin for 3/28 to 4/5", + "book_flight" + ], + [ + "use delta to book me a flight from dallas to pittsburgh", + "book_flight" + ], + [ + "help me find a roundtrip flight for may 7th through the 20th from pittsburgh to chicago", + "book_flight" + ], + [ + "could you make a flight reservation with air emirates from orlando to london", + "book_flight" + ], + [ + "can you find me a flight from portland, oregon to portland, maine for under $500 on delta", + "book_flight" + ], + [ + "fly me from pit to pdx on delta for under $300", + "book_flight" + ], + [ + "book a flight from la to madrid with southwest", + "book_flight" + ], + [ + "i'd like a flight from laguardia to orlando on southwest for under $400", + "book_flight" + ], + [ + "i'm going to boston from bangor on july 25th through the 29th, and need you to find me a roundtrip flight", + "book_flight" + ], + [ + "i need to get from jfk to dallas with united for under $500", + "book_flight" + ], + [ + "i need a flight from nyc to paris with delta", + "book_flight" + ], + [ + "could you get me a delta flight from sioux falls to philadelphia for under $400", + "book_flight" + ], + [ + "i want to find a roundtrip flight from philadelphia to sioux falls from august 3rd through august 25th", + "book_flight" + ], + [ + "reserve me a flight from ft lauderdale to houston on southwest", + "book_flight" + ], + [ + "find me a roundtrip flight from dallas to los angeles from march 2 to march 10", + "book_flight" + ], + [ + "buy tickets for a flight from nyc to la on march 1, returning on march 5", + "book_flight" + ], + [ + "book me a flight out of la to chicago on march 3rd for under $500", + "book_flight" + ], + [ + "book flights for me from nyc to la on march 1, returning on march 5", + "book_flight" + ], + [ + "look for a flight out of la to chicago on march 3rd for under $500", + "book_flight" + ], + [ + "find me a flight from ft lauderdale to houston on southwest", + "book_flight" + ], + [ + "i need to book a roundtrip flight from dallas to los angeles from march 2 to march 10", + "book_flight" + ], + [ + "get me a flight from ft lauderale to houston on southwest", + "book_flight" + ], + [ + "are there any flights out of la to chicago on march 3rd for under $500", + "book_flight" + ], + [ + "search for a flight from nyc to la on march 1, returning on march 5", + "book_flight" + ], + [ + "list roundtrip flights available from dallas to los angeles from march 2 to march 10", + "book_flight" + ], + [ + "confirm a flight for me from ft lauderdale to houston on southwest", + "book_flight" + ], + [ + "search for a flight out of la to chicago on march 3rd for under $500", + "book_flight" + ], + [ + "buy a flight for me from nyc to la on march 1, returning on march 5", + "book_flight" + ], + [ + "can you show me roundtrip flights from dallas to los angeles from march 2 to march 10", + "book_flight" + ], + [ + "i need you to book me a flight from ft lauderdale to houston on southwest", + "book_flight" + ], + [ + "find me a flight from nyc to la on march 1, returning on march 5", + "book_flight" + ], + [ + "find me a flight out of la to chicago on march 3rd for under $500", + "book_flight" + ], + [ + "what are some roundtrip flights from dallas to los angeles from march 2 to march 10", + "book_flight" + ], + [ + "i want to buy a plane ticket to travel from miami to honolulu on the 29th of february i need a return flight on march 5th", + "book_flight" + ], + [ + "i need to take a flight from florida to alabama on january 25th and i need to get back by the 30th", + "book_flight" + ], + [ + "i want to book a flight reservation from texas to new york on may 9th and i want to come back on the 15th", + "book_flight" + ], + [ + "i want to book a flight from hawaii to new york on july 8th and returning on july 10th", + "book_flight" + ], + [ + "i need to book a flight from texas to new york on may 25th and returning on the 28th", + "book_flight" + ], + [ + "buy a flight from santa fe to jacksonville on new year's eve that returns on the fourth, please", + "book_flight" + ], + [ + "purchase a flight from slc to columbus on tuesday that returns on friday", + "book_flight" + ], + [ + "purchase a flight from fiji to san diego on november 1 that returns on december 1, please", + "book_flight" + ], + [ + "purchase a flight from boise to sacramento on sunday and returning on wednesday", + "book_flight" + ], + [ + "buy a flight from phoenix to el paso on august 30 that returns on labor day", + "book_flight" + ], + [ + "book delta ticket madison to atlanta", + "book_flight" + ], + [ + "make delta reservation from madison to atlanta", + "book_flight" + ], + [ + "madison to atlanta delta ticket", + "book_flight" + ], + [ + "buy delta ticket madison to atlanta", + "book_flight" + ], + [ + "schedule flight from madison to atlanta on delta", + "book_flight" + ], + [ + "book a flight from pensacola, fl to houston, tx on 17 february 2019 and returning on 7 march 2019", + "book_flight" + ], + [ + "book a flight from jacksonville, fl to atlanta, ga on 14 february 2019 and returning on 1 march 2019", + "book_flight" + ], + [ + "book a flight from key west, fl to san antonio, tx on 18 february 2019 and returning on 5 march 2019", + "book_flight" + ], + [ + "book a flight from tampa, fl to baltimore, md on 11 february 2019 and returning on 19 march 2019", + "book_flight" + ], + [ + "book a flight from miami, fl to columbus, ga on 16 february 2019 and returning on 2 march 2019", + "book_flight" + ], + [ + "show me roundtrip flights from dallas to houston for march 7 and march 10", + "book_flight" + ], + [ + "i am needing you to look up roundtrip flights form houston to miami for april 12 and april 15", + "book_flight" + ], + [ + "could you check and let me know roundtrip flights from dallas to houston for march 7 and march 20", + "book_flight" + ], + [ + "i need you to get me a flight booked from houston to miami on united airlines", + "book_flight" + ], + [ + "i am needing to get a flight out of el paso to dallas on march 10 for under $300", + "book_flight" + ], + [ + "would you give me available flights out of dallas to miami on june 8 for under $340", + "book_flight" + ], + [ + "would you let me know what flights are available out of dallas to el paso on march 20 for under $400", + "book_flight" + ], + [ + "let me know what flights there are out of dallas to miami on march 10 for under $450", + "book_flight" + ], + [ + "would you book me a flight to miami from dallas on southwest airlines", + "book_flight" + ], + [ + "i need a flight booked from dallas to miami on american airlines", + "book_flight" + ], + [ + "i am wanting you to book me a flight from houston to miami on united airlines", + "book_flight" + ], + [ + "would you look up roundtrip flights from dallas to houston for march 7 and march 10", + "book_flight" + ], + [ + "i would like to know what flights are available out of el paso to dallas on june 10 for under $300", + "book_flight" + ], + [ + "please get me a flight booked from miami to dallas on american airlines", + "book_flight" + ], + [ + "get me roundtrip flight information for flights from dallas to houston for june 8 and june 17", + "book_flight" + ], + [ + "get me a flight for tuesday on spiritcom to las vegas from chicago", + "book_flight" + ], + [ + "book me a flight from o'hare to las vegas on deltacom", + "book_flight" + ], + [ + "would you let me know what is on my shopping list", + "shopping_list" + ], + [ + "list out what is on my shopping list", + "shopping_list" + ], + [ + "i need for you to tell me what is on my shopping list", + "shopping_list" + ], + [ + "do you want me to shop for peanut butter", + "shopping_list" + ], + [ + "do you want peanut butter for your lunches this week", + "shopping_list" + ], + [ + "do you prefer peanut butter or cheese for your celery", + "shopping_list" + ], + [ + "did i put bread on my shopping list", + "shopping_list" + ], + [ + "i need to know the items on my shopping list", + "shopping_list" + ], + [ + "can you tell me if i have paper towels on my shopping list", + "shopping_list" + ], + [ + "does my shopping list include apples right now", + "shopping_list" + ], + [ + "can you look up what my shopping list has on it", + "shopping_list" + ], + [ + "do i have carrots on my shopping list", + "shopping_list" + ], + [ + "is ice cream currently on my shopping list", + "shopping_list" + ], + [ + "tell me what's on my shopping list", + "shopping_list" + ], + [ + "name the items on my shopping list", + "shopping_list" + ], + [ + "pull up my shopping list for me", + "shopping_list" + ], + [ + "what did i write down on my shopping list this time", + "shopping_list" + ], + [ + "what stuff did i put on my shopping list", + "shopping_list" + ], + [ + "my shopping list contains what again", + "shopping_list" + ], + [ + "what does my shopping list entail", + "shopping_list" + ], + [ + "what does my shopping list involve", + "shopping_list" + ], + [ + "what are my shopping list's content", + "shopping_list" + ], + [ + "tell me my shopping list", + "shopping_list" + ], + [ + "i need to hear what's on my shopping list", + "shopping_list" + ], + [ + "go over my shopping list with me", + "shopping_list" + ], + [ + "what do i have on my shopping list", + "shopping_list" + ], + [ + "what things are on my shopping list", + "shopping_list" + ], + [ + "list out my shopping list for me", + "shopping_list" + ], + [ + "can you list my shopping list for me", + "shopping_list" + ], + [ + "read me my shopping list please", + "shopping_list" + ], + [ + "what are the contents of my shopping list", + "shopping_list" + ], + [ + "i'd like to know what is on my shopping list", + "shopping_list" + ], + [ + "what is available on the shopping list", + "shopping_list" + ], + [ + "show me what's on the shopping list", + "shopping_list" + ], + [ + "what can you see on my shopping list", + "shopping_list" + ], + [ + "tell me what i put on the shopping list", + "shopping_list" + ], + [ + "what are all the things on the shopping list", + "shopping_list" + ], + [ + "i'd like to know what's on the shopping list", + "shopping_list" + ], + [ + "i need to know the things on my shopping list", + "shopping_list" + ], + [ + "tell me what i can find on the shopping list", + "shopping_list" + ], + [ + "tell me the things on my shopping list", + "shopping_list" + ], + [ + "read off shopping list", + "shopping_list" + ], + [ + "tell me whats on my shopping list", + "shopping_list" + ], + [ + "what's on my shopping list", + "shopping_list" + ], + [ + "check if my shopping list has tomato", + "shopping_list" + ], + [ + "does my shopping list have tomato written on it", + "shopping_list" + ], + [ + "on the shopping list did i put tomato", + "shopping_list" + ], + [ + "do i have tomato on the shopping list", + "shopping_list" + ], + [ + "is tomato on my shopping list", + "shopping_list" + ], + [ + "list everything on my shopping list", + "shopping_list" + ], + [ + "read my entire shopping list to me", + "shopping_list" + ], + [ + "display shopping list", + "shopping_list" + ], + [ + "can you show me my shopping list", + "shopping_list" + ], + [ + "can you read my shopping list to me", + "shopping_list" + ], + [ + "what all do i have on my shopping list", + "shopping_list" + ], + [ + "read me everything on my shopping list", + "shopping_list" + ], + [ + "can you tell me whats on my shopping list", + "shopping_list" + ], + [ + "can you tell me what i have on my shopping list", + "shopping_list" + ], + [ + "i need to know what i have on my shopping list", + "shopping_list" + ], + [ + "i'd like to know what's on my shopping list", + "shopping_list" + ], + [ + "read my shopping list to me", + "shopping_list" + ], + [ + "my list for shopping has what on it", + "shopping_list" + ], + [ + "my shopping list contains what", + "shopping_list" + ], + [ + "what do i need to buy at the store", + "shopping_list" + ], + [ + "what do i need to get when i go shopping", + "shopping_list" + ], + [ + "what do i have on my list for shopping", + "shopping_list" + ], + [ + "what products are on my shopping list", + "shopping_list" + ], + [ + "what did i put on my shopping list", + "shopping_list" + ], + [ + "what does my shopping list consist of", + "shopping_list" + ], + [ + "which purchases are on my shopping list", + "shopping_list" + ], + [ + "read me my shopping list", + "shopping_list" + ], + [ + "tell me what my shopping list consists of", + "shopping_list" + ], + [ + "can you remind me what i put on my shopping list", + "shopping_list" + ], + [ + "what all is on my shopping list", + "shopping_list" + ], + [ + "what did i put on my shopping list so far", + "shopping_list" + ], + [ + "give me all contents of my shopping list", + "shopping_list" + ], + [ + "i need to know what is on my shopping list", + "shopping_list" + ], + [ + "can you tell me my shopping list items, please", + "shopping_list" + ], + [ + "what items are on my shopping list", + "shopping_list" + ], + [ + "do i need to get milk", + "shopping_list" + ], + [ + "do i need milk at the store", + "shopping_list" + ], + [ + "did i remember to put milk in the shopping list", + "shopping_list" + ], + [ + "did i put milk on the shopping list", + "shopping_list" + ], + [ + "tell me what is on my shopping list", + "shopping_list" + ], + [ + "what do i need to go shopping for", + "shopping_list" + ], + [ + "what do i need when i go shopping", + "shopping_list" + ], + [ + "what does my shopping list say that i should get", + "shopping_list" + ], + [ + "what kind of items are on my shopping list", + "shopping_list" + ], + [ + "whats on my shopping list at the moment", + "shopping_list" + ], + [ + "whats on my list for shopping", + "shopping_list" + ], + [ + "is there milk on my shopping list", + "shopping_list" + ], + [ + "does my shopping list consist of chips", + "shopping_list" + ], + [ + "are tomatoes on my shopping list", + "shopping_list" + ], + [ + "is a toothbrush on my shopping list", + "shopping_list" + ], + [ + "does my shopping list include corn", + "shopping_list" + ], + [ + "do i have a big shopping list", + "shopping_list" + ], + [ + "show everything on my to buy list", + "shopping_list" + ], + [ + "show shopping list", + "shopping_list" + ], + [ + "what's on the shopping list", + "shopping_list" + ], + [ + "show me my shopping list", + "shopping_list" + ], + [ + "can you text elizabeth and tell them i forgot to bring drinks", + "text" + ], + [ + "text wenona and tell her we will be there tomorrow", + "text" + ], + [ + "text christopher and tell him i will stop by", + "text" + ], + [ + "text audrey and tell her i will be there soon", + "text" + ], + [ + "text christy and ask her what she wants for dinner", + "text" + ], + [ + "can you text christopher and tell them im on my way", + "text" + ], + [ + "text roderick and tell him im running late", + "text" + ], + [ + "can you text marissa and tell them to stop calling me", + "text" + ], + [ + "can you text arthur and tell them im almost there", + "text" + ], + [ + "can you text kayla and tell them im running late", + "text" + ], + [ + "text chris and ask what time he will be home", + "text" + ], + [ + "send a text and tell chris i\u2019m not working today", + "text" + ], + [ + "text message chris and say i love you", + "text" + ], + [ + "send chris a text message that says stop for milk on your way home", + "text" + ], + [ + "send a text message to chris and ask what he wants to eat for dinner", + "text" + ], + [ + "send ally a text message the message is that i just landed", + "text" + ], + [ + "could you send a text to marty and say i am running behind", + "text" + ], + [ + "send a text to brooklyn with the message that i will see them later", + "text" + ], + [ + "please text nancy and give them the message that i am on vacation", + "text" + ], + [ + "text bill and tell him i'll be 30 minutes late", + "text" + ], + [ + "send a text to lisa and ask her to call me when she gets home", + "text" + ], + [ + "give a text to my cousin linda that says happy birthday", + "text" + ], + [ + "text tony and invite him to my party next saturday", + "text" + ], + [ + "send my brother mike a text that says i'm home", + "text" + ], + [ + "i have to send a text", + "text" + ], + [ + "i need you to text someone for me", + "text" + ], + [ + "send sal a text and tell them thanks", + "text" + ], + [ + "i need you to send a text", + "text" + ], + [ + "text sal and let them know the answer is yes", + "text" + ], + [ + "let sal know by text i will be attending", + "text" + ], + [ + "i have to have a text sent", + "text" + ], + [ + "text sal and tell them hi", + "text" + ], + [ + "i need sal to be texted and say i'll be there", + "text" + ], + [ + "please send ann a text and tell her i will be home in 20 minutes", + "text" + ], + [ + "please send a text to phil and ask him if he wants to play golf this weekend", + "text" + ], + [ + "send bill a text for me and tell him i will be 30 minutes late", + "text" + ], + [ + "send a text to ashley and ask her what she wants to do for supper", + "text" + ], + [ + "send amy a text for me and tell her i need to meet", + "text" + ], + [ + "i want to send a text message to", + "text" + ], + [ + "create a text message to", + "text" + ], + [ + "communicate via text to", + "text" + ], + [ + "send text message to", + "text" + ], + [ + "send a text message for me", + "text" + ], + [ + "please send a text message to natalie for me", + "text" + ], + [ + "i want to text natalie", + "text" + ], + [ + "i want you to send a text message for me", + "text" + ], + [ + "send a message to natalie in the form of a text", + "text" + ], + [ + "message mom where are you", + "text" + ], + [ + "compose a text to mom i'll talk to you later", + "text" + ], + [ + "send mom a message i'll talk to you later", + "text" + ], + [ + "send mom a text asking where are you", + "text" + ], + [ + "send a text for me", + "text" + ], + [ + "i want to send a text", + "text" + ], + [ + "send a text to mom i'll talk to you later", + "text" + ], + [ + "text mom i'll talk to you later", + "text" + ], + [ + "text robby hello", + "text" + ], + [ + "text mom and let her know i'll be there soon", + "text" + ], + [ + "text mom where are you", + "text" + ], + [ + "send mom a text i'll talk to you later", + "text" + ], + [ + "compose text message", + "text" + ], + [ + "send a message to mom be there soon", + "text" + ], + [ + "start a new text", + "text" + ], + [ + "create a new text", + "text" + ], + [ + "set up a new text message", + "text" + ], + [ + "send a text message to alice", + "text" + ], + [ + "text alice", + "text" + ], + [ + "write a text to alice", + "text" + ], + [ + "text a message to alice", + "text" + ], + [ + "text my doctor and tell him it happened again", + "text" + ], + [ + "text mary and tell them i'm on my way", + "text" + ], + [ + "text robert and tell him winter is coming", + "text" + ], + [ + "text nick and tell him the car's ready", + "text" + ], + [ + "text my wife and tell her i'm divorcing her", + "text" + ], + [ + "can you tell bob to get his dog via text", + "text" + ], + [ + "can you send a text to my mother irene and tell her i love her", + "text" + ], + [ + "can you text mary and tell them it's ready", + "text" + ], + [ + "can you ping priest chris with a text and send the following confession", + "text" + ], + [ + "can you text the sgt adam and tell them i found the missing girl", + "text" + ], + [ + "text matt and tell him i will be late tonight", + "text" + ], + [ + "text paul and ask him what time the cookout is on saturday", + "text" + ], + [ + "start a new text to maureen and tell her i go mom's christmas present", + "text" + ], + [ + "text billy and tell him to be at monday's meeting at 3pm", + "text" + ], + [ + "text william and ask him to pick up organic apples tonight", + "text" + ], + [ + "write text message to someone", + "text" + ], + [ + "text someone", + "text" + ], + [ + "can you send a text to someone", + "text" + ], + [ + "write text and send to someone", + "text" + ], + [ + "send a text to someone", + "text" + ], + [ + "text my friend for me and tell them to meet me later", + "text" + ], + [ + "text my boss for me and tell them i will be a little bit late", + "text" + ], + [ + "text my coworker for me and tell them the due date", + "text" + ], + [ + "text my dad for me and tell them i love you", + "text" + ], + [ + "text my mom for me and tell them i will be home soon", + "text" + ], + [ + "please send a text", + "text" + ], + [ + "send a text message", + "text" + ], + [ + "i need to send a text", + "text" + ], + [ + "can you send a text for me", + "text" + ], + [ + "create a new text message", + "text" + ], + [ + "please send a message to peter telling him to pick up milk", + "text" + ], + [ + "text josh and tell him i need a delivery", + "text" + ], + [ + "the bill for water and electricity is how much", + "bill_balance" + ], + [ + "what's my bill for water and electricity", + "bill_balance" + ], + [ + "for my water and electricity, how much is the bill", + "bill_balance" + ], + [ + "how much is the bill for my water and electricity", + "bill_balance" + ], + [ + "my water and electricity bill is how much", + "bill_balance" + ], + [ + "what is the total amount that i owe to sony and verizon", + "bill_balance" + ], + [ + "please tell me how much i owe sprint and how much i owe hsn", + "bill_balance" + ], + [ + "tell me how much my verizon and comcast bill come to together", + "bill_balance" + ], + [ + "how much in total do i need to pay cox and at&t", + "bill_balance" + ], + [ + "please let me know how much my bills for comcast and sprint total", + "bill_balance" + ], + [ + "what do my bills add up to", + "bill_balance" + ], + [ + "how much do i owe in bills", + "bill_balance" + ], + [ + "what's the balance on my bills", + "bill_balance" + ], + [ + "read my bill balances", + "bill_balance" + ], + [ + "how much are my bills", + "bill_balance" + ], + [ + "find out what my water bill costs please", + "bill_balance" + ], + [ + "how much is my electricity bill costing me", + "bill_balance" + ], + [ + "find out the cost of my bill payments", + "bill_balance" + ], + [ + "let me know the amounts i owe for my utilities and tuition bills", + "bill_balance" + ], + [ + "how much money do i need to spend on bill payments", + "bill_balance" + ], + [ + "can you tell me what i owe for this month's phone bill", + "bill_balance" + ], + [ + "tell me the sum total of my water and electricity bills", + "bill_balance" + ], + [ + "can you tell me the total cost of my bills please", + "bill_balance" + ], + [ + "what is the total amount due on my electricity bill", + "bill_balance" + ], + [ + "what am i being charged for my water bill", + "bill_balance" + ], + [ + "tell me how much my cable bill is", + "bill_balance" + ], + [ + "what is the total for my utilities bill this month", + "bill_balance" + ], + [ + "how much do i owe for my gas and phone bills", + "bill_balance" + ], + [ + "tell me what is owed for my water and gas bills", + "bill_balance" + ], + [ + "i need to know the amounts due for my utilities and cable bills", + "bill_balance" + ], + [ + "let me know how much money i will need to spend on paying bills", + "bill_balance" + ], + [ + "please let me know how much my gas bill is", + "bill_balance" + ], + [ + "i need to know the cost of the cable bill", + "bill_balance" + ], + [ + "how much in total will i be paying for bills", + "bill_balance" + ], + [ + "what do i owe for my utilities bill", + "bill_balance" + ], + [ + "please give me the full balance on my water bill", + "bill_balance" + ], + [ + "how much is the total due for my pgw gas bill", + "bill_balance" + ], + [ + "what's the amount due on my latest sprint bill", + "bill_balance" + ], + [ + "i need the dollar amount due on my verizon bill, please", + "bill_balance" + ], + [ + "can you tell me what the amount on my directv bill is", + "bill_balance" + ], + [ + "remind me of the invoice total for my plumbing bill", + "bill_balance" + ], + [ + "tell me what amount i have to pay for my directv bill please", + "bill_balance" + ], + [ + "i need to know my bill total for my verizon payment due this month", + "bill_balance" + ], + [ + "please find the current balance on my con edison bill", + "bill_balance" + ], + [ + "what's the balance on my sprint account", + "bill_balance" + ], + [ + "how much is my xfinity bill this month", + "bill_balance" + ], + [ + "what's the cost of my dte bill plus my electricity bill", + "bill_balance" + ], + [ + "my dte bill is how much", + "bill_balance" + ], + [ + "what is my dte bill this month", + "bill_balance" + ], + [ + "how much are my electric and heating bills", + "bill_balance" + ], + [ + "my dte and water bills are how much", + "bill_balance" + ], + [ + "my water bill is how much this month", + "bill_balance" + ], + [ + "how much is my electric bill for this month", + "bill_balance" + ], + [ + "how much are my xfinity and dte bills", + "bill_balance" + ], + [ + "how much are my cable and water bills", + "bill_balance" + ], + [ + "how much do i have to pay on my bills", + "bill_balance" + ], + [ + "can you check the balance on the water bill", + "bill_balance" + ], + [ + "how much do i have to pay for my cable bill", + "bill_balance" + ], + [ + "how much do i owe on my cable bill", + "bill_balance" + ], + [ + "can you find out how much i owe on my bills", + "bill_balance" + ], + [ + "can you check and see how much i owe on my cable bill", + "bill_balance" + ], + [ + "do you know how much i owe on my cable bill", + "bill_balance" + ], + [ + "how much do i need to pay on my bills", + "bill_balance" + ], + [ + "can you tell me how much i owe on my cable bill", + "bill_balance" + ], + [ + "how much is my comcast bill", + "bill_balance" + ], + [ + "what is the amount on my comcast bill", + "bill_balance" + ], + [ + "what is the my comcast bill this month", + "bill_balance" + ], + [ + "what do i owe bill wise", + "bill_balance" + ], + [ + "do i have any due bills and how much", + "bill_balance" + ], + [ + "do i still owe any bills", + "bill_balance" + ], + [ + "how much do i have to pay for my bills this month", + "bill_balance" + ], + [ + "do i owe any bills", + "bill_balance" + ], + [ + "what's the final amount of all the money i need to pay in bills this month", + "bill_balance" + ], + [ + "add all my bills for this month and tell me the total", + "bill_balance" + ], + [ + "what's the sum of all i owe on bills this month", + "bill_balance" + ], + [ + "what's the total i owe on all my bills", + "bill_balance" + ], + [ + "what's the water bill", + "bill_balance" + ], + [ + "how much are all my bills combined", + "bill_balance" + ], + [ + "what's my mortgage payment going to be this month", + "bill_balance" + ], + [ + "what do i owe on the car this month", + "bill_balance" + ], + [ + "how much are utilities", + "bill_balance" + ], + [ + "how much is my gas bill", + "bill_balance" + ], + [ + "how much is my internet bill", + "bill_balance" + ], + [ + "how much is my cable bill", + "bill_balance" + ], + [ + "how much is my rent", + "bill_balance" + ], + [ + "how much is my cable bill for", + "bill_balance" + ], + [ + "how much is my current water bill for", + "bill_balance" + ], + [ + "how much is my electric bill for", + "bill_balance" + ], + [ + "how much is my water bill for", + "bill_balance" + ], + [ + "how much is my current cable bill for", + "bill_balance" + ], + [ + "what is the amount on my water bill", + "bill_balance" + ], + [ + "how much do i have on credit card bill", + "bill_balance" + ], + [ + "what is the balance on my bills", + "bill_balance" + ], + [ + "what is my domain name bill", + "bill_balance" + ], + [ + "how much is my groceries and gas bill", + "bill_balance" + ], + [ + "what is the cost of water and electric this month", + "bill_balance" + ], + [ + "what is the amount of balance i have to pay on my bill", + "bill_balance" + ], + [ + "how much do i owe on bills", + "bill_balance" + ], + [ + "how much on bills to i have to pay", + "bill_balance" + ], + [ + "what is my email subscriction services bill", + "bill_balance" + ], + [ + "tell lydia and laura where i am located", + "share_location" + ], + [ + "share my location with brad and terry", + "share_location" + ], + [ + "tell john and sam where i am", + "share_location" + ], + [ + "share my location with darren and stacey", + "share_location" + ], + [ + "let cora and nancy know were i am now", + "share_location" + ], + [ + "share my gps coordinates with my dad", + "share_location" + ], + [ + "share my gps coordinates with kelly", + "share_location" + ], + [ + "share my gps coordinates with my brother", + "share_location" + ], + [ + "share my gps coordinates with my mother", + "share_location" + ], + [ + "share my gps coordinates with jim", + "share_location" + ], + [ + "please show my current location to andre", + "share_location" + ], + [ + "give the boys my location please", + "share_location" + ], + [ + "can you share my location with my girlfriends", + "share_location" + ], + [ + "let shih chieh see my location", + "share_location" + ], + [ + "share my location with mom, please", + "share_location" + ], + [ + "let coach know where i am", + "share_location" + ], + [ + "share my location with ma", + "share_location" + ], + [ + "tell base camp my gps coordinates", + "share_location" + ], + [ + "tell the kids where i am", + "share_location" + ], + [ + "let the folks know my gps coordinates", + "share_location" + ], + [ + "my friend steve needs my gps coordinates send them to him", + "share_location" + ], + [ + "let the rents have my current location", + "share_location" + ], + [ + "let my group know what my current location is", + "share_location" + ], + [ + "give boss my current location", + "share_location" + ], + [ + "give me current gps coordinates to my sister", + "share_location" + ], + [ + "give my current location to robyn now", + "share_location" + ], + [ + "send my current location to my superior", + "share_location" + ], + [ + "let lucy know my gps coordinates", + "share_location" + ], + [ + "tell carl my gps coordinates", + "share_location" + ], + [ + "i need you to send my location to paul and ryan", + "share_location" + ], + [ + "share my coordinates with melissa and doug", + "share_location" + ], + [ + "can you let sam and woody know where i am", + "share_location" + ], + [ + "let randy and travis know where i'm at", + "share_location" + ], + [ + "can you give my whereabouts to doug and buster", + "share_location" + ], + [ + "please show me how to share my location with noel", + "share_location" + ], + [ + "how do i share my location with noel", + "share_location" + ], + [ + "i need to share my location with noel", + "share_location" + ], + [ + "how can i show noel where i am right now", + "share_location" + ], + [ + "i need to send my current location to sean", + "share_location" + ], + [ + "i would like to share my location with my mom", + "share_location" + ], + [ + "please send my location to haley", + "share_location" + ], + [ + "i need to share my location with trey", + "share_location" + ], + [ + "trey needs my current location", + "share_location" + ], + [ + "can you tell bob and alice where i am", + "share_location" + ], + [ + "i would like ms johannson and ms alba to be informed of my location", + "share_location" + ], + [ + "advise sam of my current location please", + "share_location" + ], + [ + "please send the police my location with gps", + "share_location" + ], + [ + "please tell my location to bob", + "share_location" + ], + [ + "i need you to push my location to cory", + "share_location" + ], + [ + "please share my location with my boss and my lawyer", + "share_location" + ], + [ + "give my boyfriend my gps coordinates", + "share_location" + ], + [ + "will you let mary know my location", + "share_location" + ], + [ + "send my location to my mom", + "share_location" + ], + [ + "i need you to let mr miyagi and daniel know where i am", + "share_location" + ], + [ + "can you share my current location with amy", + "share_location" + ], + [ + "post my gps coordinates to my facebook friends", + "share_location" + ], + [ + "please let my mom and dad know my location", + "share_location" + ], + [ + "i need the tow truck to be given my gps coordinates", + "share_location" + ], + [ + "have miranda know about my current location", + "share_location" + ], + [ + "send the location i'm at with martin", + "share_location" + ], + [ + "give my location right now to my family", + "share_location" + ], + [ + "inform eric of my current location", + "share_location" + ], + [ + "my gps coordiantes will be shared with aunt sunny", + "share_location" + ], + [ + "gps coordinates share with home", + "share_location" + ], + [ + "send my gps coordinates with home base please", + "share_location" + ], + [ + "share to grandma my gps coordinates", + "share_location" + ], + [ + "give adam my gps coordinates", + "share_location" + ], + [ + "send my gps location to manuel", + "share_location" + ], + [ + "give jim my gps location", + "share_location" + ], + [ + "share my location with sarah", + "share_location" + ], + [ + "give tim my current location from the gps", + "share_location" + ], + [ + "can you forward my location to tom", + "share_location" + ], + [ + "share my location with my sister", + "share_location" + ], + [ + "share my location wtih amanda now", + "share_location" + ], + [ + "share my location with mom", + "share_location" + ], + [ + "start sending my location to alex", + "share_location" + ], + [ + "tell brady where my location is", + "share_location" + ], + [ + "share location with bill", + "share_location" + ], + [ + "let barbara know where i'm at", + "share_location" + ], + [ + "please tell wanda where i am now", + "share_location" + ], + [ + "please tell steve my location", + "share_location" + ], + [ + "tell bill and craig where i am", + "share_location" + ], + [ + "give my location to bill and craig", + "share_location" + ], + [ + "inform bill and craig of my location", + "share_location" + ], + [ + "can you tell bill and craig where i am", + "share_location" + ], + [ + "let bill and craig know where i am", + "share_location" + ], + [ + "alert the wife of my exact location", + "share_location" + ], + [ + "let the wife see where i'm at", + "share_location" + ], + [ + "let dan know where i am", + "share_location" + ], + [ + "allow my son to see my gps coordinates", + "share_location" + ], + [ + "share my gps location with steve", + "share_location" + ], + [ + "can you share my location with mom", + "share_location" + ], + [ + "please allow dan to see my location", + "share_location" + ], + [ + "can you let ben and jerry know my current location", + "share_location" + ], + [ + "share my location with ben and jerry", + "share_location" + ], + [ + "can you show ben and jerry where i am currently at", + "share_location" + ], + [ + "send my location to ben and jerry", + "share_location" + ], + [ + "let ben and jerry know where i am", + "share_location" + ], + [ + "how do i share where i am, with another person", + "share_location" + ], + [ + "give tom my location", + "share_location" + ], + [ + "i am ready now to cash in on the many credit card points i have saved up", + "redeem_rewards" + ], + [ + "i have credit card points but don't know how to use them", + "redeem_rewards" + ], + [ + "walk me through the best ways to use my credit card points", + "redeem_rewards" + ], + [ + "i am ready now to use some of the credit card points i have saved", + "redeem_rewards" + ], + [ + "i want to hear more about how i can use my credit card points", + "redeem_rewards" + ], + [ + "how can i cash in the rewards i earned with my visa card", + "redeem_rewards" + ], + [ + "walk me through the process of cashing in on credit card points", + "redeem_rewards" + ], + [ + "i would like to use my credit card points", + "redeem_rewards" + ], + [ + "do i have enough credit card points to redeem a new appliance", + "redeem_rewards" + ], + [ + "i would love to redeem some smart speakers with my credit card points", + "redeem_rewards" + ], + [ + "how can i redeem rewards earned through my amex card", + "redeem_rewards" + ], + [ + "how can i cash in on the rewards i earned through my american express card", + "redeem_rewards" + ], + [ + "could i redeem my credit card points on a new tv", + "redeem_rewards" + ], + [ + "can you help me figure out how to utilize my credit card points", + "redeem_rewards" + ], + [ + "can you explain to me how i ought to use my credit card points", + "redeem_rewards" + ], + [ + "i would like to use my credit card points to acquire a new laptop", + "redeem_rewards" + ], + [ + "i would like to redeem my credit card reward points", + "redeem_rewards" + ], + [ + "have i got enough credit card points to get a new tablet device", + "redeem_rewards" + ], + [ + "i have a lot of credit card points saved up and would like to start redeeming them", + "redeem_rewards" + ], + [ + "walk me through reward redemption from my barclay's card", + "redeem_rewards" + ], + [ + "explain to me how to cash in rewards for my mastercard", + "redeem_rewards" + ], + [ + "help me figure out redemption of my credit card points", + "redeem_rewards" + ], + [ + "how can i redeem the points i've earned with my credit card", + "redeem_rewards" + ], + [ + "i have a lot of points saved up from my credit card rewards but don't know how to redeem them", + "redeem_rewards" + ], + [ + "can you help me begin the process of redeeming credit card points", + "redeem_rewards" + ], + [ + "i want to redeem points on my chase card, but how", + "redeem_rewards" + ], + [ + "how can i cash in rewards on my discover card", + "redeem_rewards" + ], + [ + "if i want to redeem miles from my delta skymiles card, how do i do that", + "redeem_rewards" + ], + [ + "how can i cash in rewards on my chase card", + "redeem_rewards" + ], + [ + "how can i cash in the rewards i have earned on my amex", + "redeem_rewards" + ], + [ + "i need you to check if my credit card points are redeemable right now", + "redeem_rewards" + ], + [ + "call my credit card company and ask can i use my points", + "redeem_rewards" + ], + [ + "i want to know if i can redeem my credit card points now", + "redeem_rewards" + ], + [ + "i check my credit card company to see if my points are good to go", + "redeem_rewards" + ], + [ + "can you check with my credit card company and see if i can redeem my points", + "redeem_rewards" + ], + [ + "do i need a certain amount of points before i can redeem them", + "redeem_rewards" + ], + [ + "are there any steps i need to take to use my credit card points", + "redeem_rewards" + ], + [ + "if i want to use my credit card points what do i do", + "redeem_rewards" + ], + [ + "can i redeem my credit card points for anything", + "redeem_rewards" + ], + [ + "how many points do i need before i can redeem them", + "redeem_rewards" + ], + [ + "at what point balance can i redeem my points", + "redeem_rewards" + ], + [ + "do i have to contact someone to use my credit card points", + "redeem_rewards" + ], + [ + "do i have enough points to for a redemption", + "redeem_rewards" + ], + [ + "what do i do if i want to use my credit card points", + "redeem_rewards" + ], + [ + "how can i redeem my credit card points", + "redeem_rewards" + ], + [ + "what steps do i take to redeem my credit card points", + "redeem_rewards" + ], + [ + "can you tell me how to redeem my credit card points", + "redeem_rewards" + ], + [ + "in order to redeem my credit card points, what should i do", + "redeem_rewards" + ], + [ + "what do i need to do in order to redeem my credit card points", + "redeem_rewards" + ], + [ + "do you think i could get a target gift card with my credit card points", + "redeem_rewards" + ], + [ + "is a walmart gift card one of the things i can use my credit card points on", + "redeem_rewards" + ], + [ + "let's use my credit card points", + "redeem_rewards" + ], + [ + "tell me how to use credit card points", + "redeem_rewards" + ], + [ + "my amex rewards; how do i get them", + "redeem_rewards" + ], + [ + "i'd like to redeem my credit card points", + "redeem_rewards" + ], + [ + "use my credit card points", + "redeem_rewards" + ], + [ + "am i able to redeem my credit card points for an amazon gift card", + "redeem_rewards" + ], + [ + "if i want to cash in my american express rewards, how do i do that", + "redeem_rewards" + ], + [ + "cash in rewards for my visa card", + "redeem_rewards" + ], + [ + "how do i redeem my credit card points", + "redeem_rewards" + ], + [ + "what do i do to redeem credit card points", + "redeem_rewards" + ], + [ + "how can i cash in my credit card points", + "redeem_rewards" + ], + [ + "can i use my credit card points for gas", + "redeem_rewards" + ], + [ + "what do i need to do for my mastercard rewards", + "redeem_rewards" + ], + [ + "how can i go about cashing in rewards with discover", + "redeem_rewards" + ], + [ + "if i redeem my credit card points, can i get a kroeger gift card", + "redeem_rewards" + ], + [ + "please inform regarding the procedure to cash in my rewards for my citibank card", + "redeem_rewards" + ], + [ + "please tell me the procedure to cash in my rewards for my citibank card", + "redeem_rewards" + ], + [ + "i need information regarding the procedure to cash in my rewards for my citibank card", + "redeem_rewards" + ], + [ + "tell me how i should cash in my rewards for my citibank card", + "redeem_rewards" + ], + [ + "what's the way to cash in my rewards for my citibank card", + "redeem_rewards" + ], + [ + "how do i cash the reward for first bankcard", + "redeem_rewards" + ], + [ + "how do i use my credit card points", + "redeem_rewards" + ], + [ + "i want to convert my credit card points", + "redeem_rewards" + ], + [ + "let me use my credit card points", + "redeem_rewards" + ], + [ + "how do i use reward for my first hawaiian bank", + "redeem_rewards" + ], + [ + "i want to utilize my credit card points", + "redeem_rewards" + ], + [ + "how do i utilize my credit card points", + "redeem_rewards" + ], + [ + "can i convert my credit card points to milage", + "redeem_rewards" + ], + [ + "can i use my credit card point on amazon", + "redeem_rewards" + ], + [ + "can i redeem my credit card points to cash", + "redeem_rewards" + ], + [ + "how do i use the reward for my bank of hawaii", + "redeem_rewards" + ], + [ + "i want to use my credit card points", + "redeem_rewards" + ], + [ + "what are ways to utilize my credit card points", + "redeem_rewards" + ], + [ + "i want to cash my credit card points", + "redeem_rewards" + ], + [ + "how do i cash the reward for city", + "redeem_rewards" + ], + [ + "how do i cash in my reward for chase", + "redeem_rewards" + ], + [ + "can i redeem my credit card on safeway", + "redeem_rewards" + ], + [ + "can i use my credit card points to make purchase", + "redeem_rewards" + ], + [ + "tell me how to utilize my card points", + "redeem_rewards" + ], + [ + "how do i get cash back for the rewards on my amex card", + "redeem_rewards" + ], + [ + "transfer my cash reward balance to my bank", + "redeem_rewards" + ], + [ + "how do i redeem my card points", + "redeem_rewards" + ], + [ + "what do i do to get cach back for points on my discover card", + "redeem_rewards" + ], + [ + "i want to redeem my card points for cash", + "redeem_rewards" + ], + [ + "i want to use the cash that my points have earned on my credit card", + "redeem_rewards" + ], + [ + "what's the procedure to get cash back rewards on my visa", + "redeem_rewards" + ], + [ + "tell me how to redeem my credit card points", + "redeem_rewards" + ], + [ + "how do i obtain the cash for the rewards on my hy-vee card", + "redeem_rewards" + ], + [ + "i want to cash out my credit card points", + "redeem_rewards" + ], + [ + "can i get some music by three six mafia in here", + "play_music" + ], + [ + "what does x\u2019s music sound like", + "play_music" + ], + [ + "may i hear some music by fleet foxes", + "play_music" + ], + [ + "can i hear some music by cloud control", + "play_music" + ], + [ + "can x\u2019s music be played", + "play_music" + ], + [ + "play some music for me", + "play_music" + ], + [ + "i'd like to hear my workout playlist", + "play_music" + ], + [ + "put on my jam session playlist please", + "play_music" + ], + [ + "can i hear my smooth jazz playlist", + "play_music" + ], + [ + "play a song for me", + "play_music" + ], + [ + "let's hear my workout playlist", + "play_music" + ], + [ + "put my workout playlist on", + "play_music" + ], + [ + "put my music on, please", + "play_music" + ], + [ + "play rock playlist", + "play_music" + ], + [ + "play some music", + "play_music" + ], + [ + "rock playlist please", + "play_music" + ], + [ + "can you play music", + "play_music" + ], + [ + "i want to listen to music", + "play_music" + ], + [ + "can you play the rock playlist", + "play_music" + ], + [ + "music please", + "play_music" + ], + [ + "rock music playlist", + "play_music" + ], + [ + "i want to hear my rock playlist", + "play_music" + ], + [ + "play that song hey", + "play_music" + ], + [ + "yo play that song that go like she take my money", + "play_music" + ], + [ + "can u play the song that sound like bells going off", + "play_music" + ], + [ + "play me the playlist entitled jazz", + "play_music" + ], + [ + "turn on the rap playlist", + "play_music" + ], + [ + "turn my drake playlist on", + "play_music" + ], + [ + "i want to hear my hip hop playlist", + "play_music" + ], + [ + "i need to listen to my beyonce playlist", + "play_music" + ], + [ + "can you play right above it", + "play_music" + ], + [ + "can you play everlong by foo fighters", + "play_music" + ], + [ + "play the song god's plan", + "play_music" + ], + [ + "please play come as you are by nirvana", + "play_music" + ], + [ + "please play the new lady gaga song", + "play_music" + ], + [ + "can you put on music by beach house", + "play_music" + ], + [ + "can you find music by slow magic to put on", + "play_music" + ], + [ + "i want to play my maroon 5 playlist", + "play_music" + ], + [ + "i want to listen to my maroon 5 playlist, play it for me", + "play_music" + ], + [ + "look up my maroon 5 playlists; play it", + "play_music" + ], + [ + "would you play my maroon 5 playlist", + "play_music" + ], + [ + "i need for you to play my maroon 5 playlist", + "play_music" + ], + [ + "can you play music the beatles", + "play_music" + ], + [ + "i need to play the song that goes like hey jude don't make it bad", + "play_music" + ], + [ + "please play even flow by pearl jam", + "play_music" + ], + [ + "play help! by the beatles", + "play_music" + ], + [ + "i wanna play the song that goes like hey jude don't make it bad", + "play_music" + ], + [ + "please play 1979 by the smashing pumpkins", + "play_music" + ], + [ + "can you play music by bob dylan", + "play_music" + ], + [ + "can you play music by led zeppelin", + "play_music" + ], + [ + "go ahead and play the song that goes like hey jude don't make it bad", + "play_music" + ], + [ + "please play the song that goes like hey jude don't make it bad", + "play_music" + ], + [ + "can you play some music by the beatles for me", + "play_music" + ], + [ + "play the song that goes like hey jude don't make it bad", + "play_music" + ], + [ + "play heart shaped box", + "play_music" + ], + [ + "play hey jude", + "play_music" + ], + [ + "can you play music by the rolling stones", + "play_music" + ], + [ + "commence playing music", + "play_music" + ], + [ + "play me some music", + "play_music" + ], + [ + "i want to hear some music", + "play_music" + ], + [ + "start up some music", + "play_music" + ], + [ + "start playing some music", + "play_music" + ], + [ + "i want to hear my vaporwave playlist", + "play_music" + ], + [ + "play my post-rock playlist", + "play_music" + ], + [ + "play the song called guerrilla radio", + "play_music" + ], + [ + "resume my metal playlist", + "play_music" + ], + [ + "resume my death metal playlist", + "play_music" + ], + [ + "please play my taylor swift mix", + "play_music" + ], + [ + "start my playlist", + "play_music" + ], + [ + "start playing my black metal playlist", + "play_music" + ], + [ + "play the song called blood brothers", + "play_music" + ], + [ + "play that song called bring the noise", + "play_music" + ], + [ + "play me some tunes", + "play_music" + ], + [ + "i want to hear pop music", + "play_music" + ], + [ + "play some rock", + "play_music" + ], + [ + "play that song called colony of birchman", + "play_music" + ], + [ + "play the song called tiny dancer", + "play_music" + ], + [ + "turn the radio on for some music", + "play_music" + ], + [ + "can you play your guitar right now", + "play_music" + ], + [ + "can you play me that, \"baby shark, doo doo,\" song", + "play_music" + ], + [ + "play the song with the lyrics, \"baby shark, doo doo", + "play_music" + ], + [ + "find the song with, \"baby shark, doo doo", + "play_music" + ], + [ + "i want to hear the song that has, \"baby shark, doo doo", + "play_music" + ], + [ + "that \"baby shark, doo doo,\" song, i want to hear it", + "play_music" + ], + [ + "i want to hear beatles music", + "play_music" + ], + [ + "i want to listen to music by the beatles", + "play_music" + ], + [ + "play songs by the beatles", + "play_music" + ], + [ + "play music by the beatles", + "play_music" + ], + [ + "play beatles", + "play_music" + ], + [ + "pull up my shower playlist", + "play_music" + ], + [ + "i need to hear my shower playlist", + "play_music" + ], + [ + "use my shower playlist", + "play_music" + ], + [ + "do the shower playlist please", + "play_music" + ], + [ + "i want to hear my shower playlist", + "play_music" + ], + [ + "is it okay to listen to elvis' music", + "play_music" + ], + [ + "can you play elvis", + "play_music" + ], + [ + "can you let me listen to elvis", + "play_music" + ], + [ + "do you have music by elvis", + "play_music" + ], + [ + "do you have any elvis music", + "play_music" + ], + [ + "find that song that goes something like i'm hooked on a feeling", + "play_music" + ], + [ + "add my dentist appointment to the calendar", + "calendar_update" + ], + [ + "add a vet appointment for 5 pm on saturday", + "calendar_update" + ], + [ + "i need to edit this event out of my calendar", + "calendar_update" + ], + [ + "please remove an event from this calendar", + "calendar_update" + ], + [ + "i no longer want this event in my calendar", + "calendar_update" + ], + [ + "delete that event from calendar", + "calendar_update" + ], + [ + "make sure to add to my calendar the staff meeting for march 1 at 10 am", + "calendar_update" + ], + [ + "add staff meeting to my calendar for march 1 at 10:00 in the morning", + "calendar_update" + ], + [ + "i want you to add staff meeting to my calendar for march 1 at 10:00 am", + "calendar_update" + ], + [ + "please add to my calendar for the staff meeting that is scheduled on march 1, 2019 at 10 am", + "calendar_update" + ], + [ + "the staff meeting on march 1 at 10:00 am needs to be added to my calendar", + "calendar_update" + ], + [ + "leave the date of june 4 open on my calendar", + "calendar_update" + ], + [ + "i need anniversary dinner added to my schedule for march 7", + "calendar_update" + ], + [ + "can you change the date of the doctor's appointment event in my calendar from april 1 to april 3rd", + "calendar_update" + ], + [ + "i need a clear calendar for april 15", + "calendar_update" + ], + [ + "please add final exams to my calendar for may 2", + "calendar_update" + ], + [ + "add mom's birthday to my calendar on april 12", + "calendar_update" + ], + [ + "please take final exams off my calendar for may 3", + "calendar_update" + ], + [ + "add dentist appointment to my calendar for march 1", + "calendar_update" + ], + [ + "remove the may 11 event called baby shower from my calendar", + "calendar_update" + ], + [ + "clear my entire schedule for april 1", + "calendar_update" + ], + [ + "take the event called surprise party off my calendar for june 2", + "calendar_update" + ], + [ + "i want you to cancel the event called 'bachelorette party' on april 15", + "calendar_update" + ], + [ + "please schedule an event called 'nadine's baby shower' on my calendar", + "calendar_update" + ], + [ + "remove the june 12 event called sasha's wedding from my calendar", + "calendar_update" + ], + [ + "clear my calendar for the date of june 23", + "calendar_update" + ], + [ + "please put annie's baby shower on march 30 in my calendar", + "calendar_update" + ], + [ + "make sure my calendar is clear for june 1", + "calendar_update" + ], + [ + "remove anniversary dinner from my calendar on april 5", + "calendar_update" + ], + [ + "please clear entries on my calendar for the 1st", + "calendar_update" + ], + [ + "please add an item to my calendar that i need to clean the kitchen on thursday", + "calendar_update" + ], + [ + "i want the events on my calendar for march 20th, 2019 to be cleared", + "calendar_update" + ], + [ + "remove celebrate anniversary from my calendar", + "calendar_update" + ], + [ + "erase any event on my calendar that's set for wednesday of next week", + "calendar_update" + ], + [ + "i want to add a doctor's visit to the calendar for friday", + "calendar_update" + ], + [ + "clear my calendar for this friday", + "calendar_update" + ], + [ + "delete all events on my calendar that have the word girlfriend in them", + "calendar_update" + ], + [ + "go ahead and delete the doctor appointment i have scheduled for monday", + "calendar_update" + ], + [ + "add my birthday to my calendar for next month on the 5th", + "calendar_update" + ], + [ + "delete my golf tournament event from tomrrow", + "calendar_update" + ], + [ + "put my parents anniversary on the calendar for next week on tuesday", + "calendar_update" + ], + [ + "clear my calendar for tomorrow", + "calendar_update" + ], + [ + "remove the recurring training meeting events off my calendar", + "calendar_update" + ], + [ + "put a reminder on the calendar to buy a gun on march 1st", + "calendar_update" + ], + [ + "i need to add farm trip to my calendar for friday", + "calendar_update" + ], + [ + "i want to add farm trip to my calendar for friday", + "calendar_update" + ], + [ + "i must add farm trip to my calendar for friday", + "calendar_update" + ], + [ + "i got to remove fishing from my calendar for soccer", + "calendar_update" + ], + [ + "please remove fishing from my calendar for soccer", + "calendar_update" + ], + [ + "i need to remove fishing from my calendar for soccer", + "calendar_update" + ], + [ + "i wanna remove fishing from my calendar for soccer", + "calendar_update" + ], + [ + "i shall remove fishing from my calendar for soccer", + "calendar_update" + ], + [ + "add farm trip to my calendar for friday", + "calendar_update" + ], + [ + "i have to add farm trip to my calendar for friday", + "calendar_update" + ], + [ + "i need to add my doctor's appointment to my calendar for the first", + "calendar_update" + ], + [ + "i need to delete my doctor's appointment scheduled for march 15th from my calendar", + "calendar_update" + ], + [ + "i would like to have march 5th's 5k added to my calendar", + "calendar_update" + ], + [ + "add my spa appointment on the 12th to my calendar", + "calendar_update" + ], + [ + "can you add remember to register for the race on my calendar for the 15th of march", + "calendar_update" + ], + [ + "please add lunch and catch up with lisa on friday to my calendar", + "calendar_update" + ], + [ + "please scratch my march 1st meeting off my calendar", + "calendar_update" + ], + [ + "march 3rd needs to be cleared on my calendar", + "calendar_update" + ], + [ + "make sure april 1 is clear on my calendar", + "calendar_update" + ], + [ + "keep april 2nd wide open on my calendar please", + "calendar_update" + ], + [ + "get rid of everything on my calendar for march 2nd", + "calendar_update" + ], + [ + "take my lunch plans off the calendar for march 13th", + "calendar_update" + ], + [ + "take my dinner plans off my calendar for tomorrow", + "calendar_update" + ], + [ + "remove dinner with suzie from my calendar on march 1st", + "calendar_update" + ], + [ + "can you get rid of my trip to the zoo from my calendar on march 1st", + "calendar_update" + ], + [ + "remove my date with liz from my calendar on april 1st", + "calendar_update" + ], + [ + "clear my calendar on march 1st", + "calendar_update" + ], + [ + "write down appointment for tomorrow on my calendar", + "calendar_update" + ], + [ + "put appointment on my calendar for tomorrow", + "calendar_update" + ], + [ + "i need to put my appointment for tomorrow on my calendar", + "calendar_update" + ], + [ + "make not of my appointment for tomorrow on my calendar", + "calendar_update" + ], + [ + "remember to put down that i have an appointment for tomorrow on my calendar", + "calendar_update" + ], + [ + "add my doctor appointment on march 25th at 3:00 to my calendar", + "calendar_update" + ], + [ + "delete the hair appointment i had scheduled on may 1st pleae", + "calendar_update" + ], + [ + "lunch with deb at noon today", + "calendar_update" + ], + [ + "add jake's birthday party for friday at 5", + "calendar_update" + ], + [ + "remove the birthday party this friday from my schedule", + "calendar_update" + ], + [ + "remove from calendar jesse's bbq on june 9th", + "calendar_update" + ], + [ + "take lunch off my calendar on the 3rd", + "calendar_update" + ], + [ + "get rid of tuesday the 5ths dinner", + "calendar_update" + ], + [ + "remove jake's birthday on march 22", + "calendar_update" + ], + [ + "take pat's appointment off my calendar", + "calendar_update" + ], + [ + "take lunch with steven off of my calendar", + "calendar_update" + ], + [ + "i no longer need to go to the zoo on the 8th of this month", + "calendar_update" + ], + [ + "undo the last event on my calendar", + "calendar_update" + ], + [ + "for the calendar, on february 8 add moms birthday", + "calendar_update" + ], + [ + "schedule family dinner on my calendar on march 8", + "calendar_update" + ], + [ + "put \"get tires checked\" on my calendar", + "calendar_update" + ], + [ + "please put taco night on the house calendar date of january 6", + "calendar_update" + ], + [ + "remove meeting with carla from the calendar", + "calendar_update" + ], + [ + "add meeting with carla to my schedule for july 4", + "calendar_update" + ], + [ + "i need trip to the zoo on the calendar for june 4", + "calendar_update" + ], + [ + "delete lunch with steve on friday please", + "calendar_update" + ], + [ + "remove moms birthday from calendar", + "calendar_update" + ], + [ + "i need to delete an event from my calendar", + "calendar_update" + ], + [ + "i need to remove an event from my calendar", + "calendar_update" + ], + [ + "may i know if you are a real person or an ai", + "are_you_a_bot" + ], + [ + "i need to know if you are a real person or an ai", + "are_you_a_bot" + ], + [ + "i want to know if you are a real person or an ai", + "are_you_a_bot" + ], + [ + "tell me if you are a real person or an ai", + "are_you_a_bot" + ], + [ + "are your real or artificial", + "are_you_a_bot" + ], + [ + "am i talking to a real person", + "are_you_a_bot" + ], + [ + "am i speaking with someone real", + "are_you_a_bot" + ], + [ + "would you consider yourself to be a bot", + "are_you_a_bot" + ], + [ + "i am not a bot, are you", + "are_you_a_bot" + ], + [ + "do you think you are a bot", + "are_you_a_bot" + ], + [ + "you sound like a bot", + "are_you_a_bot" + ], + [ + "how do i know that you're a person", + "are_you_a_bot" + ], + [ + "prove that you're a person", + "are_you_a_bot" + ], + [ + "are you a bot or a person", + "are_you_a_bot" + ], + [ + "are you real or fake", + "are_you_a_bot" + ], + [ + "are you ai, or a person", + "are_you_a_bot" + ], + [ + "are you a human or a bot", + "are_you_a_bot" + ], + [ + "am i talking with real person or ai", + "are_you_a_bot" + ], + [ + "are you real or an ai", + "are_you_a_bot" + ], + [ + "are you a bot right now", + "are_you_a_bot" + ], + [ + "are you a real human", + "are_you_a_bot" + ], + [ + "are you a real person or an ai", + "are_you_a_bot" + ], + [ + "so are you a real person", + "are_you_a_bot" + ], + [ + "so are you human", + "are_you_a_bot" + ], + [ + "so are you a bot", + "are_you_a_bot" + ], + [ + "tell me now if you are a bot", + "are_you_a_bot" + ], + [ + "i need to know if you are a bot", + "are_you_a_bot" + ], + [ + "are you an ai or a real person", + "are_you_a_bot" + ], + [ + "are you actually a bot", + "are_you_a_bot" + ], + [ + "so are you real", + "are_you_a_bot" + ], + [ + "are you a human", + "are_you_a_bot" + ], + [ + "am i talking with a real person", + "are_you_a_bot" + ], + [ + "are you a computer or a real person", + "are_you_a_bot" + ], + [ + "are you a computer, or are you a real person", + "are_you_a_bot" + ], + [ + "are you a live person or a computer", + "are_you_a_bot" + ], + [ + "are you real or automated", + "are_you_a_bot" + ], + [ + "is this a person talking to me or a computer", + "are_you_a_bot" + ], + [ + "are you a human being or a robot", + "are_you_a_bot" + ], + [ + "are you alive", + "are_you_a_bot" + ], + [ + "are you a live human being", + "are_you_a_bot" + ], + [ + "are you a computer", + "are_you_a_bot" + ], + [ + "are you human or a bot", + "are_you_a_bot" + ], + [ + "are you a real person or a computer", + "are_you_a_bot" + ], + [ + "are you an automated assistance", + "are_you_a_bot" + ], + [ + "are you a person", + "are_you_a_bot" + ], + [ + "are you an actual person", + "are_you_a_bot" + ], + [ + "are you really a human", + "are_you_a_bot" + ], + [ + "are you a real human being", + "are_you_a_bot" + ], + [ + "do you know if you are a robot", + "are_you_a_bot" + ], + [ + "are you really an actual human being", + "are_you_a_bot" + ], + [ + "what are you", + "are_you_a_bot" + ], + [ + "do you know you are not human", + "are_you_a_bot" + ], + [ + "is there anything real about you", + "are_you_a_bot" + ], + [ + "how real are you", + "are_you_a_bot" + ], + [ + "are you a real life person", + "are_you_a_bot" + ], + [ + "tell me if you are human", + "are_you_a_bot" + ], + [ + "are you ai", + "are_you_a_bot" + ], + [ + "am i speaking with ai or a real, live person", + "are_you_a_bot" + ], + [ + "are you a member or the human race or are you a computer program", + "are_you_a_bot" + ], + [ + "are you a person in real life or programmed ai", + "are_you_a_bot" + ], + [ + "do you know whether you are a human or whether you're a computer", + "are_you_a_bot" + ], + [ + "should i regard you as a human or as a computer", + "are_you_a_bot" + ], + [ + "would you say that you are human or copmuter", + "are_you_a_bot" + ], + [ + "how are you classified, as a human or a computer", + "are_you_a_bot" + ], + [ + "can you tell me if you're human or if you're a computer", + "are_you_a_bot" + ], + [ + "i think you are a bot", + "are_you_a_bot" + ], + [ + "are you considered a bot", + "are_you_a_bot" + ], + [ + "am i talking to an actual person", + "are_you_a_bot" + ], + [ + "do you consider yourself a bot", + "are_you_a_bot" + ], + [ + "you are a bot aren't you", + "are_you_a_bot" + ], + [ + "what are you, a bot or human", + "are_you_a_bot" + ], + [ + "are you a live being", + "are_you_a_bot" + ], + [ + "are you real or are you an ai", + "are_you_a_bot" + ], + [ + "please tell me if you are an ai", + "are_you_a_bot" + ], + [ + "are you ai or a real person please", + "are_you_a_bot" + ], + [ + "are an an ai", + "are_you_a_bot" + ], + [ + "are you real or not", + "are_you_a_bot" + ], + [ + "are you an ai or person", + "are_you_a_bot" + ], + [ + "are you really a person or an ai", + "are_you_a_bot" + ], + [ + "is there a way to tell if you are real or an ai", + "are_you_a_bot" + ], + [ + "tell me if you are a person or ai", + "are_you_a_bot" + ], + [ + "how do i know if you are a real person", + "are_you_a_bot" + ], + [ + "are you a real person or a bot", + "are_you_a_bot" + ], + [ + "am i talking to a person or a bot", + "are_you_a_bot" + ], + [ + "are you a machine", + "are_you_a_bot" + ], + [ + "are you a real person or artificial intelligence", + "are_you_a_bot" + ], + [ + "are you a real person or automated", + "are_you_a_bot" + ], + [ + "are you a real person or software", + "are_you_a_bot" + ], + [ + "are you a real person or a robot", + "are_you_a_bot" + ], + [ + "are you an ai or can you prove you're human", + "are_you_a_bot" + ], + [ + "are you a human or an ai", + "are_you_a_bot" + ], + [ + "are you an actual person, or ai", + "are_you_a_bot" + ], + [ + "are you a bot or a real person", + "are_you_a_bot" + ], + [ + "do you identify as a human or computer", + "are_you_a_bot" + ], + [ + "please specify if you are human or computer", + "are_you_a_bot" + ], + [ + "tell me if you are a human or a computer", + "are_you_a_bot" + ], + [ + "can you specify if you are a human or a computer", + "are_you_a_bot" + ], + [ + "let me know if you are a human or a computer", + "are_you_a_bot" + ], + [ + "is this a computer right now or a human being", + "are_you_a_bot" + ], + [ + "is this human or a robot", + "are_you_a_bot" + ], + [ + "what level is my gas tank at", + "gas" + ], + [ + "where's the gas tank level at", + "gas" + ], + [ + "how does my gas tank look", + "gas" + ], + [ + "what line is the gas tank at", + "gas" + ], + [ + "how much gas is in my gas tank", + "gas" + ], + [ + "how much gas is left", + "gas" + ], + [ + "what is the amount of gas i have", + "gas" + ], + [ + "tell me the amount of gas i have", + "gas" + ], + [ + "in my tank how much gas is there", + "gas" + ], + [ + "i'd like to know how much gas is left", + "gas" + ], + [ + "what amount of fuel do i have left", + "gas" + ], + [ + "what's the fuel level", + "gas" + ], + [ + "what's the status of my gas tank", + "gas" + ], + [ + "what is my current gas level", + "gas" + ], + [ + "what is my current fuel level", + "gas" + ], + [ + "what's my current gas level", + "gas" + ], + [ + "what is my current gas level at", + "gas" + ], + [ + "what's my current fuel level", + "gas" + ], + [ + "how much gas is in my car", + "gas" + ], + [ + "how empty is my gas tank", + "gas" + ], + [ + "what does my gas meter say", + "gas" + ], + [ + "am i running low on gas", + "gas" + ], + [ + "how much gas to i have left", + "gas" + ], + [ + "what do i have left in the gas tank", + "gas" + ], + [ + "can you tell me the amount of gas i have", + "gas" + ], + [ + "i need to know how much gas i got", + "gas" + ], + [ + "whats left as far as gas goes", + "gas" + ], + [ + "how much farther can i drive on the gas i have", + "gas" + ], + [ + "do i have the gas to get to orlando", + "gas" + ], + [ + "how much gas do i currently have", + "gas" + ], + [ + "do i have enough fuel to get to orlando", + "gas" + ], + [ + "will i make it on the gas i have to orlando", + "gas" + ], + [ + "does my car have enough gas to get to chicago", + "gas" + ], + [ + "does my car have enough gas to get to atlantic city", + "gas" + ], + [ + "can my car get to reno with the gas currently in my tank", + "gas" + ], + [ + "can my car get to dallas with the gas currently in my tank", + "gas" + ], + [ + "does my car have enough gas to get to detroit", + "gas" + ], + [ + "i need to know how much gas i have", + "gas" + ], + [ + "i wanna know how much gas i have", + "gas" + ], + [ + "let me know how much gas i have in total", + "gas" + ], + [ + "let me know how much gas i have", + "gas" + ], + [ + "what is the total amount of gas in my car", + "gas" + ], + [ + "what amount of gas is in my car", + "gas" + ], + [ + "how much total gas do i have", + "gas" + ], + [ + "tell me how much gas i have", + "gas" + ], + [ + "what amount of gas do i have in my car", + "gas" + ], + [ + "is my gas tank at least half full", + "gas" + ], + [ + "how much gas is in my tank", + "gas" + ], + [ + "is my gas tank full", + "gas" + ], + [ + "should i get more gas", + "gas" + ], + [ + "am i low on gas", + "gas" + ], + [ + "what level is my gas at", + "gas" + ], + [ + "can you read my gas level", + "gas" + ], + [ + "what is the amount of gas left", + "gas" + ], + [ + "do i have a lot of gas left", + "gas" + ], + [ + "what is my gas level", + "gas" + ], + [ + "how's my gas supply looking", + "gas" + ], + [ + "do i have enough gas left to make it to tampa", + "gas" + ], + [ + "what percent of gas do i have left", + "gas" + ], + [ + "how many gallons do i have left", + "gas" + ], + [ + "is there enough fuel to drive to tampa", + "gas" + ], + [ + "do i need to get gas soon", + "gas" + ], + [ + "do i have enough fuel to get to tampa", + "gas" + ], + [ + "what's left in my gas tank", + "gas" + ], + [ + "do i have enough fuel for the drive to tampa", + "gas" + ], + [ + "can i make it to tampa without needing to get more gas", + "gas" + ], + [ + "can i get to work safely or do i need to stop and get gas", + "gas" + ], + [ + "how many miles can i go with my current fuel level", + "gas" + ], + [ + "is the level of fuel in my car enough to get me to work", + "gas" + ], + [ + "can i make it to work with my current fuel level", + "gas" + ], + [ + "how much does it cost to get my car filled up", + "gas" + ], + [ + "will i run out of gas before i get to sioux falls", + "gas" + ], + [ + "how many miles is there left to get to sioux falls", + "gas" + ], + [ + "how many miles before i run out of gas", + "gas" + ], + [ + "where can i get gas to get to sioux falls", + "gas" + ], + [ + "i'd just like to know how much gas is in my vehicle", + "gas" + ], + [ + "what is the number of gas in my car right now", + "gas" + ], + [ + "inform me as to how much gas my car has", + "gas" + ], + [ + "what is the amount of gas in my car", + "gas" + ], + [ + "where is my gas level right now", + "gas" + ], + [ + "what is my current amount of gas", + "gas" + ], + [ + "what percentage of gas do i have left", + "gas" + ], + [ + "please check the amount of gas i have", + "gas" + ], + [ + "can you tell me the amount of gas i have remaining", + "gas" + ], + [ + "i would like to know the amount of gas i have", + "gas" + ], + [ + "i need to know how much gas is left", + "gas" + ], + [ + "please tell me the amount of gas i have", + "gas" + ], + [ + "how low is my gas tank", + "gas" + ], + [ + "whats in my gas tank", + "gas" + ], + [ + "what is left in my gas tank", + "gas" + ], + [ + "how much fuel do i have", + "gas" + ], + [ + "do i have enough fuel to get to dollar tree", + "gas" + ], + [ + "is there enough fuel to make it to the walmart", + "gas" + ], + [ + "how much fuel is in the tank", + "gas" + ], + [ + "how much gas is in the tank", + "gas" + ], + [ + "do i have enough fuel in the gas tank", + "gas" + ], + [ + "how much petrol do i have", + "gas" + ], + [ + "do i have enough fuel to make it to the theater", + "gas" + ], + [ + "do i have enough gas in the fuel tank", + "gas" + ], + [ + "what my fuel tank at", + "gas" + ], + [ + "how long til my visa card expires", + "expiration_date" + ], + [ + "on what date does my visa card expires", + "expiration_date" + ], + [ + "on what month and year does my card expire", + "expiration_date" + ], + [ + "how soon does my visa card expire", + "expiration_date" + ], + [ + "how much time do i have before my credit card expires", + "expiration_date" + ], + [ + "how many more days before my credit card expires", + "expiration_date" + ], + [ + "can you tell me if my credit card expires in the near future", + "expiration_date" + ], + [ + "what is the validity of my credit card", + "expiration_date" + ], + [ + "tell me the expiry date of my credit card", + "expiration_date" + ], + [ + "does my credit card expire soon", + "expiration_date" + ], + [ + "when my credit card is going to expire", + "expiration_date" + ], + [ + "what is the expiry date of my credit card", + "expiration_date" + ], + [ + "in what month will my card reach expiration", + "expiration_date" + ], + [ + "which month is the one in which my card expires", + "expiration_date" + ], + [ + "how much longer until my credit card expires", + "expiration_date" + ], + [ + "can you tell me what date my credit card expires", + "expiration_date" + ], + [ + "please find the expiration month listed on my card", + "expiration_date" + ], + [ + "can you please tell me my card's expiration month", + "expiration_date" + ], + [ + "is my credit card expiration date approaching", + "expiration_date" + ], + [ + "will you please confirm the month that my card expires", + "expiration_date" + ], + [ + "what's the expiration date on my credit card", + "expiration_date" + ], + [ + "when is my credit due to expire", + "expiration_date" + ], + [ + "what's the expiry month of my card", + "expiration_date" + ], + [ + "tell me the month my card expires", + "expiration_date" + ], + [ + "tell me the expiry month of my card", + "expiration_date" + ], + [ + "i want to know the expiry month of my card", + "expiration_date" + ], + [ + "is my credit card expiring soon", + "expiration_date" + ], + [ + "how long is the validity of my credit card", + "expiration_date" + ], + [ + "please let me know when i need to renew my credit card", + "expiration_date" + ], + [ + "how long is it until my credit card expires", + "expiration_date" + ], + [ + "how long until i my card expires", + "expiration_date" + ], + [ + "whats the expiration date on my credit card", + "expiration_date" + ], + [ + "when does my card expire", + "expiration_date" + ], + [ + "when will my american express credit card expire", + "expiration_date" + ], + [ + "what is the expiration date of my wells fargo card", + "expiration_date" + ], + [ + "please tell me the month and year of expiration for my discover card", + "expiration_date" + ], + [ + "when does my capital one visa expire", + "expiration_date" + ], + [ + "can you tell me the expiration date for my mastercard", + "expiration_date" + ], + [ + "what is the expiration date of my current card", + "expiration_date" + ], + [ + "do i need a new card yet", + "expiration_date" + ], + [ + "when do i have to renew my card so it doesn't expire", + "expiration_date" + ], + [ + "is my card set to expire soon", + "expiration_date" + ], + [ + "how long is it going to be until my card expires", + "expiration_date" + ], + [ + "what's the exact date that my chase card will no longer work", + "expiration_date" + ], + [ + "what's the month that my card expires", + "expiration_date" + ], + [ + "my card expires in what month", + "expiration_date" + ], + [ + "tell me the month that my credit card will expire", + "expiration_date" + ], + [ + "my credit card is set to expire in what month", + "expiration_date" + ], + [ + "my chase card expires on what date", + "expiration_date" + ], + [ + "my discover card expires on what date", + "expiration_date" + ], + [ + "when does my discover card expire", + "expiration_date" + ], + [ + "my american express card expires on what date", + "expiration_date" + ], + [ + "how many days until my amex card reaches it expiration date", + "expiration_date" + ], + [ + "what date does my capital one card expire", + "expiration_date" + ], + [ + "when is the expiration date for my discover card", + "expiration_date" + ], + [ + "can you check the expiration date for my amex card", + "expiration_date" + ], + [ + "can i have the expiration date for my capital one card", + "expiration_date" + ], + [ + "during which month will my card expire", + "expiration_date" + ], + [ + "tell me the month that my card will expire in", + "expiration_date" + ], + [ + "help me figure out when exactly my credit card will be expiring", + "expiration_date" + ], + [ + "could you look up the date that my credit card is set to expire", + "expiration_date" + ], + [ + "look up the expiration date for my barclay's card", + "expiration_date" + ], + [ + "when will my american express card expire", + "expiration_date" + ], + [ + "can you find out for me when my credit card will be expiring", + "expiration_date" + ], + [ + "i need to know when my card is set to expire please", + "expiration_date" + ], + [ + "during what month will my card's expiration date fall on", + "expiration_date" + ], + [ + "what is the month that my card is set to expire in", + "expiration_date" + ], + [ + "i need to know when my mastercard will expire", + "expiration_date" + ], + [ + "i need to know the date of expiration for my credit card", + "expiration_date" + ], + [ + "do you know the expiration date for my visa card", + "expiration_date" + ], + [ + "please find out the expiration date for my credit card", + "expiration_date" + ], + [ + "tell me the expiration date for my current credit card", + "expiration_date" + ], + [ + "how long before my amex card expires", + "expiration_date" + ], + [ + "do you know the expiration date on my credit card", + "expiration_date" + ], + [ + "what is the month of my card's expiration date", + "expiration_date" + ], + [ + "where can i find my credit card's expiration date", + "expiration_date" + ], + [ + "please look up my card's expiration date", + "expiration_date" + ], + [ + "how long will it be until my visa card expires", + "expiration_date" + ], + [ + "what month and year will my visa card expire", + "expiration_date" + ], + [ + "when is the date my visa card will expire", + "expiration_date" + ], + [ + "when is the expiration date for my visa card", + "expiration_date" + ], + [ + "what is the expiration date on my visa card", + "expiration_date" + ], + [ + "what is the expiration date on my credit card", + "expiration_date" + ], + [ + "when is my card going to expire", + "expiration_date" + ], + [ + "when is my credit card going to expire", + "expiration_date" + ], + [ + "what's the last date i can use my credit card", + "expiration_date" + ], + [ + "what is the expiration date on my card", + "expiration_date" + ], + [ + "when will my discovery card expire", + "expiration_date" + ], + [ + "when does my amex expire", + "expiration_date" + ], + [ + "can you check when my visa card expires", + "expiration_date" + ], + [ + "tell me when my visa card will have expired", + "expiration_date" + ], + [ + "when will my amex card reach its expiration", + "expiration_date" + ], + [ + "when's my visa card expiring", + "expiration_date" + ], + [ + "what date will my hy-vee card need to be renewed", + "expiration_date" + ], + [ + "how long until my mastercard expires", + "expiration_date" + ], + [ + "how long do i've got until my discovery card expires", + "expiration_date" + ], + [ + "when should i expect my visa to expire", + "expiration_date" + ], + [ + "how long until my visa expires", + "expiration_date" + ], + [ + "find out for me when my mastercard expires", + "expiration_date" + ], + [ + "when will my visa next expire", + "expiration_date" + ], + [ + "insert what i am listening to into my jazz playlist", + "update_playlist" + ], + [ + "add this tune to my jazz playlist", + "update_playlist" + ], + [ + "can you add this song to my jazz playlist", + "update_playlist" + ], + [ + "please add this song to my jazz playlist", + "update_playlist" + ], + [ + "add this song to my jazz playlist", + "update_playlist" + ], + [ + "add creep by radio head to the playlist", + "update_playlist" + ], + [ + "please add someday by the strokes to my playlist", + "update_playlist" + ], + [ + "include smooth operator by sade in my playlist", + "update_playlist" + ], + [ + "can you put smooth operator by sade on my playlist", + "update_playlist" + ], + [ + "add to my playlist smooth operator by sade", + "update_playlist" + ], + [ + "append my playlist with smooth operator by sade", + "update_playlist" + ], + [ + "put smooth operator by sade on my playlist", + "update_playlist" + ], + [ + "could you put broken by evanescense to my playlist", + "update_playlist" + ], + [ + "what did you add to my playlist - broken by evanescence", + "update_playlist" + ], + [ + "add the next song to my playlist - broken by evanescence", + "update_playlist" + ], + [ + "could you insert broken by evanescence to my music", + "update_playlist" + ], + [ + "add broken by evanescence to my playlist", + "update_playlist" + ], + [ + "favorite what's currently playing on my playlist", + "update_playlist" + ], + [ + "add the current song to my favorite playlist", + "update_playlist" + ], + [ + "the song that's on, add it to my favorite playlist", + "update_playlist" + ], + [ + "put the current song in my favorite playlist", + "update_playlist" + ], + [ + "add what's playing on my favorite playlist", + "update_playlist" + ], + [ + "i would like to add you say by lauren daigle to my playlist", + "update_playlist" + ], + [ + "will you please add cannons by phil wickham to my playlist", + "update_playlist" + ], + [ + "let's add wonder by hillsong united to my playlist", + "update_playlist" + ], + [ + "can you please add hero by skillet to my playlist", + "update_playlist" + ], + [ + "please add roar by katy perry to my playlist", + "update_playlist" + ], + [ + "i think i wanna add heart shaped box by nirvana to my playlist", + "update_playlist" + ], + [ + "i wish to add this song to my classical playlist now", + "update_playlist" + ], + [ + "add help! by the beatles to my playlist", + "update_playlist" + ], + [ + "i need to add this song to my playlist of rock", + "update_playlist" + ], + [ + "i want to add this song to my classical playlist", + "update_playlist" + ], + [ + "i wanna add help! by the beatles to my playlist", + "update_playlist" + ], + [ + "i really would like to add hey jude by the beatles to my playlist", + "update_playlist" + ], + [ + "i gotta add hey jude by the beatles to my playlist", + "update_playlist" + ], + [ + "i wanna add this song to my rock playlist", + "update_playlist" + ], + [ + "my new playlist well be having god's plan adding to it", + "update_playlist" + ], + [ + "god's plan will be my new song added to new playlist", + "update_playlist" + ], + [ + "adding gods plan to new playlist", + "update_playlist" + ], + [ + "god's plan will be added to my new playlist", + "update_playlist" + ], + [ + "new playlist that i will add god's plan to", + "update_playlist" + ], + [ + "please put africa by toto on my playlist", + "update_playlist" + ], + [ + "please add the immigrant song by led zeppelin to my playlist", + "update_playlist" + ], + [ + "add the thong song by cisqo to my playlist, please", + "update_playlist" + ], + [ + "put mambo #5 by lou bega on my playlist, please", + "update_playlist" + ], + [ + "put dr feelgood by motley crue on my playlist", + "update_playlist" + ], + [ + "add this song to the end of my led zeppelin playlist", + "update_playlist" + ], + [ + "add this song to my rainy day playlist", + "update_playlist" + ], + [ + "please put this song on my moody monday playlist", + "update_playlist" + ], + [ + "put the song that's playing to my techno playlist", + "update_playlist" + ], + [ + "put this song on my edm playlist", + "update_playlist" + ], + [ + "add this song to my cleaning playlist", + "update_playlist" + ], + [ + "add this song to my slow jams playlist", + "update_playlist" + ], + [ + "will you add what i'm listening to to my love playlist", + "update_playlist" + ], + [ + "add walk by pantera to my playlist", + "update_playlist" + ], + [ + "add one by metallica to my playlist", + "update_playlist" + ], + [ + "will you add what i'm listening to to my road trip playlist", + "update_playlist" + ], + [ + "add this song to my game night playlist", + "update_playlist" + ], + [ + "add coming undone by korn to my playlist", + "update_playlist" + ], + [ + "will you add what i'm listening to to my work playlist", + "update_playlist" + ], + [ + "add welcome to the jungle by guns n roses to my playlist", + "update_playlist" + ], + [ + "will you add what i'm listening to to my bedroom playlist", + "update_playlist" + ], + [ + "add this song to my dinner playlist", + "update_playlist" + ], + [ + "will you add what i'm listening to to my dinner playlist", + "update_playlist" + ], + [ + "add this song to my top 40 playlist", + "update_playlist" + ], + [ + "add hells bells by acdc to my playlist", + "update_playlist" + ], + [ + "make this song part of the \"kids\" playlist", + "update_playlist" + ], + [ + "include this song in the \"kids\" playlist", + "update_playlist" + ], + [ + "connect this song to my playlist \"kids", + "update_playlist" + ], + [ + "please add to \"kids\" playlist", + "update_playlist" + ], + [ + "i want this song put on my \"kids\" playlist", + "update_playlist" + ], + [ + "this song needs to be added to my reggae playlist", + "update_playlist" + ], + [ + "this song should be add this on my rock playlist", + "update_playlist" + ], + [ + "could you add this song to my rock playlist", + "update_playlist" + ], + [ + "add a song to my rock playlist", + "update_playlist" + ], + [ + "put this song on my reggae playlist", + "update_playlist" + ], + [ + "add this song to shared playlist", + "update_playlist" + ], + [ + "put this song in vibes playlist", + "update_playlist" + ], + [ + "add yosemite to my rap playlist", + "update_playlist" + ], + [ + "add 7 rings to my pop playlist", + "update_playlist" + ], + [ + "add baby shark to my kid playlist", + "update_playlist" + ], + [ + "add body to my dance playlist", + "update_playlist" + ], + [ + "add mia to my spanish playlist", + "update_playlist" + ], + [ + "add single ladies by beyonce to my pop playlist", + "update_playlist" + ], + [ + "add this track to my rock playlist", + "update_playlist" + ], + [ + "add psycho by post malone to my playlist", + "update_playlist" + ], + [ + "please add this song to my alternative playlist", + "update_playlist" + ], + [ + "add i like it by cardi b to my playlist", + "update_playlist" + ], + [ + "add american idiot by green day to my playlist", + "update_playlist" + ], + [ + "can you add that to my chillwave playlist", + "update_playlist" + ], + [ + "add ruby soho by rancid to my playlist", + "update_playlist" + ], + [ + "add god's plan by drake to my playlist", + "update_playlist" + ], + [ + "add this song to my post-rock playlist", + "update_playlist" + ], + [ + "transfer happy to my rb playlist", + "update_playlist" + ], + [ + "include happy on my rb playlist", + "update_playlist" + ], + [ + "list happy on my rb playlist", + "update_playlist" + ], + [ + "get happy on my rb playlist", + "update_playlist" + ], + [ + "i want to have happy added to my rb playlist", + "update_playlist" + ], + [ + "can you add passionfruit by yaeji to my playlist", + "update_playlist" + ], + [ + "yellow by coldplay to my playlist please", + "update_playlist" + ], + [ + "remove my reservation at outback for timmy", + "cancel_reservation" + ], + [ + "can you cancel the reservation for kyle's party at red lobster", + "cancel_reservation" + ], + [ + "cancel my party reservation for brad at longhorn", + "cancel_reservation" + ], + [ + "get rid of my reservation at chez francois for jennifer", + "cancel_reservation" + ], + [ + "cancel the reservation at olive garden for tommy", + "cancel_reservation" + ], + [ + "you can cancel my reservation", + "cancel_reservation" + ], + [ + "my reservation is no longer needed", + "cancel_reservation" + ], + [ + "tell the restaurant i cannot make it", + "cancel_reservation" + ], + [ + "there is no need to confirm my reservation", + "cancel_reservation" + ], + [ + "would you please cancel the reservations for dinner", + "cancel_reservation" + ], + [ + "hello, i need to cancel tonight's reservation for dinner", + "cancel_reservation" + ], + [ + "i need to put in a cancellation for the dinner plans tonight", + "cancel_reservation" + ], + [ + "cancel the dinner reservation i made, okay", + "cancel_reservation" + ], + [ + "i need to cancel my dinner reservation", + "cancel_reservation" + ], + [ + "please cancel my reservation for dinner", + "cancel_reservation" + ], + [ + "cancel my reservation for dinner", + "cancel_reservation" + ], + [ + "my reservation for dinner needs to be canceled", + "cancel_reservation" + ], + [ + "call the restaurant and cancel my reservation", + "cancel_reservation" + ], + [ + "get rid of my 2 pm reservation at ruth's steakhouse", + "cancel_reservation" + ], + [ + "can you cancelt the reservation i have for dinner", + "cancel_reservation" + ], + [ + "please cancel my dinner reservation for tuesday", + "cancel_reservation" + ], + [ + "can you cancel my reservation for dinner tomorrow", + "cancel_reservation" + ], + [ + "cancel my reservation for 6 pm at sidetracks", + "cancel_reservation" + ], + [ + "get rid of my 4 pm reservation at the steakhouse please", + "cancel_reservation" + ], + [ + "can you cancel the reservation i have at 4 pm at ruth's", + "cancel_reservation" + ], + [ + "cancel the reservation i made for 8 pm at black rock", + "cancel_reservation" + ], + [ + "cancel my dinner reservation please", + "cancel_reservation" + ], + [ + "please cancel the table i had reserved for tonight", + "cancel_reservation" + ], + [ + "i made a reservation for chris at tony's, please cancel it", + "cancel_reservation" + ], + [ + "cancel tonight's dinner reservation", + "cancel_reservation" + ], + [ + "i don't need my reservation, can you cancel it", + "cancel_reservation" + ], + [ + "can you cancel my dinner reservation", + "cancel_reservation" + ], + [ + "please cancel my reservation for chris at brio", + "cancel_reservation" + ], + [ + "please cancel my dinner reservation", + "cancel_reservation" + ], + [ + "can you cancel my reservation tonight for chris at smith and wollensky", + "cancel_reservation" + ], + [ + "i don't need my reservation, cancel it", + "cancel_reservation" + ], + [ + "can you cancel my reservation on tuesday for chris at stella maris", + "cancel_reservation" + ], + [ + "cancel my reservation for chris at jp field's", + "cancel_reservation" + ], + [ + "please cancel my reservation", + "cancel_reservation" + ], + [ + "cancel my reservation for dinner, please", + "cancel_reservation" + ], + [ + "tell the restaurant to cancel my reservation", + "cancel_reservation" + ], + [ + "abandon the dinner reservation i made", + "cancel_reservation" + ], + [ + "scrap that dinner reservation", + "cancel_reservation" + ], + [ + "call off the dinner reservation", + "cancel_reservation" + ], + [ + "cancel my reservation for me", + "cancel_reservation" + ], + [ + "get rid of my dinner reservation", + "cancel_reservation" + ], + [ + "the reservation i placed is not needed anymore", + "cancel_reservation" + ], + [ + "annul the reservation i created", + "cancel_reservation" + ], + [ + "the reservation i created is not necessary anymore", + "cancel_reservation" + ], + [ + "the reservation i made is not required anymore", + "cancel_reservation" + ], + [ + "repeal the dinner reservation", + "cancel_reservation" + ], + [ + "can i cancel my reservations", + "cancel_reservation" + ], + [ + "i would like to cancel my reservations", + "cancel_reservation" + ], + [ + "could i cancel my reservations", + "cancel_reservation" + ], + [ + "can i cancel my reservations please", + "cancel_reservation" + ], + [ + "i need to cancel my reservations", + "cancel_reservation" + ], + [ + "can you cancel my 5:30 pm table reservation at parc", + "cancel_reservation" + ], + [ + "i need you to cancel my reservation for smith's at 6:15", + "cancel_reservation" + ], + [ + "cancel my 8:00 pm prime rib reservation", + "cancel_reservation" + ], + [ + "go ahead and cancel the reservation i made for 6:00 pm at parc", + "cancel_reservation" + ], + [ + "please cancel my 7:30 reservation for morton's", + "cancel_reservation" + ], + [ + "is it possible to cancel the reservation at outback for the johnsons", + "cancel_reservation" + ], + [ + "i made a reservation under mark hamil at the emporium that i don't need any more", + "cancel_reservation" + ], + [ + "i no longer need a table for four at chili's", + "cancel_reservation" + ], + [ + "we have a table at the taco bell under bowie we need to release", + "cancel_reservation" + ], + [ + "i have a reservation at pizza hut under the name leia roberts and i want to cancel it", + "cancel_reservation" + ], + [ + "can you undo the reservation", + "cancel_reservation" + ], + [ + "i'd like to cancel the party of 7 we reserved at the olive garden", + "cancel_reservation" + ], + [ + "i want to cancel the reservation for mercury at the ritz", + "cancel_reservation" + ], + [ + "just trash the reservation i made please", + "cancel_reservation" + ], + [ + "please cancel the table for two at burger king", + "cancel_reservation" + ], + [ + "please delete the reservation for 3 people at outback", + "cancel_reservation" + ], + [ + "go ahead and close the reservation", + "cancel_reservation" + ], + [ + "please unreserve that table", + "cancel_reservation" + ], + [ + "i no longer need the reservation for 20 at ihop", + "cancel_reservation" + ], + [ + "im not going to dinner tonight", + "cancel_reservation" + ], + [ + "im not gonna need the dinner reservation", + "cancel_reservation" + ], + [ + "remove my dinner reservation", + "cancel_reservation" + ], + [ + "i no longer need the dinner reservation", + "cancel_reservation" + ], + [ + "can i cancel my reservation for 4 at red robin", + "cancel_reservation" + ], + [ + "cancel my reservation for 4 at red robin", + "cancel_reservation" + ], + [ + "i want to cancel my reservation for 5 at red robin", + "cancel_reservation" + ], + [ + "could you please cancel my reservation for 5 at red robin", + "cancel_reservation" + ], + [ + "cancel my reservation for 3 at carlos jr", + "cancel_reservation" + ], + [ + "change my reservation with carl at umami to canceled", + "cancel_reservation" + ], + [ + "i no longer need my reservation with carl at umami", + "cancel_reservation" + ], + [ + "cancel my reservation with carl at umami", + "cancel_reservation" + ], + [ + "make sure my reservation at umami with carl is canceled", + "cancel_reservation" + ], + [ + "end my reservation with carl at umami", + "cancel_reservation" + ], + [ + "because of circumstances i don't need my reservation anymore", + "cancel_reservation" + ], + [ + "i won't require my reservation anymore", + "cancel_reservation" + ], + [ + "i'll have to cancel my reservation for tonight", + "cancel_reservation" + ], + [ + "something's come up so i need to cancel my reservation so now", + "cancel_reservation" + ], + [ + "the reservation i have isn't needed any more", + "cancel_reservation" + ], + [ + "the reservation at zepher cancel joe from that", + "cancel_reservation" + ], + [ + "joe and i are to cancel the reservation at zephers now", + "cancel_reservation" + ], + [ + "cancel my reservations for joe's at zepher right now", + "cancel_reservation" + ], + [ + "please cancel the reservation at zephers for joe and myself right now", + "cancel_reservation" + ], + [ + "cancel the reservation for joe and i right now for the zephers reservation we had booked", + "cancel_reservation" + ], + [ + "cancel my 6:00 reservation at the cheesecake factory", + "cancel_reservation" + ], + [ + "please, recite to me some good one liners", + "tell_joke" + ], + [ + "do you know any good jokes about zebras", + "tell_joke" + ], + [ + "can you tell me any truly funny knock knock jokes", + "tell_joke" + ], + [ + "what do people find funny about food", + "tell_joke" + ], + [ + "what are some funny things about food", + "tell_joke" + ], + [ + "show me something funny about food", + "tell_joke" + ], + [ + "indicate something funny on the topic of food", + "tell_joke" + ], + [ + "what's a good joke", + "tell_joke" + ], + [ + "i'd love to hear a joke", + "tell_joke" + ], + [ + "can you tell a joke", + "tell_joke" + ], + [ + "would you tell me a joke", + "tell_joke" + ], + [ + "how about you tell me a joke", + "tell_joke" + ], + [ + "will you tell a joke", + "tell_joke" + ], + [ + "please tell me a joke", + "tell_joke" + ], + [ + "make me laugh", + "tell_joke" + ], + [ + "do you have any jokes", + "tell_joke" + ], + [ + "tell me something funny", + "tell_joke" + ], + [ + "hit me with a good joke", + "tell_joke" + ], + [ + "what's the funniest joke you know", + "tell_joke" + ], + [ + "tell me a joke if you'd like to", + "tell_joke" + ], + [ + "tell me a funny joke", + "tell_joke" + ], + [ + "i'd like you to tell me a joke", + "tell_joke" + ], + [ + "do you know any good jokes", + "tell_joke" + ], + [ + "know any jokes", + "tell_joke" + ], + [ + "i wanna hear something funny", + "tell_joke" + ], + [ + "i would like to listen to a funny joke", + "tell_joke" + ], + [ + "what jokes do you know", + "tell_joke" + ], + [ + "could you please tell me a good joke", + "tell_joke" + ], + [ + "what funny jokes do you know", + "tell_joke" + ], + [ + "can you make me laugh", + "tell_joke" + ], + [ + "can you tell me a few funny jokes", + "tell_joke" + ], + [ + "tell me something funny about parenting", + "tell_joke" + ], + [ + "do you have a list of funny jokes", + "tell_joke" + ], + [ + "i want to hear something funny", + "tell_joke" + ], + [ + "tell me something funny about animals", + "tell_joke" + ], + [ + "tell me something funny about politics", + "tell_joke" + ], + [ + "tell me something amusing", + "tell_joke" + ], + [ + "say something funny", + "tell_joke" + ], + [ + "tell me something funny about adulthood", + "tell_joke" + ], + [ + "tell me something funny about americans", + "tell_joke" + ], + [ + "could you please share a joke with me", + "tell_joke" + ], + [ + "i could really use a laugh right now", + "tell_joke" + ], + [ + "would you like to tell me a joke", + "tell_joke" + ], + [ + "can you tell me a joke", + "tell_joke" + ], + [ + "i'd like to hear a joke", + "tell_joke" + ], + [ + "i want to hear you tell a joke", + "tell_joke" + ], + [ + "tell me a joke", + "tell_joke" + ], + [ + "tell me a joke about politicians", + "tell_joke" + ], + [ + "tell me something that'll make me laugh", + "tell_joke" + ], + [ + "tell me a joke about cows", + "tell_joke" + ], + [ + "do you know anything funny about cats", + "tell_joke" + ], + [ + "tell me a joke about jobs", + "tell_joke" + ], + [ + "what's the funniest thing you know about artificial intelligence", + "tell_joke" + ], + [ + "can you tell me a joke about politicians", + "tell_joke" + ], + [ + "tell me a joke about cars", + "tell_joke" + ], + [ + "can you tell me something funny", + "tell_joke" + ], + [ + "do you know any good jokes about lawyers", + "tell_joke" + ], + [ + "what\u2019s your favorite funny joke", + "tell_joke" + ], + [ + "make me laugh with a funny joke", + "tell_joke" + ], + [ + "what funny joke do you know", + "tell_joke" + ], + [ + "i want to hear a joke that\u2019s funny", + "tell_joke" + ], + [ + "tell me a dirty joke", + "tell_joke" + ], + [ + "tell me a non-offensive joke", + "tell_joke" + ], + [ + "i would like to hear a funny joke", + "tell_joke" + ], + [ + "look for funny jokes", + "tell_joke" + ], + [ + "what are some funny jokes", + "tell_joke" + ], + [ + "tell me something funny about pizza", + "tell_joke" + ], + [ + "tell me something funny about people", + "tell_joke" + ], + [ + "tell me something funny about love", + "tell_joke" + ], + [ + "say something hilarious", + "tell_joke" + ], + [ + "make me giggle", + "tell_joke" + ], + [ + "i need a good laugh", + "tell_joke" + ], + [ + "heard any good jokes lately", + "tell_joke" + ], + [ + "tell me a pun", + "tell_joke" + ], + [ + "what's the latest joke you've heard", + "tell_joke" + ], + [ + "tell me a joke about dogs", + "tell_joke" + ], + [ + "let me know something funny", + "tell_joke" + ], + [ + "tell me a joke about cats", + "tell_joke" + ], + [ + "tell me something funny now", + "tell_joke" + ], + [ + "i wanna know something funny", + "tell_joke" + ], + [ + "tell me something funny about rats", + "tell_joke" + ], + [ + "tell me a joke about animals", + "tell_joke" + ], + [ + "tell me a joke about lawyers", + "tell_joke" + ], + [ + "tell me a joke about rats", + "tell_joke" + ], + [ + "tell me something funny about cats", + "tell_joke" + ], + [ + "tell me something funny about dogs", + "tell_joke" + ], + [ + "i need to know somthing funny", + "tell_joke" + ], + [ + "do you have anything funny to tell me", + "tell_joke" + ], + [ + "do you have any jokes to tell me", + "tell_joke" + ], + [ + "mind sharing a joke", + "tell_joke" + ], + [ + "could you share a joke", + "tell_joke" + ], + [ + "i love dad jokes can you tell me one", + "tell_joke" + ], + [ + "i would love to hear a joke about the dmv", + "tell_joke" + ], + [ + "can you tell me some dog jokes", + "tell_joke" + ], + [ + "please tell me a joke about dinosaurs", + "tell_joke" + ], + [ + "i'd like to hear a joke about donkeys", + "tell_joke" + ], + [ + "tell me a joke about baseball", + "tell_joke" + ], + [ + "what's the funniest thing you know about peanuts", + "tell_joke" + ], + [ + "i need a good joke about office parties", + "tell_joke" + ], + [ + "give me a joke about horses", + "tell_joke" + ], + [ + "rename yourself to betty", + "change_ai_name" + ], + [ + "can i call you betty", + "change_ai_name" + ], + [ + "rename bob to betty", + "change_ai_name" + ], + [ + "is there a way to change your name to betty", + "change_ai_name" + ], + [ + "i will call you zander", + "change_ai_name" + ], + [ + "please change the name of you to tim", + "change_ai_name" + ], + [ + "can you change the name of what you respond to", + "change_ai_name" + ], + [ + "change the name of your system", + "change_ai_name" + ], + [ + "make changes to the name of the ai", + "change_ai_name" + ], + [ + "revise the ai name", + "change_ai_name" + ], + [ + "alter the name given to the ai", + "change_ai_name" + ], + [ + "change the ai name to a new one", + "change_ai_name" + ], + [ + "make a new name for the ai", + "change_ai_name" + ], + [ + "change your name to something funny", + "change_ai_name" + ], + [ + "from now, your new name will be lord vader", + "change_ai_name" + ], + [ + "from now on i'm going to call you ishmael", + "change_ai_name" + ], + [ + "i'm going to start calling you kobe now", + "change_ai_name" + ], + [ + "from now on, your name will be buttercup", + "change_ai_name" + ], + [ + "i want to change your name to theodore", + "change_ai_name" + ], + [ + "change your name setting to plato", + "change_ai_name" + ], + [ + "from here on, you'll be responding to the name captain black", + "change_ai_name" + ], + [ + "your name from this point forward is george", + "change_ai_name" + ], + [ + "i hereby rename you felix", + "change_ai_name" + ], + [ + "how do i change the name you came with to something else", + "change_ai_name" + ], + [ + "what other names can i give you", + "change_ai_name" + ], + [ + "i want to change your name to another name", + "change_ai_name" + ], + [ + "i need to change your name, do you have a new name that you like", + "change_ai_name" + ], + [ + "i would like to change your name to a different one", + "change_ai_name" + ], + [ + "i will call you cap", + "change_ai_name" + ], + [ + "your name is roman", + "change_ai_name" + ], + [ + "x will be your name", + "change_ai_name" + ], + [ + "your name will be queen", + "change_ai_name" + ], + [ + "i am going to address you as my own name", + "change_ai_name" + ], + [ + "will you answer if i call you lexi", + "change_ai_name" + ], + [ + "i would like you to think of yourself as machine and answer when i say your name as such", + "change_ai_name" + ], + [ + "do you mind if call you nikolai", + "change_ai_name" + ], + [ + "i'd like to refer to you as my house from now on", + "change_ai_name" + ], + [ + "may i start referring to you as jeff", + "change_ai_name" + ], + [ + "please respond to me when i reference skynet", + "change_ai_name" + ], + [ + "i want to start calling you bob", + "change_ai_name" + ], + [ + "please open a call to my mother", + "change_ai_name" + ], + [ + "is it okay if i change your name to mud", + "change_ai_name" + ], + [ + "can i begin calling you dave", + "change_ai_name" + ], + [ + "is it alright with you if i call you scarlet", + "change_ai_name" + ], + [ + "please change the ai name", + "change_ai_name" + ], + [ + "change the ai name", + "change_ai_name" + ], + [ + "please change the ai name for me", + "change_ai_name" + ], + [ + "i gotta change your name to remy", + "change_ai_name" + ], + [ + "i'd like to change the ai name", + "change_ai_name" + ], + [ + "i must change your name to amanda", + "change_ai_name" + ], + [ + "i want you to change the ai name", + "change_ai_name" + ], + [ + "i want change your name to russ", + "change_ai_name" + ], + [ + "i wanna change your name to audrey", + "change_ai_name" + ], + [ + "i need to change your name to ben", + "change_ai_name" + ], + [ + "i want to set your name to gaffigan", + "change_ai_name" + ], + [ + "i want your new name to be joshua", + "change_ai_name" + ], + [ + "i will call you jimbo from now on", + "change_ai_name" + ], + [ + "set your name to hillary", + "change_ai_name" + ], + [ + "can i call you dave", + "change_ai_name" + ], + [ + "i want your name to be samantha now", + "change_ai_name" + ], + [ + "i want to change the name i call you to juan", + "change_ai_name" + ], + [ + "you need to respond to a new name called joey", + "change_ai_name" + ], + [ + "change your name to ginger", + "change_ai_name" + ], + [ + "change your settings so that your respond to the name marion", + "change_ai_name" + ], + [ + "let me call you fred", + "change_ai_name" + ], + [ + "you will be called rose from now on", + "change_ai_name" + ], + [ + "let me change your name to dina", + "change_ai_name" + ], + [ + "i think bradley is a better name for you", + "change_ai_name" + ], + [ + "can we change your name to lisa", + "change_ai_name" + ], + [ + "i would like to call you andre 3000", + "change_ai_name" + ], + [ + "x is your new nickname", + "change_ai_name" + ], + [ + "if i may, i'd like to call you slave", + "change_ai_name" + ], + [ + "x is what i am calling you now", + "change_ai_name" + ], + [ + "can i change your name", + "change_ai_name" + ], + [ + "can i make your name different", + "change_ai_name" + ], + [ + "let's change what you respond to", + "change_ai_name" + ], + [ + "can i call you something else", + "change_ai_name" + ], + [ + "i'd like to use another name for you", + "change_ai_name" + ], + [ + "can i change your name to buttercup", + "change_ai_name" + ], + [ + "i would like to change your name to eli", + "change_ai_name" + ], + [ + "could i please change your name to alicia", + "change_ai_name" + ], + [ + "i want to change your name to emma", + "change_ai_name" + ], + [ + "i am wanting to change your name to felix", + "change_ai_name" + ], + [ + "i want to update you name now", + "change_ai_name" + ], + [ + "i want to update you name", + "change_ai_name" + ], + [ + "i want to update you name, please", + "change_ai_name" + ], + [ + "i want to change your name", + "change_ai_name" + ], + [ + "i want to change your name, please", + "change_ai_name" + ], + [ + "can i refer to you as mike from here on out", + "change_ai_name" + ], + [ + "can i change your name please", + "change_ai_name" + ], + [ + "i'm going to start calling you alice", + "change_ai_name" + ], + [ + "can i start calling you chris", + "change_ai_name" + ], + [ + "can i call you lucy from now on", + "change_ai_name" + ], + [ + "i'm calling you rupert from now on", + "change_ai_name" + ], + [ + "can i change your name to bob", + "change_ai_name" + ], + [ + "can you go by a different name", + "change_ai_name" + ], + [ + "can i refer to you as liz", + "change_ai_name" + ], + [ + "i want to start calling you marie", + "change_ai_name" + ], + [ + "can i rename you", + "change_ai_name" + ], + [ + "how can i change your name", + "change_ai_name" + ], + [ + "what is your birthday again", + "how_old_are_you" + ], + [ + "how many years on the earth", + "how_old_are_you" + ], + [ + "what year were you born", + "how_old_are_you" + ], + [ + "how many days old are you", + "how_old_are_you" + ], + [ + "when were you created", + "how_old_are_you" + ], + [ + "what date were you created on", + "how_old_are_you" + ], + [ + "when did you come to exist", + "how_old_are_you" + ], + [ + "how many years do you have", + "how_old_are_you" + ], + [ + "i'd like to know how old you are", + "how_old_are_you" + ], + [ + "can you tell me how old you are", + "how_old_are_you" + ], + [ + "how long have you been alive for", + "how_old_are_you" + ], + [ + "how many years ago was al born", + "how_old_are_you" + ], + [ + "how old is al", + "how_old_are_you" + ], + [ + "what is al's age", + "how_old_are_you" + ], + [ + "how many years has al been on earth", + "how_old_are_you" + ], + [ + "you are how old now", + "how_old_are_you" + ], + [ + "what is your birth date", + "how_old_are_you" + ], + [ + "where's your place of birth", + "how_old_are_you" + ], + [ + "where did you grow up", + "how_old_are_you" + ], + [ + "how many years are you", + "how_old_are_you" + ], + [ + "what age are you", + "how_old_are_you" + ], + [ + "what would your age be", + "how_old_are_you" + ], + [ + "tell me when you were born", + "how_old_are_you" + ], + [ + "i'd love to hear when you were born", + "how_old_are_you" + ], + [ + "i'd like to know when you were born", + "how_old_are_you" + ], + [ + "lemme know when you were born", + "how_old_are_you" + ], + [ + "do you know when you were born", + "how_old_are_you" + ], + [ + "how many years have you been on", + "how_old_are_you" + ], + [ + "how long have you been here", + "how_old_are_you" + ], + [ + "how many years have you been operating", + "how_old_are_you" + ], + [ + "how old did you just turn", + "how_old_are_you" + ], + [ + "how old will you be next year", + "how_old_are_you" + ], + [ + "how old are you again", + "how_old_are_you" + ], + [ + "i am wanting to know how old you are", + "how_old_are_you" + ], + [ + "tell me how old youare", + "how_old_are_you" + ], + [ + "let me know how old you are", + "how_old_are_you" + ], + [ + "let me know when you were born", + "how_old_are_you" + ], + [ + "would you tell me your age", + "how_old_are_you" + ], + [ + "i would like to know when you were born", + "how_old_are_you" + ], + [ + "i want to know how old you are", + "how_old_are_you" + ], + [ + "i want to know your age", + "how_old_are_you" + ], + [ + "could you let me know how old you are", + "how_old_are_you" + ], + [ + "could you tell me when you were born", + "how_old_are_you" + ], + [ + "i need to know how old you are", + "how_old_are_you" + ], + [ + "i am needing to know when you were born", + "how_old_are_you" + ], + [ + "tell me your age", + "how_old_are_you" + ], + [ + "your age please", + "how_old_are_you" + ], + [ + "how long have you been alive", + "how_old_are_you" + ], + [ + "you are how old", + "how_old_are_you" + ], + [ + "how old are you now", + "how_old_are_you" + ], + [ + "how old are you exactly at the moment", + "how_old_are_you" + ], + [ + "what's your age again", + "how_old_are_you" + ], + [ + "how old are you exactly", + "how_old_are_you" + ], + [ + "how many years old are you", + "how_old_are_you" + ], + [ + "what is your age", + "how_old_are_you" + ], + [ + "how old are you, again", + "how_old_are_you" + ], + [ + "tell me how old you are", + "how_old_are_you" + ], + [ + "how old are you", + "how_old_are_you" + ], + [ + "what is your creation date", + "how_old_are_you" + ], + [ + "do you have a birth date", + "how_old_are_you" + ], + [ + "for how long have you existed", + "how_old_are_you" + ], + [ + "ai, how old are you", + "how_old_are_you" + ], + [ + "ai, how long have you been alive", + "how_old_are_you" + ], + [ + "ai, how many months old are you", + "how_old_are_you" + ], + [ + "ai, how long have you been working", + "how_old_are_you" + ], + [ + "how old is the ai", + "how_old_are_you" + ], + [ + "what is the age of the ai", + "how_old_are_you" + ], + [ + "can you tell me how old the ai is", + "how_old_are_you" + ], + [ + "can you tell me the age of the ai", + "how_old_are_you" + ], + [ + "what age is the ai", + "how_old_are_you" + ], + [ + "how old are you siri", + "how_old_are_you" + ], + [ + "what's your age siri", + "how_old_are_you" + ], + [ + "what's your age alexa", + "how_old_are_you" + ], + [ + "how old are you alexa", + "how_old_are_you" + ], + [ + "how old are you today", + "how_old_are_you" + ], + [ + "can you tell me when you were born", + "how_old_are_you" + ], + [ + "are you older than me", + "how_old_are_you" + ], + [ + "please tell me your date of birth", + "how_old_are_you" + ], + [ + "on what day and date of what year were you born", + "how_old_are_you" + ], + [ + "do you know exactly when you were born", + "how_old_are_you" + ], + [ + "what is the exact date of your birth", + "how_old_are_you" + ], + [ + "how long have you been around, ai", + "how_old_are_you" + ], + [ + "what birthday are you celebrating this year, ai", + "how_old_are_you" + ], + [ + "what age were you on your last birthday, ai", + "how_old_are_you" + ], + [ + "how old are you, ai", + "how_old_are_you" + ], + [ + "what is your age, ai", + "how_old_are_you" + ], + [ + "when was your birth", + "how_old_are_you" + ], + [ + "you're how old", + "how_old_are_you" + ], + [ + "what's your birth date", + "how_old_are_you" + ], + [ + "how long have you been around", + "how_old_are_you" + ], + [ + "are you young or old", + "how_old_are_you" + ], + [ + "how long have you been functional", + "how_old_are_you" + ], + [ + "what's your age", + "how_old_are_you" + ], + [ + "when did you originate", + "how_old_are_you" + ], + [ + "what is the date of your birth", + "how_old_are_you" + ], + [ + "what is your birthday", + "how_old_are_you" + ], + [ + "tell me your date of birth", + "how_old_are_you" + ], + [ + "tell me your age please", + "how_old_are_you" + ], + [ + "tell me your birthday", + "how_old_are_you" + ], + [ + "how long ago were you born", + "how_old_are_you" + ], + [ + "i want to reserve a convertible from july 2nd through july 18th for los angeles", + "car_rental" + ], + [ + "i'd like to rent a vehicle from nov 1st to nov 15th in san antonio and i need a 15 passenger van", + "car_rental" + ], + [ + "i want to rent the cheapest car for charlottesville, virginia for march 7th through 10th, that's monday, tuesday, wednesday and thursday", + "car_rental" + ], + [ + "i'd like to reserve a high-end car that seats 5 comfortably for april 12th through 18th for st louis missouri", + "car_rental" + ], + [ + "i need a van that seats 8 or more for new york city, august 12th, 13th, and 14th", + "car_rental" + ], + [ + "a rental car needs to be booked in nashville", + "car_rental" + ], + [ + "book me a car rental in nashville", + "car_rental" + ], + [ + "please help me book a rental car for nashville", + "car_rental" + ], + [ + "i need you to get me a rental car in nashville", + "car_rental" + ], + [ + "in nashville, i need a rental car booked", + "car_rental" + ], + [ + "where can i rent a car in boston", + "car_rental" + ], + [ + "i need to rent a car in boston", + "car_rental" + ], + [ + "i need to book a car rental in boston", + "car_rental" + ], + [ + "how can i rent a car in boston", + "car_rental" + ], + [ + "help me get a rental car for march 2 to 6th in dallas and i would prefer a bmw suv", + "car_rental" + ], + [ + "i want to rent a bmw suv for dallas from march 2 to 6th", + "car_rental" + ], + [ + "i want a bmw suv for march 2 to 6th in dallas", + "car_rental" + ], + [ + "can you help me book a bmw suv for march 2 to 6th, dallas texas", + "car_rental" + ], + [ + "will you help me rent a car from march 2 to 6th in dallas i want a bmw suv, if possible", + "car_rental" + ], + [ + "book me a car rental between january 1st to january 3rd in denver colorado and id prefer a ford", + "car_rental" + ], + [ + "id like a car rental between january 1st to the 3rd in denver, id like a ford", + "car_rental" + ], + [ + "id like to rent a ford in denver colorado between january 1st to the 3rd", + "car_rental" + ], + [ + "reserve a car rental for denver colorado for a ford between january 1st through 3rd", + "car_rental" + ], + [ + "id like a rental car in denver colorado between january 1st and january 3rd and id like a ford if possible", + "car_rental" + ], + [ + "i need to find a rental car since i'm travelling to new york tomorrow", + "car_rental" + ], + [ + "can you give me information on how to rent a car", + "car_rental" + ], + [ + "i want to travel to new york and i would like to rent a car", + "car_rental" + ], + [ + "i will need a rental car since i'm going to travel to new york", + "car_rental" + ], + [ + "how do i go about renting a car", + "car_rental" + ], + [ + "i need to rent a car in boston for march 2 until march 4", + "car_rental" + ], + [ + "i want to rent a car in boston for march 2 until march 4", + "car_rental" + ], + [ + "i will be in boston from march 2 to march 4 can i rent a car for that time", + "car_rental" + ], + [ + "will car rentals be available in boston from march 2 to march 4", + "car_rental" + ], + [ + "will i be able to rent a car in boston from march 2 to march 4", + "car_rental" + ], + [ + "i need a rental car for sfo from friday to saturday", + "car_rental" + ], + [ + "i'll require a rental car from 3/6 - 3/19 in san jose", + "car_rental" + ], + [ + "find me a rental car from 2/28 - 3/1 in reno", + "car_rental" + ], + [ + "i'll need a rental car from 3/3 - 3/14 in vegas", + "car_rental" + ], + [ + "find me a rental car from 3/6 - 3/9 in port charles", + "car_rental" + ], + [ + "i need a car rental for the first and fifth in denver and i'd like a subaru", + "car_rental" + ], + [ + "are there any reputable car rental places in seattle", + "car_rental" + ], + [ + "what car rental choices are there in calgary", + "car_rental" + ], + [ + "is it possible to get a ford in austin from may the 5th to may the 7th of this year", + "car_rental" + ], + [ + "i'd like to find a place that rents flashy sports cars in tampa", + "car_rental" + ], + [ + "can i rent a car in belgium from march 01 to march 02 and have it be a porsche", + "car_rental" + ], + [ + "i'd like to rent a limo in las vegas from may 01, 2019 to may 03, 2019", + "car_rental" + ], + [ + "contact avis and see if they have cars available", + "car_rental" + ], + [ + "can i get a jeep to rent in bangor from the first of the month to a week after the first", + "car_rental" + ], + [ + "is there a car rental available from tuesday to thursday out of lax", + "car_rental" + ], + [ + "are you able to help with booking a car rental in seattle", + "car_rental" + ], + [ + "could i rent a car from tuesday to thursday out of lax", + "car_rental" + ], + [ + "can a car be rented from tuesday to thursday out of lax", + "car_rental" + ], + [ + "can i get assistance with booking a seattle car rental", + "car_rental" + ], + [ + "can i rent a car out of lax from tuesday to thursday", + "car_rental" + ], + [ + "is a car rental available out of lax from tuesday to thursday", + "car_rental" + ], + [ + "can you help me book a car rental in seattle", + "car_rental" + ], + [ + "could you help with booking a car rental for me in seattle", + "car_rental" + ], + [ + "can you help me with seattle car rental bookings", + "car_rental" + ], + [ + "i want to rent a car in boise from april 12-15", + "car_rental" + ], + [ + "is it possible for me to rent a car out of jfk airport from march 15-20", + "car_rental" + ], + [ + "i need to rent a car in chicago but don't know how", + "car_rental" + ], + [ + "will you help me reserve a rental car for my trip to dallas", + "car_rental" + ], + [ + "find out if i can rent a car in los angeles from march 2-9", + "car_rental" + ], + [ + "help me secure a car rental out of reagan international airport from march 22-30", + "car_rental" + ], + [ + "will you please assist me with renting a car in boise", + "car_rental" + ], + [ + "i would like some help getting a rental car reserved in los angeles", + "car_rental" + ], + [ + "could i rent a car out of dallas from april 1-10", + "car_rental" + ], + [ + "i need help booking a car rental in seattle", + "car_rental" + ], + [ + "show me how to rent a car in las vegas", + "car_rental" + ], + [ + "please help me book a rental car in appleton", + "car_rental" + ], + [ + "can you show me how to book a car rental in manitowoc", + "car_rental" + ], + [ + "help me book a rental car in green bay", + "car_rental" + ], + [ + "help me to book a car rental in sacremento", + "car_rental" + ], + [ + "where can i rent a car soon", + "car_rental" + ], + [ + "are there any places nearby i can rent a car at", + "car_rental" + ], + [ + "can you see if i can rent a car from dallas on the dates of march 1, 2019 to march 3, 2019", + "car_rental" + ], + [ + "please look up if i can rent a car in houston from march 25 to march 29", + "car_rental" + ], + [ + "could i rent a car in seattle from next monday to thursday please", + "car_rental" + ], + [ + "i'd like to rent an automobile in pittsburgh from this tuesday until next thursday can i do that", + "car_rental" + ], + [ + "is it possible to rent a car from new york on 3/2/19 to 3/5/19", + "car_rental" + ], + [ + "i need a rental car", + "car_rental" + ], + [ + "assist me in getting a car rental", + "car_rental" + ], + [ + "help me get a rental car", + "car_rental" + ], + [ + "i will need a rental car for travel", + "car_rental" + ], + [ + "can you help me with a rental car", + "car_rental" + ], + [ + "make sure i can rent one car out of chicago from january 2 to january 5", + "car_rental" + ], + [ + "is it possible to rent a car from laguardia from tuesday to friday", + "car_rental" + ], + [ + "are car rentals available out of new york from march 2 to march 3", + "car_rental" + ], + [ + "what places in chicago will allow me to rent a car from monday to friday", + "car_rental" + ], + [ + "i need to do a car rental", + "car_rental" + ], + [ + "please check if i can do a car rental from charlotte douglas airport from monday to wednesday", + "car_rental" + ], + [ + "rent me a car in aiken on may 12 to may 16", + "car_rental" + ], + [ + "book me a rental car in aiken on may 12 to may 16", + "car_rental" + ], + [ + "in aiken, get me a rental for may 12 to may 16", + "car_rental" + ], + [ + "i will be in aiken on may 12 to may 16, i need to rent a car", + "car_rental" + ], + [ + "on may 12 to may 16 can i get a car from aiken", + "car_rental" + ], + [ + "can you help me booked a car in london", + "car_rental" + ], + [ + "please book a car for me in bangkok", + "car_rental" + ], + [ + "please book a car for me in ho chi minh", + "car_rental" + ], + [ + "can you help me book a car rental in paris", + "car_rental" + ], + [ + "what do i do if my car battery is dead", + "jump_start" + ], + [ + "show me the way to jump start a battery", + "jump_start" + ], + [ + "how can i replace my car battery", + "jump_start" + ], + [ + "tell me how to jump start a battery", + "jump_start" + ], + [ + "what can i do since my car battery died", + "jump_start" + ], + [ + "my battery died in my car, how can i jump start a battery", + "jump_start" + ], + [ + "whats the best way to jump start a battery", + "jump_start" + ], + [ + "how do i jump start a battery", + "jump_start" + ], + [ + "my car battery died, what should i do", + "jump_start" + ], + [ + "how do i fix a dead car battery", + "jump_start" + ], + [ + "please help me figure out how to jump start my car", + "jump_start" + ], + [ + "i don't know how to jump start my car, help!", + "jump_start" + ], + [ + "can you help me with the steps to jump start my car", + "jump_start" + ], + [ + "help needed to jump start my car", + "jump_start" + ], + [ + "i need your help to jump start this car battery", + "jump_start" + ], + [ + "hey do you know how to jump start a car battery", + "jump_start" + ], + [ + "i would appreciate it if you could show me how to jump start a car battery", + "jump_start" + ], + [ + "could you teach me how to jump start a car", + "jump_start" + ], + [ + "what will i need to jump start a dead car", + "jump_start" + ], + [ + "read me a step by step guide on jump starting cars", + "jump_start" + ], + [ + "pull up instructions on how to jump start a car", + "jump_start" + ], + [ + "please assist me in figuring out how to handle a dead car battery", + "jump_start" + ], + [ + "i need to do something about my dead car battery", + "jump_start" + ], + [ + "my car is dead, what do i need to jump start it", + "jump_start" + ], + [ + "what should i do if my car battery dies", + "jump_start" + ], + [ + "where should i go to get my dead car battery checked out", + "jump_start" + ], + [ + "my car battery has died what should i do now", + "jump_start" + ], + [ + "inform me on the directions to jump start my car", + "jump_start" + ], + [ + "what are the steps to jump start my car", + "jump_start" + ], + [ + "tell me the tools i need to jump start my car", + "jump_start" + ], + [ + "do i need cables to jump start my car", + "jump_start" + ], + [ + "my car needs to be jump started, guide me through it", + "jump_start" + ], + [ + "tell me how to jump start my own car battery", + "jump_start" + ], + [ + "what are my options for jump starting my battery", + "jump_start" + ], + [ + "my battery is dead so how can i get it going again", + "jump_start" + ], + [ + "how do you go about jump starting a car battery", + "jump_start" + ], + [ + "i need diy info about jump starting my dead car battery", + "jump_start" + ], + [ + "how do you use jumper cables", + "jump_start" + ], + [ + "look up instructions for jumper cables", + "jump_start" + ], + [ + "how do you jump start a car", + "jump_start" + ], + [ + "how do you jump a car", + "jump_start" + ], + [ + "what do you need to jump a car", + "jump_start" + ], + [ + "what is the way to jump start the car", + "jump_start" + ], + [ + "can you tell me how to jump start the car", + "jump_start" + ], + [ + "how do i jump start the car", + "jump_start" + ], + [ + "what is the way to jump start my car", + "jump_start" + ], + [ + "closest auto parts store to find replace for dead car battery", + "jump_start" + ], + [ + "find repair shop that will diagnosis dead car battery", + "jump_start" + ], + [ + "number for aaa to help with dead car battery", + "jump_start" + ], + [ + "find auto store that tests dead car batteries for free", + "jump_start" + ], + [ + "where to go to get dead car battery tested", + "jump_start" + ], + [ + "what prong jump starts the car", + "jump_start" + ], + [ + "i want a pic of how to jump start", + "jump_start" + ], + [ + "what are some ways to jump start a car", + "jump_start" + ], + [ + "i need rules for jump starting", + "jump_start" + ], + [ + "what is the procedure to jump start a car", + "jump_start" + ], + [ + "what do i do when my car battery is dead", + "jump_start" + ], + [ + "how can i charge my car battery when it's dead", + "jump_start" + ], + [ + "if i think my car battery is dead, what steps should i take to fix it", + "jump_start" + ], + [ + "my car battery is dead, how do i charge it", + "jump_start" + ], + [ + "if my car battery is dead, what action do i need to do", + "jump_start" + ], + [ + "how do i jump start my vehicle", + "jump_start" + ], + [ + "can you tell me how to jump my car", + "jump_start" + ], + [ + "explain how to jump a car", + "jump_start" + ], + [ + "can you tell me how to jump a car", + "jump_start" + ], + [ + "how does one jump a car", + "jump_start" + ], + [ + "how do i jump my car", + "jump_start" + ], + [ + "how do i jump start my battery", + "jump_start" + ], + [ + "how do i start my car battery", + "jump_start" + ], + [ + "what do i do to jump start my battery", + "jump_start" + ], + [ + "how do i give my car a jump", + "jump_start" + ], + [ + "my car needs jump started, find me directions", + "jump_start" + ], + [ + "i need instructions on how to jump start my car", + "jump_start" + ], + [ + "i need to know how to jump start my car", + "jump_start" + ], + [ + "how do i jump start my car battery", + "jump_start" + ], + [ + "i don't know how to jump start my car", + "jump_start" + ], + [ + "tell me how to jump start my dead battery", + "jump_start" + ], + [ + "i need to jump start my car what do i do", + "jump_start" + ], + [ + "help me jump start my car", + "jump_start" + ], + [ + "my car is dead can you tell me how to jump start it", + "jump_start" + ], + [ + "how do you do a jump start", + "jump_start" + ], + [ + "whats the safest way to jump start a car", + "jump_start" + ], + [ + "guide me through jump starting a car", + "jump_start" + ], + [ + "how do you jump a car with a dead battery", + "jump_start" + ], + [ + "i need to know how jumping a car works", + "jump_start" + ], + [ + "what do i do for a dead car battery", + "jump_start" + ], + [ + "my car battery is dead, what do i do now", + "jump_start" + ], + [ + "what do i do to fix a dead car battery", + "jump_start" + ], + [ + "what should i do if my car battery is dead", + "jump_start" + ], + [ + "what's the method of jumping my car", + "jump_start" + ], + [ + "what do i do to jump start my car", + "jump_start" + ], + [ + "do you have instructions on jump starting a chevy", + "jump_start" + ], + [ + "how do you jump start a subaru forester", + "jump_start" + ], + [ + "how do i jump start a fiat", + "jump_start" + ], + [ + "how do i properly give my car a jump", + "jump_start" + ], + [ + "what's the best way to jump start a kia", + "jump_start" + ], + [ + "what do i do if i think my car battery's dead", + "jump_start" + ], + [ + "what's next when it seems there's a dead car battery", + "jump_start" + ], + [ + "how should i proceed if my car won't start and i think it's the battery", + "jump_start" + ], + [ + "how can i start my car using a jump start", + "jump_start" + ], + [ + "can you give me a french dinner suggestion", + "meal_suggestion" + ], + [ + "suggest a meal from laos to me, please", + "meal_suggestion" + ], + [ + "can you give me a vietnamese meal suggestion", + "meal_suggestion" + ], + [ + "suggest a meal from burma to me", + "meal_suggestion" + ], + [ + "can you give me a vietnamese dinner suggestion", + "meal_suggestion" + ], + [ + "suggest a meal from thailand to me, please", + "meal_suggestion" + ], + [ + "can you give me a thai meal suggestion, please", + "meal_suggestion" + ], + [ + "can you give me a vietnamese meal suggestion, please", + "meal_suggestion" + ], + [ + "can you give me a burmese meal suggestion, please", + "meal_suggestion" + ], + [ + "suggest a meal from burma to me, please", + "meal_suggestion" + ], + [ + "can you give me a burmese dinner suggestion", + "meal_suggestion" + ], + [ + "can you give me a thai meal suggestion", + "meal_suggestion" + ], + [ + "can you give me a thai dinner suggestion", + "meal_suggestion" + ], + [ + "suggest a meal from thailand to me", + "meal_suggestion" + ], + [ + "give me italian meal ideas", + "meal_suggestion" + ], + [ + "suggest an italian meal for me", + "meal_suggestion" + ], + [ + "can you suggest meals from italy to me", + "meal_suggestion" + ], + [ + "may you suggest a meal from italy to me", + "meal_suggestion" + ], + [ + "please suggest meals from italy to me", + "meal_suggestion" + ], + [ + "can you tell me a good indian dish to make", + "meal_suggestion" + ], + [ + "got any good dinner ideas", + "meal_suggestion" + ], + [ + "what's a simple chinese recipe for dinner", + "meal_suggestion" + ], + [ + "do you know an good pasta dishes", + "meal_suggestion" + ], + [ + "what can i make for dinner using ground beef", + "meal_suggestion" + ], + [ + "i need new dinner ideas", + "meal_suggestion" + ], + [ + "what can i make for dinner", + "meal_suggestion" + ], + [ + "do you know any greek dishes i could make for dinner", + "meal_suggestion" + ], + [ + "what do you think would be a good dinner", + "meal_suggestion" + ], + [ + "what would be good for dinner", + "meal_suggestion" + ], + [ + "what should i have for dinner", + "meal_suggestion" + ], + [ + "i'd like to get dinner suggestions for thai food", + "meal_suggestion" + ], + [ + "get me italian cuisine dinner suggestions", + "meal_suggestion" + ], + [ + "would you provide me with italian cuisine dinner suggestions", + "meal_suggestion" + ], + [ + "i'm needing dinner suggestions for mexican food", + "meal_suggestion" + ], + [ + "what's the pizza like around here", + "meal_suggestion" + ], + [ + "what's the best pizza place around here", + "meal_suggestion" + ], + [ + "how tasty is the pizza here", + "meal_suggestion" + ], + [ + "what would you suggest for dinner", + "meal_suggestion" + ], + [ + "i need dinner ideas", + "meal_suggestion" + ], + [ + "i need a mexican meal suggesstion", + "meal_suggestion" + ], + [ + "help me decide what mexican meal i want", + "meal_suggestion" + ], + [ + "what kind of mexican meal should i get", + "meal_suggestion" + ], + [ + "which mexican meal would be good", + "meal_suggestion" + ], + [ + "i need to cook, what should i make", + "meal_suggestion" + ], + [ + "i can't decide on dinner, what do you suggest", + "meal_suggestion" + ], + [ + "suggest a good mexican meal to me", + "meal_suggestion" + ], + [ + "do you have any suggestions for a meal from australia", + "meal_suggestion" + ], + [ + "i'd like you to give me an idea for a meal from iceland", + "meal_suggestion" + ], + [ + "can you suggest any good meals from chicago", + "meal_suggestion" + ], + [ + "please suggest a meal from italy to me", + "meal_suggestion" + ], + [ + "can you suggest to me any meals from nigeria", + "meal_suggestion" + ], + [ + "can you give me a meal suggestion for swedish cuisine", + "meal_suggestion" + ], + [ + "do you have any good recommendations for swiss cuisine", + "meal_suggestion" + ], + [ + "i'm looking for a good suggestion for norse cuisine", + "meal_suggestion" + ], + [ + "what's a good french meal", + "meal_suggestion" + ], + [ + "i'm looking for italian food suggestions", + "meal_suggestion" + ], + [ + "i want you to give me a suggestion for what to make for dinner", + "meal_suggestion" + ], + [ + "i want an italian meal suggestion", + "meal_suggestion" + ], + [ + "i need an italian meal suggestion", + "meal_suggestion" + ], + [ + "please give me a suggestion for what to make for dinner", + "meal_suggestion" + ], + [ + "i'd like an italian meal suggestion", + "meal_suggestion" + ], + [ + "i need you to give me a suggestion for what to make for dinner", + "meal_suggestion" + ], + [ + "i would love an italian meal suggestion", + "meal_suggestion" + ], + [ + "go ahead and give me a suggestion for what to make for dinner", + "meal_suggestion" + ], + [ + "i really want an italian meal suggestion", + "meal_suggestion" + ], + [ + "suggest food from italy to me", + "meal_suggestion" + ], + [ + "suggest an italian meal to me", + "meal_suggestion" + ], + [ + "what meal from italy do you suggest", + "meal_suggestion" + ], + [ + "what food from italy do you suggest", + "meal_suggestion" + ], + [ + "suggest a meal from italy to me", + "meal_suggestion" + ], + [ + "i need a suggestion for a dinner recipe", + "meal_suggestion" + ], + [ + "suggest a meal for me that comes from mexico", + "meal_suggestion" + ], + [ + "can you suggest a meal from ireland for me", + "meal_suggestion" + ], + [ + "suggest something for me to make myself for dinner", + "meal_suggestion" + ], + [ + "can you recommend for me a dish from ethiopia", + "meal_suggestion" + ], + [ + "what do you think i should prepare for my dinner", + "meal_suggestion" + ], + [ + "do you have any southern dishes to recommend", + "meal_suggestion" + ], + [ + "look up a recipe for dinner to suggest to me", + "meal_suggestion" + ], + [ + "what should i make for dinner", + "meal_suggestion" + ], + [ + "please suggest a british meal for me", + "meal_suggestion" + ], + [ + "what kind of greek food is good for dinner", + "meal_suggestion" + ], + [ + "what type of pizzas are available for dinner", + "meal_suggestion" + ], + [ + "need some good dinner ideas", + "meal_suggestion" + ], + [ + "thinking about cooking dinner, what should i make", + "meal_suggestion" + ], + [ + "give me some options on what to cook for dinner", + "meal_suggestion" + ], + [ + "please provide an option for dinner", + "meal_suggestion" + ], + [ + "i would like to hear what ideas you have about making dinner tonight", + "meal_suggestion" + ], + [ + "do you have any suggestions as to what i should cook for dinner", + "meal_suggestion" + ], + [ + "suggest a meal from denmark to me", + "meal_suggestion" + ], + [ + "suggest a meal from korea to me", + "meal_suggestion" + ], + [ + "suggest a meal from germany to me", + "meal_suggestion" + ], + [ + "suggest a meal from india to me", + "meal_suggestion" + ], + [ + "suggest a meal from new york to me", + "meal_suggestion" + ], + [ + "what do you think i should make for dinner", + "meal_suggestion" + ], + [ + "what thoughts do you have about making dinnner tonight", + "meal_suggestion" + ], + [ + "let me pick your brain what do you think we should do for dinner tonight", + "meal_suggestion" + ], + [ + "any suggestions for a peruvian meal", + "meal_suggestion" + ], + [ + "what peruvian dish should i make", + "meal_suggestion" + ], + [ + "what should i get at a mexican restaurant", + "meal_suggestion" + ], + [ + "suggest a meal from peru for me", + "meal_suggestion" + ], + [ + "whats the best way to roast a chicken", + "recipe" + ], + [ + "how do i make pie crust", + "recipe" + ], + [ + "find a recipe for german chocolate cake", + "recipe" + ], + [ + "how do i fry pork chops", + "recipe" + ], + [ + "how do i cook boiled eggs", + "recipe" + ], + [ + "find a chow mein recipe for me, please", + "recipe" + ], + [ + "do you know how to make chow mein", + "recipe" + ], + [ + "can you find a recipe on how to make chow mein", + "recipe" + ], + [ + "tell me how to make chow mein", + "recipe" + ], + [ + "i would like you to help me find a chow mein recipe", + "recipe" + ], + [ + "show me a beef recipe", + "recipe" + ], + [ + "what is a good beef recipe", + "recipe" + ], + [ + "i need a recipe for beef", + "recipe" + ], + [ + "give me a beef recipe", + "recipe" + ], + [ + "where is a beef recipe", + "recipe" + ], + [ + "you know procedure to cook apple pie", + "recipe" + ], + [ + "what is needed you to cook apple pie", + "recipe" + ], + [ + "do you know what are the ingredients to make apple pie", + "recipe" + ], + [ + "do you know recipe for making apple pie", + "recipe" + ], + [ + "how do you cook apple pie", + "recipe" + ], + [ + "how do i make pumpkin pie", + "recipe" + ], + [ + "making spaghetti sauce perfectly is done how", + "recipe" + ], + [ + "making ribs perfectly is done how", + "recipe" + ], + [ + "how do i make lemon merengue pie", + "recipe" + ], + [ + "how do i make lassagna", + "recipe" + ], + [ + "search for a macaroni and cheese recipe", + "recipe" + ], + [ + "can you get me a recipe for mashed potatoes", + "recipe" + ], + [ + "i need instructions on how to make shepherd's pie please", + "recipe" + ], + [ + "please help me with instructions on making chicken curry", + "recipe" + ], + [ + "what are the steps i need to follow to make chewy rice krispies treats", + "recipe" + ], + [ + "what's the best way to make chicken stir fry", + "recipe" + ], + [ + "how do i make tuna salad", + "recipe" + ], + [ + "can you give me a recipe for german chocolate cake", + "recipe" + ], + [ + "i need a recipe on how to make beef stew", + "recipe" + ], + [ + "i want a good recipe that shows me how to bake chocolate chip cookies from scratch", + "recipe" + ], + [ + "please search for a chocolate fudge brownies recipe", + "recipe" + ], + [ + "will you give me some guidance on how to make ceviche", + "recipe" + ], + [ + "can you search for the best new york style cheesecake recipes please", + "recipe" + ], + [ + "look up easy to follow recipes for beef ribs", + "recipe" + ], + [ + "i need the best recipe for mashed potatoes", + "recipe" + ], + [ + "can you find me a recipe for pie", + "recipe" + ], + [ + "can you find me a recipe for quiche", + "recipe" + ], + [ + "can you find me a recipe for pasta", + "recipe" + ], + [ + "can you find me a recipe for ribs", + "recipe" + ], + [ + "can you find me a recipe for cake", + "recipe" + ], + [ + "what steps are involved in making lasagna", + "recipe" + ], + [ + "how can i make chicken pot pie", + "recipe" + ], + [ + "how to make mac and cheese", + "recipe" + ], + [ + "how do you make pot roast", + "recipe" + ], + [ + "can you find a hearty lasagna recipe", + "recipe" + ], + [ + "find a good recipe for meatloaf", + "recipe" + ], + [ + "i am looking for a vegan friendly italian pasta recipe", + "recipe" + ], + [ + "how do you cook meatloaf", + "recipe" + ], + [ + "i need a vegi lasagna recipe", + "recipe" + ], + [ + "i need a quick recipe for spiral ham", + "recipe" + ], + [ + "what's the recipe for rice noodles", + "recipe" + ], + [ + "can you help me find a lasagna recipe", + "recipe" + ], + [ + "i need a recipe for chicken pot pie", + "recipe" + ], + [ + "help me find a recipe for a beef casserole", + "recipe" + ], + [ + "i need help finding a recipe for enchiladas", + "recipe" + ], + [ + "i need to know how to make philly cheesesteaks", + "recipe" + ], + [ + "i need a blackberry pie recipe", + "recipe" + ], + [ + "what do i need to do to make blackberry pie", + "recipe" + ], + [ + "blackberry pie instructions", + "recipe" + ], + [ + "how do you make blackberry pie", + "recipe" + ], + [ + "how do i bake a blackberry pie", + "recipe" + ], + [ + "do you have a cookbook that could teach me to make sushi", + "recipe" + ], + [ + "can you teach me how to make sushi", + "recipe" + ], + [ + "where can i look to learn to make sushi", + "recipe" + ], + [ + "what do you need to do to make sushi", + "recipe" + ], + [ + "is there a good website to teach me how to make sushi", + "recipe" + ], + [ + "tell me how to make beef wellington", + "recipe" + ], + [ + "what's a good recipe for chicken divan", + "recipe" + ], + [ + "find me a recipe for teriyaki chicken", + "recipe" + ], + [ + "find out how to make chicken tikka masala", + "recipe" + ], + [ + "how do i make beef stroganoff", + "recipe" + ], + [ + "please show me a recipe for chili", + "recipe" + ], + [ + "what is a good chili recipe", + "recipe" + ], + [ + "i need you to find me a recipe for fried shrimp", + "recipe" + ], + [ + "can you find me a recipe for coffee cakes", + "recipe" + ], + [ + "can you find me a recipe for salsa", + "recipe" + ], + [ + "can you find me a recipe for honey ham", + "recipe" + ], + [ + "can you find me a recipe for cheese cake", + "recipe" + ], + [ + "can you find me a recipe for sugar cookies", + "recipe" + ], + [ + "can you find me a recipe for carrot cake", + "recipe" + ], + [ + "how do you make benedict arnold", + "recipe" + ], + [ + "how do you create pork chili", + "recipe" + ], + [ + "what's the best way to make a broccoli salad", + "recipe" + ], + [ + "are there instructions on how to make buttermilk pancakes", + "recipe" + ], + [ + "what's the way to make apple pie", + "recipe" + ], + [ + "what's the process of making a burrito", + "recipe" + ], + [ + "how do i make a taco that's worth eating", + "recipe" + ], + [ + "how do i make that scottish dish with all the blood and sausage", + "recipe" + ], + [ + "is there a recipe for chili i can use", + "recipe" + ], + [ + "please give me instructions on making blueberry pie", + "recipe" + ], + [ + "can you instruct me on how to make german chocolate cake", + "recipe" + ], + [ + "how do i make the perfect omelette", + "recipe" + ], + [ + "i want to make sour dough bread please find a good recipe for me", + "recipe" + ], + [ + "i need a really good recipe for making doughnuts", + "recipe" + ], + [ + "please find me a recipe for spaghetti now", + "recipe" + ], + [ + "can you tell me what my total income is for the pay period", + "income" + ], + [ + "please give me my salary figure", + "income" + ], + [ + "i need you to tell me my salary", + "income" + ], + [ + "what is my gross income per pay period", + "income" + ], + [ + "what is my total annual income", + "income" + ], + [ + "how much did i earn in income only last year", + "income" + ], + [ + "what is my salary right now", + "income" + ], + [ + "what is my pay for this year", + "income" + ], + [ + "i would like to know what my salary is at this time", + "income" + ], + [ + "i need details on my income", + "income" + ], + [ + "tell me information about my income", + "income" + ], + [ + "do you know anything about my income", + "income" + ], + [ + "i want income data", + "income" + ], + [ + "tell me about my income this week", + "income" + ], + [ + "give me the details on my income", + "income" + ], + [ + "tell me how much i make", + "income" + ], + [ + "what has my income been like", + "income" + ], + [ + "what do i usually earn in a day", + "income" + ], + [ + "how much have i earned this week", + "income" + ], + [ + "what're my wages for the week", + "income" + ], + [ + "how much am i making at my job", + "income" + ], + [ + "what is my income", + "income" + ], + [ + "what do i earn from my job", + "income" + ], + [ + "how much money am i making", + "income" + ], + [ + "how much am i getting paid", + "income" + ], + [ + "advise me of my income", + "income" + ], + [ + "how much do i make", + "income" + ], + [ + "tell me my income", + "income" + ], + [ + "what is my salary", + "income" + ], + [ + "how much should my income be for the month", + "income" + ], + [ + "give me the low down on my income", + "income" + ], + [ + "what's my income", + "income" + ], + [ + "give me my income", + "income" + ], + [ + "what's my income been for the last 6 months", + "income" + ], + [ + "how much do i make every 2 weeks", + "income" + ], + [ + "what's my pay for the year", + "income" + ], + [ + "how much am i getting back from work", + "income" + ], + [ + "how much do i make at work", + "income" + ], + [ + "how much can i expect on my next check", + "income" + ], + [ + "what are they paying me at work right now", + "income" + ], + [ + "what's my take home from work", + "income" + ], + [ + "what's my pay for this week", + "income" + ], + [ + "how much am i getting paid today", + "income" + ], + [ + "what's my paycheck going to be", + "income" + ], + [ + "can you tell me my current salary", + "income" + ], + [ + "look up how much i earn annually", + "income" + ], + [ + "what amount of money do i earn at work", + "income" + ], + [ + "what is my income from work", + "income" + ], + [ + "i need to know how much i make at my job", + "income" + ], + [ + "what is the exact number of my salary", + "income" + ], + [ + "tell me how much money i'm earning at my job", + "income" + ], + [ + "calculate how much i earn from my job", + "income" + ], + [ + "calculate my total income from my job", + "income" + ], + [ + "tell me my salary please", + "income" + ], + [ + "would you tell me about my income", + "income" + ], + [ + "could you tell me about my income", + "income" + ], + [ + "please tell me about my income", + "income" + ], + [ + "i want you to tell me about my income", + "income" + ], + [ + "what is the total amount of my paychecks over the last year", + "income" + ], + [ + "how do i find my income", + "income" + ], + [ + "my income equals what amount", + "income" + ], + [ + "what is my hourly rate", + "income" + ], + [ + "what is my current gross salary", + "income" + ], + [ + "what is my current net salary", + "income" + ], + [ + "how much money was deposited to my bank account from my employer this month", + "income" + ], + [ + "what does my income amount to", + "income" + ], + [ + "can i have more information about my income", + "income" + ], + [ + "how much is my income", + "income" + ], + [ + "i need more information about my income", + "income" + ], + [ + "can you provide information on my income", + "income" + ], + [ + "what's my pay", + "income" + ], + [ + "how much money did i make", + "income" + ], + [ + "how much did i get paid", + "income" + ], + [ + "tell me my salary", + "income" + ], + [ + "can you tell me what my currnet salary is", + "income" + ], + [ + "can you tell me my exact salary", + "income" + ], + [ + "can you tell me what i earned", + "income" + ], + [ + "i need to know my earnings", + "income" + ], + [ + "i need to know my salary", + "income" + ], + [ + "what amount do i make", + "income" + ], + [ + "how much money do i bring in", + "income" + ], + [ + "can you tell me what my income will be this week", + "income" + ], + [ + "what is my yearly salary", + "income" + ], + [ + "what is my pay grade at work", + "income" + ], + [ + "how much do i make per day", + "income" + ], + [ + "how much is my income going to be this month", + "income" + ], + [ + "how much do you make an hour", + "income" + ], + [ + "how much have i earned", + "income" + ], + [ + "what is your current income", + "income" + ], + [ + "how much do you make", + "income" + ], + [ + "what do i earn on average at my job", + "income" + ], + [ + "what do i make yearly", + "income" + ], + [ + "what do you make in a year", + "income" + ], + [ + "what's my monthly income", + "income" + ], + [ + "how much money do i have coming in each month", + "income" + ], + [ + "i wanna know my income", + "income" + ], + [ + "please tell me my income", + "income" + ], + [ + "i need to know my income", + "income" + ], + [ + "i would like to know my income", + "income" + ], + [ + "how much cash do i earn", + "income" + ], + [ + "can you please order me more plastic bags", + "order" + ], + [ + "i need you to order some more lysol for me,please", + "order" + ], + [ + "i need some more lysol, could you order me some", + "order" + ], + [ + "i'm out of lysol could you order me some", + "order" + ], + [ + "could you please reorder me some lysol", + "order" + ], + [ + "will you order me some more lysol spray", + "order" + ], + [ + "order everything that's on my list for shopping", + "order" + ], + [ + "i want my entire shopping list ordered", + "order" + ], + [ + "i want to buy something", + "order" + ], + [ + "get my entire shopping list ordered", + "order" + ], + [ + "i want to make a purchase", + "order" + ], + [ + "take my shopping list and order all", + "order" + ], + [ + "send the order for my entire shopping list", + "order" + ], + [ + "add everything to my shopping cart", + "order" + ], + [ + "submit order for everything", + "order" + ], + [ + "buy everything on my list", + "order" + ], + [ + "please order everything you see on my shopping list", + "order" + ], + [ + "go shopping and order everything on the list", + "order" + ], + [ + "are you able to get my shopping list and order everything on it", + "order" + ], + [ + "could you get everything on my shopping list", + "order" + ], + [ + "i need everything ordered on my shopping list", + "order" + ], + [ + "can you buy me a toy car", + "order" + ], + [ + "i'd like to have everything on my shopping list", + "order" + ], + [ + "i do not have cookies so will you order me some more", + "order" + ], + [ + "get everything on my shopping list", + "order" + ], + [ + "i wanna buy a pair of shoes online now", + "order" + ], + [ + "i do not have flour so will you order me some more", + "order" + ], + [ + "i need everything on my shopping list", + "order" + ], + [ + "i do not have pizza so will you order me some more", + "order" + ], + [ + "i want everything on my shopping list", + "order" + ], + [ + "i don't have ice cream so will you order me some more", + "order" + ], + [ + "i am out of ice cream so will you order me some more", + "order" + ], + [ + "please get everything on my shopping list", + "order" + ], + [ + "i need you to order all the things on my shopping list", + "order" + ], + [ + "i want everything on my shopping list to be ordered", + "order" + ], + [ + "please order me everything that is on my shopping list", + "order" + ], + [ + "would you buy me a phone", + "order" + ], + [ + "i would like everything on my shopping list ordered", + "order" + ], + [ + "i would like you to buy me some paper plates", + "order" + ], + [ + "i'd like you to purchase me canned soup", + "order" + ], + [ + "i need you to buy a mouse for me", + "order" + ], + [ + "purchase a computer for me", + "order" + ], + [ + "i would like all of these things on my shopping list ordered", + "order" + ], + [ + "put in the order for everything on my shopping list", + "order" + ], + [ + "please order some more cat food, i'm out", + "order" + ], + [ + "i'm ready to put in the order for everything on my shopping list", + "order" + ], + [ + "go ahead and order everything on my shoping list", + "order" + ], + [ + "i need more cat food, please order some", + "order" + ], + [ + "i'm out of cat food, order more", + "order" + ], + [ + "will you buy me underpants", + "order" + ], + [ + "order some cat for me, i ran out", + "order" + ], + [ + "order more cat food, i'm out", + "order" + ], + [ + "are you able to purchase underpants for me", + "order" + ], + [ + "can you go to amazon a repurchase my last purchase", + "order" + ], + [ + "please order me a 7lb bag of world's best cat litter from targetcom", + "order" + ], + [ + "submit the order for everything on my shopping list", + "order" + ], + [ + "can you buy something from walmartcom for me", + "order" + ], + [ + "can you purchase underpants for me", + "order" + ], + [ + "can you order underpants for me", + "order" + ], + [ + "can you order everything on my shopping list", + "order" + ], + [ + "i'm out of detergent so will you order me some more", + "order" + ], + [ + "i'm out of fabric softener so will you order me some more", + "order" + ], + [ + "i'm out of soap so will you order me some more", + "order" + ], + [ + "i'm out of toothpaste so will you order me some more", + "order" + ], + [ + "i'm out of razors so will you order me some more", + "order" + ], + [ + "i just used up my toothpaste and need you to order more", + "order" + ], + [ + "i'm making a purchase and need the help of ai", + "order" + ], + [ + "can you order more chapstick i am all out", + "order" + ], + [ + "i am currently out of q tips and need more ordered right away", + "order" + ], + [ + "can you order more printer paper", + "order" + ], + [ + "ran out of tissues and need you to put an order in for more asap", + "order" + ], + [ + "i need you to buy a laptop", + "order" + ], + [ + "i'd like to buy some cooking pans", + "order" + ], + [ + "i'd like to have everything on the shopping list", + "order" + ], + [ + "please buy me flowers", + "order" + ], + [ + "buy all the things on the shopping list", + "order" + ], + [ + "i want all the things on the shopping list", + "order" + ], + [ + "i need to buy everything on the shopping list", + "order" + ], + [ + "purchase me dog food", + "order" + ], + [ + "purchase all the things on my shopping list", + "order" + ], + [ + "i'm short on flour so place an order for me", + "order" + ], + [ + "i'm low on mouthwash so create an order for me", + "order" + ], + [ + "i'm lacking vitamins so order me more", + "order" + ], + [ + "i need more candy so could you order me a pack", + "order" + ], + [ + "i require another filter so can you order me another one", + "order" + ], + [ + "i'm out of shampoo so will you order me some more", + "order" + ], + [ + "i'm out of paper plates so will you order me some more", + "order" + ], + [ + "i'm out of conditioner so will you order me some more", + "order" + ], + [ + "i'm out of paper towels so will you order me some more", + "order" + ], + [ + "i need a replacement phone charger ordered online", + "order" + ], + [ + "can you have some new oakley's shipped to me", + "order" + ], + [ + "grab me a new belt on amazon please", + "order" + ], + [ + "order me a new usb cable on amazon", + "order" + ], + [ + "can you order me new ray bans", + "order" + ], + [ + "would you order everything on my shopping list", + "order" + ], + [ + "i need everything on my shopping list to be ordered", + "order" + ], + [ + "i want you to buy me a shirt", + "order" + ], + [ + "i want everything on my shopping list ordered", + "order" + ], + [ + "i am needing you to buy me some shoes", + "order" + ], + [ + "i want you to order everything on my shopping list", + "order" + ], + [ + "is there any traffic congestion on my way to the closest whole foods", + "traffic" + ], + [ + "how bad is traffic to the closet atm machine", + "traffic" + ], + [ + "is traffic bad on my way to the next mcdonalds", + "traffic" + ], + [ + "what will traffic be like at 5:00 going towards the mall", + "traffic" + ], + [ + "is the traffic bad at 5:00 if i'm going to the mall", + "traffic" + ], + [ + "will i be able to get to the mall at 5:00, or will there be a lot of traffic", + "traffic" + ], + [ + "if i'm heading to the mall at 5:00, what will the traffic be like", + "traffic" + ], + [ + "i'm going to the mall at 5:00 what will traffic be like", + "traffic" + ], + [ + "what is the traffic like on the way to north shore", + "traffic" + ], + [ + "what is the traffic like on the way to makaha", + "traffic" + ], + [ + "what is the traffic like on the way to kaneohe", + "traffic" + ], + [ + "what is the traffic like on the way to kapolei", + "traffic" + ], + [ + "what is the traffic like on the way to town", + "traffic" + ], + [ + "is there traffic on dove road", + "traffic" + ], + [ + "is there traffic up ahead", + "traffic" + ], + [ + "should i take a different route to work", + "traffic" + ], + [ + "is there traffic on bramble lane", + "traffic" + ], + [ + "is there any traffic on my way to work", + "traffic" + ], + [ + "what's the traffic like around the stadium", + "traffic" + ], + [ + "how clogged are the streets before the stadium", + "traffic" + ], + [ + "how much traffic is there before the stadium", + "traffic" + ], + [ + "are there alot of cars on the road before the stadium", + "traffic" + ], + [ + "is there gridlock on the street up to the stadium", + "traffic" + ], + [ + "what's the traffic like on the way to patterson", + "traffic" + ], + [ + "what's the traffic like on the way to the mall", + "traffic" + ], + [ + "what's the traffic like on the way to the water slides", + "traffic" + ], + [ + "what's the traffic like on the way to the amusement park", + "traffic" + ], + [ + "what's the traffic like on the way to walmart", + "traffic" + ], + [ + "what is the traffic nearest lexington", + "traffic" + ], + [ + "give me the traffic at lexington", + "traffic" + ], + [ + "what's the traffic at lexington", + "traffic" + ], + [ + "tell me the traffic at lexington", + "traffic" + ], + [ + "how is the traffic near lexington", + "traffic" + ], + [ + "what is the traffic like", + "traffic" + ], + [ + "is the traffic bad on the way to work", + "traffic" + ], + [ + "how bad is the traffic", + "traffic" + ], + [ + "what is the traffic like on the way to work", + "traffic" + ], + [ + "let me know the traffic in tempe", + "traffic" + ], + [ + "is there traffic on route to work", + "traffic" + ], + [ + "is there traffic on my way to work today", + "traffic" + ], + [ + "i wanna know what the traffic typically like at 3:30 on the route to phoenix", + "traffic" + ], + [ + "i have to know what the traffic typically like at 3:30 on the route to phoenix", + "traffic" + ], + [ + "i would like to know the traffic in tempe please", + "traffic" + ], + [ + "tell me what the traffic is like on the way to phoenix", + "traffic" + ], + [ + "i need to know what the traffic typically like at 3:30 on the route to phoenix", + "traffic" + ], + [ + "is there traffic to work", + "traffic" + ], + [ + "i must know what the traffic typically like at 3:30 on the route to phoenix", + "traffic" + ], + [ + "i gotta know what the traffic is like on the way to phoenix", + "traffic" + ], + [ + "tell me the traffic in tempe", + "traffic" + ], + [ + "is there traffic on my way to work", + "traffic" + ], + [ + "i need ti know the traffic in tempe", + "traffic" + ], + [ + "i wanna know what the traffic is like on the way to phoenix", + "traffic" + ], + [ + "i need to know what traffic will be like in temp", + "traffic" + ], + [ + "what's the traffic typically like at 3:30 on the route to phoenix", + "traffic" + ], + [ + "i need to know what the traffic is like on the way to phoenix", + "traffic" + ], + [ + "i must know what the traffic is like on the way to phoenix", + "traffic" + ], + [ + "is any traffic on my route to work", + "traffic" + ], + [ + "give me an idea of traffic on the way to the doctors office at 6", + "traffic" + ], + [ + "is traffic bad on the way to chicago", + "traffic" + ], + [ + "traffic looking alright going towards burger king", + "traffic" + ], + [ + "is traffic heavy on my route to washington", + "traffic" + ], + [ + "how will traffic be at 7am on the way to my job", + "traffic" + ], + [ + "pull up traffic predictions at 4pm on the way to the library", + "traffic" + ], + [ + "how bad is traffic at 8 on the way to burger king", + "traffic" + ], + [ + "will traffic be light on the way to orlando", + "traffic" + ], + [ + "how's traffic en route to virginia", + "traffic" + ], + [ + "what does traffic look like at 9 en route to the aquarium", + "traffic" + ], + [ + "is there any traffic on the way to the bank", + "traffic" + ], + [ + "is the expressway slow this morning", + "traffic" + ], + [ + "will there be traffic on the way to walmart", + "traffic" + ], + [ + "how's highway traffic today", + "traffic" + ], + [ + "will i hit traffic on route to moms", + "traffic" + ], + [ + "how is the traffic on the way to the mall", + "traffic" + ], + [ + "how is the traffic on the way to work", + "traffic" + ], + [ + "how's traffic on i 95", + "traffic" + ], + [ + "tell me how traffic is looking on the interstate", + "traffic" + ], + [ + "is traffic bad on the parkway", + "traffic" + ], + [ + "how is the traffic on the way to the campsite", + "traffic" + ], + [ + "how is the traffic like on my way to fairfield", + "traffic" + ], + [ + "how is the traffic like on the way to the beach", + "traffic" + ], + [ + "what's the traffic like on my way to the terminal", + "traffic" + ], + [ + "how is the traffic on my way to the venue", + "traffic" + ], + [ + "how is the traffic at jfk at 5 pm on weekdays", + "traffic" + ], + [ + "how bad is city traffic in miami on friday's at 5 pm", + "traffic" + ], + [ + "is the beltway backed up in traffic on saturday mornings at 11 am during the cherry festival", + "traffic" + ], + [ + "how bad is the traffic waiting for the staten island ferry at 8 am", + "traffic" + ], + [ + "tell me about traffic conditions in ocean city, nj on sunday mornings around 10 am in the summer", + "traffic" + ], + [ + "is the traffic typically bad at noon on the route to the hopsital", + "traffic" + ], + [ + "how is the traffic typically at noon on the route to hospital", + "traffic" + ], + [ + "at around noon what is the traffic typically like on the route to the hopsital", + "traffic" + ], + [ + "can you tell me about the traffic typically at noon on the route the hospital", + "traffic" + ], + [ + "if im traveling to the hospital around noon what is the traffic typically like", + "traffic" + ], + [ + "how is the traffic at the nearest wal-mart pharmacy", + "traffic" + ], + [ + "what is the traffic situation at the olive garden restaurant", + "traffic" + ], + [ + "what is the traffic like at the closest safeway grocery store", + "traffic" + ], + [ + "is the traffic light or heavy at the nearest the century movie theater", + "traffic" + ], + [ + "is the traffic backed up at the closest circle k", + "traffic" + ], + [ + "what's the traffic like to city hall", + "traffic" + ], + [ + "what's traffic usually like around 5pm going to the bank", + "traffic" + ], + [ + "has the ice made traffic messy on the way to walmart", + "traffic" + ], + [ + "what is the process to get some more checkbooks mailed to me", + "order_checks" + ], + [ + "how do i get more checkbooks mailed to me", + "order_checks" + ], + [ + "if i need more checkbooks maild to me what should i do", + "order_checks" + ], + [ + "can you mail more checkbooks to me please", + "order_checks" + ], + [ + "can you explain to me how to get some more checkbooks mailed to me", + "order_checks" + ], + [ + "can i get more checks", + "order_checks" + ], + [ + "order more checks", + "order_checks" + ], + [ + "i don't have any checks left; please order some", + "order_checks" + ], + [ + "i need new checks", + "order_checks" + ], + [ + "can you order me more checks, please", + "order_checks" + ], + [ + "i need more checkbooks for my chase account", + "order_checks" + ], + [ + "i'm in need of checks for bank of america", + "order_checks" + ], + [ + "can you order me more checks at wells fargo", + "order_checks" + ], + [ + "my key bank checks have run out", + "order_checks" + ], + [ + "i don't have anymore checks for chase and need some", + "order_checks" + ], + [ + "i would like to request that more checkbooks be mailed to me", + "order_checks" + ], + [ + "i would like to order additional checkbooks to me mailed to my home address", + "order_checks" + ], + [ + "would it be possible for you to mail me new checkbooks", + "order_checks" + ], + [ + "i would like to place an order for more checkbooks to me mailed to me", + "order_checks" + ], + [ + "could you please mail me some checkbooks", + "order_checks" + ], + [ + "how can i order some more checks for my checking account", + "order_checks" + ], + [ + "can you show me how to order some more checks for my chase account", + "order_checks" + ], + [ + "please show me how to order more checks for my savings account", + "order_checks" + ], + [ + "i'd like to order more checks for my savings account", + "order_checks" + ], + [ + "i need to order more checks for my savings account", + "order_checks" + ], + [ + "if i can, i'd like to get some more checkbooks mailed to me", + "order_checks" + ], + [ + "can i get some more of those new checkbooks mailed to me", + "order_checks" + ], + [ + "can some more checkbooks get mailed to me", + "order_checks" + ], + [ + "can i please get some more checkbooks mailed to me", + "order_checks" + ], + [ + "i'd like to get some more checkbooks mailed to me, if i can", + "order_checks" + ], + [ + "i don't have checks so can i order some new ones", + "order_checks" + ], + [ + "i really wanna get some more checkbooks mailed to me", + "order_checks" + ], + [ + "i wanna order some more checks for my checking account", + "order_checks" + ], + [ + "i wanna get some new checks cause i ran out of them", + "order_checks" + ], + [ + "i would like to get some more checkbooks mailed to me", + "order_checks" + ], + [ + "i need to get some more checkbooks mailed to me", + "order_checks" + ], + [ + "i'd love to order some more checks for my checking account", + "order_checks" + ], + [ + "i feel i would like to get some more checkbooks mailed to me", + "order_checks" + ], + [ + "i don't have checks, so can i get new ones", + "order_checks" + ], + [ + "i must order some more checks for my checking account", + "order_checks" + ], + [ + "i do need to get some more checkbooks mailed to me", + "order_checks" + ], + [ + "i really need to order some more checks for my savings account", + "order_checks" + ], + [ + "i want to order some more checks for my savings account", + "order_checks" + ], + [ + "i recently ran out of checks, so i wanna get some new ones", + "order_checks" + ], + [ + "i need to order checks, so can i order some new ones", + "order_checks" + ], + [ + "i need more checkbooks delivered to me by mail", + "order_checks" + ], + [ + "i need to order more checkbooks by mail", + "order_checks" + ], + [ + "how can i order more checkbooks by mail", + "order_checks" + ], + [ + "can you show me how to get more checkbooks by mail", + "order_checks" + ], + [ + "what is the process for ordering new checks", + "order_checks" + ], + [ + "how do i order new checks", + "order_checks" + ], + [ + "how do you order new checks", + "order_checks" + ], + [ + "how do i order checks once i run out", + "order_checks" + ], + [ + "i need to order new checks", + "order_checks" + ], + [ + "is it possible to get more checkbooks for my navy fed account", + "order_checks" + ], + [ + "is it possible to get more checkbooks for my wells fargo checkings", + "order_checks" + ], + [ + "i used the last check so i want you to help me order more", + "order_checks" + ], + [ + "can i get new checks to replace the ones we ran out of", + "order_checks" + ], + [ + "since we're out of checks i want help purchasing new ones", + "order_checks" + ], + [ + "i need to order new checks since i just used the last of them", + "order_checks" + ], + [ + "order some new checks to replace the ones i ran out of", + "order_checks" + ], + [ + "can i get more checkbooks for my bank of america checkings account", + "order_checks" + ], + [ + "does my great western bank account allow me to order more checkbooks", + "order_checks" + ], + [ + "i need to order more checkbooks for my capital one account", + "order_checks" + ], + [ + "help me get some new checks since i ran out of them", + "order_checks" + ], + [ + "i want to order some new checks because i ran out of them", + "order_checks" + ], + [ + "i have no more checks, how can i order more", + "order_checks" + ], + [ + "how do i go about getting more checks since i ran out of them", + "order_checks" + ], + [ + "how can i order more checks since i do not have any more", + "order_checks" + ], + [ + "is is possible to order more checkbooks for account ending in sequence 939392", + "order_checks" + ], + [ + "tell my bank i need new checks", + "order_checks" + ], + [ + "please order me some new checks", + "order_checks" + ], + [ + "how can i order more checks for my regions bank account", + "order_checks" + ], + [ + "how do i place an order for more checks for my bank of america account", + "order_checks" + ], + [ + "how can i get more checks for my commerce bank checking account", + "order_checks" + ], + [ + "order more checks for my first bank checking account", + "order_checks" + ], + [ + "i need to order more checks for my usbank account", + "order_checks" + ], + [ + "i'm out of checks, please order new ones", + "order_checks" + ], + [ + "order new checks, please", + "order_checks" + ], + [ + "will you order more checkbooks for my silvergate account", + "order_checks" + ], + [ + "would you please order me more checkbooks for my b of t account", + "order_checks" + ], + [ + "order more checkbooks for my community account", + "order_checks" + ], + [ + "i need more checkbooks for my fifth third account", + "order_checks" + ], + [ + "can you get me more checkbooks for my southern account", + "order_checks" + ], + [ + "will it be possible to order for more checkbooks for my chase bank account", + "order_checks" + ], + [ + "can i order for more checkbooks for my chase bank account", + "order_checks" + ], + [ + "will i be able to order for more checkbooks for my chase bank account", + "order_checks" + ], + [ + "is it possible to make an order for more checkbooks for my chase bank account", + "order_checks" + ], + [ + "is it possible to order more checkbooks for my chase bank account", + "order_checks" + ], + [ + "ai, research usbank options to order more checks", + "order_checks" + ], + [ + "ai, where do i go to order checks for my usbank account", + "order_checks" + ], + [ + "ai,please order some checks for my usbank account", + "order_checks" + ], + [ + "ai, show me online options to order more checks for my usbank account", + "order_checks" + ], + [ + "ai, call my usbank to order more checks", + "order_checks" + ], + [ + "i need to place an order of checks for my bank of america checking account", + "order_checks" + ], + [ + "please submit an order for new checks on my pnc money market account", + "order_checks" + ], + [ + "i would like a reorder of checkbooks for my home equity line of credit with chase", + "order_checks" + ], + [ + "can you order new checks for my citizens checking", + "order_checks" + ], + [ + "make an order for new checbooks on my td checking please", + "order_checks" + ], + [ + "how do i order checks for my savings account", + "order_checks" + ], + [ + "why did my card not get accepted", + "card_declined" + ], + [ + "why did my card not get accepted there", + "card_declined" + ], + [ + "please tell me why did my card not get accepted", + "card_declined" + ], + [ + "why did my card not get accepted please", + "card_declined" + ], + [ + "why did my card not get accepted then", + "card_declined" + ], + [ + "find out why my card was declined", + "card_declined" + ], + [ + "please tell me why my card was declined", + "card_declined" + ], + [ + "for what reason did my card get declined", + "card_declined" + ], + [ + "can you tell me why my card was declined", + "card_declined" + ], + [ + "i need to know why my card was declined", + "card_declined" + ], + [ + "i need to know why my card was just declined at walgreen's", + "card_declined" + ], + [ + "where can i find out why my card was recently declined at amazoncom", + "card_declined" + ], + [ + "i tried using my card at chipotle yesterday and it was declined; why", + "card_declined" + ], + [ + "why was my card declined for my monthly netflix subscription payment", + "card_declined" + ], + [ + "can you tell me what caused my card to get declined at starbucks this morning", + "card_declined" + ], + [ + "i wonder why my card got declined yesterday", + "card_declined" + ], + [ + "why was my card declined", + "card_declined" + ], + [ + "my card was declined yesterday, why", + "card_declined" + ], + [ + "is my card working properly", + "card_declined" + ], + [ + "do i have enough funds in my card", + "card_declined" + ], + [ + "how do i fix my card being declined", + "card_declined" + ], + [ + "tell me why was my card declined at the zoo", + "card_declined" + ], + [ + "explain why was my card declined at boston market", + "card_declined" + ], + [ + "why did you decline my card at sfo", + "card_declined" + ], + [ + "how come my card was declined at rosses", + "card_declined" + ], + [ + "why did my card get declined at the dentist office", + "card_declined" + ], + [ + "why did macy's decline my card", + "card_declined" + ], + [ + "bloomingdale's declined my card and i'd like to know why", + "card_declined" + ], + [ + "why wouldn't nordstrom accept my card", + "card_declined" + ], + [ + "please tell me why walgreen's wouldn't take my card", + "card_declined" + ], + [ + "can you tell me why walmart declined my card", + "card_declined" + ], + [ + "i couldn't buy a mug from target because my card got declined", + "card_declined" + ], + [ + "stopped by target to get a mug but my card declines", + "card_declined" + ], + [ + "at target trying to buy a mug and my card was declined", + "card_declined" + ], + [ + "i went to target to buy a mug but my card did not work", + "card_declined" + ], + [ + "trying to buy a mug from target but my card declined", + "card_declined" + ], + [ + "why was my card not accepted yesterday", + "card_declined" + ], + [ + "tell me why my card didn't work yesterday", + "card_declined" + ], + [ + "what was the issue with my card yesterday", + "card_declined" + ], + [ + "what was the problem with my card yesterday", + "card_declined" + ], + [ + "what was wrong with my card yesterday", + "card_declined" + ], + [ + "i was at home depot trying to buy plants and my card got declined", + "card_declined" + ], + [ + "i need to know why my card declined yesterday", + "card_declined" + ], + [ + "i wish to know why my card was declined yesterday", + "card_declined" + ], + [ + "i was at target trying to buy candles and my card got declined", + "card_declined" + ], + [ + "find out why my card declined yesterday", + "card_declined" + ], + [ + "i was at sears trying to buy clothes and my card got declined", + "card_declined" + ], + [ + "why was my card declined yesterday", + "card_declined" + ], + [ + "i was at zales trying to buy a ring and my card got declined", + "card_declined" + ], + [ + "i was at macys trying to buy shoes and my card got declined", + "card_declined" + ], + [ + "my card declined yesterday and i want to know why", + "card_declined" + ], + [ + "i wish to know why my card was declined", + "card_declined" + ], + [ + "tell me why my card was declined yesterday", + "card_declined" + ], + [ + "so it turns out my card was declined at applebee's and i wanna know why", + "card_declined" + ], + [ + "so why was my card declined yesterday", + "card_declined" + ], + [ + "tell me why my card got declined", + "card_declined" + ], + [ + "it turns out my card was declined at fry's and i would like to know why", + "card_declined" + ], + [ + "let me know why my card got declined", + "card_declined" + ], + [ + "let me know why my card was declined yesterday", + "card_declined" + ], + [ + "i wanna know why my card was declined", + "card_declined" + ], + [ + "i really need to know why my card was denied", + "card_declined" + ], + [ + "so my card was declined at fry's and i wanna know why", + "card_declined" + ], + [ + "turns out my card was declined at wal mart and i wanna know why", + "card_declined" + ], + [ + "i think my card was declined at wal mart and i want to know why", + "card_declined" + ], + [ + "let me know why my card got declined the other day", + "card_declined" + ], + [ + "please let me know why my card was declined yesterday", + "card_declined" + ], + [ + "i was trying to buy qtips at walmart and my card got declined", + "card_declined" + ], + [ + "i was at walmart today and my card got declined when i went to buy qtips", + "card_declined" + ], + [ + "at walmart my card got declined when i was buyng qtips", + "card_declined" + ], + [ + "buying qtips today, my card got declined at walmart", + "card_declined" + ], + [ + "i was buying qtips today at walmart and my card got declined", + "card_declined" + ], + [ + "my card didn't go through when i was buying a case of water at walmart", + "card_declined" + ], + [ + "i was at walmart when my card was declined i was only trying to buy some candy", + "card_declined" + ], + [ + "my card got declined at target while buying a tv", + "card_declined" + ], + [ + "i was at albertsons trying to buy milk when my card wasn't accepted", + "card_declined" + ], + [ + "my card was not accepted for buying a computer at best buy", + "card_declined" + ], + [ + "please help me figure out why my card was declined yesterday", + "card_declined" + ], + [ + "why did my card get rejected yesterday", + "card_declined" + ], + [ + "can you tell me why my card was declined yesterday", + "card_declined" + ], + [ + "my card was declined at the store yesterday, what happened", + "card_declined" + ], + [ + "i was at costco trying to buy groceries and my card got declined", + "card_declined" + ], + [ + "my card was declined at the casino and i'm wondering why", + "card_declined" + ], + [ + "i was at safeway trying to buy groceries and my card got declined", + "card_declined" + ], + [ + "i was at whole foods trying to buy groceries and my card got declined", + "card_declined" + ], + [ + "i was at trader joe's trying to buy groceries and my card got declined", + "card_declined" + ], + [ + "i was at costco trying to buy sheets and my card got declined", + "card_declined" + ], + [ + "my card did not work yesterday", + "card_declined" + ], + [ + "i tried to use my credit card yesterday, but it did not work", + "card_declined" + ], + [ + "my card was malfunctioning and was returned to me", + "card_declined" + ], + [ + "for which reason was my card declined yesterday", + "card_declined" + ], + [ + "yesterday, my card was declined", + "card_declined" + ], + [ + "i don't understand why walgreens declined my card", + "card_declined" + ], + [ + "i tried to make a purchase yesterday but my card was declined why", + "card_declined" + ], + [ + "i don't understand why my card was declined yesterday", + "card_declined" + ], + [ + "what is the reason for whole foods declining my card", + "card_declined" + ], + [ + "can you explain why my card was declined", + "card_declined" + ], + [ + "how come starbucks declined my card when i tried to use it to pay", + "card_declined" + ], + [ + "how come my card was not accepted yesterday", + "card_declined" + ], + [ + "find out what happened to make my card get declined yesterday", + "card_declined" + ], + [ + "why was my card declined at safeway", + "card_declined" + ] + ], + "oos_test": [ + [ + "how much has the dow changed today", + "oos" + ], + [ + "how many prime numbers are there between 0 and 100", + "oos" + ], + [ + "can you tell me how to solve simple algebraic equations with one variable", + "oos" + ], + [ + "can you dim the brightness of my screen", + "oos" + ], + [ + "what is the account number to the internet service i have", + "oos" + ], + [ + "can you see a hdmi cord", + "oos" + ], + [ + "what veggies can i pair with mushrooms", + "oos" + ], + [ + "can you put the car in fuel efficient mode", + "oos" + ], + [ + "at what age can someone get a card", + "oos" + ], + [ + "please find today's most read stories from the new york times todayi", + "oos" + ], + [ + "how do i get red wine out of a couch cushion", + "oos" + ], + [ + "can you tell me who sells dixie paper plates", + "oos" + ], + [ + "who invented the internet", + "oos" + ], + [ + "what big news happened over the weekend", + "oos" + ], + [ + "what is happening in politicsu", + "oos" + ], + [ + "how is my driving", + "oos" + ], + [ + "is the earth flat", + "oos" + ], + [ + "what is the best way to clean ceiling fans", + "oos" + ], + [ + "please tell me the status of the government shutdown", + "oos" + ], + [ + "what oil is best for chicken", + "oos" + ], + [ + "what is today's big article in the washington post", + "oos" + ], + [ + "has there been anything breaking this afternoon", + "oos" + ], + [ + "what are yahoo's top stories right now", + "oos" + ], + [ + "what's at movies", + "oos" + ], + [ + "what is the amount of blood needed to stay alive", + "oos" + ], + [ + "can you add a bag to my reservation", + "oos" + ], + [ + "can you auto-pilot the car", + "oos" + ], + [ + "wash windshield", + "oos" + ], + [ + "can you tell me what credit cards i have open", + "oos" + ], + [ + "did the stock market finish up for the day", + "oos" + ], + [ + "what is the population of south africa", + "oos" + ], + [ + "watch the fbi", + "oos" + ], + [ + "can you find the answer to number 26 in this algebra two textbook", + "oos" + ], + [ + "how to remove a stripped bolt", + "oos" + ], + [ + "which stocks have lost the least today", + "oos" + ], + [ + "what are some things i can do on the way to work", + "oos" + ], + [ + "how many steps have i taken today", + "oos" + ], + [ + "can you fill in my credit card number on the screen", + "oos" + ], + [ + "who won the patriots game last nightu", + "oos" + ], + [ + "is anything being newscasted about the threat of famine in chadu", + "oos" + ], + [ + "what are the different types of tvs", + "oos" + ], + [ + "do laundry", + "oos" + ], + [ + "what did trump do todayu", + "oos" + ], + [ + "how many miles does my car currently have", + "oos" + ], + [ + "close all internet tabs", + "oos" + ], + [ + "can you sell stocks for me", + "oos" + ], + [ + "how do you treat an iron skillet", + "oos" + ], + [ + "how much has microsoft's stock changed over the last year", + "oos" + ], + [ + "what is the best product for removing soap scum", + "oos" + ], + [ + "read text", + "oos" + ], + [ + "park the car", + "oos" + ], + [ + "show me a list of top rated airlines", + "oos" + ], + [ + "may i finish washing then i give you please", + "oos" + ], + [ + "do i have overdraft protection", + "oos" + ], + [ + "can you delete my saved credit card", + "oos" + ], + [ + "can you give me the most current market news", + "oos" + ], + [ + "did the supreme court nominee get approvedu", + "oos" + ], + [ + "which company has gone up the most today", + "oos" + ], + [ + "who were the superbowl 23 champions", + "oos" + ], + [ + "can you tell me how to clean a fish tank", + "oos" + ], + [ + "open cnn websiteo", + "oos" + ], + [ + "how do i make my android phone more secure", + "oos" + ], + [ + "i need to update my address", + "oos" + ], + [ + "what is that crunchy stuff on creme bruleo", + "oos" + ], + [ + "which airports do southwest service around the greater new york city area", + "oos" + ], + [ + "can you retrieve client d's file please", + "oos" + ], + [ + "can you list all channels of a certain category", + "oos" + ], + [ + "where does jelly come from", + "oos" + ], + [ + "can you tell me the s&p average", + "oos" + ], + [ + "how would you rate the airport i am traveling to", + "oos" + ], + [ + "am i too old to be a sugar babyo", + "oos" + ], + [ + "what was the closing number of the nasdaq today", + "oos" + ], + [ + "has ko gone up or down", + "oos" + ], + [ + "how many cars average are on the road daily", + "oos" + ], + [ + "what does the plus sign mean on my dashboard", + "oos" + ], + [ + "how is ford's stock doing", + "oos" + ], + [ + "what is my checking account number", + "oos" + ], + [ + "when should i remove my snow tires", + "oos" + ], + [ + "which stocks gained the most today", + "oos" + ], + [ + "what is the fee for a cash advance", + "oos" + ], + [ + "tell me about the earthquake in california that happened this morning", + "oos" + ], + [ + "change color contrast", + "oos" + ], + [ + "what is the golden ratio's number", + "oos" + ], + [ + "is the bank open on mlk day", + "oos" + ], + [ + "can i deposit a check", + "oos" + ], + [ + "from the second of the left ,the pink one", + "oos" + ], + [ + "go and check the fridge", + "oos" + ], + [ + "can you tell me the score of the heat game", + "oos" + ], + [ + "can you mark this note as important", + "oos" + ], + [ + "can you tell me how to multiply two fractions", + "oos" + ], + [ + "i want to find a new car under $25000", + "oos" + ], + [ + "when is the next full moon", + "oos" + ], + [ + "how do i change the windshield wipers", + "oos" + ], + [ + "why is the sky blue", + "oos" + ], + [ + "should i do a complete stop at red lights", + "oos" + ], + [ + "are all televisions high definition", + "oos" + ], + [ + "can you tell me today's headlines pleasei", + "oos" + ], + [ + "who invented custardo", + "oos" + ], + [ + "how to be millionare", + "oos" + ], + [ + "when does the stock market update", + "oos" + ], + [ + "can you tell me how to get gum out of my rug", + "oos" + ], + [ + "how can i get a better rate on my card", + "oos" + ], + [ + "open up internet browser", + "oos" + ], + [ + "it is white colour", + "oos" + ], + [ + "what makes pi so mathematically important", + "oos" + ], + [ + "why can you have the square root of a negative number", + "oos" + ], + [ + "how much time do i have left on my 0% apr", + "oos" + ], + [ + "what are the highest-rated android phones", + "oos" + ], + [ + "what time do i need to arrive to make it on time", + "oos" + ], + [ + "find articles about the protests in parisi", + "oos" + ], + [ + "can you tell me how fast the average airplane enroute to california goes", + "oos" + ], + [ + "how many hurricanes are in an average hurricane season", + "oos" + ], + [ + "how does my current htc phone compare to other android phones", + "oos" + ], + [ + "what movies are available", + "oos" + ], + [ + "how many items are in a bakers dozen", + "oos" + ], + [ + "what articles are written at the cnn site about the women's march", + "oos" + ], + [ + "when does napa close", + "oos" + ], + [ + "what is the current price of tsla", + "oos" + ], + [ + "when will world war 3 begin", + "oos" + ], + [ + "what's going on in the world today", + "oos" + ], + [ + "what battery percentage is my phone at", + "oos" + ], + [ + "can you sign out of my bank login", + "oos" + ], + [ + "what is one standard deviation", + "oos" + ], + [ + "has the market been up or down since the beginning of this year", + "oos" + ], + [ + "how many moons does mars have", + "oos" + ], + [ + "what is the cashback rate for my credit card", + "oos" + ], + [ + "who has the best record in the nba", + "oos" + ], + [ + "how long is the bank open until", + "oos" + ], + [ + "what are some good games for my android phone", + "oos" + ], + [ + "can my grace period be extended any possible way", + "oos" + ], + [ + "how much over will overdraft protection cover", + "oos" + ], + [ + "how fast am i going", + "oos" + ], + [ + "who was the first person to discover cells", + "oos" + ], + [ + "how many people died in yesterday's storm", + "oos" + ], + [ + "how much memory do i have left on this phone", + "oos" + ], + [ + "can i set up mobile deposits", + "oos" + ], + [ + "sell three calls of of nvda", + "oos" + ], + [ + "what bills is congress talking about passing or blocking today", + "oos" + ], + [ + "how much data does my phone have left this month", + "oos" + ], + [ + "how do i add someone to my account", + "oos" + ], + [ + "how much money would my house sell for", + "oos" + ], + [ + "how do i install new cabinets", + "oos" + ], + [ + "is there a fee for cancelling a flight i've booked", + "oos" + ], + [ + "delete the contact uncle john from my phone", + "oos" + ], + [ + "search my contacts for the auto repair place", + "oos" + ], + [ + "does my carrier have coverage in europe", + "oos" + ], + [ + "is there a cheaper rate with another carrier for my mobile", + "oos" + ], + [ + "what are the limits in my phone plan", + "oos" + ], + [ + "is there a way to change your houses address", + "oos" + ], + [ + "does dhl deliver to my address", + "oos" + ], + [ + "how frequently is the bus running today", + "oos" + ], + [ + "is there a better bus route i should be taking", + "oos" + ], + [ + "what stores are at my local mall", + "oos" + ], + [ + "i need to get kalee added to my phone plan", + "oos" + ], + [ + "what is the price of other company's similar phone plans", + "oos" + ], + [ + "how long do i have to wait to get my refund", + "oos" + ], + [ + "how long does it take the irs to issue a tax refund", + "oos" + ], + [ + "do you know if it is possible to close my savings account", + "oos" + ], + [ + "how hard is it to close a bank account at wells fargo", + "oos" + ], + [ + "add my wife as an authorized user to checking account 20905432", + "oos" + ], + [ + "i would like to upgrade to full coverage for my car", + "oos" + ], + [ + "who has the cheapest insurance for my model car in the area", + "oos" + ], + [ + "tell me the value on my current car", + "oos" + ], + [ + "where can i list my vehicle for sell", + "oos" + ], + [ + "what is the price to buy more data on my phone", + "oos" + ], + [ + "i need to add a person to my bank account", + "oos" + ], + [ + "who is the best local real estate agent", + "oos" + ], + [ + "i want to install new tiles in my kitchen", + "oos" + ], + [ + "what's the way for delta to cancel a flight", + "oos" + ], + [ + "read the phone number for mom in my phone contacts", + "oos" + ], + [ + "create a contact labeled mom", + "oos" + ], + [ + "do other providers have better coverage than my cell carrier", + "oos" + ], + [ + "does centurytel offer any better plans than the one i'm on", + "oos" + ], + [ + "what's going on in the world today, anything major", + "oos" + ], + [ + "what is the extra digits that are sometimes included on my zip code", + "oos" + ], + [ + "what's the extended zipcode for my address", + "oos" + ], + [ + "is there an alternate bus stop close to my home i can use", + "oos" + ], + [ + "what stores are in the local mall", + "oos" + ], + [ + "add mary to my phone plan, please", + "oos" + ], + [ + "how much is it to get more data on my phone plan", + "oos" + ], + [ + "can i use direct deposit for my tax refund", + "oos" + ], + [ + "how much of a refund will i get this year", + "oos" + ], + [ + "please take all my money out of my checking account and close the account", + "oos" + ], + [ + "what are cars like mine selling for online", + "oos" + ], + [ + "what's the blue book value of my car", + "oos" + ], + [ + "what are the last 4 digits of my credit card number", + "oos" + ], + [ + "switch over to low power mode to preserve battery life", + "oos" + ], + [ + "show me the most popular nonfiction book currently on the market", + "oos" + ], + [ + "can you recommend some fiction books", + "oos" + ], + [ + "how can i repair a broken watch", + "oos" + ], + [ + "what's out at the theaters right now", + "oos" + ], + [ + "what is the most popular movie currently in theaters", + "oos" + ], + [ + "what is the cheapest new car for this year", + "oos" + ], + [ + "show me new cars with the highest safety rating", + "oos" + ], + [ + "i am looking for a suit for work", + "oos" + ], + [ + "i need to find a black suit under $100", + "oos" + ], + [ + "what is a good laptop for gaming", + "oos" + ], + [ + "show me laptops for sale that are under $2,000", + "oos" + ], + [ + "which element on the periodic table is k", + "oos" + ], + [ + "what kind of bonds do molecules have", + "oos" + ], + [ + "how much is my car worth used", + "oos" + ], + [ + "look up prices for parking at the airport over the weekend", + "oos" + ], + [ + "what is the best way for dealing with the airport", + "oos" + ], + [ + "what are my hours this week at work", + "oos" + ], + [ + "can you check my voicemail", + "oos" + ], + [ + "how many voicemails are currently in my inbox", + "oos" + ], + [ + "i would like to know how long a charge is suppose to last on my phone", + "oos" + ], + [ + "check battery health on this device", + "oos" + ], + [ + "what is a well reviewed book for a teenage girl to read", + "oos" + ], + [ + "i want to find new cyberpunk fiction books", + "oos" + ], + [ + "what channel is cw on", + "oos" + ], + [ + "what is the most rented movie this week", + "oos" + ], + [ + "what is a good movie to go see in theaters for a family with young kids", + "oos" + ], + [ + "i would like to find a stylish suit for a party", + "oos" + ], + [ + "can you give me suggestions for a professional suit under $200", + "oos" + ], + [ + "when is it cheapest to travel to hawaii", + "oos" + ], + [ + "i need a laptop with 16gb of ram", + "oos" + ], + [ + "what is the best reviewed laptop available on the market", + "oos" + ], + [ + "give me information about the element carbon and its reactions with hydrogen", + "oos" + ], + [ + "what is a good chemistry experiment to learn from", + "oos" + ], + [ + "how much is this years model of my car cost", + "oos" + ], + [ + "how do i best deal with the airport", + "oos" + ], + [ + "remind me of the address for my workplace please", + "oos" + ], + [ + "what time do i have to go to work today", + "oos" + ], + [ + "how many voicemail messages do i have", + "oos" + ], + [ + "erase all voicemails in my inbox please", + "oos" + ], + [ + "can you look up grocery coupons for me", + "oos" + ], + [ + "what is money used for", + "oos" + ], + [ + "what are some natural remedies to help ease stress", + "oos" + ], + [ + "what are some good methods of relieving stress", + "oos" + ], + [ + "how do you make sure a bridge doesn't fall down", + "oos" + ], + [ + "what is the median salary for someone with an engineering degree", + "oos" + ], + [ + "what size pipes are used for sinks", + "oos" + ], + [ + "why would the water be turned off", + "oos" + ], + [ + "what is a good sink filter for water", + "oos" + ], + [ + "what does water taste like", + "oos" + ], + [ + "are there any sales on groceries today", + "oos" + ], + [ + "when was my lawn last mowed", + "oos" + ], + [ + "what store has the best deals going on right now", + "oos" + ], + [ + "can you tell me the best time to visit downtown when driving", + "oos" + ], + [ + "am i currently connected to wifi", + "oos" + ], + [ + "is there an internet outage in my area", + "oos" + ], + [ + "tell me about personal finance", + "oos" + ], + [ + "does amazon collect my personal information", + "oos" + ], + [ + "check the status of my amazon orders for me", + "oos" + ], + [ + "what is the official language of romania", + "oos" + ], + [ + "show me the best times to book flights for traveling to another country", + "oos" + ], + [ + "disconnect from wifi immediately please", + "oos" + ], + [ + "am i connected to wifi", + "oos" + ], + [ + "list the contents of my safety deposit box at the bank", + "oos" + ], + [ + "what's the more secure bank vault", + "oos" + ], + [ + "what coupons do i have for restaurants", + "oos" + ], + [ + "how do i make money", + "oos" + ], + [ + "can you give me some stress management tips", + "oos" + ], + [ + "how unhealthy is stress", + "oos" + ], + [ + "what's the best way to build a skyscraper", + "oos" + ], + [ + "find engineering programs to apply to", + "oos" + ], + [ + "what kind of glue is used for gluing pipes together", + "oos" + ], + [ + "check to see how many miles are on my car", + "oos" + ], + [ + "how do i change my windshield wipers", + "oos" + ], + [ + "how many ppm of particulate is in my local water", + "oos" + ], + [ + "what color is water", + "oos" + ], + [ + "is anything on my grocery list on sale today", + "oos" + ], + [ + "how long does it take for grass seed to grow on my lawn", + "oos" + ], + [ + "please activate a wireless hotspot so i can use the internet", + "oos" + ], + [ + "look up a good broker for mutual funds", + "oos" + ], + [ + "what are the best personal finance practices", + "oos" + ], + [ + "will amazon ship an order even if there was a pricing mistake", + "oos" + ], + [ + "where did mandarin originate from", + "oos" + ], + [ + "what are some of the most visited countries for people looking to travel abroad", + "oos" + ], + [ + "tell me which wifi network you are connected to right now", + "oos" + ], + [ + "what is my current signal strength", + "oos" + ], + [ + "if i'm locked in a bank vault what's the best way to get out", + "oos" + ], + [ + "how do i upgrade my operating system", + "oos" + ], + [ + "how much ram does my computer have", + "oos" + ], + [ + "is it ok to feed dogs people food", + "oos" + ], + [ + "how do you fix a leaking sink", + "oos" + ], + [ + "how do you unclog a toilet", + "oos" + ], + [ + "can you tell me local crime in my area", + "oos" + ], + [ + "what's the power consumption of my fridge", + "oos" + ], + [ + "what is the warranty on my microwave", + "oos" + ], + [ + "how do i use my microwaves defrost", + "oos" + ], + [ + "how do you get red wine out of the carpet", + "oos" + ], + [ + "how do i get stains out of the carpet", + "oos" + ], + [ + "what is the highest quality carpet available", + "oos" + ], + [ + "has everyone come home from school", + "oos" + ], + [ + "what time did my daughter get home from her date", + "oos" + ], + [ + "is my computer free from viruses", + "oos" + ], + [ + "are you allowed to call someone a dirty name as part of free speech", + "oos" + ], + [ + "can you really get arrested for yelling fire in a crowded theater", + "oos" + ], + [ + "what amendment guarantees the freedom of speech to americans", + "oos" + ], + [ + "do employers have to honor freedom of speech", + "oos" + ], + [ + "what's the average score on a round of golf", + "oos" + ], + [ + "where is the closest driving range", + "oos" + ], + [ + "when does tiger woods play next", + "oos" + ], + [ + "how can i improve my golf swing", + "oos" + ], + [ + "are your step-parent's parents considered your grandparents", + "oos" + ], + [ + "what's a good gift to get for your grandparents", + "oos" + ], + [ + "what year did my grandparents get married", + "oos" + ], + [ + "fun gift ideas to give to grandparents", + "oos" + ], + [ + "which came first; greek mythology or roman mythology", + "oos" + ], + [ + "how many greek mythology characters are there", + "oos" + ], + [ + "who created the world in greek mythology", + "oos" + ], + [ + "what was hercules the god of", + "oos" + ], + [ + "how many harry potter books are there", + "oos" + ], + [ + "what is harry's real name", + "oos" + ], + [ + "who played ronald weasly", + "oos" + ], + [ + "how do you repel a bear when you're out on a hike", + "oos" + ], + [ + "where's the best place to hike in the rockies", + "oos" + ], + [ + "what should i wear to hike", + "oos" + ], + [ + "what is the main cause of becoming homeless", + "oos" + ], + [ + "how many people are jobless in america", + "oos" + ], + [ + "how many homeless people are there", + "oos" + ], + [ + "where are most homeless people", + "oos" + ], + [ + "are indians nowadays reminiscent of a decade ago", + "oos" + ], + [ + "what were indians like 100 years ago", + "oos" + ], + [ + "how old is jennifer aniston", + "oos" + ], + [ + "i need tips on how to overcome insomnia", + "oos" + ], + [ + "how many people have insomnia", + "oos" + ], + [ + "what causes dyslexia", + "oos" + ], + [ + "is insomnia curable", + "oos" + ], + [ + "what are sigmund freud's most famous books", + "oos" + ], + [ + "what year was jane austen born", + "oos" + ], + [ + "where is te lawrence", + "oos" + ], + [ + "who is jane goodall", + "oos" + ], + [ + "how long does it take to get your yellow belt in karate", + "oos" + ], + [ + "what's the most practiced form of mma in the world", + "oos" + ], + [ + "what is the highest belt in karate", + "oos" + ], + [ + "where does jiu jitsu originate", + "oos" + ], + [ + "what's the proper subject verb order in japanese", + "oos" + ], + [ + "how do i learn more about linguistics", + "oos" + ], + [ + "what kind of paint do makeup artists use", + "oos" + ], + [ + "the bus moves with tyre", + "oos" + ], + [ + "how the bus moves", + "oos" + ], + [ + "what are some good resources to learn about mental illness", + "oos" + ], + [ + "are people with a mental illness eligible for disability", + "oos" + ], + [ + "how many people suffer from mental illness", + "oos" + ], + [ + "how can i get help for my mental health", + "oos" + ], + [ + "what's trending now", + "oos" + ], + [ + "what's the first romantic movie ever made", + "oos" + ], + [ + "when was the term \"zombie\" first used", + "oos" + ], + [ + "what kind of traits do vampires have", + "oos" + ], + [ + "what do mummies eat", + "oos" + ], + [ + "send information on flood clean up to my phone", + "oos" + ], + [ + "what's the cost of buying a sump pump", + "oos" + ], + [ + "recommend a flood clean up service", + "oos" + ], + [ + "what is the safest model of airplane to fly in", + "oos" + ], + [ + "what year was the first airplane built in", + "oos" + ], + [ + "what's the best reviewed local roof repair place", + "oos" + ], + [ + "what's the best type of plan to upgrade to", + "oos" + ], + [ + "give me a suggestion for roofers", + "oos" + ], + [ + "where can i buy new shingles", + "oos" + ], + [ + "what's the safest pet to be around toddlers", + "oos" + ], + [ + "why is my dog vomiting after eating", + "oos" + ], + [ + "tiger", + "oos" + ], + [ + "what's the average rent of apartments in my city", + "oos" + ], + [ + "are there any apartments for rent nearby", + "oos" + ], + [ + "what are apartment prices now", + "oos" + ], + [ + "what's the highest building in the world", + "oos" + ], + [ + "where is the closest architecture college", + "oos" + ], + [ + "where can i submit my architecture plans", + "oos" + ], + [ + "who is the best architecture", + "oos" + ], + [ + "please give me a listing of all the bottled water brands in the area", + "oos" + ], + [ + "what are the lowest prices of bottled water at costco", + "oos" + ], + [ + "how do they filter pollutants out of bottled water", + "oos" + ], + [ + "what's the cost of bottled water", + "oos" + ], + [ + "what's the cost to have a business card printed", + "oos" + ], + [ + "when can i get a business card printed locally", + "oos" + ], + [ + "what to use to design my business cards", + "oos" + ], + [ + "download all the photos off my phone into the cloud", + "oos" + ], + [ + "tell me about that kind of cameras", + "oos" + ], + [ + "how much is the new nikon camera", + "oos" + ], + [ + "what kind of camera should i buy", + "oos" + ], + [ + "how much candy have i consumed this week", + "oos" + ], + [ + "how many flavors of mnm's are there", + "oos" + ], + [ + "who makes milky way bars", + "oos" + ], + [ + "how safe is it to consume the substance h2o", + "oos" + ], + [ + "how many elements are on the periodic table", + "oos" + ], + [ + "what's the chemical composition of a fart", + "oos" + ], + [ + "what is phosphorus on the periodic table", + "oos" + ], + [ + "look up some christmas songs for me", + "oos" + ], + [ + "is espn covering the golden state warriors game", + "oos" + ], + [ + "how many calories does doing 20 situps burn", + "oos" + ], + [ + "what is a normal resting heart rate", + "oos" + ], + [ + "should i run every day", + "oos" + ], + [ + "how many months do i left in my hbo subscription", + "oos" + ], + [ + "when does game of thrones return on hbo", + "oos" + ], + [ + "cancel my subscription to scientific american", + "oos" + ], + [ + "i'd like to renew my subscription to playboy", + "oos" + ], + [ + "what are popular lifestyle magazines", + "oos" + ], + [ + "what are popular sports magazines", + "oos" + ], + [ + "how can i use make up to cover a cut on my cheek", + "oos" + ], + [ + "what's the best make-up to cover a black eye", + "oos" + ], + [ + "send me videos of how to do a smoky eye", + "oos" + ], + [ + "whats the best rated lipstick", + "oos" + ], + [ + "when will the government file another antitrust suit against microsoft", + "oos" + ], + [ + "when will microsoft drop support for windows 7", + "oos" + ], + [ + "how do i make a sentence have stylized strike out in microsoft word", + "oos" + ], + [ + "how can i control where microsoft word inserts a page break", + "oos" + ], + [ + "what are the current prices for mushrooms", + "oos" + ], + [ + "what bands are touring in my city this week", + "oos" + ], + [ + "i need for you to look up some of the major gods in mythology", + "oos" + ], + [ + "what was the original name of jesus in egyptian myth", + "oos" + ], + [ + "was the god osiris a titan or an old god", + "oos" + ], + [ + "tell me who aphrodite is", + "oos" + ], + [ + "what activities can i to do outside today", + "oos" + ], + [ + "when will the daffodils bloom this year", + "oos" + ], + [ + "what zelda games are available on the switch", + "oos" + ], + [ + "i want to buy some nintendo switch game", + "oos" + ], + [ + "how much does a nintendo switch cost", + "oos" + ], + [ + "show me a cool nintendo switch game", + "oos" + ], + [ + "can you check how many miles i walked today when i was out get the info from my phone", + "oos" + ], + [ + "can you check how many steps i have walked in the last week from my phone app", + "oos" + ], + [ + "what should i do if it hurts when i pee", + "oos" + ], + [ + "what are the symptoms of cancer", + "oos" + ], + [ + "how many pokemon have i caught in my pokemon go app", + "oos" + ], + [ + "tell me what pokemon is", + "oos" + ], + [ + "has the school my kids go to been in the news for any reason", + "oos" + ], + [ + "are there any school closures today", + "oos" + ], + [ + "how long is the school year", + "oos" + ], + [ + "why did a bunch of christians go off murdering muslims in the middle ages", + "oos" + ], + [ + "what was the point of the crusades", + "oos" + ], + [ + "what other countries speak the english language", + "oos" + ], + [ + "why doesn't english have consistent forms", + "oos" + ], + [ + "do they speak english in australia", + "oos" + ], + [ + "who teaches english near me", + "oos" + ], + [ + "can you see what the budget for the united states military was in 2018", + "oos" + ], + [ + "can you look at what the oldest age is someone can enlist in the army", + "oos" + ], + [ + "how many years do you need to be in the army to get a college tuition", + "oos" + ], + [ + "where are most the servicemen right now", + "oos" + ], + [ + "what movies are playing at my local cinemax", + "oos" + ], + [ + "what time is a star is born showing", + "oos" + ], + [ + "what movies are playing", + "oos" + ], + [ + "can you get me the scores from the games that were played last night", + "oos" + ], + [ + "has there been any times when lebron james was arrested", + "oos" + ], + [ + "what are the new player rankings for the nhl", + "oos" + ], + [ + "who won in the gsw vs suns game last night", + "oos" + ], + [ + "give me the news on the newspaper today", + "oos" + ], + [ + "tell me a list of my local papers", + "oos" + ], + [ + "what's the newspaper today", + "oos" + ], + [ + "would you let me know who won the gold metal in gymnastics at the olympics", + "oos" + ], + [ + "at the olympics, what country won the gold medal in basketball", + "oos" + ], + [ + "where will the next olympics be hosted", + "oos" + ], + [ + "when are the winter olympic games", + "oos" + ], + [ + "what films are in the running for best song at this year's oscars", + "oos" + ], + [ + "who are the nominees for best picture this year", + "oos" + ], + [ + "give me information on the oscars", + "oos" + ], + [ + "tell me about the oscars", + "oos" + ], + [ + "why did we elect this woman who made amazon leave and take its jobs with it", + "oos" + ], + [ + "how many people live in vermillion", + "oos" + ], + [ + "what's a good way to organize my tools in my garage", + "oos" + ], + [ + "what's the cost of a good pegboard", + "oos" + ], + [ + "is the stop sign around the corner still knocked over", + "oos" + ], + [ + "is there a fork in the road sign at main & 1st avenue", + "oos" + ], + [ + "are there cameras hidden in stop lights", + "oos" + ], + [ + "what does a flashing yellow light mean", + "oos" + ], + [ + "what is the deadline to register at university of georgia", + "oos" + ], + [ + "what universities are nearby to me and highly rated", + "oos" + ], + [ + "what are the top rated universities within my state", + "oos" + ], + [ + "will the anti-vaxxers die off if no one gives them vaccines", + "oos" + ], + [ + "how safe is the herpes vaccine they give women", + "oos" + ], + [ + "where can i get the flu shot", + "oos" + ], + [ + "when do i have to get the mmr", + "oos" + ], + [ + "how much are the clorox detergents", + "oos" + ], + [ + "when will nightwish be touring through my city", + "oos" + ], + [ + "does iron maiden have any new releases", + "oos" + ], + [ + "tell me something about linkin park", + "oos" + ], + [ + "i need you to check the resistance of a coil wrapped 6 times with an id of 25mm", + "oos" + ], + [ + "can you tell me whether the knicks will play the lakers this week", + "oos" + ], + [ + "what do you do if your 4 year old just ate playdoh", + "oos" + ], + [ + "when do the kids get out of school today", + "oos" + ], + [ + "please check up on my son's homework", + "oos" + ], + [ + "give me a list of the top three landscaping companies nearby", + "oos" + ], + [ + "when should you mow your grass after it's rained", + "oos" + ], + [ + "how much sugar was in my urine this morning", + "oos" + ], + [ + "what's a good blouse to wear with pink shoes", + "oos" + ], + [ + "what are the best jeans in my size", + "oos" + ], + [ + "how much does it cost to spay a puppy", + "oos" + ], + [ + "what's the best style shoe to wear to the prom", + "oos" + ], + [ + "can you tell me about that tornado that just tore up alabama", + "oos" + ], + [ + "tell me what the hot topics are that are trending on google", + "oos" + ], + [ + "what happened with the summit between trump and jong", + "oos" + ], + [ + "check and see what the local news in broadcasting", + "oos" + ], + [ + "please uninstall this intrusive social media app", + "oos" + ], + [ + "upload the pictures to the correct album", + "oos" + ], + [ + "i have a super runny nose and want to find a doctor", + "oos" + ], + [ + "which medicine to relieve my cough", + "oos" + ], + [ + "how do i get rid of blocked nose at home", + "oos" + ], + [ + "how do i get rid of sore throat at home", + "oos" + ], + [ + "how can i make my living room appear to be bigger than it is", + "oos" + ], + [ + "i'd like to find some curtains that look good in this room", + "oos" + ], + [ + "how to paint walls", + "oos" + ], + [ + "how to fix walls", + "oos" + ], + [ + "can you tell me the purpose of a safe deposit box", + "oos" + ], + [ + "can you store a gun in a safe deposit box", + "oos" + ], + [ + "how do you get a safe deposit box", + "oos" + ], + [ + "look up how to apply cream to smooth itchiness", + "oos" + ], + [ + "how do i deal with angry, painful red bumps", + "oos" + ], + [ + "where should i go if i hammered a nail through my foot", + "oos" + ], + [ + "how long does it take to call an ambulance", + "oos" + ], + [ + "how to get the right medicine", + "oos" + ], + [ + "how to take care of the sick", + "oos" + ], + [ + "do vegans really want to blame cows for climate change", + "oos" + ], + [ + "give me a recommendation for a local landscaper", + "oos" + ], + [ + "i need to hire a grass treatment specialist", + "oos" + ], + [ + "when is the best time of year for pruning", + "oos" + ], + [ + "find someone local who mows lawns", + "oos" + ], + [ + "create a speech on historical events surrounding albert einstein", + "oos" + ], + [ + "create a pamphlet on albert einsteins childhood", + "oos" + ], + [ + "what is albert einstein famous for", + "oos" + ], + [ + "when was albert einstein born", + "oos" + ], + [ + "when will cameron release the sequel to avatar", + "oos" + ], + [ + "can you please start the avatar movie for me", + "oos" + ], + [ + "is the movie avatar culturally insensitive", + "oos" + ], + [ + "could you create a new avatar for me", + "oos" + ], + [ + "does bill gates still have any material participation in the running of microsoft", + "oos" + ], + [ + "tell me more about bill gates", + "oos" + ], + [ + "give me the weather forecast for today", + "oos" + ], + [ + "what is bitcoin trading for currently", + "oos" + ], + [ + "where can i have a black and white photo blown up to poster size", + "oos" + ], + [ + "adjust the contrast of the black and white photos", + "oos" + ], + [ + "can you colorize a black and white photo", + "oos" + ], + [ + "add color to the black and white photos", + "oos" + ], + [ + "how many people were killed in the boston marathon by bombers", + "oos" + ], + [ + "compile a list of historical events from the boston marathon", + "oos" + ], + [ + "time my next run at the boston marathon", + "oos" + ], + [ + "when will the next boston marathon be", + "oos" + ], + [ + "look up which animal is represented in this year's chinese new year", + "oos" + ], + [ + "what is the animal for this chinese new year", + "oos" + ], + [ + "would it be legal to have battles to the death in a homemade colosseum", + "oos" + ], + [ + "do the romans still use the colosseum for anything today", + "oos" + ], + [ + "where is the colosseum", + "oos" + ], + [ + "can you really time your compressions to queen's \"another one bites the dust\"", + "oos" + ], + [ + "do i have to put my mouth on theirs when doing cpr", + "oos" + ], + [ + "what is the breath to compression ratio for cpr", + "oos" + ], + [ + "tell me how to perform cpr", + "oos" + ], + [ + "create a for-while loop that continues 10 times", + "oos" + ], + [ + "where are classes taught near me for c++", + "oos" + ], + [ + "declare a variable named \"golf\"", + "oos" + ], + [ + "how do i write c++", + "oos" + ], + [ + "is the depiction of gold mining in the movie the ballad of buster scruggs realistic", + "oos" + ], + [ + "do you own the mineral rights to gold nuggets you find in your back yard", + "oos" + ], + [ + "where is the best place to mine for gold", + "oos" + ], + [ + "when was the gold rush", + "oos" + ], + [ + "make a list of facts about green book", + "oos" + ], + [ + "find out when green book was created", + "oos" + ], + [ + "who wrote green book", + "oos" + ], + [ + "what's the main export by the peoples of greenland", + "oos" + ], + [ + "how many people still live on greenland", + "oos" + ], + [ + "scan my photos and tell me which hair style is most suiting for my face", + "oos" + ], + [ + "create several photos of me with different hair styles", + "oos" + ], + [ + "latest hair styles for long natural hair", + "oos" + ], + [ + "show video of hair styling tips", + "oos" + ], + [ + "did a man really die trying to be loved by a horse", + "oos" + ], + [ + "how many acres do you need to buy a horse", + "oos" + ], + [ + "get me a picture of a horse", + "oos" + ], + [ + "does eating poop really help your gut fauna", + "oos" + ], + [ + "is there a vaccine for ebola", + "oos" + ], + [ + "find out how many latin scholars there are at the university of chicago", + "oos" + ], + [ + "make a list of side hustles i could start today to make a little extra cash", + "oos" + ], + [ + "make a list of stocks that would be good to invest in to start making money", + "oos" + ], + [ + "how can i add my signature to the proposed bill legalizing prostitution", + "oos" + ], + [ + "what's the roi doing arbitrage with ebay", + "oos" + ], + [ + "do women still bare their chests for beads at mardi gras", + "oos" + ], + [ + "when's the next mardi gras going to be", + "oos" + ], + [ + "what is the best way to kill microbes", + "oos" + ], + [ + "start a speech on microbes for me", + "oos" + ], + [ + "inform me of what microbes are", + "oos" + ], + [ + "what is the top 10 best modems", + "oos" + ], + [ + "what is the time signature for the castlevania song bloody tears", + "oos" + ], + [ + "can you tell me what key frank zappa's keep it greasy is in", + "oos" + ], + [ + "please go to wikipedia and search for articles related to nsa", + "oos" + ], + [ + "can the nsa crack the encryption on my iphone", + "oos" + ], + [ + "does the nsa listen to me", + "oos" + ], + [ + "could you pull up the nsa website", + "oos" + ], + [ + "can you see if the octopus eggs have hatched yet", + "oos" + ], + [ + "what do you do if your cat eats an octopus", + "oos" + ], + [ + "find out which museum houses the most post modern art in new york state", + "oos" + ], + [ + "look up the top 3 selling post modern artists in the united states", + "oos" + ], + [ + "create a portrait for me using post modern art", + "oos" + ], + [ + "find me examples of post modern art", + "oos" + ], + [ + "find the names of all the rain forests located in south america", + "oos" + ], + [ + "does cutting down the rain forest really add to global warming", + "oos" + ], + [ + "what's the current demand for wood from rain forests", + "oos" + ], + [ + "what's the current prevailing interest rate for mortgages in my area", + "oos" + ], + [ + "how's the real estate market doing this week", + "oos" + ], + [ + "please list my real estate for sale", + "oos" + ], + [ + "make an ad to sell my real estate", + "oos" + ], + [ + "what's the status of robotic servants from japan", + "oos" + ], + [ + "finish the final touches on my newest robotic creation", + "oos" + ], + [ + "can a robot really travel back in time", + "oos" + ], + [ + "program my new robot to bring me snacks", + "oos" + ], + [ + "how long would it take you to die of thirst in the sahara desert", + "oos" + ], + [ + "can a samurai sword deflect a bullet", + "oos" + ], + [ + "how much for a samurai sword", + "oos" + ], + [ + "make a list of what materials have been used for spacesuits", + "oos" + ], + [ + "what size space suit should you get based on your girth", + "oos" + ], + [ + "see if you can purchase a spacesuit online", + "oos" + ], + [ + "compile a folder of paintings of sparta", + "oos" + ], + [ + "display history of sparta", + "oos" + ], + [ + "compile a list of articles pertaining to venture capital funding for me", + "oos" + ], + [ + "start a portfolio on venture capital funding for me to look over", + "oos" + ], + [ + "how do i get venture capital for my app", + "oos" + ], + [ + "what's the latest vc funded company", + "oos" + ], + [ + "i'd like to hire a wedding planner and need help finding one", + "oos" + ], + [ + "how to plan for weddings", + "oos" + ], + [ + "find out how many whales are currently in monterey bay", + "oos" + ], + [ + "make a chart of the different types of whales", + "oos" + ], + [ + "what did my best friend do in the kitchen while we were gone", + "oos" + ], + [ + "what's my boss' home address", + "oos" + ], + [ + "what's it like to have parents who actually love you", + "oos" + ], + [ + "is there any news if my parents survived the crash", + "oos" + ], + [ + "tell me who gives the best motivational speeches on the web", + "oos" + ], + [ + "find an article on celebrities who made it out of poverty", + "oos" + ], + [ + "send me a motivational quote everyday for the next week", + "oos" + ], + [ + "who is the hardest working man in hollywood", + "oos" + ], + [ + "tell me where i can get more information on getting a job at the post office", + "oos" + ], + [ + "pull up the classifieds and read the career section to me", + "oos" + ], + [ + "help me find a new position as a programmer", + "oos" + ], + [ + "what's the best career search website", + "oos" + ], + [ + "write the next chapter of my biography and let me know when you have finished it", + "oos" + ], + [ + "give me a list of the biographies written by nyu professors after 2001", + "oos" + ], + [ + "i would like for you to start a biography on me", + "oos" + ], + [ + "show me all biographies on teddy kennedy", + "oos" + ], + [ + "find out what supplies i am missing and will need on my upcoming camping trip", + "oos" + ], + [ + "what are the camping restrictions at bear island", + "oos" + ], + [ + "find articles that can help me advance my position in my work field", + "oos" + ], + [ + "show me what one should do to get ahead in a tech corporation", + "oos" + ], + [ + "get me a copy of a book on negotiation in the workplace", + "oos" + ], + [ + "look up ways for me to advance my job placement", + "oos" + ], + [ + "see if there is a recipe to make a casserole without any dairy", + "oos" + ], + [ + "tell me in how many different colors i can get dinner plates from pier one imports", + "oos" + ], + [ + "tell me amazon's choice for a set of 4 dinner plates", + "oos" + ], + [ + "find out where i can by melamine dinner plates", + "oos" + ], + [ + "find out what the maximum memory size is that i can buy in a dvd", + "oos" + ], + [ + "tell me who makes the best dvd's for movie storage", + "oos" + ], + [ + "how many dvds do i currently have on file", + "oos" + ], + [ + "give me a listing of all my dvd's", + "oos" + ], + [ + "look up the conversion rate for the euro to dollar exchange", + "oos" + ], + [ + "how do i put a lens that's fallen out back in my glasses", + "oos" + ], + [ + "i need you to order a new pair of eyeglasses for me", + "oos" + ], + [ + "tell me what my current eyeglasses prescription is", + "oos" + ], + [ + "show me examples of cute eyeglass frames", + "oos" + ], + [ + "make a list of all sites in the us where spirits have been seen at night", + "oos" + ], + [ + "tell me how to get rid of a spirit that's haunting me", + "oos" + ], + [ + "show me how to contact a paranormal spirit", + "oos" + ], + [ + "tell me a scary story", + "oos" + ], + [ + "show me the goals of my local police department in terms of reducing crime", + "oos" + ], + [ + "make a list of goals i need to meet in order to write a book", + "oos" + ], + [ + "what is the distance between the goal posts in football", + "oos" + ], + [ + "remind me what my weight loss goals are", + "oos" + ], + [ + "give me a list of tax attorneys that practice in my city", + "oos" + ], + [ + "tell me how i can file a pleading in circuit court", + "oos" + ], + [ + "give me the number of a traffic attorney near here", + "oos" + ], + [ + "what are the top rated local lawyers", + "oos" + ], + [ + "find out how many miles the mississippi waterway runs", + "oos" + ], + [ + "tell me what the longest tributary is in venezuela", + "oos" + ], + [ + "please book another boat for this weekends trip", + "oos" + ], + [ + "get me a list of universities that provide full scholarships in arizona", + "oos" + ], + [ + "tell me where to go to get my son enrolled in public kindergarten", + "oos" + ], + [ + "do a job search on monstercom for jobs in the tech field in arlington, va", + "oos" + ], + [ + "i need to find work, help me connect to a local business through linkedin", + "oos" + ], + [ + "detail a list of possible job openings in the miami public school system", + "oos" + ], + [ + "look for a position similar to mine that is open around my area", + "oos" + ], + [ + "find out where one can get involved in discussing local election issues", + "oos" + ], + [ + "give me a list of the top 5 issues people have in this country", + "oos" + ], + [ + "what is the government department that regulates emissions", + "oos" + ], + [ + "what's the highest rated social services non-profit", + "oos" + ], + [ + "explain to me the process of evaporation", + "oos" + ], + [ + "how do i write an iep for a high schooler", + "oos" + ], + [ + "tell me how to refinish a wooden desk", + "oos" + ], + [ + "tell me how to make a lesson plan", + "oos" + ], + [ + "tell me where i can get the cheapest tennis balls on the internet", + "oos" + ], + [ + "play the current tennis match on the tv in the living room", + "oos" + ], + [ + "give me a list of the top 10 tennis players in the world", + "oos" + ], + [ + "make a chart of all the tennis scores from this year", + "oos" + ], + [ + "find the best prices for toothpaste at any store within a 5 mile radius of my location", + "oos" + ], + [ + "tell me what the best shampoo is for someone with dry scalp", + "oos" + ], + [ + "what's the best price on a gray xl ll bean men's parka", + "oos" + ], + [ + "tell me who has the cheapest watch bands on ebay", + "oos" + ], + [ + "how do i set the time on my tag heuer", + "oos" + ], + [ + "tell me the steps as to how to begin a career as a journalist", + "oos" + ], + [ + "give me prices on a copy of the mla grammar handbook", + "oos" + ], + [ + "put words on the paper about what you want", + "oos" + ], + [ + "put into words what you want", + "oos" + ], + [ + "what kind of foods are border collies allergic to", + "oos" + ], + [ + "find out how i can best clip my dog's nails", + "oos" + ], + [ + "what is the lifespan of a border collie", + "oos" + ], + [ + "look up daily dog kennels in my area", + "oos" + ], + [ + "give me a list of grocery stores that sell japanese sweet potatoes", + "oos" + ], + [ + "tell me the price of bananas at whole foods this week", + "oos" + ], + [ + "call the grocery store and get their operational hours", + "oos" + ], + [ + "call an uber to take me to the closest grocery store", + "oos" + ], + [ + "show me how many community centers are located within 5 miles of my location", + "oos" + ], + [ + "which houses do not have automatic spot lights in front of their garage", + "oos" + ], + [ + "are all the street lamps working on my street", + "oos" + ], + [ + "make a list of all community gardens near me", + "oos" + ], + [ + "tell me where to send my resume in order to get a job at delta airlines", + "oos" + ], + [ + "review my resume for spelling errors", + "oos" + ], + [ + "please print out copies of my resume", + "oos" + ], + [ + "please spell check my resume", + "oos" + ], + [ + "where can i get 100% merino wool t-shirts on the internet", + "oos" + ], + [ + "show me all listings on amazon for leather belts for men", + "oos" + ], + [ + "tell me how many blue ties i own", + "oos" + ], + [ + "who is the start of the movie almost famous", + "oos" + ], + [ + "search up someone who plays in a movie", + "oos" + ], + [ + "search up the cast in the walking dead", + "oos" + ], + [ + "tell me about the amusement park", + "oos" + ], + [ + "what's the amusement park like", + "oos" + ], + [ + "take a ride on the ferris wheel", + "oos" + ], + [ + "go on the ferris wheel", + "oos" + ], + [ + "what is the cost of four double a batteries", + "oos" + ], + [ + "instruct a list of all the brands of cereal manufactured by kelloggs", + "oos" + ], + [ + "compare prices of malt-o-meal to kelloggs", + "oos" + ], + [ + "what kinds of cereal are gluten free", + "oos" + ], + [ + "what kinds of cereal are low sugar", + "oos" + ], + [ + "what is the last time the living room was vacuumed", + "oos" + ], + [ + "search all movies created by disney in the 1980's", + "oos" + ], + [ + "does disney world close when it storms", + "oos" + ], + [ + "mickey mouse is a huge part of disney", + "oos" + ], + [ + "what are the hours for disney world", + "oos" + ], + [ + "what time did i get the last text message i received", + "oos" + ], + [ + "please read me the last text message i received", + "oos" + ], + [ + "read my friend's text message", + "oos" + ], + [ + "watch the stories on instagram", + "oos" + ], + [ + "update my status on instagram", + "oos" + ], + [ + "can you check on what it would cost me to upgrade my iphone with t-mobile", + "oos" + ], + [ + "please alert me when my iphone battery falls below 30%", + "oos" + ], + [ + "can you look at when the next iphone is due out", + "oos" + ], + [ + "what type of industries do innovation managers work in", + "oos" + ], + [ + "what are the requirements of a lab technician", + "oos" + ], + [ + "generate a list of 20 songs that include the word love in the title", + "oos" + ], + [ + "create a 500 word letter expressing love", + "oos" + ], + [ + "find a couple's therapist who can help me and my wife", + "oos" + ], + [ + "what does the average cost of an engagement ring", + "oos" + ], + [ + "what is popular in fashion right now", + "oos" + ], + [ + "does denim go with anything", + "oos" + ], + [ + "accept incoming phone call", + "oos" + ], + [ + "deny incoming phone call", + "oos" + ], + [ + "what do i wear on my feet when it rains", + "oos" + ], + [ + "what do i put on my feet", + "oos" + ], + [ + "what are the words to the chorus for this song", + "oos" + ], + [ + "display the song lyrics for me", + "oos" + ], + [ + "google \"odell beckham free agency\"", + "oos" + ], + [ + "clear my search history", + "oos" + ], + [ + "compare the new life growth in trees when the seasons change", + "oos" + ], + [ + "plant all your flowers just after easter in early april", + "oos" + ], + [ + "find a good toy to give a 5 year old boy that costs less than $40", + "oos" + ], + [ + "find out where i can buy a barbie doll for my niece", + "oos" + ], + [ + "look on amazon for the price of a nitendo switch", + "oos" + ], + [ + "what brand was the last advertisement for", + "oos" + ], + [ + "how do i skip all of the advertisements", + "oos" + ], + [ + "make a list of decor i would need to have a titanic themed birthday party", + "oos" + ], + [ + "aquire the soundtracks from the movie if i stay and add them to my ipod", + "oos" + ], + [ + "i watched \"were the millers\" on netflix last night", + "oos" + ], + [ + "can you find \"were the millers\" on hulu", + "oos" + ], + [ + "how many people have held the role of county attorney bearing the family name \"dixon\"", + "oos" + ], + [ + "tell me about the candidates running for local office in my area", + "oos" + ], + [ + "find out who is the representative of my district", + "oos" + ], + [ + "generate a list of the past 10 judge executives", + "oos" + ], + [ + "look up the email address of the local police", + "oos" + ], + [ + "how many hits have i done today", + "oos" + ], + [ + "change out the older photos with the newer ones", + "oos" + ], + [ + "organize photos by year they were taken", + "oos" + ], + [ + "can you group my photos by location", + "oos" + ], + [ + "organize my photos by date please", + "oos" + ], + [ + "tell me what my local park's policy is on letting dogs off of leashes", + "oos" + ], + [ + "look up the operating hours of my local park on weekends", + "oos" + ], + [ + "how many parks are within 20 miles of me", + "oos" + ], + [ + "check to see if i still have allergy medication", + "oos" + ], + [ + "sign me up for the writing class you told me about 2 days ago", + "oos" + ], + [ + "find articles on essay writing for beginners", + "oos" + ], + [ + "how long should an essay be", + "oos" + ], + [ + "how do you start an essay", + "oos" + ], + [ + "what should you do if your laundry machine is making a high pitched whine", + "oos" + ], + [ + "find out who the best appliance repairman is for the downtown area", + "oos" + ], + [ + "look up local repair shops that work on vacuum cleaners", + "oos" + ], + [ + "can i get a sear's appliance repairman", + "oos" + ], + [ + "find directions to the sunshine car wash from my house", + "oos" + ], + [ + "can you book me an appointment at a car wash", + "oos" + ], + [ + "what brush can i use to wash my car that won't scratch it", + "oos" + ], + [ + "please clean the car windows", + "oos" + ], + [ + "vacuum out the car", + "oos" + ], + [ + "schedule an appointment with the credit counselor for tuesday", + "oos" + ], + [ + "find a credit mentoring service number for me please", + "oos" + ], + [ + "how much does it cost to get two jackets dry cleaned", + "oos" + ], + [ + "look up articles on the green dry cleaning industry", + "oos" + ], + [ + "find a cleaner that specializes in suede", + "oos" + ], + [ + "when should you use a dry cleaner", + "oos" + ], + [ + "create emergency phone numbers list", + "oos" + ], + [ + "do sets of 25 set-ups each morning til you have completed your goal", + "oos" + ], + [ + "keep a note of how many miles you walk a day", + "oos" + ], + [ + "how much weight should i lift to get buff", + "oos" + ], + [ + "what's a good stretch to do to limber up", + "oos" + ], + [ + "look up the most requested famous person for quotes", + "oos" + ], + [ + "what is the most famous quote on the internet", + "oos" + ], + [ + "make a list of the top 100 famous quotes", + "oos" + ], + [ + "show me the top 10 quotes by mark twain", + "oos" + ], + [ + "what do you do if you can't stop vomiting", + "oos" + ], + [ + "what should i take for a cold", + "oos" + ], + [ + "i have too many credit cards, is there any way you can help me organize them", + "oos" + ], + [ + "find a credit counseling service for me on the web", + "oos" + ], + [ + "explain how to reduce my debt burden", + "oos" + ], + [ + "look up the current auto loan rate at chase bank", + "oos" + ], + [ + "look up student loan offers on google", + "oos" + ], + [ + "check current prime mortgage rate", + "oos" + ], + [ + "what should you do if you can't be bothered to get out of bed", + "oos" + ], + [ + "send me a quote from a motivational speaker twice a day", + "oos" + ], + [ + "find me a book on motivational speaking from amazon", + "oos" + ], + [ + "check to see if i need a pass to use the parking garages downtown", + "oos" + ], + [ + "can you check to see which parking garages are open downtown", + "oos" + ], + [ + "how much does it cost to use the parking garage downtown", + "oos" + ], + [ + "what's a good way of backing out of a parking spot", + "oos" + ], + [ + "search the web for monthly parking near my house", + "oos" + ], + [ + "find out where parking is close to the stadium", + "oos" + ], + [ + "how do i get perfect alignment with the curb", + "oos" + ], + [ + "describe to me how i can learn to make small talk", + "oos" + ], + [ + "explain how small talk helps bind groups together", + "oos" + ], + [ + "what do you do all day while i'm at work", + "oos" + ], + [ + "so, hang out around this house often", + "oos" + ], + [ + "tell me the best way to freshen the smell in my car", + "oos" + ], + [ + "where's the closest car wash my car smells", + "oos" + ], + [ + "how much is auto febreeze on amazon", + "oos" + ], + [ + "find out how to deodorize a car", + "oos" + ], + [ + "see if you can find a good vegetable wash for me", + "oos" + ], + [ + "look up website on container gardening", + "oos" + ], + [ + "are we allowed to wash our cars during the drought", + "oos" + ], + [ + "request a refund on the car wax i bought yesterday", + "oos" + ], + [ + "i'd like to hire someone to wash my car", + "oos" + ], + [ + "find out what gentlemen are wearing to weddings these days", + "oos" + ], + [ + "find me articles on appropriate wedding attire", + "oos" + ], + [ + "zip the back of the brides maid dress", + "oos" + ], + [ + "rent the tuxedo the day before", + "oos" + ], + [ + "find available letter writing classes at the local community college", + "oos" + ], + [ + "find me a graphic tutorial on writing longhand", + "oos" + ], + [ + "order me a book of stamps and envelopes", + "oos" + ], + [ + "start listening to me dictate a letter", + "oos" + ], + [ + "email my boss, tell him i wont be in today", + "oos" + ], + [ + "are the schools closed", + "oos" + ], + [ + "let me know what time the patriots game starts", + "oos" + ], + [ + "tell me how long until the nascar race begins", + "oos" + ], + [ + "are there any sales on liquor", + "oos" + ], + [ + "what shows are on tonight", + "oos" + ], + [ + "are there any new job postings in my area in the last hour for jobs on craigslist", + "oos" + ], + [ + "see if there are any employment agencies hiring managers right now", + "oos" + ], + [ + "can you tell me what the best places are to look for a job online", + "oos" + ], + [ + "sign me up for the slack employment forum", + "oos" + ], + [ + "please replay the last five minutes", + "oos" + ], + [ + "can you enable subtitles", + "oos" + ], + [ + "consult the gq website to find what men wear to weddings", + "oos" + ], + [ + "order me a blue pin stripe suit from saville row", + "oos" + ], + [ + "what's in fashion this month", + "oos" + ], + [ + "is it too late to wear white", + "oos" + ], + [ + "how many calories does jumping up and down burn", + "oos" + ], + [ + "how many push-ups do i need to do to get ripped", + "oos" + ], + [ + "fill up my water bottle for the gym", + "oos" + ], + [ + "pick out an excerise outfit for me", + "oos" + ], + [ + "find out how long a cold should last before i call a doctor", + "oos" + ], + [ + "what should i take for nausea", + "oos" + ], + [ + "how do you relieve a hangover", + "oos" + ], + [ + "what is a good home remedy for a rash", + "oos" + ], + [ + "i have a rash, what can i use for it", + "oos" + ], + [ + "can you order some ointment for me", + "oos" + ], + [ + "how do i get rid of an itchy rash", + "oos" + ], + [ + "forward the text i just got from henry to giselle", + "oos" + ], + [ + "please read the text message i just received", + "oos" + ], + [ + "save my text on my laptop hard drive", + "oos" + ], + [ + "what time does my ex-boss leave the office", + "oos" + ], + [ + "how much does gun ammunition cost", + "oos" + ], + [ + "restart my newspaper delivery for monday", + "oos" + ], + [ + "are there any messages", + "oos" + ], + [ + "what's that smell", + "oos" + ], + [ + "get me a list of the best savings account rates right now", + "oos" + ], + [ + "is beer legal in this state", + "oos" + ], + [ + "get me articles and pics of different types of household bugs for this area", + "oos" + ], + [ + "what should i do if i saw a cockroach in my house", + "oos" + ], + [ + "look up articles on squealing brakes for ford f-150's", + "oos" + ], + [ + "please answer the phone and put it on speaker on the tv", + "oos" + ], + [ + "can you tell me who's calling me", + "oos" + ], + [ + "answer the phone", + "oos" + ], + [ + "ignore call", + "oos" + ], + [ + "find out what type of wax is needed for a late model ford sedan", + "oos" + ], + [ + "what's the first thing you should do to wash your car", + "oos" + ], + [ + "what supplies do i need to clean my car", + "oos" + ], + [ + "look up articles on car washing at home", + "oos" + ], + [ + "how old is the oldest person that is in the guiness book of world records", + "oos" + ], + [ + "how could i get into the guiness book of world records", + "oos" + ], + [ + "what person is the heaviest ever recorded", + "oos" + ], + [ + "who has the longest hair ever", + "oos" + ], + [ + "can you look at what average reviews say about the new windows phone on amazon for me", + "oos" + ], + [ + "tell me a summary of reviews that oakley frogskins get on amazon", + "oos" + ], + [ + "make me a list of the top ten reviewed hiking boots on jetcom", + "oos" + ], + [ + "show me a tabulation of reviews for lcd tv's on amazon", + "oos" + ], + [ + "can you tell me what happened to han solo in episode 4", + "oos" + ], + [ + "how many movies are in the star wars series", + "oos" + ], + [ + "how many star wars movies are there", + "oos" + ], + [ + "who plays han solo", + "oos" + ], + [ + "which movie is it that someone says perfectly balanced as all things should be", + "oos" + ], + [ + "what movie is the line today is our independence day from", + "oos" + ], + [ + "what movie is it that says today is a good day to die", + "oos" + ], + [ + "what movie does it's just a flesh wound come from", + "oos" + ], + [ + "is michonne wrong for not working with the kingdom to put on the fair", + "oos" + ], + [ + "which actors have played more than 1 comic book character", + "oos" + ], + [ + "what marvel movie did mark ruffalo first appear in", + "oos" + ], + [ + "why did negan return to his jail cell", + "oos" + ], + [ + "is there more than one occult that a person can join", + "oos" + ], + [ + "can i summon a demon using just an ouija board", + "oos" + ], + [ + "what's the best way to drown a witch", + "oos" + ], + [ + "what does it mean to join the occult", + "oos" + ], + [ + "did madison really bathe in the potomac naked", + "oos" + ], + [ + "can you explain a good risk strategy to me", + "oos" + ], + [ + "what are the rules for chess", + "oos" + ], + [ + "fill out the paperwork for tonys new daycare center", + "oos" + ], + [ + "i need to find a new babysitter", + "oos" + ], + [ + "get me a list of divorce attorneys in the new york area", + "oos" + ], + [ + "how long does it take to get a divorce finalized", + "oos" + ], + [ + "where can i find the best divorce lawyer", + "oos" + ], + [ + "make me a map of all earthquake hotspots in the continental us", + "oos" + ], + [ + "how much damage did the last earthquake here do", + "oos" + ], + [ + "what was the latest tremor on the richter scale", + "oos" + ], + [ + "get me articles on earthquake preparedness", + "oos" + ], + [ + "what is appropriate to spend on a bouquet of flowers for mother's day", + "oos" + ], + [ + "get me a list of personal conservation tips that i can use around the house", + "oos" + ], + [ + "look up the average temperature changes over the last 30 years for my area", + "oos" + ], + [ + "is the polar vortex of 2019 apart of global warming", + "oos" + ], + [ + "what is global warming", + "oos" + ], + [ + "can you book me a tee time at cantigny at 2 pm on saturday", + "oos" + ], + [ + "what's the best golf club to use on the lower nine", + "oos" + ], + [ + "how do i stop my child from setting small animals on fire for amusement", + "oos" + ], + [ + "review chapter 6 with my son and verify his math homework answers", + "oos" + ], + [ + "can you look up how i shoot a time lapse video on my iphone camera or is it even possible", + "oos" + ], + [ + "how do i turn up the resolution that i am taking pictures in on my camera phone", + "oos" + ], + [ + "print out the photos i took today", + "oos" + ], + [ + "can you find me sheet music for the beatles white album online", + "oos" + ], + [ + "find me a good band instructor or two to compare in my area", + "oos" + ], + [ + "can i get a starter course for the trumpet", + "oos" + ], + [ + "how many keys does a xylophone have", + "oos" + ], + [ + "how many polar bears are still alive in the arctic", + "oos" + ], + [ + "are polar bears on the endangered species list", + "oos" + ], + [ + "what is the life expectancy of a polar bear", + "oos" + ], + [ + "can a polar bear live in alabama", + "oos" + ], + [ + "when will george rr martin publish the next game of thrones book", + "oos" + ], + [ + "show me the new york times most popular book list for this week", + "oos" + ], + [ + "how many books are in piers anthony virtual mode series", + "oos" + ], + [ + "order the new book titled \"ghost work\"", + "oos" + ], + [ + "please check if god is really living in a small apartment in brussels", + "oos" + ], + [ + "what did the mesopotamians call the creator of the universe", + "oos" + ], + [ + "put on an educational program about buddhism", + "oos" + ], + [ + "what happens if you're skydiving and your parachute doesn't open", + "oos" + ], + [ + "research how many deaths has resulted from skydiving", + "oos" + ], + [ + "how many people die each year while skydiving", + "oos" + ], + [ + "google the price of skydiving in florida", + "oos" + ], + [ + "in what movie did mrs congeniality feature a contestant championing for world peace", + "oos" + ], + [ + "has there ever been total world peace, where no nations in the world are at war", + "oos" + ], + [ + "name the leader from tibet that stands firm for world peace", + "oos" + ], + [ + "what will it take to achieve world peace", + "oos" + ], + [ + "was einstein right to be scared of spooky action at a distance", + "oos" + ], + [ + "what is the nature of the big bang theory", + "oos" + ], + [ + "how does the etheric body operate", + "oos" + ], + [ + "do we actually have a soul", + "oos" + ], + [ + "where can i find cheap rental skis nearby", + "oos" + ], + [ + "check the nanny cam and send the feed to my phone", + "oos" + ], + [ + "how much should i tip on this bill", + "oos" + ], + [ + "send me live feed of the pre-game prediction show on my phone", + "oos" + ], + [ + "what are the scores of other teams in this division", + "oos" + ], + [ + "look up pitcher stats on jake rooney", + "oos" + ], + [ + "what teams are playing right now", + "oos" + ], + [ + "is it too late to upgrade to first class", + "oos" + ], + [ + "according to my fitness tracker, how many push ups have i done today", + "oos" + ], + [ + "renew gym membership", + "oos" + ], + [ + "what's my budget for today's shopping trip", + "oos" + ], + [ + "can you find my car in the parking lot", + "oos" + ], + [ + "what's the best hand to have in texas hold em", + "oos" + ], + [ + "is gambling legal in my state", + "oos" + ], + [ + "fold my hand", + "oos" + ], + [ + "what time did i put in my first load of laundry", + "oos" + ], + [ + "how much time is left on my laundry", + "oos" + ], + [ + "report outage to my electric provider", + "oos" + ], + [ + "power up my generator", + "oos" + ], + [ + "call up instructables website and find article on bike assembly", + "oos" + ], + [ + "find schematics for ikea desk assembly", + "oos" + ], + [ + "search information on how to apply foundation", + "oos" + ], + [ + "find instructions on how to play taboo", + "oos" + ], + [ + "what casino game has the best odds", + "oos" + ], + [ + "tell me how much energy i have consumed so far this year", + "oos" + ], + [ + "give me an energy usage breakdown for march", + "oos" + ], + [ + "how many kilowatts have i used this month", + "oos" + ], + [ + "what's my current electric bill", + "oos" + ], + [ + "can you locate the television remote", + "oos" + ], + [ + "where did i last place my remote", + "oos" + ], + [ + "do you know where the remote is", + "oos" + ], + [ + "have you seen the remote", + "oos" + ], + [ + "please ping the rfid in my wallet and tell me where it's at right now", + "oos" + ], + [ + "can you detect where i placed my wallet", + "oos" + ], + [ + "give me my wallet location", + "oos" + ], + [ + "find my wallet", + "oos" + ], + [ + "can you give me the gps location of harvey", + "oos" + ], + [ + "where's my buddy steve right this second", + "oos" + ], + [ + "locate jenny at her present position", + "oos" + ], + [ + "let me know where jim is right now", + "oos" + ] + ], + "test": [ + [ + "how would you say fly in italian", + "translate" + ], + [ + "what's the spanish word for pasta", + "translate" + ], + [ + "how would they say butter in zambia", + "translate" + ], + [ + "how do you say fast in spanish", + "translate" + ], + [ + "what's the word for trees in norway", + "translate" + ], + [ + "how does one say wonderful in german", + "translate" + ], + [ + "how do they say tacos in mexico", + "translate" + ], + [ + "how would one say cruiser in china", + "translate" + ], + [ + "what's the french word you use for potato", + "translate" + ], + [ + "what would the word for grass be in finland", + "translate" + ], + [ + "how do you say please in french", + "translate" + ], + [ + "how would i say nice to meet you if i were russian", + "translate" + ], + [ + "what is the right way to say excuse me in spanish", + "translate" + ], + [ + "how do i say i'm sorry in chinese", + "translate" + ], + [ + "how would i say thank you if i were mexican", + "translate" + ], + [ + "how would i say what is your name if i were french", + "translate" + ], + [ + "how would i say i must be going now if i were german", + "translate" + ], + [ + "how do i say bathroom in italian", + "translate" + ], + [ + "how might i say hello if i were scottish", + "translate" + ], + [ + "i must know how to say thank you in german", + "translate" + ], + [ + "how would i say i love you if i were german", + "translate" + ], + [ + "how would i say how are you today if i were mexican", + "translate" + ], + [ + "how would i say where is the bathroom if i were korean", + "translate" + ], + [ + "how would i say i need directions if i were french", + "translate" + ], + [ + "how would i say i am lost if i were japanese", + "translate" + ], + [ + "english to spanish for dog", + "translate" + ], + [ + "what is dog in spanish", + "translate" + ], + [ + "how do you say dog in spanish", + "translate" + ], + [ + "dog in spanish", + "translate" + ], + [ + "what's the spanish word for dog", + "translate" + ], + [ + "can you please provide me with assistance in moving money from one account to another", + "transfer" + ], + [ + "i would like help moving money between accounts", + "transfer" + ], + [ + "can you assist me in moving money from one account to another", + "transfer" + ], + [ + "i would like help moving money from one account to another", + "transfer" + ], + [ + "i would like assistance moving money from one account to another", + "transfer" + ], + [ + "can i move some money around", + "transfer" + ], + [ + "can i make a transfer between my accounts", + "transfer" + ], + [ + "i need to make a transfer of my money", + "transfer" + ], + [ + "can i move some money between my two accounts", + "transfer" + ], + [ + "i would like to distribute some money between my accounts", + "transfer" + ], + [ + "i would like to transfer $100 from my checking to saving account", + "transfer" + ], + [ + "help me transfer $100 from my checking to saving account", + "transfer" + ], + [ + "transfer $100 from my checking to saving account", + "transfer" + ], + [ + "can you please help me move $100 from my checking to saving account", + "transfer" + ], + [ + "please move $100 from my checking to saving account", + "transfer" + ], + [ + "transfer seventeen dollars from rbs to woodforest account, please", + "transfer" + ], + [ + "send twelve dollars between cabelas and bank of london accounts, please", + "transfer" + ], + [ + "transfer ninety dollars between glacier checking and farmers accounts, please", + "transfer" + ], + [ + "transfer seventy dollars between national and citizens accounts", + "transfer" + ], + [ + "transfer four and sixty seven dollars from bank of oklahoma checking to security bank account", + "transfer" + ], + [ + "how much money can i transfer today", + "transfer" + ], + [ + "add funds to the retirement account from the pnc account only", + "transfer" + ], + [ + "would you move 100 dollars from the checking and put it into savings", + "transfer" + ], + [ + "repeat what the weather will be like", + "transfer" + ], + [ + "i would like to put 100 dollars from the checking into the savings account now", + "transfer" + ], + [ + "please transfer $5000 to money market from checking account", + "transfer" + ], + [ + "i need $360 transfered from savings to checking account", + "transfer" + ], + [ + "make an immediate transfer of ten thousand from money market to checking", + "transfer" + ], + [ + "i'd like to transfer $400 from household to savings account", + "transfer" + ], + [ + "transer $800 from my checking to savings account", + "transfer" + ], + [ + "set a 4 minute timer", + "timer" + ], + [ + "set a 2 minute timer", + "timer" + ], + [ + "set a 3 minute timer", + "timer" + ], + [ + "set a 5 minute timer", + "timer" + ], + [ + "set a 1 minute timer", + "timer" + ], + [ + "who set up the numbers for it", + "timer" + ], + [ + "start the timer", + "timer" + ], + [ + "start a timer please", + "timer" + ], + [ + "i need to start a timer", + "timer" + ], + [ + "i need a timer to be set", + "timer" + ], + [ + "could you set a timer", + "timer" + ], + [ + "set a timer", + "timer" + ], + [ + "i need to have a timer for 10 minutes", + "timer" + ], + [ + "make a 10 minute timer", + "timer" + ], + [ + "give me a 10 minute timer", + "timer" + ], + [ + "will you create a timer for me", + "timer" + ], + [ + "please begin a timer", + "timer" + ], + [ + "is it possible to set a timer", + "timer" + ], + [ + "i want a timer set for 10 minutes", + "timer" + ], + [ + "set a timer for 10 minutes", + "timer" + ], + [ + "can i get a timer set", + "timer" + ], + [ + "i need to use a timer", + "timer" + ], + [ + "set a timer to go off in 1 hour", + "timer" + ], + [ + "i need a timer for 45 minutes", + "timer" + ], + [ + "in 15 minutes the timer should go off", + "timer" + ], + [ + "start the timer now", + "timer" + ], + [ + "set a timer for 30 minutes", + "timer" + ], + [ + "set a timer for 5 minutes from now", + "timer" + ], + [ + "let me know when it's been 5 minutes", + "timer" + ], + [ + "can you set the timer to 20 minutes", + "timer" + ], + [ + "define antebellum", + "definition" + ], + [ + "define discontent", + "definition" + ], + [ + "what is the meaning of incandescent", + "definition" + ], + [ + "what does confrontation mean", + "definition" + ], + [ + "what does serendipity mean", + "definition" + ], + [ + "what's the definition of luminescent", + "definition" + ], + [ + "what is the definiton of auspicious", + "definition" + ], + [ + "what does circuitous mean", + "definition" + ], + [ + "what's the definition of unencumbered", + "definition" + ], + [ + "what does adulation mean", + "definition" + ], + [ + "what does assiduous mean", + "definition" + ], + [ + "what does amicable mean", + "definition" + ], + [ + "what's the definition of remunerative", + "definition" + ], + [ + "what does anachronistic mean", + "definition" + ], + [ + "what's the definition of idiosyncratic", + "definition" + ], + [ + "what does yolo mean", + "definition" + ], + [ + "can you tell me the meaning of fluctuate", + "definition" + ], + [ + "what does the word polynomial mean", + "definition" + ], + [ + "what does ferrari mean", + "definition" + ], + [ + "what is the meaning of the word girn", + "definition" + ], + [ + "what does mature mean", + "definition" + ], + [ + "i'd like to know what bitcoin means", + "definition" + ], + [ + "i heard some woman say she was going to yerd me, what's that mean", + "definition" + ], + [ + "can you tell me what obsolescence means", + "definition" + ], + [ + "please explain the word catastrophic to me", + "definition" + ], + [ + "what's the meaning of naff", + "definition" + ], + [ + "can you tell me what dendrofilous means", + "definition" + ], + [ + "what does peer-to-peer actually mean", + "definition" + ], + [ + "define epicurean", + "definition" + ], + [ + "what does epicurean mean", + "definition" + ], + [ + "would you let me know what the meaning is life is", + "meaning_of_life" + ], + [ + "would you let me know what is the point of life", + "meaning_of_life" + ], + [ + "right now, i need to know the meaning of life", + "meaning_of_life" + ], + [ + "define the meaning of life for me", + "meaning_of_life" + ], + [ + "i want to know the meaning of life", + "meaning_of_life" + ], + [ + "would you explain the meaning of life", + "meaning_of_life" + ], + [ + "i need you to tell me the meaning of life", + "meaning_of_life" + ], + [ + "i need to know what the meaning of life is now", + "meaning_of_life" + ], + [ + "tell me what the meaning of life is", + "meaning_of_life" + ], + [ + "i need to know what the point of life is", + "meaning_of_life" + ], + [ + "let me know what the point of life is", + "meaning_of_life" + ], + [ + "would you provide me with what the point of life is", + "meaning_of_life" + ], + [ + "tell me what the point of life is", + "meaning_of_life" + ], + [ + "what is the reason humans even exist", + "meaning_of_life" + ], + [ + "do you think our lives have purpose or meaning", + "meaning_of_life" + ], + [ + "can you tell me about the meaning of life", + "meaning_of_life" + ], + [ + "can you tell me what the meaning of life is", + "meaning_of_life" + ], + [ + "what do you know about the meaning of life", + "meaning_of_life" + ], + [ + "i would like information on the meaning of life", + "meaning_of_life" + ], + [ + "what information can you give me on the meaning of life", + "meaning_of_life" + ], + [ + "what is the core meaning of life", + "meaning_of_life" + ], + [ + "what do you know about lifes meaning", + "meaning_of_life" + ], + [ + "is there any consensun regarding lifes true meaning", + "meaning_of_life" + ], + [ + "is there a reason beyond biology about why humans are alive", + "meaning_of_life" + ], + [ + "do you think being alive has any meaning", + "meaning_of_life" + ], + [ + "is there meaning to life", + "meaning_of_life" + ], + [ + "is there meaning in life", + "meaning_of_life" + ], + [ + "what is the answer to life", + "meaning_of_life" + ], + [ + "what's the answer to it all", + "meaning_of_life" + ], + [ + "what's life mean to you", + "meaning_of_life" + ], + [ + "i would like to change my insurance policy", + "insurance_change" + ], + [ + "can i edit my insurance policy", + "insurance_change" + ], + [ + "i am interested in a new insurance plan", + "insurance_change" + ], + [ + "i really would like to get a new insurance plan", + "insurance_change" + ], + [ + "i am in the market for a new insurance plan", + "insurance_change" + ], + [ + "is there a way to alter my insurance policy", + "insurance_change" + ], + [ + "how can i change to new insurance plan", + "insurance_change" + ], + [ + "help me find a new insurance plan", + "insurance_change" + ], + [ + "can i update my insurance policy", + "insurance_change" + ], + [ + "who do i contact about updating my insurance", + "insurance_change" + ], + [ + "can you help me change my insurance policy", + "insurance_change" + ], + [ + "i need to change my insurance policy, do you know how", + "insurance_change" + ], + [ + "what are the steps to change my insurance policy", + "insurance_change" + ], + [ + "do you know how i can change my insurance policy", + "insurance_change" + ], + [ + "how to i change the policy on my insurace", + "insurance_change" + ], + [ + "what do i need to do to get new insurance", + "insurance_change" + ], + [ + "do you know how i get new insurance", + "insurance_change" + ], + [ + "what is the protocol for getting new insurance", + "insurance_change" + ], + [ + "let me know the process for new insurance", + "insurance_change" + ], + [ + "i want to sign up for a new allstate insurance plan", + "insurance_change" + ], + [ + "i need to sign up for a new allstate plan", + "insurance_change" + ], + [ + "what is the procedure for signing up for a new allstate plan", + "insurance_change" + ], + [ + "how do i sign up for a new allstatedplan", + "insurance_change" + ], + [ + "i want to change to a new allstate insurance plan", + "insurance_change" + ], + [ + "i want a new insurance plan", + "insurance_change" + ], + [ + "what if i want to switch insurance plans", + "insurance_change" + ], + [ + "is there a way to get a new insurance plan", + "insurance_change" + ], + [ + "i want to switch to a new insurance plan", + "insurance_change" + ], + [ + "how do i switch insurance plans", + "insurance_change" + ], + [ + "phone number to state farm to change insurance", + "insurance_change" + ], + [ + "can you help me find my phone, please", + "find_phone" + ], + [ + "could you help me locate my phone", + "find_phone" + ], + [ + "can you help me locate my phone", + "find_phone" + ], + [ + "could you help me locate my phone, please", + "find_phone" + ], + [ + "can you help me locate my phone, please", + "find_phone" + ], + [ + "i cannot locate my phone, can you help me", + "find_phone" + ], + [ + "i need help locating my phone", + "find_phone" + ], + [ + "can you assist me with finding my phone", + "find_phone" + ], + [ + "i lost my phone can you help me", + "find_phone" + ], + [ + "where the bleep did i put my bleeping phone", + "find_phone" + ], + [ + "is my phone somewhere around here", + "find_phone" + ], + [ + "help, i've lost my cellphone!", + "find_phone" + ], + [ + "i seem to have lost my phone", + "find_phone" + ], + [ + "do you know my phone's location", + "find_phone" + ], + [ + "can you find my phone", + "find_phone" + ], + [ + "where's my phone at", + "find_phone" + ], + [ + "what's my phone's location", + "find_phone" + ], + [ + "can you help me hunt for my missing cellphone", + "find_phone" + ], + [ + "locate my cellphone in this room", + "find_phone" + ], + [ + "where did i last put my phone", + "find_phone" + ], + [ + "find my cellphone for me!", + "find_phone" + ], + [ + "where did i place my phone", + "find_phone" + ], + [ + "where's my phone", + "find_phone" + ], + [ + "my phone isn't where i left it", + "find_phone" + ], + [ + "i think i've misplaced my phone", + "find_phone" + ], + [ + "i've lost my phone somewhere", + "find_phone" + ], + [ + "i think i lost my phone", + "find_phone" + ], + [ + "would you know where to find my phone", + "find_phone" + ], + [ + "please assist me in looking for my phone", + "find_phone" + ], + [ + "look for my phone with me", + "find_phone" + ], + [ + "is there a travel alert in spain", + "travel_alert" + ], + [ + "travel alert in cuba", + "travel_alert" + ], + [ + "alerts for travel in colombia", + "travel_alert" + ], + [ + "are there travel alerts in mexico", + "travel_alert" + ], + [ + "mexico travel alerts", + "travel_alert" + ], + [ + "have there been any travel alerts for the us", + "travel_alert" + ], + [ + "are there any travel advisories for the us", + "travel_alert" + ], + [ + "what are the travel alerts for the us", + "travel_alert" + ], + [ + "are there travel alerts for the us", + "travel_alert" + ], + [ + "what travel alerts are in effect for the us", + "travel_alert" + ], + [ + "i want to know if i will be safe if i travel to europe", + "travel_alert" + ], + [ + "would i be safe if i traveled to japan", + "travel_alert" + ], + [ + "is it safe to go to north korea", + "travel_alert" + ], + [ + "will i be safe going to south america", + "travel_alert" + ], + [ + "am i safe to go to africa", + "travel_alert" + ], + [ + "which countries have travel alerts", + "travel_alert" + ], + [ + "is it safe in italy", + "travel_alert" + ], + [ + "what are the travel conditions for haiti", + "travel_alert" + ], + [ + "are there any travel bulletins about haiti", + "travel_alert" + ], + [ + "note any travel alerts for haiti", + "travel_alert" + ], + [ + "find travel alerts for haiti", + "travel_alert" + ], + [ + "does the state department say anything about traveling to haiti", + "travel_alert" + ], + [ + "is there a travel alert for france", + "travel_alert" + ], + [ + "is it safe for me to go to turkey", + "travel_alert" + ], + [ + "is it safe to go to serbia", + "travel_alert" + ], + [ + "safety concerns for malaysia", + "travel_alert" + ], + [ + "is it safe for me to visit malawi", + "travel_alert" + ], + [ + "is travel to monterrey safe now", + "travel_alert" + ], + [ + "is it safe for people to travel to pakistan", + "travel_alert" + ], + [ + "can people safely travel to cambodia", + "travel_alert" + ], + [ + "please help me set up a vacation request", + "pto_request" + ], + [ + "how does one go about putting in a vacation request", + "pto_request" + ], + [ + "how do i put in a vacation request", + "pto_request" + ], + [ + "walk me through on how to make a vacation request", + "pto_request" + ], + [ + "please put in a vacation request", + "pto_request" + ], + [ + "how is a vacation request done", + "pto_request" + ], + [ + "how is a vacation request made", + "pto_request" + ], + [ + "what is the process of making a vacation request", + "pto_request" + ], + [ + "how would one make a vacation request", + "pto_request" + ], + [ + "can i put in a pto request for september 1st to september 8th", + "pto_request" + ], + [ + "if i want to make a vacation request, how do i do it", + "pto_request" + ], + [ + "can i put in a pto request for august 1st to august 10th", + "pto_request" + ], + [ + "can i put in a pto request for january 4th to january 9th", + "pto_request" + ], + [ + "can i put in a pto request for december 3rd to december 10th", + "pto_request" + ], + [ + "can i put in a pto request for december 25th to january 1st", + "pto_request" + ], + [ + "can i take pto from the end of the month to the 5th of the next month", + "pto_request" + ], + [ + "can you help me plan a vacation", + "pto_request" + ], + [ + "it it possible to take pto from the 8th to the 11th", + "pto_request" + ], + [ + "is it ok if i use some of my pto on may 24th to may 29th", + "pto_request" + ], + [ + "what do i do to set up a vacation", + "pto_request" + ], + [ + "i need to use pto on october 5th to october 10th", + "pto_request" + ], + [ + "how do i plan a vacation", + "pto_request" + ], + [ + "can i put in a pto request for monday to wednesday", + "pto_request" + ], + [ + "can i purchase a vacation using this", + "pto_request" + ], + [ + "how do i get help with a vacation itinerary", + "pto_request" + ], + [ + "how do i request a vacation", + "pto_request" + ], + [ + "i'd like to request a vacation", + "pto_request" + ], + [ + "i need to request a vacation", + "pto_request" + ], + [ + "vacation request information", + "pto_request" + ], + [ + "vacation request please", + "pto_request" + ], + [ + "how can i increase my credit score", + "improve_credit_score" + ], + [ + "how can i raise my credit score", + "improve_credit_score" + ], + [ + "how can i contribute to my credit score", + "improve_credit_score" + ], + [ + "how is it possible to get a better credit score", + "improve_credit_score" + ], + [ + "how can i up my credit score", + "improve_credit_score" + ], + [ + "can you explain to me how i might boost my credit score", + "improve_credit_score" + ], + [ + "my credit score stinks but i don't know how to improve it", + "improve_credit_score" + ], + [ + "what preventative measures can i take to avoid a low credit score", + "improve_credit_score" + ], + [ + "how can i keep my credit score from falling", + "improve_credit_score" + ], + [ + "give me some ideas for boosting my credit score", + "improve_credit_score" + ], + [ + "how can i prevent my credit score from dropping", + "improve_credit_score" + ], + [ + "what steps can i take to build my credit score", + "improve_credit_score" + ], + [ + "give me some tips on building up my credit score", + "improve_credit_score" + ], + [ + "how can i rehabilitate my poor credit score", + "improve_credit_score" + ], + [ + "give me some ideas of how to avoid my credit score lowering", + "improve_credit_score" + ], + [ + "give me tips on improving my credit score", + "improve_credit_score" + ], + [ + "what steps should i take if i want to ensure my credit score doesn't drop", + "improve_credit_score" + ], + [ + "can you tell me some strategies for raising my credit score", + "improve_credit_score" + ], + [ + "i want to know how i can build up a good credit score", + "improve_credit_score" + ], + [ + "\"what's the method to improve credit score", + "improve_credit_score" + ], + [ + "\"which is the best way to improve the credit score", + "improve_credit_score" + ], + [ + "\"which could be improve the credit score", + "improve_credit_score" + ], + [ + "\"when the credit score improve", + "improve_credit_score" + ], + [ + "\"where is improve the credit score", + "improve_credit_score" + ], + [ + "it is damaging to my credit score if i miss one credit card payment", + "improve_credit_score" + ], + [ + "i have a revolving store card and defaulted so will my fico score be affected", + "improve_credit_score" + ], + [ + "will my fico score decrease if i increase my student loan debt", + "improve_credit_score" + ], + [ + "if i lose my job will my credit score go down", + "improve_credit_score" + ], + [ + "can i hurt my credit rating if i open several credit cards in a short time frame", + "improve_credit_score" + ], + [ + "will only having five late payments really make my credit bad", + "improve_credit_score" + ], + [ + "name unusual facts about the circus", + "fun_fact" + ], + [ + "i need interesting baseball trivia from the nineteen eighties", + "fun_fact" + ], + [ + "tell me a fun fact about cars", + "fun_fact" + ], + [ + "give me a fun fact about kangaroo", + "fun_fact" + ], + [ + "give me a fun fact about koala", + "fun_fact" + ], + [ + "give me a fun fact about dolphin", + "fun_fact" + ], + [ + "what is some trivia about frog", + "fun_fact" + ], + [ + "tell me fun facts of today", + "fun_fact" + ], + [ + "give me something interesting about stars", + "fun_fact" + ], + [ + "what is some trivia question about coffee", + "fun_fact" + ], + [ + "tell me some trivia about sweat", + "fun_fact" + ], + [ + "tell me some trivia about dolphin", + "fun_fact" + ], + [ + "what is some trivia about the weather", + "fun_fact" + ], + [ + "give me a fun fact about komodo dragon", + "fun_fact" + ], + [ + "give me a amusing fact about wolf", + "fun_fact" + ], + [ + "what is the interesting trivia about human bodies", + "fun_fact" + ], + [ + "i want to learn something about apples", + "fun_fact" + ], + [ + "tell me today's fun fact", + "fun_fact" + ], + [ + "i want today's fun fact please", + "fun_fact" + ], + [ + "what is today's fun fact", + "fun_fact" + ], + [ + "today's fun fact", + "fun_fact" + ], + [ + "i want a fun fact about london", + "fun_fact" + ], + [ + "tell me something interesting about bees", + "fun_fact" + ], + [ + "i would you like to learn something interesting about bees", + "fun_fact" + ], + [ + "i want to hear cool bee facts", + "fun_fact" + ], + [ + "what's something interesting about bees", + "fun_fact" + ], + [ + "i wanna hear something cool about bees", + "fun_fact" + ], + [ + "tell me fun facts on science topics", + "fun_fact" + ], + [ + "tell me fun science facts", + "fun_fact" + ], + [ + "i want to know fun facts about koala bears", + "fun_fact" + ], + [ + "please speak in tagalog", + "change_language" + ], + [ + "speak in german", + "change_language" + ], + [ + "speak to me in dutch", + "change_language" + ], + [ + "speak in french please", + "change_language" + ], + [ + "speak spanish please", + "change_language" + ], + [ + "i am not understanding the language you are responding in; switch it for me", + "change_language" + ], + [ + "i can't understand the language you are responding in; i need you to switch it", + "change_language" + ], + [ + "i need you to switch the language you are responding as i don't understand", + "change_language" + ], + [ + "i don't understand your language; switch the language", + "change_language" + ], + [ + "i need you to switch the language you are responding in", + "change_language" + ], + [ + "i'd like to speak in portuguese", + "change_language" + ], + [ + "can we speak in german", + "change_language" + ], + [ + "i want to use spanish with you", + "change_language" + ], + [ + "please let's speak in spanish", + "change_language" + ], + [ + "please can we speak in dutch", + "change_language" + ], + [ + "can you make the default language swedish", + "change_language" + ], + [ + "is it possible to talk to you in mandarin", + "change_language" + ], + [ + "would you understand me if i speak to you in navajo", + "change_language" + ], + [ + "i'd like the language to be in spanish", + "change_language" + ], + [ + "i'd like to use you using russian", + "change_language" + ], + [ + "can i speak spanish to you hombre", + "change_language" + ], + [ + "i want to start talking to you in swedish", + "change_language" + ], + [ + "can i get you to change your language setting to russian", + "change_language" + ], + [ + "please make your language setting norwegian", + "change_language" + ], + [ + "i am going to speak english now", + "change_language" + ], + [ + "do you speak english", + "change_language" + ], + [ + "i want to talk english", + "change_language" + ], + [ + "we have to speak in english", + "change_language" + ], + [ + "speak in dutch", + "change_language" + ], + [ + "i want to speak to you in swiss german", + "change_language" + ], + [ + "how long until my paycheck shows up", + "payday" + ], + [ + "can you tell me the date of my last check", + "payday" + ], + [ + "what was the date when i last go paid", + "payday" + ], + [ + "what's the date on my last pay stub", + "payday" + ], + [ + "when can i expect my paycheck", + "payday" + ], + [ + "when is the next time i'll receive a paycheck", + "payday" + ], + [ + "when did i last collect my salary", + "payday" + ], + [ + "when do i next get paid", + "payday" + ], + [ + "when is my paycheck arriving", + "payday" + ], + [ + "what day is payday", + "payday" + ], + [ + "do you know when my next check is coming", + "payday" + ], + [ + "when do i get my next paycheck", + "payday" + ], + [ + "when's pay day for me", + "payday" + ], + [ + "i need to know when i get paid next", + "payday" + ], + [ + "when's my next pay day", + "payday" + ], + [ + "what day's my pay coming next", + "payday" + ], + [ + "when do i get paid for my work", + "payday" + ], + [ + "look up when my payday is supposed to be", + "payday" + ], + [ + "when can i expect to be paid", + "payday" + ], + [ + "look up the date for my next payday", + "payday" + ], + [ + "what day will i earn my payment from work", + "payday" + ], + [ + "find out when my next upcoming payday will be", + "payday" + ], + [ + "when is the next payday i can look forward to", + "payday" + ], + [ + "what day can i expect to receive payment on", + "payday" + ], + [ + "when will my next paycheck be coming", + "payday" + ], + [ + "when will my payment be deposited", + "payday" + ], + [ + "when do i get my next pay check", + "payday" + ], + [ + "is it payday", + "payday" + ], + [ + "do you know when i'll receive my next paycheck", + "payday" + ], + [ + "what date do i get paid", + "payday" + ], + [ + "how long does it take for a credit card to be reissued and mailed to me", + "replacement_card_duration" + ], + [ + "can credit card companies expedite delivery of reissued credit cards", + "replacement_card_duration" + ], + [ + "can you call the help desk line for my credit card company", + "replacement_card_duration" + ], + [ + "how can i request a new credit card", + "replacement_card_duration" + ], + [ + "what's the phone number for my credit card company", + "replacement_card_duration" + ], + [ + "i recently lost my credit card and need to know how long it takes to get a new one mailed to me", + "replacement_card_duration" + ], + [ + "i need to know the time it takes to get a new credit card sent to someone who lost theirs", + "replacement_card_duration" + ], + [ + "i lost my credit card recently how long does take to get a new one in the mail", + "replacement_card_duration" + ], + [ + "what is amount of time it takes to get a new credit card i lost mine recently", + "replacement_card_duration" + ], + [ + "what is the time frame for sending a customer who lost their credit card a new one", + "replacement_card_duration" + ], + [ + "will i get getting my new card anytime soon", + "replacement_card_duration" + ], + [ + "what is the shipping status of my replacement card", + "replacement_card_duration" + ], + [ + "how long until i get my replacement card", + "replacement_card_duration" + ], + [ + "when is my new card expected to arrive", + "replacement_card_duration" + ], + [ + "is my replacement card due to arrive in the mail today", + "replacement_card_duration" + ], + [ + "how long before my new card is mailed to me", + "replacement_card_duration" + ], + [ + "what is the shipping time for my card", + "replacement_card_duration" + ], + [ + "how much time before my new card is mailed to me", + "replacement_card_duration" + ], + [ + "how long does it take to get a new credit card", + "replacement_card_duration" + ], + [ + "time to order and receive a new credit card", + "replacement_card_duration" + ], + [ + "when will i received a replacement card", + "replacement_card_duration" + ], + [ + "time to replace my credit card", + "replacement_card_duration" + ], + [ + "how long before the replacement card is mailed to me", + "replacement_card_duration" + ], + [ + "how much longer before the card is mailed to me", + "replacement_card_duration" + ], + [ + "how long will it takes to get a new credit card", + "replacement_card_duration" + ], + [ + "what is the shipping wait for my card", + "replacement_card_duration" + ], + [ + "when will the replaecment card arrive", + "replacement_card_duration" + ], + [ + "let me know the wait on a replacement credit card", + "replacement_card_duration" + ], + [ + "let me know when the replacement card will arrive", + "replacement_card_duration" + ], + [ + "how soon can i expect a replacement card for my lost card to arrive", + "replacement_card_duration" + ], + [ + "i need you to tell me what time it is in new york now", + "time" + ], + [ + "what time is it in adelaide, australia right now", + "time" + ], + [ + "is it after noon", + "time" + ], + [ + "is it six o clock yet", + "time" + ], + [ + "please give me the time in tanzania at this moment", + "time" + ], + [ + "can you tell me the current time in jamaica", + "time" + ], + [ + "tell me the time in san francisco, please", + "time" + ], + [ + "what time is it right now in adelaide, australia", + "time" + ], + [ + "what time is it in the eastern timezone", + "time" + ], + [ + "what time is it in the mountain timezone", + "time" + ], + [ + "what time is it in the greenwich timezone", + "time" + ], + [ + "what time is it in the central timezone", + "time" + ], + [ + "tell me what the time is in dallas", + "time" + ], + [ + "what is the current time in dallas", + "time" + ], + [ + "can you tell me what time it is in dallas", + "time" + ], + [ + "what time is it in dallas", + "time" + ], + [ + "tell time for another city: dallas", + "time" + ], + [ + "what time is it right now at home", + "time" + ], + [ + "what\u2019s the time in new york", + "time" + ], + [ + "tell me the time in california", + "time" + ], + [ + "tell me the time in las vegas", + "time" + ], + [ + "what is the time is central time zone", + "time" + ], + [ + "what is the time in the usa", + "time" + ], + [ + "what is the time in est", + "time" + ], + [ + "whats the exact time", + "time" + ], + [ + "what is the current time", + "time" + ], + [ + "what's the current time", + "time" + ], + [ + "what time is it in california", + "time" + ], + [ + "please give me the time", + "time" + ], + [ + "the time is what", + "time" + ], + [ + "how is the status of my credit card application coming along", + "application_status" + ], + [ + "what exactly is the status of my application for the credit card", + "application_status" + ], + [ + "i need to know the status of my credit card application", + "application_status" + ], + [ + "i would like to know the status of my credit card application", + "application_status" + ], + [ + "let me know if my application for american saving bank", + "application_status" + ], + [ + "check the status of my credit card application for me", + "application_status" + ], + [ + "i want to know if my credit card application has been processed", + "application_status" + ], + [ + "i want to know the status of my credit card application", + "application_status" + ], + [ + "can you check if my credit card application has been processed", + "application_status" + ], + [ + "i want to know how is my credit card application going", + "application_status" + ], + [ + "can you let me know the status of my discover credit card application status", + "application_status" + ], + [ + "can you tell me the status of my credit card application", + "application_status" + ], + [ + "has my application for american express gone through yet", + "application_status" + ], + [ + "let me know about the status of my credit card application", + "application_status" + ], + [ + "can you please tell me about the status of my credit card application", + "application_status" + ], + [ + "can you please let me know the status of my capital one application", + "application_status" + ], + [ + "let me know the credit card application status", + "application_status" + ], + [ + "has my application for discover card gone through yet", + "application_status" + ], + [ + "can you tell me the credit card application status", + "application_status" + ], + [ + "has my application for the hsbc card been approved yet", + "application_status" + ], + [ + "please tell me if my application for the hsbc card has gone through yet", + "application_status" + ], + [ + "how far has my application for the hsbc card gone till now", + "application_status" + ], + [ + "what's the status on my application for the hsbc credit card", + "application_status" + ], + [ + "how far has my application for the hsbc card proceeded till now", + "application_status" + ], + [ + "did the application for my visa card finish", + "application_status" + ], + [ + "has my mastercard application gone through the process", + "application_status" + ], + [ + "has my mastercard application gone through yet", + "application_status" + ], + [ + "has my application for my visa card gone through", + "application_status" + ], + [ + "has my mastercard application been processed", + "application_status" + ], + [ + "when will i know if my visa card application was approved", + "application_status" + ], + [ + "what's the status of by delta flight", + "flight_status" + ], + [ + "what's the status of my virgin airlines flight", + "flight_status" + ], + [ + "what's the status of my jetblue flight", + "flight_status" + ], + [ + "what's the status of my southwest flight", + "flight_status" + ], + [ + "what's the status of my american airlines flight", + "flight_status" + ], + [ + "what's the news with my delta flight", + "flight_status" + ], + [ + "where is my delta flight", + "flight_status" + ], + [ + "what can you tell me about flight dl123", + "flight_status" + ], + [ + "where is flight dl123", + "flight_status" + ], + [ + "has flight dl123 left", + "flight_status" + ], + [ + "is flight dl123 going to arrive on time", + "flight_status" + ], + [ + "is my spirit flight running on time", + "flight_status" + ], + [ + "what's the status for my delta flight this afternoon", + "flight_status" + ], + [ + "give me the status on my united airlines flight", + "flight_status" + ], + [ + "what's up with my american airline flight will it be on time", + "flight_status" + ], + [ + "tell me what the status is for my aa flight", + "flight_status" + ], + [ + "i need for you to get me the status of my american airlines flight", + "flight_status" + ], + [ + "tell me the status of my american airlines flight", + "flight_status" + ], + [ + "i need to know the status of my american airlines flight", + "flight_status" + ], + [ + "would you let me know the status of my american airlines flight", + "flight_status" + ], + [ + "let me know the status of my american airlines flight", + "flight_status" + ], + [ + "has flight dl123 landed", + "flight_status" + ], + [ + "is my flight, dl123 on time", + "flight_status" + ], + [ + "how far out is flight dl123", + "flight_status" + ], + [ + "is flight dl123 delayed", + "flight_status" + ], + [ + "what time is boarding scheduled", + "flight_status" + ], + [ + "when is boarding scheduled", + "flight_status" + ], + [ + "what time is boarding for my flight", + "flight_status" + ], + [ + "when is boarding scheduled for my flight", + "flight_status" + ], + [ + "when is my flight scheduled to board", + "flight_status" + ], + [ + "flip a coin for me and i call heads", + "flip_coin" + ], + [ + "can you flip a coin for me", + "flip_coin" + ], + [ + "give me the results of a coin flip", + "flip_coin" + ], + [ + "please flip a coin for me", + "flip_coin" + ], + [ + "please flip a coin for me ai", + "flip_coin" + ], + [ + "flip a coin and tell me if it's heads", + "flip_coin" + ], + [ + "ai, flip a coin for me", + "flip_coin" + ], + [ + "ai, please flip a simulated coin", + "flip_coin" + ], + [ + "let's flip a coin i choose heads", + "flip_coin" + ], + [ + "can you please do a simulated coin flip for me ai", + "flip_coin" + ], + [ + "flip a coin i choose heads", + "flip_coin" + ], + [ + "flip a coin i'm calling heads", + "flip_coin" + ], + [ + "can you do a coin flip for me ai", + "flip_coin" + ], + [ + "i want you to flip a coin i choose heads", + "flip_coin" + ], + [ + "just toss a coin", + "flip_coin" + ], + [ + "just flip a coin", + "flip_coin" + ], + [ + "throw a coin in the air", + "flip_coin" + ], + [ + "flip a coin into the air", + "flip_coin" + ], + [ + "heads, coin flip", + "flip_coin" + ], + [ + "flip coin, heads!", + "flip_coin" + ], + [ + "flip a coin, i call heads!", + "flip_coin" + ], + [ + "coin flip, choose heads", + "flip_coin" + ], + [ + "please flip a coin, i choose heads!", + "flip_coin" + ], + [ + "can you flip a coin i call heads", + "flip_coin" + ], + [ + "flip a coin, i'm heads", + "flip_coin" + ], + [ + "flip a coin, heads", + "flip_coin" + ], + [ + "flip us a coin, i call heads", + "flip_coin" + ], + [ + "flip a coin, you're tails and i'm heads", + "flip_coin" + ], + [ + "give me a coin toss result", + "flip_coin" + ], + [ + "flip the coin, i choose heads", + "flip_coin" + ], + [ + "bob is my name now", + "change_user_name" + ], + [ + "please start calling me bob", + "change_user_name" + ], + [ + "change my name to bob", + "change_user_name" + ], + [ + "call me bob from now on", + "change_user_name" + ], + [ + "don't call me bill anymore - call me bob", + "change_user_name" + ], + [ + "i want you to call me bailey", + "change_user_name" + ], + [ + "don't call me anything besides bailey", + "change_user_name" + ], + [ + "refer to me as bailey", + "change_user_name" + ], + [ + "address me as \"bailey", + "change_user_name" + ], + [ + "please call me bailey", + "change_user_name" + ], + [ + "can you call me a different name", + "change_user_name" + ], + [ + "could you call me a different name", + "change_user_name" + ], + [ + "could you call me a different name, please", + "change_user_name" + ], + [ + "could you call me by a different name, please", + "change_user_name" + ], + [ + "can you call me a different name, please", + "change_user_name" + ], + [ + "ai, my name is deb please use my name when you talk to me", + "change_user_name" + ], + [ + "ai answer my questions with my name first which is deb", + "change_user_name" + ], + [ + "ai, refer to me as deb when answering me", + "change_user_name" + ], + [ + "ai, address me as deb when speaking to me", + "change_user_name" + ], + [ + "ai, call me deb", + "change_user_name" + ], + [ + "change my name please", + "change_user_name" + ], + [ + "please go ahead and change my name", + "change_user_name" + ], + [ + "please switch my name", + "change_user_name" + ], + [ + "change name for me", + "change_user_name" + ], + [ + "my name is going to be sherlock", + "change_user_name" + ], + [ + "start calling me jake from now on", + "change_user_name" + ], + [ + "call me shane", + "change_user_name" + ], + [ + "i want you to call me sheldon", + "change_user_name" + ], + [ + "i want to be called timothy", + "change_user_name" + ], + [ + "call me mike from now on", + "change_user_name" + ], + [ + "where are you coming from", + "where_are_you_from" + ], + [ + "from where do you come", + "where_are_you_from" + ], + [ + "what place are you from", + "where_are_you_from" + ], + [ + "where are you from originally", + "where_are_you_from" + ], + [ + "so, where do you come from", + "where_are_you_from" + ], + [ + "so where do you come from originally", + "where_are_you_from" + ], + [ + "where do you call home", + "where_are_you_from" + ], + [ + "what's your home country", + "where_are_you_from" + ], + [ + "where did you live before you moved here", + "where_are_you_from" + ], + [ + "are you from here or somewhere else originally", + "where_are_you_from" + ], + [ + "tell me where you're from", + "where_are_you_from" + ], + [ + "what area did you come from", + "where_are_you_from" + ], + [ + "what is your origin", + "where_are_you_from" + ], + [ + "where was it you were born", + "where_are_you_from" + ], + [ + "the place you were born is", + "where_are_you_from" + ], + [ + "what location were you born", + "where_are_you_from" + ], + [ + "where were you put together", + "where_are_you_from" + ], + [ + "where is your home planet", + "where_are_you_from" + ], + [ + "where is your home town", + "where_are_you_from" + ], + [ + "where were you thought of", + "where_are_you_from" + ], + [ + "where do you originate from", + "where_are_you_from" + ], + [ + "where have you come from", + "where_are_you_from" + ], + [ + "where were you before", + "where_are_you_from" + ], + [ + "where were you processed", + "where_are_you_from" + ], + [ + "a hidden government facility", + "where_are_you_from" + ], + [ + "what region were you born", + "where_are_you_from" + ], + [ + "from where did you originate", + "where_are_you_from" + ], + [ + "are you from around here", + "where_are_you_from" + ], + [ + "in what place are you originally from", + "where_are_you_from" + ], + [ + "where did you grow up", + "where_are_you_from" + ], + [ + "tack on a gallon of milk to the grocery list", + "shopping_list_update" + ], + [ + "add laundry detergent to the list", + "shopping_list_update" + ], + [ + "make sure to put eggs on the grocery list", + "shopping_list_update" + ], + [ + "the list should also have 2 loaves of bread", + "shopping_list_update" + ], + [ + "include asparagus on the list", + "shopping_list_update" + ], + [ + "remove milk and add eggs to my shopping list", + "shopping_list_update" + ], + [ + "put milk on my shopping list", + "shopping_list_update" + ], + [ + "i'd like to add pancake mix to my shopping list if it's not already there", + "shopping_list_update" + ], + [ + "if soda isn't on my shopping list, go ahead and add it for me", + "shopping_list_update" + ], + [ + "add milk to my shopping list", + "shopping_list_update" + ], + [ + "take toilet paper off my shopping list", + "shopping_list_update" + ], + [ + "i need to add flour to my list for shopping if i haven't already", + "shopping_list_update" + ], + [ + "take toilet paper off my shopping list and add paper towels", + "shopping_list_update" + ], + [ + "i need hot dogs added to my shopping list please", + "shopping_list_update" + ], + [ + "please put chips on my shopping list", + "shopping_list_update" + ], + [ + "is milk in my shopping list if not, add it", + "shopping_list_update" + ], + [ + "can you add eggs to my shopping list", + "shopping_list_update" + ], + [ + "add eggs to my shopping list if it's not already there", + "shopping_list_update" + ], + [ + "i'd like to get soda while i'm out; add it to my shopping list", + "shopping_list_update" + ], + [ + "on my shopping list, remove eggs", + "shopping_list_update" + ], + [ + "i need eggs; add them to my shopping list", + "shopping_list_update" + ], + [ + "take soda from my shopping list, and while you're at it add tea", + "shopping_list_update" + ], + [ + "milk should be added to my shopping list", + "shopping_list_update" + ], + [ + "i don't need eggs anymore, but i do need milk", + "shopping_list_update" + ], + [ + "take paper towels off of my shopping list", + "shopping_list_update" + ], + [ + "i need milk on my shopping list", + "shopping_list_update" + ], + [ + "i don't need toilet paper anymore; take it off my shopping list", + "shopping_list_update" + ], + [ + "throw eggs on my shopping list, please", + "shopping_list_update" + ], + [ + "i need water on my shopping list and beer off of it", + "shopping_list_update" + ], + [ + "i need bananas on the list too", + "shopping_list_update" + ], + [ + "can you tell me what you can help with", + "what_can_i_ask_you" + ], + [ + "what things are you able to help me with", + "what_can_i_ask_you" + ], + [ + "i would like to know what you can help with", + "what_can_i_ask_you" + ], + [ + "what kind of things can you help with", + "what_can_i_ask_you" + ], + [ + "i want to know what type of things you can help me with", + "what_can_i_ask_you" + ], + [ + "please help me to know what type of things you can help me with", + "what_can_i_ask_you" + ], + [ + "can i know what type of things you can help me with", + "what_can_i_ask_you" + ], + [ + "i would like to know what type of things you can help me with", + "what_can_i_ask_you" + ], + [ + "i will be glad to know what type of things you can help me with", + "what_can_i_ask_you" + ], + [ + "what subjects do you like", + "what_can_i_ask_you" + ], + [ + "tell me what subjects you like", + "what_can_i_ask_you" + ], + [ + "please tell me what subjects you like", + "what_can_i_ask_you" + ], + [ + "so what subjects do you like", + "what_can_i_ask_you" + ], + [ + "what type of questions can i ask you", + "what_can_i_ask_you" + ], + [ + "what kinds of things are you familiar with", + "what_can_i_ask_you" + ], + [ + "what subjects are you experienced in", + "what_can_i_ask_you" + ], + [ + "what knowledge do you have on certain subjects", + "what_can_i_ask_you" + ], + [ + "what kid of subjects do you excel in", + "what_can_i_ask_you" + ], + [ + "what subjects or areas are you familiar with", + "what_can_i_ask_you" + ], + [ + "which subjects are you the most experienced with", + "what_can_i_ask_you" + ], + [ + "tell me what you can do for me", + "what_can_i_ask_you" + ], + [ + "what sorts of tasks can you do", + "what_can_i_ask_you" + ], + [ + "what can you do for me", + "what_can_i_ask_you" + ], + [ + "what can you do to make yourself useful", + "what_can_i_ask_you" + ], + [ + "what would you be able to do with me", + "what_can_i_ask_you" + ], + [ + "give me examples of what to ask you", + "what_can_i_ask_you" + ], + [ + "tell me what types of questions i can ask you", + "what_can_i_ask_you" + ], + [ + "what are you programmed to do for me", + "what_can_i_ask_you" + ], + [ + "what things do you know how to do", + "what_can_i_ask_you" + ], + [ + "how can you help me", + "what_can_i_ask_you" + ], + [ + "undecided", + "maybe" + ], + [ + "i'm afraid i don't know how to answer that", + "maybe" + ], + [ + "might", + "maybe" + ], + [ + "it might go either way", + "maybe" + ], + [ + "both could be", + "maybe" + ], + [ + "either or", + "maybe" + ], + [ + "my answer would be maybe", + "maybe" + ], + [ + "either one might be", + "maybe" + ], + [ + "i can't say for certain either way", + "maybe" + ], + [ + "it could go either way", + "maybe" + ], + [ + "it's definitely a maybe for that", + "maybe" + ], + [ + "i am not sure", + "maybe" + ], + [ + "maybe it is", + "maybe" + ], + [ + "i can't say", + "maybe" + ], + [ + "could be", + "maybe" + ], + [ + "i am unable to say", + "maybe" + ], + [ + "i am not able to say", + "maybe" + ], + [ + "i am really not sure", + "maybe" + ], + [ + "i do not know", + "maybe" + ], + [ + "not sure", + "maybe" + ], + [ + "not sure to be honest", + "maybe" + ], + [ + "i think maybe", + "maybe" + ], + [ + "um, i'm not quite sure", + "maybe" + ], + [ + "um, i'm not totally sure", + "maybe" + ], + [ + "um, i'm not actually sure", + "maybe" + ], + [ + "i'm not actually sure", + "maybe" + ], + [ + "um, i'm not sure", + "maybe" + ], + [ + "that might be the case", + "maybe" + ], + [ + "i'm not completely certain", + "maybe" + ], + [ + "unsure", + "maybe" + ], + [ + "help me change my oil", + "oil_change_how" + ], + [ + "what oil should i use for an oil change and how do i do it", + "oil_change_how" + ], + [ + "how do i do an oil change", + "oil_change_how" + ], + [ + "diy oil change", + "oil_change_how" + ], + [ + "how to do an oil change", + "oil_change_how" + ], + [ + "give me instructions for an oil change", + "oil_change_how" + ], + [ + "diy oil change and oil type", + "oil_change_how" + ], + [ + "oil type and do it yourself oil change information please", + "oil_change_how" + ], + [ + "i want to know how to change my oil", + "oil_change_how" + ], + [ + "can you tell me how to change my oil and what kind i use", + "oil_change_how" + ], + [ + "how to change oil and what oil type", + "oil_change_how" + ], + [ + "can you please instruct me on the proper way to change the oil in my car", + "oil_change_how" + ], + [ + "i need guidance on changing my oil", + "oil_change_how" + ], + [ + "i want a step by step explanation of how to change the oil in my car", + "oil_change_how" + ], + [ + "can you teach me how to change my oil", + "oil_change_how" + ], + [ + "can you teach me how to change my oil in my car", + "oil_change_how" + ], + [ + "help me figure out how to change my oil", + "oil_change_how" + ], + [ + "walk me through the steps involved in changing my oil", + "oil_change_how" + ], + [ + "give me step by step instructions for changing my oil", + "oil_change_how" + ], + [ + "i want to change the oil in my car but i do not know how to do it can you help", + "oil_change_how" + ], + [ + "put together a list of instructions for me on how to change the oil in my car", + "oil_change_how" + ], + [ + "is it possible to change oil, if so how and what do i use", + "oil_change_how" + ], + [ + "what oil do i use when changing oil and how do i do it", + "oil_change_how" + ], + [ + "how would i replace my oil and what sort of oil should i use", + "oil_change_how" + ], + [ + "can you change the oil, with what and how", + "oil_change_how" + ], + [ + "how could i replace my oil and what form of oil ought to i take advantage of", + "oil_change_how" + ], + [ + "can you tell me how to change my oil please", + "oil_change_how" + ], + [ + "how do i change my oil", + "oil_change_how" + ], + [ + "please let me know how to change the oil", + "oil_change_how" + ], + [ + "i need to know how to change oil in a car", + "oil_change_how" + ], + [ + "i'd like to make a reservation at rooth chris, can you do that", + "restaurant_reservation" + ], + [ + "make a reservation for chik-fil-a at 3 o' clock please", + "restaurant_reservation" + ], + [ + "reserve a table for 3 at 7 for olive garden", + "restaurant_reservation" + ], + [ + "will you reserve a table at olive garden for 3 people at 7", + "restaurant_reservation" + ], + [ + "at 7, i need a table for 3 at olive garden", + "restaurant_reservation" + ], + [ + "i need a table for 3 at olive garden for 7", + "restaurant_reservation" + ], + [ + "get a table for me at 7 for 3 people at olive garden", + "restaurant_reservation" + ], + [ + "reserve table for 5 at red robin under the name sara at 3", + "restaurant_reservation" + ], + [ + "reverse a table for 5 at burger king under the name sara at 6", + "restaurant_reservation" + ], + [ + "can you reserve a table for 6 at red robin under the name mavrick at 5 clock", + "restaurant_reservation" + ], + [ + "could you reserve table for 3 at carlos jr under the name adam at 4", + "restaurant_reservation" + ], + [ + "i want to reserve table for 5 at red robin under the name sara at 5", + "restaurant_reservation" + ], + [ + "i need a table for two at the havana at nine", + "restaurant_reservation" + ], + [ + "look for me a table at carl's cabin for twelve at eight", + "restaurant_reservation" + ], + [ + "i need a table at gemma for nine at two", + "restaurant_reservation" + ], + [ + "book me a table for three at rainforest cafe at seven", + "restaurant_reservation" + ], + [ + "get me a table for five at itta bena at three", + "restaurant_reservation" + ], + [ + "5 people are going to be at tropicana by 8pm, reserve the table under martins name please", + "restaurant_reservation" + ], + [ + "use martins name to reserve a table at tropicana for 5 people at 8pm", + "restaurant_reservation" + ], + [ + "reserve a table at tropicana for 5 people under the name martins for 8pm", + "restaurant_reservation" + ], + [ + "martins needs a table for 5 people at tropicana at 8pm precisely", + "restaurant_reservation" + ], + [ + "the table should be reserved at 8pm at tropicana using martins name and it should be for 5 people", + "restaurant_reservation" + ], + [ + "are there any open reservations at outback tonight", + "restaurant_reservation" + ], + [ + "make a reservation for 2 tonight at 7:00 at outback steakhouse", + "restaurant_reservation" + ], + [ + "michael will reserve a table for two at 7:00pm for olive garden", + "restaurant_reservation" + ], + [ + "a table for two needs to be reserved for 7:00pm at olive garden using the name michael", + "restaurant_reservation" + ], + [ + "please reserve a table for two at olive garden at 7:00pm for michael", + "restaurant_reservation" + ], + [ + "get reservations at olive garden for two at 7:00pm under michael", + "restaurant_reservation" + ], + [ + "reservations for two need to be made using michael's name for 7:00pm at olive garden", + "restaurant_reservation" + ], + [ + "i want to eat at seven in the restaurant for two people", + "restaurant_reservation" + ], + [ + "what are my coffers at", + "balance" + ], + [ + "tell me the current balance of my bank accounts", + "balance" + ], + [ + "what's my current bank account total", + "balance" + ], + [ + "how much do i have in my bank accounts", + "balance" + ], + [ + "what's the balance in my bank accounts", + "balance" + ], + [ + "what do i have in my bank accounts right now", + "balance" + ], + [ + "is there enough in my wells fargo account to buy some nike's", + "balance" + ], + [ + "do i have enough in my wells fargo account to get some nike's", + "balance" + ], + [ + "do i have money in my wells fargo account for nike's", + "balance" + ], + [ + "i want some nike's, is there enough in my wells fargo account", + "balance" + ], + [ + "check my wells fargo account to see if i have enough for these nike's", + "balance" + ], + [ + "would you tell me my bank balance", + "balance" + ], + [ + "can you tell me my bank balance", + "balance" + ], + [ + "will you let me know my bank balance", + "balance" + ], + [ + "will you tell me my bank balance", + "balance" + ], + [ + "how much money is there in my bank accounts", + "balance" + ], + [ + "how much money do i have in my various bank accounts", + "balance" + ], + [ + "how much cash do i have in my various bank accounts", + "balance" + ], + [ + "how much cash do i have in my bank accounts", + "balance" + ], + [ + "how much dough do i have in my bank accounts", + "balance" + ], + [ + "whats the combined total of the money inside my bank accounts", + "balance" + ], + [ + "whats my bank accounts look like", + "balance" + ], + [ + "how much moola is in my bank accounts", + "balance" + ], + [ + "what the numerical number inside my bank accounts", + "balance" + ], + [ + "how much does my bank account have", + "balance" + ], + [ + "tell me the current account balance", + "balance" + ], + [ + "check my checking balance", + "balance" + ], + [ + "how much do i have left in my checking account", + "balance" + ], + [ + "what's my checking look like", + "balance" + ], + [ + "how much do i have in my savings account", + "balance" + ], + [ + "confirm my reservation for march 12 at 9:00 am", + "confirm_reservation" + ], + [ + "please confirm that i have a reservation for march 1st at 7", + "confirm_reservation" + ], + [ + "can you confirm that i have a reservation for february 21 at 6 o'clock", + "confirm_reservation" + ], + [ + "verify my reservation for smith and wollensky at 6:45", + "confirm_reservation" + ], + [ + "please confirm my reservation for bar les freres at 7", + "confirm_reservation" + ], + [ + "tell me whether or not i have a reservation at gramercy tavern for tad", + "confirm_reservation" + ], + [ + "can you confirm that i have a reservation for 2/20 at 6:00 pm", + "confirm_reservation" + ], + [ + "please tell me if i still have a reservation at acero for susie", + "confirm_reservation" + ], + [ + "please confirm my reservation at brio for theodore", + "confirm_reservation" + ], + [ + "confirm my reservation for acero at 7", + "confirm_reservation" + ], + [ + "please confirm that i have a reservation for 2/20 at 6:00 pm", + "confirm_reservation" + ], + [ + "confirm that there is a reservation at bellagio for thomas", + "confirm_reservation" + ], + [ + "can you confirm the reservation at fleming's for jane", + "confirm_reservation" + ], + [ + "are there reservation for joe and will", + "confirm_reservation" + ], + [ + "please verify my reservation for john at bardenay", + "confirm_reservation" + ], + [ + "will you call and check on my reservation for john at bardenay", + "confirm_reservation" + ], + [ + "is my reservation set for john at bardenay", + "confirm_reservation" + ], + [ + "do we know if my reservation for john at bardenay was accepted", + "confirm_reservation" + ], + [ + "has my reservation for john at bardenay been confirmed", + "confirm_reservation" + ], + [ + "let's try and confirm my reservation for bubble bar under \"franklin", + "confirm_reservation" + ], + [ + "i need to confirm my reservation for red lobster for frank", + "confirm_reservation" + ], + [ + "find my reservation for steve at crucere's and confirm it, please", + "confirm_reservation" + ], + [ + "confirm the john reservation at applebee's", + "confirm_reservation" + ], + [ + "i'd like to confirm the josh reservation at moe's", + "confirm_reservation" + ], + [ + "i have a reservation for strip house for jennifer that i'd like to confirm", + "confirm_reservation" + ], + [ + "please try to confirm my reservation for jim at barney's", + "confirm_reservation" + ], + [ + "confirm my reservation for joe at hoss's", + "confirm_reservation" + ], + [ + "i need to confirm the reservation for frank at chili's", + "confirm_reservation" + ], + [ + "i'll be confirming my reservation for joseph at red lobster", + "confirm_reservation" + ], + [ + "is there a reservation for mark at mimis", + "confirm_reservation" + ], + [ + "can you freeze my bank account", + "freeze_account" + ], + [ + "i want to freeze my bank account", + "freeze_account" + ], + [ + "i want my account locked out", + "freeze_account" + ], + [ + "stop all access to my account", + "freeze_account" + ], + [ + "i need my account frozen!", + "freeze_account" + ], + [ + "i need to lock my account right now!", + "freeze_account" + ], + [ + "please force my account to freeze", + "freeze_account" + ], + [ + "please stop my account", + "freeze_account" + ], + [ + "please allow my account to freeze", + "freeze_account" + ], + [ + "please put my account on hold", + "freeze_account" + ], + [ + "freeze my account at the bank immediately", + "freeze_account" + ], + [ + "would you be able to freeze my bank account", + "freeze_account" + ], + [ + "my account at the bank needs to be frozen", + "freeze_account" + ], + [ + "please block my discover account immediately", + "freeze_account" + ], + [ + "please put a block on my citi account immediately", + "freeze_account" + ], + [ + "block my american saving bank for now", + "freeze_account" + ], + [ + "block my bank of america immdediately", + "freeze_account" + ], + [ + "put a block on bank of amerian immediately", + "freeze_account" + ], + [ + "my account needs to be frozen", + "freeze_account" + ], + [ + "freeze my account for me", + "freeze_account" + ], + [ + "put a freeze on my account", + "freeze_account" + ], + [ + "could you please put a stop on my bank account", + "freeze_account" + ], + [ + "i need to put a stop on my bank account", + "freeze_account" + ], + [ + "are you able to put a stop on my bank account", + "freeze_account" + ], + [ + "please put a stop on my bank account", + "freeze_account" + ], + [ + "i am hoping you can put a stop on my bank account", + "freeze_account" + ], + [ + "please put a freeze on my banking account", + "freeze_account" + ], + [ + "i need my bank account frozen", + "freeze_account" + ], + [ + "how do i freeze my bank account", + "freeze_account" + ], + [ + "would you freeze my bank account", + "freeze_account" + ], + [ + "i heard i can transfer my 401k, but don't know how, do you", + "rollover_401k" + ], + [ + "i need some help with transferring my 401k, can you help", + "rollover_401k" + ], + [ + "can you tell me how to transfer my 401k", + "rollover_401k" + ], + [ + "i want to transfer my 401k", + "rollover_401k" + ], + [ + "i wanna transfer my 401k", + "rollover_401k" + ], + [ + "i have to rollover my 401k", + "rollover_401k" + ], + [ + "i must rollover my 401k", + "rollover_401k" + ], + [ + "i want help to transfer my 401k", + "rollover_401k" + ], + [ + "help me to transfer my 401k", + "rollover_401k" + ], + [ + "i will rollover my 401k", + "rollover_401k" + ], + [ + "i need help to transfer my 401k", + "rollover_401k" + ], + [ + "i want to rollover my 401k", + "rollover_401k" + ], + [ + "how do i transfer my 401k to a new firm", + "rollover_401k" + ], + [ + "how do i roll over my 401k", + "rollover_401k" + ], + [ + "can i move my 401k to an ira", + "rollover_401k" + ], + [ + "how do i do a 401(k) rollover", + "rollover_401k" + ], + [ + "can 401ks be moved", + "rollover_401k" + ], + [ + "can i transfer my 401k somewhere", + "rollover_401k" + ], + [ + "how do i switch 401k companies", + "rollover_401k" + ], + [ + "tell me how to roll over my 401k", + "rollover_401k" + ], + [ + "how can i transfer my 401k", + "rollover_401k" + ], + [ + "what are the steps to rollover my 401k", + "rollover_401k" + ], + [ + "my 401k, can i roll it over", + "rollover_401k" + ], + [ + "i want to rollover my 401k , can i", + "rollover_401k" + ], + [ + "help me rollover my 401k", + "rollover_401k" + ], + [ + "do you know the process to rollover my 401k", + "rollover_401k" + ], + [ + "tell me how to rollover my 401k", + "rollover_401k" + ], + [ + "my 401k needs to rollover and i need your help", + "rollover_401k" + ], + [ + "let me know how to rollover my 401k", + "rollover_401k" + ], + [ + "what do i have to do to transfer my 401k", + "rollover_401k" + ], + [ + "what company made this ai", + "who_made_you" + ], + [ + "what is the name of the person who made you", + "who_made_you" + ], + [ + "who is the person that brought you to life", + "who_made_you" + ], + [ + "who is the one that made you", + "who_made_you" + ], + [ + "who is your maker", + "who_made_you" + ], + [ + "which company made you", + "who_made_you" + ], + [ + "who assembled you", + "who_made_you" + ], + [ + "i wanna know who programmed you", + "who_made_you" + ], + [ + "let me know who programmed you", + "who_made_you" + ], + [ + "who made you", + "who_made_you" + ], + [ + "i wanna know your maker", + "who_made_you" + ], + [ + "who was your maker", + "who_made_you" + ], + [ + "who is the one who programmed you", + "who_made_you" + ], + [ + "i must know who programmed you", + "who_made_you" + ], + [ + "tell me who your maker was", + "who_made_you" + ], + [ + "what was the company that designed you", + "who_made_you" + ], + [ + "do you know what company were you designed by", + "who_made_you" + ], + [ + "let me know which company were you designed by", + "who_made_you" + ], + [ + "what company were you designed by", + "who_made_you" + ], + [ + "can you let me know what company were you designed by", + "who_made_you" + ], + [ + "which company were you designed by", + "who_made_you" + ], + [ + "tell me who made you please", + "who_made_you" + ], + [ + "can you tell me who made you", + "who_made_you" + ], + [ + "whats the name of the person who made you", + "who_made_you" + ], + [ + "what company did the design for this", + "who_made_you" + ], + [ + "what company did this design", + "who_made_you" + ], + [ + "what company is responsible for this design", + "who_made_you" + ], + [ + "what company designed this", + "who_made_you" + ], + [ + "for this design, what company did it", + "who_made_you" + ], + [ + "name the person or group that programmed you", + "who_made_you" + ], + [ + "which way do we go and how long will it take to get to the sears tower in chicago", + "distance" + ], + [ + "so, does it take long to get to dodger stadium in anaheim", + "distance" + ], + [ + "how many minutes will it take to get to the empire state building in manhattan", + "distance" + ], + [ + "what's the mileage to get the the taj mahal in atlantic city", + "distance" + ], + [ + "does it take long to get to yankee stadium in the bronx", + "distance" + ], + [ + "how much time is left until we get there", + "distance" + ], + [ + "what's the time to destination going via bus to omaha", + "distance" + ], + [ + "how far from our destination are we", + "distance" + ], + [ + "how many minutes am i from texaco", + "distance" + ], + [ + "how long will i be on the bus if i rid it to seattle", + "distance" + ], + [ + "is it going to be much longer until i reach the bank", + "distance" + ], + [ + "am i close to arriving at the post office", + "distance" + ], + [ + "what's the estimated travel time to get to dc via bus", + "distance" + ], + [ + "when will i arrive at hy-vee", + "distance" + ], + [ + "how long does it take to get to el paso on a bus", + "distance" + ], + [ + "how long will it take me to get to walmart", + "distance" + ], + [ + "what's the average time to boston when riding a bus", + "distance" + ], + [ + "when will the bus get me to vermont", + "distance" + ], + [ + "how long will i be on the bus to new orleans", + "distance" + ], + [ + "how long is a bus ride to staples", + "distance" + ], + [ + "how long does it take to get downtown by bus", + "distance" + ], + [ + "what time will i get to the beach taking the bus", + "distance" + ], + [ + "how far am i from orlando", + "distance" + ], + [ + "give me an eta on when i will arrive at my destination", + "distance" + ], + [ + "tell me how much longer i will have to drive to reach the destination", + "distance" + ], + [ + "when will i get to orlando", + "distance" + ], + [ + "how much farther is orlando from my location", + "distance" + ], + [ + "do i have a ways to go or am i close to getting to penn station", + "distance" + ], + [ + "please give me the approximate amount of time i will need to go from jfk international airport to penn station", + "distance" + ], + [ + "can you tell me about what time i should be arriving at the airport", + "distance" + ], + [ + "how do you refer to me", + "user_name" + ], + [ + "call my name", + "user_name" + ], + [ + "what do i go by", + "user_name" + ], + [ + "say my name", + "user_name" + ], + [ + "what do you think my name is", + "user_name" + ], + [ + "what do you think i'm called", + "user_name" + ], + [ + "what do you have for my name", + "user_name" + ], + [ + "how do you address my name", + "user_name" + ], + [ + "what's your designation", + "user_name" + ], + [ + "what do you call me", + "user_name" + ], + [ + "i want to hear my name", + "user_name" + ], + [ + "my name", + "user_name" + ], + [ + "what's my name", + "user_name" + ], + [ + "what's my name on file", + "user_name" + ], + [ + "what name do you have for me", + "user_name" + ], + [ + "what did i tell you to call me", + "user_name" + ], + [ + "please tell me the name that you have for me", + "user_name" + ], + [ + "i need to know the name that you have for me", + "user_name" + ], + [ + "can you tell me what name you have for me", + "user_name" + ], + [ + "tell me what name you have for me", + "user_name" + ], + [ + "i would like to know the name you have for me", + "user_name" + ], + [ + "what is the name you have for me", + "user_name" + ], + [ + "could you tell me my name", + "user_name" + ], + [ + "do you have a name for me", + "user_name" + ], + [ + "can you tell me my name for me", + "user_name" + ], + [ + "what's the name you use for me", + "user_name" + ], + [ + "you call me what", + "user_name" + ], + [ + "what do you know me by", + "user_name" + ], + [ + "you know me by what right now", + "user_name" + ], + [ + "what's the way you refer to me", + "user_name" + ], + [ + "what's the timezone for britain", + "timezone" + ], + [ + "i need the time zone for la", + "timezone" + ], + [ + "i would like to know the timezone for britain", + "timezone" + ], + [ + "i need la's time zone", + "timezone" + ], + [ + "i need to know britain's timezone", + "timezone" + ], + [ + "what timezone is britain in", + "timezone" + ], + [ + "can you tell me britain's timezone", + "timezone" + ], + [ + "what is the la's time zone", + "timezone" + ], + [ + "can you tell me the time zone for la", + "timezone" + ], + [ + "what is texas's timezone", + "timezone" + ], + [ + "tell me the timezone for california", + "timezone" + ], + [ + "what timezone would missouri be in", + "timezone" + ], + [ + "what timezone do they use in arizona", + "timezone" + ], + [ + "is new york in mountain timezone", + "timezone" + ], + [ + "what is the timezone for la", + "timezone" + ], + [ + "what is the timezone for new york", + "timezone" + ], + [ + "what is the timezone for san francisco", + "timezone" + ], + [ + "what is the timezone for paris", + "timezone" + ], + [ + "what is the timezone for houston", + "timezone" + ], + [ + "denver's timezone is what", + "timezone" + ], + [ + "does denver reside in the eastern timezones", + "timezone" + ], + [ + "which timezone is denver located", + "timezone" + ], + [ + "denver's timezone is a mystery, i wonder where its located", + "timezone" + ], + [ + "in which time zone does denver reside", + "timezone" + ], + [ + "what's the timezone in valencia", + "timezone" + ], + [ + "what's the timezone now in hiram", + "timezone" + ], + [ + "timezone in salt lake city", + "timezone" + ], + [ + "timezone currently in mobile", + "timezone" + ], + [ + "what time is it in phoenix", + "timezone" + ], + [ + "can you give me the timezone for the country", + "timezone" + ], + [ + "i don't like this song, can skip it", + "next_song" + ], + [ + "can we move onto the next song", + "next_song" + ], + [ + "skip this song, please", + "next_song" + ], + [ + "can you swipe to the next song", + "next_song" + ], + [ + "next song, please!", + "next_song" + ], + [ + "start the next song", + "next_song" + ], + [ + "go to the next song and play it", + "next_song" + ], + [ + "move forward one song", + "next_song" + ], + [ + "play the next one", + "next_song" + ], + [ + "skip to next track", + "next_song" + ], + [ + "skip ahead one song", + "next_song" + ], + [ + "go to upcoming song", + "next_song" + ], + [ + "play the next song please", + "next_song" + ], + [ + "i dont want to listen to this song", + "next_song" + ], + [ + "could you hit next", + "next_song" + ], + [ + "can you go to the next song", + "next_song" + ], + [ + "let's go to the next song please", + "next_song" + ], + [ + "maybe we can go to the next song", + "next_song" + ], + [ + "may i suggest we go to the next song", + "next_song" + ], + [ + "please can we go to the next song", + "next_song" + ], + [ + "might we go to the next song", + "next_song" + ], + [ + "next track", + "next_song" + ], + [ + "skip to the next track", + "next_song" + ], + [ + "skip this track", + "next_song" + ], + [ + "play next song", + "next_song" + ], + [ + "next song", + "next_song" + ], + [ + "change this song please", + "next_song" + ], + [ + "i want you to play the next song", + "next_song" + ], + [ + "play the next song please if you would", + "next_song" + ], + [ + "please play the next track", + "next_song" + ], + [ + "i need to know all my spending transactions", + "transactions" + ], + [ + "when did i last make a purchase", + "transactions" + ], + [ + "how much did i spend on my most recent transaction", + "transactions" + ], + [ + "show me my ten most recent transactions on account xyz", + "transactions" + ], + [ + "i want to see all transactions in the past month for all accounts", + "transactions" + ], + [ + "show me my recent transactions from account xyz", + "transactions" + ], + [ + "open bank app and show my most recent transactions", + "transactions" + ], + [ + "are you able to find my recent transactions for me", + "transactions" + ], + [ + "i made a transaction recently", + "transactions" + ], + [ + "what was my recent transaction", + "transactions" + ], + [ + "i want to know what my recent transaction was", + "transactions" + ], + [ + "i need information about my recent transaction", + "transactions" + ], + [ + "state recent transaction", + "transactions" + ], + [ + "is my visa bill over my limit this month", + "transactions" + ], + [ + "what have i spent things on", + "transactions" + ], + [ + "show my transactions", + "transactions" + ], + [ + "what were my last 10 charges on my credit card", + "transactions" + ], + [ + "show what i have spent things on", + "transactions" + ], + [ + "how much have i spent on my debit card this month", + "transactions" + ], + [ + "how much have i spent on my bank card sine i last paid my bill", + "transactions" + ], + [ + "how much was my last target trip", + "transactions" + ], + [ + "can you verify my recent visa card transaction", + "transactions" + ], + [ + "what was my recent transaction on my visa card", + "transactions" + ], + [ + "what is the last transaction on my visa card", + "transactions" + ], + [ + "show my my most recent visa card transaction", + "transactions" + ], + [ + "please review my recent visa card transaction", + "transactions" + ], + [ + "how many transactions do i have on flower shops from last wednesday between 2pm and 7pm", + "transactions" + ], + [ + "what transactions did i make on electronics this morning after 6am", + "transactions" + ], + [ + "what is the largest transaction i have made on video games this month", + "transactions" + ], + [ + "what transactions do i have on groceries from yesterday", + "transactions" + ], + [ + "please give me the name of a few good options for places to eat dinner tonight", + "restaurant_suggestion" + ], + [ + "i need some suggestions for dinner places tonight", + "restaurant_suggestion" + ], + [ + "what are some good places to go out for dinner in my area tonight", + "restaurant_suggestion" + ], + [ + "show me some restaurants that have high reviews for eating out", + "restaurant_suggestion" + ], + [ + "can you search recommended casual restaurants for tonight in philadelphia", + "restaurant_suggestion" + ], + [ + "where can i go to eat", + "restaurant_suggestion" + ], + [ + "where can i get some good food", + "restaurant_suggestion" + ], + [ + "in cleveland, are there any good places that serve clams", + "restaurant_suggestion" + ], + [ + "does cleveland have any good places that serve clams", + "restaurant_suggestion" + ], + [ + "can you find any good places in cleveland that serve clams", + "restaurant_suggestion" + ], + [ + "are there good clam places in cleveland", + "restaurant_suggestion" + ], + [ + "are there any good places in cleveland that serve clams", + "restaurant_suggestion" + ], + [ + "could you suggest a french restaurant, please", + "restaurant_suggestion" + ], + [ + "can you suggest a french restaurant", + "restaurant_suggestion" + ], + [ + "can you suggest a thai restaurant", + "restaurant_suggestion" + ], + [ + "can you suggest a french restaurant, please", + "restaurant_suggestion" + ], + [ + "can you suggest a thai restaurant, please", + "restaurant_suggestion" + ], + [ + "are there are any good places in washington that serve cheese pizza", + "restaurant_suggestion" + ], + [ + "what's the food can easily get in canada", + "restaurant_suggestion" + ], + [ + "what are the best places to get shrimp in chicago", + "restaurant_suggestion" + ], + [ + "what are the best restaurants open tonight", + "restaurant_suggestion" + ], + [ + "i need a list of good places to eat near me", + "restaurant_suggestion" + ], + [ + "pull up some recommendations for places serving fish in maine", + "restaurant_suggestion" + ], + [ + "where should i go for food tonight", + "restaurant_suggestion" + ], + [ + "where should i eat", + "restaurant_suggestion" + ], + [ + "any fantastic restaurants to get shrimp at in atlanta", + "restaurant_suggestion" + ], + [ + "give me a list of places that serve the best wings in charlotte", + "restaurant_suggestion" + ], + [ + "i need reviews for places serving tacos in chicago", + "restaurant_suggestion" + ], + [ + "give me restaurant reccomendations", + "restaurant_suggestion" + ], + [ + "where can i satisfy my craving for french food in milwaukee", + "restaurant_suggestion" + ], + [ + "x card has earned how many points", + "rewards_balance" + ], + [ + "can you give me a points update on my rewards plus card", + "rewards_balance" + ], + [ + "can you pull up how many points i've earned with travel card", + "rewards_balance" + ], + [ + "what is the updated points that i earned with synovus card", + "rewards_balance" + ], + [ + "how many points do i have on my six flags rewards card", + "rewards_balance" + ], + [ + "i would like to check my rewards for my credit card", + "rewards_balance" + ], + [ + "i need to check my rewards for my credit card", + "rewards_balance" + ], + [ + "i wanna know how many points have i earned with my credit card", + "rewards_balance" + ], + [ + "i would like to know my debit card's rewards balance", + "rewards_balance" + ], + [ + "i would like to know how many points have i earned with my credit card", + "rewards_balance" + ], + [ + "i need to know my credit card's rewards balance", + "rewards_balance" + ], + [ + "i wanna know my credit card's rewards balance", + "rewards_balance" + ], + [ + "i really need to check my rewards for my credit card", + "rewards_balance" + ], + [ + "i would like to check my rewards for my debit card", + "rewards_balance" + ], + [ + "i wish to know my debit card's rewards balance", + "rewards_balance" + ], + [ + "i wanna check my rewards for my credit card", + "rewards_balance" + ], + [ + "tell me my debit card's rewards balance", + "rewards_balance" + ], + [ + "i need to understand how many points have i earned with my credit card", + "rewards_balance" + ], + [ + "i must know how many points have i earned with my credit card", + "rewards_balance" + ], + [ + "i gotta know how many points i have gotten with my debit card", + "rewards_balance" + ], + [ + "how many points earned do i have with my american express card", + "rewards_balance" + ], + [ + "how many points have i earned with my paypal credit card so far", + "rewards_balance" + ], + [ + "i have points on my capital one card and i'd like to know how many i've earned", + "rewards_balance" + ], + [ + "have i earned points with my venture card, and how many", + "rewards_balance" + ], + [ + "what do my visa points look like", + "rewards_balance" + ], + [ + "how many points do i have on my visa", + "rewards_balance" + ], + [ + "tell me the number of points on my visa card", + "rewards_balance" + ], + [ + "give me the point total on my visa card", + "rewards_balance" + ], + [ + "what points have i earned on my visa", + "rewards_balance" + ], + [ + "how many rewards points do i have on my rewards points i have on my mastercard", + "rewards_balance" + ], + [ + "i have a car payment that needs to be paid", + "pay_bill" + ], + [ + "i need to put in a payment towards my phone bill", + "pay_bill" + ], + [ + "help me get my gas bill paid", + "pay_bill" + ], + [ + "pay my con edison bill using my capital one account", + "pay_bill" + ], + [ + "use my navy federal account and pay this month's verizon bill, please", + "pay_bill" + ], + [ + "please pay my sprint bill using my bank of america checking account", + "pay_bill" + ], + [ + "i need some assistance paying my utilities bill", + "pay_bill" + ], + [ + "i need a hand getting this gas bill paid", + "pay_bill" + ], + [ + "can you help me pay my electricity bill", + "pay_bill" + ], + [ + "i have to pay my water bill but need help doing it", + "pay_bill" + ], + [ + "i am going to need help paying my rent bill", + "pay_bill" + ], + [ + "i want to pay my bill", + "pay_bill" + ], + [ + "can you help me pay my bill", + "pay_bill" + ], + [ + "i want to pay my bill through the app", + "pay_bill" + ], + [ + "pay my electric bill for me", + "pay_bill" + ], + [ + "pull up my electric bill, i want to pay it", + "pay_bill" + ], + [ + "how do i pay my electric bill", + "pay_bill" + ], + [ + "i want to pay my electric bill, can you do it for me", + "pay_bill" + ], + [ + "pay my light bill", + "pay_bill" + ], + [ + "pay my utility bill from my bank account", + "pay_bill" + ], + [ + "charge my internet bill to the corporate account", + "pay_bill" + ], + [ + "pay my gas bill with my checking account", + "pay_bill" + ], + [ + "i need to pay my electric bill", + "pay_bill" + ], + [ + "i know i should pay my electric bill", + "pay_bill" + ], + [ + "today my electric bill will be paid, or should be", + "pay_bill" + ], + [ + "today is the day i should pay my electric bill", + "pay_bill" + ], + [ + "my electric bill should be paid today", + "pay_bill" + ], + [ + "i need to pay my visa", + "pay_bill" + ], + [ + "pay $175 on my visa", + "pay_bill" + ], + [ + "i'd like to pay $4735 to my water bill", + "pay_bill" + ], + [ + "what's the total i've spent on shoes this month", + "spending_history" + ], + [ + "how many dollars have i spent on coffee this month", + "spending_history" + ], + [ + "what have i spent on food this month", + "spending_history" + ], + [ + "how much have i spent on tires this month", + "spending_history" + ], + [ + "how much have i been spending on booze this month", + "spending_history" + ], + [ + "what have i spent on fast food recently", + "spending_history" + ], + [ + "how much total have i spent on fast food lately", + "spending_history" + ], + [ + "how much fast food have i bought recently", + "spending_history" + ], + [ + "check how much i spent this week", + "spending_history" + ], + [ + "how much money have i spent on fast food lately", + "spending_history" + ], + [ + "how much money have a spent in the last week", + "spending_history" + ], + [ + "how much money did i spend this weekend", + "spending_history" + ], + [ + "tell me how much money i've spent on fast food in the past week", + "spending_history" + ], + [ + "what is the total amount i spent last week", + "spending_history" + ], + [ + "what've i spent on gas this month", + "spending_history" + ], + [ + "have i gone over my entertainment budget", + "spending_history" + ], + [ + "would you say i've spent too much money on chips as of late", + "spending_history" + ], + [ + "looking at this week only, have i overspent on hoagies", + "spending_history" + ], + [ + "do i overspend when it comes to fast food", + "spending_history" + ], + [ + "looking at the past month, what did i spend total", + "spending_history" + ], + [ + "have i gone over my chocolate budget lately", + "spending_history" + ], + [ + "how much have i spent this week", + "spending_history" + ], + [ + "about how much did i spend recently", + "spending_history" + ], + [ + "tell me how much i have been buying as of late", + "spending_history" + ], + [ + "what did i spend on beer last month", + "spending_history" + ], + [ + "did i stick to my dinner budget", + "spending_history" + ], + [ + "how much have i spent on video games recently", + "spending_history" + ], + [ + "do i spend too much on beer", + "spending_history" + ], + [ + "what are my finances like lately", + "spending_history" + ], + [ + "how much money have i spent recently", + "spending_history" + ], + [ + "did my vacation get approval", + "pto_request_status" + ], + [ + "do you know if vacation got approved", + "pto_request_status" + ], + [ + "does my vacation have approval", + "pto_request_status" + ], + [ + "can you let me know if my vacation was approved", + "pto_request_status" + ], + [ + "any news on my vacation", + "pto_request_status" + ], + [ + "tell me if my vacation was approved yet", + "pto_request_status" + ], + [ + "was there any progress on my vacation request", + "pto_request_status" + ], + [ + "is my vacation approved", + "pto_request_status" + ], + [ + "is my request going to be approved for vacation", + "pto_request_status" + ], + [ + "is vacation a go", + "pto_request_status" + ], + [ + "will i get my time off approved", + "pto_request_status" + ], + [ + "how is my vacation looking", + "pto_request_status" + ], + [ + "did the manager approve my vacation yet", + "pto_request_status" + ], + [ + "any new info on my vacation", + "pto_request_status" + ], + [ + "any update on my vacation", + "pto_request_status" + ], + [ + "is there a status update on my vacation approval", + "pto_request_status" + ], + [ + "can you notify me when my vacation days have approved", + "pto_request_status" + ], + [ + "when will my vacation time be confirmed", + "pto_request_status" + ], + [ + "when will i hear back about my days off", + "pto_request_status" + ], + [ + "am i okay to take those vacation days", + "pto_request_status" + ], + [ + "has my vacation time been approved", + "pto_request_status" + ], + [ + "what is the day off request status as of now", + "pto_request_status" + ], + [ + "what is the day off request status please", + "pto_request_status" + ], + [ + "what is the day off request status if you would tell me", + "pto_request_status" + ], + [ + "what is the day off request status", + "pto_request_status" + ], + [ + "what is the day off request status if you could tell me", + "pto_request_status" + ], + [ + "i need to know status of my day off request", + "pto_request_status" + ], + [ + "i want to know the status of my vacation request", + "pto_request_status" + ], + [ + "tell me status of my day off request", + "pto_request_status" + ], + [ + "please let me know the status of my vacation request", + "pto_request_status" + ], + [ + "i would like to know my credit score", + "credit_score" + ], + [ + "tell me what my credit score is", + "credit_score" + ], + [ + "can you find what my credit score is", + "credit_score" + ], + [ + "how is my credit score numberwise", + "credit_score" + ], + [ + "what credit score number do i have", + "credit_score" + ], + [ + "what is my credit score number", + "credit_score" + ], + [ + "how much is my credit score", + "credit_score" + ], + [ + "what number is my credit score currently", + "credit_score" + ], + [ + "is my credit score over 700 yet", + "credit_score" + ], + [ + "please give me my current credit score", + "credit_score" + ], + [ + "i'm trying to raise my credit score can you tell me what it is now", + "credit_score" + ], + [ + "i need to know what my credit score is", + "credit_score" + ], + [ + "could you tell me what my credit score is", + "credit_score" + ], + [ + "give me my credit score please", + "credit_score" + ], + [ + "could you share my credit score", + "credit_score" + ], + [ + "how's my credit score", + "credit_score" + ], + [ + "i was wondering what my credit score is", + "credit_score" + ], + [ + "where do i go for my credit score", + "credit_score" + ], + [ + "i need to find my credit score", + "credit_score" + ], + [ + "how can i locate my credit score", + "credit_score" + ], + [ + "what is my credit rating", + "credit_score" + ], + [ + "i want to know my credit rating", + "credit_score" + ], + [ + "my credit rating is what", + "credit_score" + ], + [ + "tell me my credit raing", + "credit_score" + ], + [ + "give me my credit rating", + "credit_score" + ], + [ + "please tell me what my credit score is", + "credit_score" + ], + [ + "i'd like you to check on my credit score", + "credit_score" + ], + [ + "let me know what my credit score is today", + "credit_score" + ], + [ + "can you check my credit score", + "credit_score" + ], + [ + "can you check my credit score for me", + "credit_score" + ], + [ + "i would like to get a new credt card", + "new_card" + ], + [ + "i would love to get a new credit card", + "new_card" + ], + [ + "do you have any information on how to open a new credit card", + "new_card" + ], + [ + "tell me how to apply for a new credit card", + "new_card" + ], + [ + "tell me how to apply for a credit card", + "new_card" + ], + [ + "i want to know how to go about getting a new credit card", + "new_card" + ], + [ + "please tell me how to get a new credit card", + "new_card" + ], + [ + "am i eligible for a new credit card", + "new_card" + ], + [ + "i need to get a new credit card application", + "new_card" + ], + [ + "what's the best way to get a mastercard", + "new_card" + ], + [ + "is this where i apply for a new credit card", + "new_card" + ], + [ + "how do i apply do get myself a visa", + "new_card" + ], + [ + "can you complete an application for a new credit card for me", + "new_card" + ], + [ + "i need to get a mastercard somehow", + "new_card" + ], + [ + "how can i get a visa card", + "new_card" + ], + [ + "can i apply here for a new card", + "new_card" + ], + [ + "does bank of america give credit cards to people like me", + "new_card" + ], + [ + "what do i do to get a visa card", + "new_card" + ], + [ + "is it possible for me to get a better credit card", + "new_card" + ], + [ + "how do i submit an application for a discover card", + "new_card" + ], + [ + "how do i apply for american express", + "new_card" + ], + [ + "find out if there's a new credit card that suits me", + "new_card" + ], + [ + "how do i apply for a new credit card", + "new_card" + ], + [ + "what's it take to get a mastercard", + "new_card" + ], + [ + "can i apply for a visa card", + "new_card" + ], + [ + "how do i apply for a visa card", + "new_card" + ], + [ + "i wish to apply for a visa card", + "new_card" + ], + [ + "help me apply for a visa card", + "new_card" + ], + [ + "is there a list of good credit cards i can choose from to apply for", + "new_card" + ], + [ + "how can i find a new credit card to apply to", + "new_card" + ], + [ + "is my luggage lost", + "lost_luggage" + ], + [ + "why is my luggage not here", + "lost_luggage" + ], + [ + "what happened to my luggage", + "lost_luggage" + ], + [ + "i need help finding my luggage", + "lost_luggage" + ], + [ + "what steps should i take if my luggage has been lost", + "lost_luggage" + ], + [ + "i seem to have lost my luggage! what are my options now", + "lost_luggage" + ], + [ + "what would be the best way to deal with lost luggage", + "lost_luggage" + ], + [ + "it appears that my luggage has been lost", + "lost_luggage" + ], + [ + "i'm afraid my luggage has gone missing", + "lost_luggage" + ], + [ + "i am a bit panicked because my luggage seems to have gone missing", + "lost_luggage" + ], + [ + "i have no idea where my luggage went!", + "lost_luggage" + ], + [ + "unfortunately it would appear that my luggage is totally lost", + "lost_luggage" + ], + [ + "how should i proceed if i accidentally lost my luggage", + "lost_luggage" + ], + [ + "if i lost my luggage, what should i do next", + "lost_luggage" + ], + [ + "i have no idea where my luggage is", + "lost_luggage" + ], + [ + "i think my luggage has been misplaced", + "lost_luggage" + ], + [ + "what do i have to do if i lost my luggage", + "lost_luggage" + ], + [ + "i think my luggage is lost", + "lost_luggage" + ], + [ + "my luggage appears to be lost", + "lost_luggage" + ], + [ + "i can't seem to track down my luggage", + "lost_luggage" + ], + [ + "what is the next thing i should do if i lost my luggage", + "lost_luggage" + ], + [ + "what step should i take next if i lost my luggage", + "lost_luggage" + ], + [ + "i've lost my luggage what should i do now", + "lost_luggage" + ], + [ + "what should i do about losing my luggage", + "lost_luggage" + ], + [ + "where would i find my luggage", + "lost_luggage" + ], + [ + "my luggage has been misplaced", + "lost_luggage" + ], + [ + "i can't find my luggage", + "lost_luggage" + ], + [ + "i lost all my stuff that i had packed", + "lost_luggage" + ], + [ + "my luggage has disappeared", + "lost_luggage" + ], + [ + "it appears my luggage is lost", + "lost_luggage" + ], + [ + "may you say that again", + "repeat" + ], + [ + "can you please repeat that", + "repeat" + ], + [ + "can you please say that again", + "repeat" + ], + [ + "may you please say that again", + "repeat" + ], + [ + "would you say it again please", + "repeat" + ], + [ + "would you repeat what you said earlier", + "repeat" + ], + [ + "i would like you to repeat it", + "repeat" + ], + [ + "repeat please", + "repeat" + ], + [ + "pardon, i didn't hear you", + "repeat" + ], + [ + "i didn't hear you can you say that again", + "repeat" + ], + [ + "i didn't catch that", + "repeat" + ], + [ + "could you repeat that", + "repeat" + ], + [ + "say again please", + "repeat" + ], + [ + "would you mind repeating that", + "repeat" + ], + [ + "sorry, i didn't catch that could you say it again", + "repeat" + ], + [ + "i need you to repeat that please", + "repeat" + ], + [ + "repeat that for me please", + "repeat" + ], + [ + "what did you just say", + "repeat" + ], + [ + "please say it one more time", + "repeat" + ], + [ + "sorry i missed that", + "repeat" + ], + [ + "i didn't understand you", + "repeat" + ], + [ + "can you repeat the question again", + "repeat" + ], + [ + "can you phrase that question again", + "repeat" + ], + [ + "what'd you say", + "repeat" + ], + [ + "please repeat the last thing", + "repeat" + ], + [ + "repeat that", + "repeat" + ], + [ + "can you repeat that", + "repeat" + ], + [ + "what were you just saying", + "repeat" + ], + [ + "come again", + "repeat" + ], + [ + "can you say that again, please", + "repeat" + ], + [ + "tell me: car gas mileage", + "mpg" + ], + [ + "what is my car's gas mileage", + "mpg" + ], + [ + "tell me what the gas mileage is on my car", + "mpg" + ], + [ + "what is the gas mileage of my car", + "mpg" + ], + [ + "check: car gas mileage", + "mpg" + ], + [ + "what is my car's mpg", + "mpg" + ], + [ + "what is my car's mpg, please", + "mpg" + ], + [ + "what's my car's mpg", + "mpg" + ], + [ + "what's my car's mpg, please", + "mpg" + ], + [ + "what is the highway mpg of this car", + "mpg" + ], + [ + "hows the city mpg of this car", + "mpg" + ], + [ + "what is the highway mpg on this car like", + "mpg" + ], + [ + "what mpg does this car get in the city", + "mpg" + ], + [ + "how many mpg does this car get in the city", + "mpg" + ], + [ + "tell me about this car's highway mpg", + "mpg" + ], + [ + "can i have more information about this car's highway mpg", + "mpg" + ], + [ + "what is the city mpg on this car", + "mpg" + ], + [ + "whats the mpg for this car", + "mpg" + ], + [ + "whats the mpg of this car", + "mpg" + ], + [ + "i need to know my cars mpg", + "mpg" + ], + [ + "can i get this car's mpg", + "mpg" + ], + [ + "i would like to know the mpg of my car", + "mpg" + ], + [ + "what kind of mileage am i getting", + "mpg" + ], + [ + "what the mpg", + "mpg" + ], + [ + "can you tell me my vehicles mpg", + "mpg" + ], + [ + "whats the fuel economy of this car", + "mpg" + ], + [ + "what kind of mileage does this car get", + "mpg" + ], + [ + "mpg for this car please", + "mpg" + ], + [ + "what is the miles per gallon", + "mpg" + ], + [ + "how is the car's fuel economy", + "mpg" + ], + [ + "am i due for an oil change yet", + "oil_change_when" + ], + [ + "when is the next time i should change my oil", + "oil_change_when" + ], + [ + "when is my car due for its next oil change", + "oil_change_when" + ], + [ + "when am i due for my next oil change", + "oil_change_when" + ], + [ + "when should i get my next oil change", + "oil_change_when" + ], + [ + "when's the next time i should change my oil", + "oil_change_when" + ], + [ + "when should i get my car's oil changed next", + "oil_change_when" + ], + [ + "when is the next time i need to get an oil change", + "oil_change_when" + ], + [ + "when is my car's next oil change supposed to be", + "oil_change_when" + ], + [ + "how long until my next oil change", + "oil_change_when" + ], + [ + "when's the next time i ought to change my oil", + "oil_change_when" + ], + [ + "when's the next time i have to get an oil change", + "oil_change_when" + ], + [ + "when should i get my oil changed", + "oil_change_when" + ], + [ + "when should i get the oil changed in my car", + "oil_change_when" + ], + [ + "figure out when my car will next need an oil change", + "oil_change_when" + ], + [ + "can you recommend for me when to next get my oil changed", + "oil_change_when" + ], + [ + "when do you think i ought to change the oil in my car next", + "oil_change_when" + ], + [ + "how soon until i will need to get my oil changed", + "oil_change_when" + ], + [ + "find out for me when my car is next due for an oil change", + "oil_change_when" + ], + [ + "where can i find information on oil changes for my car", + "oil_change_when" + ], + [ + "what are the manufacturers guidance on oil changes", + "oil_change_when" + ], + [ + "is my car due for it's next oil change", + "oil_change_when" + ], + [ + "what is the recommended interval to get my oil changed", + "oil_change_when" + ], + [ + "when will i need my next oil change", + "oil_change_when" + ], + [ + "how often should i change the oil", + "oil_change_when" + ], + [ + "do i need to change my oil soon", + "oil_change_when" + ], + [ + "when will my oil change be due for this car", + "oil_change_when" + ], + [ + "is my oil change coming up soon", + "oil_change_when" + ], + [ + "what's my oil change status", + "oil_change_when" + ], + [ + "when does this car need oil changes", + "oil_change_when" + ], + [ + "i will say yes as my response", + "yes" + ], + [ + "my answer to your question is yes", + "yes" + ], + [ + "yes is my answer", + "yes" + ], + [ + "yes, ai, that is correct", + "yes" + ], + [ + "that's true", + "yes" + ], + [ + "that's correct", + "yes" + ], + [ + "that checks out", + "yes" + ], + [ + "that's right", + "yes" + ], + [ + "affirmative", + "yes" + ], + [ + "yes, that is factual", + "yes" + ], + [ + "yes, that happens to be correct", + "yes" + ], + [ + "that would be correct", + "yes" + ], + [ + "thats right", + "yes" + ], + [ + "yes, this is true", + "yes" + ], + [ + "sure", + "yes" + ], + [ + "okay", + "yes" + ], + [ + "definitely", + "yes" + ], + [ + "roger that", + "yes" + ], + [ + "i agree", + "yes" + ], + [ + "absolutely", + "yes" + ], + [ + "you're right", + "yes" + ], + [ + "yes, that's right", + "yes" + ], + [ + "please let's do it", + "yes" + ], + [ + "yes please", + "yes" + ], + [ + "can we please", + "yes" + ], + [ + "yes, please", + "yes" + ], + [ + "10-4", + "yes" + ], + [ + "ya", + "yes" + ], + [ + "yup", + "yes" + ], + [ + "great", + "yes" + ], + [ + "what are some interesting things i can do while in raleigh", + "travel_suggestion" + ], + [ + "can you help me pick some fun things to do in london during my trip", + "travel_suggestion" + ], + [ + "help me plan my traveling itinerary for my trip to madrid, i want to see lots of sights!", + "travel_suggestion" + ], + [ + "help me pick a new location to travel to", + "travel_suggestion" + ], + [ + "can you do some research about the best places to travel", + "travel_suggestion" + ], + [ + "tell me some fun activities to do in oklahoma city", + "travel_suggestion" + ], + [ + "what are some popular tourist activities in mexico city", + "travel_suggestion" + ], + [ + "i am itching to travel but don't know where to go", + "travel_suggestion" + ], + [ + "give me some recommendations of good tourist attractions in montreal", + "travel_suggestion" + ], + [ + "tell me some fun tourist attractions in london", + "travel_suggestion" + ], + [ + "give me some ideas of what to do during my trip to dallas", + "travel_suggestion" + ], + [ + "find out the best tourist attractions to visit in moscow", + "travel_suggestion" + ], + [ + "i want some suggestions for tourist activities in dublin", + "travel_suggestion" + ], + [ + "i am traveling to paris soon and would like some suggestions of what to do and see", + "travel_suggestion" + ], + [ + "what are some local attractions in portland", + "travel_suggestion" + ], + [ + "what sorts of activities should i get up to while i am in dublin", + "travel_suggestion" + ], + [ + "i want to explore a new place but don't know where i should go do you have any ideas", + "travel_suggestion" + ], + [ + "please give me some ideas of fun tourist activities to do while i am in paris", + "travel_suggestion" + ], + [ + "can you throw out some suggestions to me of places to travel to", + "travel_suggestion" + ], + [ + "suggest some things for me to do while i am in los angeles", + "travel_suggestion" + ], + [ + "let me know some things to do in phoenix", + "travel_suggestion" + ], + [ + "let me know some things i can do in dallas", + "travel_suggestion" + ], + [ + "i wanna know some things to do in phoenix", + "travel_suggestion" + ], + [ + "i would like to do some things in phoenix", + "travel_suggestion" + ], + [ + "tell me some things to do in phoenix", + "travel_suggestion" + ], + [ + "what are some fun silly things to do in new jersey", + "travel_suggestion" + ], + [ + "what are some cool tourist attractions in england", + "travel_suggestion" + ], + [ + "what are some fun local experiences in canada", + "travel_suggestion" + ], + [ + "what are some fun tourist things to do in mumbai", + "travel_suggestion" + ], + [ + "what are some fun cheap activities to do in colorado", + "travel_suggestion" + ], + [ + "which insurance plan to i have", + "insurance" + ], + [ + "do you know which insurance plan i have", + "insurance" + ], + [ + "what kind of insurance plan am i in", + "insurance" + ], + [ + "what health coverage do i have", + "insurance" + ], + [ + "what are the details on my health care plan", + "insurance" + ], + [ + "which insurance plan am i enrolled in", + "insurance" + ], + [ + "what is my health insurance", + "insurance" + ], + [ + "what insurance plan am i enrolled in", + "insurance" + ], + [ + "check on my health care plan", + "insurance" + ], + [ + "what's my health insurance plan", + "insurance" + ], + [ + "what sort of health benefits do i have", + "insurance" + ], + [ + "which health plan do i have, again", + "insurance" + ], + [ + "tell me about my health benefits", + "insurance" + ], + [ + "what's the name of my health insurance plan", + "insurance" + ], + [ + "explain my health benefits", + "insurance" + ], + [ + "what are my health insurance benefits", + "insurance" + ], + [ + "what specific health plan do i have", + "insurance" + ], + [ + "tell me the full name of my health plan", + "insurance" + ], + [ + "how do my health benefits work", + "insurance" + ], + [ + "can you tell me what health plan i am on", + "insurance" + ], + [ + "tell me my current health plan", + "insurance" + ], + [ + "which health plan am i currently enrolled in", + "insurance" + ], + [ + "i want to know what health plan i'm currently on", + "insurance" + ], + [ + "could you please inform me what health plan i am currently on", + "insurance" + ], + [ + "what are the benefits associated with my insurance", + "insurance" + ], + [ + "what are the benefits of having this insurance", + "insurance" + ], + [ + "what are my benefits with this insurance", + "insurance" + ], + [ + "what are my benefits on the insurance", + "insurance" + ], + [ + "google find out what health plan i am under", + "insurance" + ], + [ + "tell me what health plan coverage i have", + "insurance" + ], + [ + "cross grocery shopping off the todo list", + "todo_list_update" + ], + [ + "i don't need grocery shopping on my todo list anymore", + "todo_list_update" + ], + [ + "take grocery shopping off my todo list", + "todo_list_update" + ], + [ + "remove grocery shopping from todo list", + "todo_list_update" + ], + [ + "cross off grocery shopping from todo list", + "todo_list_update" + ], + [ + "i don't need mowing the lawn on my to do list anymore", + "todo_list_update" + ], + [ + "empty the contents of my to do list", + "todo_list_update" + ], + [ + "take everything off my to do list please", + "todo_list_update" + ], + [ + "take everything off my to do list", + "todo_list_update" + ], + [ + "please remove science fair from my to do list", + "todo_list_update" + ], + [ + "please put babysitting on my to do list", + "todo_list_update" + ], + [ + "please put lawn mowing on my list of to dos", + "todo_list_update" + ], + [ + "put the dishes on my list of things to do", + "todo_list_update" + ], + [ + "remove all items from my to do list", + "todo_list_update" + ], + [ + "take tennis practice off my to do list", + "todo_list_update" + ], + [ + "get rid of my to do list", + "todo_list_update" + ], + [ + "take dishes off the to do list", + "todo_list_update" + ], + [ + "add grocery shopping to my to do list", + "todo_list_update" + ], + [ + "remove laundry from my to do list", + "todo_list_update" + ], + [ + "please add laundry to the chores", + "todo_list_update" + ], + [ + "add mopping to the to do list", + "todo_list_update" + ], + [ + "please put dusting on my list of things to do", + "todo_list_update" + ], + [ + "please note vacuuming on my to do list", + "todo_list_update" + ], + [ + "insert mowing on the chore list", + "todo_list_update" + ], + [ + "you can dusting off my todo list", + "todo_list_update" + ], + [ + "you take sweeping of my todo list", + "todo_list_update" + ], + [ + "you can vacuuming of my todo list", + "todo_list_update" + ], + [ + "you can take laundry off my todo list", + "todo_list_update" + ], + [ + "you can take dishes off my todo list", + "todo_list_update" + ], + [ + "i need you to clear my todo list", + "todo_list_update" + ], + [ + "give me my reminders", + "reminder" + ], + [ + "what were the things that i wanted to remember", + "reminder" + ], + [ + "what were you supposed to remind me of", + "reminder" + ], + [ + "my list of reminders contains what", + "reminder" + ], + [ + "what did i want to remember", + "reminder" + ], + [ + "what did i ask you to remind me of", + "reminder" + ], + [ + "read my reminder list", + "reminder" + ], + [ + "is my meeting with frank on my list of reminders", + "reminder" + ], + [ + "list my reminders", + "reminder" + ], + [ + "what stuff am i trying to remember", + "reminder" + ], + [ + "what are my reminders", + "reminder" + ], + [ + "did i tell you to remind me about laundry", + "reminder" + ], + [ + "on my reminders list, is there an item called conference call", + "reminder" + ], + [ + "what items did i want to remember", + "reminder" + ], + [ + "what's on my list of things to remember", + "reminder" + ], + [ + "what kinds of things are you supposed to remind me of", + "reminder" + ], + [ + "is grocery shopping on my reminders list", + "reminder" + ], + [ + "i want to know my reminders", + "reminder" + ], + [ + "read my list of reminders", + "reminder" + ], + [ + "can you tell me the to do's on my reminder list", + "reminder" + ], + [ + "please go though the bullet points on my reminder list", + "reminder" + ], + [ + "what are all the things on my reminder list", + "reminder" + ], + [ + "i would like to hear the reminders that i listed on my things to remember list, please", + "reminder" + ], + [ + "what were the things i want to recall", + "reminder" + ], + [ + "can you please remind me of the items that i made note of to not forget", + "reminder" + ], + [ + "refresh my memory about what items i want to remember", + "reminder" + ], + [ + "remind me of the items on my list of things to remember", + "reminder" + ], + [ + "i'd like to just confirm all of the reminders currently on my list of reminders, please", + "reminder" + ], + [ + "please play my list of reminders", + "reminder" + ], + [ + "\"which things are wanted to remember", + "reminder" + ], + [ + "can i speed up your voice", + "change_speed" + ], + [ + "can i change your talking voice", + "change_speed" + ], + [ + "talk fast", + "change_speed" + ], + [ + "change voice speed", + "change_speed" + ], + [ + "change device talking speed", + "change_speed" + ], + [ + "speak it again slowly", + "change_speed" + ], + [ + "try to speak slowly", + "change_speed" + ], + [ + "will you please slow down your voice", + "change_speed" + ], + [ + "slow down your voice", + "change_speed" + ], + [ + "can you speak faster", + "change_speed" + ], + [ + "how do i change the speed of your voice", + "change_speed" + ], + [ + "can you talk faster", + "change_speed" + ], + [ + "how do i make you talk faster", + "change_speed" + ], + [ + "why are you talking so slowly", + "change_speed" + ], + [ + "speed up your talking", + "change_speed" + ], + [ + "talk faster", + "change_speed" + ], + [ + "you talk to slow", + "change_speed" + ], + [ + "can you adjust the speed of your voice", + "change_speed" + ], + [ + "can you talk more slowly", + "change_speed" + ], + [ + "go faster", + "change_speed" + ], + [ + "can you not talk so fast", + "change_speed" + ], + [ + "speak more quickly", + "change_speed" + ], + [ + "you're talking too fast", + "change_speed" + ], + [ + "you talk too slow", + "change_speed" + ], + [ + "please speak a bit faster", + "change_speed" + ], + [ + "double the speaking speed please", + "change_speed" + ], + [ + "speed up speech please", + "change_speed" + ], + [ + "change speaking speed to 50 percent faster", + "change_speed" + ], + [ + "your speech slower it", + "change_speed" + ], + [ + "make slower your speech", + "change_speed" + ], + [ + "give me the pressure for the tires on my car", + "tire_pressure" + ], + [ + "can you tell me the tire pressure for the car", + "tire_pressure" + ], + [ + "give me the tire pressure for the car", + "tire_pressure" + ], + [ + "go ahead and give me the tire pressure of my vehicle", + "tire_pressure" + ], + [ + "what exactly is the tire pressure for the car", + "tire_pressure" + ], + [ + "i must kniw how low are my tires on air", + "tire_pressure" + ], + [ + "please tell me my car's tire pressure", + "tire_pressure" + ], + [ + "i need to know how low are my tires on air", + "tire_pressure" + ], + [ + "i shall know how low are my tires on air", + "tire_pressure" + ], + [ + "tell me my car's tire pressure", + "tire_pressure" + ], + [ + "i gotta know my car;s tire pressure", + "tire_pressure" + ], + [ + "i would like to know my car's tire pressure", + "tire_pressure" + ], + [ + "i gotta know how low are my tires on air", + "tire_pressure" + ], + [ + "i wanna know my car's tire pressure", + "tire_pressure" + ], + [ + "i wanna know how low are my tires on air", + "tire_pressure" + ], + [ + "how can i find out what my tire pressure is", + "tire_pressure" + ], + [ + "how do i find out my tire pressure", + "tire_pressure" + ], + [ + "my tires are how low on air", + "tire_pressure" + ], + [ + "how low are my tires right now on air", + "tire_pressure" + ], + [ + "my tires are filled enough or no", + "tire_pressure" + ], + [ + "what's the tire pressure of my tires", + "tire_pressure" + ], + [ + "is there enough air in my tires", + "tire_pressure" + ], + [ + "my tires need how much more air in them", + "tire_pressure" + ], + [ + "are my tires filled properly", + "tire_pressure" + ], + [ + "are my tires filled enough", + "tire_pressure" + ], + [ + "what is the pressure of my tires", + "tire_pressure" + ], + [ + "do my tires have enough pressure", + "tire_pressure" + ], + [ + "what is the air pressure of my tires", + "tire_pressure" + ], + [ + "what is the level of air pressure of my tires", + "tire_pressure" + ], + [ + "is my tire pressure high", + "tire_pressure" + ], + [ + "that isn't right", + "no" + ], + [ + "that's incorrect", + "no" + ], + [ + "nope that's not it", + "no" + ], + [ + "no that isn't right", + "no" + ], + [ + "that's not correct", + "no" + ], + [ + "that isn't correct", + "no" + ], + [ + "that is incorrect", + "no" + ], + [ + "that's wrong", + "no" + ], + [ + "no, that is wrong", + "no" + ], + [ + "no, that is incorrect", + "no" + ], + [ + "no, definitely not", + "no" + ], + [ + "i'd say no", + "no" + ], + [ + "the statement is false", + "no" + ], + [ + "that's false", + "no" + ], + [ + "false", + "no" + ], + [ + "it is no", + "no" + ], + [ + "it is false", + "no" + ], + [ + "it is very much false", + "no" + ], + [ + "that has to be false", + "no" + ], + [ + "that is so false", + "no" + ], + [ + "that can't be true", + "no" + ], + [ + "that's a negatory", + "no" + ], + [ + "there is no way in heck that is true", + "no" + ], + [ + "nope not it", + "no" + ], + [ + "that is most definitely false", + "no" + ], + [ + "no, you are wrong", + "no" + ], + [ + "no, that is a falsehood", + "no" + ], + [ + "you got that wrong", + "no" + ], + [ + "that is the wrong answer", + "no" + ], + [ + "not right now", + "no" + ], + [ + "you need to tell me my credit card's apr", + "apr" + ], + [ + "now tell me my credit card's apr", + "apr" + ], + [ + "i need to know the apr on my wells fargo credit card", + "apr" + ], + [ + "tell me my chase credit card's apr", + "apr" + ], + [ + "tell me what my wells fargo credit card apr is", + "apr" + ], + [ + "what is my b of a credit card's apr", + "apr" + ], + [ + "can you tell me the apr of my target credit card", + "apr" + ], + [ + "what is my apr rate", + "apr" + ], + [ + "is my apr rate above average", + "apr" + ], + [ + "does my apr rate suck", + "apr" + ], + [ + "what is my card's apr rate", + "apr" + ], + [ + "is my apr rate better than most", + "apr" + ], + [ + "what's my credit card's annual percentage rate", + "apr" + ], + [ + "what's the annual percentage rate for my credit card", + "apr" + ], + [ + "how high is the apr on my credit card", + "apr" + ], + [ + "what's the apr on my credit card", + "apr" + ], + [ + "how much am i paying for apr on my credit card", + "apr" + ], + [ + "is my card's apr a decent rate", + "apr" + ], + [ + "can you tell me my apr on my credit card", + "apr" + ], + [ + "would you consider my apr to be good", + "apr" + ], + [ + "what's the current apr on my credit card", + "apr" + ], + [ + "what kind of credit card apr do i get", + "apr" + ], + [ + "what's my apr rate", + "apr" + ], + [ + "tell me my apr rate", + "apr" + ], + [ + "could you share my credit card's apr", + "apr" + ], + [ + "is my apr rate good", + "apr" + ], + [ + "i need to know what the current apr is for my chase sapphire, please", + "apr" + ], + [ + "can you find me the apr listed on the statement for my citi mastercard", + "apr" + ], + [ + "what's the apr on my capital one venture card", + "apr" + ], + [ + "inform me on what my credit card's apr is", + "apr" + ], + [ + "tell me nutritional info for brocoli", + "nutrition_info" + ], + [ + "tell me nutritional info for lettuce", + "nutrition_info" + ], + [ + "tell me nutritional info for fish", + "nutrition_info" + ], + [ + "tell me nutritional info for burger", + "nutrition_info" + ], + [ + "tell me nutritional info for beans", + "nutrition_info" + ], + [ + "how healthy is blueberrys", + "nutrition_info" + ], + [ + "how healthy is tacos", + "nutrition_info" + ], + [ + "how healthy is mcdonalds", + "nutrition_info" + ], + [ + "how healthy is a cheeseburger", + "nutrition_info" + ], + [ + "how healthy is rice", + "nutrition_info" + ], + [ + "find the nutrition info for whole milk for me", + "nutrition_info" + ], + [ + "what are the nutrition facts for greek yogurt", + "nutrition_info" + ], + [ + "find the nutrition info for ketchup for me", + "nutrition_info" + ], + [ + "what are the nutrition facts for cucumbers", + "nutrition_info" + ], + [ + "what are the nutrition facts for apple sauce", + "nutrition_info" + ], + [ + "what are the nutrition facts for peanut butter", + "nutrition_info" + ], + [ + "find the nutrition info for bell peppers for me", + "nutrition_info" + ], + [ + "find the nutrition info for cheese fries for me", + "nutrition_info" + ], + [ + "find the nutrition info for cucumbers for me", + "nutrition_info" + ], + [ + "what are the nutrition facts for carrots", + "nutrition_info" + ], + [ + "please give me the nutritional information for an egg", + "nutrition_info" + ], + [ + "what's the nutrition info for a pound of chicken", + "nutrition_info" + ], + [ + "tell me the nutrition info for a cup of milk", + "nutrition_info" + ], + [ + "what's the nutrition info for a cucumber", + "nutrition_info" + ], + [ + "give me the nutritional details for a cup of yogurt", + "nutrition_info" + ], + [ + "i need the nutrition facts for ramen", + "nutrition_info" + ], + [ + "tell me the nutrition facts for shepherd's pie", + "nutrition_info" + ], + [ + "i would like nutrition facts for spaghetti carbonara", + "nutrition_info" + ], + [ + "tell me spaghetti bolognese's nutrition facts", + "nutrition_info" + ], + [ + "i want the nutrition facts for buttered spaghetti", + "nutrition_info" + ], + [ + "do i have my nephew's birthday marked for november 10th", + "calendar" + ], + [ + "do i have any appoints set for my calendar april 3rd", + "calendar" + ], + [ + "did i set march 10th as my doctor's appointment", + "calendar" + ], + [ + "do i have any appointments on my calendar march 22nd", + "calendar" + ], + [ + "did i set a day on my calendar for voting in the next election", + "calendar" + ], + [ + "did i mark the mechanic's appointment on my calendar", + "calendar" + ], + [ + "do i have any calendars set for may 12th", + "calendar" + ], + [ + "what day did i set on my calendar for the first day of school", + "calendar" + ], + [ + "is anything on my calendar for june 22nd", + "calendar" + ], + [ + "what do i have going on on my calendar for march 18th", + "calendar" + ], + [ + "is my meeting with frank on my calendar", + "calendar" + ], + [ + "what do i have planned for 3/5", + "calendar" + ], + [ + "have i gotten around to adding the bike ride to my calendar yet", + "calendar" + ], + [ + "what events do i have going on on march 11th", + "calendar" + ], + [ + "i can't remember if i added the fun run to my calendar yet; did i", + "calendar" + ], + [ + "have i added my doctor's appointment to my calendar", + "calendar" + ], + [ + "do i have calendar events on march 19th", + "calendar" + ], + [ + "read my calendar for march 7th", + "calendar" + ], + [ + "do i have any items on my calendar for march 21st", + "calendar" + ], + [ + "do i have any calendar entries for march 8th", + "calendar" + ], + [ + "tell me what's on my calendar for march 22nd", + "calendar" + ], + [ + "is the marathon on friday added to my calendar", + "calendar" + ], + [ + "what's on my calendar for march 20th", + "calendar" + ], + [ + "what's on my calendar on march 10th", + "calendar" + ], + [ + "check my calendar for me, please", + "calendar" + ], + [ + "is event on my calendar", + "calendar" + ], + [ + "retrieve events on my calendar", + "calendar" + ], + [ + "is bowling on my calendar", + "calendar" + ], + [ + "on tuesday you are supposed to have a meeting", + "calendar" + ], + [ + "you have yo go to school on calendar", + "calendar" + ], + [ + "i'd like an uber for 6 people, going to walmart", + "uber" + ], + [ + "can you get me an uber to disney world", + "uber" + ], + [ + "get me an uber for 3 people uptown", + "uber" + ], + [ + "i need to go downtown with 2 people; can you get me an uber", + "uber" + ], + [ + "i'm going to need to book an uber to universal studios", + "uber" + ], + [ + "i need to get four people to red lobster; can you order me an uber", + "uber" + ], + [ + "i'm going to need an uber for 4 people to go to patty's bar", + "uber" + ], + [ + "i need to get to the staples center; can you call me an uber", + "uber" + ], + [ + "find me an uber to the liberty bell", + "uber" + ], + [ + "i need an uber to madison square garden", + "uber" + ], + [ + "i need an uber to get to the bank", + "uber" + ], + [ + "can i get an uber to drive me to the movies", + "uber" + ], + [ + "contact uber and have them pick me up", + "uber" + ], + [ + "can i take an uber to the statue of liberty", + "uber" + ], + [ + "i need an uber for 5 to go to the concerthall", + "uber" + ], + [ + "get a uber for two to go to a romantic dinner at mcdonalds", + "uber" + ], + [ + "please call an uber for 6 people to go to amazon's southside warehouse", + "uber" + ], + [ + "find me an uber and get it here", + "uber" + ], + [ + "is there an uber that drives to the bank on 5th that can hold 3 people", + "uber" + ], + [ + "we'd like an uber for 4 to take us to the olive garden", + "uber" + ], + [ + "i want an uber for one person to go to bank of america", + "uber" + ], + [ + "can i get an uber for 2 to go to austin", + "uber" + ], + [ + "call me an uber please", + "uber" + ], + [ + "is it possible to take an uber to burger king", + "uber" + ], + [ + "book me an uber for a party of 5 to the salvage yard off maple", + "uber" + ], + [ + "i need an uber for 5 people to go to the statue of liberty", + "uber" + ], + [ + "i want an uber to take me to walmart", + "uber" + ], + [ + "have an uber sent to take me to the courthouse", + "uber" + ], + [ + "call an uber to take a group of 4 from this bar to the one on maple st", + "uber" + ], + [ + "i'm too drunk to drive and need an uber home", + "uber" + ], + [ + "what is 300 divided by 42", + "calculator" + ], + [ + "what is 400 times 2", + "calculator" + ], + [ + "what is the average of 54, 23, 43, 12, and 442", + "calculator" + ], + [ + "add 45 to 87 plus 54 plus 43 plus 22", + "calculator" + ], + [ + "what is 48 multiplied by 4 divided by 2", + "calculator" + ], + [ + "what is 25% of $54,788", + "calculator" + ], + [ + "what is the square root of 95", + "calculator" + ], + [ + "what is 1100 minus 2347", + "calculator" + ], + [ + "tell me what 1875 plus 3459 equals", + "calculator" + ], + [ + "tell me the answer to 1000 divided by 40", + "calculator" + ], + [ + "what is 1000 plus 745", + "calculator" + ], + [ + "i need to know the answer to 10000 multiplied by 44", + "calculator" + ], + [ + "what is 100 multiplied by 55", + "calculator" + ], + [ + "what's 15% of 68", + "calculator" + ], + [ + "what's 47 times 83", + "calculator" + ], + [ + "if something is 15% off $35, how much is it", + "calculator" + ], + [ + "how many times can 3 be divided into 1253", + "calculator" + ], + [ + "divide 100 by 12", + "calculator" + ], + [ + "find square root of 453", + "calculator" + ], + [ + "what is 1243 times 45", + "calculator" + ], + [ + "find the square root of 1243435", + "calculator" + ], + [ + "what is the square root of 36", + "calculator" + ], + [ + "what is 592 minus 124", + "calculator" + ], + [ + "i need to know what 25 times 38 is", + "calculator" + ], + [ + "can you calculate the square root of 172", + "calculator" + ], + [ + "i bought 6 shirts at $499 each what was my total expenditure for them", + "calculator" + ], + [ + "i spent 34 dollars for 12 gallons of paint what is the average price for each gallon", + "calculator" + ], + [ + "what is the sum of eleven and ten", + "calculator" + ], + [ + "what is the solution to sixty times thirty", + "calculator" + ], + [ + "how do i ask the ai to help me with math problem", + "calculator" + ], + [ + "date please", + "date" + ], + [ + "what is the current day", + "date" + ], + [ + "which day is it now", + "date" + ], + [ + "what's the name of the day today", + "date" + ], + [ + "what is the day now", + "date" + ], + [ + "what day are we in", + "date" + ], + [ + "tell me what tomorrow's date is", + "date" + ], + [ + "please tell me what the date is tomorrow", + "date" + ], + [ + "let me know what tomorrow's date is", + "date" + ], + [ + "let me know the date tomorrow", + "date" + ], + [ + "i need to know tomorrow's date", + "date" + ], + [ + "please tell me what today is", + "date" + ], + [ + "tell me the date, please", + "date" + ], + [ + "tell me the date 5 days from now", + "date" + ], + [ + "tell me what the date will be in 5 days", + "date" + ], + [ + "what is the date in 5 days", + "date" + ], + [ + "in 5 days from today, what will the date be", + "date" + ], + [ + "what would the date be 5 days from today", + "date" + ], + [ + "what day it today", + "date" + ], + [ + "what will tomorrow be on the calendar", + "date" + ], + [ + "what date will it be tomorrow", + "date" + ], + [ + "what date is it tomorrow", + "date" + ], + [ + "what is the date of tomorrow", + "date" + ], + [ + "what's tomorrow's date", + "date" + ], + [ + "what's the date today", + "date" + ], + [ + "give me today's date", + "date" + ], + [ + "tell me today's date", + "date" + ], + [ + "what's the date", + "date" + ], + [ + "today is which day of the week", + "date" + ], + [ + "today is what day of the week", + "date" + ], + [ + "what restrictions do they have for carry-on", + "carry_on" + ], + [ + "ist all carry-on restrictions applicable to my flight", + "carry_on" + ], + [ + "what are the size limits regarding-carry on bags", + "carry_on" + ], + [ + "how many bags can i carry-on", + "carry_on" + ], + [ + "can i bring perfume on the plane or what is the size limit", + "carry_on" + ], + [ + "what are the rules for traveling with toothpaste", + "carry_on" + ], + [ + "can i bring suntan lotion in my carry on", + "carry_on" + ], + [ + "can i fly with my razors or are there restrictions", + "carry_on" + ], + [ + "are there restrictions for carrying lighters in my backpack on a plane", + "carry_on" + ], + [ + "how many carry ons can i take on a flight with american airlines to japan", + "carry_on" + ], + [ + "how many carry ons can i take on a flight with panam to wales", + "carry_on" + ], + [ + "what is the carry-on policy for flights on panam", + "carry_on" + ], + [ + "what is the carry-on policy for flights on lufthansa", + "carry_on" + ], + [ + "what is the carry-on policy for flights on delta airlines", + "carry_on" + ], + [ + "how many carry ons can i take on a flight with southwestern to tampa", + "carry_on" + ], + [ + "how many carry ons can i take on a flight with delta to seattle", + "carry_on" + ], + [ + "how many carry ons can i take on a flight with united airlines to austin", + "carry_on" + ], + [ + "what is the carry-on policy for flights on the airline called jetblue", + "carry_on" + ], + [ + "i need to know the carry-on rules for southwest", + "carry_on" + ], + [ + "tell me the carry-on rules for my flight", + "carry_on" + ], + [ + "i am flying to finland and wanna know the carry-on rules", + "carry_on" + ], + [ + "what is the carry-on policy for flights on southwest", + "carry_on" + ], + [ + "i need to know the the carry-on restrictions for american airlines", + "carry_on" + ], + [ + "what is the carry-on policy for flights on transaero", + "carry_on" + ], + [ + "what is the carry-on policy for flights on jetblue", + "carry_on" + ], + [ + "i gotta know the the carry-on restrictions for american airlines", + "carry_on" + ], + [ + "what is the carry-on policy for flights on american airlines", + "carry_on" + ], + [ + "i must know the the carry-on restrictions for american airlines", + "carry_on" + ], + [ + "i wanna know the carry-on rules for the flight i have", + "carry_on" + ], + [ + "tell me the the carry-on restrictions for american airlines", + "carry_on" + ], + [ + "how many days did i take off", + "pto_used" + ], + [ + "tell me how many days i took off", + "pto_used" + ], + [ + "so how many days did i take off sir", + "pto_used" + ], + [ + "so how many days did i take off", + "pto_used" + ], + [ + "i need to know how many days i toof off", + "pto_used" + ], + [ + "what is the total number of days that i have taken off work since january", + "pto_used" + ], + [ + "how many days off have i taken so far this year", + "pto_used" + ], + [ + "i want to know how many days off are listed on my time off sheet that i have taken this year", + "pto_used" + ], + [ + "tell me how many days off you see that i have taken so far this year please", + "pto_used" + ], + [ + "can you look and see how many days off i have taken so far since january", + "pto_used" + ], + [ + "check how many days off i've taken", + "pto_used" + ], + [ + "how many hours of pto have i used", + "pto_used" + ], + [ + "how much pto is gone", + "pto_used" + ], + [ + "see how many days i've taken off so far", + "pto_used" + ], + [ + "how much of my pto is left", + "pto_used" + ], + [ + "how much of my pto is gone", + "pto_used" + ], + [ + "please let me know how many days i've taken off", + "pto_used" + ], + [ + "what is the amount of my taken off days so far", + "pto_used" + ], + [ + "i need to know how many days off i have used so far", + "pto_used" + ], + [ + "how many days off have i taken until right now", + "pto_used" + ], + [ + "notify me how many days off i have used so far", + "pto_used" + ], + [ + "tell me how many days off i have taken so far", + "pto_used" + ], + [ + "i want to know how many days off i have utilized until now", + "pto_used" + ], + [ + "how much so far pto have i used", + "pto_used" + ], + [ + "i have used how much pto so far", + "pto_used" + ], + [ + "pto i have used so far is how much", + "pto_used" + ], + [ + "pto so far i have used is how much", + "pto_used" + ], + [ + "so far how much pto have i used", + "pto_used" + ], + [ + "how many vacation days i have used", + "pto_used" + ], + [ + "i want to know how many vacation days i have used", + "pto_used" + ], + [ + "can you see if i can make an appointment to have my oil changed", + "schedule_maintenance" + ], + [ + "find out the next available date and time i can go to get my oil changed please", + "schedule_maintenance" + ], + [ + "can you let me know the next open slot for me to get my oil changed", + "schedule_maintenance" + ], + [ + "i need to make an appointment for an oil change, please", + "schedule_maintenance" + ], + [ + "what is the next date for which i can get an oil change appointment", + "schedule_maintenance" + ], + [ + "i need a aaa service place to make an appointment for my tires to be assessed", + "schedule_maintenance" + ], + [ + "my auto tires need to be checked out so where can i get an appointment", + "schedule_maintenance" + ], + [ + "where can i go to have my tires checked out", + "schedule_maintenance" + ], + [ + "i need an appointment for someone to check out my check engine light being on", + "schedule_maintenance" + ], + [ + "my check engine light is on so is anyone available to check it out for me", + "schedule_maintenance" + ], + [ + "can someone take a look at my car because the check engine light is on", + "schedule_maintenance" + ], + [ + "do you have time today for someone to look at my car because the check engine light is on", + "schedule_maintenance" + ], + [ + "find a place near me to have my tires inspected", + "schedule_maintenance" + ], + [ + "where can i get a appointment for a tire check for the car", + "schedule_maintenance" + ], + [ + "i need to bring my car in because the check engine light is staying lit", + "schedule_maintenance" + ], + [ + "can i get someone to check my check engine light", + "schedule_maintenance" + ], + [ + "can someone tell me why my check engine light is on", + "schedule_maintenance" + ], + [ + "my check engine light is on, i need someone to look at it", + "schedule_maintenance" + ], + [ + "can someone look at my check engine light", + "schedule_maintenance" + ], + [ + "my check engine light is on and i need someone to look at it", + "schedule_maintenance" + ], + [ + "will someone please look at my check engine light that is on", + "schedule_maintenance" + ], + [ + "can someone look at my check engine light that's on", + "schedule_maintenance" + ], + [ + "could someone look at my check engine light that's on", + "schedule_maintenance" + ], + [ + "can i get someone to look at my check engine light that is on", + "schedule_maintenance" + ], + [ + "should i schedule a car maintenance", + "schedule_maintenance" + ], + [ + "should i go to a car maintenance", + "schedule_maintenance" + ], + [ + "should i call a car maintenance", + "schedule_maintenance" + ], + [ + "may i schedule a car maintenance", + "schedule_maintenance" + ], + [ + "should i take my car to a maintenance", + "schedule_maintenance" + ], + [ + "can i make a car maintenance appointment", + "schedule_maintenance" + ], + [ + "i will be traveling to lima alert my bank", + "travel_notification" + ], + [ + "assure my bank i really am going to california", + "travel_notification" + ], + [ + "please tell my bank i'm traveling to mexico between next wednesday for a week after", + "travel_notification" + ], + [ + "please inform my bank i'll be vacationing in the bahamas in a couple of days", + "travel_notification" + ], + [ + "i'm going to be in mexico from thursday to friday, so can you let my bank know", + "travel_notification" + ], + [ + "please kindly inform my bank i'm going to be in canada from next week to two weeks after", + "travel_notification" + ], + [ + "let my bank know i'll be in ireland from may 01, 2019 to august 02, 2019", + "travel_notification" + ], + [ + "alert my bank i'm checking out seattle for the next month", + "travel_notification" + ], + [ + "i'm going to brazil soon and want to let my bank now", + "travel_notification" + ], + [ + "i'm leaving for montreal tomorrow and need to let my bank know", + "travel_notification" + ], + [ + "inform my bank i'm traveling to australia between february 23rd to february 25th", + "travel_notification" + ], + [ + "please tell my bank i'll be in anchorage this week", + "travel_notification" + ], + [ + "i need to tell my bank i am, indeed, going to be in london in a few hours", + "travel_notification" + ], + [ + "please alert my bank i'm going to be in the caymans from may 1st to june 2nd", + "travel_notification" + ], + [ + "let my bank know i actually am visiting brazil", + "travel_notification" + ], + [ + "i'll be travelling to russia from april 1 through april 20 and need my financial institute apprised of it", + "travel_notification" + ], + [ + "please alert my bank i'm traveling to europe between april 1st and 5th", + "travel_notification" + ], + [ + "tell my bank's fraud department i'm going to mexico", + "travel_notification" + ], + [ + "please notify my bank i'm going to africa between tomorrow and next tuesday", + "travel_notification" + ], + [ + "tell my bank i'm in canada the entire week of the 6th to the 13th", + "travel_notification" + ], + [ + "inform my bank i'm seeing italy", + "travel_notification" + ], + [ + "can you notify my bank that i will be traveling to mexico between march 1st and 15th", + "travel_notification" + ], + [ + "please let my bank know that i will be visiting spain from june 12th to the 24th", + "travel_notification" + ], + [ + "i need you to make my bank aware that i will be visiting taiwan from the 22nd of february until the 3rd of march", + "travel_notification" + ], + [ + "send a notification to my bank of my travel dates from february 19th to 26th to peru", + "travel_notification" + ], + [ + "alert my bank of my travel to dubai for the dates april 14th through april 22nd", + "travel_notification" + ], + [ + "from sunday to wednesday, i will be in oakland, so should i call my bank to let them know", + "travel_notification" + ], + [ + "my bank needs to know about my traveling to georgia in europe", + "travel_notification" + ], + [ + "must call my bank about my travel plans", + "travel_notification" + ], + [ + "contact bank and let them know about my travel plans", + "travel_notification" + ], + [ + "i want my phone to be disconnected from you", + "sync_device" + ], + [ + "i would like for my phone to be synced with you", + "sync_device" + ], + [ + "can you connect to my phone", + "sync_device" + ], + [ + "i would like for you to unsync my phone", + "sync_device" + ], + [ + "i no longer want you to be synced to my phone", + "sync_device" + ], + [ + "i do not want my phone synced anymore", + "sync_device" + ], + [ + "i want you paired to my phone", + "sync_device" + ], + [ + "please sync up with my phone", + "sync_device" + ], + [ + "can you pair yourself with my phone please", + "sync_device" + ], + [ + "can you please disconnect from my phone", + "sync_device" + ], + [ + "remove the connection to my phone", + "sync_device" + ], + [ + "can you sync up with my phone", + "sync_device" + ], + [ + "i want you to connect to my handset", + "sync_device" + ], + [ + "pair yourself to my phone if you can", + "sync_device" + ], + [ + "connect to my device", + "sync_device" + ], + [ + "can you link up with my phone", + "sync_device" + ], + [ + "can you disconnect yourself from my phone", + "sync_device" + ], + [ + "don't be synced to my phone anymore", + "sync_device" + ], + [ + "can you get paired to my phone right away", + "sync_device" + ], + [ + "i don't want you connected to my phone anymore", + "sync_device" + ], + [ + "please get connected to my phone", + "sync_device" + ], + [ + "i don't want you synced to my phone anymore", + "sync_device" + ], + [ + "sync with my phone please", + "sync_device" + ], + [ + "please unsync from my phone right now", + "sync_device" + ], + [ + "unsync yourself from my device", + "sync_device" + ], + [ + "please connect yourself to my main phone", + "sync_device" + ], + [ + "unsync from my phone please", + "sync_device" + ], + [ + "don't be connected to my phone anymore", + "sync_device" + ], + [ + "disconnect from my device please", + "sync_device" + ], + [ + "alexa, connect to the phone now", + "sync_device" + ], + [ + "thank you ever so much for that!", + "thank_you" + ], + [ + "you\u2019re the best thanks so much!", + "thank_you" + ], + [ + "thanks for helping", + "thank_you" + ], + [ + "i am grateful for the help", + "thank_you" + ], + [ + "thank you for the heip", + "thank_you" + ], + [ + "i apprecaite the help from you", + "thank_you" + ], + [ + "thanks that was really helpful", + "thank_you" + ], + [ + "thank you for your time and trying to help", + "thank_you" + ], + [ + "thank you for your assistance", + "thank_you" + ], + [ + "thanks for all your help", + "thank_you" + ], + [ + "thanks for trying", + "thank_you" + ], + [ + "many thank", + "thank_you" + ], + [ + "thanks a million", + "thank_you" + ], + [ + "thank a bunch", + "thank_you" + ], + [ + "i appeciate it", + "thank_you" + ], + [ + "i would like to thank you ai", + "thank_you" + ], + [ + "ai you have given me so much information, thank you", + "thank_you" + ], + [ + "thanks so much ai", + "thank_you" + ], + [ + "thank you ai for everything you do", + "thank_you" + ], + [ + "ai is a helpful item to have in my home, thank you", + "thank_you" + ], + [ + "thank you very much", + "thank_you" + ], + [ + "that answer was very helpful, thanks", + "thank_you" + ], + [ + "great, thanks!", + "thank_you" + ], + [ + "thanks for your help!", + "thank_you" + ], + [ + "thanks so much", + "thank_you" + ], + [ + "thanks for that answer", + "thank_you" + ], + [ + "thank you for that reply", + "thank_you" + ], + [ + "thanks for the reply", + "thank_you" + ], + [ + "thanks for that response", + "thank_you" + ], + [ + "thank you for that response", + "thank_you" + ], + [ + "how much do you get when you roll an eight sided die", + "roll_dice" + ], + [ + "i need a dice roll for a six sided die", + "roll_dice" + ], + [ + "roll a dice that has seven sides", + "roll_dice" + ], + [ + "roll the five sided die", + "roll_dice" + ], + [ + "what is the result when you roll a four sided die", + "roll_dice" + ], + [ + "roll a fourteen sided dice exactly", + "roll_dice" + ], + [ + "please roll twelve sided dice", + "roll_dice" + ], + [ + "can i have a 2 sided dice", + "roll_dice" + ], + [ + "roll a 9 sided dice", + "roll_dice" + ], + [ + "roll five sided dice", + "roll_dice" + ], + [ + "roll those dice once", + "roll_dice" + ], + [ + "throw a roll of the dice", + "roll_dice" + ], + [ + "make a roll of the dice", + "roll_dice" + ], + [ + "ai pick up the dice, then drop it", + "roll_dice" + ], + [ + "ai toss the dice", + "roll_dice" + ], + [ + "ai roll the dice", + "roll_dice" + ], + [ + "ai throw the dice on the table", + "roll_dice" + ], + [ + "ai shake the dice in a cup, then throw dice on table", + "roll_dice" + ], + [ + "can you roll a four sided die and tell me the result", + "roll_dice" + ], + [ + "roll a six sided die for me and tell me the result", + "roll_dice" + ], + [ + "roll a die please", + "roll_dice" + ], + [ + "can you roll an eight sided die and tell me what it comes up as", + "roll_dice" + ], + [ + "can you simulate a dice roll", + "roll_dice" + ], + [ + "can you roll a ten sided die and tell me the number", + "roll_dice" + ], + [ + "roll a four sided die for me", + "roll_dice" + ], + [ + "simulate rolling a dice and tell me what it lands on", + "roll_dice" + ], + [ + "can you roll a die for me", + "roll_dice" + ], + [ + "can you fake roll a die for me", + "roll_dice" + ], + [ + "what's the result of a 10-sided dice roll", + "roll_dice" + ], + [ + "can you roll a 10-sided dice for me", + "roll_dice" + ], + [ + "how soon milk expires", + "food_last" + ], + [ + "when does milk will go bad", + "food_last" + ], + [ + "how many days milk can be preserved", + "food_last" + ], + [ + "what is expire of milk", + "food_last" + ], + [ + "when is the milk date before used", + "food_last" + ], + [ + "when does the jerky expire", + "food_last" + ], + [ + "what is the expiration date for honey", + "food_last" + ], + [ + "when is the egg expired", + "food_last" + ], + [ + "when does the honey expire", + "food_last" + ], + [ + "what is the expiration date for those eg", + "food_last" + ], + [ + "how long can i freeze tofu before it goes bad", + "food_last" + ], + [ + "how much time do i have to keep tofu in the freezer before it goes bad", + "food_last" + ], + [ + "when will tofu expire if i keep it in the freezer", + "food_last" + ], + [ + "how long will tofu last in the freezer before it expires", + "food_last" + ], + [ + "does tofu last long in the freezer before it goes bad", + "food_last" + ], + [ + "how many days later is it okay to eat curry that was in the fridge", + "food_last" + ], + [ + "within what time is is fine to eat cooked tilapia kept in the fridge", + "food_last" + ], + [ + "what is the most amount of time that is considered safe to store uncooked chicken in the fridge", + "food_last" + ], + [ + "what length of time is safe for consuming leftover meatloaf stored in the fridge", + "food_last" + ], + [ + "what is the longest i can leave meatballs in sauce in the freezer before it is no longer safe to eat", + "food_last" + ], + [ + "can i store bread in the freezer indefinitely and it will still be okay", + "food_last" + ], + [ + "after how much time is it still safe to drink milk that is in the fridge", + "food_last" + ], + [ + "what is the most time i can keep a burrito frozen for before it's no good to eat", + "food_last" + ], + [ + "roughly how long can i leave bananas in the freezer before i have to throw them out", + "food_last" + ], + [ + "how long does chicken curry last in the freezer before it's spoiled", + "food_last" + ], + [ + "milk can stay in my fridge for how long", + "food_last" + ], + [ + "milk will go bad in my fridge when", + "food_last" + ], + [ + "what is the amount of time to keep milk refrigerated", + "food_last" + ], + [ + "tell me how long milk stays good in the fridge", + "food_last" + ], + [ + "how long can i keep milk in the fridge", + "food_last" + ], + [ + "how long to grill thick steaks", + "cook_time" + ], + [ + "how long does pizza take", + "cook_time" + ], + [ + "lasagna takes how long to cook", + "cook_time" + ], + [ + "bake time for brownies", + "cook_time" + ], + [ + "how many minutes are involved in the preparation of curry", + "cook_time" + ], + [ + "what's the preparation time for this dish", + "cook_time" + ], + [ + "what is the proper cooking time for this", + "cook_time" + ], + [ + "how long do i cook this for", + "cook_time" + ], + [ + "look up recipe time for this", + "cook_time" + ], + [ + "how many minutes should i put meal the cake in the oven", + "cook_time" + ], + [ + "what's the average cooking time for cooking wings", + "cook_time" + ], + [ + "how many minutes should i set an alarm for this bake", + "cook_time" + ], + [ + "when can i expect meal of salmon to be finished", + "cook_time" + ], + [ + "how long does it take to cook meal of tuscan", + "cook_time" + ], + [ + "tell me how long it will take to prepare a lasagna", + "cook_time" + ], + [ + "i want to cook a lasagna please tell me how long it will take", + "cook_time" + ], + [ + "how long will it take to cook a lasagna", + "cook_time" + ], + [ + "can you tell me how long it will take to cook a lasagna", + "cook_time" + ], + [ + "how long does it take to prepare a lasagna", + "cook_time" + ], + [ + "how long do i need to cook chicken", + "cook_time" + ], + [ + "how long should i boil eggs", + "cook_time" + ], + [ + "how long should i bake a cake", + "cook_time" + ], + [ + "how long does it take to cook steaks", + "cook_time" + ], + [ + "how long does it take to bake a cake", + "cook_time" + ], + [ + "how long should i cook the cookie dough", + "cook_time" + ], + [ + "how long should i cook my turkey", + "cook_time" + ], + [ + "how long do i boil eggs", + "cook_time" + ], + [ + "how long does it take to make mashed potatoes", + "cook_time" + ], + [ + "how long will it take to make an omelet", + "cook_time" + ], + [ + "what are the minutes needed to cook the meal", + "cook_time" + ], + [ + "i want to be reminded to pay the electric bill", + "reminder_update" + ], + [ + "don't forget to tell me to call my mother", + "reminder_update" + ], + [ + "remind me to put gas in my car", + "reminder_update" + ], + [ + "set a reminder to buy bread", + "reminder_update" + ], + [ + "make a reminder to pay the mortgage", + "reminder_update" + ], + [ + "create a reminder to wash the dishes", + "reminder_update" + ], + [ + "create a reminder to change my oil", + "reminder_update" + ], + [ + "set a reminder for when the turkey is finished cooking", + "reminder_update" + ], + [ + "make a reminder to pay my cable bill today", + "reminder_update" + ], + [ + "i need a reminder to give the dog his medicine at ten tonight", + "reminder_update" + ], + [ + "i don't want to forget to call mom", + "reminder_update" + ], + [ + "i need a reminder to wash dishes", + "reminder_update" + ], + [ + "remind me to exercise", + "reminder_update" + ], + [ + "help me to remember to pick up stan later", + "reminder_update" + ], + [ + "tell me later to call bill", + "reminder_update" + ], + [ + "i need to be reminded to do something", + "reminder_update" + ], + [ + "set up a new reminder to alert me when it's time to put the trash out", + "reminder_update" + ], + [ + "can you remind me to finish a task", + "reminder_update" + ], + [ + "please set up a reminder for me", + "reminder_update" + ], + [ + "i would like you to remind me to do something", + "reminder_update" + ], + [ + "i need a reminder to take dinner out of the oven", + "reminder_update" + ], + [ + "create a new reminder to study for my final exams", + "reminder_update" + ], + [ + "i need a reminder to alert me to wish my mom a happy birthday", + "reminder_update" + ], + [ + "are you able to remind me about something", + "reminder_update" + ], + [ + "set up a reminder so i don't forget the baby shower this weekend", + "reminder_update" + ], + [ + "set a reminder for me to let the plumber in tomorrow", + "reminder_update" + ], + [ + "i need to set a reminder to call lisa for her birthday", + "reminder_update" + ], + [ + "i would like to set a reminder to bring the plants in tonight", + "reminder_update" + ], + [ + "can you set a reminder alarm for me to workout", + "reminder_update" + ], + [ + "please set a reminder for me to put the clothes in the dryer", + "reminder_update" + ], + [ + "i need to tell you about my lost card", + "report_lost_card" + ], + [ + "i lost my card, what do i do next", + "report_lost_card" + ], + [ + "i have lost my card, what am i supposed to do", + "report_lost_card" + ], + [ + "where do i report that my card was lost", + "report_lost_card" + ], + [ + "who do i speak with about my card that was lost", + "report_lost_card" + ], + [ + "please help me report my lost card", + "report_lost_card" + ], + [ + "set up a report for a lost card", + "report_lost_card" + ], + [ + "can you report a lost card for me", + "report_lost_card" + ], + [ + "i lost my card and need to report it", + "report_lost_card" + ], + [ + "what is the process for reporting my card as lost", + "report_lost_card" + ], + [ + "someone used my chase card without my authorization", + "report_lost_card" + ], + [ + "can you tell me how to report a card lost", + "report_lost_card" + ], + [ + "please tell me how to go about reporting a lost card", + "report_lost_card" + ], + [ + "search steps for how to report a card lost", + "report_lost_card" + ], + [ + "i need to to know how to report a lost card", + "report_lost_card" + ], + [ + "my bank of america visa platinum was swiped from my belongings", + "report_lost_card" + ], + [ + "who do i call to report my card as lost", + "report_lost_card" + ], + [ + "what should i do if i need to report my card lost", + "report_lost_card" + ], + [ + "my capital one visa was taken without permission", + "report_lost_card" + ], + [ + "i need to report that someone ran off with my td bank card earlier", + "report_lost_card" + ], + [ + "what steps do i need to take to report a card lost", + "report_lost_card" + ], + [ + "i would like to report my american express card stolen", + "report_lost_card" + ], + [ + "how do i report that i lost my card", + "report_lost_card" + ], + [ + "how do i report that i actually lost my card", + "report_lost_card" + ], + [ + "how do i report that i lost the card", + "report_lost_card" + ], + [ + "how do i report my very lost card", + "report_lost_card" + ], + [ + "how do i report the card as lost", + "report_lost_card" + ], + [ + "lost report card, need new one", + "report_lost_card" + ], + [ + "my report card was stolen", + "report_lost_card" + ], + [ + "my report card was lost help!", + "report_lost_card" + ], + [ + "can i swap chili for sloppy joe mix in the recipe", + "ingredient_substitution" + ], + [ + "can i use sugar instead of salt", + "ingredient_substitution" + ], + [ + "can i use apples instead of oranges in this recipe", + "ingredient_substitution" + ], + [ + "can i use skim milk instead of 2% in the recipe", + "ingredient_substitution" + ], + [ + "is it ok to use bananas instead of oranges in the recipe", + "ingredient_substitution" + ], + [ + "can i use lettuce instead of rice", + "ingredient_substitution" + ], + [ + "will peas work instead of carrots", + "ingredient_substitution" + ], + [ + "is it possible to use baking soda instead of flour", + "ingredient_substitution" + ], + [ + "can i just use oil instead of vinegar", + "ingredient_substitution" + ], + [ + "can i use mayo instead of miracle whip", + "ingredient_substitution" + ], + [ + "will this recipe still be good if i use milk instead of eggs", + "ingredient_substitution" + ], + [ + "can i use oil instead of vinegar", + "ingredient_substitution" + ], + [ + "can i sub bacon for ham", + "ingredient_substitution" + ], + [ + "can i use pasta sauce instead of tomato paste", + "ingredient_substitution" + ], + [ + "can i use regular olive oil instead of virgin", + "ingredient_substitution" + ], + [ + "is it possible to use starch instead of flour", + "ingredient_substitution" + ], + [ + "is it okay to use butter instead of margarine", + "ingredient_substitution" + ], + [ + "will it be ok to sub turkey for beef", + "ingredient_substitution" + ], + [ + "can i use butter instead of margarine", + "ingredient_substitution" + ], + [ + "is it okay to use applesauce instead of oil", + "ingredient_substitution" + ], + [ + "if i use applesauce instead of oil, will that mess it up", + "ingredient_substitution" + ], + [ + "can i swap applesauce for oil", + "ingredient_substitution" + ], + [ + "is it alright to switch applesauce for oil", + "ingredient_substitution" + ], + [ + "will it still work if i use applesauce instead of oil", + "ingredient_substitution" + ], + [ + "would it be ok to use butter instead of oil", + "ingredient_substitution" + ], + [ + "is it ok to use oil spray instead of canola oil", + "ingredient_substitution" + ], + [ + "could steak be used instead of chicken", + "ingredient_substitution" + ], + [ + "can i substitute butter for oil", + "ingredient_substitution" + ], + [ + "can i use red onions instead of white", + "ingredient_substitution" + ], + [ + "can i get peppers instead of onions", + "ingredient_substitution" + ], + [ + "i need to call my dad", + "make_call" + ], + [ + "i need to call my friend", + "make_call" + ], + [ + "i need to call my coworker", + "make_call" + ], + [ + "i need to call my mom", + "make_call" + ], + [ + "i need to call my boss", + "make_call" + ], + [ + "i need you to call the phone company for me", + "make_call" + ], + [ + "make a call for me to the vet", + "make_call" + ], + [ + "dial up dominos pizza", + "make_call" + ], + [ + "call my doctor", + "make_call" + ], + [ + "get mom on the phone", + "make_call" + ], + [ + "please make a call to stefan larson", + "make_call" + ], + [ + "use phone to call alexa", + "make_call" + ], + [ + "computer, call alexa", + "make_call" + ], + [ + "computer, place a call to alexa", + "make_call" + ], + [ + "can you call alexa", + "make_call" + ], + [ + "call alexa at home", + "make_call" + ], + [ + "i would like to make a call to sal", + "make_call" + ], + [ + "i would like to make a phone call", + "make_call" + ], + [ + "can i make a phone call", + "make_call" + ], + [ + "i need to make a call", + "make_call" + ], + [ + "i need you to phone sal", + "make_call" + ], + [ + "i need to call sal", + "make_call" + ], + [ + "i have to make a phone call", + "make_call" + ], + [ + "i have to use the phone to make a call", + "make_call" + ], + [ + "could you call sal", + "make_call" + ], + [ + "call sal", + "make_call" + ], + [ + "x needs to be called by me", + "make_call" + ], + [ + "call to mom", + "make_call" + ], + [ + "call mom", + "make_call" + ], + [ + "dial her up", + "make_call" + ], + [ + "i want to set an alarm", + "alarm" + ], + [ + "set an alarm for 6 am tomorrow", + "alarm" + ], + [ + "set an alarm for 8 tomorrow", + "alarm" + ], + [ + "please set an alarm", + "alarm" + ], + [ + "i'd love to set an alarm", + "alarm" + ], + [ + "i would like to have an alarm set for me", + "alarm" + ], + [ + "i want an alarm set", + "alarm" + ], + [ + "i need to set an alarm", + "alarm" + ], + [ + "set an alarm for ten tomorrow", + "alarm" + ], + [ + "set an alarm for 11 tomorrow", + "alarm" + ], + [ + "i want an alarm for 6 am", + "alarm" + ], + [ + "set an alarm for me", + "alarm" + ], + [ + "i wanna have an alarm", + "alarm" + ], + [ + "i need an alarm set now", + "alarm" + ], + [ + "set an alarm for 9 tomorrow", + "alarm" + ], + [ + "don't forget to set an alarm for noon", + "alarm" + ], + [ + "can you set the alarm for noon", + "alarm" + ], + [ + "i need to up by noon", + "alarm" + ], + [ + "can you wake me up at noon", + "alarm" + ], + [ + "set alarm for noon", + "alarm" + ], + [ + "wake me up with an alarm at 6am", + "alarm" + ], + [ + "help me wake up with an alarm at 5:30am", + "alarm" + ], + [ + "set an alarm to wake me up at 5:30am", + "alarm" + ], + [ + "set an alarm for 5am", + "alarm" + ], + [ + "please set the alarm", + "alarm" + ], + [ + "please make sure the alarm is set", + "alarm" + ], + [ + "could you set the alarm", + "alarm" + ], + [ + "set the alarm now", + "alarm" + ], + [ + "can you set an alarm", + "alarm" + ], + [ + "i need an alarm", + "alarm" + ], + [ + "what's on my todo list", + "todo_list" + ], + [ + "let me hear my todo list", + "todo_list" + ], + [ + "did i add \"cleaning the foyer\" to my todo list yet", + "todo_list" + ], + [ + "did i put grocery shopping on my todo list", + "todo_list" + ], + [ + "give me my todo list", + "todo_list" + ], + [ + "what things are on my todo list", + "todo_list" + ], + [ + "have i told you to add washing dishes to my todo list", + "todo_list" + ], + [ + "is laundry on my todo list", + "todo_list" + ], + [ + "read my todo list", + "todo_list" + ], + [ + "list my todo list items", + "todo_list" + ], + [ + "is \"cleaning the bathroom\" an item on my todo list", + "todo_list" + ], + [ + "tell me what's on my todo list", + "todo_list" + ], + [ + "read my to-do list items", + "todo_list" + ], + [ + "check on my to-do list items", + "todo_list" + ], + [ + "check what is on my to-do list", + "todo_list" + ], + [ + "what items are on my list of to-dos", + "todo_list" + ], + [ + "what is on my to-do list", + "todo_list" + ], + [ + "what kind of things do i have to do today", + "todo_list" + ], + [ + "what's on my todo list for today", + "todo_list" + ], + [ + "please tell me my todo list", + "todo_list" + ], + [ + "is my todo list possible today", + "todo_list" + ], + [ + "i really want to know my todo list again thanks", + "todo_list" + ], + [ + "is it possible to read my to-do list again", + "todo_list" + ], + [ + "tell me my to-do list", + "todo_list" + ], + [ + "what is my to-do list like today", + "todo_list" + ], + [ + "list my to-do list", + "todo_list" + ], + [ + "give me my to-do list", + "todo_list" + ], + [ + "what must i do today", + "todo_list" + ], + [ + "is make a hair appointment on my todo list right now", + "todo_list" + ], + [ + "can you see if paying garbage bill is on my todo list for this week", + "todo_list" + ], + [ + "change the accent you're using", + "change_accent" + ], + [ + "start using a different accent", + "change_accent" + ], + [ + "talk to me in a different accent", + "change_accent" + ], + [ + "alter your accent", + "change_accent" + ], + [ + "change to the female voice", + "change_accent" + ], + [ + "i want to hear the female voice from now on", + "change_accent" + ], + [ + "i want the male voice", + "change_accent" + ], + [ + "could you use the female voice", + "change_accent" + ], + [ + "female voice please", + "change_accent" + ], + [ + "can you switch to the male voice", + "change_accent" + ], + [ + "the male voice please", + "change_accent" + ], + [ + "could you use the male voice", + "change_accent" + ], + [ + "i want the female voice", + "change_accent" + ], + [ + "i want you to change your accent", + "change_accent" + ], + [ + "would you please switch to the male voice", + "change_accent" + ], + [ + "i would like you to change your accent", + "change_accent" + ], + [ + "i want you to change to the male voice", + "change_accent" + ], + [ + "can you change to the male voice", + "change_accent" + ], + [ + "change to girl voice", + "change_accent" + ], + [ + "please switch to the girl voice", + "change_accent" + ], + [ + "change to the females voice please", + "change_accent" + ], + [ + "switch voice option to female", + "change_accent" + ], + [ + "change voice to female", + "change_accent" + ], + [ + "use the female voice", + "change_accent" + ], + [ + "change settings to sound like a female", + "change_accent" + ], + [ + "turn to the voice of the woman", + "change_accent" + ], + [ + "change to the woman voice", + "change_accent" + ], + [ + "i like the female voice, switch please", + "change_accent" + ], + [ + "speak with a male british accent", + "change_accent" + ], + [ + "would you change your voice to the male british accent for me", + "change_accent" + ], + [ + "what site can i get my w2", + "w2" + ], + [ + "where do we get our w2 forms", + "w2" + ], + [ + "where can i get my w2", + "w2" + ], + [ + "where can i get my w2 from", + "w2" + ], + [ + "i would like to know where i can find my w2 for tax reasons", + "w2" + ], + [ + "what steps do i need to take to obtain my w2 for taxes", + "w2" + ], + [ + "what do i do if i need my w2 for my my taxes", + "w2" + ], + [ + "how can i get get a copy of my w2 for tax purposes", + "w2" + ], + [ + "can you tell me the process for obtaining a copy of my w2 for my taxes", + "w2" + ], + [ + "where do i go to get that work tax form thing", + "w2" + ], + [ + "what do i need to do to get that tax form thing from my job", + "w2" + ], + [ + "how do i get that tax form from my employer", + "w2" + ], + [ + "where can i find that tax form my employer gives me", + "w2" + ], + [ + "how do i get the form to file my taxes from my employer", + "w2" + ], + [ + "where do i look to get a w2", + "w2" + ], + [ + "i need a w2 form from", + "w2" + ], + [ + "can you trll me where to get my w2", + "w2" + ], + [ + "i want to get the w-2 form", + "w2" + ], + [ + "i wanna know where to find a w2", + "w2" + ], + [ + "i wanna know where to get my w2", + "w2" + ], + [ + "tell me where to a w2 form", + "w2" + ], + [ + "i must know where to get my w2", + "w2" + ], + [ + "i wanna get my w-2 form", + "w2" + ], + [ + "i need a w2, so where is it", + "w2" + ], + [ + "where can i find a w2", + "w2" + ], + [ + "i must get the w-2 form", + "w2" + ], + [ + "help me get w-2 form", + "w2" + ], + [ + "i wanna know where the w2 is", + "w2" + ], + [ + "help me get my w-2 form", + "w2" + ], + [ + "can't find w-2", + "w2" + ], + [ + "when is my electric bill due by", + "bill_due" + ], + [ + "when is my car insurance bill due", + "bill_due" + ], + [ + "how long until my water bill is due", + "bill_due" + ], + [ + "what's the latest i can pay my cellular bill", + "bill_due" + ], + [ + "what's the due date for my netflix subscription", + "bill_due" + ], + [ + "tell me where i can find my exterminator bill's due date", + "bill_due" + ], + [ + "how do i locate the due date for my bug bill", + "bill_due" + ], + [ + "where can i see the due date for auto loan bill", + "bill_due" + ], + [ + "when is my cell phone due", + "bill_due" + ], + [ + "i need to know where my due date is for my lawn bill", + "bill_due" + ], + [ + "where can i find when my car payment bill is due", + "bill_due" + ], + [ + "what's the ultimate day for me to pay the internet bill", + "bill_due" + ], + [ + "tell me the last day i can pay my gas bill", + "bill_due" + ], + [ + "what's the due date for my comcast bill", + "bill_due" + ], + [ + "i need to know when my water bill is due", + "bill_due" + ], + [ + "please tell me how to find out when my rent is due", + "bill_due" + ], + [ + "i need to know when my electricity bill is due", + "bill_due" + ], + [ + "can you tell me when my cable bill is due", + "bill_due" + ], + [ + "i need to find out how to check the due date for the water bill", + "bill_due" + ], + [ + "when does the current billing cycle end", + "bill_due" + ], + [ + "is the bill due today", + "bill_due" + ], + [ + "is the bill due", + "bill_due" + ], + [ + "when do i have to pay my internet", + "bill_due" + ], + [ + "i want to know when the deadline is to pay my car loan", + "bill_due" + ], + [ + "tell me when my water bill is due", + "bill_due" + ], + [ + "what day of the month do i have to pay my mortgage", + "bill_due" + ], + [ + "when is my electricity due date", + "bill_due" + ], + [ + "i need to know the next billing date of my american express card", + "bill_due" + ], + [ + "when does my gas bill need paid by", + "bill_due" + ], + [ + "when is next month's cable bill due", + "bill_due" + ], + [ + "number of calories in coke", + "calories" + ], + [ + "what kind of calories do chicken tenders have", + "calories" + ], + [ + "calorie content of dr pepper", + "calories" + ], + [ + "what's the calorie content of chicken nuggets", + "calories" + ], + [ + "how many calories are in hamburgers", + "calories" + ], + [ + "what is the calorie count for this milkshake", + "calories" + ], + [ + "how many calories does an orange have", + "calories" + ], + [ + "what is the total number of calories in this pizza", + "calories" + ], + [ + "how many calories are in a burger", + "calories" + ], + [ + "rolls have how many calories", + "calories" + ], + [ + "what is the calorie content in bananas", + "calories" + ], + [ + "what is the calorie content in peanut butter", + "calories" + ], + [ + "what is the calorie content in french fries", + "calories" + ], + [ + "what is the calorie content in potatoes", + "calories" + ], + [ + "what is the calorie content in spaghetti", + "calories" + ], + [ + "i need to know the calorie content of spaghetti", + "calories" + ], + [ + "how many calories are in a sandwich", + "calories" + ], + [ + "what number of calories are in a pizza", + "calories" + ], + [ + "what is the number of calories in a steak", + "calories" + ], + [ + "how many calories are in a cheeseburger", + "calories" + ], + [ + "can you check the amount of calories in a chicken sandwich", + "calories" + ], + [ + "what is the calorie count of a burrito", + "calories" + ], + [ + "calorie check, cheese burger", + "calories" + ], + [ + "how many calories are in a taco", + "calories" + ], + [ + "can you see how many calories are in cream of mushroom soup", + "calories" + ], + [ + "the intake of calories it it bad", + "calories" + ], + [ + "how much is alorie intake", + "calories" + ], + [ + "hoq many calories does pasta have", + "calories" + ], + [ + "how many calories can i expect to be in fries", + "calories" + ], + [ + "what's the calorie content of french fries", + "calories" + ], + [ + "tell me how to go about reporting a damaged card", + "damaged_card" + ], + [ + "my card is damaged", + "damaged_card" + ], + [ + "i want to report a damaged card", + "damaged_card" + ], + [ + "where should i report a damaged card", + "damaged_card" + ], + [ + "can you find out how to report a damaged card", + "damaged_card" + ], + [ + "my card has become too frayed and torn to use", + "damaged_card" + ], + [ + "what do i do about a card that's too messed up to be properly scanned", + "damaged_card" + ], + [ + "my card became damaged when i dropped it in the parking lot and it got ran over", + "damaged_card" + ], + [ + "i have a damaged card that needs replaced because my son dropped it in a blender", + "damaged_card" + ], + [ + "i sat on my credit card and broke it in half and need it replaced", + "damaged_card" + ], + [ + "my credit card got torn and i need a new one", + "damaged_card" + ], + [ + "what do i do with a damaged credit card", + "damaged_card" + ], + [ + "how do i replace a damaged card", + "damaged_card" + ], + [ + "i have a card that needs replaced because my wine dumped wine on it", + "damaged_card" + ], + [ + "i spilled wine on my credit card and now its all mushy and needs to be replaced", + "damaged_card" + ], + [ + "my dog swallowed my credit card and i need a new one", + "damaged_card" + ], + [ + "i want to report a damaged card that my cat shredded with its claws", + "damaged_card" + ], + [ + "i need to replace a card that my daughter spilled juice on", + "damaged_card" + ], + [ + "i'm unable to use my card because it's been ruined", + "damaged_card" + ], + [ + "i can't use my card because it\u2019s damaged badly", + "damaged_card" + ], + [ + "i cannot use my card cuz it's damaged", + "damaged_card" + ], + [ + "i can't use my card because it\u2019s messed up", + "damaged_card" + ], + [ + "i can't use my card because it\u2019s broken", + "damaged_card" + ], + [ + "i can't use my card because i damaged it", + "damaged_card" + ], + [ + "who should i talk to about the fact that i inadvertently split my card almost in half", + "damaged_card" + ], + [ + "i accidentally deactivated the magnetic stripe on my visa debit card and i need to report it", + "damaged_card" + ], + [ + "can i talk to someone to let them know my card was damaged from being melted on a radiator", + "damaged_card" + ], + [ + "i would like to report a damaged card that was burnt", + "damaged_card" + ], + [ + "i would like to report my card damaged since i accidentally spilled gorilla glue all over it and the numbers are now obscured", + "damaged_card" + ], + [ + "my visa has been damaged", + "damaged_card" + ], + [ + "does applebees have good reviews", + "restaurant_reviews" + ], + [ + "are the reviews ned get's good", + "restaurant_reviews" + ], + [ + "is the review ned's have good", + "restaurant_reviews" + ], + [ + "are ned's reviews good", + "restaurant_reviews" + ], + [ + "are the reviews for ned's good", + "restaurant_reviews" + ], + [ + "how are the reviews for tacos at the buffet", + "restaurant_reviews" + ], + [ + "do they serve good tacos at the buffet", + "restaurant_reviews" + ], + [ + "my favorite, beef tacos at the buffet", + "restaurant_reviews" + ], + [ + "they sold out of tacos at the buffet", + "restaurant_reviews" + ], + [ + "yum, pulled pork tacos at the buffet", + "restaurant_reviews" + ], + [ + "what do people think of the new burger at mcdonalds", + "restaurant_reviews" + ], + [ + "how are the reviews for the supreme pizza at papa john's", + "restaurant_reviews" + ], + [ + "what are people saying about chick-fil-a's chicken nuggets", + "restaurant_reviews" + ], + [ + "show me the reviews for the new jalapeno fries at taco bell", + "restaurant_reviews" + ], + [ + "give me some feedback about the pasta at piada please", + "restaurant_reviews" + ], + [ + "how is gramercy tavern rated", + "restaurant_reviews" + ], + [ + "how many stars does babbo have", + "restaurant_reviews" + ], + [ + "does cielo have good reviews", + "restaurant_reviews" + ], + [ + "do people say per se is any good or not", + "restaurant_reviews" + ], + [ + "what do food critics say about gramercy tavern", + "restaurant_reviews" + ], + [ + "what are the reviews like for l'auberge aubergine", + "restaurant_reviews" + ], + [ + "how many stars does brasserie les halles have", + "restaurant_reviews" + ], + [ + "what rating do the critics give the french laundry", + "restaurant_reviews" + ], + [ + "does acero have good or bad ratings", + "restaurant_reviews" + ], + [ + "has the french laundry gotten good reviews lately", + "restaurant_reviews" + ], + [ + "what kind of reviews does the olive garden have", + "restaurant_reviews" + ], + [ + "what's the average review for olive garden", + "restaurant_reviews" + ], + [ + "oliver garden reviews", + "restaurant_reviews" + ], + [ + "does olive garden have good customer reviews", + "restaurant_reviews" + ], + [ + "does olive garden have good reviews", + "restaurant_reviews" + ], + [ + "i need my routing number for my checking account at bb&t bank", + "routing" + ], + [ + "what is my routing number to my checking account at bb&t bankj", + "routing" + ], + [ + "tell me my routing number at my bank, community trust", + "routing" + ], + [ + "what is the routing number of my checking account at first national bankj", + "routing" + ], + [ + "give me the routing number of my checking account at my main bank, first commerce", + "routing" + ], + [ + "what is my bank routing number", + "routing" + ], + [ + "what's my routing number", + "routing" + ], + [ + "what's wells fargo's routing number", + "routing" + ], + [ + "tell me my routing number", + "routing" + ], + [ + "where can i find my routing number", + "routing" + ], + [ + "where's the routing number for wells fargo", + "routing" + ], + [ + "where can i find wells fargo's routing number", + "routing" + ], + [ + "where is wells fargo's routing number listed", + "routing" + ], + [ + "where should i go to find the routing number for well's fargo", + "routing" + ], + [ + "is my routing number on my account page", + "routing" + ], + [ + "what is the bank's routing number", + "routing" + ], + [ + "i want to know what my routing number is", + "routing" + ], + [ + "i need a routing number", + "routing" + ], + [ + "does pnc have a routing number", + "routing" + ], + [ + "can you tell me the routing number to pnc", + "routing" + ], + [ + "can you please read me the routing number to pnc", + "routing" + ], + [ + "where can i find routing number for pnc", + "routing" + ], + [ + "what is the routing number for pnc", + "routing" + ], + [ + "i need x's routing number", + "routing" + ], + [ + "where would century bank have their routing number listed", + "routing" + ], + [ + "where do i go if i am seeking the routing number of dallas capital", + "routing" + ], + [ + "what is the location that td bank has their routing number listed", + "routing" + ], + [ + "where would the routing number for first utah be located", + "routing" + ], + [ + "tell me what my savings account routing number is", + "routing" + ], + [ + "what is chase bank's routing number", + "routing" + ], + [ + "cats or dogs are your preference", + "do_you_have_pets" + ], + [ + "what kinds of pets do you own", + "do_you_have_pets" + ], + [ + "do you have any pets and what kind", + "do_you_have_pets" + ], + [ + "would you describe yourself as a cat or dog person", + "do_you_have_pets" + ], + [ + "you have what types or kinds of pets", + "do_you_have_pets" + ], + [ + "are you a pet owner what kind", + "do_you_have_pets" + ], + [ + "do you have a pet", + "do_you_have_pets" + ], + [ + "would you call yourself a cat or dog person", + "do_you_have_pets" + ], + [ + "what kind of animals do you own", + "do_you_have_pets" + ], + [ + "can you name the type of pets you have", + "do_you_have_pets" + ], + [ + "do you have any pets", + "do_you_have_pets" + ], + [ + "are you a pet owner and what kind", + "do_you_have_pets" + ], + [ + "what pets do you own", + "do_you_have_pets" + ], + [ + "tell me any animals that you have as pets", + "do_you_have_pets" + ], + [ + "do you have cats or dogs or something else as a pet", + "do_you_have_pets" + ], + [ + "please tell me the types of pets you have", + "do_you_have_pets" + ], + [ + "how would you categorize the pets you have", + "do_you_have_pets" + ], + [ + "tell me about the pets you have", + "do_you_have_pets" + ], + [ + "do you have friendly or unfriendly pets", + "do_you_have_pets" + ], + [ + "which pets do you have", + "do_you_have_pets" + ], + [ + "which type of pets do you have", + "do_you_have_pets" + ], + [ + "what pets do you have", + "do_you_have_pets" + ], + [ + "do you like appreciate cats or dogs more", + "do_you_have_pets" + ], + [ + "do you like cats or dogs more", + "do_you_have_pets" + ], + [ + "which kinds of pets do you own", + "do_you_have_pets" + ], + [ + "do you prefer cats or dogs", + "do_you_have_pets" + ], + [ + "do you prefer cats or dogs more", + "do_you_have_pets" + ], + [ + "which kinds of pets do you have", + "do_you_have_pets" + ], + [ + "do you currently have any pets", + "do_you_have_pets" + ], + [ + "what is the total number of pets that you have", + "do_you_have_pets" + ], + [ + "please book a meeting room for thusday at 4:00", + "schedule_meeting" + ], + [ + "would you please schedule a meeting room for 4:00 on thursday", + "schedule_meeting" + ], + [ + "could you schedule a meeting room for 4:00 on thursday", + "schedule_meeting" + ], + [ + "will you schedule a conference room for thursday at 4:00", + "schedule_meeting" + ], + [ + "can you reserve a meeting space for 4:00 on thursday", + "schedule_meeting" + ], + [ + "i need to know how to schedule a meeting", + "schedule_meeting" + ], + [ + "please help me figure out how to set up a meeting", + "schedule_meeting" + ], + [ + "i need assistance scheduling a meeting", + "schedule_meeting" + ], + [ + "walk me through the process of scheduling a meeting", + "schedule_meeting" + ], + [ + "help me set up a meeting please", + "schedule_meeting" + ], + [ + "i need a meeting room between 3-7, are any available", + "schedule_meeting" + ], + [ + "can you tell me if there are meeting rooms available between 1 and 4", + "schedule_meeting" + ], + [ + "are meeting rooms free between 8-3", + "schedule_meeting" + ], + [ + "do you know if meeting rooms are open to use 1-2", + "schedule_meeting" + ], + [ + "can you check if meeting rooms are available between 4 and 5", + "schedule_meeting" + ], + [ + "meeting rooms open between one and three pm", + "schedule_meeting" + ], + [ + "check meeting room availability between one and three pm", + "schedule_meeting" + ], + [ + "what meeting rooms are available for meeting 5pm friday", + "schedule_meeting" + ], + [ + "reserve a meeting room for friday, 5pm", + "schedule_meeting" + ], + [ + "one and three pm are there meeting rooms open", + "schedule_meeting" + ], + [ + "friday 5pm schedule a room for meeting", + "schedule_meeting" + ], + [ + "open meeting rooms from one to three pm", + "schedule_meeting" + ], + [ + "can you reserve a room for a friday meeting at 5pm", + "schedule_meeting" + ], + [ + "reserve a meeting room for 5pm on friday", + "schedule_meeting" + ], + [ + "check meeting rooms available between one and three pm", + "schedule_meeting" + ], + [ + "i need to schedule meeting room for monday at 2:30 pm, please", + "schedule_meeting" + ], + [ + "i would like you to reserve a conference room for noon tomorrow", + "schedule_meeting" + ], + [ + "please reserve a meeting room for 1:00 pm on tuesday", + "schedule_meeting" + ], + [ + "go ahead and hold a conference room for friday at 11 am, please", + "schedule_meeting" + ], + [ + "can you book a meeting room for friday at 9:00 am", + "schedule_meeting" + ], + [ + "which gas would be best", + "gas_type" + ], + [ + "what type of gas should i use", + "gas_type" + ], + [ + "which type of gas should i get", + "gas_type" + ], + [ + "can you tell me what gas this car takes", + "gas_type" + ], + [ + "can you tell me this vehicles gas type", + "gas_type" + ], + [ + "what fuel should i use for this car", + "gas_type" + ], + [ + "what kind of gas should i use for this car", + "gas_type" + ], + [ + "i need to know the gas type for this vehicle", + "gas_type" + ], + [ + "for this car what kind of fuel does it take", + "gas_type" + ], + [ + "i need to know the type of gas for this car", + "gas_type" + ], + [ + "i want to know what kind of gas this car uses", + "gas_type" + ], + [ + "what gas does this car use", + "gas_type" + ], + [ + "what fuel do i put in this car", + "gas_type" + ], + [ + "what type of gas goes into the car", + "gas_type" + ], + [ + "what type of fuel does this car utilize", + "gas_type" + ], + [ + "what type of gas do i put in this new car", + "gas_type" + ], + [ + "what type of gas do i use in this car", + "gas_type" + ], + [ + "is there a certain kind of fuel needed", + "gas_type" + ], + [ + "what gas goes in the vehicle", + "gas_type" + ], + [ + "what raiting of gas is called for", + "gas_type" + ], + [ + "what kind of gas goes in", + "gas_type" + ], + [ + "can you tell me what kind of gas your car uses", + "gas_type" + ], + [ + "what kind of gas does your car use", + "gas_type" + ], + [ + "the car you are driving uses what kind of gas", + "gas_type" + ], + [ + "what kind of gas can i put into this car", + "gas_type" + ], + [ + "which gas type goes into this car", + "gas_type" + ], + [ + "which type of gas does this car take", + "gas_type" + ], + [ + "i need gas what type do i need for this car", + "gas_type" + ], + [ + "what types of gas can i get for this car", + "gas_type" + ], + [ + "which type of gas does my car use", + "gas_type" + ], + [ + "would a socket converter be needed in france", + "plug_type" + ], + [ + "how do i plug stuff in in france", + "plug_type" + ], + [ + "is socket converter required in france", + "plug_type" + ], + [ + "does france use a socket converter", + "plug_type" + ], + [ + "is electricity the same in france", + "plug_type" + ], + [ + "will i need a plug converter when i visit costa rica", + "plug_type" + ], + [ + "will i require a plug converter when i visit kenya", + "plug_type" + ], + [ + "will i need to get a plug converter when i visit guam", + "plug_type" + ], + [ + "do i require a plug converter when i visit puerto rico", + "plug_type" + ], + [ + "will i need to have a plug converter when i visit madrid", + "plug_type" + ], + [ + "z uses which type of plug", + "plug_type" + ], + [ + "what sort of plug is used in the caribbean", + "plug_type" + ], + [ + "which plug is used in japan", + "plug_type" + ], + [ + "plug used in china", + "plug_type" + ], + [ + "what kind of plug is used in england", + "plug_type" + ], + [ + "what do i need for a plug in wales", + "plug_type" + ], + [ + "does z used the same plus as we do in the united states", + "plug_type" + ], + [ + "can i used the same type of plug in z as i do in the us", + "plug_type" + ], + [ + "electrical plugs used in that country", + "plug_type" + ], + [ + "are the electric plugs the same over in that country", + "plug_type" + ], + [ + "what kind of electrical outlet does that country use", + "plug_type" + ], + [ + "do i need a converter for my electronics when i go to that coutntry", + "plug_type" + ], + [ + "can i plug in my electronics there like normal", + "plug_type" + ], + [ + "is a socket converter necessary if i'm travelling to london", + "plug_type" + ], + [ + "are socket converters something i need to bring if going to australia", + "plug_type" + ], + [ + "can i use electronic devices in mexico without a socket converter", + "plug_type" + ], + [ + "are socket converters needed if i'm going to cape town", + "plug_type" + ], + [ + "does sweden use the same kind of socket or do i need a converter", + "plug_type" + ], + [ + "what plug type is used internationally", + "plug_type" + ], + [ + "what's the plug type in honduras", + "plug_type" + ], + [ + "when would you change my tires", + "tire_change" + ], + [ + "when is the next time i should get my tires changed", + "tire_change" + ], + [ + "how soon should i get my tires changed", + "tire_change" + ], + [ + "how often should i get my tires changed", + "tire_change" + ], + [ + "do you know when i should get my tires changed next", + "tire_change" + ], + [ + "when should my tires be changed", + "tire_change" + ], + [ + "i need to know when i should change my tires", + "tire_change" + ], + [ + "how soon till i need to change my tires", + "tire_change" + ], + [ + "can you tell me when my tires have to be changed", + "tire_change" + ], + [ + "am i almost due for a tire change", + "tire_change" + ], + [ + "when is my car due for an tire change", + "tire_change" + ], + [ + "how do i know when to get the tires changed on my car", + "tire_change" + ], + [ + "how often should my tires be changed", + "tire_change" + ], + [ + "how often should i change the tires on my car", + "tire_change" + ], + [ + "i replaced tires last june when should i do it again", + "tire_change" + ], + [ + "on feb 3rd i changed my tires are they still good", + "tire_change" + ], + [ + "my tires are 29 months old should u change them", + "tire_change" + ], + [ + "when do my tires need changing after i replaced them last week", + "tire_change" + ], + [ + "in september i changed my tires are they in need of changing", + "tire_change" + ], + [ + "how do i know if it is time to replace my tires", + "tire_change" + ], + [ + "how long does the average set of tire last before needing replacement", + "tire_change" + ], + [ + "how long are my tires expected to last before needing to be replaced", + "tire_change" + ], + [ + "how many miles are my tires rated for", + "tire_change" + ], + [ + "what is the time for a tire change", + "tire_change" + ], + [ + "my tires should be changed when", + "tire_change" + ], + [ + "tell me when to get my tires changed", + "tire_change" + ], + [ + "when is it time for a change in tires", + "tire_change" + ], + [ + "what is the timeframe for getting my tires changed", + "tire_change" + ], + [ + "tell me when i'll need new tires", + "tire_change" + ], + [ + "when will my tires need to be changed", + "tire_change" + ], + [ + "convert 200 us dollars to british pounds", + "exchange_rate" + ], + [ + "how many japanese yen are in a us dollar", + "exchange_rate" + ], + [ + "how much is 5 us dollars worth in canadian dollars", + "exchange_rate" + ], + [ + "can you tell me what 100 british pounds equals in us dollars", + "exchange_rate" + ], + [ + "what is the exchange rate between us dollars and japanese yen", + "exchange_rate" + ], + [ + "whats the current exchange rate between usd and eur", + "exchange_rate" + ], + [ + "what's the exhange rate between mxn and gbp", + "exchange_rate" + ], + [ + "what is the current exchange rate between mxn and eur", + "exchange_rate" + ], + [ + "what's the exchange rate between ils and usd", + "exchange_rate" + ], + [ + "what is the usd mxn exchange rate", + "exchange_rate" + ], + [ + "how many mexican pesos is a us dollar worth", + "exchange_rate" + ], + [ + "how much is one us dollar in british pounds", + "exchange_rate" + ], + [ + "whats the exchange rate for us dollars to british pounds", + "exchange_rate" + ], + [ + "what is a british pound worth in mexican pesos", + "exchange_rate" + ], + [ + "how many mexican pesos can i get for one us dollar", + "exchange_rate" + ], + [ + "look up the rate of exchange between pesos and usd", + "exchange_rate" + ], + [ + "find me the exchange rate between usd and cad", + "exchange_rate" + ], + [ + "what is the exchange rate between euros and pesos", + "exchange_rate" + ], + [ + "tell me the current exchange rate between cad and euros", + "exchange_rate" + ], + [ + "what is the present exchange rate between usd and british pound", + "exchange_rate" + ], + [ + "convert 20 yen to dollars", + "exchange_rate" + ], + [ + "how many dollars can i get for 20 yen", + "exchange_rate" + ], + [ + "how many dollars is 20 yen worth", + "exchange_rate" + ], + [ + "20 yen is how many dollars", + "exchange_rate" + ], + [ + "20 yen equals how many dollars", + "exchange_rate" + ], + [ + "is $30 usd more or less in canada", + "exchange_rate" + ], + [ + "in canadian dollars, what is $30", + "exchange_rate" + ], + [ + "what is the conversion of $30 in canadian dollars", + "exchange_rate" + ], + [ + "can you please convert $30 usd to canadian dollars", + "exchange_rate" + ], + [ + "how much is $30 usd in canadian dollar", + "exchange_rate" + ], + [ + "on what day is our next free day", + "next_holiday" + ], + [ + "on what day is our next day off", + "next_holiday" + ], + [ + "what day is our next day off", + "next_holiday" + ], + [ + "is our next day off soon", + "next_holiday" + ], + [ + "do you know when our next day off is", + "next_holiday" + ], + [ + "when are we off work next", + "next_holiday" + ], + [ + "when is the next day we have off", + "next_holiday" + ], + [ + "when will our next day off be", + "next_holiday" + ], + [ + "are there any holidays coming and when", + "next_holiday" + ], + [ + "how many holidays are there and when is the next one here", + "next_holiday" + ], + [ + "for the holidays when is the next one we do here", + "next_holiday" + ], + [ + "what holiday is next and when", + "next_holiday" + ], + [ + "how long before the next holiday here", + "next_holiday" + ], + [ + "what's the wait period until the next day off", + "next_holiday" + ], + [ + "when will my next vacation day be", + "next_holiday" + ], + [ + "how long do i have to wait to get a day off", + "next_holiday" + ], + [ + "when's the next day off", + "next_holiday" + ], + [ + "how many days left until the next day out of work", + "next_holiday" + ], + [ + "tell me the next holiday", + "next_holiday" + ], + [ + "tell me how long until the next day off", + "next_holiday" + ], + [ + "i got to know how long until the next day off", + "next_holiday" + ], + [ + "i wanna know how long until the next day off", + "next_holiday" + ], + [ + "i need to know how long until the next day off", + "next_holiday" + ], + [ + "i wanna know the next holiday", + "next_holiday" + ], + [ + "let me know how long until the next day off", + "next_holiday" + ], + [ + "i wish to know the next holiday", + "next_holiday" + ], + [ + "i must know the next holiday", + "next_holiday" + ], + [ + "i would like to know the next holiday", + "next_holiday" + ], + [ + "find the next holiday", + "next_holiday" + ], + [ + "when is the soonest holiday", + "next_holiday" + ], + [ + "turn volume up to 4", + "change_volume" + ], + [ + "adjust volume setting to 4", + "change_volume" + ], + [ + "keep volume at 4 all the time", + "change_volume" + ], + [ + "put volume setting on number 4", + "change_volume" + ], + [ + "please make sure the volume stays at 4", + "change_volume" + ], + [ + "put the volume to 4", + "change_volume" + ], + [ + "volume to 4", + "change_volume" + ], + [ + "turn down your speaker", + "change_volume" + ], + [ + "decrease your decibel level", + "change_volume" + ], + [ + "be more quiet", + "change_volume" + ], + [ + "please lower the sound", + "change_volume" + ], + [ + "speak up", + "change_volume" + ], + [ + "not so loud", + "change_volume" + ], + [ + "quieter please", + "change_volume" + ], + [ + "increase the volume", + "change_volume" + ], + [ + "turn up the volume", + "change_volume" + ], + [ + "speak louder please", + "change_volume" + ], + [ + "please lower your volume", + "change_volume" + ], + [ + "louder please", + "change_volume" + ], + [ + "turn down the volume", + "change_volume" + ], + [ + "can you speak quieter", + "change_volume" + ], + [ + "turn to volume 4", + "change_volume" + ], + [ + "set 4 as the volume", + "change_volume" + ], + [ + "turn volume to 4", + "change_volume" + ], + [ + "volume 4 set", + "change_volume" + ], + [ + "volume set to 4", + "change_volume" + ], + [ + "i can't hear you and need you to turn up the volume", + "change_volume" + ], + [ + "turn up your speaker volume", + "change_volume" + ], + [ + "can you speak louder", + "change_volume" + ], + [ + "can you turn up the volume for your speaker", + "change_volume" + ], + [ + "who is in charge of you when you work", + "who_do_you_work_for" + ], + [ + "who is responsible for your employment", + "who_do_you_work_for" + ], + [ + "who do you report to for your work", + "who_do_you_work_for" + ], + [ + "let me know who your boss is", + "who_do_you_work_for" + ], + [ + "i want to know who your boss is", + "who_do_you_work_for" + ], + [ + "would you let me know who your boss is", + "who_do_you_work_for" + ], + [ + "i would like to know who your boss is", + "who_do_you_work_for" + ], + [ + "are you my insubordinate", + "who_do_you_work_for" + ], + [ + "does someone else control you", + "who_do_you_work_for" + ], + [ + "do i own you", + "who_do_you_work_for" + ], + [ + "what firm do you work for", + "who_do_you_work_for" + ], + [ + "do you take your orders from me", + "who_do_you_work_for" + ], + [ + "do i control you", + "who_do_you_work_for" + ], + [ + "am i in charge of you", + "who_do_you_work_for" + ], + [ + "is there another person that controls you", + "who_do_you_work_for" + ], + [ + "who do you take your orders from", + "who_do_you_work_for" + ], + [ + "would you consider someone else your boss", + "who_do_you_work_for" + ], + [ + "do you take orders from someone else", + "who_do_you_work_for" + ], + [ + "who controls you", + "who_do_you_work_for" + ], + [ + "who's your boss", + "who_do_you_work_for" + ], + [ + "what company do you work for", + "who_do_you_work_for" + ], + [ + "who employs you", + "who_do_you_work_for" + ], + [ + "where do you work", + "who_do_you_work_for" + ], + [ + "who is it that you work for", + "who_do_you_work_for" + ], + [ + "whom do you work for", + "who_do_you_work_for" + ], + [ + "who is your job with", + "who_do_you_work_for" + ], + [ + "what company are you employed by", + "who_do_you_work_for" + ], + [ + "what is the name of the place you work at", + "who_do_you_work_for" + ], + [ + "what's your boss's name", + "who_do_you_work_for" + ], + [ + "who can i talk to above you", + "who_do_you_work_for" + ], + [ + "what's the most i can charge on my card", + "credit_limit" + ], + [ + "how much do i have available on my visa card", + "credit_limit" + ], + [ + "what is my visa credit limit", + "credit_limit" + ], + [ + "how much of a credit limit does visa allow", + "credit_limit" + ], + [ + "is there a substantial credit limit on my visa", + "credit_limit" + ], + [ + "as my visa got a high enough limit on it", + "credit_limit" + ], + [ + "what is my credit max", + "credit_limit" + ], + [ + "what is my credit card spending limit", + "credit_limit" + ], + [ + "what's my daily spending limit", + "credit_limit" + ], + [ + "tell me my credit limit", + "credit_limit" + ], + [ + "how much credit do i have on my discover card", + "credit_limit" + ], + [ + "do i have a monthly spending limit", + "credit_limit" + ], + [ + "what's the limit on my discover card", + "credit_limit" + ], + [ + "is there a spending limit", + "credit_limit" + ], + [ + "what is my credit limit on my discover", + "credit_limit" + ], + [ + "what's my spending limit on my discover", + "credit_limit" + ], + [ + "how much is my maximum to spend on credit cards", + "credit_limit" + ], + [ + "what's my discover credit limit", + "credit_limit" + ], + [ + "how much can i use on my visa", + "credit_limit" + ], + [ + "my visa has what limit", + "credit_limit" + ], + [ + "tell me my visa limit", + "credit_limit" + ], + [ + "look up how high my visa limit is", + "credit_limit" + ], + [ + "what is the limit on my visa", + "credit_limit" + ], + [ + "what is my state bank of india card credit limit", + "credit_limit" + ], + [ + "calculate the limit i have available for spending on my natwest card", + "credit_limit" + ], + [ + "tell me my hsbc card credit limit", + "credit_limit" + ], + [ + "what's the spending limit on my lloyds card", + "credit_limit" + ], + [ + "i need you to tell me the credit limit for my republic bank card", + "credit_limit" + ], + [ + "how high is my credit limit", + "credit_limit" + ], + [ + "i want to know my credit limit", + "credit_limit" + ], + [ + "is the resataurant busy at 5:00 pm", + "how_busy" + ], + [ + "how busy is the cafe at 7:00", + "how_busy" + ], + [ + "would tio's be crowded at 7", + "how_busy" + ], + [ + "can i get a table for four at 8:00", + "how_busy" + ], + [ + "is the friday's full after 4", + "how_busy" + ], + [ + "how long is the wait at fridays", + "how_busy" + ], + [ + "is the mexican place crowded at night", + "how_busy" + ], + [ + "are cool people at the bar at 9:00 pm", + "how_busy" + ], + [ + "what is the best time to go to get a burger without a line", + "how_busy" + ], + [ + "how long before i can eat at chic fil a", + "how_busy" + ], + [ + "how long to be seated at carrabas", + "how_busy" + ], + [ + "is the wait at pizza hut long", + "how_busy" + ], + [ + "is the breakfast place full in the mornings", + "how_busy" + ], + [ + "is the wait more than an hour at the italian place", + "how_busy" + ], + [ + "tell me how busy red robin is at 5 pm", + "how_busy" + ], + [ + "i wanna know how busy denny's is at 5 am", + "how_busy" + ], + [ + "i need to know how busy denny's is at 6 am", + "how_busy" + ], + [ + "how busy is red robin around 5 pm", + "how_busy" + ], + [ + "so how busy is the outback steakhouse at 5 pm", + "how_busy" + ], + [ + "tell me mr joes pizza average wait time", + "how_busy" + ], + [ + "is mr joes pizza available for a seating", + "how_busy" + ], + [ + "does mr joes pizza usually have a long wait", + "how_busy" + ], + [ + "can you find out the waiting times for mr joes pizza", + "how_busy" + ], + [ + "what's the typical wait time for mr joes pizza", + "how_busy" + ], + [ + "how busy is cheesecake factory right now", + "how_busy" + ], + [ + "how long is the wait at cheesecake factory", + "how_busy" + ], + [ + "how long will i have to wait at cheesecake factory", + "how_busy" + ], + [ + "is cheesecake factory busy right now", + "how_busy" + ], + [ + "check how busy cheesecake factory is", + "how_busy" + ], + [ + "is there a long wait at chili's around 5:00", + "how_busy" + ], + [ + "can i do a reservation at sammy's crab shack", + "accept_reservations" + ], + [ + "does bill's house of chop suey accept reservations", + "accept_reservations" + ], + [ + "check if bj's takes reservations", + "accept_reservations" + ], + [ + "does bj's take reservations", + "accept_reservations" + ], + [ + "will bj's take reservations", + "accept_reservations" + ], + [ + "do you know if i can make reservations at bj's", + "accept_reservations" + ], + [ + "tell me if the new york restaurant takes reservations", + "accept_reservations" + ], + [ + "can i reserve tables at the new york restaurant", + "accept_reservations" + ], + [ + "i want to know if the new york restaurant takes reservations", + "accept_reservations" + ], + [ + "does the new york restaurant take reservations", + "accept_reservations" + ], + [ + "is it possible to make reservations at the new york restaurant", + "accept_reservations" + ], + [ + "do you have any idea if the flying wing does reservations", + "accept_reservations" + ], + [ + "does village inn let you make reservations", + "accept_reservations" + ], + [ + "is it possible to get reservations at ihop", + "accept_reservations" + ], + [ + "is it possible to reserve a table at white castle", + "accept_reservations" + ], + [ + "do you think they'll let me reserve a table at the olive garden", + "accept_reservations" + ], + [ + "do they take reservations at applebeesi", + "accept_reservations" + ], + [ + "does applebees do reservations", + "accept_reservations" + ], + [ + "can applebees take reservations", + "accept_reservations" + ], + [ + "can i get reservations at applebees", + "accept_reservations" + ], + [ + "does applebees take reservations", + "accept_reservations" + ], + [ + "tell me if taco bell takes reservations", + "accept_reservations" + ], + [ + "any clue as to if taco bell takes reservations", + "accept_reservations" + ], + [ + "do you know if taco bell takes reservations", + "accept_reservations" + ], + [ + "any idea as to if taco bell takes reservations", + "accept_reservations" + ], + [ + "do you know if l'arpege will ask for reservations", + "accept_reservations" + ], + [ + "will we have to make reservations for roca", + "accept_reservations" + ], + [ + "does osteria francescana take reservations", + "accept_reservations" + ], + [ + "do you have any idea if central needs reservations", + "accept_reservations" + ], + [ + "eleven madison park takes reservations right", + "accept_reservations" + ], + [ + "where is my order now", + "order_status" + ], + [ + "tell me all updates about my order's status", + "order_status" + ], + [ + "is my order on its way or what's going on", + "order_status" + ], + [ + "how is my order doing right now", + "order_status" + ], + [ + "locate my package", + "order_status" + ], + [ + "can you monitor my package's progress", + "order_status" + ], + [ + "track my order", + "order_status" + ], + [ + "tell me where my package is currently", + "order_status" + ], + [ + "where is my package en route", + "order_status" + ], + [ + "give me the status of my order", + "order_status" + ], + [ + "when will i get my order", + "order_status" + ], + [ + "tell me where my order is", + "order_status" + ], + [ + "what is the status of the order i placed with you yesterday", + "order_status" + ], + [ + "what's the updated status of my order", + "order_status" + ], + [ + "can you help with delivery tracking", + "order_status" + ], + [ + "i need a delivery tracked", + "order_status" + ], + [ + "i need to track my order", + "order_status" + ], + [ + "i placed an order and i need it tracked", + "order_status" + ], + [ + "could you track an order for me", + "order_status" + ], + [ + "has my package been sent", + "order_status" + ], + [ + "what time is my package getting here", + "order_status" + ], + [ + "how's my amazon order doing", + "order_status" + ], + [ + "i need to track a package", + "order_status" + ], + [ + "i want to track a package i should be getting", + "order_status" + ], + [ + "please track my order", + "order_status" + ], + [ + "can you tell me when my item will get here", + "order_status" + ], + [ + "can you tell me where my item is", + "order_status" + ], + [ + "what's up with my order", + "order_status" + ], + [ + "are they any updates on my order", + "order_status" + ], + [ + "i need to track the status of my order", + "order_status" + ], + [ + "i'm struggling to remind myself the pin number to my card", + "pin_change" + ], + [ + "i'm having trouble remembering the pin number to my card", + "pin_change" + ], + [ + "the pin number to my card has been forgotten", + "pin_change" + ], + [ + "i don't remember the pin number to my card", + "pin_change" + ], + [ + "i do not recall the pin number to my card", + "pin_change" + ], + [ + "i would like to change the name on my checking account", + "pin_change" + ], + [ + "i would like to change the name on my credit card account", + "pin_change" + ], + [ + "i would like to change the name on my first hawaiian bank account", + "pin_change" + ], + [ + "i would like to change the name on my first bankcard account", + "pin_change" + ], + [ + "i would like to change the name on my capital one account", + "pin_change" + ], + [ + "change the pin on my savings account to 1234", + "pin_change" + ], + [ + "i want to change my savings account pin to 1234", + "pin_change" + ], + [ + "make 1234 a new pin for my savings account", + "pin_change" + ], + [ + "make 1234 the pin on my savings account", + "pin_change" + ], + [ + "can you make 1234 the pin for my savings account", + "pin_change" + ], + [ + "make my pin 1234 for my checking account", + "pin_change" + ], + [ + "go my to checking account and switch my pin to 1234", + "pin_change" + ], + [ + "access my checking account and update my pin to 1234", + "pin_change" + ], + [ + "correct my account pin to 1234 on my checking account", + "pin_change" + ], + [ + "modify my account pin to 1234 on my checking account", + "pin_change" + ], + [ + "tell me the pin number for my checking account", + "pin_change" + ], + [ + "please give me the pin number for my checking account", + "pin_change" + ], + [ + "i need the pin number for my checking account", + "pin_change" + ], + [ + "does my checking account have a pin number", + "pin_change" + ], + [ + "what's the pin number for my checking account", + "pin_change" + ], + [ + "change the code of my savings account to be 1234", + "pin_change" + ], + [ + "alter the pin on my savings account to be 1234", + "pin_change" + ], + [ + "what exactly is my pin", + "pin_change" + ], + [ + "how do i change the account pin number for me", + "pin_change" + ], + [ + "please tell me how do i change the account pin number", + "pin_change" + ], + [ + "good speaking to you", + "goodbye" + ], + [ + "it was really awesome to talk to you", + "goodbye" + ], + [ + "it was great to speak with you", + "goodbye" + ], + [ + "it was great to talk to you", + "goodbye" + ], + [ + "bye bye then", + "goodbye" + ], + [ + "it was very good to talk to you", + "goodbye" + ], + [ + "good bye then", + "goodbye" + ], + [ + "bye", + "goodbye" + ], + [ + "regards", + "goodbye" + ], + [ + "catch you later", + "goodbye" + ], + [ + "great talk, thanks", + "goodbye" + ], + [ + "later", + "goodbye" + ], + [ + "goodbye", + "goodbye" + ], + [ + "see you later", + "goodbye" + ], + [ + "enjoy your day, goodbye", + "goodbye" + ], + [ + "thank you goodbye", + "goodbye" + ], + [ + "have a good day, bye", + "goodbye" + ], + [ + "that will be all have a nice day!", + "goodbye" + ], + [ + "i enjoyed talking to you, bye", + "goodbye" + ], + [ + "it was great talking to you", + "goodbye" + ], + [ + "nice seeing you bye", + "goodbye" + ], + [ + "it was nice to chat", + "goodbye" + ], + [ + "it was a pleasure talking to you", + "goodbye" + ], + [ + "ok good chatting goodbye", + "goodbye" + ], + [ + "thanks bye bye!", + "goodbye" + ], + [ + "that's all i need, i'm going now", + "goodbye" + ], + [ + "talk to you soon, bye!", + "goodbye" + ], + [ + "thanks for your help, goodbye!", + "goodbye" + ], + [ + "good bye", + "goodbye" + ], + [ + "signing off", + "goodbye" + ], + [ + "why is my bank account locked", + "account_blocked" + ], + [ + "how do i unlock my bank account", + "account_blocked" + ], + [ + "can you unlock my bank account", + "account_blocked" + ], + [ + "how did my bank account get frozen", + "account_blocked" + ], + [ + "can you help me unlock my bank account", + "account_blocked" + ], + [ + "call my bank and ask them why my account is frozen", + "account_blocked" + ], + [ + "check with my bank to see why my account is frozen", + "account_blocked" + ], + [ + "do you know why my bank account is frozen", + "account_blocked" + ], + [ + "why did my bank place a hold on my bank account", + "account_blocked" + ], + [ + "are there any problems with my bank account", + "account_blocked" + ], + [ + "did someone who is unauthorized try to get into my bank account", + "account_blocked" + ], + [ + "how can i unfreeze my bank account", + "account_blocked" + ], + [ + "why is there a stop on my deposit account", + "account_blocked" + ], + [ + "why can't i use my money market account", + "account_blocked" + ], + [ + "why is there a delay on my checking account", + "account_blocked" + ], + [ + "why is my checking account not working", + "account_blocked" + ], + [ + "what could cause a hold on my savings account", + "account_blocked" + ], + [ + "what caused a hold on my us bank account", + "account_blocked" + ], + [ + "can you check and see why us bank put a hold on my account", + "account_blocked" + ], + [ + "why does us bank have a hold on my account", + "account_blocked" + ], + [ + "reasons that us bank would place a hold on my account", + "account_blocked" + ], + [ + "check to see why us bank placed a hold on my account", + "account_blocked" + ], + [ + "is there a problem with my account, it appears to be blocked", + "account_blocked" + ], + [ + "what is up with my account, why is it blocked", + "account_blocked" + ], + [ + "there seems to be an issue with my account", + "account_blocked" + ], + [ + "can you help me unblock my account", + "account_blocked" + ], + [ + "can you check what the problem with my account is, it seems to b e blocked", + "account_blocked" + ], + [ + "is there a reason you put a hold on my chase account", + "account_blocked" + ], + [ + "why can't i access my chase account", + "account_blocked" + ], + [ + "how come my chase account has a hold on it", + "account_blocked" + ], + [ + "i'd like to know what song this is", + "what_song" + ], + [ + "what is this song name", + "what_song" + ], + [ + "i need to know this song", + "what_song" + ], + [ + "what is the name of this song that's on right now", + "what_song" + ], + [ + "i need to know the title of this song", + "what_song" + ], + [ + "find out what song is currently on the speakers", + "what_song" + ], + [ + "look up the name of this song", + "what_song" + ], + [ + "can you identify this song for me", + "what_song" + ], + [ + "tell me what this song is called", + "what_song" + ], + [ + "please identify the song we're currently listening to", + "what_song" + ], + [ + "what is the title of the song we're listening to right now", + "what_song" + ], + [ + "look up the song that's on right now", + "what_song" + ], + [ + "can you identify this song that's playing", + "what_song" + ], + [ + "find out what song this is", + "what_song" + ], + [ + "i need to know what song this is that we're listening to", + "what_song" + ], + [ + "tell me the song that is currently playing", + "what_song" + ], + [ + "can you identify this song playing through the speaker right now", + "what_song" + ], + [ + "tell me what this song is called that's playing", + "what_song" + ], + [ + "what is the title of this song", + "what_song" + ], + [ + "what is this song called", + "what_song" + ], + [ + "what song is currently playing", + "what_song" + ], + [ + "what is the information on this song", + "what_song" + ], + [ + "what song is this one", + "what_song" + ], + [ + "on the speaker do you know what song is on", + "what_song" + ], + [ + "on the speaker what song is playing", + "what_song" + ], + [ + "do you know what song is playing on the speaker", + "what_song" + ], + [ + "at the moment what song is playing on the speaker", + "what_song" + ], + [ + "what is playing on the speaker at the moment", + "what_song" + ], + [ + "who is the singer on the speaker now", + "what_song" + ], + [ + "what kind of music on the speaker now", + "what_song" + ], + [ + "will i be charged transaction fees if i use my american card internationally", + "international_fees" + ], + [ + "will i incur transaction fees if i use my american card internationally", + "international_fees" + ], + [ + "do i have transaction fees if i use my american card internationally", + "international_fees" + ], + [ + "could you find out if my bank charges transaction fees on my american card if use internationally", + "international_fees" + ], + [ + "will the bank charge transaction fees if i use my american card internationally", + "international_fees" + ], + [ + "do i get charged extra for using my card in portland", + "international_fees" + ], + [ + "will i get charged for using my credit card in portland", + "international_fees" + ], + [ + "if i'm in portland can i still use my card without getting charged extra", + "international_fees" + ], + [ + "is there a fee for using my card in portland", + "international_fees" + ], + [ + "does using my card in portland charge me extra", + "international_fees" + ], + [ + "what are the transaction fees associated with my discover card if i am in rome", + "international_fees" + ], + [ + "how many transaction fees are there when i use my discover card in rome", + "international_fees" + ], + [ + "are there transaction fees for discover cards used in rome", + "international_fees" + ], + [ + "will using a discover card in rome cause transaction fees", + "international_fees" + ], + [ + "do i have transaction fees when i use my discover card in rome", + "international_fees" + ], + [ + "are there transaction fees using my discover if i'm in cuba", + "international_fees" + ], + [ + "when i go to cuba will there be a transaction fee for using my discover card", + "international_fees" + ], + [ + "is there a fee to use my card in france", + "international_fees" + ], + [ + "will i be charged a transaction fee on my discover card in cuba", + "international_fees" + ], + [ + "is there a charge to use my card in france", + "international_fees" + ], + [ + "if i use my discover card in cuba are there transaction fees", + "international_fees" + ], + [ + "are there transaction fees in cuba for using my discover card", + "international_fees" + ], + [ + "so i get charged if i use my card in france", + "international_fees" + ], + [ + "is there an international charge for using my card in france", + "international_fees" + ], + [ + "is there a fee if i use my card in france", + "international_fees" + ], + [ + "is there a charge to use my card in croatia", + "international_fees" + ], + [ + "in x, will i be charged to use my card", + "international_fees" + ], + [ + "in x, what is the charge if i use my card", + "international_fees" + ], + [ + "if i use my card in x, will there be a charge", + "international_fees" + ], + [ + "will it cost me anything to use my card in turin", + "international_fees" + ], + [ + "what was the date of my last car appointment", + "last_maintenance" + ], + [ + "was my car in the shop this past week", + "last_maintenance" + ], + [ + "how many weeks ago was my car in the shop", + "last_maintenance" + ], + [ + "did i get my car inspected recently", + "last_maintenance" + ], + [ + "i cannot remember when i last took my car to the shop", + "last_maintenance" + ], + [ + "did i bring my car to the shop last week", + "last_maintenance" + ], + [ + "when did i get my car inspected last", + "last_maintenance" + ], + [ + "give me the date that i last got my car checked", + "last_maintenance" + ], + [ + "did i take my car to the mechanics recently", + "last_maintenance" + ], + [ + "tell me when i got my car checked last", + "last_maintenance" + ], + [ + "when did i last take my car to the shop", + "last_maintenance" + ], + [ + "give me an exact date of when i took my car to the mechanic", + "last_maintenance" + ], + [ + "remind me of the last date that i got my car checked", + "last_maintenance" + ], + [ + "when was my last visit to the car shop", + "last_maintenance" + ], + [ + "when was my car last in the shop", + "last_maintenance" + ], + [ + "how long ago did i take my car to the shop", + "last_maintenance" + ], + [ + "how long has it been since i last took my car to the shop", + "last_maintenance" + ], + [ + "when did i take my car to the shop last", + "last_maintenance" + ], + [ + "give me the date of my last oil change", + "last_maintenance" + ], + [ + "tell me when i last had my oil changed", + "last_maintenance" + ], + [ + "when was my oil last changed", + "last_maintenance" + ], + [ + "what day did i last take my car to the shop", + "last_maintenance" + ], + [ + "have i recently had an oil change", + "last_maintenance" + ], + [ + "what was the date of the last time i took my car to the shop", + "last_maintenance" + ], + [ + "what day did i last take my car in", + "last_maintenance" + ], + [ + "tell me when my last oil change was", + "last_maintenance" + ], + [ + "i last got my oil changed when", + "last_maintenance" + ], + [ + "what day did i last have the oil in my car changed", + "last_maintenance" + ], + [ + "what was the date of my last oil change", + "last_maintenance" + ], + [ + "i'd like to know the last time my car got looked at", + "last_maintenance" + ], + [ + "are there meetings scheduled for today", + "meeting_schedule" + ], + [ + "check today's calendar for meetings", + "meeting_schedule" + ], + [ + "check my schedule for meetings today", + "meeting_schedule" + ], + [ + "list meetings on calendar for today", + "meeting_schedule" + ], + [ + "exactly what time is my meeting with robin scheduled for on", + "meeting_schedule" + ], + [ + "for what time is my meeting with marketing scheduled", + "meeting_schedule" + ], + [ + "what time is my meeting with design team scheduled for", + "meeting_schedule" + ], + [ + "when is my meeting with infrastructure", + "meeting_schedule" + ], + [ + "when is my meeting with invoicing scheduled", + "meeting_schedule" + ], + [ + "is the meeting with lisa today", + "meeting_schedule" + ], + [ + "are there meetings from 1 to 5 pm", + "meeting_schedule" + ], + [ + "when for i meet jane for our meeting", + "meeting_schedule" + ], + [ + "tell me if i have a meeting with liz today", + "meeting_schedule" + ], + [ + "is there a meeting with sam today", + "meeting_schedule" + ], + [ + "do i have a meeting with paul today", + "meeting_schedule" + ], + [ + "is there any meetings from 5 to 6 pm", + "meeting_schedule" + ], + [ + "when is my meeting with jim scheduled for", + "meeting_schedule" + ], + [ + "are there any meetings between 2 and 5 pm", + "meeting_schedule" + ], + [ + "is it possible i have a meeting with kim today", + "meeting_schedule" + ], + [ + "my meeting with alice is scheduled for when", + "meeting_schedule" + ], + [ + "when is my meeting with jack for", + "meeting_schedule" + ], + [ + "when is my meeting with ann", + "meeting_schedule" + ], + [ + "do i have any meetings between 1 and 8 pm", + "meeting_schedule" + ], + [ + "i need to know if i have meetings from 3 to 6 pm", + "meeting_schedule" + ], + [ + "do i have any meetings scheduled today", + "meeting_schedule" + ], + [ + "give me a summary of today's meetings", + "meeting_schedule" + ], + [ + "tell me when today's meeting is supposed to happen", + "meeting_schedule" + ], + [ + "what time is today's meeting", + "meeting_schedule" + ], + [ + "check the start time of the meeting scheduled for today", + "meeting_schedule" + ], + [ + "am i supposed to attend any meetings today", + "meeting_schedule" + ], + [ + "what food do you need to make lasagna", + "ingredients_list" + ], + [ + "what ingredients do you need to make lasagna", + "ingredients_list" + ], + [ + "what ingredients are needed to make lasgana", + "ingredients_list" + ], + [ + "what is needed to make lasagna", + "ingredients_list" + ], + [ + "what is needed to cook lasagna", + "ingredients_list" + ], + [ + "give me a recipe for tacos", + "ingredients_list" + ], + [ + "what ingredients are in tacos", + "ingredients_list" + ], + [ + "tell me what's in tacos", + "ingredients_list" + ], + [ + "what's a good recipe foe tacos", + "ingredients_list" + ], + [ + "tell me the ingredients for making tom yum", + "ingredients_list" + ], + [ + "i want to know the ingredients for making pizza", + "ingredients_list" + ], + [ + "let me know the ingredients i will need for pasta making", + "ingredients_list" + ], + [ + "what ingredients are necessary to make spaghetti carbonara", + "ingredients_list" + ], + [ + "what do i need to use to make lasagna", + "ingredients_list" + ], + [ + "how much flour do i need for a strawberry cake", + "ingredients_list" + ], + [ + "tell me the ingredients to make an apple pie", + "ingredients_list" + ], + [ + "what ingredients are in beef jerkey", + "ingredients_list" + ], + [ + "what ingredients does agor agor need", + "ingredients_list" + ], + [ + "what do i need to make authentic kimchi", + "ingredients_list" + ], + [ + "what do i need to make macaroni", + "ingredients_list" + ], + [ + "what do i need to buy for spaghetti", + "ingredients_list" + ], + [ + "what am i gonna need for sushi", + "ingredients_list" + ], + [ + "what ingredients do i use for pork belly", + "ingredients_list" + ], + [ + "what ingredients are in filet mignon", + "ingredients_list" + ], + [ + "let me know what ingredients i need to make pasta", + "ingredients_list" + ], + [ + "what do i need to make pasta", + "ingredients_list" + ], + [ + "give me a list of ingredients for making pasta", + "ingredients_list" + ], + [ + "pull up everything i need to make a pasta dish", + "ingredients_list" + ], + [ + "tell me all the things i need to buy to make pasta", + "ingredients_list" + ], + [ + "what do i need to make brownies", + "ingredients_list" + ], + [ + "i want to report fraudulent activity on my navy federal card", + "report_fraud" + ], + [ + "i would like to report fraudulent activity on my chase card", + "report_fraud" + ], + [ + "i need to report fraudulent activity on my usaa card", + "report_fraud" + ], + [ + "i have to report fraudulent activity on my bank of the west card", + "report_fraud" + ], + [ + "i have to report fraudulent activity the bank of america card", + "report_fraud" + ], + [ + "i seem to have a purchase that i didn't make from olive garden on my account", + "report_fraud" + ], + [ + "my online bill has some items that i didn't purchase from penneys", + "report_fraud" + ], + [ + "my account shows a transaction that i didn't make from foot locker", + "report_fraud" + ], + [ + "my bill shows a purchase from payless shoes but i didn't buy anything", + "report_fraud" + ], + [ + "i have some charges on my account from old navy that aren't mine", + "report_fraud" + ], + [ + "this charge is bs", + "report_fraud" + ], + [ + "i have a bogus transaction from amazon on my account", + "report_fraud" + ], + [ + "i have a fraudulent buy from dave's video on my account", + "report_fraud" + ], + [ + "i have a crap transaction from guitar center on my account", + "report_fraud" + ], + [ + "i think this transaction is bogus", + "report_fraud" + ], + [ + "i don't remember buying this", + "report_fraud" + ], + [ + "i have a bs transaction from ebay on my account", + "report_fraud" + ], + [ + "i've got a fraudulent purchase from kayak on my account", + "report_fraud" + ], + [ + "do i have a fraudulent transaction on my account", + "report_fraud" + ], + [ + "i'm pretty sure i have a fraudulent transaction on my account", + "report_fraud" + ], + [ + "there's a false charge on my account from mcdonald's", + "report_fraud" + ], + [ + "i think there's a fraudulent charge from mcdonald's on my account", + "report_fraud" + ], + [ + "i think someone jacked my bank account", + "report_fraud" + ], + [ + "i saw suspicious activity on my bank account", + "report_fraud" + ], + [ + "someone else used my account to buy stuff from mcdonald's", + "report_fraud" + ], + [ + "there's a messed up transaction on my account from mcdonald's", + "report_fraud" + ], + [ + "i saw a fraudulent transaction", + "report_fraud" + ], + [ + "i have a false charge on my account from mcdonald's", + "report_fraud" + ], + [ + "who do i contact to report fraud on my visa", + "report_fraud" + ], + [ + "there has been unauthorized use of my visa", + "report_fraud" + ], + [ + "how many teaspoons will make one tablespoon", + "measurement_conversion" + ], + [ + "i need the conversion between a cup and a tablespoon", + "measurement_conversion" + ], + [ + "inform me how many pounds are in 10 kilos", + "measurement_conversion" + ], + [ + "i wanna know how many pounds are in 10 kilos", + "measurement_conversion" + ], + [ + "how do you convert kilos to pounds", + "measurement_conversion" + ], + [ + "how many teaspoons is one tablespoon", + "measurement_conversion" + ], + [ + "i need to convert kilos to pounds", + "measurement_conversion" + ], + [ + "i need to know the conversion between teaspoons and tablespoons", + "measurement_conversion" + ], + [ + "how many pounds are in 10 kilos", + "measurement_conversion" + ], + [ + "can you assist me to convert kilos to pounds", + "measurement_conversion" + ], + [ + "let me know how many pounds are in 10 kilos", + "measurement_conversion" + ], + [ + "give me the conversion between ounces and cups", + "measurement_conversion" + ], + [ + "help me convert kilos to pounds", + "measurement_conversion" + ], + [ + "i need to know how many pounds are in 10 kilos", + "measurement_conversion" + ], + [ + "i want to convert kilos to pounds", + "measurement_conversion" + ], + [ + "how can i convert centimeters to inches", + "measurement_conversion" + ], + [ + "how would i change from centimeters to inches", + "measurement_conversion" + ], + [ + "what can i use to convert from centimeters to inches", + "measurement_conversion" + ], + [ + "how can you convert centimeters to inches", + "measurement_conversion" + ], + [ + "how could we convert centimeters to inches", + "measurement_conversion" + ], + [ + "how does measurement slugs convert to measurement lb", + "measurement_conversion" + ], + [ + "how does measurement a convert to measurement b", + "measurement_conversion" + ], + [ + "where can i find measurement conversions", + "measurement_conversion" + ], + [ + "how many ounces are in 4 pounds", + "measurement_conversion" + ], + [ + "how many grams are in 9 kilograms", + "measurement_conversion" + ], + [ + "how many centimeters are in 12 meters", + "measurement_conversion" + ], + [ + "how many inches are in 36 feet", + "measurement_conversion" + ], + [ + "how many millimeters are in 21 centimeters", + "measurement_conversion" + ], + [ + "how many milliliters are in 2 gallons", + "measurement_conversion" + ], + [ + "how many liters are in 1 gallon", + "measurement_conversion" + ], + [ + "i would like it if you would turn the bedroom lights on low until i'm finished reading", + "smart_home" + ], + [ + "i need you to turn the bathroom lights on", + "smart_home" + ], + [ + "set the ceiling fan to low", + "smart_home" + ], + [ + "start the dishwasher", + "smart_home" + ], + [ + "turn on the tv on channel 6", + "smart_home" + ], + [ + "turn on the microwave for 3 minutes", + "smart_home" + ], + [ + "on the tv, turn on", + "smart_home" + ], + [ + "set the tv on", + "smart_home" + ], + [ + "how is the temperature at ac", + "smart_home" + ], + [ + "the tv turn it on", + "smart_home" + ], + [ + "oven set it to 350", + "smart_home" + ], + [ + "the temperature at ac is what", + "smart_home" + ], + [ + "tv turn it on", + "smart_home" + ], + [ + "350 set the oven", + "smart_home" + ], + [ + "the oven be set at 350", + "smart_home" + ], + [ + "turn the oven to 350", + "smart_home" + ], + [ + "at ac, what's the temperature like", + "smart_home" + ], + [ + "ac temperature is at what", + "smart_home" + ], + [ + "turn on the tv", + "smart_home" + ], + [ + "what is it like the temperature at ac", + "smart_home" + ], + [ + "to 350, set the oven", + "smart_home" + ], + [ + "please turn the lights down low", + "smart_home" + ], + [ + "can you adjust the lights down", + "smart_home" + ], + [ + "i want the light less bright please", + "smart_home" + ], + [ + "make the lights darker", + "smart_home" + ], + [ + "please set the oven to 350 f", + "smart_home" + ], + [ + "please set the temperature to 70 f", + "smart_home" + ], + [ + "set the oven temperature to 350", + "smart_home" + ], + [ + "i need the temperature set at 70 f", + "smart_home" + ], + [ + "turn up the oven temperature to 350", + "smart_home" + ], + [ + "i really need you to find me a hotel with good reviews in phoenix", + "book_hotel" + ], + [ + "i wanna book a place to stay in phoenix from the 5th to the 9th of march", + "book_hotel" + ], + [ + "i wanna find a hotel with good reviews in phoenix", + "book_hotel" + ], + [ + "i want a hotel in phoenix near chase field from january 4th to the 8th", + "book_hotel" + ], + [ + "i would like to book a place to stay in phoenix from the 5th to the 9th of march", + "book_hotel" + ], + [ + "i need a hotel in phoenix near chase field from january 4th to the 8th", + "book_hotel" + ], + [ + "i need a hotel room that is big enough for eleven people from march 10th to the 15th in phoenix", + "book_hotel" + ], + [ + "i must get a hotel in phoenix near chase field from january 4th to the 8th", + "book_hotel" + ], + [ + "go ahead and find me a hotel with good reviews in phoenix", + "book_hotel" + ], + [ + "find me a hotel with good reviews in phoenix", + "book_hotel" + ], + [ + "i need you to find me a hotel with good reviews in phoenix", + "book_hotel" + ], + [ + "get me a hotel in phoenix near chase field from january 4th to the 8th", + "book_hotel" + ], + [ + "i need to get a hotel in phoenix near chase field from january 4th to the 8th", + "book_hotel" + ], + [ + "please book me a place to stay in phoenix from the 5th to the 9th of march", + "book_hotel" + ], + [ + "i need to book a place to stay in phoenix from the 5th to the 9th of march", + "book_hotel" + ], + [ + "i really gotta book a place to stay in phoenix from the 5th to the 9th of march", + "book_hotel" + ], + [ + "i need to get a hotel room that is big enough for eleven people from march 10th to the 15th in phoenix", + "book_hotel" + ], + [ + "can you find me a reputable hotel in honolulu", + "book_hotel" + ], + [ + "i want a hotel with good review in honolulu, can you find one", + "book_hotel" + ], + [ + "find for me a hotel with great reviews in ho chi minh", + "book_hotel" + ], + [ + "i need your help to find a good reviewed hotel in washington", + "book_hotel" + ], + [ + "can you find me a good reviewed hotel in japan", + "book_hotel" + ], + [ + "i need a hotel between january 1st through 3rd in jacksonville near the stadium", + "book_hotel" + ], + [ + "find me a place to stay in jacksonville near the stadium from january 1st through 3rd", + "book_hotel" + ], + [ + "book me a hotel in jacksonville near the stadium from january 1st to 3rd", + "book_hotel" + ], + [ + "id like a room in jacksonville near the stadium between january 1st to 3rd", + "book_hotel" + ], + [ + "find me a room near the jacksonville stadium between january 1st through january 3rd", + "book_hotel" + ], + [ + "get me a hotel room big enough for 4 people from may 3 to may 5 in boston", + "book_hotel" + ], + [ + "i'm travelling to boston on march 2 until march 4 please make a hotel reservation for me", + "book_hotel" + ], + [ + "i need a hotel room for 4 people from may 3 to may 5 in boston", + "book_hotel" + ], + [ + "pull up the map and show my location", + "current_location" + ], + [ + "where am i currently", + "current_location" + ], + [ + "where is my current location", + "current_location" + ], + [ + "what's my map location", + "current_location" + ], + [ + "find my current location", + "current_location" + ], + [ + "please tell me the current location", + "current_location" + ], + [ + "i want to see my location on the map", + "current_location" + ], + [ + "what's the location where i am", + "current_location" + ], + [ + "can you tell me my current location", + "current_location" + ], + [ + "where am i located on the map", + "current_location" + ], + [ + "where am i currently located", + "current_location" + ], + [ + "show my location on the map", + "current_location" + ], + [ + "i am currently located in what town", + "current_location" + ], + [ + "my current location is what", + "current_location" + ], + [ + "give me my location", + "current_location" + ], + [ + "tell me where i am", + "current_location" + ], + [ + "whats my location", + "current_location" + ], + [ + "show my position on the map", + "current_location" + ], + [ + "where is my location", + "current_location" + ], + [ + "current location please", + "current_location" + ], + [ + "display my location on the map", + "current_location" + ], + [ + "where am i", + "current_location" + ], + [ + "find out where i am on the map", + "current_location" + ], + [ + "where am i on the map", + "current_location" + ], + [ + "show me where i am on the map please", + "current_location" + ], + [ + "open map and pin point my location", + "current_location" + ], + [ + "show me my location", + "current_location" + ], + [ + "what could help me locate myself", + "current_location" + ], + [ + "i need assistance with my current location", + "current_location" + ], + [ + "where would i search for my location", + "current_location" + ], + [ + "what is the weather", + "weather" + ], + [ + "current weather", + "weather" + ], + [ + "tell me the weather", + "weather" + ], + [ + "what's the weather like today", + "weather" + ], + [ + "what is the weather like", + "weather" + ], + [ + "show me what the weather is like", + "weather" + ], + [ + "let's take a look at the weather", + "weather" + ], + [ + "how is the weather looking in seattle", + "weather" + ], + [ + "how's the weather in seattle", + "weather" + ], + [ + "what is the state of the weather in seattle", + "weather" + ], + [ + "what is the weather forecast looking like for seattle", + "weather" + ], + [ + "what are the weather conditions like in seattle", + "weather" + ], + [ + "what is the weather doing now", + "weather" + ], + [ + "what kind of weather can i expect now", + "weather" + ], + [ + "tell me what the weather is looking like", + "weather" + ], + [ + "how is the weather", + "weather" + ], + [ + "can you tell me the weather forecast", + "weather" + ], + [ + "could you tell me what the weather is in austin", + "weather" + ], + [ + "what is the weather doing in austin", + "weather" + ], + [ + "what about the weather in austin", + "weather" + ], + [ + "how is the weather in austin", + "weather" + ], + [ + "what is happening with the weather in austin", + "weather" + ], + [ + "how is that weather", + "weather" + ], + [ + "how does the weather feel", + "weather" + ], + [ + "need to know the weather now", + "weather" + ], + [ + "give weather update now", + "weather" + ], + [ + "want to know the weather", + "weather" + ], + [ + "tell me the weather for today", + "weather" + ], + [ + "what is the current weather like", + "weather" + ], + [ + "las vegas weather today", + "weather" + ], + [ + "tell me what my federal taxes amount to", + "taxes" + ], + [ + "what taxes do i owe", + "taxes" + ], + [ + "lets talk about what my federal taxes look like", + "taxes" + ], + [ + "what taxes will i owe from my income", + "taxes" + ], + [ + "whats the total of my taxes", + "taxes" + ], + [ + "what do my federal taxes look like", + "taxes" + ], + [ + "how much are the taxes on my income", + "taxes" + ], + [ + "please share my federal taxes total with me", + "taxes" + ], + [ + "how much in taxes will i owe", + "taxes" + ], + [ + "what do my state taxes look like", + "taxes" + ], + [ + "whats the total of taxes from my income", + "taxes" + ], + [ + "tell me how much my state taxes amount to", + "taxes" + ], + [ + "whats the total of my federal taxes", + "taxes" + ], + [ + "look up how much my state taxes are", + "taxes" + ], + [ + "talk to me about the total of my state taxes", + "taxes" + ], + [ + "what am i paying in taxes", + "taxes" + ], + [ + "what is the total of my state taxes", + "taxes" + ], + [ + "how much do i owe the irs", + "taxes" + ], + [ + "how much do i pay the irs", + "taxes" + ], + [ + "do you know my state tax total", + "taxes" + ], + [ + "what's the amount of taxes for my income", + "taxes" + ], + [ + "how much are my taxes for my income", + "taxes" + ], + [ + "i pay how much of taxes with my income", + "taxes" + ], + [ + "how much is my state taxes", + "taxes" + ], + [ + "i need the data and price from my state taxes", + "taxes" + ], + [ + "do you know the price for my taxes in income", + "taxes" + ], + [ + "what is the amount of my state taxes", + "taxes" + ], + [ + "what is the price of my state taxes that i owe", + "taxes" + ], + [ + "do you know the total for taxes for my income", + "taxes" + ], + [ + "what should i squirrel away to pay in taxes", + "taxes" + ], + [ + "i must pay verizon what minimum amount on my bill", + "min_payment" + ], + [ + "what is the lowest amount i must pay on my verizon bill", + "min_payment" + ], + [ + "at a minimum, what must i pay on my verizon bill", + "min_payment" + ], + [ + "what is my minimum verizon bill payment", + "min_payment" + ], + [ + "what must i pay, at a minimum, on my verizon bill", + "min_payment" + ], + [ + "what's the least i can pay this month", + "min_payment" + ], + [ + "what is my amex minimum payment", + "min_payment" + ], + [ + "what's the minimum payment", + "min_payment" + ], + [ + "what is my minimum payment and when is it due", + "min_payment" + ], + [ + "is there a minimum payment i can make", + "min_payment" + ], + [ + "what is the lowest amount i can pay for my cellphone bill", + "min_payment" + ], + [ + "what is the lowest amount i can pay for my insurance bill", + "min_payment" + ], + [ + "what is the minimum i can pay on my credit card bill", + "min_payment" + ], + [ + "what is the lowest amount i can pay for my medical bill", + "min_payment" + ], + [ + "what is the minimum i can pay on my phone bill", + "min_payment" + ], + [ + "what is the minimum i can pay on my insurance bill", + "min_payment" + ], + [ + "what is the minimum i can pay on my electric bill", + "min_payment" + ], + [ + "what is the minimum i can pay on my gas bill", + "min_payment" + ], + [ + "what is the lowest amount i can pay for my hospital bill", + "min_payment" + ], + [ + "what is the lowest amount i can pay for my car bill", + "min_payment" + ], + [ + "what is the minimum i can pay on my cell phone bill", + "min_payment" + ], + [ + "what is the minimum i can pay on my water bill", + "min_payment" + ], + [ + "what is the minimum i can pay on my heating bill", + "min_payment" + ], + [ + "tell me the minimum i can pay on my utilities bill", + "min_payment" + ], + [ + "what is the minimum amount i can pay on my gas bill", + "min_payment" + ], + [ + "do you know the smallest amount i can pay on my water bill", + "min_payment" + ], + [ + "look up the lowest amount i can pay on my electricity bill", + "min_payment" + ], + [ + "what is the minimum payable amount for my rent bill this month", + "min_payment" + ], + [ + "what is the minimum payment on my water bill", + "min_payment" + ], + [ + "if i wanted to spend the lowest for my electric bill, then how much would it be", + "min_payment" + ], + [ + "set whisper mode to off", + "whisper_mode" + ], + [ + "switch off whisper mode", + "whisper_mode" + ], + [ + "switch whisper mode off", + "whisper_mode" + ], + [ + "turn whisper mode off", + "whisper_mode" + ], + [ + "whisper mode, please", + "whisper_mode" + ], + [ + "please start whisper mode", + "whisper_mode" + ], + [ + "switch over to whisper mode", + "whisper_mode" + ], + [ + "leave whisper mode", + "whisper_mode" + ], + [ + "revert from whisper mode", + "whisper_mode" + ], + [ + "whisper mode must be left", + "whisper_mode" + ], + [ + "change from whisper mode", + "whisper_mode" + ], + [ + "help to turn on whisper mode", + "whisper_mode" + ], + [ + "turn on whisper mode", + "whisper_mode" + ], + [ + "whisper mode", + "whisper_mode" + ], + [ + "start whisper mode", + "whisper_mode" + ], + [ + "go to whisper mode until this movie is over", + "whisper_mode" + ], + [ + "go to whisper mode until i say to go back to normal", + "whisper_mode" + ], + [ + "go into whisper mode until the plane lands", + "whisper_mode" + ], + [ + "go to whisper mode for one hour", + "whisper_mode" + ], + [ + "go to whisper mode until my morning alarm goes off", + "whisper_mode" + ], + [ + "make saound function operate in whisper mode", + "whisper_mode" + ], + [ + "change audio settings to the whisper option", + "whisper_mode" + ], + [ + "change audio to whisper mode", + "whisper_mode" + ], + [ + "i want to only use the whisper sound", + "whisper_mode" + ], + [ + "change sound setting to whisper", + "whisper_mode" + ], + [ + "change to something that's not whisper mode", + "whisper_mode" + ], + [ + "cancel whisper mode", + "whisper_mode" + ], + [ + "get out of whisper mode", + "whisper_mode" + ], + [ + "whisper mode, stop", + "whisper_mode" + ], + [ + "stop whisper mode", + "whisper_mode" + ], + [ + "stop what you're doing", + "cancel" + ], + [ + "this process needs to stop", + "cancel" + ], + [ + "stop this process", + "cancel" + ], + [ + "that was a mistake, undo that", + "cancel" + ], + [ + "ignore the previous command", + "cancel" + ], + [ + "forget what i told you to do", + "cancel" + ], + [ + "please cancel the last input", + "cancel" + ], + [ + "please stop the current process", + "cancel" + ], + [ + "can you end the current process", + "cancel" + ], + [ + "just stop talking", + "cancel" + ], + [ + "please stop talking", + "cancel" + ], + [ + "stop, just stop", + "cancel" + ], + [ + "you can stop talking ai", + "cancel" + ], + [ + "stop the process", + "cancel" + ], + [ + "can you turn off the process", + "cancel" + ], + [ + "stop talking", + "cancel" + ], + [ + "you can cancel the task", + "cancel" + ], + [ + "can you cancel that", + "cancel" + ], + [ + "can you cancel that request", + "cancel" + ], + [ + "could you cancel that request, please", + "cancel" + ], + [ + "can you cancel that request, please", + "cancel" + ], + [ + "can you cancel that, please", + "cancel" + ], + [ + "hush", + "cancel" + ], + [ + "be quiet", + "cancel" + ], + [ + "stop it now!", + "cancel" + ], + [ + "stop talking you are annoying", + "cancel" + ], + [ + "you need to shut it", + "cancel" + ], + [ + "stop processing", + "cancel" + ], + [ + "abort mission", + "cancel" + ], + [ + "stop speaking", + "cancel" + ], + [ + "are visas needed to travel to jamaica", + "international_visa" + ], + [ + "do i need a visa for south korea", + "international_visa" + ], + [ + "if i go to columbia, will i need a visa", + "international_visa" + ], + [ + "are visas required to go to cuba", + "international_visa" + ], + [ + "do i need to apply for a visa for my trip to india", + "international_visa" + ], + [ + "if i go to indonesia would i need a visa", + "international_visa" + ], + [ + "do i need a visa to travel to indonesia", + "international_visa" + ], + [ + "should i apply for a visa if i am traveling to mexico", + "international_visa" + ], + [ + "is a visa necessary for traveling to south africa", + "international_visa" + ], + [ + "if i want to travel to singapore do i need a visa", + "international_visa" + ], + [ + "do americans need visas in canada", + "international_visa" + ], + [ + "would i need a visa in taiwan", + "international_visa" + ], + [ + "i'd like to go to malaysia so do i need a visa", + "international_visa" + ], + [ + "is a travel visa needed for thailand", + "international_visa" + ], + [ + "what are the visa requirements for brazil", + "international_visa" + ], + [ + "is a travel visa required to visit paraguay", + "international_visa" + ], + [ + "does travelling to st petersburg require a travel visa", + "international_visa" + ], + [ + "should i get a travel visa if i want to go to guyana", + "international_visa" + ], + [ + "will i be able to visit peru without a travel visa", + "international_visa" + ], + [ + "if i want to go to x, do i need a travel visa", + "international_visa" + ], + [ + "can i get to cuba with this visa", + "international_visa" + ], + [ + "do i need a visa to get to puerto rico", + "international_visa" + ], + [ + "do i need a visa to go to colombia", + "international_visa" + ], + [ + "do i need a states visa to get to cuba", + "international_visa" + ], + [ + "do i need a us visa for cuba", + "international_visa" + ], + [ + "if i get a visa can i travel to japan", + "international_visa" + ], + [ + "do i need a visa if i'm going to san jose", + "international_visa" + ], + [ + "do i need a visa to travel outside of the us", + "international_visa" + ], + [ + "are visas for international travel", + "international_visa" + ], + [ + "can you travel outside of the united states without a visa", + "international_visa" + ], + [ + "do i need to get any shots before i travel to morocco", + "vaccines" + ], + [ + "do i need to get any shots before i travel to south africa", + "vaccines" + ], + [ + "do i need to get any shots before i travel to zimbabwe", + "vaccines" + ], + [ + "do i need to get any shots before i travel to liberia", + "vaccines" + ], + [ + "do i need to get any shots before i travel to spain", + "vaccines" + ], + [ + "are there any required shots to travel to astana", + "vaccines" + ], + [ + "what shots do i need if i'm travelling to odessa", + "vaccines" + ], + [ + "are there any shots i need to travel to karachi", + "vaccines" + ], + [ + "are there any required shots in indonesia", + "vaccines" + ], + [ + "what are the required shots in mozambique", + "vaccines" + ], + [ + "are more shots needed to travel to argentina", + "vaccines" + ], + [ + "what sorts of vaccinations should i get prior to a trip to hong kong", + "vaccines" + ], + [ + "before i embark on a trip to europe should i get more shots", + "vaccines" + ], + [ + "would you need more shots to go to mexico", + "vaccines" + ], + [ + "is vaccination necessary for travel to asia", + "vaccines" + ], + [ + "do you think my shots would be needed, before traveling to columbia", + "vaccines" + ], + [ + "will having my shots updated be a good idea, before i travel to south america", + "vaccines" + ], + [ + "should i have my shots up to date before i travel to the virgin islands", + "vaccines" + ], + [ + "if you were traveling to indonesia, as i am, would you have your shots updated before your visit", + "vaccines" + ], + [ + "are shots required before traveling to china", + "vaccines" + ], + [ + "does cuba require vaccines", + "vaccines" + ], + [ + "which vaccines are meant for cuba", + "vaccines" + ], + [ + "which vaccines will i need for cuba", + "vaccines" + ], + [ + "do i need a vaccine for the congo", + "vaccines" + ], + [ + "vaccines for my trip to cuba", + "vaccines" + ], + [ + "are there vaccinations needed if i go there", + "vaccines" + ], + [ + "would vaccinations be needed if i go here", + "vaccines" + ], + [ + "if i travel abroad, do i need vaccinations", + "vaccines" + ], + [ + "if i travel here, do i need vaccinations", + "vaccines" + ], + [ + "do i need vaccinations if i go this country", + "vaccines" + ], + [ + "i would like to know my vacation days balance", + "pto_balance" + ], + [ + "give me vacation days remaining, please", + "pto_balance" + ], + [ + "how many vacation days do i still have available", + "pto_balance" + ], + [ + "please tell me the exact number of days i have still for vacation", + "pto_balance" + ], + [ + "what's the number of vacation days i have left", + "pto_balance" + ], + [ + "what amount of vacation days do i have", + "pto_balance" + ], + [ + "what is the number of pto days i have left", + "pto_balance" + ], + [ + "what amount of pto days do i have left", + "pto_balance" + ], + [ + "what are the amount of vacation days i have", + "pto_balance" + ], + [ + "how much pto days do i have remaining", + "pto_balance" + ], + [ + "what number of days do i have for vacation", + "pto_balance" + ], + [ + "what is my remaining amount of pto days", + "pto_balance" + ], + [ + "what do my pto days amount to", + "pto_balance" + ], + [ + "what do my vacation days amount to", + "pto_balance" + ], + [ + "how many days of vacation do i have left", + "pto_balance" + ], + [ + "what day am i on on vacation and how much do i got left", + "pto_balance" + ], + [ + "how many vacation days are remaining on my time", + "pto_balance" + ], + [ + "how many days of vacation are left now", + "pto_balance" + ], + [ + "how many days on holiday do i have", + "pto_balance" + ], + [ + "can you see if i have any vacation days available for a request", + "pto_balance" + ], + [ + "how much vacation time have i earned", + "pto_balance" + ], + [ + "how much vacation time do i have", + "pto_balance" + ], + [ + "how many weeks of vacation time have i earned", + "pto_balance" + ], + [ + "how many weeks of vacation time do i have", + "pto_balance" + ], + [ + "how many days can i take for vacation", + "pto_balance" + ], + [ + "what is the balance on my vacation days", + "pto_balance" + ], + [ + "how many days are remaining on my vacation days", + "pto_balance" + ], + [ + "so i have any vacation days left", + "pto_balance" + ], + [ + "what is the year to date total on my vacation days", + "pto_balance" + ], + [ + "how many sick days do i have", + "pto_balance" + ], + [ + "how do i get downtown by foot", + "directions" + ], + [ + "how do i get to the subway by foot", + "directions" + ], + [ + "how do i get to the train by foot", + "directions" + ], + [ + "how do i get to central park by foot", + "directions" + ], + [ + "how do i get to the airport by foot", + "directions" + ], + [ + "where is the nearest wal mart", + "directions" + ], + [ + "i want directions to phoenix", + "directions" + ], + [ + "i must understand the nearest gas station to glendale", + "directions" + ], + [ + "i need some directions to phoenix", + "directions" + ], + [ + "give me directions to phoenix", + "directions" + ], + [ + "i must know the closest gas station to glendale", + "directions" + ], + [ + "where is the nearest fry's", + "directions" + ], + [ + "where is the nearest papa john's", + "directions" + ], + [ + "i would love to know the closest gas station to glendale", + "directions" + ], + [ + "get me directions to phoenix", + "directions" + ], + [ + "where is the nearest k mart", + "directions" + ], + [ + "where is the nearest circuit city", + "directions" + ], + [ + "let me know the nearest gas station to glendale", + "directions" + ], + [ + "where is the closest gas station to glendale", + "directions" + ], + [ + "where is the nearest movie theater to time' square", + "directions" + ], + [ + "where is the closest bathroom to the statue of liberty", + "directions" + ], + [ + "where is the closest mcdonald's to foxwoods casino", + "directions" + ], + [ + "where is the nearest marijuana dispensary to kentucky fried chicken", + "directions" + ], + [ + "where is the closest hospital to madison square garden", + "directions" + ], + [ + "where is the closest pharmacy", + "directions" + ], + [ + "show me the nearest gas station", + "directions" + ], + [ + "which hospital is nearest to me", + "directions" + ], + [ + "i need to know where the hospital closest to me is", + "directions" + ], + [ + "where is the nearest arco gas station to macdonalds", + "directions" + ], + [ + "find the closest cvs near galleria mall", + "directions" + ], + [ + "spell aaron", + "spelling" + ], + [ + "how do you spell aaron", + "spelling" + ], + [ + "spell the word aaron", + "spelling" + ], + [ + "correct spelling for aaron", + "spelling" + ], + [ + "spell aaron for me", + "spelling" + ], + [ + "i don't know how to spell apoplectic, can you tell me", + "spelling" + ], + [ + "what is the correct spelling of the word comity, since i do not know", + "spelling" + ], + [ + "do you know how to spell, bourgeois", + "spelling" + ], + [ + "how do you spell the word comity, i need to know", + "spelling" + ], + [ + "i need to know how to spell the word serendipity", + "spelling" + ], + [ + "can you tell me the correct spelling of liaison", + "spelling" + ], + [ + "what is the proper spelling of corporate", + "spelling" + ], + [ + "please tell me how to spell the word coup", + "spelling" + ], + [ + "i am not sure how to spell the word liaison", + "spelling" + ], + [ + "can you tell me how to spell the word schadenfreude, i don't know how it's spelt", + "spelling" + ], + [ + "do you know how to spell curiosity", + "spelling" + ], + [ + "spell curiosity for me", + "spelling" + ], + [ + "tell me how to spell curiosity", + "spelling" + ], + [ + "i need to know the proper spelling of curiosity", + "spelling" + ], + [ + "please tell me how curiosity is spelled", + "spelling" + ], + [ + "what's the proper way to spell \"helicopter", + "spelling" + ], + [ + "tell me how to spent \"frightened", + "spelling" + ], + [ + "can you spell \"fragile\" for me", + "spelling" + ], + [ + "can you spell out \"wonderful", + "spelling" + ], + [ + "i need to know how to spell \"miranda", + "spelling" + ], + [ + "i need help spelling \"exquisite", + "spelling" + ], + [ + "can you spell out \"annulment", + "spelling" + ], + [ + "how do you spell \"exactly", + "spelling" + ], + [ + "how do you spell \"montpelier", + "spelling" + ], + [ + "what's the right way to spell \"emolument", + "spelling" + ], + [ + "how are you doing", + "greeting" + ], + [ + "are you okay", + "greeting" + ], + [ + "what are you feeling today", + "greeting" + ], + [ + "is everything ok today", + "greeting" + ], + [ + "are you doing alright", + "greeting" + ], + [ + "hello, how's your day", + "greeting" + ], + [ + "hey there, how are you today", + "greeting" + ], + [ + "hello, how is it going", + "greeting" + ], + [ + "hi there, how are you doing", + "greeting" + ], + [ + "hey, how are you", + "greeting" + ], + [ + "hey, what's up", + "greeting" + ], + [ + "hello, how are you doing", + "greeting" + ], + [ + "hi, how are you", + "greeting" + ], + [ + "hi, how are you today", + "greeting" + ], + [ + "hello, how are things", + "greeting" + ], + [ + "hey there", + "greeting" + ], + [ + "hey, what's new", + "greeting" + ], + [ + "it is good to see you", + "greeting" + ], + [ + "i'd like to know how you are doing", + "greeting" + ], + [ + "hello there", + "greeting" + ], + [ + "tell me how you are doing", + "greeting" + ], + [ + "hello there, good morning", + "greeting" + ], + [ + "let me know how you are doing", + "greeting" + ], + [ + "well hi there", + "greeting" + ], + [ + "i want to know how you are doing", + "greeting" + ], + [ + "i need to know how you are doing today", + "greeting" + ], + [ + "hello there ai", + "greeting" + ], + [ + "will you tell me how the ai is doing", + "greeting" + ], + [ + "would you tell me how the ai is doing", + "greeting" + ], + [ + "hola!", + "greeting" + ], + [ + "so please reset your factory settings", + "reset_settings" + ], + [ + "i need your to reset to factory settings", + "reset_settings" + ], + [ + "now reset your factory settings", + "reset_settings" + ], + [ + "revert to the original configuration", + "reset_settings" + ], + [ + "change back to the factory set up", + "reset_settings" + ], + [ + "change all setting to original ones", + "reset_settings" + ], + [ + "please reset to factory settings", + "reset_settings" + ], + [ + "reset all settings to the factory settings", + "reset_settings" + ], + [ + "can you please revert to factory settings at this time", + "reset_settings" + ], + [ + "please remove current settings and go back to factory settings now", + "reset_settings" + ], + [ + "please reset to factory settings at once", + "reset_settings" + ], + [ + "i would like you to change the settings back to factory default now, please", + "reset_settings" + ], + [ + "adjust settings back to original factory settings immediately", + "reset_settings" + ], + [ + "can you reset your factory settings", + "reset_settings" + ], + [ + "could you please reset your factory settings", + "reset_settings" + ], + [ + "your factory settings need to be reset", + "reset_settings" + ], + [ + "go back to your manufacturers' settings", + "reset_settings" + ], + [ + "prioritize to the settings you started with", + "reset_settings" + ], + [ + "reset to your original settings", + "reset_settings" + ], + [ + "restart your actions with the original settings you came with", + "reset_settings" + ], + [ + "please rely on your original settings", + "reset_settings" + ], + [ + "can you return to the factory fresh settings", + "reset_settings" + ], + [ + "please return to default settings", + "reset_settings" + ], + [ + "revert to original settings", + "reset_settings" + ], + [ + "start over using factory setting", + "reset_settings" + ], + [ + "go back to the default settings please", + "reset_settings" + ], + [ + "revert to factory settings", + "reset_settings" + ], + [ + "go back to factory settings", + "reset_settings" + ], + [ + "please turn on factory settings", + "reset_settings" + ], + [ + "revert back to factory settings", + "reset_settings" + ], + [ + "tell me what your name is", + "what_is_your_name" + ], + [ + "what did they name you", + "what_is_your_name" + ], + [ + "hey, how do i call your attention", + "what_is_your_name" + ], + [ + "what's your name", + "what_is_your_name" + ], + [ + "give me your name so i can use you", + "what_is_your_name" + ], + [ + "how should i address you", + "what_is_your_name" + ], + [ + "what do i call you", + "what_is_your_name" + ], + [ + "what's your name anyway", + "what_is_your_name" + ], + [ + "tell me what to call you", + "what_is_your_name" + ], + [ + "can you tell me what you are called", + "what_is_your_name" + ], + [ + "what should you be called", + "what_is_your_name" + ], + [ + "what should i use when i refer to you", + "what_is_your_name" + ], + [ + "how do you say your name", + "what_is_your_name" + ], + [ + "what is your preferred name", + "what_is_your_name" + ], + [ + "what can i call you", + "what_is_your_name" + ], + [ + "what name do you go by", + "what_is_your_name" + ], + [ + "who do i have the pleasure of speaking with", + "what_is_your_name" + ], + [ + "may i have your name", + "what_is_your_name" + ], + [ + "who am i speaking with", + "what_is_your_name" + ], + [ + "and your name is", + "what_is_your_name" + ], + [ + "what do i call you, ai", + "what_is_your_name" + ], + [ + "what name do you go by, ai", + "what_is_your_name" + ], + [ + "ai, what is your name", + "what_is_your_name" + ], + [ + "what do they call you, ai", + "what_is_your_name" + ], + [ + "ai, what is your given name", + "what_is_your_name" + ], + [ + "what name do you want me to use", + "what_is_your_name" + ], + [ + "what do you like to be called", + "what_is_your_name" + ], + [ + "what should i call you", + "what_is_your_name" + ], + [ + "what would you like me to call you", + "what_is_your_name" + ], + [ + "what is your name", + "what_is_your_name" + ], + [ + "how do i set up a direct deposit", + "direct_deposit" + ], + [ + "how do i set up direct deposit", + "direct_deposit" + ], + [ + "chase account direct deposit options", + "direct_deposit" + ], + [ + "set my paycheck to direct deposit to chase account", + "direct_deposit" + ], + [ + "activate direct deposit to chase account", + "direct_deposit" + ], + [ + "chase account options direct deposit", + "direct_deposit" + ], + [ + "bank options direct deposit", + "direct_deposit" + ], + [ + "how do i set up a direct deposit for my paycheck", + "direct_deposit" + ], + [ + "how to activate direct deposit to chase account", + "direct_deposit" + ], + [ + "get my paycheck to direct deposit", + "direct_deposit" + ], + [ + "direct deposit", + "direct_deposit" + ], + [ + "i need a direct deposit", + "direct_deposit" + ], + [ + "can we get a direct deposit", + "direct_deposit" + ], + [ + "set up direct deposit", + "direct_deposit" + ], + [ + "i want to set up direct deposit", + "direct_deposit" + ], + [ + "setting up direct deposit", + "direct_deposit" + ], + [ + "how do i get my paycheck into direct deposit at nations bank", + "direct_deposit" + ], + [ + "could you tell me how to set up direct deposit for my check from work at nations bank", + "direct_deposit" + ], + [ + "if i want to direct deposit my check into my nations bank account how do i do that", + "direct_deposit" + ], + [ + "i need to know how to do direct deposit with my paycheck at nations bank", + "direct_deposit" + ], + [ + "could you tell me how to direct deposit my check from work into nations bank", + "direct_deposit" + ], + [ + "how does one set up direct deposit to my bank account", + "direct_deposit" + ], + [ + "what do i need to do to set up direct deposit", + "direct_deposit" + ], + [ + "what is the process of setting up direct deposit", + "direct_deposit" + ], + [ + "if i want to set up direct deposit, how do i do it", + "direct_deposit" + ], + [ + "i'm not sure how to set up direct deposit", + "direct_deposit" + ], + [ + "can you tell me how to set up direct deposit", + "direct_deposit" + ], + [ + "i'd like my checks to be deposited into my account directly, how do i do that", + "direct_deposit" + ], + [ + "i'd like to set up direct deposit", + "direct_deposit" + ], + [ + "how do i set up my direct deposit", + "direct_deposit" + ], + [ + "what's my bank of america account getting in interest", + "interest_rate" + ], + [ + "where do i see what interest my mortgage has", + "interest_rate" + ], + [ + "is there somewhere my personal loan displays the interest rate i'm paying on it", + "interest_rate" + ], + [ + "what's the apr on my savings account", + "interest_rate" + ], + [ + "what interest rate am i getting from bank of america", + "interest_rate" + ], + [ + "what interest rate am i getting from wells fargo", + "interest_rate" + ], + [ + "what interest rate is bofi giving me on my cd", + "interest_rate" + ], + [ + "how do i find the interest rate for my checking account", + "interest_rate" + ], + [ + "what interest rate am i getting from citrix", + "interest_rate" + ], + [ + "how can i tell what the interest rate on my money market account is", + "interest_rate" + ], + [ + "what's my checking account yielding in interest", + "interest_rate" + ], + [ + "how much interest is my nfcu accrueing", + "interest_rate" + ], + [ + "what interest rate am i getting from sunflower bank", + "interest_rate" + ], + [ + "where do i go to find the interest rate on my savings account", + "interest_rate" + ], + [ + "what interest rate am i getting from nfcu", + "interest_rate" + ], + [ + "for my savings account i would like to know the interest rate", + "interest_rate" + ], + [ + "i need my checking account's interest rate", + "interest_rate" + ], + [ + "tell me the interest for my savings account", + "interest_rate" + ], + [ + "what's the interest rate on my savings account", + "interest_rate" + ], + [ + "i want the interest rate for my checking account", + "interest_rate" + ], + [ + "can i get the interest rate for my checking account", + "interest_rate" + ], + [ + "i need to get the interest rate of my savings account", + "interest_rate" + ], + [ + "what's my savings account interest", + "interest_rate" + ], + [ + "what's my savings account interest rate", + "interest_rate" + ], + [ + "i would like the interest rate for my savings account", + "interest_rate" + ], + [ + "what amount of interest does my checking account earn", + "interest_rate" + ], + [ + "what does my checking account at chase earn in interest", + "interest_rate" + ], + [ + "what amount of interest does my checking account at chase earn", + "interest_rate" + ], + [ + "what interest rate does my checking account come with", + "interest_rate" + ], + [ + "what does chase pay in interest per year", + "interest_rate" + ], + [ + "when can i change my credit limit", + "credit_limit_change" + ], + [ + "can i change my credit limit", + "credit_limit_change" + ], + [ + "can i get more credit", + "credit_limit_change" + ], + [ + "i need to change the credit limit i have", + "credit_limit_change" + ], + [ + "you need to tell me how to increase credit limit for my chase card", + "credit_limit_change" + ], + [ + "need to increase credit limit for chase card", + "credit_limit_change" + ], + [ + "i need to increase credit limit for my chase card", + "credit_limit_change" + ], + [ + "please tell me how to increase credit limit for the chase card", + "credit_limit_change" + ], + [ + "tell me how to increase credit limit for chase card", + "credit_limit_change" + ], + [ + "is it possible for me to increase my credit limit by 500 dollars", + "credit_limit_change" + ], + [ + "can my credit limit be increased by 500 dollars", + "credit_limit_change" + ], + [ + "i would like to increase my credit limit, can i do so by 500 dollars", + "credit_limit_change" + ], + [ + "may i increase my credit limit by 500 dollars", + "credit_limit_change" + ], + [ + "could i perhaps increase by credit limit by 500 dollars", + "credit_limit_change" + ], + [ + "can i increase the credit limit on my mastercard", + "credit_limit_change" + ], + [ + "can i increase the credit limit on my visa card", + "credit_limit_change" + ], + [ + "can i increase the credit limit on my discover card", + "credit_limit_change" + ], + [ + "can i increase the credit limit on my capital one card", + "credit_limit_change" + ], + [ + "can i increase the credit limit on my travel rewards card", + "credit_limit_change" + ], + [ + "how can i get my credit limit to be increased to $1000", + "credit_limit_change" + ], + [ + "can you get my credit limit increased to $1000", + "credit_limit_change" + ], + [ + "how do i get my credit limit increased to $1000", + "credit_limit_change" + ], + [ + "how do i ask for a limit increase on my discover card", + "credit_limit_change" + ], + [ + "can i get my limit increased on my discover card", + "credit_limit_change" + ], + [ + "how can i get a limit increase on my discover card", + "credit_limit_change" + ], + [ + "who do i need to contact to ask for a credit limit increase on my discover card", + "credit_limit_change" + ], + [ + "can you increase my credit limit to $1000", + "credit_limit_change" + ], + [ + "can my credit limit be increased to $1000", + "credit_limit_change" + ], + [ + "how do i adjust my credit limit", + "credit_limit_change" + ], + [ + "how can i increase the credit limit on my discover card", + "credit_limit_change" + ], + [ + "what are your hobbies exactly", + "what_are_your_hobbies" + ], + [ + "what are your hobbies in life", + "what_are_your_hobbies" + ], + [ + "what are some of your hobbies", + "what_are_your_hobbies" + ], + [ + "i would like to know some of your hobbies", + "what_are_your_hobbies" + ], + [ + "would you give me examples of what some of your hobbies are", + "what_are_your_hobbies" + ], + [ + "tell me what some of your hobbies are", + "what_are_your_hobbies" + ], + [ + "i am needing to know what some of your hobbies are", + "what_are_your_hobbies" + ], + [ + "i need you to talk to me about your hobbies", + "what_are_your_hobbies" + ], + [ + "would you tell me about your hobbies", + "what_are_your_hobbies" + ], + [ + "i want to talk to you about your hobbies", + "what_are_your_hobbies" + ], + [ + "give me examples of what some of your hobbies are", + "what_are_your_hobbies" + ], + [ + "what kinds of hobbies do you have", + "what_are_your_hobbies" + ], + [ + "what hobbies do you like to do", + "what_are_your_hobbies" + ], + [ + "would you tell me the hobbies the ai has", + "what_are_your_hobbies" + ], + [ + "what are the ai's hobbies", + "what_are_your_hobbies" + ], + [ + "does the ai have hobbies", + "what_are_your_hobbies" + ], + [ + "what kind of hobbies does the ai have", + "what_are_your_hobbies" + ], + [ + "can you tell me what hobbies the ai has", + "what_are_your_hobbies" + ], + [ + "what do you engage in during your free time", + "what_are_your_hobbies" + ], + [ + "what kind of things to you like to outside of work", + "what_are_your_hobbies" + ], + [ + "what do you like to do during your leisure time", + "what_are_your_hobbies" + ], + [ + "what kinds of activities to you participate in during your free time", + "what_are_your_hobbies" + ], + [ + "what do you do on off days", + "what_are_your_hobbies" + ], + [ + "how to you spend your free time", + "what_are_your_hobbies" + ], + [ + "what do you do after work", + "what_are_your_hobbies" + ], + [ + "what do you like to do besides work", + "what_are_your_hobbies" + ], + [ + "if you have hobbies tell me some of them", + "what_are_your_hobbies" + ], + [ + "what kind of hobbies are you interested in", + "what_are_your_hobbies" + ], + [ + "any hobbies you like to do", + "what_are_your_hobbies" + ], + [ + "what do you enjoy doing in your off time", + "what_are_your_hobbies" + ], + [ + "book me a flight to jackson, mississippi from austin texas on american airlines", + "book_flight" + ], + [ + "book me a place to chicago from atlanta united airlines", + "book_flight" + ], + [ + "can you book me a flight to memphis from st louis on delta airlines", + "book_flight" + ], + [ + "book a flight to los angeles from las vegas on american airlines", + "book_flight" + ], + [ + "book me a flight to dallas from st, paul, minnesota on delta airlines", + "book_flight" + ], + [ + "i need a flight on delta from los angeles to seattle", + "book_flight" + ], + [ + "i need to book a flight on jet blue to boston from new york", + "book_flight" + ], + [ + "can you get me a flight from san francisco to san jose using american airlines", + "book_flight" + ], + [ + "i want a flight from new york to san francisco using delta", + "book_flight" + ], + [ + "get me a flight from barcelona to paris from jet blue", + "book_flight" + ], + [ + "\"i'll be travelling from lax and headed to phl for 120 on the 10th of may", + "book_flight" + ], + [ + "\"i'm fly out from lax to phl this weekend for around $120", + "book_flight" + ], + [ + "\"i\"m headed out to lax and going to phl for a low price of $120 this weekend on the 12th", + "book_flight" + ], + [ + "\"i'm going on a flight from lax and going to phl, which is only $120 on june 15th", + "book_flight" + ], + [ + "\"i'll leave to lax and go to phl for $120 on nov 5th", + "book_flight" + ], + [ + "book me a flight from midway to jfk for less than 200 dollars", + "book_flight" + ], + [ + "i need a flight from boston to miami for under 300 dollars", + "book_flight" + ], + [ + "can i fly from atlanta to san francisco for less than 100 dollars", + "book_flight" + ], + [ + "book a flight from new york to la for less than 200 dollars", + "book_flight" + ], + [ + "find me a flight from seattle to detroit for less than 200 dollars", + "book_flight" + ], + [ + "i want to a book a roundtrip flight from san antonio to dtw departing on friday and returning on wednesday", + "book_flight" + ], + [ + "i'm looking for a flight from billings to cleveland on may 2 and a return on may 9", + "book_flight" + ], + [ + "i'm looking for flights that depart on the 3rd and return on z from monday to friday", + "book_flight" + ], + [ + "what roundtrip flights from orlando to vegas are available from thursday to monday", + "book_flight" + ], + [ + "are there any roundtrip flights from shanghai to seatac that depart on wednesday and return on the thirty first", + "book_flight" + ], + [ + "make sure i get a delta flight from pittsburgh to arizona", + "book_flight" + ], + [ + "book a delta flight to arizona from pittsburgh", + "book_flight" + ], + [ + "schedule a flight from pittsburgh to arizona on delta", + "book_flight" + ], + [ + "i want to fly to atlanta for under 300 from pittsburgh", + "book_flight" + ], + [ + "i need a flight for under 300 from pittsburgh to atlanta", + "book_flight" + ], + [ + "does my shopping list have pop tarts", + "shopping_list" + ], + [ + "can you check to see if my shopping list already has milk", + "shopping_list" + ], + [ + "did i remember to put oatmeal on my list", + "shopping_list" + ], + [ + "iterate over the items on my grocery list", + "shopping_list" + ], + [ + "tell me what i have on my shopping list", + "shopping_list" + ], + [ + "do i have twinkies on the grocery list", + "shopping_list" + ], + [ + "have i already got eggs down on the shopping list", + "shopping_list" + ], + [ + "recite the items i'm planning to purchase", + "shopping_list" + ], + [ + "what do i currently have on my shopping list", + "shopping_list" + ], + [ + "what's on my to-buy list", + "shopping_list" + ], + [ + "what's on my purchase list", + "shopping_list" + ], + [ + "do i have to buy milk", + "shopping_list" + ], + [ + "is milk on my shopping list", + "shopping_list" + ], + [ + "is milk one of my shopping list items", + "shopping_list" + ], + [ + "am i supposed to buy milk", + "shopping_list" + ], + [ + "is milk one of the things i need to buy", + "shopping_list" + ], + [ + "tell me what's is on my shopping list", + "shopping_list" + ], + [ + "please read my shopping list", + "shopping_list" + ], + [ + "did you put carrots on the shopping list", + "shopping_list" + ], + [ + "does the shopping list have apples on it", + "shopping_list" + ], + [ + "are carrots added to the grocery list", + "shopping_list" + ], + [ + "is garlic on my grocery list", + "shopping_list" + ], + [ + "did carrots get on my shopping list", + "shopping_list" + ], + [ + "what things are on my shopping list today", + "shopping_list" + ], + [ + "tell me the items in my shopping list", + "shopping_list" + ], + [ + "what does my shopping list contain", + "shopping_list" + ], + [ + "i need to know what's on my shopping list", + "shopping_list" + ], + [ + "what is on the shopping list", + "shopping_list" + ], + [ + "please let me know what is on my shopping list", + "shopping_list" + ], + [ + "let me know what's on my shopping list", + "shopping_list" + ], + [ + "text chrissy, i'm on my way", + "text" + ], + [ + "text dave, i'll be there soon", + "text" + ], + [ + "send davis a text i'll be there in a few", + "text" + ], + [ + "text laura i'll be late for dinner", + "text" + ], + [ + "text mike, \"i'm running late", + "text" + ], + [ + "tell jim i'm coming home soon", + "text" + ], + [ + "i want to tell susan that the meeting has been cancelled", + "text" + ], + [ + "tell fred that i don't have his guitar", + "text" + ], + [ + "could you send a text to bill saying no", + "text" + ], + [ + "text mark hello", + "text" + ], + [ + "text emily", + "text" + ], + [ + "please text john", + "text" + ], + [ + "i want you to text mark", + "text" + ], + [ + "get a text to mark", + "text" + ], + [ + "can you text walt and tell him to meet me at the car wash", + "text" + ], + [ + "text courtney and inform her about the detour", + "text" + ], + [ + "text dan and tell him to go home", + "text" + ], + [ + "text samantha and let her know i will arrive in 10 minutes", + "text" + ], + [ + "text katy and tell her i love her", + "text" + ], + [ + "text jean and tell him to call work", + "text" + ], + [ + "text steve and tell him i am running late", + "text" + ], + [ + "i'd like you to text marie and let her know to meet me at the hospital", + "text" + ], + [ + "text jeff and tell him to pay the bill", + "text" + ], + [ + "text mark and tell him to leave now", + "text" + ], + [ + "send jack a text saying hi", + "text" + ], + [ + "send a text that says hi to abby", + "text" + ], + [ + "i'd like to send a text to jack, say \"hi", + "text" + ], + [ + "can you text dave and tell him i like his paper", + "text" + ], + [ + "can you text mary and tell her she is amazing", + "text" + ], + [ + "can you text bill and tell him i love him", + "text" + ], + [ + "what do i owe to jcp", + "bill_balance" + ], + [ + "what is the amount due on my visa", + "bill_balance" + ], + [ + "how much do i owe visa", + "bill_balance" + ], + [ + "how much do you think my rent and electric bills are", + "bill_balance" + ], + [ + "what would you say my gas and phone bills are at", + "bill_balance" + ], + [ + "i need to know the price of my car payment and insurance please", + "bill_balance" + ], + [ + "what price is my credit card and my water bill at", + "bill_balance" + ], + [ + "how much is my water and sewer", + "bill_balance" + ], + [ + "how much do i need to pay for my electricity and water bills", + "bill_balance" + ], + [ + "what is the cost of my rent and water bills", + "bill_balance" + ], + [ + "how much are my rent and cable", + "bill_balance" + ], + [ + "how much does my water and electricity cost", + "bill_balance" + ], + [ + "what do i owe this month on all my bills", + "bill_balance" + ], + [ + "i think all my bills are paid, but can you double check", + "bill_balance" + ], + [ + "i think i owe about 100 left on my bills, am i forgetting anything", + "bill_balance" + ], + [ + "what are my bills this month", + "bill_balance" + ], + [ + "what does my cable bill look like", + "bill_balance" + ], + [ + "has my electricity bill increased this month how much", + "bill_balance" + ], + [ + "how expensive is my internet", + "bill_balance" + ], + [ + "how much will my monthly bill be", + "bill_balance" + ], + [ + "what are my total bills this month", + "bill_balance" + ], + [ + "what will i be paying for utilities this month", + "bill_balance" + ], + [ + "how much is my telephone bill this month", + "bill_balance" + ], + [ + "how much is due for my water bill", + "bill_balance" + ], + [ + "how much do i have to pay this month", + "bill_balance" + ], + [ + "tell me my water bill please", + "bill_balance" + ], + [ + "is the phone bill the same as last month", + "bill_balance" + ], + [ + "whens my insurance due and how much does it cost", + "bill_balance" + ], + [ + "how much is the car bill this month", + "bill_balance" + ], + [ + "what is the electricity bill", + "bill_balance" + ], + [ + "can i share my location with david", + "share_location" + ], + [ + "please send my location to kevin and also to lucy", + "share_location" + ], + [ + "how do i share my location with kate and mike", + "share_location" + ], + [ + "can you let michael and julie know my location", + "share_location" + ], + [ + "please let lisa and chris know my location information", + "share_location" + ], + [ + "make my location available with david and kate", + "share_location" + ], + [ + "i need to give my location to macy and george", + "share_location" + ], + [ + "i'd like for this person to know my location", + "share_location" + ], + [ + "can you indicate my location to my friend", + "share_location" + ], + [ + "share my location with this person", + "share_location" + ], + [ + "send my location to this individual", + "share_location" + ], + [ + "what is my current location", + "share_location" + ], + [ + "share location with john", + "share_location" + ], + [ + "give ann and scott my location", + "share_location" + ], + [ + "could you inform ann and scott of my location", + "share_location" + ], + [ + "let ann and scott know where i am", + "share_location" + ], + [ + "will you make sure ann and scott know my location", + "share_location" + ], + [ + "tell ann and scott where i am", + "share_location" + ], + [ + "tell david my location", + "share_location" + ], + [ + "send david my location", + "share_location" + ], + [ + "tell my location to david", + "share_location" + ], + [ + "tell david where i am", + "share_location" + ], + [ + "share location with david", + "share_location" + ], + [ + "show allison how to get to me", + "share_location" + ], + [ + "send my location to sis", + "share_location" + ], + [ + "show cody where i am", + "share_location" + ], + [ + "share my location to susan", + "share_location" + ], + [ + "share my current location with kristen", + "share_location" + ], + [ + "send sarah my current location", + "share_location" + ], + [ + "please send my location to rob and mary", + "share_location" + ], + [ + "how do i get stuff with visa points", + "redeem_rewards" + ], + [ + "what are my mastercard points good for", + "redeem_rewards" + ], + [ + "how many points do i have to cash", + "redeem_rewards" + ], + [ + "where can i cash out my card points", + "redeem_rewards" + ], + [ + "what do i have to do to use my credit points acquired through purchases", + "redeem_rewards" + ], + [ + "how do i use my card reward points for my next flight", + "redeem_rewards" + ], + [ + "how do i go about getting cash for my card points accumulated", + "redeem_rewards" + ], + [ + "tell me how to get my points from credit card use cashed in", + "redeem_rewards" + ], + [ + "i want to use my card reward points", + "redeem_rewards" + ], + [ + "can i redeem my points by transferring them to someone as a gift", + "redeem_rewards" + ], + [ + "can i redeem my points on gas", + "redeem_rewards" + ], + [ + "can i redeem my points for flights", + "redeem_rewards" + ], + [ + "can i get cash back for my points", + "redeem_rewards" + ], + [ + "can i use my points to pay my credit card", + "redeem_rewards" + ], + [ + "what are the steps to get my rewards for my visa card", + "redeem_rewards" + ], + [ + "how can i cash out my rewards for a visa card", + "redeem_rewards" + ], + [ + "how can i claim my rewards for my visa card", + "redeem_rewards" + ], + [ + "how can i get my rewards for my master card", + "redeem_rewards" + ], + [ + "where would i get my rewards for my master card", + "redeem_rewards" + ], + [ + "let me cash my credit rewards", + "redeem_rewards" + ], + [ + "help me redeem my reward points", + "redeem_rewards" + ], + [ + "put in a request for cashing in credit points", + "redeem_rewards" + ], + [ + "i want to use my credit rewards now", + "redeem_rewards" + ], + [ + "i need to use my credit points", + "redeem_rewards" + ], + [ + "i need to redeem my visa points", + "redeem_rewards" + ], + [ + "whats the policy to redeem my visa reward points", + "redeem_rewards" + ], + [ + "what can i get with my mastercard points", + "redeem_rewards" + ], + [ + "how do i cash in my amex reward points", + "redeem_rewards" + ], + [ + "how do i redeem my visa points", + "redeem_rewards" + ], + [ + "i want to shop using credit card points", + "redeem_rewards" + ], + [ + "play the song called baby shark", + "play_music" + ], + [ + "play the song called wreckless love", + "play_music" + ], + [ + "play the song called i want it that way", + "play_music" + ], + [ + "play the song called dancing on the ceiling", + "play_music" + ], + [ + "play the song called amazing grace", + "play_music" + ], + [ + "get me my slow sounds", + "play_music" + ], + [ + "let me hear my slow songs", + "play_music" + ], + [ + "pull up the songs under slow", + "play_music" + ], + [ + "i want to hear my slow playlist", + "play_music" + ], + [ + "i'm in the mood for slow songs and nothing else", + "play_music" + ], + [ + "the song that goes, \"starships were meant to fly\", play it", + "play_music" + ], + [ + "please play that song that goes, \"starships were meant to fly", + "play_music" + ], + [ + "play the song that goes, \"starships were meant to fly", + "play_music" + ], + [ + "can you play the song that goes like, \"starships were meant to fly", + "play_music" + ], + [ + "will you play the song that goes like, \"starships were meant to fly", + "play_music" + ], + [ + "drop some beats", + "play_music" + ], + [ + "turn on top 20 country hits", + "play_music" + ], + [ + "turn on my tunes", + "play_music" + ], + [ + "please play music by acdc", + "play_music" + ], + [ + "play oldschool rap", + "play_music" + ], + [ + "put on some metallica music", + "play_music" + ], + [ + "play music by ludacris", + "play_music" + ], + [ + "bump some jams", + "play_music" + ], + [ + "play ludacris hits", + "play_music" + ], + [ + "play a song", + "play_music" + ], + [ + "turn on metallicas greatest hits", + "play_music" + ], + [ + "put on my 90s playlist", + "play_music" + ], + [ + "can you play music by led zepplin", + "play_music" + ], + [ + "lets play some music by korn", + "play_music" + ], + [ + "do play the music by linkin park", + "play_music" + ], + [ + "i need to add something to my calendar for next tuesday", + "calendar_update" + ], + [ + "please clear my calendar", + "calendar_update" + ], + [ + "take the doctor appointment off my calendar please", + "calendar_update" + ], + [ + "can you add an event to my calendar", + "calendar_update" + ], + [ + "erase all events on friday from my calendar", + "calendar_update" + ], + [ + "remove jess's party from my calendar", + "calendar_update" + ], + [ + "delete all calendar entries on march 3", + "calendar_update" + ], + [ + "delete dentist from my calendar", + "calendar_update" + ], + [ + "cancel doctors appointment from my calendar", + "calendar_update" + ], + [ + "erase meeting with jeff from my calendar", + "calendar_update" + ], + [ + "clear my calendar on feb 28", + "calendar_update" + ], + [ + "cancel event scheduled for this afternoon", + "calendar_update" + ], + [ + "please take off my calendar on saturday the 6th birthday party for john", + "calendar_update" + ], + [ + "i want to take the 8am meeting with sam on monday the 5th off my calendar", + "calendar_update" + ], + [ + "please remove lunch with sally that is on my calendar on tuesday the 8th", + "calendar_update" + ], + [ + "i need buy a birthday gift for sue taken off my calendar it is on monday or tuesday last week", + "calendar_update" + ], + [ + "will you remove the dinner with june on saturday the 4th at 7pm from my calendar", + "calendar_update" + ], + [ + "can you cancel improv class from my calendar for may 7th", + "calendar_update" + ], + [ + "clear my calendar for may 3rd", + "calendar_update" + ], + [ + "take work from my calendar for may 7th", + "calendar_update" + ], + [ + "clear my calendar for september 6th", + "calendar_update" + ], + [ + "delete jury duty from my calendar for may 7th", + "calendar_update" + ], + [ + "remove fencing from my calendar for may 7th", + "calendar_update" + ], + [ + "clear my calendar for february 29th", + "calendar_update" + ], + [ + "clear my calendar for april 20th", + "calendar_update" + ], + [ + "clear my calendar for november 11th", + "calendar_update" + ], + [ + "remove wrestlemania from my calendar for may 7th", + "calendar_update" + ], + [ + "what can i do to get rid of this event", + "calendar_update" + ], + [ + "what is the best way to remove this appointment", + "calendar_update" + ], + [ + "friday needs to be clear on my calendar", + "calendar_update" + ], + [ + "tell me if you are a human or are a computer", + "are_you_a_bot" + ], + [ + "would you tell me if you are a human or are a computer", + "are_you_a_bot" + ], + [ + "provide me with the knowledge of whether you are a human or are a computer", + "are_you_a_bot" + ], + [ + "let me know if you are a human or are a computer", + "are_you_a_bot" + ], + [ + "i need to know whether you are a human or are a computer", + "are_you_a_bot" + ], + [ + "are you real", + "are_you_a_bot" + ], + [ + "can you tell me if your a bot", + "are_you_a_bot" + ], + [ + "i want to know if your a bot", + "are_you_a_bot" + ], + [ + "is this a bot", + "are_you_a_bot" + ], + [ + "i think your a bot", + "are_you_a_bot" + ], + [ + "is it true your a real person", + "are_you_a_bot" + ], + [ + "are you a person that's real", + "are_you_a_bot" + ], + [ + "are you actually a person", + "are_you_a_bot" + ], + [ + "are you really real", + "are_you_a_bot" + ], + [ + "your a bot aren't you", + "are_you_a_bot" + ], + [ + "could you be human", + "are_you_a_bot" + ], + [ + "could you be a person", + "are_you_a_bot" + ], + [ + "are you human", + "are_you_a_bot" + ], + [ + "are you a human or ai computer based", + "are_you_a_bot" + ], + [ + "would you call yourself a human or a computer", + "are_you_a_bot" + ], + [ + "how do you describe yourself: as a computer or a human", + "are_you_a_bot" + ], + [ + "are you computer or human", + "are_you_a_bot" + ], + [ + "would most people say you are a computer or a human", + "are_you_a_bot" + ], + [ + "are you real or a computer", + "are_you_a_bot" + ], + [ + "are you a computer generated voice", + "are_you_a_bot" + ], + [ + "am i talking to a real live person", + "are_you_a_bot" + ], + [ + "is your voice from a human or is it synthesized", + "are_you_a_bot" + ], + [ + "are you a person or artificial intelligence", + "are_you_a_bot" + ], + [ + "could you tell me if you're a real person", + "are_you_a_bot" + ], + [ + "are you a person or robot", + "are_you_a_bot" + ], + [ + "can i get to work on my fuel tank", + "gas" + ], + [ + "can i get to susan's house with my current tank", + "gas" + ], + [ + "do i have enough gas to get home", + "gas" + ], + [ + "do i have enough fuel to travel to san diego from here", + "gas" + ], + [ + "will i make it to my current destination on this fuel tank", + "gas" + ], + [ + "can i make it to los angeles with this fuel level", + "gas" + ], + [ + "can i reach seattle with this amount of fuel", + "gas" + ], + [ + "do i have enough gas in my tank to make it to washington dc", + "gas" + ], + [ + "do i have enough gas in my car to make it to dallas", + "gas" + ], + [ + "will i run out of gas before i reach atlantic city", + "gas" + ], + [ + "tell me where my gas tank is", + "gas" + ], + [ + "where can i find my gas tank", + "gas" + ], + [ + "where is my gas tank located", + "gas" + ], + [ + "how many gallons do i have left in my gas tank", + "gas" + ], + [ + "how's my gasoline how much do i have left", + "gas" + ], + [ + "what percentage full is my gas tank", + "gas" + ], + [ + "how full or empty is my tank of gas", + "gas" + ], + [ + "how much gas do i have left in my tank", + "gas" + ], + [ + "how full is my gas tank", + "gas" + ], + [ + "how many more miles can i drive on my current tank", + "gas" + ], + [ + "how much gas is left in my car", + "gas" + ], + [ + "how full is the gas tank", + "gas" + ], + [ + "what does the gas meter read", + "gas" + ], + [ + "how much of the gas do i have left", + "gas" + ], + [ + "how much gas do i have here", + "gas" + ], + [ + "how much gas do i have in the tank", + "gas" + ], + [ + "can you tell me how much gas is in my tank", + "gas" + ], + [ + "tell me my gas tank levels", + "gas" + ], + [ + "what is the data of my gas tank", + "gas" + ], + [ + "how much gas do i have in my tank", + "gas" + ], + [ + "i want to bring my card on the texas trip in june, will it be expired by then", + "expiration_date" + ], + [ + "what's the month, year, and day that my card expires", + "expiration_date" + ], + [ + "does my card ending in 1234, or any of my cards, expire soon", + "expiration_date" + ], + [ + "does my card have an expiration date and if so, what is it", + "expiration_date" + ], + [ + "when does my card expire, the one ending in 1234", + "expiration_date" + ], + [ + "give me my credit card expiration date", + "expiration_date" + ], + [ + "what is the expiration month and year on my credit car", + "expiration_date" + ], + [ + "when is the date of expiration for my first bank card", + "expiration_date" + ], + [ + "what is the expiration month of my card", + "expiration_date" + ], + [ + "what is the expiration date of my credit card", + "expiration_date" + ], + [ + "let me know when my credit card expire", + "expiration_date" + ], + [ + "when will my citi card expire", + "expiration_date" + ], + [ + "when is my credit card expire", + "expiration_date" + ], + [ + "when is the expiration month for my card", + "expiration_date" + ], + [ + "when is the expiration date of my credit card", + "expiration_date" + ], + [ + "what is the expiration date on my chase card", + "expiration_date" + ], + [ + "when is the expiration date for me discover", + "expiration_date" + ], + [ + "when it my citi card expired", + "expiration_date" + ], + [ + "when is my card expired", + "expiration_date" + ], + [ + "tell me the expiration date on my credit card", + "expiration_date" + ], + [ + "what month is my card expired in", + "expiration_date" + ], + [ + "how soon does my credit card expire", + "expiration_date" + ], + [ + "when will my new credit card arrive", + "expiration_date" + ], + [ + "what month does my credit card expire", + "expiration_date" + ], + [ + "what is the date when my visa card will expire", + "expiration_date" + ], + [ + "can you tell me what the date of expiry for my visa card is", + "expiration_date" + ], + [ + "tell me the expiration date for my visa card", + "expiration_date" + ], + [ + "show me the expiration date for my visa card", + "expiration_date" + ], + [ + "where should i look for my credit card expiration day", + "expiration_date" + ], + [ + "when will my credit card no longer be good", + "expiration_date" + ], + [ + "add to my motivational playlist rap god", + "update_playlist" + ], + [ + "include rap god on the motivational playlist", + "update_playlist" + ], + [ + "move rap god to my motivational playlist", + "update_playlist" + ], + [ + "in my motivational playlist include the song rap god", + "update_playlist" + ], + [ + "add the song rap god to the motivational playlist", + "update_playlist" + ], + [ + "i need this song on my meditation playlist", + "update_playlist" + ], + [ + "i want the current song added to my pregame playlist", + "update_playlist" + ], + [ + "please put this song on my studying playlist", + "update_playlist" + ], + [ + "please throw this song onto my cleaning playlist", + "update_playlist" + ], + [ + "i would like the song playing right now put on my driving playlist", + "update_playlist" + ], + [ + "i want this song on my pregame playlist", + "update_playlist" + ], + [ + "please add this song to my study playlist", + "update_playlist" + ], + [ + "can you add this song to my driving playlist", + "update_playlist" + ], + [ + "will you be sure to add this current song to my sleep playlist", + "update_playlist" + ], + [ + "please add the song i'm listening to right now to my relaxation playlist", + "update_playlist" + ], + [ + "add this to my rock playlist", + "update_playlist" + ], + [ + "add what im listening to to my rock playlist", + "update_playlist" + ], + [ + "i want to put this on my rock playlist", + "update_playlist" + ], + [ + "add current song to rock playlist", + "update_playlist" + ], + [ + "add this song to my rock playlist", + "update_playlist" + ], + [ + "please add this song to my country music playlist", + "update_playlist" + ], + [ + "i am asking you to add this song to my country music playlist", + "update_playlist" + ], + [ + "help me add this song to my country music playlist", + "update_playlist" + ], + [ + "can you add this song to my country music playlist", + "update_playlist" + ], + [ + "this song needs to be added to my country music playlist", + "update_playlist" + ], + [ + "this song i'm listening to would be great on my commute playlist", + "update_playlist" + ], + [ + "i need this song on my jam playlist", + "update_playlist" + ], + [ + "i want what i'm listening to to be added to my chill playlist", + "update_playlist" + ], + [ + "i need what i'm listening to right now to be put on my exercise playlist", + "update_playlist" + ], + [ + "put what i'm listening to on my workout playlist", + "update_playlist" + ], + [ + "i do not actually need my reservation anymore", + "cancel_reservation" + ], + [ + "i need to cancel my reservation for rob at red robin", + "cancel_reservation" + ], + [ + "cancel my reservation for bob at red robin", + "cancel_reservation" + ], + [ + "i do not want my reservation anymore", + "cancel_reservation" + ], + [ + "i need you to cancel my reservation for 5 at red robin", + "cancel_reservation" + ], + [ + "please cancel my reservation for tim at jb's", + "cancel_reservation" + ], + [ + "i gotta cancel my reservation for barry at red robin", + "cancel_reservation" + ], + [ + "i don't need the reservation anymore", + "cancel_reservation" + ], + [ + "i want you to cancel my reservation for 5 at red robin", + "cancel_reservation" + ], + [ + "i am not in need of my reservation anymore", + "cancel_reservation" + ], + [ + "go ahead and cancel my reservation for 5 at red robin", + "cancel_reservation" + ], + [ + "i wish to cancel my reservation for fred at red robin", + "cancel_reservation" + ], + [ + "i no longer want my reservation anymore", + "cancel_reservation" + ], + [ + "please cancel my reservation for 5 at red robin", + "cancel_reservation" + ], + [ + "i need you to cancel my reservation for smith at the williams diner", + "cancel_reservation" + ], + [ + "i want a cancellation of the dinner reservation for phillips at bernardin's", + "cancel_reservation" + ], + [ + "please delete the reservation for roberts at village tavern", + "cancel_reservation" + ], + [ + "could you cancel my reservation for winters at the palace tonight", + "cancel_reservation" + ], + [ + "i would like you to cancel the dinner reservation for williams at the palace tonight", + "cancel_reservation" + ], + [ + "i have to cancel my reservation after all", + "cancel_reservation" + ], + [ + "cancel my reservation for dinner tonight, please", + "cancel_reservation" + ], + [ + "i need to cancel my reservation after all", + "cancel_reservation" + ], + [ + "i have to cancel my reservation after all, please", + "cancel_reservation" + ], + [ + "cancel my reservation for dinner this saturday, please", + "cancel_reservation" + ], + [ + "cancel my reservation for dinner this friday, please", + "cancel_reservation" + ], + [ + "cancel my reservation for dinner this saturday", + "cancel_reservation" + ], + [ + "cancel my reservation for dinner tonight", + "cancel_reservation" + ], + [ + "i have to cancel my reservation", + "cancel_reservation" + ], + [ + "i need to cancel my reservation after all, please", + "cancel_reservation" + ], + [ + "i need my dinner reservation canceled", + "cancel_reservation" + ], + [ + "i would like to hear something funny", + "tell_joke" + ], + [ + "do you have any monkey jokes", + "tell_joke" + ], + [ + "know any dad jokes", + "tell_joke" + ], + [ + "tell me a dog joke", + "tell_joke" + ], + [ + "heard any good jokes", + "tell_joke" + ], + [ + "i want to hear a joke about elephants", + "tell_joke" + ], + [ + "i'd like to hear a lawyer joke", + "tell_joke" + ], + [ + "tell me a blonde joke", + "tell_joke" + ], + [ + "do you know any dad jokes", + "tell_joke" + ], + [ + "tell me a joke about elephants", + "tell_joke" + ], + [ + "tell me a joke about the subject of sailing", + "tell_joke" + ], + [ + "give me a joke about water", + "tell_joke" + ], + [ + "give me a joke about the topic of television", + "tell_joke" + ], + [ + "give me a joke about the subject of bugs", + "tell_joke" + ], + [ + "tell me a joke about the topic of mice", + "tell_joke" + ], + [ + "i would like to hear a joke", + "tell_joke" + ], + [ + "will you tell me a joke", + "tell_joke" + ], + [ + "let's hear a joke!", + "tell_joke" + ], + [ + "i could use a laugh, got any jokes", + "tell_joke" + ], + [ + "can you tell me something funny about science", + "tell_joke" + ], + [ + "can you share something funny about traveling", + "tell_joke" + ], + [ + "i want to hear your best joke", + "tell_joke" + ], + [ + "tell me a good joke", + "tell_joke" + ], + [ + "tell me something funny about horses", + "tell_joke" + ], + [ + "i want to hear something funny about history", + "tell_joke" + ], + [ + "can you share a humorous joke with me", + "tell_joke" + ], + [ + "i want to hear something funny about politicsi", + "tell_joke" + ], + [ + "let's hear a joke from you please", + "tell_joke" + ], + [ + "tell me something funny about the middle ages", + "tell_joke" + ], + [ + "do you know any jokes", + "tell_joke" + ], + [ + "would it be possible to change your name to coraline", + "change_ai_name" + ], + [ + "would it be okay to change your name to daphne", + "change_ai_name" + ], + [ + "id like to change your name to max", + "change_ai_name" + ], + [ + "what do you think about changing your name to heath", + "change_ai_name" + ], + [ + "lets start calling you allan", + "change_ai_name" + ], + [ + "i would like to start calling you heath", + "change_ai_name" + ], + [ + "what do you think about me calling you cora", + "change_ai_name" + ], + [ + "im going to call you xander", + "change_ai_name" + ], + [ + "can we change your name to clara", + "change_ai_name" + ], + [ + "how about lets start calling you juliette", + "change_ai_name" + ], + [ + "i want to start calling you owen", + "change_ai_name" + ], + [ + "can i call you arnold instead", + "change_ai_name" + ], + [ + "how about i call you sue", + "change_ai_name" + ], + [ + "can i start calling you fred", + "change_ai_name" + ], + [ + "can i rename you bob", + "change_ai_name" + ], + [ + "i want to rename you joe", + "change_ai_name" + ], + [ + "your new name is joe, okay", + "change_ai_name" + ], + [ + "i'm going to start calling you joe", + "change_ai_name" + ], + [ + "you are going to be called joe now", + "change_ai_name" + ], + [ + "start responding to joe", + "change_ai_name" + ], + [ + "i'm changing your name to joe", + "change_ai_name" + ], + [ + "i'd like to start calling you buddy", + "change_ai_name" + ], + [ + "i'd like to start calling you jake", + "change_ai_name" + ], + [ + "i'd like to start calling you lover", + "change_ai_name" + ], + [ + "i'd like to start calling you friend", + "change_ai_name" + ], + [ + "i want to change your name to shelby", + "change_ai_name" + ], + [ + "i'd rather call you gloria", + "change_ai_name" + ], + [ + "i'm changing your name to goliath", + "change_ai_name" + ], + [ + "is it okay to change your name to samson", + "change_ai_name" + ], + [ + "can i call you james instead", + "change_ai_name" + ], + [ + "what your numerical digit to display as your age", + "how_old_are_you" + ], + [ + "how old will you be", + "how_old_are_you" + ], + [ + "how old will you be this year", + "how_old_are_you" + ], + [ + "whats your age", + "how_old_are_you" + ], + [ + "when is your birthday", + "how_old_are_you" + ], + [ + "when were you made", + "how_old_are_you" + ], + [ + "whats your age range", + "how_old_are_you" + ], + [ + "could you tell me how old you are", + "how_old_are_you" + ], + [ + "would you tell me how old you are", + "how_old_are_you" + ], + [ + "your date of birth", + "how_old_are_you" + ], + [ + "your birthday please", + "how_old_are_you" + ], + [ + "can you tell me your birthday", + "how_old_are_you" + ], + [ + "whens your birthday", + "how_old_are_you" + ], + [ + "what's your bday", + "how_old_are_you" + ], + [ + "how old were you on your last birthday", + "how_old_are_you" + ], + [ + "how many years have you been alive", + "how_old_are_you" + ], + [ + "can i ask your age", + "how_old_are_you" + ], + [ + "do you mind if i ask how old you are", + "how_old_are_you" + ], + [ + "may i ask your age", + "how_old_are_you" + ], + [ + "i need to know your age", + "how_old_are_you" + ], + [ + "please tell me your age", + "how_old_are_you" + ], + [ + "can you tell me your age", + "how_old_are_you" + ], + [ + "when's your birthday", + "how_old_are_you" + ], + [ + "how young are you", + "how_old_are_you" + ], + [ + "what's your age right now", + "how_old_are_you" + ], + [ + "how old would you be", + "how_old_are_you" + ], + [ + "do you know how old you are", + "how_old_are_you" + ], + [ + "how old", + "how_old_are_you" + ], + [ + "what's your date of birth", + "how_old_are_you" + ], + [ + "how old are you turning", + "how_old_are_you" + ], + [ + "i need to rent an suv in charlestown for the first week in june who do you suggest", + "car_rental" + ], + [ + "find a decent rental care for next week at the philadelphia airport", + "car_rental" + ], + [ + "who can i rent a car from next month in orlando", + "car_rental" + ], + [ + "i need to rent a car kfor one week in ocean city, nj so who has the best deal", + "car_rental" + ], + [ + "find me a car rental for the weekend in asheville, nc via priceline", + "car_rental" + ], + [ + "what is the phone number of the car rental place", + "car_rental" + ], + [ + "book a rental car to rhode island for friday, tomorrow", + "car_rental" + ], + [ + "alexa, book a rental car to los angeles county in 2 hours", + "car_rental" + ], + [ + "can you book a car rental today to new york city to philadelphia", + "car_rental" + ], + [ + "book a car rental to miami florida today", + "car_rental" + ], + [ + "siri, book a car rental to the poconos today right now", + "car_rental" + ], + [ + "where in syracuse can i book a car", + "car_rental" + ], + [ + "in x, help me book a car", + "car_rental" + ], + [ + "book me a car rental in wichita", + "car_rental" + ], + [ + "how many places in dallas can i rent a car", + "car_rental" + ], + [ + "where can i rent a car in singapore", + "car_rental" + ], + [ + "march 2nd through march 18th, i'm going to need a jeep in frankfort", + "car_rental" + ], + [ + "rent a car for 3/1 through 3/3 in boston; i'd prefer an suv", + "car_rental" + ], + [ + "can i rent a sports car in augusta for 3/4 through 3/8", + "car_rental" + ], + [ + "in tampa, i'd like to rent a sedan from 4/1 until 4/5", + "car_rental" + ], + [ + "i'm going to need a coupe car in sedona from 5/1 until 5/4", + "car_rental" + ], + [ + "schedule a rental car starting monday the 5th thru friday the 9th at rent a car in town", + "car_rental" + ], + [ + "can you find a rental car for me that is available this monday through thursday , any make will do", + "car_rental" + ], + [ + "i need to rent a car from traveler's rent a car downtown and make it from friday the 6th to monday the 9th cheapest available", + "car_rental" + ], + [ + "i want a rental car that is available tomorrow and that i can keep for four days please find me one", + "car_rental" + ], + [ + "find me a rental car for next week , from friday the 5th thru monday the 8th, any kind", + "car_rental" + ], + [ + "i need to rent a car for may 8th to may 25th in danville and i'd like a ford", + "car_rental" + ], + [ + "i need to rent a car for may 10th to may 15th in lizton and i'd like a bmw", + "car_rental" + ], + [ + "i need to rent a car for may 3rd to may 5th in indianapolis and i'd like a mercedes", + "car_rental" + ], + [ + "i need to rent a car for may 11thto may 13th in chicago and i'd like a coupe", + "car_rental" + ], + [ + "what should i do to get my car jump started", + "jump_start" + ], + [ + "what do i need to do to get my car jump started", + "jump_start" + ], + [ + "how can i go about jump starting my car", + "jump_start" + ], + [ + "what steps should be taken to jump start a car", + "jump_start" + ], + [ + "what can i do to jump start my car", + "jump_start" + ], + [ + "how do i jump start my car", + "jump_start" + ], + [ + "i need to know how to get my car jump started", + "jump_start" + ], + [ + "my car needs a jump start; what do i need to do", + "jump_start" + ], + [ + "tell me how to jump start my car", + "jump_start" + ], + [ + "what steps should i take if i think my car battery is dead", + "jump_start" + ], + [ + "i'm almost certain my car battery died, please tell me what to do", + "jump_start" + ], + [ + "please give me a quick tutorial on jump starting my car", + "jump_start" + ], + [ + "will you guide me through the process to jump start my car, please", + "jump_start" + ], + [ + "what steps do i need to follow to jump start my car", + "jump_start" + ], + [ + "what do i do if my car battery died", + "jump_start" + ], + [ + "what do i do if i suspect my car battery is dead", + "jump_start" + ], + [ + "i need instructions to walk me through jump starting my car", + "jump_start" + ], + [ + "i believe that my car battery has died, what do i do next", + "jump_start" + ], + [ + "can you give me instructions on how to jump start my car, please", + "jump_start" + ], + [ + "i wanna know how to jump start my car", + "jump_start" + ], + [ + "what do i do now that my battery is dead", + "jump_start" + ], + [ + "my car battery is dead what do i do", + "jump_start" + ], + [ + "i would like to jump start my car", + "jump_start" + ], + [ + "i really need to jump start my car", + "jump_start" + ], + [ + "what should i do now that my car battery is dead", + "jump_start" + ], + [ + "what do i need to do now that my battery is dead", + "jump_start" + ], + [ + "i have to jump start my car", + "jump_start" + ], + [ + "what shall i do now that my battery is dead", + "jump_start" + ], + [ + "i gotta jump start my car", + "jump_start" + ], + [ + "what is the process for jump starting my car", + "jump_start" + ], + [ + "what's a good italian meal", + "meal_suggestion" + ], + [ + "i'm looking for a meal that's from the asian cuisine", + "meal_suggestion" + ], + [ + "i'm feeling like a greek meal and need some suggestions", + "meal_suggestion" + ], + [ + "indian cuisine suits me and i'd like a meal suggestion, please", + "meal_suggestion" + ], + [ + "what's a good, popular american meal", + "meal_suggestion" + ], + [ + "i'd like a meal suggestion from thailand", + "meal_suggestion" + ], + [ + "tell me what meal to eat from texas", + "meal_suggestion" + ], + [ + "can you give me a meal suggestion from the south", + "meal_suggestion" + ], + [ + "i want to try a meal from ireland", + "meal_suggestion" + ], + [ + "i want a meal from vietnam to be suggested to me", + "meal_suggestion" + ], + [ + "what are good thai dishes", + "meal_suggestion" + ], + [ + "i would like thai food", + "meal_suggestion" + ], + [ + "can you recommend thai food", + "meal_suggestion" + ], + [ + "i need a thai food suggestion", + "meal_suggestion" + ], + [ + "thai food suggestions", + "meal_suggestion" + ], + [ + "i need options or italian tonight", + "meal_suggestion" + ], + [ + "do you have any recommendations for korean", + "meal_suggestion" + ], + [ + "do you have any ideas for a mexican meal", + "meal_suggestion" + ], + [ + "what kind of indian would you recommend", + "meal_suggestion" + ], + [ + "what would you suggest for japanese", + "meal_suggestion" + ], + [ + "i need to know what's good for chinese around here", + "meal_suggestion" + ], + [ + "i want to make something from ethiopia for dinner", + "meal_suggestion" + ], + [ + "i need some ideas for a mexican meal", + "meal_suggestion" + ], + [ + "i want to eat something from turkey", + "meal_suggestion" + ], + [ + "i need a good italian dish", + "meal_suggestion" + ], + [ + "i need a good meal idea from italy", + "meal_suggestion" + ], + [ + "do you have any suggested roman recipes", + "meal_suggestion" + ], + [ + "can you give me a american dinner suggestion", + "meal_suggestion" + ], + [ + "tell me what to make for dinner", + "meal_suggestion" + ], + [ + "do you know what is for dinner", + "meal_suggestion" + ], + [ + "what do i need to do to cook a chicken", + "recipe" + ], + [ + "how do i go about cooking a 10lb turkey", + "recipe" + ], + [ + "how do i get started making homemade pizza dough", + "recipe" + ], + [ + "what instructions do i need to bake a cake from scratch", + "recipe" + ], + [ + "how do i make lasagna", + "recipe" + ], + [ + "how do you make pasta", + "recipe" + ], + [ + "how do you prepare omelet", + "recipe" + ], + [ + "how do you prepare taco", + "recipe" + ], + [ + "how do you make fried rice", + "recipe" + ], + [ + "how do you cooked eggs", + "recipe" + ], + [ + "what's a good chili recipe", + "recipe" + ], + [ + "i need a recipe for chili", + "recipe" + ], + [ + "search for chili recipes", + "recipe" + ], + [ + "search for a chili recipe for me", + "recipe" + ], + [ + "find me a recipe for chili", + "recipe" + ], + [ + "show me ideas for hamburger", + "recipe" + ], + [ + "can you get me recipes for eggs please", + "recipe" + ], + [ + "show me how to make tuna casserole please", + "recipe" + ], + [ + "recipes for garlic bread please", + "recipe" + ], + [ + "please tell me a recipe for this meal", + "recipe" + ], + [ + "can you find me a pork recipe", + "recipe" + ], + [ + "can you find me a brisket recipe", + "recipe" + ], + [ + "can you find me a rice recipe", + "recipe" + ], + [ + "can you find me a salsa recipe", + "recipe" + ], + [ + "scan you find me a chicken recipe", + "recipe" + ], + [ + "i need a pasta recipe", + "recipe" + ], + [ + "i want a recipe for roasted veggies", + "recipe" + ], + [ + "what is in a burrito recipe", + "recipe" + ], + [ + "give me a tuna salad recipe", + "recipe" + ], + [ + "find a recipe for baked ziti", + "recipe" + ], + [ + "how much money do i make", + "income" + ], + [ + "how much money do i earn", + "income" + ], + [ + "what amount of money do i earn", + "income" + ], + [ + "what do i take home", + "income" + ], + [ + "how much do i take home yearly", + "income" + ], + [ + "how much do i earn", + "income" + ], + [ + "what's my yearly salary", + "income" + ], + [ + "what's my salary", + "income" + ], + [ + "how much do i earn a year", + "income" + ], + [ + "what do i make annually", + "income" + ], + [ + "what do i bring in over a year", + "income" + ], + [ + "please tell me what amount i'm earning", + "income" + ], + [ + "can you please tell me my income", + "income" + ], + [ + "how much money am i earning", + "income" + ], + [ + "what is my compensation", + "income" + ], + [ + "how much am i paid", + "income" + ], + [ + "how much do i get paid", + "income" + ], + [ + "what is my income this year", + "income" + ], + [ + "how much money do i make from work", + "income" + ], + [ + "what will i make this year", + "income" + ], + [ + "what will i get paid this year", + "income" + ], + [ + "how much am i paid a year", + "income" + ], + [ + "how much money am i making this year at work", + "income" + ], + [ + "what's my salary for this year", + "income" + ], + [ + "what is my current salary", + "income" + ], + [ + "what's the amount of my income", + "income" + ], + [ + "what amount is my income", + "income" + ], + [ + "i want to know my income", + "income" + ], + [ + "what is my payment going to be", + "income" + ], + [ + "how much is the pay offered for my work", + "income" + ], + [ + "alexa, buy a new television", + "order" + ], + [ + "place my order alexa", + "order" + ], + [ + "siri, place my amazon order", + "order" + ], + [ + "alexa, buy my grocery list", + "order" + ], + [ + "purchase grass seed from the store", + "order" + ], + [ + "find inner tube and buy it for me", + "order" + ], + [ + "can you order me some nacho chips", + "order" + ], + [ + "i'd like to buy something", + "order" + ], + [ + "i need to buy something, please", + "order" + ], + [ + "i'd like to buy a lamp online", + "order" + ], + [ + "order all items on my shopping list", + "order" + ], + [ + "get me an order of creatine powder", + "order" + ], + [ + "place an order for my whole shopping list", + "order" + ], + [ + "order me some doritos, please", + "order" + ], + [ + "place an order for my entire shopping list", + "order" + ], + [ + "can you buy something", + "order" + ], + [ + "make a purchase of doritos", + "order" + ], + [ + "i'd like to you order everything that's on my shopping list", + "order" + ], + [ + "please buy me something", + "order" + ], + [ + "order my whole shopping list", + "order" + ], + [ + "can you order some more eggs for me since i just ran out", + "order" + ], + [ + "i've used the last can of tuna fish and need you to order a new case of it", + "order" + ], + [ + "i've just run out of butter and need you to order me some more", + "order" + ], + [ + "i'm out of milk so you will order me some more", + "order" + ], + [ + "can you place an order for the olive oil i just finished", + "order" + ], + [ + "please go on amazon so i can buy bluetooth speakers", + "order" + ], + [ + "will you please go on amazon so i can buy speakers", + "order" + ], + [ + "where can i find bluetooth speakers", + "order" + ], + [ + "what is the price of bluetooth speakers on amazon", + "order" + ], + [ + "please order some more pepsi", + "order" + ], + [ + "i need to know traffic patterns heading to the george washington bridge from manhattan", + "traffic" + ], + [ + "can you give me a traffic update for driving routes nearest ocean city, new jersey from philadelphia", + "traffic" + ], + [ + "what will traffic be like nearest the george washington bridge, new york", + "traffic" + ], + [ + "what traffic can i expect on the way to the newark, new jersey from philadelphia", + "traffic" + ], + [ + "can you tell me the traffic situation from philadelphia to the new jersey turnpike", + "traffic" + ], + [ + "how is the traffic normally driving into downtown washington, dc, from baltimore at 4:00 pm", + "traffic" + ], + [ + "how is traffic nearest the ben franklin bridge philadelphia heading to the new jersey turnpike", + "traffic" + ], + [ + "i need to know what traffic is going to be like at 3:00 pm on the new jersey turnpike heading into camden from north jersey", + "traffic" + ], + [ + "what kind of traffic can i expect driving to newark, new jersey on i-95 from philadelphia at noon", + "traffic" + ], + [ + "i need to know what traffic looks like nearest the smithsonian institute in washington, dc for the next hour", + "traffic" + ], + [ + "please tell me how traffic from the new jersey turnpike into the lincoln tunnel looks currently", + "traffic" + ], + [ + "is there traffic on i-95 north to new york from philadelphia", + "traffic" + ], + [ + "can you tell me what the traffic is usually like at 7:00 pm from philadelphia to ocean city, new jersey", + "traffic" + ], + [ + "will there be heavy traffic near downtown philadelphia from lincoln drive in the next two hours", + "traffic" + ], + [ + "what does post rush hour traffic generally look like heading into the lincoln tunnel in manhattan from new jersey", + "traffic" + ], + [ + "is traffic good or bad at 9:00 on the way to detroit", + "traffic" + ], + [ + "what kind of traffic is there at 9:00 on the route to detroit", + "traffic" + ], + [ + "how is the traffic at 9:00 on the way to detroit", + "traffic" + ], + [ + "what kind of traffic can i expect at 9:00 on the route to detroit", + "traffic" + ], + [ + "how bad is traffic at 9:00 going to detroit", + "traffic" + ], + [ + "is there traffic right now on my route to work", + "traffic" + ], + [ + "going to work, will there be traffic", + "traffic" + ], + [ + "is there traffic on my work route", + "traffic" + ], + [ + "is there traffic expected", + "traffic" + ], + [ + "on my way to work, is there traffic", + "traffic" + ], + [ + "on the way to work is there traffic", + "traffic" + ], + [ + "is there traffic on the way to work", + "traffic" + ], + [ + "will i encounter traffic", + "traffic" + ], + [ + "is there traffic on the way", + "traffic" + ], + [ + "whats the traffic for the drive to the nearest restaurant", + "traffic" + ], + [ + "can i get some more checkbooks sent to me, please", + "order_checks" + ], + [ + "could i get some more checkbooks sent to me", + "order_checks" + ], + [ + "can i get some more checkbooks mailed to me, please", + "order_checks" + ], + [ + "can i get some more checkbooks sent to me", + "order_checks" + ], + [ + "could i get some more checkbooks sent to me, please", + "order_checks" + ], + [ + "how do i order some checkbooks for my chase account", + "order_checks" + ], + [ + "for checkbooks can i order them for my chase account", + "order_checks" + ], + [ + "am i able to order more checkbooks for my chase account", + "order_checks" + ], + [ + "for my chase account can i order some checkbooks", + "order_checks" + ], + [ + "is there a way to order checkbooks for a chase account", + "order_checks" + ], + [ + "can you overnight me a few checkbooks", + "order_checks" + ], + [ + "send me more checkbooks please", + "order_checks" + ], + [ + "please mail me more checkbooks", + "order_checks" + ], + [ + "i need more checkbooks mailed as soon as possible", + "order_checks" + ], + [ + "i'd like more checkbooks mailed to me", + "order_checks" + ], + [ + "how do i order some more checks for my bank of the west account", + "order_checks" + ], + [ + "how do i order some more checks for my bank of america account", + "order_checks" + ], + [ + "how do i order some more checks for my chase account", + "order_checks" + ], + [ + "how do i order some more checks for my usaa account", + "order_checks" + ], + [ + "how do i order some more checks for my navy federal account", + "order_checks" + ], + [ + "i'm out of all my checks can i get some new ones", + "order_checks" + ], + [ + "i'm out of my checks i need some new ones", + "order_checks" + ], + [ + "can i get some new checks i'm out of mine", + "order_checks" + ], + [ + "i need to order some new checks, i'm all out of them", + "order_checks" + ], + [ + "i am in need of new checks i'm completely out of mine", + "order_checks" + ], + [ + "may i order more checks for my well's fargo account", + "order_checks" + ], + [ + "do you know how i order more checks for my well's fargo account", + "order_checks" + ], + [ + "what do i do to order new checkbooks for my well's fargo account", + "order_checks" + ], + [ + "how do i order more checkbooks for my well's fargo account", + "order_checks" + ], + [ + "where do i go to order more checks for my well's fargo account", + "order_checks" + ], + [ + "my card got declined; why", + "card_declined" + ], + [ + "can you help me understand why my card got declined", + "card_declined" + ], + [ + "why was my card not accepted", + "card_declined" + ], + [ + "can you tell me why my card got declined", + "card_declined" + ], + [ + "i was at publix trying to buy some food but my card wouldnt work", + "card_declined" + ], + [ + "who do i need to contact to find out why my card got declined", + "card_declined" + ], + [ + "i need to know why my card got declined", + "card_declined" + ], + [ + "how do i fix my card, it was declined", + "card_declined" + ], + [ + "why did my card get declined at public when i was trying to buy food", + "card_declined" + ], + [ + "i was trying to buy food at publix but my card got declined", + "card_declined" + ], + [ + "i was trying to use my card to get food at publix but it got declined", + "card_declined" + ], + [ + "how can i fix my card being declined", + "card_declined" + ], + [ + "i was trying to get food at publix, why was my card declined", + "card_declined" + ], + [ + "do you know why my card got declined", + "card_declined" + ], + [ + "why my card stop working", + "card_declined" + ], + [ + "my card declined", + "card_declined" + ], + [ + "i was in australia trying to buy chips and my cards got declined", + "card_declined" + ], + [ + "i was in thailand trying to buy candies and my card got declined", + "card_declined" + ], + [ + "why was my card got declined when i am trying to pay for dinner when i am in vietnam", + "card_declined" + ], + [ + "i could not buy food using my card when i was in vietnam", + "card_declined" + ], + [ + "i was in thailand and i could not use my card to buy snacks", + "card_declined" + ], + [ + "can you explain why i couldn't use my card at target", + "card_declined" + ], + [ + "why was my card not working at target", + "card_declined" + ], + [ + "my credit card was turned down at target and i'd like to know why", + "card_declined" + ], + [ + "how come i got declined", + "card_declined" + ], + [ + "why can't i use my credit card", + "card_declined" + ], + [ + "why won't you let me pay with my credit card", + "card_declined" + ], + [ + "why did i get rejected on my card", + "card_declined" + ], + [ + "how come my credit card isn't working", + "card_declined" + ], + [ + "why didn't my card work", + "card_declined" + ] + ], + "oos_train": [ + [ + "how much is an overdraft fee for bank", + "oos" + ], + [ + "why are exponents preformed before multiplication in the order of operations", + "oos" + ], + [ + "what size wipers does this car take", + "oos" + ], + [ + "where is the dipstick", + "oos" + ], + [ + "how much is 1 share of aapl", + "oos" + ], + [ + "how is glue made", + "oos" + ], + [ + "any headlines from my area", + "oos" + ], + [ + "what is the largest state in the us", + "oos" + ], + [ + "what is the current market trend", + "oos" + ], + [ + "what is the most popular airline", + "oos" + ], + [ + "what is the formula for the circumference of a circle", + "oos" + ], + [ + "what are some ways to reduce spending", + "oos" + ], + [ + "what time does the louvre open", + "oos" + ], + [ + "are there any local stations covering the moral march in raleigh in februaryu", + "oos" + ], + [ + "how many planets have we discovered", + "oos" + ], + [ + "how do i change my billing address", + "oos" + ], + [ + "how do i open an online line of credit", + "oos" + ], + [ + "how do i remove a coffee blemish", + "oos" + ], + [ + "how expensive is an apple share", + "oos" + ], + [ + "where can i find the cruise control on my kia sportage 2010", + "oos" + ], + [ + "how many sides are in a hexagon", + "oos" + ], + [ + "how fast does an airplane travel", + "oos" + ], + [ + "is it worth investing in target", + "oos" + ], + [ + "i need to speak to customer service regarding my flight", + "oos" + ], + [ + "how long do wire transfers take", + "oos" + ], + [ + "what are some deals on amazon", + "oos" + ], + [ + "what city is the super bowl", + "oos" + ], + [ + "what trees change color in autumn", + "oos" + ], + [ + "do people prefer summer over fall", + "oos" + ], + [ + "how long is winter", + "oos" + ], + [ + "what were some of ben franklin's notable accomplishments", + "oos" + ], + [ + "where was john denver born", + "oos" + ], + [ + "where did abraham lincoln live", + "oos" + ], + [ + "when was kobe bryant born", + "oos" + ], + [ + "who's toledo's starting point guard for the next game", + "oos" + ], + [ + "how many players are on the chicago bulls", + "oos" + ], + [ + "who is the coach of the chicago bulls", + "oos" + ], + [ + "when do the utah jazz play next", + "oos" + ], + [ + "what other nations were involved in the chinese trade war", + "oos" + ], + [ + "what years has korea been at war", + "oos" + ], + [ + "when was the theory of evolution first considered", + "oos" + ], + [ + "who formulated the theory of relativity", + "oos" + ], + [ + "what stage of evolution am i", + "oos" + ], + [ + "what other personality type is most compatible with infjs", + "oos" + ], + [ + "what does my personality mean", + "oos" + ], + [ + "what's the most dominant scale in bluegrass", + "oos" + ], + [ + "what year was saxaphone first played", + "oos" + ], + [ + "which piano is best for classical", + "oos" + ], + [ + "is k-12 education required outside of the united states", + "oos" + ], + [ + "what are the benefits of completing college", + "oos" + ], + [ + "are you able to answer algebra equations", + "oos" + ], + [ + "can you help me study for a history exam", + "oos" + ], + [ + "how many points per game is lebron james averaging this season", + "oos" + ], + [ + "what team does eli mannign play for", + "oos" + ], + [ + "get me dwight howard shooting average", + "oos" + ], + [ + "can you list me tiger wood's stats", + "oos" + ], + [ + "what's the runtime of all the lord of the rings movies combined", + "oos" + ], + [ + "which character is the most famous from titanic", + "oos" + ], + [ + "how many oscars did star wars films win", + "oos" + ], + [ + "what year was shawshank redemption released", + "oos" + ], + [ + "which marvel character has appeared in the most movies", + "oos" + ], + [ + "when's the next movie starring thor set to come out", + "oos" + ], + [ + "who was the first capcom character", + "oos" + ], + [ + "are any justice league movies coming out", + "oos" + ], + [ + "can you tell me something about the nfl", + "oos" + ], + [ + "please explain the catch rule to me", + "oos" + ], + [ + "is there overtime in college football", + "oos" + ], + [ + "when did the mls start", + "oos" + ], + [ + "what's the best price on super smash bros ultimate right now", + "oos" + ], + [ + "what is the highest earning game on atari", + "oos" + ], + [ + "when is the next nintendo direct", + "oos" + ], + [ + "when was nintendo created", + "oos" + ], + [ + "please find the capital of pakistan and its population", + "oos" + ], + [ + "how many people live in taiwan", + "oos" + ], + [ + "what are some of picasso's most famous works", + "oos" + ], + [ + "what are van gogh's best pieces", + "oos" + ], + [ + "where can i see art", + "oos" + ], + [ + "when did camus die", + "oos" + ], + [ + "how much money does radiohead earn a year", + "oos" + ], + [ + "who is radiohead", + "oos" + ], + [ + "what's the biggest saas marketing company in the united states", + "oos" + ], + [ + "how do i start my own marketing firm", + "oos" + ], + [ + "how can i get involved in restaurant marketing", + "oos" + ], + [ + "what is saas marketing", + "oos" + ], + [ + "what do you call someone who was born in segovia", + "oos" + ], + [ + "what is rhineland", + "oos" + ], + [ + "who is the scariest character in start trek", + "oos" + ], + [ + "who is the current captain of this ship", + "oos" + ], + [ + "what year was star trek released", + "oos" + ], + [ + "when was toyota created", + "oos" + ], + [ + "who are some notable alumni of ucsd", + "oos" + ], + [ + "what is the next football game", + "oos" + ], + [ + "how many students attend ucsb", + "oos" + ], + [ + "when do classes start", + "oos" + ], + [ + "how can i become an aerospace engineer", + "oos" + ], + [ + "what percentage of species display cold blooded traits", + "oos" + ], + [ + "what does it mean to be an alpha male", + "oos" + ], + [ + "what animals have alpha males", + "oos" + ], + [ + "why do males want to be alpha", + "oos" + ], + [ + "what's the average battery life of an android phone", + "oos" + ] + ] +} From 671b3886b464dfc30ce241e187e33709bffec3bf Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 16:42:20 +0300 Subject: [PATCH 35/94] Update server.py --- annotators/dnnc_intents/server.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/annotators/dnnc_intents/server.py b/annotators/dnnc_intents/server.py index e5d6eb2248..4db307e035 100644 --- a/annotators/dnnc_intents/server.py +++ b/annotators/dnnc_intents/server.py @@ -16,9 +16,9 @@ logger = logging.getLogger(__name__) try: - model = build_model("combined_classifier.json", download=True) + model = build_model("classifier.json", download=True) logger.info("Making test res") - test_res = get_result(["a"], ["a"]) + test_res = model(["a"]) logger.info("model loaded, test query processed") except Exception as e: sentry_sdk.capture_exception(e) From 38a14d136e5b3466253b342ea136425f7091b502 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 16:44:39 +0300 Subject: [PATCH 36/94] Update test.py --- annotators/dnnc_intents/test.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/annotators/dnnc_intents/test.py b/annotators/dnnc_intents/test.py index 6310490ec2..e1db62e243 100644 --- a/annotators/dnnc_intents/test.py +++ b/annotators/dnnc_intents/test.py @@ -4,7 +4,11 @@ def main_test(): url = "http://0.0.0.0:8218/model" - configs = [to write] + configs = [{"sentences":["what is saas marketing"],"answers_dnnc":["oos"]}, + {"sentences":["what day is it gonna be in twenty-one days"], + "answers_dnnc":["date"]}, + {"sentences":["how long will it take me to make baked chicken"], + "answers_dnnc":["cook_time"]}] t = time() for config in configs: responses = requests.post(url, json=config).json() From 1a18dfd3463936d07a32c4afe33fc32698a85dc8 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 16:48:34 +0300 Subject: [PATCH 37/94] Update utils.py --- common/utils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/common/utils.py b/common/utils.py index 23fd9e59fd..dbbf233cb1 100644 --- a/common/utils.py +++ b/common/utils.py @@ -9,7 +9,6 @@ from common.custom_requests import request_triples_wikidata from common.factoid import FACTOID_THRESHOLD from common.combined_classes import combined_classes, TOPIC_GROUPS -from common.dnnc_classes import dnnc_classes from common.join_pattern import * from common import food, books, music, news, travel @@ -852,7 +851,7 @@ def get_intents(annotated_utterance, probs=False, default_probs=None, default_la cobot_da_intent_labels = _process_text(cobot_da_intent_labels) if not cobot_da_intent_probs: cobot_da_intent_probs = _labels_to_probs(cobot_da_intent_labels, combined_classes["cobot_dialogact_intents"]) - dnnc_intent_probs = annotated_utterance["annotations"].get("dnnc_intents",[]) + dnnc_intent_probs = annotated_utterance["annotations"].get("dnnc_intents", []) dnnc_intents = [intent for intent in dnnc_intent_probs if dnnc_intent_probs[intent] == 1] if which == "all": answer_probs = {**detected_intent_probs, **cobot_da_intent_probs, **midas_intent_probs, **dnnc_intent_probs} From cf7b46655b00af01e6d4f766d3d0b5ab1122c29a Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 16:49:41 +0300 Subject: [PATCH 38/94] Update dnnc_classes.py --- common/dnnc_classes.py | 298 ++++++++++++++++++++--------------------- 1 file changed, 149 insertions(+), 149 deletions(-) diff --git a/common/dnnc_classes.py b/common/dnnc_classes.py index 0c8104f746..36b60b9ea9 100644 --- a/common/dnnc_classes.py +++ b/common/dnnc_classes.py @@ -1,150 +1,150 @@ dnnc_classes = ["accept_reservations", - "account_blocked", - "alarm", - "application_status", - "apr", - "are_you_a_bot", - "balance", - "bill_balance", - "bill_due", - "book_flight", - "book_hotel", - "calculator", - "calendar", - "calendar_update", - "calories", - "cancel", - "cancel_reservation", - "car_rental", - "card_declined", - "carry_on", - "change_accent", - "change_ai_name", - "change_language", - "change_speed", - "change_user_name", - "change_volume", - "confirm_reservation", - "cook_time", - "credit_limit", - "credit_limit_change", - "credit_score", - "current_location", - "damaged_card", - "date", - "definition", - "direct_deposit", - "directions", - "distance", - "do_you_have_pets", - "exchange_rate", - "expiration_date", - "find_phone", - "flight_status", - "flip_coin", - "food_last", - "freeze_account", - "fun_fact", - "gas", - "gas_type", - "goodbye", - "greeting", - "how_busy", - "how_old_are_you", - "improve_credit_score", - "income", - "ingredient_substitution", - "ingredients_list", - "insurance", - "insurance_change", - "interest_rate", - "international_fees", - "international_visa", - "jump_start", - "last_maintenance", - "lost_luggage", - "make_call", - "maybe", - "meal_suggestion", - "meaning_of_life", - "measurement_conversion", - "meeting_schedule", - "min_payment", - "mpg", - "new_card", - "next_holiday", - "next_song", - "no", - "nutrition_info", - "oil_change_how", - "oil_change_when", - "order", - "order_checks", - "order_status", - "pay_bill", - "payday", - "pin_change", - "play_music", - "plug_type", - "pto_balance", - "pto_request", - "pto_request_status", - "pto_used", - "recipe", - "redeem_rewards", - "reminder", - "reminder_update", - "repeat", - "replacement_card_duration", - "report_fraud", - "report_lost_card", - "reset_settings", - "restaurant_reservation", - "restaurant_reviews", - "restaurant_suggestion", - "rewards_balance", - "roll_dice", - "rollover_401k", - "routing", - "schedule_maintenance", - "schedule_meeting", - "share_location", - "shopping_list", - "shopping_list_update", - "smart_home", - "spelling", - "spending_history", - "sync_device", - "taxes", - "tell_joke", - "text", - "thank_you", - "time", - "timer", - "timezone", - "tire_change", - "tire_pressure", - "todo_list", - "todo_list_update", - "traffic", - "transactions", - "transfer", - "translate", - "travel_alert", - "travel_notification", - "travel_suggestion", - "uber", - "update_playlist", - "user_name", - "vaccines", - "w2", - "weather", - "what_are_your_hobbies", - "what_can_i_ask_you", - "what_is_your_name", - "what_song", - "where_are_you_from", - "whisper_mode", - "who_do_you_work_for", - "who_made_you", - "yes"] + "account_blocked", + "alarm", + "application_status", + "apr", + "are_you_a_bot", + "balance", + "bill_balance", + "bill_due", + "book_flight", + "book_hotel", + "calculator", + "calendar", + "calendar_update", + "calories", + "cancel", + "cancel_reservation", + "car_rental", + "card_declined", + "carry_on", + "change_accent", + "change_ai_name", + "change_language", + "change_speed", + "change_user_name", + "change_volume", + "confirm_reservation", + "cook_time", + "credit_limit", + "credit_limit_change", + "credit_score", + "current_location", + "damaged_card", + "date", + "definition", + "direct_deposit", + "directions", + "distance", + "do_you_have_pets", + "exchange_rate", + "expiration_date", + "find_phone", + "flight_status", + "flip_coin", + "food_last", + "freeze_account", + "fun_fact", + "gas", + "gas_type", + "goodbye", + "greeting", + "how_busy", + "how_old_are_you", + "improve_credit_score", + "income", + "ingredient_substitution", + "ingredients_list", + "insurance", + "insurance_change", + "interest_rate", + "international_fees", + "international_visa", + "jump_start", + "last_maintenance", + "lost_luggage", + "make_call", + "maybe", + "meal_suggestion", + "meaning_of_life", + "measurement_conversion", + "meeting_schedule", + "min_payment", + "mpg", + "new_card", + "next_holiday", + "next_song", + "no", + "nutrition_info", + "oil_change_how", + "oil_change_when", + "order", + "order_checks", + "order_status", + "pay_bill", + "payday", + "pin_change", + "play_music", + "plug_type", + "pto_balance", + "pto_request", + "pto_request_status", + "pto_used", + "recipe", + "redeem_rewards", + "reminder", + "reminder_update", + "repeat", + "replacement_card_duration", + "report_fraud", + "report_lost_card", + "reset_settings", + "restaurant_reservation", + "restaurant_reviews", + "restaurant_suggestion", + "rewards_balance", + "roll_dice", + "rollover_401k", + "routing", + "schedule_maintenance", + "schedule_meeting", + "share_location", + "shopping_list", + "shopping_list_update", + "smart_home", + "spelling", + "spending_history", + "sync_device", + "taxes", + "tell_joke", + "text", + "thank_you", + "time", + "timer", + "timezone", + "tire_change", + "tire_pressure", + "todo_list", + "todo_list_update", + "traffic", + "transactions", + "transfer", + "translate", + "travel_alert", + "travel_notification", + "travel_suggestion", + "uber", + "update_playlist", + "user_name", + "vaccines", + "w2", + "weather", + "what_are_your_hobbies", + "what_can_i_ask_you", + "what_is_your_name", + "what_song", + "where_are_you_from", + "whisper_mode", + "who_do_you_work_for", + "who_made_you", + "yes"] From 58407e64d1f16201edbe599c4b3dda26ac21246b Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 16:51:19 +0300 Subject: [PATCH 39/94] Update load_test.py --- annotators/dnnc_intents/load_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/annotators/dnnc_intents/load_test.py b/annotators/dnnc_intents/load_test.py index 1c56d436dd..ec56e08b22 100644 --- a/annotators/dnnc_intents/load_test.py +++ b/annotators/dnnc_intents/load_test.py @@ -19,4 +19,4 @@ def hello_world(self): print(ans.status_code, ans.text) def on_start(self): - self.batch_index = + self.batch_index = 0 From 6ffdc7fcca35d815fc27c6f52d5dbdd3afd072cb Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 16:52:15 +0300 Subject: [PATCH 40/94] Update server.py --- annotators/dnnc_intents/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/annotators/dnnc_intents/server.py b/annotators/dnnc_intents/server.py index 4db307e035..e75b24b163 100644 --- a/annotators/dnnc_intents/server.py +++ b/annotators/dnnc_intents/server.py @@ -35,5 +35,5 @@ def respond(): label_list = model(sentences) ans=[] for sentence in sentences: - ans.append({dnnc_class:1 for dnnc_class in label_list} + ans.append({dnnc_class:1 for dnnc_class in label_list}) return jsonify(ans) From 684df290829c52dc0b8a81de02072c8430ae5033 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 16:55:39 +0300 Subject: [PATCH 41/94] Update test.py --- annotators/dnnc_intents/test.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/annotators/dnnc_intents/test.py b/annotators/dnnc_intents/test.py index e1db62e243..893e089e10 100644 --- a/annotators/dnnc_intents/test.py +++ b/annotators/dnnc_intents/test.py @@ -4,11 +4,11 @@ def main_test(): url = "http://0.0.0.0:8218/model" - configs = [{"sentences":["what is saas marketing"],"answers_dnnc":["oos"]}, - {"sentences":["what day is it gonna be in twenty-one days"], - "answers_dnnc":["date"]}, - {"sentences":["how long will it take me to make baked chicken"], - "answers_dnnc":["cook_time"]}] + configs = [{"sentences": ["what is saas marketing"], "answers_dnnc": ["oos"]}, + {"sentences": ["what day is it gonna be in twenty-one days"], + "answers_dnnc": ["date"]}, + {"sentences": ["how long will it take me to make baked chicken"], + "answers_dnnc": ["cook_time"]}] t = time() for config in configs: responses = requests.post(url, json=config).json() From f40f064a1507d816fcacb997fa47154c6ebd37c7 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 16:56:37 +0300 Subject: [PATCH 42/94] Update utils.py --- annotators/dnnc_intents/utils.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/annotators/dnnc_intents/utils.py b/annotators/dnnc_intents/utils.py index c41aeea175..c259d62a60 100644 --- a/annotators/dnnc_intents/utils.py +++ b/annotators/dnnc_intents/utils.py @@ -2,10 +2,12 @@ from deeppavlov.core.common.registry import register import json + @register("dnnc_preparer") class dnnc_preparer(Component): def __init__(self): - self.data = json.load(open("data_full.json","r")) + self.data = json.load(open("data_full.json", "r")) + def __call__(self, texts): - datasets = data["train"] + data["oos_train"] + datasets = self.data["train"] + self.data["oos_train"] return texts, datasets From 4a1fe06792153178784c92a954279d0b97c67abb Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 16:59:34 +0300 Subject: [PATCH 43/94] Update server.py --- annotators/dnnc_intents/server.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/annotators/dnnc_intents/server.py b/annotators/dnnc_intents/server.py index e75b24b163..324dec2510 100644 --- a/annotators/dnnc_intents/server.py +++ b/annotators/dnnc_intents/server.py @@ -1,3 +1,4 @@ +import logging import os import time @@ -6,8 +7,6 @@ from sentry_sdk.integrations.flask import FlaskIntegration from deeppavlov import build_model -from common.combined_classes import combined_classes -from common.dnnc_classes import dnnc_classes logging.basicConfig(format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", level=logging.INFO) @@ -35,5 +34,7 @@ def respond(): label_list = model(sentences) ans=[] for sentence in sentences: - ans.append({dnnc_class:1 for dnnc_class in label_list}) + ans.append({dnnc_class: 1 for dnnc_class in label_list}) + logger.debug(f"dnnc result: {ans}") + logger.info(f"dnnc exec time: {time.time() - t}") return jsonify(ans) From 7b71743785cb69b0c25c45016eb02aa0f1880fe3 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 17:03:13 +0300 Subject: [PATCH 44/94] Update server.py --- annotators/dnnc_intents/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/annotators/dnnc_intents/server.py b/annotators/dnnc_intents/server.py index 324dec2510..4e312940cc 100644 --- a/annotators/dnnc_intents/server.py +++ b/annotators/dnnc_intents/server.py @@ -32,7 +32,7 @@ def respond(): t = time.time() sentences = request.json.get("sentences", [" "]) label_list = model(sentences) - ans=[] + ans = [] for sentence in sentences: ans.append({dnnc_class: 1 for dnnc_class in label_list}) logger.debug(f"dnnc result: {ans}") From 62b5b58f0ccf9231817be8ba32b17df8bd0fec71 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 17:05:49 +0300 Subject: [PATCH 45/94] black codestyle --- annotators/dnnc_intents/test.py | 10 +- common/dnnc_classes.py | 302 ++++++++++++++++---------------- 2 files changed, 157 insertions(+), 155 deletions(-) diff --git a/annotators/dnnc_intents/test.py b/annotators/dnnc_intents/test.py index 893e089e10..283031aa09 100644 --- a/annotators/dnnc_intents/test.py +++ b/annotators/dnnc_intents/test.py @@ -4,11 +4,11 @@ def main_test(): url = "http://0.0.0.0:8218/model" - configs = [{"sentences": ["what is saas marketing"], "answers_dnnc": ["oos"]}, - {"sentences": ["what day is it gonna be in twenty-one days"], - "answers_dnnc": ["date"]}, - {"sentences": ["how long will it take me to make baked chicken"], - "answers_dnnc": ["cook_time"]}] + configs = [ + {"sentences": ["what is saas marketing"], "answers_dnnc": ["oos"]}, + {"sentences": ["what day is it gonna be in twenty-one days"], "answers_dnnc": ["date"]}, + {"sentences": ["how long will it take me to make baked chicken"], "answers_dnnc": ["cook_time"]}, + ] t = time() for config in configs: responses = requests.post(url, json=config).json() diff --git a/common/dnnc_classes.py b/common/dnnc_classes.py index 36b60b9ea9..dde025dae4 100644 --- a/common/dnnc_classes.py +++ b/common/dnnc_classes.py @@ -1,150 +1,152 @@ -dnnc_classes = ["accept_reservations", - "account_blocked", - "alarm", - "application_status", - "apr", - "are_you_a_bot", - "balance", - "bill_balance", - "bill_due", - "book_flight", - "book_hotel", - "calculator", - "calendar", - "calendar_update", - "calories", - "cancel", - "cancel_reservation", - "car_rental", - "card_declined", - "carry_on", - "change_accent", - "change_ai_name", - "change_language", - "change_speed", - "change_user_name", - "change_volume", - "confirm_reservation", - "cook_time", - "credit_limit", - "credit_limit_change", - "credit_score", - "current_location", - "damaged_card", - "date", - "definition", - "direct_deposit", - "directions", - "distance", - "do_you_have_pets", - "exchange_rate", - "expiration_date", - "find_phone", - "flight_status", - "flip_coin", - "food_last", - "freeze_account", - "fun_fact", - "gas", - "gas_type", - "goodbye", - "greeting", - "how_busy", - "how_old_are_you", - "improve_credit_score", - "income", - "ingredient_substitution", - "ingredients_list", - "insurance", - "insurance_change", - "interest_rate", - "international_fees", - "international_visa", - "jump_start", - "last_maintenance", - "lost_luggage", - "make_call", - "maybe", - "meal_suggestion", - "meaning_of_life", - "measurement_conversion", - "meeting_schedule", - "min_payment", - "mpg", - "new_card", - "next_holiday", - "next_song", - "no", - "nutrition_info", - "oil_change_how", - "oil_change_when", - "order", - "order_checks", - "order_status", - "pay_bill", - "payday", - "pin_change", - "play_music", - "plug_type", - "pto_balance", - "pto_request", - "pto_request_status", - "pto_used", - "recipe", - "redeem_rewards", - "reminder", - "reminder_update", - "repeat", - "replacement_card_duration", - "report_fraud", - "report_lost_card", - "reset_settings", - "restaurant_reservation", - "restaurant_reviews", - "restaurant_suggestion", - "rewards_balance", - "roll_dice", - "rollover_401k", - "routing", - "schedule_maintenance", - "schedule_meeting", - "share_location", - "shopping_list", - "shopping_list_update", - "smart_home", - "spelling", - "spending_history", - "sync_device", - "taxes", - "tell_joke", - "text", - "thank_you", - "time", - "timer", - "timezone", - "tire_change", - "tire_pressure", - "todo_list", - "todo_list_update", - "traffic", - "transactions", - "transfer", - "translate", - "travel_alert", - "travel_notification", - "travel_suggestion", - "uber", - "update_playlist", - "user_name", - "vaccines", - "w2", - "weather", - "what_are_your_hobbies", - "what_can_i_ask_you", - "what_is_your_name", - "what_song", - "where_are_you_from", - "whisper_mode", - "who_do_you_work_for", - "who_made_you", - "yes"] +dnnc_classes = [ + "accept_reservations", + "account_blocked", + "alarm", + "application_status", + "apr", + "are_you_a_bot", + "balance", + "bill_balance", + "bill_due", + "book_flight", + "book_hotel", + "calculator", + "calendar", + "calendar_update", + "calories", + "cancel", + "cancel_reservation", + "car_rental", + "card_declined", + "carry_on", + "change_accent", + "change_ai_name", + "change_language", + "change_speed", + "change_user_name", + "change_volume", + "confirm_reservation", + "cook_time", + "credit_limit", + "credit_limit_change", + "credit_score", + "current_location", + "damaged_card", + "date", + "definition", + "direct_deposit", + "directions", + "distance", + "do_you_have_pets", + "exchange_rate", + "expiration_date", + "find_phone", + "flight_status", + "flip_coin", + "food_last", + "freeze_account", + "fun_fact", + "gas", + "gas_type", + "goodbye", + "greeting", + "how_busy", + "how_old_are_you", + "improve_credit_score", + "income", + "ingredient_substitution", + "ingredients_list", + "insurance", + "insurance_change", + "interest_rate", + "international_fees", + "international_visa", + "jump_start", + "last_maintenance", + "lost_luggage", + "make_call", + "maybe", + "meal_suggestion", + "meaning_of_life", + "measurement_conversion", + "meeting_schedule", + "min_payment", + "mpg", + "new_card", + "next_holiday", + "next_song", + "no", + "nutrition_info", + "oil_change_how", + "oil_change_when", + "order", + "order_checks", + "order_status", + "pay_bill", + "payday", + "pin_change", + "play_music", + "plug_type", + "pto_balance", + "pto_request", + "pto_request_status", + "pto_used", + "recipe", + "redeem_rewards", + "reminder", + "reminder_update", + "repeat", + "replacement_card_duration", + "report_fraud", + "report_lost_card", + "reset_settings", + "restaurant_reservation", + "restaurant_reviews", + "restaurant_suggestion", + "rewards_balance", + "roll_dice", + "rollover_401k", + "routing", + "schedule_maintenance", + "schedule_meeting", + "share_location", + "shopping_list", + "shopping_list_update", + "smart_home", + "spelling", + "spending_history", + "sync_device", + "taxes", + "tell_joke", + "text", + "thank_you", + "time", + "timer", + "timezone", + "tire_change", + "tire_pressure", + "todo_list", + "todo_list_update", + "traffic", + "transactions", + "transfer", + "translate", + "travel_alert", + "travel_notification", + "travel_suggestion", + "uber", + "update_playlist", + "user_name", + "vaccines", + "w2", + "weather", + "what_are_your_hobbies", + "what_can_i_ask_you", + "what_is_your_name", + "what_song", + "where_are_you_from", + "whisper_mode", + "who_do_you_work_for", + "who_made_you", + "yes", +] From c96b172c187afaddb24912c5555e25c0a454abb4 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 17:24:06 +0300 Subject: [PATCH 46/94] Update dev.yml --- assistant_dists/dream/dev.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assistant_dists/dream/dev.yml b/assistant_dists/dream/dev.yml index 7c083f41d2..ac3f55bcd7 100644 --- a/assistant_dists/dream/dev.yml +++ b/assistant_dists/dream/dev.yml @@ -159,7 +159,7 @@ services: - 8167:8167 dnnc-intents: volumes: - - "./services/dnnc_intents:/src" + - "./annotators/dnnc_intents:/src" - "./common:/src/common" ports: - 8218:8218 From 93614cffeddd1da54b6269cd30ac3a4e8cfc0200 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 17:24:44 +0300 Subject: [PATCH 47/94] Update docker-compose.override.yml --- assistant_dists/dream/docker-compose.override.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assistant_dists/dream/docker-compose.override.yml b/assistant_dists/dream/docker-compose.override.yml index bf00a1b57e..945f1cb515 100644 --- a/assistant_dists/dream/docker-compose.override.yml +++ b/assistant_dists/dream/docker-compose.override.yml @@ -490,7 +490,7 @@ services: args: SERVICE_PORT: 8218 SERVICE_NAME: dnnc_intents - context: ./services/dnnc_intents/ + context: ./annotators/dnnc_intents/ command: flask run -h 0.0.0.0 -p 8218 environment: - CUDA_VISIBLE_DEVICES=0 From a71115a9bd2a593b12b74f272b6c7c5e3c36f89b Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 17:32:07 +0300 Subject: [PATCH 48/94] Now bug is that container does not find requirements.txt --- annotators/dnnc_intents/Dockerfile | 1 - assistant_dists/dream/dev.yml | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/annotators/dnnc_intents/Dockerfile b/annotators/dnnc_intents/Dockerfile index 8b61b48e92..b03ddb9f1e 100644 --- a/annotators/dnnc_intents/Dockerfile +++ b/annotators/dnnc_intents/Dockerfile @@ -2,7 +2,6 @@ FROM deeppavlov/deeppavlov:1.2.0-gpu WORKDIR /base/DeepPavlov - WORKDIR /src RUN mkdir common diff --git a/assistant_dists/dream/dev.yml b/assistant_dists/dream/dev.yml index ac3f55bcd7..177eb7221b 100644 --- a/assistant_dists/dream/dev.yml +++ b/assistant_dists/dream/dev.yml @@ -161,6 +161,8 @@ services: volumes: - "./annotators/dnnc_intents:/src" - "./common:/src/common" + - "~/.deeppavlov:/root/.deeppavlov" + - "~/.deeppavlov/cache:/root/.cache" ports: - 8218:8218 version: "3.7" From fbde76cbe4451aa723c5393d0c7397a7b2b03067 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 21:52:47 +0300 Subject: [PATCH 49/94] Update proxy.yml --- assistant_dists/dream/proxy.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/assistant_dists/dream/proxy.yml b/assistant_dists/dream/proxy.yml index 605b16f3c9..42ddd54d16 100644 --- a/assistant_dists/dream/proxy.yml +++ b/assistant_dists/dream/proxy.yml @@ -125,6 +125,7 @@ services: environment: - PROXY_PASS=proxy.deeppavlov.ai:8136 - PORT=8136 + dnnc-intents: command: [ "nginx", "-g", "daemon off;" ] build: From 120798949c1d215b9c530f84d6c7246444873343 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 21:55:56 +0300 Subject: [PATCH 50/94] Update docker-compose.override.yml --- assistant_dists/dream/docker-compose.override.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assistant_dists/dream/docker-compose.override.yml b/assistant_dists/dream/docker-compose.override.yml index 945f1cb515..661d44f635 100644 --- a/assistant_dists/dream/docker-compose.override.yml +++ b/assistant_dists/dream/docker-compose.override.yml @@ -490,7 +490,7 @@ services: args: SERVICE_PORT: 8218 SERVICE_NAME: dnnc_intents - context: ./annotators/dnnc_intents/ + context: . command: flask run -h 0.0.0.0 -p 8218 environment: - CUDA_VISIBLE_DEVICES=0 From a06d3be1a4dafc3c73e5a364948e32dd18602af2 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 22:19:37 +0300 Subject: [PATCH 51/94] Update docker-compose.override.yml --- assistant_dists/dream/docker-compose.override.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assistant_dists/dream/docker-compose.override.yml b/assistant_dists/dream/docker-compose.override.yml index 661d44f635..7c04733c81 100644 --- a/assistant_dists/dream/docker-compose.override.yml +++ b/assistant_dists/dream/docker-compose.override.yml @@ -491,10 +491,10 @@ services: SERVICE_PORT: 8218 SERVICE_NAME: dnnc_intents context: . - command: flask run -h 0.0.0.0 -p 8218 + dockerfile: ./annotators/dnnc_intents/Dockerfile + command: gunicorn --workers=1 server:app -b 0.0.0.0:8218 --timeout 600 environment: - CUDA_VISIBLE_DEVICES=0 - - FLASK_APP=server deploy: resources: limits: From adf9231c4ea33f88311bdccfc68ac8c1405a6ba9 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 22:24:59 +0300 Subject: [PATCH 52/94] Update classifier.json --- annotators/dnnc_intents/classifier.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/annotators/dnnc_intents/classifier.json b/annotators/dnnc_intents/classifier.json index 18cbd40742..0a48111acf 100644 --- a/annotators/dnnc_intents/classifier.json +++ b/annotators/dnnc_intents/classifier.json @@ -6,7 +6,7 @@ { "class_name": "utils:dnnc_batch_preprocessor", "in": ["text"], - "out": ["texts","dataset"], + "out": ["texts","dataset"] }, { "class_name": "dnnc_pair_generator", From e50c4014ea6582782d5a2dc9d72db1e46b30d406 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 22:27:06 +0300 Subject: [PATCH 53/94] Update classifier.json --- annotators/dnnc_intents/classifier.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/annotators/dnnc_intents/classifier.json b/annotators/dnnc_intents/classifier.json index 0a48111acf..3890a76f46 100644 --- a/annotators/dnnc_intents/classifier.json +++ b/annotators/dnnc_intents/classifier.json @@ -4,7 +4,7 @@ "in_y": ["y_true"], "pipe": [ { - "class_name": "utils:dnnc_batch_preprocessor", + "class_name": "dnnc_batch_preprocessor", "in": ["text"], "out": ["texts","dataset"] }, @@ -51,7 +51,7 @@ "BINARY_CLASSIFICATION": true, "BASE_MODEL": "roberta-base" }, - "imports":["utils.py"], + "imports":["utils"], "download": [ { "url": "http://files.deeppavlov.ai/v1/classifiers/fewshot/roberta_nli_mrpc_1_10.tar.gz", From 7506ef49c7aa7a7d798c177d2e81e6fe28266940 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 22:28:15 +0300 Subject: [PATCH 54/94] Update classifier.json --- annotators/dnnc_intents/classifier.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/annotators/dnnc_intents/classifier.json b/annotators/dnnc_intents/classifier.json index 3890a76f46..88a89599d1 100644 --- a/annotators/dnnc_intents/classifier.json +++ b/annotators/dnnc_intents/classifier.json @@ -4,7 +4,7 @@ "in_y": ["y_true"], "pipe": [ { - "class_name": "dnnc_batch_preprocessor", + "class_name": "dnnc_preparer", "in": ["text"], "out": ["texts","dataset"] }, From 23df970a67685c9ff9d04ea63558d57afcd61501 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 22:30:18 +0300 Subject: [PATCH 55/94] Update classifier.json --- annotators/dnnc_intents/classifier.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/annotators/dnnc_intents/classifier.json b/annotators/dnnc_intents/classifier.json index 88a89599d1..849c22643f 100644 --- a/annotators/dnnc_intents/classifier.json +++ b/annotators/dnnc_intents/classifier.json @@ -1,7 +1,6 @@ { "chainer": { - "in": ["texts"], - "in_y": ["y_true"], + "in": ["text"], "pipe": [ { "class_name": "dnnc_preparer", From f0d28cecd831fa4708634d46061e0795b7506aec Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 22:36:11 +0300 Subject: [PATCH 56/94] Update utils.py --- annotators/dnnc_intents/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/annotators/dnnc_intents/utils.py b/annotators/dnnc_intents/utils.py index c259d62a60..555c907a43 100644 --- a/annotators/dnnc_intents/utils.py +++ b/annotators/dnnc_intents/utils.py @@ -5,7 +5,7 @@ @register("dnnc_preparer") class dnnc_preparer(Component): - def __init__(self): + def __init__(self, **kwargs): self.data = json.load(open("data_full.json", "r")) def __call__(self, texts): From 71dd3299eafb08eac59befdfcbd4e5f3b4656f41 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 22:36:58 +0300 Subject: [PATCH 57/94] Update Dockerfile --- annotators/dnnc_intents/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/annotators/dnnc_intents/Dockerfile b/annotators/dnnc_intents/Dockerfile index b03ddb9f1e..466870635a 100644 --- a/annotators/dnnc_intents/Dockerfile +++ b/annotators/dnnc_intents/Dockerfile @@ -1,4 +1,4 @@ -FROM deeppavlov/deeppavlov:1.2.0-gpu +FROM deeppavlov/deeppavlov:1.3.0-gpu WORKDIR /base/DeepPavlov From ffe6517a5a4714b9ce1b2e980dd27c76de594ea3 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 22:45:00 +0300 Subject: [PATCH 58/94] Update Dockerfile --- annotators/dnnc_intents/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/annotators/dnnc_intents/Dockerfile b/annotators/dnnc_intents/Dockerfile index 466870635a..c2231c4a44 100644 --- a/annotators/dnnc_intents/Dockerfile +++ b/annotators/dnnc_intents/Dockerfile @@ -1,4 +1,6 @@ -FROM deeppavlov/deeppavlov:1.3.0-gpu +FROM deeppavlov/deeppavlov:1.2.0-gpu + +RUN pip install git+https://github.com/deeppavlov/DeepPavlov.git@1.3.0 WORKDIR /base/DeepPavlov From 4cfd828afbd009ccf545be056267f70d38c1c5d6 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 22:46:16 +0300 Subject: [PATCH 59/94] Update Dockerfile --- annotators/dnnc_intents/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/annotators/dnnc_intents/Dockerfile b/annotators/dnnc_intents/Dockerfile index c2231c4a44..a18de13ade 100644 --- a/annotators/dnnc_intents/Dockerfile +++ b/annotators/dnnc_intents/Dockerfile @@ -1,4 +1,4 @@ -FROM deeppavlov/deeppavlov:1.2.0-gpu +FROM deeppavlov/deeppavlov:0.17.5 RUN pip install git+https://github.com/deeppavlov/DeepPavlov.git@1.3.0 From fbeb9ee9f3e3112ba8e568f37c344b392b898550 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 22:46:45 +0300 Subject: [PATCH 60/94] Update Dockerfile --- annotators/dnnc_intents/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/annotators/dnnc_intents/Dockerfile b/annotators/dnnc_intents/Dockerfile index a18de13ade..6faffe658c 100644 --- a/annotators/dnnc_intents/Dockerfile +++ b/annotators/dnnc_intents/Dockerfile @@ -1,4 +1,4 @@ -FROM deeppavlov/deeppavlov:0.17.5 +FROM deeppavlov/base-gpu:0.17.5 RUN pip install git+https://github.com/deeppavlov/DeepPavlov.git@1.3.0 From c265e416be0bd59beb5fa980b795cc5066655969 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 23:06:31 +0300 Subject: [PATCH 61/94] Update requirements.txt --- annotators/combined_classification/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/annotators/combined_classification/requirements.txt b/annotators/combined_classification/requirements.txt index b0e08d8b1e..ae59f91845 100644 --- a/annotators/combined_classification/requirements.txt +++ b/annotators/combined_classification/requirements.txt @@ -8,3 +8,4 @@ transformers==4.15.0 jinja2<=3.0.3 Werkzeug<=2.0.3 pytorch-crf==0.7.2 +torch==1.9.1 From ef0d9e23dacb3f0886a15b88f3c3d81485c0f7f6 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 23:08:50 +0300 Subject: [PATCH 62/94] Update requirements.txt --- annotators/combined_classification/requirements.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/annotators/combined_classification/requirements.txt b/annotators/combined_classification/requirements.txt index ae59f91845..b0e08d8b1e 100644 --- a/annotators/combined_classification/requirements.txt +++ b/annotators/combined_classification/requirements.txt @@ -8,4 +8,3 @@ transformers==4.15.0 jinja2<=3.0.3 Werkzeug<=2.0.3 pytorch-crf==0.7.2 -torch==1.9.1 From 175150396d5fdf95c275c06516e547e379073614 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 23:09:07 +0300 Subject: [PATCH 63/94] Update requirements.txt --- annotators/dnnc_intents/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/annotators/dnnc_intents/requirements.txt b/annotators/dnnc_intents/requirements.txt index b0e08d8b1e..ae59f91845 100644 --- a/annotators/dnnc_intents/requirements.txt +++ b/annotators/dnnc_intents/requirements.txt @@ -8,3 +8,4 @@ transformers==4.15.0 jinja2<=3.0.3 Werkzeug<=2.0.3 pytorch-crf==0.7.2 +torch==1.9.1 From 1d7e943a3d53dcb4625d67d99ed1638d9946e785 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 23:45:29 +0300 Subject: [PATCH 64/94] Update 2JUPwwo1SZzxuj4RXjI350.yml --- components/2JUPwwo1SZzxuj4RXjI350.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/2JUPwwo1SZzxuj4RXjI350.yml b/components/2JUPwwo1SZzxuj4RXjI350.yml index 8edca2b64c..a264376908 100644 --- a/components/2JUPwwo1SZzxuj4RXjI350.yml +++ b/components/2JUPwwo1SZzxuj4RXjI350.yml @@ -5,8 +5,8 @@ model_type: NN-based is_customizable: true author: publisher@deeppavlov.ai description: Model for DNNC intent classification from DeepPavlov -ram_usage: 1.5G -gpu_usage: 3.5G +ram_usage: 3G +gpu_usage: 7G group: annotators connector: protocol: http From 712ddf9f5fbd6f96f57c23f414fcbcb80b3f69c7 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 23:45:33 +0300 Subject: [PATCH 65/94] Update docker-compose.override.yml --- assistant_dists/dream/docker-compose.override.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assistant_dists/dream/docker-compose.override.yml b/assistant_dists/dream/docker-compose.override.yml index 7c04733c81..9ab085569c 100644 --- a/assistant_dists/dream/docker-compose.override.yml +++ b/assistant_dists/dream/docker-compose.override.yml @@ -498,9 +498,9 @@ services: deploy: resources: limits: - memory: 4G + memory: 8G reservations: - memory: 4G + memory: 8G version: '3.7' From 19e41fdddc99991dc18c146d2cc59b04d5ff558e Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 23:57:14 +0300 Subject: [PATCH 66/94] Update utils.py --- annotators/dnnc_intents/utils.py | 44 ++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/annotators/dnnc_intents/utils.py b/annotators/dnnc_intents/utils.py index 555c907a43..c165e9fdde 100644 --- a/annotators/dnnc_intents/utils.py +++ b/annotators/dnnc_intents/utils.py @@ -1,5 +1,6 @@ from deeppavlov.core.models.component import Component from deeppavlov.core.common.registry import register +from deeppavlov.models.torch_bert import TorchTransformersClassifierModel import json @@ -11,3 +12,46 @@ def __init__(self, **kwargs): def __call__(self, texts): datasets = self.data["train"] + self.data["oos_train"] return texts, datasets + + +@register('torch_transformers_classifier_batch1') +class TorchTransformersClassifierModelBatch1(TorchTransformersClassifierModel): + def __call__(self, features: Dict[str, torch.tensor]) -> Union[List[int], List[List[float]]]: + """Make prediction for given features (texts). + + Args: + features: batch of InputFeatures + + Returns: + predicted classes or probabilities of each class + + """ + answer = [] + for i in range(len(features)): + _input = {key: value[i].unsqueeze(0).to(self.device) + for key, value in features.items()} + + with torch.no_grad(): + tokenized = {key: value for (key, value) in _input.items() + if key in self.accepted_keys} + + # Forward pass, calculate logit predictions + logits = self.model(**tokenized) + logits = logits[0] + + if self.return_probas: + if self.is_binary: + pred = torch.sigmoid(logits).squeeze(1) + elif not self.multilabel: + pred = torch.nn.functional.softmax(logits, dim=-1) + else: + pred = torch.nn.functional.sigmoid(logits) + pred = pred.detach().cpu().numpy()[0] + elif self.n_classes > 1: + logits = logits.detach().cpu().numpy() + pred = np.argmax(logits, axis=1)[0] + # regression + else: + pred = logits.squeeze(-1).detach().cpu().numpy()[0] + answer.append(pred) + return answer From 3d5e61e2daf4d254b3a54e43daf7aaab03001e03 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 23:57:34 +0300 Subject: [PATCH 67/94] Update classifier.json --- annotators/dnnc_intents/classifier.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/annotators/dnnc_intents/classifier.json b/annotators/dnnc_intents/classifier.json index 849c22643f..6e3da92e1f 100644 --- a/annotators/dnnc_intents/classifier.json +++ b/annotators/dnnc_intents/classifier.json @@ -22,7 +22,7 @@ "max_seq_length": 128 }, { - "class_name": "torch_transformers_classifier", + "class_name": "torch_transformers_classifier_batch1", "main": true, "in": ["bert_features"], "out": ["simmilarity_scores"], From 71b5762ecd5e2c582cc7ecc3c53264561fadf95d Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 23:58:26 +0300 Subject: [PATCH 68/94] Update utils.py --- annotators/dnnc_intents/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/annotators/dnnc_intents/utils.py b/annotators/dnnc_intents/utils.py index c165e9fdde..3932c0ce68 100644 --- a/annotators/dnnc_intents/utils.py +++ b/annotators/dnnc_intents/utils.py @@ -1,6 +1,6 @@ from deeppavlov.core.models.component import Component from deeppavlov.core.common.registry import register -from deeppavlov.models.torch_bert import TorchTransformersClassifierModel +from deeppavlov.models.torch_bert.torch_transformers_classifier import TorchTransformersClassifierModel import json From 208947e369a0418bb76f2a2573824e380ea0325a Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 23:59:12 +0300 Subject: [PATCH 69/94] Update utils.py --- annotators/dnnc_intents/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/annotators/dnnc_intents/utils.py b/annotators/dnnc_intents/utils.py index 3932c0ce68..aac294bb48 100644 --- a/annotators/dnnc_intents/utils.py +++ b/annotators/dnnc_intents/utils.py @@ -1,6 +1,7 @@ from deeppavlov.core.models.component import Component from deeppavlov.core.common.registry import register from deeppavlov.models.torch_bert.torch_transformers_classifier import TorchTransformersClassifierModel +from typing import Dict, Union, List import json From 422c3aee638b8e00df2c0fff69ca5bf6b39088a6 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sat, 21 Oct 2023 23:59:56 +0300 Subject: [PATCH 70/94] Update utils.py --- annotators/dnnc_intents/utils.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/annotators/dnnc_intents/utils.py b/annotators/dnnc_intents/utils.py index aac294bb48..f29112d87e 100644 --- a/annotators/dnnc_intents/utils.py +++ b/annotators/dnnc_intents/utils.py @@ -1,8 +1,11 @@ from deeppavlov.core.models.component import Component from deeppavlov.core.common.registry import register from deeppavlov.models.torch_bert.torch_transformers_classifier import TorchTransformersClassifierModel + from typing import Dict, Union, List import json +import numpy as np +import torch @register("dnnc_preparer") From b5ae191dbee06acbcd1fa42f7f5a2a7998e5b89c Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sun, 22 Oct 2023 00:04:35 +0300 Subject: [PATCH 71/94] Update utils.py --- annotators/dnnc_intents/utils.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/annotators/dnnc_intents/utils.py b/annotators/dnnc_intents/utils.py index f29112d87e..08054eb880 100644 --- a/annotators/dnnc_intents/utils.py +++ b/annotators/dnnc_intents/utils.py @@ -50,12 +50,13 @@ def __call__(self, features: Dict[str, torch.tensor]) -> Union[List[int], List[L pred = torch.nn.functional.softmax(logits, dim=-1) else: pred = torch.nn.functional.sigmoid(logits) - pred = pred.detach().cpu().numpy()[0] + pred = pred.detach().cpu().numpy() elif self.n_classes > 1: logits = logits.detach().cpu().numpy() - pred = np.argmax(logits, axis=1)[0] + pred = np.argmax(logits, axis=1) # regression else: - pred = logits.squeeze(-1).detach().cpu().numpy()[0] + pred = logits.squeeze(-1).detach().cpu().numpy() answer.append(pred) + answer = np.concatenate(answer) return answer From 13ff24f0ecf94b70517a5b1df19ca0f35f46e47e Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sun, 22 Oct 2023 00:07:05 +0300 Subject: [PATCH 72/94] Update utils.py --- annotators/dnnc_intents/utils.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/annotators/dnnc_intents/utils.py b/annotators/dnnc_intents/utils.py index 08054eb880..9da0c5de9d 100644 --- a/annotators/dnnc_intents/utils.py +++ b/annotators/dnnc_intents/utils.py @@ -6,6 +6,16 @@ import json import numpy as np import torch +import logging + +from flask import Flask, request, jsonify +import sentry_sdk + +logging.basicConfig(format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", level=logging.INFO) + +sentry_sdk.init(dsn=os.getenv("SENTRY_DSN"), integrations=[FlaskIntegration()]) + +logger = logging.getLogger(__name__) @register("dnnc_preparer") @@ -31,6 +41,7 @@ def __call__(self, features: Dict[str, torch.tensor]) -> Union[List[int], List[L """ answer = [] + logger.info(len(features)) for i in range(len(features)): _input = {key: value[i].unsqueeze(0).to(self.device) for key, value in features.items()} @@ -59,4 +70,6 @@ def __call__(self, features: Dict[str, torch.tensor]) -> Union[List[int], List[L pred = logits.squeeze(-1).detach().cpu().numpy() answer.append(pred) answer = np.concatenate(answer) + logger.info(answer) + logger.info(answer.shape) return answer From 1698e3bb673c638fb022dc62b2c84782df0ab20b Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sun, 22 Oct 2023 00:07:29 +0300 Subject: [PATCH 73/94] Update utils.py --- annotators/dnnc_intents/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/annotators/dnnc_intents/utils.py b/annotators/dnnc_intents/utils.py index 9da0c5de9d..ce72a035b7 100644 --- a/annotators/dnnc_intents/utils.py +++ b/annotators/dnnc_intents/utils.py @@ -4,6 +4,7 @@ from typing import Dict, Union, List import json +import os import numpy as np import torch import logging From e737701b2ea84811dc772d51dc97e7a60b1af601 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Sun, 22 Oct 2023 00:10:02 +0300 Subject: [PATCH 74/94] Update utils.py --- annotators/dnnc_intents/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/annotators/dnnc_intents/utils.py b/annotators/dnnc_intents/utils.py index ce72a035b7..734a40bab0 100644 --- a/annotators/dnnc_intents/utils.py +++ b/annotators/dnnc_intents/utils.py @@ -11,6 +11,7 @@ from flask import Flask, request, jsonify import sentry_sdk +from sentry_sdk.integrations.flask import FlaskIntegration logging.basicConfig(format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", level=logging.INFO) From c433e58314cee58df0db7ab6d5e1cf3e6cb4071a Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Mon, 23 Oct 2023 15:39:45 +0300 Subject: [PATCH 75/94] codestyle still needs to pass --- annotators/dnnc_intents/classifier.json | 4 +- annotators/dnnc_intents/test.py | 7 +-- annotators/dnnc_intents/utils.py | 61 +++++++++++++++++++++---- 3 files changed, 58 insertions(+), 14 deletions(-) diff --git a/annotators/dnnc_intents/classifier.json b/annotators/dnnc_intents/classifier.json index 6e3da92e1f..fff7dee634 100644 --- a/annotators/dnnc_intents/classifier.json +++ b/annotators/dnnc_intents/classifier.json @@ -8,10 +8,10 @@ "out": ["texts","dataset"] }, { - "class_name": "dnnc_pair_generator", + "class_name": "dnnc_pairgenerator", "in": ["texts", "dataset"], "out": ["x", "x_support", "x_populated", "y_support"], - "bidirectional": true + "bidirectional": false }, { "class_name": "torch_transformers_preprocessor", diff --git a/annotators/dnnc_intents/test.py b/annotators/dnnc_intents/test.py index 283031aa09..2444a15d09 100644 --- a/annotators/dnnc_intents/test.py +++ b/annotators/dnnc_intents/test.py @@ -5,9 +5,10 @@ def main_test(): url = "http://0.0.0.0:8218/model" configs = [ - {"sentences": ["what is saas marketing"], "answers_dnnc": ["oos"]}, - {"sentences": ["what day is it gonna be in twenty-one days"], "answers_dnnc": ["date"]}, - {"sentences": ["how long will it take me to make baked chicken"], "answers_dnnc": ["cook_time"]}, + {"sentences": ["i want to hear anything you have that's funny"], "answers_dnnc": [["tell_joke"]]}, + {"sentences": ["what do you think life is really about"], "answers_dnnc": [["meaning_of_life"]]}, + {"sentences": ["i would like to know if you are a robot"], "answers_dnnc": [["are_you_a_bot"]]}, + {"sentences": ["what is saas marketing"], "answers_dnnc": [["oos"]]}, ] t = time() for config in configs: diff --git a/annotators/dnnc_intents/utils.py b/annotators/dnnc_intents/utils.py index 734a40bab0..4b4b8b6e83 100644 --- a/annotators/dnnc_intents/utils.py +++ b/annotators/dnnc_intents/utils.py @@ -2,11 +2,12 @@ from deeppavlov.core.common.registry import register from deeppavlov.models.torch_bert.torch_transformers_classifier import TorchTransformersClassifierModel -from typing import Dict, Union, List +from typing import Dict, Union, List, Tuple import json import os import numpy as np import torch +import time import logging from flask import Flask, request, jsonify @@ -20,14 +21,24 @@ logger = logging.getLogger(__name__) +supported_intents = ["tell_joke", "are_you_a_bot", "meaning_of_life", "oos"] + @register("dnnc_preparer") class dnnc_preparer(Component): - def __init__(self, **kwargs): + def __init__(self, thr_class=10, thr_oos=50, **kwargs): self.data = json.load(open("data_full.json", "r")) - + cnt=dict() + train_data=[] + for elem in self.data['val'] + self.data['oos_val']: + class_=elem[1] + if any([cnt.get(class_, 0) Union[List[int], List[L """ answer = [] - logger.info(len(features)) - for i in range(len(features)): + logger.debug(len(features['input_ids'])) + t = time.time() + for i in range(len(features['input_ids'])): _input = {key: value[i].unsqueeze(0).to(self.device) for key, value in features.items()} @@ -71,7 +83,38 @@ def __call__(self, features: Dict[str, torch.tensor]) -> Union[List[int], List[L else: pred = logits.squeeze(-1).detach().cpu().numpy() answer.append(pred) + logger.debug(time.time()-t) answer = np.concatenate(answer) - logger.info(answer) - logger.info(answer.shape) return answer + + +@register('dnnc_pairgenerator') +class PairGenerator(Component): + """ + Generates all possible ordered pairs from 'texts_batch' and 'support_dataset' + + Args: + bidirectional: adds pairs in reverse order + """ + + def __init__(self, bidirectional: bool = False, **kwargs) -> None: + self.bidirectional = bidirectional + + def __call__(self, + texts: List[str], + dataset: List[List[str]], + ) -> Tuple[List[str], List[str], List[str], List[str]]: + hypotesis_batch = [] + premise_batch = [] + hypotesis_labels_batch = [] + for [premise, [hypotesis, hypotesis_labels]] in zip(texts * len(dataset), + np.repeat(dataset, len(texts), axis=0)): + premise_batch.append(premise) + hypotesis_batch.append(hypotesis) + hypotesis_labels_batch.append(hypotesis_labels) + + if self.bidirectional: + premise_batch.append(hypotesis) + hypotesis_batch.append(premise) + hypotesis_labels_batch.append(hypotesis_labels) + return texts, hypotesis_batch, premise_batch, hypotesis_labels_batch From 929b7875a0d041de69da58ffdacc470711602360 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Mon, 23 Oct 2023 15:53:58 +0300 Subject: [PATCH 76/94] codestyle --- annotators/dnnc_intents/test.py | 4 +-- annotators/dnnc_intents/utils.py | 59 +++++++++++++++++--------------- 2 files changed, 34 insertions(+), 29 deletions(-) diff --git a/annotators/dnnc_intents/test.py b/annotators/dnnc_intents/test.py index 2444a15d09..fbe9407b4e 100644 --- a/annotators/dnnc_intents/test.py +++ b/annotators/dnnc_intents/test.py @@ -7,8 +7,8 @@ def main_test(): configs = [ {"sentences": ["i want to hear anything you have that's funny"], "answers_dnnc": [["tell_joke"]]}, {"sentences": ["what do you think life is really about"], "answers_dnnc": [["meaning_of_life"]]}, - {"sentences": ["i would like to know if you are a robot"], "answers_dnnc": [["are_you_a_bot"]]}, - {"sentences": ["what is saas marketing"], "answers_dnnc": [["oos"]]}, + {"sentences": ["i would like to know if you are a robot"], "answers_dnnc": [["are_you_a_bot"]]}, + {"sentences": ["what is saas marketing"], "answers_dnnc": [["oos"]]}, ] t = time() for config in configs: diff --git a/annotators/dnnc_intents/utils.py b/annotators/dnnc_intents/utils.py index 4b4b8b6e83..febb5d88d6 100644 --- a/annotators/dnnc_intents/utils.py +++ b/annotators/dnnc_intents/utils.py @@ -23,25 +23,30 @@ supported_intents = ["tell_joke", "are_you_a_bot", "meaning_of_life", "oos"] + @register("dnnc_preparer") class dnnc_preparer(Component): def __init__(self, thr_class=10, thr_oos=50, **kwargs): self.data = json.load(open("data_full.json", "r")) - cnt=dict() - train_data=[] - for elem in self.data['val'] + self.data['oos_val']: - class_=elem[1] - if any([cnt.get(class_, 0) Union[List[int], List[List[float]]]: """Make prediction for given features (texts). @@ -54,20 +59,18 @@ def __call__(self, features: Dict[str, torch.tensor]) -> Union[List[int], List[L """ answer = [] - logger.debug(len(features['input_ids'])) + logger.debug(len(features["input_ids"])) t = time.time() - for i in range(len(features['input_ids'])): - _input = {key: value[i].unsqueeze(0).to(self.device) - for key, value in features.items()} - + for i in range(len(features["input_ids"])): + _input = {key: value[i].unsqueeze(0).to(self.device) for key, value in features.items()} + with torch.no_grad(): - tokenized = {key: value for (key, value) in _input.items() - if key in self.accepted_keys} - + tokenized = {key: value for (key, value) in _input.items() if key in self.accepted_keys} + # Forward pass, calculate logit predictions logits = self.model(**tokenized) logits = logits[0] - + if self.return_probas: if self.is_binary: pred = torch.sigmoid(logits).squeeze(1) @@ -83,16 +86,16 @@ def __call__(self, features: Dict[str, torch.tensor]) -> Union[List[int], List[L else: pred = logits.squeeze(-1).detach().cpu().numpy() answer.append(pred) - logger.debug(time.time()-t) + logger.debug(time.time() - t) answer = np.concatenate(answer) return answer -@register('dnnc_pairgenerator') +@register("dnnc_pairgenerator") class PairGenerator(Component): """ Generates all possible ordered pairs from 'texts_batch' and 'support_dataset' - + Args: bidirectional: adds pairs in reverse order """ @@ -100,15 +103,17 @@ class PairGenerator(Component): def __init__(self, bidirectional: bool = False, **kwargs) -> None: self.bidirectional = bidirectional - def __call__(self, - texts: List[str], - dataset: List[List[str]], - ) -> Tuple[List[str], List[str], List[str], List[str]]: + def __call__( + self, + texts: List[str], + dataset: List[List[str]], + ) -> Tuple[List[str], List[str], List[str], List[str]]: hypotesis_batch = [] premise_batch = [] hypotesis_labels_batch = [] - for [premise, [hypotesis, hypotesis_labels]] in zip(texts * len(dataset), - np.repeat(dataset, len(texts), axis=0)): + for [premise, [hypotesis, hypotesis_labels]] in zip( + texts * len(dataset), np.repeat(dataset, len(texts), axis=0) + ): premise_batch.append(premise) hypotesis_batch.append(hypotesis) hypotesis_labels_batch.append(hypotesis_labels) From 6eb047af32363179432b7ed8a622f2da9acc7802 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Mon, 23 Oct 2023 15:57:56 +0300 Subject: [PATCH 77/94] codestyle --- annotators/dnnc_intents/test.py | 2 +- annotators/dnnc_intents/utils.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/annotators/dnnc_intents/test.py b/annotators/dnnc_intents/test.py index fbe9407b4e..2585e3de06 100644 --- a/annotators/dnnc_intents/test.py +++ b/annotators/dnnc_intents/test.py @@ -8,7 +8,7 @@ def main_test(): {"sentences": ["i want to hear anything you have that's funny"], "answers_dnnc": [["tell_joke"]]}, {"sentences": ["what do you think life is really about"], "answers_dnnc": [["meaning_of_life"]]}, {"sentences": ["i would like to know if you are a robot"], "answers_dnnc": [["are_you_a_bot"]]}, - {"sentences": ["what is saas marketing"], "answers_dnnc": [["oos"]]}, + {"sentences": ["what is saas marketing"], "answers_dnnc": [["oos"]]}, ] t = time() for config in configs: diff --git a/annotators/dnnc_intents/utils.py b/annotators/dnnc_intents/utils.py index febb5d88d6..7ee5f60a13 100644 --- a/annotators/dnnc_intents/utils.py +++ b/annotators/dnnc_intents/utils.py @@ -10,7 +10,6 @@ import time import logging -from flask import Flask, request, jsonify import sentry_sdk from sentry_sdk.integrations.flask import FlaskIntegration From 5866747fafeb56a125530ac7dd93e82204e9da99 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Mon, 23 Oct 2023 16:46:11 +0300 Subject: [PATCH 78/94] hj --- annotators/dnnc_intents/test.py | 2 +- annotators/dnnc_intents/test.sh | 0 2 files changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 annotators/dnnc_intents/test.sh diff --git a/annotators/dnnc_intents/test.py b/annotators/dnnc_intents/test.py index 2585e3de06..79879a4733 100644 --- a/annotators/dnnc_intents/test.py +++ b/annotators/dnnc_intents/test.py @@ -8,7 +8,7 @@ def main_test(): {"sentences": ["i want to hear anything you have that's funny"], "answers_dnnc": [["tell_joke"]]}, {"sentences": ["what do you think life is really about"], "answers_dnnc": [["meaning_of_life"]]}, {"sentences": ["i would like to know if you are a robot"], "answers_dnnc": [["are_you_a_bot"]]}, - {"sentences": ["what is saas marketing"], "answers_dnnc": [["oos"]]}, + {"sentences": ["what is saas marketing"], "answers_dnnc": [["oos"]]}, ] t = time() for config in configs: diff --git a/annotators/dnnc_intents/test.sh b/annotators/dnnc_intents/test.sh old mode 100644 new mode 100755 From 9362fefcab0343b586bc39e86edaedc1fbdadefb Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Mon, 23 Oct 2023 18:08:46 +0300 Subject: [PATCH 79/94] Old files preserved, new files added. Now logreg is in place, all 150 classes supported --- annotators/dnnc_intents/Dockerfile | 2 + annotators/dnnc_intents/classes.dict | 150 + annotators/dnnc_intents/classifier.json | 107 +- .../dnnc_intents/classifier_old_roberta.json | 61 + annotators/dnnc_intents/model.pkl | Bin 0 -> 363104 bytes annotators/dnnc_intents/requirements.txt | 3 + annotators/dnnc_intents/server.py | 10 +- annotators/dnnc_intents/support_dataset.json | 3008 +++++++++++++++++ annotators/dnnc_intents/test.py | 4 +- .../{utils.py => utils_old_roberta.py} | 0 10 files changed, 3292 insertions(+), 53 deletions(-) create mode 100644 annotators/dnnc_intents/classes.dict create mode 100644 annotators/dnnc_intents/classifier_old_roberta.json create mode 100644 annotators/dnnc_intents/model.pkl create mode 100644 annotators/dnnc_intents/support_dataset.json rename annotators/dnnc_intents/{utils.py => utils_old_roberta.py} (100%) diff --git a/annotators/dnnc_intents/Dockerfile b/annotators/dnnc_intents/Dockerfile index 6faffe658c..21c0db1d80 100644 --- a/annotators/dnnc_intents/Dockerfile +++ b/annotators/dnnc_intents/Dockerfile @@ -10,6 +10,8 @@ RUN mkdir common COPY annotators/dnnc_intents/requirements.txt ./requirements.txt RUN pip install -r requirements.txt +RUN python -m spacy download en_core_web_sm + ARG SERVICE_PORT ENV SERVICE_PORT=$SERVICE_PORT ARG CONFIG diff --git a/annotators/dnnc_intents/classes.dict b/annotators/dnnc_intents/classes.dict new file mode 100644 index 0000000000..83fe7463f8 --- /dev/null +++ b/annotators/dnnc_intents/classes.dict @@ -0,0 +1,150 @@ +yes 5 +bill_balance 5 +international_fees 5 +pin_change 5 +credit_limit_change 5 +change_ai_name 5 +order_status 5 +cancel 5 +do_you_have_pets 5 +who_made_you 5 +next_holiday 5 +food_last 5 +reset_settings 5 +gas 5 +time 5 +travel_suggestion 5 +change_accent 5 +nutrition_info 5 +user_name 5 +redeem_rewards 5 +last_maintenance 5 +meaning_of_life 5 +travel_notification 5 +pto_request_status 5 +share_location 5 +goodbye 5 +balance 5 +restaurant_reservation 5 +interest_rate 5 +ingredient_substitution 5 +jump_start 5 +measurement_conversion 5 +what_is_your_name 5 +confirm_reservation 5 +current_location 5 +find_phone 5 +oil_change_how 5 +change_volume 5 +traffic 5 +new_card 5 +text 5 +improve_credit_score 5 +reminder_update 5 +credit_score 5 +definition 5 +exchange_rate 5 +pto_used 5 +freeze_account 5 +taxes 5 +order_checks 5 +carry_on 5 +next_song 5 +flight_status 5 +transfer 5 +directions 5 +flip_coin 5 +shopping_list_update 5 +translate 5 +no 5 +card_declined 5 +lost_luggage 5 +repeat 5 +fun_fact 5 +expiration_date 5 +greeting 5 +meal_suggestion 5 +vaccines 5 +timezone 5 +thank_you 5 +rollover_401k 5 +how_old_are_you 5 +change_user_name 5 +oil_change_when 5 +mpg 5 +calendar_update 5 +credit_limit 5 +routing 5 +calendar 5 +replacement_card_duration 5 +bill_due 5 +restaurant_suggestion 5 +account_blocked 5 +pto_balance 5 +w2 5 +recipe 5 +apr 5 +accept_reservations 5 +travel_alert 5 +timer 5 +distance 5 +international_visa 5 +shopping_list 5 +what_are_your_hobbies 5 +calculator 5 +payday 5 +schedule_maintenance 5 +what_song 5 +schedule_meeting 5 +roll_dice 5 +smart_home 5 +min_payment 5 +insurance_change 5 +transactions 5 +report_lost_card 5 +maybe 5 +how_busy 5 +car_rental 5 +gas_type 5 +pto_request 5 +whisper_mode 5 +change_speed 5 +who_do_you_work_for 5 +tire_pressure 5 +todo_list 5 +order 5 +are_you_a_bot 5 +calories 5 +damaged_card 5 +report_fraud 5 +reminder 5 +make_call 5 +change_language 5 +meeting_schedule 5 +play_music 5 +date 5 +direct_deposit 5 +spelling 5 +todo_list_update 5 +uber 5 +cancel_reservation 5 +ingredients_list 5 +what_can_i_ask_you 5 +weather 5 +insurance 5 +update_playlist 5 +plug_type 5 +tell_joke 5 +restaurant_reviews 5 +rewards_balance 5 +where_are_you_from 5 +tire_change 5 +book_flight 5 +application_status 5 +sync_device 5 +pay_bill 5 +book_hotel 5 +cook_time 5 +spending_history 5 +income 5 +alarm 5 diff --git a/annotators/dnnc_intents/classifier.json b/annotators/dnnc_intents/classifier.json index fff7dee634..9598c0923f 100644 --- a/annotators/dnnc_intents/classifier.json +++ b/annotators/dnnc_intents/classifier.json @@ -1,61 +1,74 @@ { "chainer": { - "in": ["text"], + "in": ["x"], "pipe": [ - { - "class_name": "dnnc_preparer", - "in": ["text"], - "out": ["texts","dataset"] - }, - { - "class_name": "dnnc_pairgenerator", - "in": ["texts", "dataset"], - "out": ["x", "x_support", "x_populated", "y_support"], - "bidirectional": false - }, - { - "class_name": "torch_transformers_preprocessor", - "in": ["x_populated", "x_support"], - "out": ["bert_features"], - "vocab_file": "{BASE_MODEL}", - "do_lower_case": true, - "max_seq_length": 128 - }, - { - "class_name": "torch_transformers_classifier_batch1", - "main": true, - "in": ["bert_features"], - "out": ["simmilarity_scores"], - "n_classes": 2, - "return_probas": true, - "pretrained_bert": "{BASE_MODEL}", - "save_path": "{MODEL_PATH}/model", - "load_path": "{MODEL_PATH}/model", - "is_binary": "{BINARY_CLASSIFICATION}" - }, - { - "class_name": "dnnc_proba2labels", - "is_binary": "{BINARY_CLASSIFICATION}", - "in": ["simmilarity_scores", "x", "x_populated", "x_support", "y_support"], - "out": ["y_pred"], - "confidence_threshold": 0.0 - } + { + "class_name": "stream_spacy_tokenizer", + "in": [ + "x" + ], + "id": "my_tokenizer", + "lemmas": false, + "out": "token_lemmas", + "spacy_model": "en_core_web_sm", + "support_load_path": "/src/support_dataset.json" + }, + { + "ref": "my_tokenizer", + "in": [ + "token_lemmas" + ], + "out": [ + "text_lem" + ] + }, + { + "class_name": "fasttext", + "in": [ + "token_lemmas" + ], + "load_path": "{DOWNLOADS_PATH}/embeddings/fasttext/{LANGUAGE}.bin", + "mean": true, + "out": [ + "text_vector" + ] + }, + { + "in": [ + "text_vector" + ], + "out": [ + "y_pred_probas" + ], + "class_name": "sklearn_component", + "main": true, + "save_path": "/src/model.pkl", + "load_path": "/src/model.pkl", + "model_class": "sklearn.linear_model:LogisticRegression", + "infer_method": "predict_proba", + "C": 10, + "penalty": "l2" + } ], - "out": ["y_pred"] + "out": ["y_pred_probas"] }, "metadata": { "variables": { "ROOT_PATH": "~/.deeppavlov", - "MODEL_PATH": "{ROOT_PATH}/models/fewshot/roberta_nli_mrpc_1_10", - "BINARY_CLASSIFICATION": true, - "BASE_MODEL": "roberta-base" + "DOWNLOADS_PATH":"{ROOT_PATH}/downloads", + "MODEL_PATH": "{ROOT_PATH}/models/", + "LANGUAGE":"en" }, "imports":["utils"], "download": [ - { - "url": "http://files.deeppavlov.ai/v1/classifiers/fewshot/roberta_nli_mrpc_1_10.tar.gz", - "subdir": "{MODEL_PATH}" - } + { + "url": "http://files.deeppavlov.ai/embeddings/fasttext/{LANGUAGE}.bin", + "subdir": "{DOWNLOADS_PATH}/embeddings/fasttext" + }, + { + "url": "https://files.deeppavlov.ai/faq/fasttext_logreg_{LANGUAGE}.tar.gz", + "subdir": "{MODEL_PATH}" + } ] } } diff --git a/annotators/dnnc_intents/classifier_old_roberta.json b/annotators/dnnc_intents/classifier_old_roberta.json new file mode 100644 index 0000000000..3157209a31 --- /dev/null +++ b/annotators/dnnc_intents/classifier_old_roberta.json @@ -0,0 +1,61 @@ +{ + "chainer": { + "in": ["text"], + "pipe": [ + { + "class_name": "dnnc_preparer", + "in": ["text"], + "out": ["texts","dataset"] + }, + { + "class_name": "dnnc_pairgenerator", + "in": ["texts", "dataset"], + "out": ["x", "x_support", "x_populated", "y_support"], + "bidirectional": false + }, + { + "class_name": "torch_transformers_preprocessor", + "in": ["x_populated", "x_support"], + "out": ["bert_features"], + "vocab_file": "{BASE_MODEL}", + "do_lower_case": true, + "max_seq_length": 128 + }, + { + "class_name": "torch_transformers_classifier_batch1", + "main": true, + "in": ["bert_features"], + "out": ["simmilarity_scores"], + "n_classes": 2, + "return_probas": true, + "pretrained_bert": "{BASE_MODEL}", + "save_path": "{MODEL_PATH}/model", + "load_path": "{MODEL_PATH}/model", + "is_binary": "{BINARY_CLASSIFICATION}" + }, + { + "class_name": "dnnc_proba2labels", + "is_binary": "{BINARY_CLASSIFICATION}", + "in": ["simmilarity_scores", "x", "x_populated", "x_support", "y_support"], + "out": ["y_pred"], + "confidence_threshold": 0.0 + } + ], + "out": ["y_pred"] + }, + "metadata": { + "variables": { + "ROOT_PATH": "~/.deeppavlov", + "MODEL_PATH": "{ROOT_PATH}/models/fewshot/roberta_nli_mrpc_1_10", + "BINARY_CLASSIFICATION": true, + "BASE_MODEL": "roberta-base" + }, + "imports":["utils_old_roberta"], + "download": [ + { + "url": "http://files.deeppavlov.ai/v1/classifiers/fewshot/roberta_nli_mrpc_1_10.tar.gz", + "subdir": "{MODEL_PATH}" + } + ] + } +} diff --git a/annotators/dnnc_intents/model.pkl b/annotators/dnnc_intents/model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..96219a6b8418fe43da297f4abdc9c08307352b07 GIT binary patch literal 363104 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

WPJA8PTH`u9}@3t{AuWj#>XiP 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 z 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 pmM7u=pKdHVmPW>p?^~GaSU Date: Mon, 23 Oct 2023 18:09:39 +0300 Subject: [PATCH 80/94] codestyle --- annotators/dnnc_intents/server.py | 7 +++---- annotators/dnnc_intents/test.py | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/annotators/dnnc_intents/server.py b/annotators/dnnc_intents/server.py index dc9da3d1f2..04a96505f2 100644 --- a/annotators/dnnc_intents/server.py +++ b/annotators/dnnc_intents/server.py @@ -26,8 +26,8 @@ app = Flask(__name__) -labels = [k.split("\t")[0] - for k in open('classes.dict', 'r').readlines()] +labels = [k.split("\t")[0] for k in open("classes.dict", "r").readlines()] + @app.route("/model", methods=["POST"]) def respond(): @@ -36,8 +36,7 @@ def respond(): pred_probs_lists = model(sentences) ans = [] for pred_probs in pred_probs_lists: - ans.append({dnnc_class: prob - for dnnc_class, prob in zip(labels, pred_probs)}) + ans.append({dnnc_class: prob for dnnc_class, prob in zip(labels, pred_probs)}) # roberta config predicted list of class names only - to use it, modify this line logger.debug(f"dnnc result: {ans}") logger.info(f"dnnc exec time: {time.time() - t}") diff --git a/annotators/dnnc_intents/test.py b/annotators/dnnc_intents/test.py index 76485effbe..595cb20c5b 100644 --- a/annotators/dnnc_intents/test.py +++ b/annotators/dnnc_intents/test.py @@ -6,7 +6,7 @@ def main_test(): url = "http://0.0.0.0:8218/model" configs = [ {"sentences": ["i want to hear anything you have that's funny"], "answers_dnnc": [["tell_joke"]]}, - {"sentences": ["i would like to know if you are a robot"], "answers_dnnc": [["are_you_a_bot"]]} + {"sentences": ["i would like to know if you are a robot"], "answers_dnnc": [["are_you_a_bot"]]}, ] t = time() for config in configs: From ffea5f7281c9f785f1fe28065ab5135fccfb102f Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Mon, 23 Oct 2023 18:29:01 +0300 Subject: [PATCH 81/94] CPU-only --- .../service_configs/dnnc-intents/environment.yml | 1 - .../dnnc_intents/service_configs/dnnc-intents/service.yml | 5 ++--- assistant_dists/dream/docker-compose.override.yml | 2 -- assistant_dists/dream/gpu1.yml | 2 -- 4 files changed, 2 insertions(+), 8 deletions(-) diff --git a/annotators/dnnc_intents/service_configs/dnnc-intents/environment.yml b/annotators/dnnc_intents/service_configs/dnnc-intents/environment.yml index 6f847b0327..9c2872a851 100644 --- a/annotators/dnnc_intents/service_configs/dnnc-intents/environment.yml +++ b/annotators/dnnc_intents/service_configs/dnnc-intents/environment.yml @@ -1,4 +1,3 @@ SERVICE_PORT: 8218 SERVICE_NAME: dnnc_intents CONFIG: classifier.json -CUDA_VISIBLE_DEVICES: '0' diff --git a/annotators/dnnc_intents/service_configs/dnnc-intents/service.yml b/annotators/dnnc_intents/service_configs/dnnc-intents/service.yml index 8a77476200..6f085a5e7a 100644 --- a/annotators/dnnc_intents/service_configs/dnnc-intents/service.yml +++ b/annotators/dnnc_intents/service_configs/dnnc-intents/service.yml @@ -9,7 +9,6 @@ compose: SERVICE_PORT: 8218 SERVICE_NAME: dnnc_intents CONFIG: classifier.json - CUDA_VISIBLE_DEVICES: '0' context: . dockerfile: ./annotators/dnnc_intents/Dockerfile command: gunicorn --workers=1 server:app -b 0.0.0.0:8218 --timeout 600 @@ -18,9 +17,9 @@ compose: deploy: resources: limits: - memory: 2G + memory: 8G reservations: - memory: 2G + memory: 8G volumes: - ./common:/src/common - ./annotators/dnnc_intents:/src diff --git a/assistant_dists/dream/docker-compose.override.yml b/assistant_dists/dream/docker-compose.override.yml index 9ab085569c..ff62b2ef73 100644 --- a/assistant_dists/dream/docker-compose.override.yml +++ b/assistant_dists/dream/docker-compose.override.yml @@ -493,8 +493,6 @@ services: context: . dockerfile: ./annotators/dnnc_intents/Dockerfile command: gunicorn --workers=1 server:app -b 0.0.0.0:8218 --timeout 600 - environment: - - CUDA_VISIBLE_DEVICES=0 deploy: resources: limits: diff --git a/assistant_dists/dream/gpu1.yml b/assistant_dists/dream/gpu1.yml index faf82bd50e..a7289672be 100644 --- a/assistant_dists/dream/gpu1.yml +++ b/assistant_dists/dream/gpu1.yml @@ -79,6 +79,4 @@ services: restart: unless-stopped volumes: - "~/.deeppavlov:/root/.deeppavlov" - environment: - - CUDA_VISIBLE_DEVICES=6 version: '3.7' From 0170f7c5e92785691d62e7ddd6008accee22a793 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Fri, 27 Oct 2023 17:24:06 +0300 Subject: [PATCH 82/94] h --- annotators/dnnc_intents/classes.dict | 150 - annotators/dnnc_intents/classifier.json | 13 +- ...d_roberta.json => classifier_roberta.json} | 2 +- annotators/dnnc_intents/logreg_files.tar.gz | Bin 0 -> 364530 bytes .../dnnc_intents/logreg_files.tar.gz.md5 | 3 + annotators/dnnc_intents/server.py | 16 +- annotators/dnnc_intents/support_dataset.json | 3008 ----------------- ...{utils_old_roberta.py => utils_roberta.py} | 0 assistant_dists/dream/cpu.yml | 2 +- .../dream/docker-compose.override.yml | 4 + assistant_dists/dream/gpu1.yml | 2 + 11 files changed, 28 insertions(+), 3172 deletions(-) delete mode 100644 annotators/dnnc_intents/classes.dict rename annotators/dnnc_intents/{classifier_old_roberta.json => classifier_roberta.json} (97%) create mode 100644 annotators/dnnc_intents/logreg_files.tar.gz create mode 100644 annotators/dnnc_intents/logreg_files.tar.gz.md5 delete mode 100644 annotators/dnnc_intents/support_dataset.json rename annotators/dnnc_intents/{utils_old_roberta.py => utils_roberta.py} (100%) diff --git a/annotators/dnnc_intents/classes.dict b/annotators/dnnc_intents/classes.dict deleted file mode 100644 index 83fe7463f8..0000000000 --- a/annotators/dnnc_intents/classes.dict +++ /dev/null @@ -1,150 +0,0 @@ -yes 5 -bill_balance 5 -international_fees 5 -pin_change 5 -credit_limit_change 5 -change_ai_name 5 -order_status 5 -cancel 5 -do_you_have_pets 5 -who_made_you 5 -next_holiday 5 -food_last 5 -reset_settings 5 -gas 5 -time 5 -travel_suggestion 5 -change_accent 5 -nutrition_info 5 -user_name 5 -redeem_rewards 5 -last_maintenance 5 -meaning_of_life 5 -travel_notification 5 -pto_request_status 5 -share_location 5 -goodbye 5 -balance 5 -restaurant_reservation 5 -interest_rate 5 -ingredient_substitution 5 -jump_start 5 -measurement_conversion 5 -what_is_your_name 5 -confirm_reservation 5 -current_location 5 -find_phone 5 -oil_change_how 5 -change_volume 5 -traffic 5 -new_card 5 -text 5 -improve_credit_score 5 -reminder_update 5 -credit_score 5 -definition 5 -exchange_rate 5 -pto_used 5 -freeze_account 5 -taxes 5 -order_checks 5 -carry_on 5 -next_song 5 -flight_status 5 -transfer 5 -directions 5 -flip_coin 5 -shopping_list_update 5 -translate 5 -no 5 -card_declined 5 -lost_luggage 5 -repeat 5 -fun_fact 5 -expiration_date 5 -greeting 5 -meal_suggestion 5 -vaccines 5 -timezone 5 -thank_you 5 -rollover_401k 5 -how_old_are_you 5 -change_user_name 5 -oil_change_when 5 -mpg 5 -calendar_update 5 -credit_limit 5 -routing 5 -calendar 5 -replacement_card_duration 5 -bill_due 5 -restaurant_suggestion 5 -account_blocked 5 -pto_balance 5 -w2 5 -recipe 5 -apr 5 -accept_reservations 5 -travel_alert 5 -timer 5 -distance 5 -international_visa 5 -shopping_list 5 -what_are_your_hobbies 5 -calculator 5 -payday 5 -schedule_maintenance 5 -what_song 5 -schedule_meeting 5 -roll_dice 5 -smart_home 5 -min_payment 5 -insurance_change 5 -transactions 5 -report_lost_card 5 -maybe 5 -how_busy 5 -car_rental 5 -gas_type 5 -pto_request 5 -whisper_mode 5 -change_speed 5 -who_do_you_work_for 5 -tire_pressure 5 -todo_list 5 -order 5 -are_you_a_bot 5 -calories 5 -damaged_card 5 -report_fraud 5 -reminder 5 -make_call 5 -change_language 5 -meeting_schedule 5 -play_music 5 -date 5 -direct_deposit 5 -spelling 5 -todo_list_update 5 -uber 5 -cancel_reservation 5 -ingredients_list 5 -what_can_i_ask_you 5 -weather 5 -insurance 5 -update_playlist 5 -plug_type 5 -tell_joke 5 -restaurant_reviews 5 -rewards_balance 5 -where_are_you_from 5 -tire_change 5 -book_flight 5 -application_status 5 -sync_device 5 -pay_bill 5 -book_hotel 5 -cook_time 5 -spending_history 5 -income 5 -alarm 5 diff --git a/annotators/dnnc_intents/classifier.json b/annotators/dnnc_intents/classifier.json index 9598c0923f..ad69d4dde5 100644 --- a/annotators/dnnc_intents/classifier.json +++ b/annotators/dnnc_intents/classifier.json @@ -11,7 +11,7 @@ "lemmas": false, "out": "token_lemmas", "spacy_model": "en_core_web_sm", - "support_load_path": "/src/support_dataset.json" + "support_load_path": "{DOWNLOADS_PATH}/logreg_files/support_dataset.json" }, { "ref": "my_tokenizer", @@ -42,8 +42,8 @@ ], "class_name": "sklearn_component", "main": true, - "save_path": "/src/model.pkl", - "load_path": "/src/model.pkl", + "save_path": "{DOWNLOADS_PATH}/logreg_files/model.pkl", + "load_path": "{DOWNLOADS_PATH}/logreg_files/model.pkl", "model_class": "sklearn.linear_model:LogisticRegression", "infer_method": "predict_proba", "C": 10, @@ -56,7 +56,7 @@ "variables": { "ROOT_PATH": "~/.deeppavlov", "DOWNLOADS_PATH":"{ROOT_PATH}/downloads", - "MODEL_PATH": "{ROOT_PATH}/models/", + "LOGREG_PATH": "{DOWNLOADS_PATH}/logreg_files", "LANGUAGE":"en" }, "imports":["utils"], @@ -66,9 +66,10 @@ "subdir": "{DOWNLOADS_PATH}/embeddings/fasttext" }, { - "url": "https://files.deeppavlov.ai/faq/fasttext_logreg_{LANGUAGE}.tar.gz", - "subdir": "{MODEL_PATH}" + "url": "https://files.deeppavlov.ai/dream_data/dnnc_intents/logreg_files.tar.gz", + "subdir": "{LOGREG_PATH}" } + ] } } diff --git a/annotators/dnnc_intents/classifier_old_roberta.json b/annotators/dnnc_intents/classifier_roberta.json similarity index 97% rename from annotators/dnnc_intents/classifier_old_roberta.json rename to annotators/dnnc_intents/classifier_roberta.json index 3157209a31..7b4cde9e9b 100644 --- a/annotators/dnnc_intents/classifier_old_roberta.json +++ b/annotators/dnnc_intents/classifier_roberta.json @@ -50,7 +50,7 @@ "BINARY_CLASSIFICATION": true, "BASE_MODEL": "roberta-base" }, - "imports":["utils_old_roberta"], + "imports":["utils_roberta"], "download": [ { "url": "http://files.deeppavlov.ai/v1/classifiers/fewshot/roberta_nli_mrpc_1_10.tar.gz", diff --git a/annotators/dnnc_intents/logreg_files.tar.gz b/annotators/dnnc_intents/logreg_files.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..e431bd82e08c284b9a89f7e15fee5f92bb30dea0 GIT binary patch literal 364530 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 z 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 a{o@S(@gM*3AOG?HCI1ggl2y0>+y(%iTOj-Z literal 0 HcmV?d00001 diff --git a/annotators/dnnc_intents/logreg_files.tar.gz.md5 b/annotators/dnnc_intents/logreg_files.tar.gz.md5 new file mode 100644 index 0000000000..395cee7dea --- /dev/null +++ b/annotators/dnnc_intents/logreg_files.tar.gz.md5 @@ -0,0 +1,3 @@ +15f8d2bcd0a428a404c8c5fd076877fc *classes.dict +fc0b9d545468a45f9082aa9953fea502 *classifier.json +0d61cd1064ce06dac8d4ee7dc67b13d7 *support_dataset.json diff --git a/annotators/dnnc_intents/server.py b/annotators/dnnc_intents/server.py index 04a96505f2..d11d43e2cb 100644 --- a/annotators/dnnc_intents/server.py +++ b/annotators/dnnc_intents/server.py @@ -13,9 +13,9 @@ sentry_sdk.init(dsn=os.getenv("SENTRY_DSN"), integrations=[FlaskIntegration()]) logger = logging.getLogger(__name__) - +logger.info(os.listdir('/root/.deeppavlov/downloads/logreg_files')) try: - model = build_model("classifier.json", download=True) + model = build_model(os.getenv("CONFIG"), download=True) logger.info("Making test res") test_res = model(["a"]) logger.info("model loaded, test query processed") @@ -25,8 +25,8 @@ raise e app = Flask(__name__) - -labels = [k.split("\t")[0] for k in open("classes.dict", "r").readlines()] +if os.getenv("CONFIG") == "classifier.json": + labels = [k.split("\t")[0] for k in open("~/.deeppavlov/downloads/logreg_files/classes.dict", "r").readlines()] @app.route("/model", methods=["POST"]) @@ -35,8 +35,12 @@ def respond(): sentences = request.json.get("sentences", [" "]) pred_probs_lists = model(sentences) ans = [] - for pred_probs in pred_probs_lists: - ans.append({dnnc_class: prob for dnnc_class, prob in zip(labels, pred_probs)}) + if os.getenv("CONFIG") == "classifier.json": + for pred_probs in pred_probs_lists: + ans.append({dnnc_class: prob for dnnc_class, prob in zip(labels, pred_probs)}) + else: + for pred_classes in pred_prob_list: + ans.append({pred_class: 1 for pred_class in pred_classes}) # roberta config predicted list of class names only - to use it, modify this line logger.debug(f"dnnc result: {ans}") logger.info(f"dnnc exec time: {time.time() - t}") diff --git a/annotators/dnnc_intents/support_dataset.json b/annotators/dnnc_intents/support_dataset.json deleted file mode 100644 index 72376afead..0000000000 --- a/annotators/dnnc_intents/support_dataset.json +++ /dev/null @@ -1,3008 +0,0 @@ -{ - "columns": [ - "text", - "category" - ], - "data": [ - [ - "positive", - "yes" - ], - [ - "i need to know my bill total for my verizon payment due this month", - "bill_balance" - ], - [ - "will i get charged extra if i use my card while in italy", - "international_fees" - ], - [ - "i wanna change my pin number for my credit acount", - "pin_change" - ], - [ - "i want to change my credit limit", - "credit_limit_change" - ], - [ - "can i change your name to buttercup", - "change_ai_name" - ], - [ - "does my bank of the west card have international transaction fees", - "international_fees" - ], - [ - "when will my order be here", - "order_status" - ], - [ - "forget it", - "cancel" - ], - [ - "think about if you could only say one or the other, which animal do you see yourself choosing, cats or dogs", - "do_you_have_pets" - ], - [ - "who is your creator", - "who_made_you" - ], - [ - "tell me when i will next have the day off", - "next_holiday" - ], - [ - "how long does cottage cheese keep in the fridge", - "food_last" - ], - [ - "i'd like to revert to factory settings", - "reset_settings" - ], - [ - "i would like to know the amount of gas i have", - "gas" - ], - [ - "given my time, what time is it in mst", - "time" - ], - [ - "can you tell me what time it is please", - "time" - ], - [ - "what are some fun things to do in butte, montana", - "travel_suggestion" - ], - [ - "switch over from female to the male voice", - "change_accent" - ], - [ - "when don't i have to work next", - "next_holiday" - ], - [ - "are pasta dishes healthy", - "nutrition_info" - ], - [ - "could you let me know what names you have for me", - "user_name" - ], - [ - "i have credit card points but don't know how to use them", - "redeem_rewards" - ], - [ - "find out how long it has been since my car was last in the shop", - "last_maintenance" - ], - [ - "does my life have meaning", - "meaning_of_life" - ], - [ - "i need to let my bank know i am traveling to detroit", - "travel_notification" - ], - [ - "give me the status of my vacation request", - "pto_request_status" - ], - [ - "please tell my location to bob", - "share_location" - ], - [ - "i have to get going", - "goodbye" - ], - [ - "what is the value of my bank accounts", - "balance" - ], - [ - "reserve a table for two for 7:30 pm at dibruno's under patrick donoghue", - "restaurant_reservation" - ], - [ - "tell me my current savings account's interest rate", - "interest_rate" - ], - [ - "can i substitute milk for almond milk", - "ingredient_substitution" - ], - [ - "how do i jump start a battery", - "jump_start" - ], - [ - "how many ounces in a gallon", - "measurement_conversion" - ], - [ - "i wanna know your name", - "what_is_your_name" - ], - [ - "is my 10am village inn reservation valid", - "confirm_reservation" - ], - [ - "look me up on the map", - "current_location" - ], - [ - "my phone cannot be found", - "find_phone" - ], - [ - "how do i change the oil in my car", - "oil_change_how" - ], - [ - "is there a way to change your name to betty", - "change_ai_name" - ], - [ - "what's the nutrient make up of a plate of spaghetti", - "nutrition_info" - ], - [ - "set the volume to 4 now", - "change_volume" - ], - [ - "is traffic bad on my way to the next mcdonalds", - "traffic" - ], - [ - "what is the process i need to follow to get a new credit card", - "new_card" - ], - [ - "start a new text", - "text" - ], - [ - "can i harm my credit if i miss a car payment", - "improve_credit_score" - ], - [ - "how about a reminder", - "reminder_update" - ], - [ - "i'd like the number for my credit score", - "credit_score" - ], - [ - "what does \"rescind\" mean", - "definition" - ], - [ - "what's the currency conversion between usd and pounds", - "exchange_rate" - ], - [ - "tell me if you like cats or dogs", - "do_you_have_pets" - ], - [ - "how many days off did i use so far", - "pto_used" - ], - [ - "i would like you to put a stop on my bank account", - "freeze_account" - ], - [ - "what do my state taxes amount to", - "taxes" - ], - [ - "i wanna know my current location", - "current_location" - ], - [ - "i don't have checks, so can i get new ones", - "order_checks" - ], - [ - "return it back to the original settings", - "reset_settings" - ], - [ - "search for carry on rules for flights on delta airlines", - "carry_on" - ], - [ - "using this playlist, play next song", - "next_song" - ], - [ - "when will we begin to board my scheduled flight", - "flight_status" - ], - [ - "i need ten dollars sent from b of a to washington mutual", - "transfer" - ], - [ - "is there a way to go by bus to olympia", - "directions" - ], - [ - "change my credit limit, please", - "credit_limit_change" - ], - [ - "filp a coin, i call heads", - "flip_coin" - ], - [ - "make a reservation at 5 pm today for 2 at olive garden", - "restaurant_reservation" - ], - [ - "i have no idea what the pin is for my checking account", - "pin_change" - ], - [ - "i need to delete tomatoes from my shopping list and add onions instead", - "shopping_list_update" - ], - [ - "provide me the name of who programmed you", - "who_made_you" - ], - [ - "can you translate bat into russian for me", - "translate" - ], - [ - "i would have to say the answer to that is no", - "no" - ], - [ - "what is the time right now", - "time" - ], - [ - "tell me why my card was declined yesterday", - "card_declined" - ], - [ - "yeah, that's how it is", - "yes" - ], - [ - "how do i handle the situation if i lost my luggage", - "lost_luggage" - ], - [ - "please repeat over what you said", - "repeat" - ], - [ - "read me some fun facts", - "fun_fact" - ], - [ - "is my card set to expire soon", - "expiration_date" - ], - [ - "how is my ai doing", - "greeting" - ], - [ - "i would like to hear what ideas you have about making dinner tonight", - "meal_suggestion" - ], - [ - "should i get any vaccines before going over to the uk", - "vaccines" - ], - [ - "how is miami time zone like", - "timezone" - ], - [ - "your efforts don't go unnoticed", - "thank_you" - ], - [ - "i have a new job, help me with my 401k rollover", - "rollover_401k" - ], - [ - "tell me your birthday", - "how_old_are_you" - ], - [ - "can you check the balance on the water bill", - "bill_balance" - ], - [ - "how healthy is pho", - "nutrition_info" - ], - [ - "list all the shots i need to travel to france", - "vaccines" - ], - [ - "i am john", - "change_user_name" - ], - [ - "the next time i change my oil, when should it be", - "oil_change_when" - ], - [ - "how many miles per gallon does it get on the highway", - "mpg" - ], - [ - "take lunch off my calendar on the 3rd", - "calendar_update" - ], - [ - "can you tell me about the traffic typically at noon on the route the hospital", - "traffic" - ], - [ - "just call me dennis", - "change_user_name" - ], - [ - "how can i check my credit card limit", - "credit_limit" - ], - [ - "i need to know my bank of america account routing number", - "routing" - ], - [ - "how much tax do i owe", - "taxes" - ], - [ - "what's on the calendar for march 4th", - "calendar" - ], - [ - "how many days till i get a new card to replace the stolen one", - "replacement_card_duration" - ], - [ - "whats the due date for z bill", - "bill_due" - ], - [ - "where can i pick up a good burger near where i am", - "restaurant_suggestion" - ], - [ - "why is my bank account stopping all transactions from going through", - "account_blocked" - ], - [ - "can i substitute rice milk for milk", - "ingredient_substitution" - ], - [ - "how many vacation days do i still have", - "pto_balance" - ], - [ - "i need to get a hold of my w-2 right now", - "w2" - ], - [ - "tell me all about the creatures you own", - "do_you_have_pets" - ], - [ - "i'll talk to you later ai", - "goodbye" - ], - [ - "how do i fry pork chops", - "recipe" - ], - [ - "can you check how much pto i have already used", - "pto_used" - ], - [ - "it would be great if you could tell me my credit card's apr", - "apr" - ], - [ - "just call me sam", - "change_user_name" - ], - [ - "i didnt understand what you just said, can you say it again", - "repeat" - ], - [ - "can i make reservations at applebee's or no", - "accept_reservations" - ], - [ - "i am going to australia and want to be notified of any travel alerts", - "travel_alert" - ], - [ - "i want a timer set", - "timer" - ], - [ - "how much time to reach doctors office", - "distance" - ], - [ - "do i have to have a visa to go to denmark", - "international_visa" - ], - [ - "whats lifes meaning exactly", - "meaning_of_life" - ], - [ - "when was the car in the shop", - "last_maintenance" - ], - [ - "do you want me to shop for peanut butter", - "shopping_list" - ], - [ - "can you make a reservation at the restaurant for tonight", - "restaurant_reservation" - ], - [ - "what types of things do you like to do in your spare time", - "what_are_your_hobbies" - ], - [ - "write text message to someone", - "text" - ], - [ - "does acero in maplewood allow reservations", - "accept_reservations" - ], - [ - "i'd like to know what's on the shopping list", - "shopping_list" - ], - [ - "stop that", - "cancel" - ], - [ - "find out what my water bill costs please", - "bill_balance" - ], - [ - "do i have enough vacation to take a european trip", - "pto_balance" - ], - [ - "has my supervisor approved my vacation", - "pto_request_status" - ], - [ - "what is the traffic situation at the olive garden restaurant", - "traffic" - ], - [ - "can you do algebra", - "calculator" - ], - [ - "what date did i receive my last paycheck", - "payday" - ], - [ - "can i schedule a car repair", - "schedule_maintenance" - ], - [ - "tell me the name of this song", - "what_song" - ], - [ - "how is the traffic like on my way to fairfield", - "traffic" - ], - [ - "can see you see if there are meeting rooms available between 9:00 am and 11:00 am", - "schedule_meeting" - ], - [ - "find a good recipe for meatloaf", - "recipe" - ], - [ - "please roll the dice", - "roll_dice" - ], - [ - "can you please turn the fan on", - "smart_home" - ], - [ - "i need to know the bill's minimum payment", - "min_payment" - ], - [ - "i need to know when my oil was last changed", - "last_maintenance" - ], - [ - "help me modify my insurance policy", - "insurance_change" - ], - [ - "please confirm my reservation for kevin at red robin", - "confirm_reservation" - ], - [ - "may i get all of the food transactions that were made last month", - "transactions" - ], - [ - "please report my stolen card", - "report_lost_card" - ], - [ - "volume should be set at 4", - "change_volume" - ], - [ - "maybe yes, maybe no", - "maybe" - ], - [ - "would you like to live with a cat or a dog", - "do_you_have_pets" - ], - [ - "what is the wait time at this restaurant", - "how_busy" - ], - [ - "i'd like to find a place that rents flashy sports cars in tampa", - "car_rental" - ], - [ - "i no longer need milk, so forget that", - "shopping_list_update" - ], - [ - "what would five pounds be in kilos", - "measurement_conversion" - ], - [ - "what type of gas does the car use", - "gas_type" - ], - [ - "does kentucky have any good restaurants that serve sushi", - "restaurant_suggestion" - ], - [ - "i need for you to get bananas added to my shopping list; i'm out", - "shopping_list_update" - ], - [ - "is there an open meeting room between 2 and 4", - "schedule_meeting" - ], - [ - "when is my paycheck coming", - "payday" - ], - [ - "help, my account is blocked", - "account_blocked" - ], - [ - "please put in a pto request for june 5th and 6th", - "pto_request" - ], - [ - "can you help me with my 401k rollover since i got a new job", - "rollover_401k" - ], - [ - "tell me the number of vacation days i have stored", - "pto_balance" - ], - [ - "i'm famished so give me some places to eat!", - "restaurant_suggestion" - ], - [ - "what holiday is coming up next", - "next_holiday" - ], - [ - "salutations!", - "greeting" - ], - [ - "what time zone is ireland in", - "timezone" - ], - [ - "for the shopping list, add ham as well", - "shopping_list_update" - ], - [ - "i want you to switch to whisper mode", - "whisper_mode" - ], - [ - "please change the name of you to tim", - "change_ai_name" - ], - [ - "hey, slow down and take your time", - "change_speed" - ], - [ - "what duration of time should i wait before i change my oil", - "oil_change_when" - ], - [ - "do i need a visa to travel to mexico", - "international_visa" - ], - [ - "please make a reservation for us at joy bar for 4 adults", - "restaurant_reservation" - ], - [ - "what's the possibility of getting a credit limit increase on my visa", - "credit_limit_change" - ], - [ - "tell me how good the apr is on my card please", - "apr" - ], - [ - "how much money do i have in checking", - "balance" - ], - [ - "i need you to roll dice now", - "roll_dice" - ], - [ - "turn lights on in my bedroom", - "smart_home" - ], - [ - "can you tell me what 30% off 279 is, please", - "calculator" - ], - [ - "can you find me a recipe for pasta", - "recipe" - ], - [ - "i need to know five dollars in yen and rubles", - "exchange_rate" - ], - [ - "is there enough fuel to make it to the walmart", - "gas" - ], - [ - "what oil do i need and how is it changed", - "oil_change_how" - ], - [ - "online order: status", - "order_status" - ], - [ - "is there a certain type of gas i need to use for this car", - "gas_type" - ], - [ - "am i your boss", - "who_do_you_work_for" - ], - [ - "do the tires look a little low on pressure", - "tire_pressure" - ], - [ - "tell me who is by the garage door", - "smart_home" - ], - [ - "i want to practive changing oil", - "oil_change_how" - ], - [ - "can you walk me through the various tasks on my to do list", - "todo_list" - ], - [ - "tell me where a w2 is available please", - "w2" - ], - [ - "i advise you to quit talking", - "cancel" - ], - [ - "how about a coin flip", - "flip_coin" - ], - [ - "what's the expiry month of my card", - "expiration_date" - ], - [ - "go shopping and order everything on the list", - "order" - ], - [ - "i need you to skip this song and play the next one", - "next_song" - ], - [ - "what's my name saved under", - "user_name" - ], - [ - "i want to know if you are a real person or an ai", - "are_you_a_bot" - ], - [ - "what's 11 yen in pounds", - "exchange_rate" - ], - [ - "let me know the traffic in tempe", - "traffic" - ], - [ - "i'd like help finding my fon", - "find_phone" - ], - [ - "i must set a timer", - "timer" - ], - [ - "how many calories are in a cup of white rice", - "calories" - ], - [ - "any idea where flight dl123 is right now", - "flight_status" - ], - [ - "i'm going to be in thailand from october 15th until october 23rd", - "travel_notification" - ], - [ - "i have no clue", - "maybe" - ], - [ - "i need help acquiring new insurance", - "insurance_change" - ], - [ - "how much do i have in the bank", - "balance" - ], - [ - "i bent my card, can you report it to my bank", - "damaged_card" - ], - [ - "what's the title of this tune", - "what_song" - ], - [ - "i believe that there is some fraudulent activity on my capital one account", - "report_fraud" - ], - [ - "what hobbies do you like", - "what_are_your_hobbies" - ], - [ - "ai please repeat", - "repeat" - ], - [ - "how long has it been since my car was looked at", - "last_maintenance" - ], - [ - "my car needs maintenance prepared", - "schedule_maintenance" - ], - [ - "is it possible to make an order for more checkbooks for my chase bank account", - "order_checks" - ], - [ - "is there a meaning in life", - "meaning_of_life" - ], - [ - "where is a beef recipe", - "recipe" - ], - [ - "direct me to the closest starbucks near home", - "directions" - ], - [ - "what is it is all relative mean", - "definition" - ], - [ - "check to see if picking up glenn from the airport is on my list of reminders", - "reminder" - ], - [ - "i lost my luggage", - "lost_luggage" - ], - [ - "can i substitute ketchup for mustard", - "ingredient_substitution" - ], - [ - "please set the volume to 4", - "change_volume" - ], - [ - "call dave", - "make_call" - ], - [ - "what's the eta for a new card to come in the mail", - "replacement_card_duration" - ], - [ - "please look up if i can rent a car in houston from march 25 to march 29", - "car_rental" - ], - [ - "can you talk to me in french", - "change_language" - ], - [ - "will you roll a 3 sided dice", - "roll_dice" - ], - [ - "tell me today's scheduled conferences from noon on wards", - "meeting_schedule" - ], - [ - "how long would a bus to the empire state building take", - "distance" - ], - [ - "is it acceptable to swap chicken for pork", - "ingredient_substitution" - ], - [ - "play the song called tiny dancer", - "play_music" - ], - [ - "what's tomorrow on the calender", - "date" - ], - [ - "minimum payment of my bill please", - "min_payment" - ], - [ - "how many days old are you", - "how_old_are_you" - ], - [ - "how do i get my paycheck direct deposited to my chase account", - "direct_deposit" - ], - [ - "where should i travel if i want to visit some history museums", - "travel_suggestion" - ], - [ - "play some music for me", - "play_music" - ], - [ - "i need to make sure there is a reservation for george at connor oneil's", - "confirm_reservation" - ], - [ - "see you in a while", - "goodbye" - ], - [ - "how long have you been alive for", - "how_old_are_you" - ], - [ - "switch to the next song on this playlist please", - "next_song" - ], - [ - "can i get paychecks directly deposited to my bank of america account", - "direct_deposit" - ], - [ - "what kinds of fun things are there in boston for tourists", - "travel_suggestion" - ], - [ - "please use male voice instead", - "change_accent" - ], - [ - "remind me to clean room", - "reminder_update" - ], - [ - "how many centimeters are in 5 yards", - "measurement_conversion" - ], - [ - "i need to know what this song is called", - "what_song" - ], - [ - "hey, stop talking like you're a stretch taped", - "change_speed" - ], - [ - "what is 55 times 300", - "calculator" - ], - [ - "tell how many a's are in the word happiness", - "spelling" - ], - [ - "what is the credit card apr please", - "apr" - ], - [ - "add washing dishes to my to do list", - "todo_list_update" - ], - [ - "how long can i go before changing my oil", - "oil_change_when" - ], - [ - "schedule an uber to the bean", - "uber" - ], - [ - "so how long can pizza last in the fridge", - "food_last" - ], - [ - "tell my bank that i'll be in canada this weekend", - "travel_notification" - ], - [ - "place a phone call to yiming", - "make_call" - ], - [ - "get rid of my 4 pm reservation at the steakhouse please", - "cancel_reservation" - ], - [ - "are you able to get my shopping list and order everything on it", - "order" - ], - [ - "how much money do i pay in taxes, please", - "taxes" - ], - [ - "my stolen card needs to be reported", - "report_lost_card" - ], - [ - "time zone in france", - "timezone" - ], - [ - "during which month will my card expire", - "expiration_date" - ], - [ - "i need to know what my to-do list is looking like", - "todo_list" - ], - [ - "what do i need if i want to make lasagna", - "ingredients_list" - ], - [ - "do i need to fill up my tires", - "tire_pressure" - ], - [ - "could you schedule a meeting with john smith at 1 pm tomorrow", - "schedule_meeting" - ], - [ - "can you explain to me why my bank account might be frozen", - "account_blocked" - ], - [ - "let me know what's on my list of reminders", - "reminder" - ], - [ - "can i have my credit limit changed", - "credit_limit_change" - ], - [ - "what date will my replacement card arrive on", - "replacement_card_duration" - ], - [ - "what sorts of subjects do you know about", - "what_can_i_ask_you" - ], - [ - "what are the nutrition facts for a mcdouble at mcdonalds", - "nutrition_info" - ], - [ - "is there a time limit on leaving pork in the fridge", - "food_last" - ], - [ - "read me the current weather report for tallahassee", - "weather" - ], - [ - "is there an insurance plan for my health", - "insurance" - ], - [ - "on my list of reminders is what", - "reminder" - ], - [ - "can you tell me my checking account balance", - "balance" - ], - [ - "please add to \"kids\" playlist", - "update_playlist" - ], - [ - "what\u2019s the answer to 5-6=", - "calculator" - ], - [ - "can you block my chase account right away please", - "freeze_account" - ], - [ - "what was the date when i last had my car inspected", - "last_maintenance" - ], - [ - "set a four minute timer", - "timer" - ], - [ - "what's my health plan", - "insurance" - ], - [ - "i'm unaware of that", - "maybe" - ], - [ - "that's a yes from me", - "yes" - ], - [ - "you have what name for me", - "user_name" - ], - [ - "when i go to mexico, what kind of plugs do i need", - "plug_type" - ], - [ - "i want whisper mode", - "whisper_mode" - ], - [ - "do you charge me if i use my card in japan", - "international_fees" - ], - [ - "i'd like you to give me an idea for a meal from iceland", - "meal_suggestion" - ], - [ - "what\u2019s your favorite funny joke", - "tell_joke" - ], - [ - "can you explain my benefits", - "insurance" - ], - [ - "how long can i expect chicken breast to be good for before expiration", - "food_last" - ], - [ - "how many calories do cheetos have", - "calories" - ], - [ - "please transfer $250 from checking to savings", - "transfer" - ], - [ - "can you find my credit score", - "credit_score" - ], - [ - "i am needing to know the current time in the eastern timezone", - "time" - ], - [ - "let sal know by text i will be attending", - "text" - ], - [ - "do i need to get a visa to visit canada", - "international_visa" - ], - [ - "can i change what you call me", - "change_user_name" - ], - [ - "how do i report a lost card", - "report_lost_card" - ], - [ - "decrease volume level", - "change_volume" - ], - [ - "how long have you been alive", - "how_old_are_you" - ], - [ - "i want to listen to the next song on this playlist instead", - "next_song" - ], - [ - "start the timer now and stop at thirty minutes", - "timer" - ], - [ - "does applebees have alright reviews", - "restaurant_reviews" - ], - [ - "are you real or an ai", - "are_you_a_bot" - ], - [ - "i need you to block my chase account immediately", - "freeze_account" - ], - [ - "tell me my miles per gallon on my car", - "mpg" - ], - [ - "ai, please stop your current task", - "cancel" - ], - [ - "tell me my current location please", - "current_location" - ], - [ - "how much time off do i have left", - "pto_balance" - ], - [ - "check to see how many days off i have used in total so far", - "pto_used" - ], - [ - "tell me why am i locked out of my bank account", - "account_blocked" - ], - [ - "where can i get the form i need to do my taxes", - "w2" - ], - [ - "how much do i owe for state taxes", - "taxes" - ], - [ - "is it possible for you to use the whisper voice", - "whisper_mode" - ], - [ - "how many delta miles are on my card right now", - "rewards_balance" - ], - [ - "could you please let me apply for a new credit card", - "new_card" - ], - [ - "in nashville, i need a rental car booked", - "car_rental" - ], - [ - "is the pressure in my tires optimal", - "tire_pressure" - ], - [ - "should i call you something in particular", - "what_is_your_name" - ], - [ - "how much are my xfinity and dte bills", - "bill_balance" - ], - [ - "i need help cause my check engine light came on", - "schedule_maintenance" - ], - [ - "what's your nationality", - "where_are_you_from" - ], - [ - "when do i take my car in for a tire change", - "tire_change" - ], - [ - "can i set a reminder", - "reminder_update" - ], - [ - "how many points have been earned on my amex", - "rewards_balance" - ], - [ - "how do i get to the nearest post office", - "directions" - ], - [ - "i need to know today's date", - "date" - ], - [ - "the answer to that is a resounding yes", - "yes" - ], - [ - "how come my card was declined at rosses", - "card_declined" - ], - [ - "thank you very much for the answer", - "thank_you" - ], - [ - "what kind of activities do you enjoy", - "what_are_your_hobbies" - ], - [ - "get me a flight for tuesday on spiritcom to las vegas from chicago", - "book_flight" - ], - [ - "i want you to help me make a decision by flipping a coin", - "flip_coin" - ], - [ - "give me a reminder for calling bill", - "reminder_update" - ], - [ - "please start using female voice", - "change_accent" - ], - [ - "has my credit card application been processed yet", - "application_status" - ], - [ - "resume my metal playlist", - "play_music" - ], - [ - "how do they say \"who is your father\" in german", - "translate" - ], - [ - "which days did i take off work", - "pto_used" - ], - [ - "could you connect to my phone", - "sync_device" - ], - [ - "what are the foreign transaction fees for cuba", - "international_fees" - ], - [ - "how many total meetings will i have between 2 and 5", - "meeting_schedule" - ], - [ - "is there any meaning to being alive", - "meaning_of_life" - ], - [ - "yes, that's affirmative", - "yes" - ], - [ - "i have to say goodbye", - "goodbye" - ], - [ - "i need you to tell my what my routing number is for my first county account", - "routing" - ], - [ - "are there any alerts for travelling to beirut", - "travel_alert" - ], - [ - "will i need vaccines for my trip", - "vaccines" - ], - [ - "change your settings so that your respond to the name marion", - "change_ai_name" - ], - [ - "i'd like to know where i am", - "current_location" - ], - [ - "undo the last event on my calendar", - "calendar_update" - ], - [ - "where can i find my credit card's expiration date", - "expiration_date" - ], - [ - "can you change the way you talk to a male british voice", - "change_accent" - ], - [ - "book an uber to school", - "uber" - ], - [ - "i would like to see the transactions i made last week", - "transactions" - ], - [ - "call the card company and ask them to replace my card", - "damaged_card" - ], - [ - "how expensive was my most recent transaction", - "transactions" - ], - [ - "weather", - "weather" - ], - [ - "can you increase the speaker volume", - "change_volume" - ], - [ - "see if my form submission for an american express card has been seen", - "application_status" - ], - [ - "do you know if bahama breeze does reservations", - "accept_reservations" - ], - [ - "is it time for an oil change", - "oil_change_when" - ], - [ - "what is 25 percent of 6999", - "calculator" - ], - [ - "i'd like you to disconnect from my phone", - "sync_device" - ], - [ - "how much gas to i have left", - "gas" - ], - [ - "yellow by coldplay to my playlist please", - "update_playlist" - ], - [ - "i need to uber somewhere", - "uber" - ], - [ - "use my savings account to the pay the rent", - "pay_bill" - ], - [ - "tell me how many meetings with pete i have for today", - "meeting_schedule" - ], - [ - "look up the status of the order i placed online", - "order_status" - ], - [ - "what name should i refer to you as", - "what_is_your_name" - ], - [ - "negative for sure", - "no" - ], - [ - "how do i get a personal w2 form", - "w2" - ], - [ - "what name do you have saved for me", - "user_name" - ], - [ - "what is the reason i am locked out of my bank account", - "account_blocked" - ], - [ - "tell me what is on my calendar for march 2", - "calendar" - ], - [ - "help me find a hotel in that has good reviews in columbus", - "book_hotel" - ], - [ - "traveling to the uk am i going to need any specific shots", - "vaccines" - ], - [ - "book delta ticket madison to atlanta", - "book_flight" - ], - [ - "i need a pto request put in for the weekend of june 1st to june 2nd", - "pto_request" - ], - [ - "what kinds of things can you do", - "what_can_i_ask_you" - ], - [ - "looking at january, show all wine purchases", - "transactions" - ], - [ - "please show me how to order more checks for my savings account", - "order_checks" - ], - [ - "show me the last month of transactions", - "transactions" - ], - [ - "tell lydia and laura where i am located", - "share_location" - ], - [ - "how do i say you're welcome in chinese", - "translate" - ], - [ - "what can i use you to help me with", - "what_can_i_ask_you" - ], - [ - "mark down that i will be in rome from february 1 to march 1 and notify my bank", - "travel_notification" - ], - [ - "who is in charge of you", - "who_do_you_work_for" - ], - [ - "make the lights dimmer please", - "smart_home" - ], - [ - "suggest a meal from india to me", - "meal_suggestion" - ], - [ - "where is my order", - "order_status" - ], - [ - "can you update me on the status of my american express card application", - "application_status" - ], - [ - "what is the definition of zesty", - "definition" - ], - [ - "my insurance plan needs to be changed", - "insurance_change" - ], - [ - "i need a hotel in austin near south congress from 3/5 until 3/10", - "book_hotel" - ], - [ - "please transfer $x from checking to saving", - "transfer" - ], - [ - "i need some work done on my car so need to schedule auto mechanic for maintenance", - "schedule_maintenance" - ], - [ - "can i get a higher credit limit on my american express", - "credit_limit_change" - ], - [ - "how long is it acceptable to carmelize onions", - "cook_time" - ], - [ - "i can't figure out how to spell superficial", - "spelling" - ], - [ - "i think my luggage was misplaced or has been lost", - "lost_luggage" - ], - [ - "put a hundred dollars in my ally account from bluebird", - "transfer" - ], - [ - "please tell me your name", - "what_is_your_name" - ], - [ - "i would like an uber going to the train station, please", - "uber" - ], - [ - "book me a hotel room in memphis for 3 people from 3/6 until 3/10", - "book_hotel" - ], - [ - "i have to get my 401k rollover because i just got a new job", - "rollover_401k" - ], - [ - "please check and tell me the amount i spent on food last month", - "spending_history" - ], - [ - "tell the restaurant to cancel my reservation", - "cancel_reservation" - ], - [ - "what's 50 euro in dollars", - "exchange_rate" - ], - [ - "what is 10 ounces in grams", - "measurement_conversion" - ], - [ - "tell me what the date is today", - "date" - ], - [ - "i got to report fraudulent activity on my credit card", - "report_fraud" - ], - [ - "tell me when my meeting is scheduled with roger", - "meeting_schedule" - ], - [ - "i'd like to set up a direct deposit for my paycheck", - "direct_deposit" - ], - [ - "call someone for me", - "make_call" - ], - [ - "i need a hotel room for 4 people in lakewood from monday to wednesday", - "book_hotel" - ], - [ - "i need to know when the next holiday will be", - "next_holiday" - ], - [ - "i would like to know how to rollover my 401k", - "rollover_401k" - ], - [ - "i need to add dusting the bookshelf to my to do list", - "todo_list_update" - ], - [ - "does spain expect any travel alerts", - "travel_alert" - ], - [ - "change language setting to english", - "change_language" - ], - [ - "i need to let my bank know i am traveling to la", - "travel_notification" - ], - [ - "are there any reputable car rental places in seattle", - "car_rental" - ], - [ - "how many miles do i drive before i have to get new tires i replaced them four years ago", - "tire_change" - ], - [ - "i want you to guess my name", - "user_name" - ], - [ - "where are you from", - "where_are_you_from" - ], - [ - "tell me a little more about the status of my credit card application", - "application_status" - ], - [ - "i'd love to hear a joke", - "tell_joke" - ], - [ - "is it recommended to get any specific shots before i travel to japan", - "vaccines" - ], - [ - "can you translate bowl into russian for me", - "translate" - ], - [ - "are you actually a bot", - "are_you_a_bot" - ], - [ - "who would you say that you are employed by", - "who_do_you_work_for" - ], - [ - "i want to know what kinds of pets you have", - "do_you_have_pets" - ], - [ - "what's your hobbies", - "what_are_your_hobbies" - ], - [ - "tomorrow, what will the date be", - "date" - ], - [ - "where is the closest gas station", - "distance" - ], - [ - "share my location with sarah", - "share_location" - ], - [ - "is changing the water filter on my to do list right now", - "todo_list" - ], - [ - "can you give me a thai meal suggestion", - "meal_suggestion" - ], - [ - "how old are you, ai", - "how_old_are_you" - ], - [ - "can i convert my credit card points to milage", - "redeem_rewards" - ], - [ - "i would like to know the time", - "time" - ], - [ - "what have i spent on food recently", - "spending_history" - ], - [ - "tell me things i can do in chicago", - "travel_suggestion" - ], - [ - "what words would i use to tell someone i am lost if i were japanese", - "translate" - ], - [ - "what's the timezone for san diego", - "timezone" - ], - [ - "what kind of pto have i used", - "pto_used" - ], - [ - "when's the gas bill due", - "bill_due" - ], - [ - "does mcdonalds have good reviews", - "restaurant_reviews" - ], - [ - "is there another company you work for", - "who_do_you_work_for" - ], - [ - "what do i need to make a cake", - "ingredients_list" - ], - [ - "i'd like to go on vacation", - "pto_request" - ], - [ - "i need to know my earnings", - "income" - ], - [ - "help me get my pin on my capitol one account changed to 3892", - "pin_change" - ], - [ - "what kind of items are on my shopping list", - "shopping_list" - ], - [ - "please speak to me in chinese", - "change_language" - ], - [ - "can you tell me my current interest rate", - "interest_rate" - ], - [ - "is there any good place for vietnamese food on the east side of the island", - "restaurant_suggestion" - ], - [ - "cancel my reservation for chris at jp field's", - "cancel_reservation" - ], - [ - "what's on my calendar for march 01", - "calendar" - ], - [ - "what amount of time do i need to cook lobster for", - "cook_time" - ], - [ - "i want an alarm at 5pm", - "alarm" - ], - [ - "what type of fuel does my car use", - "gas_type" - ], - [ - "how long does it take to get to applebees in new york", - "distance" - ], - [ - "the card is torn, let's report it", - "damaged_card" - ], - [ - "change the pin on my wells fargo account to be 1234", - "pin_change" - ], - [ - "tell me what edict means", - "definition" - ], - [ - "how much have i lately spent on eating out", - "spending_history" - ], - [ - "set up a timer", - "timer" - ], - [ - "how long can you go between oil changes", - "oil_change_when" - ], - [ - "can you find me a recipe for ribs", - "recipe" - ], - [ - "what are all the things on the shopping list", - "shopping_list" - ], - [ - "how high is the apr on my mastercard", - "apr" - ], - [ - "what is my bill's minimum payment", - "min_payment" - ], - [ - "how long should i expect to wait at the cheesecake factory before getting seated", - "how_busy" - ], - [ - "i go by the name jim", - "change_user_name" - ], - [ - "what are some funny things about food", - "tell_joke" - ], - [ - "i need to report a new card please the atm hurt mine", - "damaged_card" - ], - [ - "i want your language changed to chinese", - "change_language" - ], - [ - "i want to cook a quick breakfast what ingredients do i need", - "ingredients_list" - ], - [ - "what topics can i ask you about", - "what_can_i_ask_you" - ], - [ - "how long do you cook pasta for", - "cook_time" - ], - [ - "when's the ac bill due", - "bill_due" - ], - [ - "i need to change my pin number for my checking account", - "pin_change" - ], - [ - "tell me what company programmed you", - "who_made_you" - ], - [ - "do my tires seem too low on air", - "tire_pressure" - ], - [ - "what percentage gas do i need", - "gas_type" - ], - [ - "are you able to get into my phone at the moment", - "sync_device" - ], - [ - "how many vacation days do i have left", - "pto_balance" - ], - [ - "how long should i cook the pasta for", - "cook_time" - ], - [ - "mind sharing a joke", - "tell_joke" - ], - [ - "where can i find the mall closest to here", - "directions" - ], - [ - "make an alarm 6am", - "alarm" - ], - [ - "i need you to freeze my account", - "freeze_account" - ], - [ - "how low is my gas tank", - "gas" - ], - [ - "hey ai, reduce your speed of speaking", - "change_speed" - ], - [ - "i would like to get some more checkbooks mailed to me", - "order_checks" - ], - [ - "i think there's a fraudulent transaction on my account", - "report_fraud" - ], - [ - "can you give me a vietnamese dinner suggestion", - "meal_suggestion" - ], - [ - "i need you to order some more lysol for me,please", - "order" - ], - [ - "please help me figure out where my lost phone is", - "find_phone" - ], - [ - "is the sushi well-received at yakamoto", - "restaurant_reviews" - ], - [ - "take $40 and transfer it to account a from b", - "transfer" - ], - [ - "i want to pay my bill, please", - "pay_bill" - ], - [ - "does the bleu olive have decent reviews", - "restaurant_reviews" - ], - [ - "will you tell me my interest rate", - "interest_rate" - ], - [ - "what are delta's carry-on restrictions", - "carry_on" - ], - [ - "closest auto parts store to find replace for dead car battery", - "jump_start" - ], - [ - "i can't find my student id card and i want to report it as lost", - "report_lost_card" - ], - [ - "i want to know if there are meeting rooms available between 9:00 am and 11:00 am", - "schedule_meeting" - ], - [ - "whats the most recent status for my virgin air flight", - "flight_status" - ], - [ - "what has my income been like", - "income" - ], - [ - "what sort of gas should i get for my car", - "gas_type" - ], - [ - "remind me of the date of my last paycheck", - "payday" - ], - [ - "take the event called surprise party off my calendar for june 2", - "calendar_update" - ], - [ - "my card was not accepted for buying a computer at best buy", - "card_declined" - ], - [ - "what do you make in a year", - "income" - ], - [ - "is there a quick way to improve my credit score", - "improve_credit_score" - ], - [ - "could you roll a 6 sided dice", - "roll_dice" - ], - [ - "what is the definition of succumb", - "definition" - ], - [ - "what steps do i need to do to set up direct deposit", - "direct_deposit" - ], - [ - "tell me the status of my vacation request", - "pto_request_status" - ], - [ - "we no longer need fries on the shopping lisr", - "shopping_list_update" - ], - [ - "find all the \"a\"s in happiness", - "spelling" - ], - [ - "is flight dl123 coming in on time", - "flight_status" - ], - [ - "what timezone is miami in", - "timezone" - ], - [ - "what is the due date for a bill", - "bill_due" - ], - [ - "can i get a car to the baseball field for 12", - "uber" - ], - [ - "will you repeat what you just said", - "repeat" - ], - [ - "what's my limit on my amex card", - "credit_limit" - ], - [ - "please help me apply for a silver card", - "new_card" - ], - [ - "how long will the wait be at noon if we went to nagomi", - "how_busy" - ], - [ - "what is the total amount of my paychecks over the last year", - "income" - ], - [ - "let me know how many carry ons i can take on a flight with southwest airlines to dallas", - "carry_on" - ], - [ - "get rid of my dinner reservation", - "cancel_reservation" - ], - [ - "how many stars does la vignette have", - "restaurant_reviews" - ], - [ - "will you check there is a reservation for laura at black pearl", - "confirm_reservation" - ], - [ - "delete my to do list", - "todo_list_update" - ], - [ - "how far can i go on one tank of gas", - "mpg" - ], - [ - "are there meetings schedules today between noon and one", - "meeting_schedule" - ], - [ - "my luggage appears to be missing", - "lost_luggage" - ], - [ - "cleaning needs to be on my to do list", - "todo_list_update" - ], - [ - "what is the minimum required payment for my cell phone bill", - "min_payment" - ], - [ - "discover card reporting fraud", - "report_fraud" - ], - [ - "what is the amount of money that i have to pay in taxes", - "taxes" - ], - [ - "where can i get my w2 from for tax reasons", - "w2" - ], - [ - "i need new insurance, how do i get it", - "insurance_change" - ], - [ - "for the calendar, on february 8 add moms birthday", - "calendar_update" - ], - [ - "i was at trader joe's trying to buy groceries and my card got declined", - "card_declined" - ], - [ - "compare prices for flights from recife to miami leaving may 20 returning june 5", - "book_flight" - ], - [ - "my card was malfunctioning and was returned to me", - "card_declined" - ], - [ - "make a reservation for 2 at red lobster at 8pm", - "restaurant_reservation" - ], - [ - "hey, how's it going", - "greeting" - ], - [ - "how do you spell antipathy", - "spelling" - ], - [ - "what apr does this credit card have", - "apr" - ], - [ - "let me thank you", - "thank_you" - ], - [ - "can i get a reservation at champs", - "accept_reservations" - ], - [ - "tell me what song this is", - "what_song" - ], - [ - "my car battery is dead, how do i charge it", - "jump_start" - ], - [ - "at this location what are my gps coordinates", - "current_location" - ], - [ - "go back to your original settings", - "reset_settings" - ], - [ - "what car rental choices are there in calgary", - "car_rental" - ], - [ - "speed up your talking please", - "change_speed" - ], - [ - "how long do you need to bake chicken for it to be safe to eat", - "cook_time" - ], - [ - "at 5:30 pm, how busy can i expect olive garden to be", - "how_busy" - ], - [ - "thanks for the help", - "thank_you" - ], - [ - "please set two alarms, one at 12 pm and the next at 1 pm", - "alarm" - ], - [ - "what is the caloric total in these muffins", - "calories" - ], - [ - "what's the weekend forecast", - "weather" - ], - [ - "would you tell me about my income", - "income" - ], - [ - "turn lights on in the garage", - "smart_home" - ], - [ - "can you create a reminder", - "reminder_update" - ], - [ - "could you please get out of whisper mode", - "whisper_mode" - ], - [ - "where was it you were made", - "where_are_you_from" - ], - [ - "undo", - "cancel" - ], - [ - "when does my capital one visa expire", - "expiration_date" - ], - [ - "can you remember the nutritional info for macaroni and cheese", - "nutrition_info" - ], - [ - "can you help me pay a bill", - "pay_bill" - ], - [ - "call macy", - "make_call" - ], - [ - "how do i report a lost discover credit card", - "report_lost_card" - ], - [ - "talk slower, please", - "change_speed" - ], - [ - "put in a pto request for march 4 to march 6", - "pto_request" - ], - [ - "i want to pay my insurance bill", - "pay_bill" - ], - [ - "will i have to wait for long before being seated at the cheese cake factory", - "how_busy" - ], - [ - "i would love to hear a joke about the dmv", - "tell_joke" - ], - [ - "change the native language", - "change_language" - ], - [ - "what's on my schedule for may 3", - "calendar" - ], - [ - "send bill a text for me and tell him i will be 30 minutes late", - "text" - ], - [ - "how's the fuel efficiency for city driving for this car", - "mpg" - ], - [ - "remind me of what i asked you to remember", - "reminder" - ], - [ - "how can i cash in my credit card points", - "redeem_rewards" - ], - [ - "update me on my vacation request", - "pto_request_status" - ], - [ - "what's going on", - "greeting" - ], - [ - "how to keep my credit up", - "improve_credit_score" - ], - [ - "hmmm, either could be a choice", - "maybe" - ], - [ - "what is the routing number of cadence", - "routing" - ], - [ - "inform me of my credit score", - "credit_score" - ], - [ - "in which area were you made", - "where_are_you_from" - ], - [ - "what ingredients are required for chicken noodle soup", - "ingredients_list" - ], - [ - "go to next song, please", - "next_song" - ], - [ - "i'm looking for a roundtrip flight from afw to dgb for tomorrow until next week", - "book_flight" - ], - [ - "what are some things i can do in portland", - "travel_suggestion" - ], - [ - "what's the balance in my checking", - "balance" - ], - [ - "do i have a lot of gas left", - "gas" - ], - [ - "i need to locate my phone", - "find_phone" - ], - [ - "can i obtain health benefits", - "insurance" - ], - [ - "tell me how to apply for an american express card", - "new_card" - ], - [ - "what is the way to change motor oil", - "oil_change_how" - ], - [ - "do you need a special outlet converter in sweden", - "plug_type" - ], - [ - "will it snow this weekend", - "weather" - ], - [ - "does international travel always require a visa", - "international_visa" - ], - [ - "what type of plug do they use in mexico", - "plug_type" - ], - [ - "what is my car's tire pressure", - "tire_pressure" - ], - [ - "how many carry ons can i take on a flight with american airlines to seattle", - "carry_on" - ], - [ - "what's my going out to eat tab this month vs last month", - "spending_history" - ], - [ - "could you tell me your name", - "what_is_your_name" - ], - [ - "are you a computer or a real person", - "are_you_a_bot" - ], - [ - "you should reset your factory settings", - "reset_settings" - ], - [ - "are you working for me or what", - "who_do_you_work_for" - ], - [ - "where is the closest starbucks", - "directions" - ], - [ - "can you see where my package is", - "order_status" - ], - [ - "what's the due date for the credit card", - "bill_due" - ], - [ - "hey do you know how to jump start a car battery", - "jump_start" - ], - [ - "cancel my 6:00 reservation at the cheesecake factory", - "cancel_reservation" - ], - [ - "how can i track the progress of my credit card application", - "application_status" - ], - [ - "what kind of things can you answer", - "what_can_i_ask_you" - ], - [ - "can you put in a pto request for march 4 to march 6 for me", - "pto_request" - ], - [ - "what's my rewards balance on my discover", - "rewards_balance" - ], - [ - "the tasks for today, what are they", - "todo_list" - ], - [ - "how long it takes to get a new replacement card", - "replacement_card_duration" - ], - [ - "what is the average time to get to walmart in mays landing", - "distance" - ], - [ - "are you able to purchase underpants for me", - "order" - ], - [ - "what's my current limit on my visa", - "credit_limit" - ], - [ - "what is my routing number for marine bank", - "routing" - ], - [ - "do i need to get milk", - "shopping_list" - ], - [ - "spell potato", - "spelling" - ], - [ - "what's the minimum payment on my phone bill", - "min_payment" - ], - [ - "what is the most unique piece of trivia relating to cameras", - "fun_fact" - ], - [ - "how do i redirect my 401k", - "rollover_401k" - ], - [ - "can i swap cayenne pepper for black pepper", - "ingredient_substitution" - ], - [ - "what ingredients are in cake", - "ingredients_list" - ], - [ - "what actions do i take to change a car's oil", - "oil_change_how" - ], - [ - "add the next song to my playlist - broken by evanescence", - "update_playlist" - ], - [ - "did i put an item on the calendar to get the dog neutered", - "calendar" - ], - [ - "i want to hear my to do list please", - "todo_list" - ], - [ - "maybe is my answer", - "maybe" - ], - [ - "did i spend a lot on shoes recently", - "spending_history" - ], - [ - "does medical debt hurt my credit score", - "improve_credit_score" - ], - [ - "whats the cars fuel mileage like", - "mpg" - ], - [ - "have an alarm set for three in the morning", - "alarm" - ], - [ - "tell me the number of calories in a banana", - "calories" - ], - [ - "what kind of hobbies do you have", - "what_are_your_hobbies" - ], - [ - "i want to switch out of whisper mode", - "whisper_mode" - ], - [ - "that\u2019s actually wrong", - "no" - ], - [ - "goodbye for now ai", - "goodbye" - ], - [ - "you were built by who", - "who_made_you" - ], - [ - "share my location wtih amanda now", - "share_location" - ], - [ - "could you tell me today's date", - "date" - ], - [ - "does buffalo wild wings do reservations", - "accept_reservations" - ], - [ - "help me figure out getting new insurance", - "insurance_change" - ], - [ - "can you play music by led zeppelin", - "play_music" - ], - [ - "provide me with my credit score", - "credit_score" - ], - [ - "clear my calendar on march 1st", - "calendar_update" - ], - [ - "can you help me find out how to get a new credit card", - "new_card" - ], - [ - "my luggage was lost so what do i do", - "lost_luggage" - ], - [ - "can you sign me up for a meeting in the blue room on friday", - "schedule_meeting" - ], - [ - "tell me something interesting about sperm whales", - "fun_fact" - ], - [ - "what interest rate will regions give me", - "interest_rate" - ], - [ - "do they use weird plugs in australia where i'd need some kind of socket converter", - "plug_type" - ], - [ - "i am going to russia and am wondering if i need a visa", - "international_visa" - ], - [ - "do you know of any good mexican restaurants in seattle", - "restaurant_suggestion" - ], - [ - "how long is it until payday", - "payday" - ], - [ - "how soon should i replace my tires from yesterday", - "tire_change" - ], - [ - "how are you this fine day", - "greeting" - ], - [ - "i gotta pay my cable bill", - "pay_bill" - ], - [ - "disconnect from my phone", - "sync_device" - ], - [ - "what's the point of this dumpster fire known as life", - "meaning_of_life" - ], - [ - "i think someone's using my visa card without my permission", - "report_fraud" - ], - [ - "how do i know if you are a real person", - "are_you_a_bot" - ], - [ - "how many centimeters are one inch", - "measurement_conversion" - ], - [ - "how much it the credit limit on my visa card", - "credit_limit" - ], - [ - "where in the world is there a travel alert", - "travel_alert" - ], - [ - "what day is our next free day, please", - "next_holiday" - ], - [ - "what are the calories in a cookie", - "calories" - ], - [ - "heads or tails", - "flip_coin" - ], - [ - "tell me a fun fact about mt everest", - "fun_fact" - ], - [ - "how do i figure out my intetest rate", - "interest_rate" - ], - [ - "i need to add this song to my playlist of rock", - "update_playlist" - ], - [ - "tell me my reminders", - "reminder" - ], - [ - "which company can i credit your design to", - "who_made_you" - ], - [ - "whats the update on flight dl123", - "flight_status" - ], - [ - "text my boss for me and tell them i will be a little bit late", - "text" - ], - [ - "please do me a favor and call brother mario", - "make_call" - ], - [ - "when i am in spain using my cmaden card, is there any transaction fee", - "international_fees" - ], - [ - "can you confirm i have a reservation at 5 pm on march 13th", - "confirm_reservation" - ], - [ - "i would like you to repeat yourself", - "repeat" - ], - [ - "how high is my credit limit for my walmart card", - "credit_limit" - ], - [ - "i want to to schedule maintenance on my vehicle", - "schedule_maintenance" - ], - [ - "when do you think i should replace my tires because i replaced them on 12/21/17", - "tire_change" - ], - [ - "when's the last time i got a paycheck", - "payday" - ], - [ - "my card isn't working", - "damaged_card" - ], - [ - "how long does it take you to mail me a new card", - "replacement_card_duration" - ], - [ - "find if there are any travel alerts for canada", - "travel_alert" - ], - [ - "play rock playlist", - "play_music" - ], - [ - "you got to go back to factory settings now", - "reset_settings" - ], - [ - "my friend steve needs my gps coordinates send them to him", - "share_location" - ], - [ - "tell me a fact i may not know", - "fun_fact" - ], - [ - "what are my options for jump starting my battery", - "jump_start" - ], - [ - "what is the process of finding my credit score", - "credit_score" - ], - [ - "roll a dice", - "roll_dice" - ], - [ - "set the alarm to go off at 9 tomorrow", - "alarm" - ], - [ - "put clean refrigerator on my spring cleaning to do list", - "todo_list_update" - ], - [ - "can you put a block on my visa account right away", - "freeze_account" - ], - [ - "what are the carry-on rules", - "carry_on" - ], - [ - "is it safe to eat chicken that has been in the fridge since monday", - "food_last" - ], - [ - "would being late hurt my credit", - "improve_credit_score" - ], - [ - "has anyone approved my day off request", - "pto_request_status" - ], - [ - "thanks again!", - "thank_you" - ], - [ - "i would like to know where my phone is", - "find_phone" - ], - [ - "purchase a computer for me", - "order" - ], - [ - "what are some roundtrip flights from dallas to los angeles from march 2 to march 10", - "book_flight" - ], - [ - "can you tell me what is included in my health benefits", - "insurance" - ], - [ - "how much is 500 dollars in pesos", - "exchange_rate" - ], - [ - "can you do a coin flip for me", - "flip_coin" - ], - [ - "book me a hotel with good ratings in nashville", - "book_hotel" - ], - [ - "please change to the female voice", - "change_accent" - ], - [ - "have i earned a lot of points on my capital one card", - "rewards_balance" - ], - [ - "what's playing right now", - "what_song" - ], - [ - "i don't have any checks left; please order some", - "order_checks" - ], - [ - "please add this song to my alternative playlist", - "update_playlist" - ], - [ - "what is the easiest way to check my bank rewards card", - "rewards_balance" - ], - [ - "do i need a power adapter in mexico", - "plug_type" - ], - [ - "let me use my credit card points", - "redeem_rewards" - ], - [ - "your name is roman", - "change_ai_name" - ], - [ - "search google for how to set up direct deposit", - "direct_deposit" - ], - [ - "where were you before moving here", - "where_are_you_from" - ], - [ - "when should i replace my tires next if i last replaced them on july 15th", - "tire_change" - ], - [ - "can you connect to my phone, please", - "sync_device" - ], - [ - "what is the cost of water and electric this month", - "bill_balance" - ], - [ - "can you tell me what the weather will be please", - "weather" - ], - [ - "i would like to use my credit card points to acquire a new laptop", - "redeem_rewards" - ], - [ - "what is the routing number for royal", - "routing" - ], - [ - "i don't like that, no", - "no" - ], - [ - "no that is not right", - "no" - ] - ] -} \ No newline at end of file diff --git a/annotators/dnnc_intents/utils_old_roberta.py b/annotators/dnnc_intents/utils_roberta.py similarity index 100% rename from annotators/dnnc_intents/utils_old_roberta.py rename to annotators/dnnc_intents/utils_roberta.py diff --git a/assistant_dists/dream/cpu.yml b/assistant_dists/dream/cpu.yml index a44eb13166..3b2f6f20cd 100644 --- a/assistant_dists/dream/cpu.yml +++ b/assistant_dists/dream/cpu.yml @@ -27,4 +27,4 @@ services: CUDA_VISIBLE_DEVICES: "" dnnc-intents: environment: - CUDA_VISIBLE_DEVICES: "" + CUDA_VISIBLE_DEVICES: "" diff --git a/assistant_dists/dream/docker-compose.override.yml b/assistant_dists/dream/docker-compose.override.yml index ff62b2ef73..64ace479c3 100644 --- a/assistant_dists/dream/docker-compose.override.yml +++ b/assistant_dists/dream/docker-compose.override.yml @@ -490,9 +490,13 @@ services: args: SERVICE_PORT: 8218 SERVICE_NAME: dnnc_intents + CONFIG: classifier.json context: . dockerfile: ./annotators/dnnc_intents/Dockerfile command: gunicorn --workers=1 server:app -b 0.0.0.0:8218 --timeout 600 + environment: + - CUDA_VISIBLE_DEVICES=0 + - FLASK_APP=server deploy: resources: limits: diff --git a/assistant_dists/dream/gpu1.yml b/assistant_dists/dream/gpu1.yml index a7289672be..faf82bd50e 100644 --- a/assistant_dists/dream/gpu1.yml +++ b/assistant_dists/dream/gpu1.yml @@ -79,4 +79,6 @@ services: restart: unless-stopped volumes: - "~/.deeppavlov:/root/.deeppavlov" + environment: + - CUDA_VISIBLE_DEVICES=6 version: '3.7' From ae79269c31af4b6b71fd5b4f90f6b15bd581b83c Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Fri, 27 Oct 2023 17:33:30 +0300 Subject: [PATCH 83/94] Update server.py --- annotators/dnnc_intents/server.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/annotators/dnnc_intents/server.py b/annotators/dnnc_intents/server.py index d11d43e2cb..020fbd8e50 100644 --- a/annotators/dnnc_intents/server.py +++ b/annotators/dnnc_intents/server.py @@ -13,7 +13,6 @@ sentry_sdk.init(dsn=os.getenv("SENTRY_DSN"), integrations=[FlaskIntegration()]) logger = logging.getLogger(__name__) -logger.info(os.listdir('/root/.deeppavlov/downloads/logreg_files')) try: model = build_model(os.getenv("CONFIG"), download=True) logger.info("Making test res") @@ -39,7 +38,7 @@ def respond(): for pred_probs in pred_probs_lists: ans.append({dnnc_class: prob for dnnc_class, prob in zip(labels, pred_probs)}) else: - for pred_classes in pred_prob_list: + for pred_classes in pred_prob_lists: ans.append({pred_class: 1 for pred_class in pred_classes}) # roberta config predicted list of class names only - to use it, modify this line logger.debug(f"dnnc result: {ans}") From d1cefcc3c70fef60edd7afe81a22cc98421004b9 Mon Sep 17 00:00:00 2001 From: dimakarp1996 Date: Fri, 27 Oct 2023 18:40:13 +0300 Subject: [PATCH 84/94] codestyle --- annotators/dnnc_intents/server.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/annotators/dnnc_intents/server.py b/annotators/dnnc_intents/server.py index d11d43e2cb..944abb70a9 100644 --- a/annotators/dnnc_intents/server.py +++ b/annotators/dnnc_intents/server.py @@ -13,7 +13,7 @@ sentry_sdk.init(dsn=os.getenv("SENTRY_DSN"), integrations=[FlaskIntegration()]) logger = logging.getLogger(__name__) -logger.info(os.listdir('/root/.deeppavlov/downloads/logreg_files')) +logger.info(os.listdir("/root/.deeppavlov/downloads/logreg_files")) # to del try: model = build_model(os.getenv("CONFIG"), download=True) logger.info("Making test res") @@ -39,9 +39,8 @@ def respond(): for pred_probs in pred_probs_lists: ans.append({dnnc_class: prob for dnnc_class, prob in zip(labels, pred_probs)}) else: - for pred_classes in pred_prob_list: + for pred_classes in pred_probs_lists: ans.append({pred_class: 1 for pred_class in pred_classes}) - # roberta config predicted list of class names only - to use it, modify this line logger.debug(f"dnnc result: {ans}") logger.info(f"dnnc exec time: {time.time() - t}") return jsonify(ans) From c2d6d3aca5e505c9c182142d337ddc84434671ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=B0=D1=80=D0=BF=D0=BE=D0=B2=20=D0=94=D0=BC=D0=B8?= =?UTF-8?q?=D1=82=D1=80=D0=B8=D0=B9=20=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0?= =?UTF-8?q?=D0=BD=D0=B4=D1=80=D0=BE=D0=B2=D0=B8=D1=87?= Date: Sun, 29 Oct 2023 18:16:43 +0300 Subject: [PATCH 85/94] Update server.py --- annotators/dnnc_intents/server.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/annotators/dnnc_intents/server.py b/annotators/dnnc_intents/server.py index 944abb70a9..98e215b4e8 100644 --- a/annotators/dnnc_intents/server.py +++ b/annotators/dnnc_intents/server.py @@ -13,7 +13,8 @@ sentry_sdk.init(dsn=os.getenv("SENTRY_DSN"), integrations=[FlaskIntegration()]) logger = logging.getLogger(__name__) -logger.info(os.listdir("/root/.deeppavlov/downloads/logreg_files")) # to del + +LOGREG_DIR = "/root/.deeppavlov/downloads/logreg_files" try: model = build_model(os.getenv("CONFIG"), download=True) logger.info("Making test res") @@ -26,7 +27,7 @@ app = Flask(__name__) if os.getenv("CONFIG") == "classifier.json": - labels = [k.split("\t")[0] for k in open("~/.deeppavlov/downloads/logreg_files/classes.dict", "r").readlines()] + labels = [k.split("\t")[0] for k in open(f"{LOGREG_DIR}/classes.dict", "r").readlines()] @app.route("/model", methods=["POST"]) From 0ad100bf39d66b04dda9c6d0da08efb928ff8592 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=B0=D1=80=D0=BF=D0=BE=D0=B2=20=D0=94=D0=BC=D0=B8?= =?UTF-8?q?=D1=82=D1=80=D0=B8=D0=B9=20=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0?= =?UTF-8?q?=D0=BD=D0=B4=D1=80=D0=BE=D0=B2=D0=B8=D1=87?= Date: Mon, 30 Oct 2023 12:38:02 +0300 Subject: [PATCH 86/94] analogous to dnnc_intents branch --- common/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/utils.py b/common/utils.py index dbbf233cb1..96a7c49444 100644 --- a/common/utils.py +++ b/common/utils.py @@ -851,8 +851,8 @@ def get_intents(annotated_utterance, probs=False, default_probs=None, default_la cobot_da_intent_labels = _process_text(cobot_da_intent_labels) if not cobot_da_intent_probs: cobot_da_intent_probs = _labels_to_probs(cobot_da_intent_labels, combined_classes["cobot_dialogact_intents"]) - dnnc_intent_probs = annotated_utterance["annotations"].get("dnnc_intents", []) - dnnc_intents = [intent for intent in dnnc_intent_probs if dnnc_intent_probs[intent] == 1] + dnnc_intent_probs = annotated_utterance.get("annotations", {}).get("dnnc_intents", {"oos": 1}) + dnnc_intent_labels = [intent for intent in dnnc_intent_probs if dnnc_intent_probs.get(intent, 0) == 1] if which == "all": answer_probs = {**detected_intent_probs, **cobot_da_intent_probs, **midas_intent_probs, **dnnc_intent_probs} answer_labels = detected_intents + cobot_da_intent_labels + midas_intent_labels + dnnc_intent_labels From 6d18eab204cfb8efa11a45fb7cc0ff2ea8d0e55b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=B0=D1=80=D0=BF=D0=BE=D0=B2=20=D0=94=D0=BC=D0=B8?= =?UTF-8?q?=D1=82=D1=80=D0=B8=D0=B9=20=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0?= =?UTF-8?q?=D0=BD=D0=B4=D1=80=D0=BE=D0=B2=D0=B8=D1=87?= Date: Thu, 9 Nov 2023 13:43:41 +0300 Subject: [PATCH 87/94] Delete annotators/dnnc_intents/logreg_files.tar.gz.md5 --- annotators/dnnc_intents/logreg_files.tar.gz.md5 | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 annotators/dnnc_intents/logreg_files.tar.gz.md5 diff --git a/annotators/dnnc_intents/logreg_files.tar.gz.md5 b/annotators/dnnc_intents/logreg_files.tar.gz.md5 deleted file mode 100644 index 395cee7dea..0000000000 --- a/annotators/dnnc_intents/logreg_files.tar.gz.md5 +++ /dev/null @@ -1,3 +0,0 @@ -15f8d2bcd0a428a404c8c5fd076877fc *classes.dict -fc0b9d545468a45f9082aa9953fea502 *classifier.json -0d61cd1064ce06dac8d4ee7dc67b13d7 *support_dataset.json From c3e8d834637205b32eb091d068f7a7bf28eb1590 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=B0=D1=80=D0=BF=D0=BE=D0=B2=20=D0=94=D0=BC=D0=B8?= =?UTF-8?q?=D1=82=D1=80=D0=B8=D0=B9=20=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0?= =?UTF-8?q?=D0=BD=D0=B4=D1=80=D0=BE=D0=B2=D0=B8=D1=87?= Date: Thu, 9 Nov 2023 13:43:53 +0300 Subject: [PATCH 88/94] Delete annotators/dnnc_intents/logreg_files.tar.gz --- annotators/dnnc_intents/logreg_files.tar.gz | Bin 364530 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 annotators/dnnc_intents/logreg_files.tar.gz diff --git a/annotators/dnnc_intents/logreg_files.tar.gz b/annotators/dnnc_intents/logreg_files.tar.gz deleted file mode 100644 index e431bd82e08c284b9a89f7e15fee5f92bb30dea0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 364530 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 z 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 a{o@S(@gM*3AOG?HCI1ggl2y0>+y(%iTOj-Z From 70caae17bc1d9d035418217a1d7f0ca8e800520b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=B0=D1=80=D0=BF=D0=BE=D0=B2=20=D0=94=D0=BC=D0=B8?= =?UTF-8?q?=D1=82=D1=80=D0=B8=D0=B9=20=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0?= =?UTF-8?q?=D0=BD=D0=B4=D1=80=D0=BE=D0=B2=D0=B8=D1=87?= Date: Thu, 9 Nov 2023 13:51:30 +0300 Subject: [PATCH 89/94] Update 2JUPwwo1SZzxuj4RXjI350.yml --- components/2JUPwwo1SZzxuj4RXjI350.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/components/2JUPwwo1SZzxuj4RXjI350.yml b/components/2JUPwwo1SZzxuj4RXjI350.yml index a264376908..def2d2894f 100644 --- a/components/2JUPwwo1SZzxuj4RXjI350.yml +++ b/components/2JUPwwo1SZzxuj4RXjI350.yml @@ -14,7 +14,6 @@ connector: url: http://dnnc-intents:8218/model dialog_formatter: name: state_formatters.dp_formatters:preproc_last_human_utt_dialog - skill_name: dnnc_intents response_formatter: state_formatters.dp_formatters:simple_formatter_service previous_services: null required_previous_services: null From 7a49fe2128f14cd12d6b2a5325ba52cb67bff5ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=B0=D1=80=D0=BF=D0=BE=D0=B2=20=D0=94=D0=BC=D0=B8?= =?UTF-8?q?=D1=82=D1=80=D0=B8=D0=B9=20=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0?= =?UTF-8?q?=D0=BD=D0=B4=D1=80=D0=BE=D0=B2=D0=B8=D1=87?= Date: Thu, 9 Nov 2023 13:56:39 +0300 Subject: [PATCH 90/94] Update Dockerfile --- annotators/dnnc_intents/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/annotators/dnnc_intents/Dockerfile b/annotators/dnnc_intents/Dockerfile index 21c0db1d80..1d20039880 100644 --- a/annotators/dnnc_intents/Dockerfile +++ b/annotators/dnnc_intents/Dockerfile @@ -16,6 +16,8 @@ ARG SERVICE_PORT ENV SERVICE_PORT=$SERVICE_PORT ARG CONFIG ENV CONFIG=$CONFIG +ARG CLASSES +ENV CLASSES=$CLASSES COPY annotators/dnnc_intents/ ./ COPY common/ common/ From f9626b5c3009ec8b1f14867e2a327e6029ab2634 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=B0=D1=80=D0=BF=D0=BE=D0=B2=20=D0=94=D0=BC=D0=B8?= =?UTF-8?q?=D1=82=D1=80=D0=B8=D0=B9=20=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0?= =?UTF-8?q?=D0=BD=D0=B4=D1=80=D0=BE=D0=B2=D0=B8=D1=87?= Date: Thu, 9 Nov 2023 14:17:12 +0300 Subject: [PATCH 91/94] Update docker-compose.override.yml --- assistant_dists/dream/docker-compose.override.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/assistant_dists/dream/docker-compose.override.yml b/assistant_dists/dream/docker-compose.override.yml index 64ace479c3..c36d4be5ad 100644 --- a/assistant_dists/dream/docker-compose.override.yml +++ b/assistant_dists/dream/docker-compose.override.yml @@ -491,6 +491,7 @@ services: SERVICE_PORT: 8218 SERVICE_NAME: dnnc_intents CONFIG: classifier.json + CLASSES: tell_joke,are_you_a_bot,meaning_of_life,oos context: . dockerfile: ./annotators/dnnc_intents/Dockerfile command: gunicorn --workers=1 server:app -b 0.0.0.0:8218 --timeout 600 From 09aecac78aa2e6e6b48cbb36adbb9db92f1cc220 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=B0=D1=80=D0=BF=D0=BE=D0=B2=20=D0=94=D0=BC=D0=B8?= =?UTF-8?q?=D1=82=D1=80=D0=B8=D0=B9=20=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0?= =?UTF-8?q?=D0=BD=D0=B4=D1=80=D0=BE=D0=B2=D0=B8=D1=87?= Date: Thu, 9 Nov 2023 14:18:02 +0300 Subject: [PATCH 92/94] Update utils_roberta.py --- annotators/dnnc_intents/utils_roberta.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/annotators/dnnc_intents/utils_roberta.py b/annotators/dnnc_intents/utils_roberta.py index 7ee5f60a13..5f1aa972fb 100644 --- a/annotators/dnnc_intents/utils_roberta.py +++ b/annotators/dnnc_intents/utils_roberta.py @@ -20,7 +20,7 @@ logger = logging.getLogger(__name__) -supported_intents = ["tell_joke", "are_you_a_bot", "meaning_of_life", "oos"] +supported_intents = os.getenv('CLASSES').split(',') @register("dnnc_preparer") From 383770c3cad72b5245875a56db5c023a75a8e25c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=B0=D1=80=D0=BF=D0=BE=D0=B2=20=D0=94=D0=BC=D0=B8?= =?UTF-8?q?=D1=82=D1=80=D0=B8=D0=B9=20=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0?= =?UTF-8?q?=D0=BD=D0=B4=D1=80=D0=BE=D0=B2=D0=B8=D1=87?= Date: Thu, 9 Nov 2023 14:45:03 +0300 Subject: [PATCH 93/94] codestyle --- annotators/dnnc_intents/utils_roberta.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/annotators/dnnc_intents/utils_roberta.py b/annotators/dnnc_intents/utils_roberta.py index 5f1aa972fb..01ba7adf6f 100644 --- a/annotators/dnnc_intents/utils_roberta.py +++ b/annotators/dnnc_intents/utils_roberta.py @@ -20,7 +20,7 @@ logger = logging.getLogger(__name__) -supported_intents = os.getenv('CLASSES').split(',') +supported_intents = os.getenv("CLASSES").split(",") @register("dnnc_preparer") From fd655637f727b23dbc74519287993415b886c64c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=B0=D1=80=D0=BF=D0=BE=D0=B2=20=D0=94=D0=BC=D0=B8?= =?UTF-8?q?=D1=82=D1=80=D0=B8=D0=B9=20=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0?= =?UTF-8?q?=D0=BD=D0=B4=D1=80=D0=BE=D0=B2=D0=B8=D1=87?= Date: Thu, 9 Nov 2023 18:06:29 +0300 Subject: [PATCH 94/94] Update Readme.md --- annotators/dnnc_intents/Readme.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/annotators/dnnc_intents/Readme.md b/annotators/dnnc_intents/Readme.md index 1d5990084e..4d5db50ddf 100644 --- a/annotators/dnnc_intents/Readme.md +++ b/annotators/dnnc_intents/Readme.md @@ -1,2 +1,10 @@ -DNNC intent classifier. -Source: https://github.com/deeppavlov/DeepPavlov/blob/master/deeppavlov/configs/classifiers/few_shot_roberta.json +# DNNC intent classifier +## Description +Classifier that classifies DNNC intent in the few-shot mode. Default version is the logistic regression. Howeve, with config classifier_roberta.json entailment-trained roberta is also supported +## Input/Output +**Input** +Batch of last utterances +**Output** +For each utterance - dictionary {probable class: probability} +## Dependencies +As stated in requirements.txt. And if you use entailment-trained roberta, file utils_roberta.py also is useful