forked from InsaneLife/ChineseNLPCorpus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
train.json
21219 lines (21219 loc) · 395 KB
/
train.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"text": "请帮我打开uc",
"domain": "app",
"intent": "LAUNCH",
"slots": {
"name": "uc"
}
},
{
"text": "打开汽车之家",
"domain": "app",
"intent": "LAUNCH",
"slots": {
"name": "汽车之家"
}
},
{
"text": "帮我打开人人",
"domain": "app",
"intent": "LAUNCH",
"slots": {
"name": "人人"
}
},
{
"text": "开微信",
"domain": "app",
"intent": "LAUNCH",
"slots": {
"name": "微信"
}
},
{
"text": "黎宇我要玩中国象棋",
"domain": "app",
"intent": "LAUNCH",
"slots": {
"name": "中国象棋"
}
},
{
"text": "给我打开一下qq",
"domain": "app",
"intent": "LAUNCH",
"slots": {
"name": "qq"
}
},
{
"text": "帮忙打开一下酷狗音乐播放音乐行不",
"domain": "app",
"intent": "LAUNCH",
"slots": {
"name": "酷狗音乐"
}
},
{
"text": "百度浏览器打开",
"domain": "app",
"intent": "LAUNCH",
"slots": {
"name": "百度浏览器"
}
},
{
"text": "搜索手机办公软件",
"domain": "app",
"intent": "QUERY",
"slots": {
"name": "办公软件"
}
},
{
"text": "凯立德",
"domain": "app",
"intent": "LAUNCH",
"slots": {
"name": "凯立德"
}
},
{
"text": "打开相机这",
"domain": "app",
"intent": "LAUNCH",
"slots": {
"name": "相机"
}
},
{
"text": "打开qq同步助手",
"domain": "app",
"intent": "LAUNCH",
"slots": {
"name": "qq同步助手"
}
},
{
"text": "打开淘宝购物",
"domain": "app",
"intent": "LAUNCH",
"slots": {
"name": "淘宝购物"
}
},
{
"text": "帮我找到微信",
"domain": "app",
"intent": "QUERY",
"slots": {
"name": "微信"
}
},
{
"text": "打开uc二哦",
"domain": "app",
"intent": "LAUNCH",
"slots": {
"name": "uc"
}
},
{
"text": "开启qq",
"domain": "app",
"intent": "LAUNCH",
"slots": {
"name": "qq"
}
},
{
"text": "查询许昌到中山的汽车。",
"domain": "bus",
"intent": "QUERY",
"slots": {
"Dest": "中山",
"Src": "许昌"
}
},
{
"text": "无锡到阜阳怎么坐汽车?",
"domain": "bus",
"intent": "QUERY",
"slots": {
"Dest": "阜阳",
"Src": "无锡"
}
},
{
"text": "去深圳怎么坐车?",
"domain": "map",
"intent": "ROUTE",
"slots": {
"endLoc_city": "深圳"
}
},
{
"text": "南京到,黄山的汽车。",
"domain": "bus",
"intent": "QUERY",
"slots": {
"Dest": "黄山",
"Src": "南京"
}
},
{
"text": "从无锡市到西安市的汽车。",
"domain": "bus",
"intent": "QUERY",
"slots": {
"Dest": "西安市",
"Src": "无锡市"
}
},
{
"text": "在合肥怎么坐去南京的汽车",
"domain": "bus",
"intent": "QUERY",
"slots": {
"Dest": "南京",
"Src": "合肥"
}
},
{
"text": "北京到成都的汽车时刻表。",
"domain": "bus",
"intent": "QUERY",
"slots": {
"Dest": "成都",
"Src": "北京"
}
},
{
"text": "从台州到金华的汽车。",
"domain": "bus",
"intent": "QUERY",
"slots": {
"Dest": "金华",
"Src": "台州"
}
},
{
"text": "可以帮买火车票吗",
"domain": "train",
"intent": "QUERY",
"slots": {}
},
{
"text": "我要查找雷迪波尔电影院最新上映的大片",
"domain": "cinemas",
"intent": "QUERY",
"slots": {
"theatre": "雷迪波尔电影院"
}
},
{
"text": "给我放一部最新的电影。",
"domain": "cinemas",
"intent": "QUERY",
"slots": {}
},
{
"text": "电影搜索啊!",
"domain": "cinemas",
"intent": "QUERY",
"slots": {}
},
{
"text": "搜索合肥左岸电影城。",
"domain": "cinemas",
"intent": "QUERY",
"slots": {
"theatre": "合肥左岸电影城"
}
},
{
"text": "最近热门的电影。",
"domain": "cinemas",
"intent": "QUERY",
"slots": {}
},
{
"text": "现在电影院有什么好电影?",
"domain": "cinemas",
"intent": "QUERY",
"slots": {
"datetime_time": "现在"
}
},
{
"text": "哦哦,最新的电影。",
"domain": "cinemas",
"intent": "QUERY",
"slots": {}
},
{
"text": "离我最近的电影院。",
"domain": "cinemas",
"intent": "QUERY",
"slots": {}
},
{
"text": "老马的电话是多少",
"domain": "telephone",
"intent": "QUERY",
"slots": {
"name": "老马"
}
},
{
"text": "把鱼苗的电话号码发给徐景明",
"domain": "message",
"intent": "SENDCONTACTS",
"slots": {
"name": "鱼苗",
"receiver": "徐景明"
}
},
{
"text": "张培的电话号码是多少",
"domain": "telephone",
"intent": "QUERY",
"slots": {
"name": "张培"
}
},
{
"text": "查看之丽丽的号码",
"domain": "contacts",
"intent": "QUERY",
"slots": {
"name": "之丽丽"
}
},
{
"text": "把李会计的电话发给小江",
"domain": "message",
"intent": "SENDCONTACTS",
"slots": {
"name": "李会计",
"receiver": "小江"
}
},
{
"text": "把刘荣涛的电话发给王华成",
"domain": "message",
"intent": "SENDCONTACTS",
"slots": {
"name": "刘荣涛",
"receiver": "王华成"
}
},
{
"text": "哦钢结构的电话是多少",
"domain": "contacts",
"intent": "QUERY",
"slots": {
"name": "哦钢结构"
}
},
{
"text": "把孟蕾的电话发给陈姬",
"domain": "message",
"intent": "SENDCONTACTS",
"slots": {
"name": "孟蕾",
"receiver": "陈姬"
}
},
{
"text": "把高建清的号码发给潘青华",
"domain": "message",
"intent": "SENDCONTACTS",
"slots": {
"name": "高建清",
"receiver": "潘青华"
}
},
{
"text": "银耳莲子粥怎么做",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "银耳莲子粥"
}
},
{
"text": "蛋黄焗薯条怎么做",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "蛋黄焗薯条"
}
},
{
"text": "扬州炒饭",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "扬州炒饭"
}
},
{
"text": "糖醋鲤鱼怎么做啊?你只负责吃,c则c。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "糖醋鲤鱼"
}
},
{
"text": "素鸡",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "素鸡"
}
},
{
"text": "萝卜炖排骨汤怎么做?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "萝卜炖排骨汤"
}
},
{
"text": "我说吃飞蟹,怎么做?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"ingredient": "飞蟹"
}
},
{
"text": "黑芝麻怎么炒?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"ingredient": "黑芝麻"
}
},
{
"text": "板栗怎么煮?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"ingredient": "板栗"
}
},
{
"text": "鱼香肉丝,怎么炒?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "鱼香肉丝"
}
},
{
"text": "搜索烤饼的做法。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"ingredient": "烤饼"
}
},
{
"text": "小白菜拌豆腐怎么做呀?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "白菜拌豆腐"
}
},
{
"text": "猪肉丸子汤怎么做啊?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "猪肉丸子汤"
}
},
{
"text": "做苹果麦片粥需要哪写材料?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "苹果麦片粥"
}
},
{
"text": "帮我搜索一下红烧排骨。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "红烧排骨"
}
},
{
"text": "怎么样煮方便面。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "煮方便面"
}
},
{
"text": "黑米红豆粥的做法。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "黑米红豆粥"
}
},
{
"text": "豆沙包。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "豆沙包"
}
},
{
"text": "赵柏田鸡怎么做啊?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"ingredient": "田鸡"
}
},
{
"text": "做黄焖小土豆怎么做啊?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "焖小土豆"
}
},
{
"text": "酱油鸡。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "酱油鸡"
}
},
{
"text": "好吧,我想知道稻香排骨是怎么做的?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "稻香排骨"
}
},
{
"text": "红烧牛肉面我想来一碗。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "红烧牛肉面"
}
},
{
"text": "帮我找出红烧肉的做法。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "红烧肉"
}
},
{
"text": "煲鸡汤。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "煲鸡汤"
}
},
{
"text": "芒果西米露怎么做啊",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "芒果西米露"
}
},
{
"text": "胡萝卜怎么炒好吃?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"ingredient": "胡萝卜"
}
},
{
"text": "红烧肉的做法啊!",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "红烧肉"
}
},
{
"text": "就拉下的饺子怎么做?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "饺子"
}
},
{
"text": "酸辣藕丁的做法。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "酸辣藕丁"
}
},
{
"text": "用电压力锅怎么蒸米粉肉。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "蒸米粉肉",
"utensil": "压力锅"
}
},
{
"text": "请问红烧肉的做法?你,你。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "红烧肉"
}
},
{
"text": "孜然排骨怎么做?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "孜然排骨"
}
},
{
"text": "干锅香辣虾",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "干锅香辣虾"
}
},
{
"text": "肥肠的做法",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"ingredient": "肥肠"
}
},
{
"text": "海虾的做法。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"ingredient": "海虾"
}
},
{
"text": "用菜籽油做面包",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "面包",
"ingredient": "菜籽油"
}
},
{
"text": "打豆浆剩下的豆渣怎样做,好吃?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"ingredient": "豆渣"
}
},
{
"text": "脆瓜。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "脆瓜"
}
},
{
"text": "灌汤小笼包怎样做。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "灌汤小笼包"
}
},
{
"text": "做红烧肉怎么做?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "红烧肉"
}
},
{
"text": "酸菜鱼怎样做",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "酸菜鱼"
}
},
{
"text": "打了怎么做红烧肉的做法?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "红烧肉"
}
},
{
"text": "蒜茄子怎么做?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "蒜茄子"
}
},
{
"text": "木瓜汤怎么做",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "木瓜汤"
}
},
{
"text": "炝拌土豆丝。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "炝拌土豆丝"
}
},
{
"text": "宫爆鸡丁的菜谱。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "宫爆鸡丁"
}
},
{
"text": "江苏路红薯粉怎么做好吃?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"ingredient": "红薯粉"
}
},
{
"text": "烧鸭怎么做",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "烧鸭"
}
},
{
"text": "姐你红烧肉怎么做呀",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "红烧肉"
}
},
{
"text": "臭豆腐怎么做啊?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "臭豆腐"
}
},
{
"text": "做红烧肉。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "红烧肉"
}
},
{
"text": "不懂饭的做法。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "饭"
}
},
{
"text": "鸡蛋的做法",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"ingredient": "鸡蛋"
}
},
{
"text": "红烧带鱼怎么做?你?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "红烧带鱼"
}
},
{
"text": "鱼香肉丝的做法啊!",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "鱼香肉丝"
}
},
{
"text": "周黑鸭怎么做?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"ingredient": "鸭"
}
},
{
"text": "那好,那你告诉我西红柿炒鸡蛋,怎么去做?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "西红柿炒鸡蛋"
}
},
{
"text": "干贝怎么做?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"ingredient": "干贝"
}
},
{
"text": "怎么做?酸菜鱼?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "酸菜鱼"
}
},
{
"text": "鸡爪怎么炒?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"ingredient": "鸡爪"
}
},
{
"text": "干锅鱼怎么做",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "干锅鱼"
}
},
{
"text": "糖醋排骨怎么做?好了额,你。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "糖醋排骨"
}
},
{
"text": "清蒸鱼怎么做?吴?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "清蒸鱼"
}
},
{
"text": "土豆粉怎么做好吃?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"ingredient": "土豆粉"
}
},
{
"text": "五梆瓜鸡蛋汤怎么做?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "鸡蛋汤"
}
},
{
"text": "刘林面怎么做啊?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"ingredient": "面"
}
},
{
"text": "酸菜粉条肉的做法。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "酸菜粉条",
"ingredient": "肉"
}
},
{
"text": "童子鸡的做法。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"ingredient": "童子鸡"
}
},
{
"text": "讯飞语点请你搜索一下番茄炒蛋怎么做?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "番茄炒蛋"
}
},
{
"text": "红烧肉怎么煮啊",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "红烧肉"
}
},
{
"text": "面包怎么做",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "面包"
}
},
{
"text": "请问鱼块的做法。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"ingredient": "鱼块"
}
},
{
"text": "猪大肠怎么炒?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"ingredient": "猪大肠"
}
},
{
"text": "小猪哨糖醋排骨的做法。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "糖醋排骨"
}
},
{
"text": "嗯咯鸡爪怎么做的。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"ingredient": "鸡爪"
}
},
{
"text": "鲤鱼怎么做?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"ingredient": "鲤鱼"
}
},
{
"text": "酸菜鱼,怎么烧?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "酸菜鱼"
}
},
{
"text": "炸里鸡的做法。",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "炸里鸡"
}
},
{
"text": "不,做个红烧肉怎么做?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "红烧肉"
}
},
{
"text": "福寿鱼怎么煮比较好吃?",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"ingredient": "福寿鱼"
}
},
{
"text": "拔丝芋头怎么做",
"domain": "cookbook",
"intent": "QUERY",
"slots": {
"dishName": "拔丝芋头"
}
},
{
"text": "给我看邮件",
"domain": "email",
"intent": "LAUNCH",