File size: 482,084 Bytes
6af6547 | 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 | {"utterance": "이번 주 오전 다섯 시 에 깨워줘", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "이번 주", "time": "오전 다섯 시"}, "split": "test"}
{"utterance": "조용히 해", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "분홍색", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "분홍색"}, "split": "test"}
{"utterance": "그리고 어둠이 내려앉았다", "expected_intent": "iot:iot_hue_lighton", "expected_slots": {}, "split": "test"}
{"utterance": "침실 조명 꺼", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "침실"}, "split": "test"}
{"utterance": "여기 더러우니 청소기 돌려줘", "expected_intent": "iot:iot_cleaning", "expected_slots": {}, "split": "test"}
{"utterance": "거실 청소기 돌려", "expected_intent": "iot:iot_cleaning", "expected_slots": {"house_place": "거실"}, "split": "test"}
{"utterance": "내 화면 밝기 현황 알려줘", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "올리야 무슨 일 있어", "expected_intent": "general:general_greet", "expected_slots": {}, "split": "test"}
{"utterance": "호주 몇 시야", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "호주"}, "split": "test"}
{"utterance": "g. m. t. 플러스 파이브 시간대의 시간 말해줘", "expected_intent": "datetime:datetime_convert", "expected_slots": {"time_zone": "g. m. t. 플러스 파이브"}, "split": "test"}
{"utterance": "오전 일곱시에 알람 취소해줘", "expected_intent": "alarm:alarm_remove", "expected_slots": {"time": "일곱시에"}, "split": "test"}
{"utterance": "내가 어떤 알람들 맞췄어", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "내 알람들 알려줘", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "나는 코요태 노래 좋아", "expected_intent": "music:music_likeness", "expected_slots": {"artist_name": "코요태"}, "split": "test"}
{"utterance": "전등 밝기 더 높게 설정해줘", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "오늘의 날짜 말해줘", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "오늘의"}, "split": "test"}
{"utterance": "오늘 은 며칠이야", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "오늘밤 저녁 짜장면으로 시켜줄래", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"timeofday": "오늘밤", "meal_type": "저녁", "food_type": "짜장면으로"}, "split": "test"}
{"utterance": "한 주간 예보", "expected_intent": "weather:weather_query", "expected_slots": {"time": "주간"}, "split": "test"}
{"utterance": "이번 주의 날씨는 어때", "expected_intent": "weather:weather_query", "expected_slots": {"date": "이번 주의"}, "split": "test"}
{"utterance": "이번 주 날씨 알려줘", "expected_intent": "weather:weather_query", "expected_slots": {"date": "이번 주"}, "split": "test"}
{"utterance": "내가 킥킥거리는 소리 보내", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "올리 나에게 농담해줘", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "며칠이야", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "테이크아웃 주문해", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"order_type": "테이크아웃"}, "split": "test"}
{"utterance": "내가 이 노래 좋아해", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "그것을 다시 재생해주세요", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "조명 낮춰", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "포장 할 수 있어", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "포장"}, "split": "test"}
{"utterance": "배달 가능해", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "배달"}, "split": "test"}
{"utterance": "집으로 배달 해주니", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "배달"}, "split": "test"}
{"utterance": "올리 집에도 배달돼", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "배달돼"}, "split": "test"}
{"utterance": "목요일 오전 일곱시 로 기상 설정해줘", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "목요일", "time": "오전 일곱시"}, "split": "test"}
{"utterance": "비즈니스 뉴스 말해줘", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "비즈니스"}, "split": "test"}
{"utterance": "국제 소식 알려주세요", "expected_intent": "news:news_query", "expected_slots": {"place_name": "국제"}, "split": "test"}
{"utterance": "내 락 플레이리스트 재생", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "락"}, "split": "test"}
{"utterance": "나의 플레이 리스트 틀어서 세번째 대기하고 있는 음악 틀어줘", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "볼륨 꺼", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "몇 시야", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "방금 설정한 알람 삭제해 줘", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 날씨 어때", "expected_intent": "weather:weather_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "내가 내일 우산 가져가야 하나", "expected_intent": "weather:weather_query", "expected_slots": {"date": "내일", "weather_descriptor": "우산"}, "split": "test"}
{"utterance": "내 록 목록 의 음악 재생", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "록 목록"}, "split": "test"}
{"utterance": "나 지금 재즈 듣고 싶은데 너는 어때", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "재즈"}, "split": "test"}
{"utterance": "올리 내가 가장 좋아하는 재즈 연주자 의 좋은 트랙 들려줘", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "재즈"}, "split": "test"}
{"utterance": "안 들려", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "잘 안 들려", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "파란색 불 켜줘", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "파란색"}, "split": "test"}
{"utterance": "서울 지역 오늘의 날씨 예보는 어때", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "서울", "date": "오늘의"}, "split": "test"}
{"utterance": "미국 달러에서 원화로의 환율 뭐야", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "미국 달러에서 원화로의 환율"}, "split": "test"}
{"utterance": "주방 불 켜 줘", "expected_intent": "iot:iot_hue_lighton", "expected_slots": {"house_place": "주방"}, "split": "test"}
{"utterance": "청소기 작동 시켜줘", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "청소기"}, "split": "test"}
{"utterance": "청소기 작동 시켜줘", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "청소기"}, "split": "test"}
{"utterance": "임영웅 플레이리스트 재생", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "임영웅 플레이리스트"}, "split": "test"}
{"utterance": "이승윤 노래들 셔플해줘", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "이승윤", "player_setting": "셔플해줘"}, "split": "test"}
{"utterance": "날씨 어때", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "올해 마지막 날은 무슨 요일이야", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "올해"}, "split": "test"}
{"utterance": "한 시간 더 조용히 해줘", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"time": "한 시간 더"}, "split": "test"}
{"utterance": "오늘 하루 말하지 마", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "이틀 뒤 대전 날씨 어떨지 알려줘", "expected_intent": "weather:weather_query", "expected_slots": {"time": "이틀 뒤", "place_name": "대전"}, "split": "test"}
{"utterance": "내 몽실이 비활성화", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "몽실이"}, "split": "test"}
{"utterance": "내 플러그 활성화", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "플러그"}, "split": "test"}
{"utterance": "천일동안", "expected_intent": "play:play_music", "expected_slots": {"song_name": "천일동안"}, "split": "test"}
{"utterance": "서울 날씨 상황이 어떻게 돼", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "서울"}, "split": "test"}
{"utterance": "강릉 날씨 알고 싶은데", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "강릉"}, "split": "test"}
{"utterance": "내일 비가 올까", "expected_intent": "weather:weather_query", "expected_slots": {"date": "내일", "weather_descriptor": "비가 올까"}, "split": "test"}
{"utterance": "내일 비가 올까", "expected_intent": "weather:weather_query", "expected_slots": {"date": "내일", "weather_descriptor": "비가 올까"}, "split": "test"}
{"utterance": "사월 일일 은 무슨 요일이야", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "사월 일일"}, "split": "test"}
{"utterance": "지금 몇 시야", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "장기하의 노래 중 두 번째 노래 재생", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "장기하의"}, "split": "test"}
{"utterance": "최신 뉴스 알려줘", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "불 꺼 줘", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "음악 저장하고 싶은데 그렇게 해줄래", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "중앙일보 의 획기적인 뉴스는 뭐야", "expected_intent": "news:news_query", "expected_slots": {"media_type": "중앙일보"}, "split": "test"}
{"utterance": "스마트 플러그 켜", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "스마트 플러그"}, "split": "test"}
{"utterance": "나의 재생 목록 에서 무작위의 노래 재생", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "내 플레이리스트 에서 레트로 노래 재생해줘", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "레트로"}, "split": "test"}
{"utterance": "이승환 노래 무엇이든 재생해줘", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "이승환"}, "split": "test"}
{"utterance": "첫 번째 알람 제거해", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "재생 시작", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "다음 한 시간 동안 록 음악 틀어줄 수 있어", "expected_intent": "play:play_music", "expected_slots": {"time": "다음 한 시간", "music_genre": "록"}, "split": "test"}
{"utterance": "농담 하나 말해줄래", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "웃긴 농담해줘", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "웃긴"}, "split": "test"}
{"utterance": "어떤 속보가 있어", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "콘센트 일번 켜 줘", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "콘센트 일번"}, "split": "test"}
{"utterance": "화장실 불 꺼 줘", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "화장실"}, "split": "test"}
{"utterance": "화장실 불 꺼 줘", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "화장실"}, "split": "test"}
{"utterance": "지금 날씨 어때", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "싸이 노래 틀어", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "싸이"}, "split": "test"}
{"utterance": "최신 뉴스 헤드라인 뭐야", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "무슨 뉴스 있어", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "볼륨 키워", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "커피머신 작동", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "커피머신"}, "split": "test"}
{"utterance": "가장 최신 애플 주가 말해줘", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "애플 주가"}, "split": "test"}
{"utterance": "침실 조명 초록색 으로 바꿔줘", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "침실", "color_type": "초록색"}, "split": "test"}
{"utterance": "조명 어둡게 해줘", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "고백 재생해줘", "expected_intent": "play:play_music", "expected_slots": {"song_name": "고백"}, "split": "test"}
{"utterance": "넌 보통 어떤 실수를 하니", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "이 노래 가수가 누구야", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "뉴욕시 는 몇 시야", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "뉴욕시"}, "split": "test"}
{"utterance": "밖에 날씨 추울까", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "추울까"}, "split": "test"}
{"utterance": "재미 있는 농담 뭐 있어", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "재미 있는"}, "split": "test"}
{"utterance": "이승철 노래들 열어", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "이승철"}, "split": "test"}
{"utterance": "어떤 알람들 이 설정되었어", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "점수를 받기", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "바로 주문 준비해", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "너 농담 아는 거 있어", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "오전 아홉 시 알람 맞춰줘", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "오전 아홉 시"}, "split": "test"}
{"utterance": "아이유 가 부른 노래 틀어", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "아이유"}, "split": "test"}
{"utterance": "싸이 아무거나 틀어", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "싸이"}, "split": "test"}
{"utterance": "오전 여덟 시 알람 꺼줘", "expected_intent": "alarm:alarm_remove", "expected_slots": {"time": "오전 여덟 시"}, "split": "test"}
{"utterance": "조명 색 바꿔", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "플레이리스트 모두 재생", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "최신 뉴스 보여 줘", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 새로운 소식은 뭐가 있니", "expected_intent": "news:news_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "현재 날씨는 어때", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "음소거 해제 이후", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "다음 토요일 오전 여덟 시 에 기상 알람 울려주시겠어요", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "토요일", "time": "오전 여덟 시", "alarm_type": "기상"}, "split": "test"}
{"utterance": "플레이리스트 시작", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "이효리 노래 라디오에서 재생해주세요", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "이효리"}, "split": "test"}
{"utterance": "강원도 도로 확장 공사 관련 새소식 알림 설정해", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "강원도 도로 확장 공사"}, "split": "test"}
{"utterance": "청소기 돌려줘", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "청소기"}, "split": "test"}
{"utterance": "방 조명 꺼 줘", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "방"}, "split": "test"}
{"utterance": "일본 의 현재 시간", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "일본"}, "split": "test"}
{"utterance": "불 낮춰줘", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "나는 햄버거 두개랑 콜라 한개 빨리 주문해줘", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "콜라"}, "split": "test"}
{"utterance": "비트코인 가격에 대해 알려줘", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "비트코인 가격에"}, "split": "test"}
{"utterance": "서울 지금 몇 시니", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "서울"}, "split": "test"}
{"utterance": "불 좀 어둡게 해줄래", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "제이 티 비 씨 마지막 소식 듣고 싶어", "expected_intent": "news:news_query", "expected_slots": {"media_type": "제이 티 비 씨"}, "split": "test"}
{"utterance": "이번 한 주의 날씨 요약해줘", "expected_intent": "weather:weather_query", "expected_slots": {"time": "한 주의"}, "split": "test"}
{"utterance": "조명 꺼", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 밖은 얼마나 춥나", "expected_intent": "weather:weather_query", "expected_slots": {"date": "오늘", "weather_descriptor": "춥나"}, "split": "test"}
{"utterance": "내가 물어볼 때까지 말하지 마", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "이 노래 에 관해 알고 싶어", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "이번 주 일기 예보 알려줘", "expected_intent": "weather:weather_query", "expected_slots": {"date": "이번 주"}, "split": "test"}
{"utterance": "내 최신 공급업체의 최신 소식들 알려 줄 수 있니", "expected_intent": "news:news_query", "expected_slots": {"media_type": "최신 공급업체의"}, "split": "test"}
{"utterance": "내가 잘 안 보는 언론사의 최신 뉴스 찾아줄래", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "최신 정치 뉴스에 관해 말해줄래", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "정치"}, "split": "test"}
{"utterance": "방탄 의 마이 유니버스 틀어줘", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "방탄", "song_name": "마이 유니버스"}, "split": "test"}
{"utterance": "그대라는 사치 재생", "expected_intent": "play:play_music", "expected_slots": {"song_name": "그대라는 사치"}, "split": "test"}
{"utterance": "제니 의 솔로 틀어줘", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "제니", "song_name": "솔로"}, "split": "test"}
{"utterance": "사랑 노래들 틀어", "expected_intent": "play:play_music", "expected_slots": {"song_name": "사랑 노래들"}, "split": "test"}
{"utterance": "온화하거나 무거운 날씨", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "온화하거나 무거운"}, "split": "test"}
{"utterance": "내 알람 설정 확인", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "시리야 스피커 음소거해줘", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "현재 바깥 기온 어때", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "기온"}, "split": "test"}
{"utterance": "싸이 재생 목록 틀어줘", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "싸이"}, "split": "test"}
{"utterance": "야 내일 예상하는 날씨가 어때", "expected_intent": "weather:weather_query", "expected_slots": {"date": "내일"}, "split": "test"}
{"utterance": "다가오는 국내 선거 관련 k. b. s. 여론 조사 예상은 뭐야", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "다가오는 국내 선거", "media_type": "k. b. s. 여론 조사"}, "split": "test"}
{"utterance": "로보락 로봇 시작", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "로보락 로봇"}, "split": "test"}
{"utterance": "내 가 설정한 알람들", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "알람 세팅", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "지금 거실 로봇 청소기 돌려", "expected_intent": "iot:iot_cleaning", "expected_slots": {"house_place": "거실"}, "split": "test"}
{"utterance": "의견 저장", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "오전 여덟 시 알람 설정", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "오전 여덟 시"}, "split": "test"}
{"utterance": "찬양 음악 좀 틀어줘", "expected_intent": "play:play_music", "expected_slots": {"music_descriptor": "찬양"}, "split": "test"}
{"utterance": "오후 여섯 시 에 집 조명 주황색 으로 해 줘", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"time": "오후 여섯 시", "house_place": "집", "color_type": "주황색"}, "split": "test"}
{"utterance": "조명 꺼 주세요", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "내 알람 지워줘", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "나는 이 노래 좋아해 저장해 줘", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "내 조깅 플레이리스트 열어서 노래 틀어줘", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "조깅 플레이리스트"}, "split": "test"}
{"utterance": "오전 일곱 시 알람 맞춰줘", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "오전 일곱 시"}, "split": "test"}
{"utterance": "내 아침 알람 켜", "expected_intent": "alarm:alarm_set", "expected_slots": {"timeofday": "아침"}, "split": "test"}
{"utterance": "일본 이랑 여기 시차가 어떻게 돼", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "일본"}, "split": "test"}
{"utterance": "지금 서울 날씨는 어때", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "서울"}, "split": "test"}
{"utterance": "불 밝기 높여줘", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "더 어두운 조명 원해", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "라화쿵부에서 포장 돼", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "라화쿵부에서", "order_type": "포장"}, "split": "test"}
{"utterance": "특정 주제에 관한 뉴스 기사", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "서울 지금 몇 시니", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "서울"}, "split": "test"}
{"utterance": "거실의 조명 꺼", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "거실의"}, "split": "test"}
{"utterance": "불 꺼 줘", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "내 록 플레이리스트 에서 넥스트 틀어줘", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "록", "artist_name": "넥스트"}, "split": "test"}
{"utterance": "지금 부산 몇 시지", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "부산"}, "split": "test"}
{"utterance": "거실 조명 어둡게 해", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {"house_place": "거실"}, "split": "test"}
{"utterance": "배달의 민족 앱 열어줘", "expected_intent": "takeaway:takeaway_order", "expected_slots": {}, "split": "test"}
{"utterance": "가장 가까운 태국 음식점 배달 전화 걸어", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "태국", "business_type": "음식점", "order_type": "배달"}, "split": "test"}
{"utterance": "나 울고 싶은데 슬픈 록 음악 틀어줘", "expected_intent": "play:play_music", "expected_slots": {"music_descriptor": "슬픈", "music_genre": "록"}, "split": "test"}
{"utterance": "스피커 볼륨 작게 해", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "로봇 진공 청소기 켜", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "로봇 진공 청소기"}, "split": "test"}
{"utterance": "최신 스포츠 뉴스 알려줘", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "스포츠"}, "split": "test"}
{"utterance": "스포츠 소식 시간별로 알림 해줘", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "스포츠", "general_frequency": "시간별로"}, "split": "test"}
{"utterance": "볼륨 세팅 어딨어", "expected_intent": "audio:audio_volume_other", "expected_slots": {}, "split": "test"}
{"utterance": "복도 조명 밝게 해", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "복도"}, "split": "test"}
{"utterance": "스크린 밝기 끝까지 올려줘", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"device_type": "스크린", "change_amount": "끝까지"}, "split": "test"}
{"utterance": "락 메탈 재상 하지마", "expected_intent": "music:music_dislikeness", "expected_slots": {"music_genre": "락 메탈"}, "split": "test"}
{"utterance": "사용친화적", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "방 밝기 높여줘", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "방"}, "split": "test"}
{"utterance": "국민일보 웹사이트 가", "expected_intent": "news:news_query", "expected_slots": {"media_type": "국민일보"}, "split": "test"}
{"utterance": "삼월 십오일 무슨 요일이야", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "삼월 십오일"}, "split": "test"}
{"utterance": "내가 원하는 건 컨츄리 음악 듣는 거야", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "컨츄리"}, "split": "test"}
{"utterance": "모든 팝 송 장르 나열해 봐", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "팝"}, "split": "test"}
{"utterance": "정치 관력 특별한 거 있니", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "정치"}, "split": "test"}
{"utterance": "제니 의 솔로 틀어줘", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "제니", "song_name": "솔로"}, "split": "test"}
{"utterance": "다음으로 아이유 내 손을 잡아 재생", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "아이유", "song_name": "내 손을 잡아"}, "split": "test"}
{"utterance": "아이유의 내 손을 잡아 다음에 재생할 수 있도록 준비해", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "아이유의", "song_name": "내 손을 잡아"}, "split": "test"}
{"utterance": "모든 노래 섞어 서 재생", "expected_intent": "play:play_music", "expected_slots": {"player_setting": "섞어"}, "split": "test"}
{"utterance": "랩 좀 들려줘", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "랩"}, "split": "test"}
{"utterance": "지금 시드니 몇 시야", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "시드니"}, "split": "test"}
{"utterance": "청소기 돌려줘", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "청소기"}, "split": "test"}
{"utterance": "국제여성의 날 관련 최신 소식", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "국제여성의 날"}, "split": "test"}
{"utterance": "농담 해봐", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "이번 주 매일 밤 마다 얼마나 더 추워 질까", "expected_intent": "weather:weather_query", "expected_slots": {"date": "이번 주", "general_frequency": "매일 밤", "weather_descriptor": "추워"}, "split": "test"}
{"utterance": "언덕나무 누가 불러", "expected_intent": "music:music_query", "expected_slots": {"song_name": "언덕나무"}, "split": "test"}
{"utterance": "문재인 대통령 관련 오늘의 중앙 기사 찾아줘", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "문재인", "date": "오늘의", "media_type": "중앙"}, "split": "test"}
{"utterance": "스톡홀름 해가 뜨면 오키나와 몇 시인가요", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "오키나와", "time": "해가 뜨면"}, "split": "test"}
{"utterance": "뉴욕 의 현재 시간", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "뉴욕"}, "split": "test"}
{"utterance": "오후 세 시 알람 비활성화", "expected_intent": "alarm:alarm_remove", "expected_slots": {"time": "오후 세 시"}, "split": "test"}
{"utterance": "조명 파란색 으로 바꿔줘", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "파란색"}, "split": "test"}
{"utterance": "pandora", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "미스터피자 배달되는지 알려줘", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "미스터피자", "order_type": "배달되는지"}, "split": "test"}
{"utterance": "이번 주 날씨 어떨 것 같아", "expected_intent": "weather:weather_query", "expected_slots": {"date": "이번 주"}, "split": "test"}
{"utterance": "현재 시간 말해줘", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "당신이 아는 가장 웃긴 농담을 말해주세요", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "가장 웃긴"}, "split": "test"}
{"utterance": "내 알람 이 내일 아침 으로 설정되어 있어", "expected_intent": "alarm:alarm_query", "expected_slots": {"date": "내일", "timeofday": "아침"}, "split": "test"}
{"utterance": "베를린 새벽 다섯시 면 여기는 몇 시야", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "베를린", "time": "새벽 다섯시"}, "split": "test"}
{"utterance": "커피 마시고 싶어", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "아카데이 시상식 소식 빠르게 전해줘", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "아카데이 시상식"}, "split": "test"}
{"utterance": "빠르다", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "트럼프의 새 이민 정책에 관해 말해줘", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "트럼프의 새 이민 정책에"}, "split": "test"}
{"utterance": "이곳의 오늘의 일기 예보 알려줘", "expected_intent": "weather:weather_query", "expected_slots": {"date": "오늘의"}, "split": "test"}
{"utterance": "음악 앱 켜서 노래 재생해줘", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "나 성시경 노래 좋아하니까 재생해주세요", "expected_intent": "music:music_likeness", "expected_slots": {"artist_name": "성시경"}, "split": "test"}
{"utterance": "이번 주 밖에 날씨 좋을까", "expected_intent": "weather:weather_query", "expected_slots": {"date": "이번 주", "weather_descriptor": "좋을까"}, "split": "test"}
{"utterance": "스피커 볼륨 낮춰줘", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "나 이거 안 편안해 불 밝게 해 줘", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "시사저널 첫 페이지 뭐 있어", "expected_intent": "news:news_query", "expected_slots": {"media_type": "시사저널"}, "split": "test"}
{"utterance": "좋은 농담 해줘", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "좋은"}, "split": "test"}
{"utterance": "더 크게 말해줄래", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "아들 방 불 꺼 줘", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "아들 방"}, "split": "test"}
{"utterance": "pizza hut 배달 가능하나요", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "pizza hut", "order_type": "배달"}, "split": "test"}
{"utterance": "난 주로 집중하고 있어", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "나는 한번 씩 주의를 해", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "창원 의 내일 날씨 알 수 있을까", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "창원", "date": "내일"}, "split": "test"}
{"utterance": "올리야 커피 좀 만들어줄래", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "문재인 대통령에 관해 말해줘", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "문재인"}, "split": "test"}
{"utterance": "프랑스 관련해 듣게 되면 나한테 말해줘", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "프랑스"}, "split": "test"}
{"utterance": "조명 파란색 으로 바꿔", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "파란색"}, "split": "test"}
{"utterance": "빨간 조명 해줘", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "빨간"}, "split": "test"}
{"utterance": "사점 이상을 받은 최신 트로트 음악 재생", "expected_intent": "play:play_music", "expected_slots": {"music_descriptor": "사점 이상을 받은", "music_genre": "트로트"}, "split": "test"}
{"utterance": "이천십팔년 에 크리스마스 가 언제였어", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "이천십팔년", "event_name": "크리스마스"}, "split": "test"}
{"utterance": "내일 알람 지워", "expected_intent": "alarm:alarm_remove", "expected_slots": {"date": "내일"}, "split": "test"}
{"utterance": "알람 꺼", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "경상도 는 얼마나 덥나", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "경상도", "weather_descriptor": "덥나"}, "split": "test"}
{"utterance": "혁오 재생", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "혁오"}, "split": "test"}
{"utterance": "오늘의 스포츠 뉴스 어떤 것들 있어", "expected_intent": "news:news_query", "expected_slots": {"date": "오늘의", "news_topic": "스포츠"}, "split": "test"}
{"utterance": "내가 설정한 알람 뭐 있어", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "아이유 최신 노래들 재생", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "아이유"}, "split": "test"}
{"utterance": "아침 알람 울릴 때까지 아무 소리도 내지 마", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"timeofday": "아침"}, "split": "test"}
{"utterance": "내가 일 끝나고 집에 올 때까지 무소음 모드로 해", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "가능한 조명 색깔 보여줘", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "바깥 기온 이 어때", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "기온"}, "split": "test"}
{"utterance": "도미노피자에서 소세지 피자 주문해줘", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"business_name": "도미노피자에서", "ingredient": "소세지", "food_type": "피자"}, "split": "test"}
{"utterance": "내가 저 노래 좋아하는 거 알려줘", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 y. t. n. 에 무슨 뉴스 있었니", "expected_intent": "news:news_query", "expected_slots": {"date": "오늘", "media_type": "y. t. n."}, "split": "test"}
{"utterance": "독일 현재 시간 보여줘", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "독일"}, "split": "test"}
{"utterance": "해가 환하게 비추네 남은 하루 날씨도 이럴까", "expected_intent": "weather:weather_query", "expected_slots": {"time": "남은 하루"}, "split": "test"}
{"utterance": "여름 휴가 플레이리스트 재생", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "여름 휴가 플레이리스트"}, "split": "test"}
{"utterance": "이번 주 내 지역의 날씨는 어때", "expected_intent": "weather:weather_query", "expected_slots": {"date": "이번 주"}, "split": "test"}
{"utterance": "이번 주 에 비가 올까", "expected_intent": "weather:weather_query", "expected_slots": {"date": "이번 주", "weather_descriptor": "비가 올까"}, "split": "test"}
{"utterance": "위모 켜", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "위모"}, "split": "test"}
{"utterance": "조명 꺼 줘", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"device_type": "조명"}, "split": "test"}
{"utterance": "청소기 작동시켜줘", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "청소기"}, "split": "test"}
{"utterance": "야구 관련한 농담 찾아줘", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "야구"}, "split": "test"}
{"utterance": "현재 일 월 연도는 뭐야", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "다음주 화요일 에 날씨 맑을까", "expected_intent": "weather:weather_query", "expected_slots": {"date": "화요일", "weather_descriptor": "맑을까"}, "split": "test"}
{"utterance": "세계 뉴스 알림 설정해줘", "expected_intent": "news:news_query", "expected_slots": {"media_type": "세계 뉴스"}, "split": "test"}
{"utterance": "최신 뉴스 알려줄 수 있어", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "로스앤젤레스 현재 시간 알려줘", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "로스앤젤레스"}, "split": "test"}
{"utterance": "정치 관련 새로운 토픽 올라오면 나한테 알려줘", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "정치"}, "split": "test"}
{"utterance": "노래 설명", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "지금 음악 볼륨 높여", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "내 알람들 몇 시에 울려", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "시사저널에서 가장 최근 뉴스 보여줘", "expected_intent": "news:news_query", "expected_slots": {"media_type": "시사저널에서"}, "split": "test"}
{"utterance": "제발 볼륨 좀 작게 해", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "올리 소리 키워", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 울리는 알람 있어", "expected_intent": "alarm:alarm_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "다음 번에는 언제 비가 올까", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "비가 올까"}, "split": "test"}
{"utterance": "내일 정오 에 눈이 오나", "expected_intent": "weather:weather_query", "expected_slots": {"date": "내일", "timeofday": "정오", "weather_descriptor": "눈이 오나"}, "split": "test"}
{"utterance": "설정된 모든 알람 보고 싶어", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "지난 여섯 시간 동안의 케이비에스 뉴스는 뭐야", "expected_intent": "news:news_query", "expected_slots": {"time": "지난 여섯 시간 동안의", "media_type": "케이비에스"}, "split": "test"}
{"utterance": "천구백구십 년 과 이천 년 사이 나온 음악만 재생해", "expected_intent": "play:play_music", "expected_slots": {"date": "이천 년"}, "split": "test"}
{"utterance": "화요일 오전 아홉 시 삭제", "expected_intent": "alarm:alarm_remove", "expected_slots": {"date": "화요일", "time": "오전 아홉 시"}, "split": "test"}
{"utterance": "무슨 뮤직 나오는 거야", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "내일 온도 더울지 예 아니오로 대답해", "expected_intent": "weather:weather_query", "expected_slots": {"date": "내일", "weather_descriptor": "온도 더울지"}, "split": "test"}
{"utterance": "내일의 기온 이 더울까 아닐까", "expected_intent": "weather:weather_query", "expected_slots": {"date": "내일의", "weather_descriptor": "더울까"}, "split": "test"}
{"utterance": "부드러운 재즈 좀 찾아줄래", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "부드러운 재즈"}, "split": "test"}
{"utterance": "청소기 매일 오전 열 시 에서 열 한시 사이에 작동 시켜줘", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "청소기", "general_frequency": "매일", "time": "열 한시"}, "split": "test"}
{"utterance": "락 모드 바꿔", "expected_intent": "music:music_settings", "expected_slots": {"music_genre": "락", "player_setting": "바꿔"}, "split": "test"}
{"utterance": "오십 퍼센트로 볼륨 낮춰줘", "expected_intent": "audio:audio_volume_down", "expected_slots": {"change_amount": "오십 퍼센트로"}, "split": "test"}
{"utterance": "아침 여섯시 월요일에만 알람 설정해줘", "expected_intent": "alarm:alarm_set", "expected_slots": {"timeofday": "아침", "time": "여섯시", "date": "월요일에만"}, "split": "test"}
{"utterance": "서울 최저 기온 은 몇도야", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "서울", "weather_descriptor": "기온"}, "split": "test"}
{"utterance": "지금 재생하고 있는 이 노래 제목 알려줘", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "어떻게 생각해", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "이 노래 좋지", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "모든 조명 꺼", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"device_type": "모든 조명"}, "split": "test"}
{"utterance": "불 밝게 해줘", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "문재인 대통령 관련 뉴스 알려줘", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "문재인 대통령"}, "split": "test"}
{"utterance": "테러 관련 최근 뉴스", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "테러"}, "split": "test"}
{"utterance": "알람 꺼", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "다음 노래", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "조명 어둡게 해줘", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "다이닝 룸 꺼", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "다이닝 룸"}, "split": "test"}
{"utterance": "안방 꺼 줘", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "안방"}, "split": "test"}
{"utterance": "문재인 대통령은 곧 중국을 방문할까", "expected_intent": "news:news_query", "expected_slots": {"person": "문재인 대통령은", "place_name": "중국을"}, "split": "test"}
{"utterance": "오늘 날짜", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "어떤 팀이 오늘 프리미엄 리그에서 경기하지", "expected_intent": "news:news_query", "expected_slots": {"date": "오늘", "news_topic": "프리미엄 리그에서"}, "split": "test"}
{"utterance": "조명 더 부탁해", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "노래 제목", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "제목", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "플레이리스트 켜서 음악 틀어줘", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "설탕 빼고 커피 만들어주세요", "expected_intent": "iot:iot_coffee", "expected_slots": {"coffee_type": "설탕 빼고"}, "split": "test"}
{"utterance": "매운 음식 좀 먹고 싶어", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "매운"}, "split": "test"}
{"utterance": "페리카나에서 치킨 한 개 주문해", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"business_name": "페리카나에서", "food_type": "치킨"}, "split": "test"}
{"utterance": "콜드플레이 앨범 틀어", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "콜드플레이"}, "split": "test"}
{"utterance": "테마 재생목록 반복해줄 수 있어", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "테마"}, "split": "test"}
{"utterance": "내 알람 언제 울려", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "현재 날씨 리포트", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 몇 월이지", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "통근할 때 듣기 좋은 노래", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "재생되는 목록에 노래 추가해", "expected_intent": "music:music_likeness", "expected_slots": {"playlist_name": "재생되는"}, "split": "test"}
{"utterance": "경기 주요장면 보여줘", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "경기 주요장면 보여줘"}, "split": "test"}
{"utterance": "오전 다섯 시 에 깨워줘", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "오전 다섯 시"}, "split": "test"}
{"utterance": "청소기 켜 줘", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "청소기"}, "split": "test"}
{"utterance": "오늘 밤 안에 온도 떨어질까", "expected_intent": "weather:weather_query", "expected_slots": {"timeofday": "오늘 밤 안에", "weather_descriptor": "온도"}, "split": "test"}
{"utterance": "노래 제목 플레이 해", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "집 청소해", "expected_intent": "iot:iot_cleaning", "expected_slots": {"house_place": "집"}, "split": "test"}
{"utterance": "불 분홍색 으로 바꿔줘", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "분홍색"}, "split": "test"}
{"utterance": "하이 구글 내 gaana 앱에서 엉뚱한 플레이리스트 재생해줘", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "엉뚱한"}, "split": "test"}
{"utterance": "오전 여섯 시 삼십 분 에 알람 설정해", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "오전 여섯 시 삼십 분"}, "split": "test"}
{"utterance": "조명 더 밝게 해줘", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "나의 itunes 열어줄 수 있어", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "비틀즈 재생", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "비틀즈"}, "split": "test"}
{"utterance": "사라지지 말아요 재생해주세요", "expected_intent": "play:play_music", "expected_slots": {"song_name": "사라지지 말아요"}, "split": "test"}
{"utterance": "부엌 조명 낮춰", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {"house_place": "부엌"}, "split": "test"}
{"utterance": "지금 커피 만들어", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "지금 나오는 노래 뭐야", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "내 음식 어딨어", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "그 노래 다시 듣기 싫어", "expected_intent": "music:music_dislikeness", "expected_slots": {}, "split": "test"}
{"utterance": "그 노래를 내가 좋아하는 목록에 넣어", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "재즈 음악 좀 듣고 싶어", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "재즈"}, "split": "test"}
{"utterance": "더 밝은 조명 원해", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "조명 밝게 해", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "알렉사 바흐 와 슈베르트 빼고 아무 클래식 이나 듣고 싶어", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "슈베르트", "music_genre": "클래식"}, "split": "test"}
{"utterance": "현재 음악 제목 보여줘", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "지금 나오는 음악 뭐야", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "세계에서 요즘 무슨 일이 일어나고 있어", "expected_intent": "news:news_query", "expected_slots": {"place_name": "세계에서"}, "split": "test"}
{"utterance": "다음으로 멜로디 재생", "expected_intent": "play:play_music", "expected_slots": {"song_name": "멜로디"}, "split": "test"}
{"utterance": "내 고향의 현 이벤트들 알려줘", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "고향의"}, "split": "test"}
{"utterance": "조명 색은 어둑한 밝기 여야 해", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "나 깨워줘", "expected_intent": "alarm:alarm_set", "expected_slots": {}, "split": "test"}
{"utterance": "이 년 후 동지 날짜가 어떻게 되니", "expected_intent": "datetime:datetime_query", "expected_slots": {"time": "이 년", "event_name": "동지"}, "split": "test"}
{"utterance": "지금 몇 시인지 알고 싶어", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "나 이제 잘거야", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "음식 주문 어떻게 되가", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "언제 먹을 수 있어", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "저녁이 다 됐나", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"meal_type": "저녁이"}, "split": "test"}
{"utterance": "내일 아침 여섯 시 에 알람 설정해", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "내일", "timeofday": "아침", "time": "여섯 시"}, "split": "test"}
{"utterance": "삼십 분 후에 깨워줘", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "삼십 분"}, "split": "test"}
{"utterance": "내 알람 꺼", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "작은 것들을 위한 시 부른 가수가 누구야", "expected_intent": "music:music_query", "expected_slots": {"song_name": "작은 것들을 위한 시"}, "split": "test"}
{"utterance": "내가 있는 곳 현재 기상 상태는 어때", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "내가 있는 곳"}, "split": "test"}
{"utterance": "천구백팔십이년 십이월 사일 은 무슨 요일이지", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "천구백팔십이년 십이월 사일"}, "split": "test"}
{"utterance": "m. b. c. 헤드라인", "expected_intent": "news:news_query", "expected_slots": {"media_type": "m. b. c."}, "split": "test"}
{"utterance": "k. b. s. 세계", "expected_intent": "news:news_query", "expected_slots": {"media_type": "k. b. s. 세계"}, "split": "test"}
{"utterance": "두시간 동안 음소거", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"time": "두시간"}, "split": "test"}
{"utterance": "지금부터 음소거해줘", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "조용하게 조정", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "우우우", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "서울 날씨", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "서울"}, "split": "test"}
{"utterance": "이무진 의 비와 당신 틀어줘", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "이무진", "song_name": "비와 당신"}, "split": "test"}
{"utterance": "주방 조명 꺼", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "주방"}, "split": "test"}
{"utterance": "볼 수가 없어 불을 켜", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "최신 국제 뉴스 읽어줘", "expected_intent": "news:news_query", "expected_slots": {"place_name": "국제"}, "split": "test"}
{"utterance": "원할머니보쌈 에서 포장할 수 있나요", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"business_name": "원할머니보쌈", "order_type": "포장할"}, "split": "test"}
{"utterance": "오늘 스웨터 입을까", "expected_intent": "weather:weather_query", "expected_slots": {"date": "오늘", "weather_descriptor": "스웨터"}, "split": "test"}
{"utterance": "흐릿한 색으로 보여줘", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "공부방 조명 색깔", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "공부방"}, "split": "test"}
{"utterance": "지금 경상남도 진주 의 날씨가 어떤지 알려줘", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "경상남도 진주"}, "split": "test"}
{"utterance": "내가 구입했고 좋아했던 노래들 재생해줘", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "우리 집 조명 색상 파란색 으로 바꿔줘", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "집", "color_type": "파란색"}, "split": "test"}
{"utterance": "아침 여섯 시에 커피 만들어", "expected_intent": "iot:iot_coffee", "expected_slots": {"time": "아침 여섯 시에"}, "split": "test"}
{"utterance": "오늘의 k. b. l 점수 계속 알려줘", "expected_intent": "news:news_query", "expected_slots": {"date": "오늘의", "news_topic": "k. b. l 점수"}, "split": "test"}
{"utterance": "조명 꺼 지금", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "태평양 표준시간으로 오전 일곱시 야", "expected_intent": "datetime:datetime_convert", "expected_slots": {"time_zone": "태평양", "time": "오전 일곱시"}, "split": "test"}
{"utterance": "알렉사 조명 칠로 낮춰줘", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {"change_amount": "칠로"}, "split": "test"}
{"utterance": "오늘 새소식 뭐 있어", "expected_intent": "news:news_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "alexa 헤드라인 뉴스 알려줘", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "이번주 금요일 날씨는 어때", "expected_intent": "weather:weather_query", "expected_slots": {"date": "금요일"}, "split": "test"}
{"utterance": "내일 날시는 어때", "expected_intent": "weather:weather_query", "expected_slots": {"date": "내일"}, "split": "test"}
{"utterance": "지금 런던 현지 시간 보여줘", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "런던"}, "split": "test"}
{"utterance": "내일 아침 여섯 시 에 알람 추가해줘", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "내일", "timeofday": "아침", "time": "여섯 시"}, "split": "test"}
{"utterance": "국수 한 팩 포장으로 해줘", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "국수", "order_type": "포장으로"}, "split": "test"}
{"utterance": "국수 일인분 테이크아웃 주문해", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "국수", "order_type": "테이크아웃"}, "split": "test"}
{"utterance": "집 안에 어두운 색 대신 밝은 색 넣어줘", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "집", "color_type": "어두운"}, "split": "test"}
{"utterance": "올리야 집 컬러 밝은 거에서 어두운 색으로 바꿔", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "집", "color_type": "어두운"}, "split": "test"}
{"utterance": "그 음악 종류가 뭐야", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "영화 음악 중에서 노래 제목이 뭘까", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "라디오 노래 뭐야", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "노래 정보", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "세계는 어떻게 돌아가고 있니", "expected_intent": "news:news_query", "expected_slots": {"place_name": "세계는"}, "split": "test"}
{"utterance": "최신 뉴스 알려줘", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "이 노래 누가 썼어", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "msg워너비 노래 틀어줘", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "msg워너비"}, "split": "test"}
{"utterance": "이 노래 정말 듣기 좋지 않아", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "조명 더 밝게 해줘", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "이 밴드 다른 노래들도 찾아줘", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "서울 시간 좀 알려줘", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "서울"}, "split": "test"}
{"utterance": "나는 류길상 피자에서 피자를 주문하고 싶다", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"business_name": "류길상 피자에서", "food_type": "피자를"}, "split": "test"}
{"utterance": "오늘의 서울시 예보 알려줘", "expected_intent": "weather:weather_query", "expected_slots": {"date": "오늘의", "place_name": "서울시"}, "split": "test"}
{"utterance": "내 주문 어때", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "로봇청소기 시작해", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "로봇청소기"}, "split": "test"}
{"utterance": "기술 소식 보내줘", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "기술"}, "split": "test"}
{"utterance": "다용도실 전등 꺼 줘", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "다용도실"}, "split": "test"}
{"utterance": "점심으로 탕 먹고 싶네 황가네 식당에서 감자탕 시켜줘", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"meal_type": "점심으로", "food_type": "탕", "business_name": "황가네", "business_type": "식당에서"}, "split": "test"}
{"utterance": "칠백", "expected_intent": "datetime:datetime_convert", "expected_slots": {}, "split": "test"}
{"utterance": "내가 있는 곳의 현재 시간이 정확한 거야", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "테이크아웃 전화해 줘", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"order_type": "테이크아웃"}, "split": "test"}
{"utterance": "매일 뉴스", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 며칠이야", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "오늘 날짜가 뭐야", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "커피 만들 수 있게 커피 머신을 어떻게 세팅해야 해", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "커피 머신을"}, "split": "test"}
{"utterance": "로봇 청소기 어떻게 시작 해", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "로봇 청소기"}, "split": "test"}
{"utterance": "클래식 락 들려저ㅜ", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "클래식 락"}, "split": "test"}
{"utterance": "알렉사 랩 과 락 음악 잇따라 들려줘", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "락"}, "split": "test"}
{"utterance": "방 조명 파란색 으로 만들어", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "방", "color_type": "파란색"}, "split": "test"}
{"utterance": "침실 조명들 빨갛게 그리고 복도 조명들 보통 색 만들어", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "복도", "color_type": "보통"}, "split": "test"}
{"utterance": "날씨 어때", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "유튜브 뉴스 중에 아무거나 흥미로운 거", "expected_intent": "news:news_query", "expected_slots": {"media_type": "유튜브 뉴스"}, "split": "test"}
{"utterance": "우리 집 조명 초록색 으로 바꿔줘", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "집", "color_type": "초록색"}, "split": "test"}
{"utterance": "음악 무작위로 재생", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "다음 금요일 오전 여섯시 삼십분 에 알람 맞춰주세요", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "금요일", "time": "오전 여섯시 삼십분"}, "split": "test"}
{"utterance": "내 위모 소켓 꺼", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "위모 소켓"}, "split": "test"}
{"utterance": "내 spotify 댄스 플레이리스트 재생", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "현관 불 꺼 줘", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "현관"}, "split": "test"}
{"utterance": "최근 m. b. c. 뉴스는 어떤 게 있습니까", "expected_intent": "news:news_query", "expected_slots": {"media_type": "m. b. c."}, "split": "test"}
{"utterance": "밝기 올려", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "최신 환경 뉴스에 관해 말해줘", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "환경"}, "split": "test"}
{"utterance": "내 가 선호하는 음악 지금 재생", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "김가네 주문 취소했는데 제대로 취소 됐어", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "김가네"}, "split": "test"}
{"utterance": "현재 날씨 예보", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "다음주 수요일 에 재킷 입어야 할까", "expected_intent": "weather:weather_query", "expected_slots": {"date": "수요일", "weather_descriptor": "재킷"}, "split": "test"}
{"utterance": "김정은에 관한 뉴스 보여줘", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "김정은에"}, "split": "test"}
{"utterance": "환경 관련 뉴스 보여줘", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "환경"}, "split": "test"}
{"utterance": "판도라에 아이유 채널 찾아줘", "expected_intent": "music:music_settings", "expected_slots": {"artist_name": "아이유"}, "split": "test"}
{"utterance": "이 동네 최신 뉴스", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "나 다음 병원 예약 리마인더 알람 설정하는 거 안 잊어버렸나", "expected_intent": "alarm:alarm_query", "expected_slots": {"event_name": "병원 예약"}, "split": "test"}
{"utterance": "오늘밤 에 비가 오나", "expected_intent": "weather:weather_query", "expected_slots": {"timeofday": "오늘밤", "weather_descriptor": "비가 오나"}, "split": "test"}
{"utterance": "기온 이 지금이랑 비슷할까 아니면 더 추워질까", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "기온"}, "split": "test"}
{"utterance": "마지막 주문한거 준비 되었나", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "플러그 꺼 줘", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "플러그"}, "split": "test"}
{"utterance": "포크 음악 재생해주세요", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "포크"}, "split": "test"}
{"utterance": "헤비메탈 좀 들어보자 오케이", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "헤비메탈"}, "split": "test"}
{"utterance": "올리 나 춤추고 싶어 로큰롤 좀 틀어줘", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "로큰롤"}, "split": "test"}
{"utterance": "올리 나 오늘 슬픈 노래들 좀 듣고 싶어", "expected_intent": "play:play_music", "expected_slots": {"date": "오늘", "music_genre": "슬픈 노래들"}, "split": "test"}
{"utterance": "불 꺼 줘", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "간지 듣고 싶어", "expected_intent": "play:play_music", "expected_slots": {"song_name": "간지"}, "split": "test"}
{"utterance": "재밌는 농담 아는거 있니", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "재밌는"}, "split": "test"}
{"utterance": "t. b. s. 에서 뉴스 좀 알려줘", "expected_intent": "news:news_query", "expected_slots": {"media_type": "t. b. s."}, "split": "test"}
{"utterance": "커피 포트 시작해줘", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "커피 한 잔 부탁해", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "올리 재즈 장르 의 음악 재생해", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "재즈"}, "split": "test"}
{"utterance": "내 주문이 준비되려면 얼마나 걸릴까", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "조명 꺼", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "조명들 사용 중지해", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 우산 챙길까", "expected_intent": "weather:weather_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "콘서트 어떤 거 있어", "expected_intent": "music:music_likeness", "expected_slots": {"event_name": "콘서트"}, "split": "test"}
{"utterance": "재즈 음악 좀 틀어줘", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "재즈 음악"}, "split": "test"}
{"utterance": "스피커 무음", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "스피커 볼륨 무음으로 해줘", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "알렉사 노래 내 손을 잡아 재생해", "expected_intent": "play:play_music", "expected_slots": {"song_name": "내 손을 잡아"}, "split": "test"}
{"utterance": "광주 몇 시지", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "광주"}, "split": "test"}
{"utterance": "커피 한 잔 만들어줄 수 있어", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "거실 조명 오십 퍼센트까지 맞춰", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "거실", "change_amount": "오십 퍼센트까지"}, "split": "test"}
{"utterance": "십이월 십삼일 무슨 요일이야", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "십이월 십삼일"}, "split": "test"}
{"utterance": "다음 달 이 일은 무슨 요일이야", "expected_intent": "datetime:datetime_query", "expected_slots": {"event_name": "다음 달 이 일은"}, "split": "test"}
{"utterance": "미스터피자에 포장할 수 있는 곳이 있나요", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "미스터피자에"}, "split": "test"}
{"utterance": "이 도시 는 지금 몇 시야", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "이 도시"}, "split": "test"}
{"utterance": "커피 머신이 나한테 커피 좀 만들어 줄 수 있게 해줘", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "커피 머신이"}, "split": "test"}
{"utterance": "올리 알람 알려줘", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "날씨 관련한 아무 기사나 아침 뉴스에서 보여주지 않을래", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "날씨", "media_type": "아침 뉴스에서"}, "split": "test"}
{"utterance": "현재 날씨", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "선거 관련 업데이트가 있니", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "선거"}, "split": "test"}
{"utterance": "청소기 작동 시켜줘", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "청소기"}, "split": "test"}
{"utterance": "밝기 구십 퍼센트", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"change_amount": "구십 퍼센트"}, "split": "test"}
{"utterance": "타코벨 배달 되는지 알려줘", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "타코벨"}, "split": "test"}
{"utterance": "오늘 날짜 말해줘", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "주간 기상정보", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "y. t. n. 웹사이트에 있는 뉴스 이야기 어떤 게 있어", "expected_intent": "news:news_query", "expected_slots": {"media_type": "y. t. n."}, "split": "test"}
{"utterance": "오스틴 은 지금 몇 시야", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "오스틴"}, "split": "test"}
{"utterance": "다음에 취중진담 재생해", "expected_intent": "play:play_music", "expected_slots": {"song_name": "취중진담"}, "split": "test"}
{"utterance": "오전 열 시 알람이 있나", "expected_intent": "alarm:alarm_query", "expected_slots": {"time": "오전 열 시"}, "split": "test"}
{"utterance": "로봇 청소기 초기화 시켜줘", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "로봇 청소기"}, "split": "test"}
{"utterance": "청소기 작동 시켜줘", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "청소기"}, "split": "test"}
{"utterance": "이정권 의 노래 틀어주세요", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "이정권"}, "split": "test"}
{"utterance": "사무실 조명 꺼", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "사무실"}, "split": "test"}
{"utterance": "조명 색깔 빨간색 으로 바꿔줘", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "빨간색"}, "split": "test"}
{"utterance": "알람 세팅 제거하기", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "알람 취소", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "주식 시장 과 관련된 뉴스 말해주세요", "expected_intent": "qa:qa_stock", "expected_slots": {"news_topic": "주식 시장"}, "split": "test"}
{"utterance": "비틀즈 밴드의 노래 재생", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "비틀즈"}, "split": "test"}
{"utterance": "불 올려줘", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "조명 다시 켜줘", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "신전 떡볶이 테이크아웃 하나요", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "신전 떡볶이"}, "split": "test"}
{"utterance": "아웃백 테이크아웃 가능", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "아웃백"}, "split": "test"}
{"utterance": "나는 이 노래 싫어해", "expected_intent": "music:music_dislikeness", "expected_slots": {}, "split": "test"}
{"utterance": "나는 이 노래 정말 좋아해", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "노래 다시 듣고 싶어", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "기온 알려줘", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "기온"}, "split": "test"}
{"utterance": "일 면 신문 기사 알려줘", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "새로운 뉴스 뭐야", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "내 조명 색 파란색 으로 변경 하고 주방 조명 꺼", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "파란색", "house_place": "주방"}, "split": "test"}
{"utterance": "조인스 무슨 뉴스 있어", "expected_intent": "news:news_query", "expected_slots": {"media_type": "조인스"}, "split": "test"}
{"utterance": "플러그 꺼 줘", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "패스트푸드 먹을 시간이야", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "패스트푸드"}, "split": "test"}
{"utterance": "태평양 시간으로 몇 시야", "expected_intent": "datetime:datetime_query", "expected_slots": {"time_zone": "태평양"}, "split": "test"}
{"utterance": "충청도 날씨는 어때", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "충청도"}, "split": "test"}
{"utterance": "불 꺼 줘", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "현재 행사들 보여줘", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "olly 뉴스 틀어줘", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "이 노래 다시 재생하지 마", "expected_intent": "music:music_dislikeness", "expected_slots": {}, "split": "test"}
{"utterance": "나는 이 음악 사랑해 이걸 내 댄스 음악 플레이 리스트에 추가하고 내가 좋아한다고 기억해줘", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "작년 에 내 가 좋아했던 노래 재생", "expected_intent": "play:play_music", "expected_slots": {"date": "작년"}, "split": "test"}
{"utterance": "빅 마마 하루만 더 앨범 에서 뭔가 틀어줘", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "빅 마마"}, "split": "test"}
{"utterance": "지금 동부 표준시 로 몇 시야", "expected_intent": "datetime:datetime_query", "expected_slots": {"time_zone": "동부"}, "split": "test"}
{"utterance": "내 플레이리스트 에서 무작위 로 노래 재생해줘", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "이번 달에 거기에 얼마나 많은 토네이도가 있었어", "expected_intent": "general:general_quirky", "expected_slots": {"date": "이번 달에", "news_topic": "토네이도가"}, "split": "test"}
{"utterance": "올리 이번 달에 거기에 토네이도 얼마나 왔었대", "expected_intent": "general:general_quirky", "expected_slots": {"date": "이번 달에", "news_topic": "토네이도"}, "split": "test"}
{"utterance": "저지방 우유 넣은 커피 한 잔 만들어줘", "expected_intent": "iot:iot_coffee", "expected_slots": {"coffee_type": "저지방 우유"}, "split": "test"}
{"utterance": "내 이승철 플레이리스트 일번 트랙 재생", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "이승철"}, "split": "test"}
{"utterance": "내일 오전 여섯 시 에 알람 있나", "expected_intent": "alarm:alarm_query", "expected_slots": {"date": "내일", "time": "오전 여섯 시"}, "split": "test"}
{"utterance": "내가 설정한 내 알람들 보여줘", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "내 침실 조명들 꺼", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "침실"}, "split": "test"}
{"utterance": "음악 플레이리스트 틀어", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "스피커 꺼", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "이 노래 몇 년에 나왔어", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "멈춰 즙 짜는 것을 시작해", "expected_intent": "iot:iot_wemo_on", "expected_slots": {}, "split": "test"}
{"utterance": "오 점을 매기다", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "크림 커피 한 잔 만들어 줄 수 있어", "expected_intent": "iot:iot_coffee", "expected_slots": {"coffee_type": "크림"}, "split": "test"}
{"utterance": "재즈 좋고 디스코 싫은 거 메모해", "expected_intent": "music:music_likeness", "expected_slots": {"music_genre": "재즈", "place_name": "디스코"}, "split": "test"}
{"utterance": "혁오 의 위잉위잉 재생", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "혁오", "song_name": "위잉위잉"}, "split": "test"}
{"utterance": "임영웅 의 사랑은 늘 도망가 스트리밍", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "임영웅", "song_name": "사랑은 늘 도망가"}, "split": "test"}
{"utterance": "그때 뭔가 하라고 리마인드해줘", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "그 시간으로 새 알람 설정해줘", "expected_intent": "alarm:alarm_set", "expected_slots": {}, "split": "test"}
{"utterance": "러시아 트럼프 개입 사건 진행 어떻게 되고 있니", "expected_intent": "news:news_query", "expected_slots": {"place_name": "러시아", "news_topic": "트럼프 개입"}, "split": "test"}
{"utterance": "불 낮춰줘", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "올해 크리스마스는 몇 요일이야", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "올해", "event_name": "크리스마스는"}, "split": "test"}
{"utterance": "오늘 오후 에 비가 오려나", "expected_intent": "weather:weather_query", "expected_slots": {"timeofday": "오후"}, "split": "test"}
{"utterance": "레게 음악 재생", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "레게"}, "split": "test"}
{"utterance": "올리 네네치킨 배달하니", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "네네치킨"}, "split": "test"}
{"utterance": "조명 낮춰 주세요", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "근처 한신포차 배달 돼", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "한신포차"}, "split": "test"}
{"utterance": "스마트 콘센트 꺼", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "스마트 콘센트"}, "split": "test"}
{"utterance": "이번 주 강릉 날씨 어때", "expected_intent": "weather:weather_query", "expected_slots": {"date": "이번 주", "place_name": "강릉"}, "split": "test"}
{"utterance": "이번 주 일기 예보는 어때", "expected_intent": "weather:weather_query", "expected_slots": {"date": "주"}, "split": "test"}
{"utterance": "내 커피포트 작동시켜", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "커피포트"}, "split": "test"}
{"utterance": "커피 내려줘", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "내 커피포트 켜", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "커피포트"}, "split": "test"}
{"utterance": "플러그 꺼", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "뉴스 보고 싶어", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "농담", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "삼만 삼천 칠 백 칠십 사 번지의 날씨 리포트", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "서울 날씨 알려줘", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "서울"}, "split": "test"}
{"utterance": "자동차 어딨어", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "다음 화요일 은 며칠이야", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "화요일"}, "split": "test"}
{"utterance": "똑 똑", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "주방 조명 꺼", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "주방"}, "split": "test"}
{"utterance": "조명 중간 으로 낮춰", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "여기 빨간색 으로 만들어 줘", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "빨간색"}, "split": "test"}
{"utterance": "오후 다섯 시 로 내 알람 설정해주세요", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "오후 다섯 시"}, "split": "test"}
{"utterance": "방탄 의 라이브 버전 틀어줘", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "방탄"}, "split": "test"}
{"utterance": "가장 인기있는 보아 노래 재생해줘", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "보아"}, "split": "test"}
{"utterance": "앞으로 열흘 간 일기 예보 알려줘", "expected_intent": "weather:weather_query", "expected_slots": {"date": "열흘"}, "split": "test"}
{"utterance": "이번 주 에 비나 눈 소식이 있니", "expected_intent": "weather:weather_query", "expected_slots": {"date": "이번 주", "weather_descriptor": "비나 눈"}, "split": "test"}
{"utterance": "이번 주말 에 날씨 좋을까", "expected_intent": "weather:weather_query", "expected_slots": {"date": "이번 주말", "weather_descriptor": "좋을까"}, "split": "test"}
{"utterance": "내 주문의 예상 시간을 아나요", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "내 커피 머신 이 오전 일곱 시 에 커피 만들도록 설정해줄 수 있어", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "커피 머신", "time": "오전 일곱 시"}, "split": "test"}
{"utterance": "밖에 몇 도 야", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "도"}, "split": "test"}
{"utterance": "새로운 팝 음악", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "팝"}, "split": "test"}
{"utterance": "베스트 랩 음악", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "랩"}, "split": "test"}
{"utterance": "가장 최근 알람 지워", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "이십이일 은 수요일이야", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "이십이일"}, "split": "test"}
{"utterance": "지금 열시 야", "expected_intent": "datetime:datetime_query", "expected_slots": {"time": "열시"}, "split": "test"}
{"utterance": "토요일 에 비 소식이 있나", "expected_intent": "weather:weather_query", "expected_slots": {"date": "토요일", "weather_descriptor": "비"}, "split": "test"}
{"utterance": "조용한 시간", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "볼륨 낮춰줘", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "혁오 노래 중에 가장 유명한 거 틀어", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "작게 말해줘", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "지금 음악 틀어줘", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "내 최애 노래 목록 틀자", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "광명 날씨는 어때", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "광명"}, "split": "test"}
{"utterance": "일기 예보에 눈 온다 그랬어", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "눈"}, "split": "test"}
{"utterance": "나의 목록만 틀어", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 강수 확률은 얼마나 돼", "expected_intent": "weather:weather_query", "expected_slots": {"date": "오늘", "weather_descriptor": "강수"}, "split": "test"}
{"utterance": "내 발코니 조명 켜 주세요", "expected_intent": "iot:iot_hue_lighton", "expected_slots": {"house_place": "발코니"}, "split": "test"}
{"utterance": "캐나다 시간대 로 변경해", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "캐나다"}, "split": "test"}
{"utterance": "소코도모 의 회전목마 재생해주세요", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "소코도모", "song_name": "회전목마"}, "split": "test"}
{"utterance": "거실 조명들 초록색이랑 빨간색 으로 바꿔줘", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "거실", "color_type": "초록색이랑 빨간색"}, "split": "test"}
{"utterance": "조명 약간 붉게 해줘", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "붉게"}, "split": "test"}
{"utterance": "재즈 음악 듣고 싶어", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "재즈"}, "split": "test"}
{"utterance": "이승철 좀 틀어줘", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "이승철"}, "split": "test"}
{"utterance": "러브 플레이 리스트 넣어줄 수 있어요", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "러브 플레이 리스트"}, "split": "test"}
{"utterance": "드라마 재생", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "오사카 의 현재 시간은 몇 시야", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "오사카"}, "split": "test"}
{"utterance": "내 커피 머신 설정", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "커피 머신"}, "split": "test"}
{"utterance": "베란다 불 꺼줘", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "베란다"}, "split": "test"}
{"utterance": "중앙일보 최근 뉴스가 뭐야", "expected_intent": "news:news_query", "expected_slots": {"media_type": "중앙일보"}, "split": "test"}
{"utterance": "소리 끄기", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "무음으로 해줘", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "서울 날씨 어때", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "서울"}, "split": "test"}
{"utterance": "크게 말해", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "더 밝게", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "넌 어때", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "십분 후에 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "십분 후에"}, "split": "test"}
{"utterance": "동아 최신 뉴스가 뭐야", "expected_intent": "news:news_query", "expected_slots": {"media_type": "동아"}, "split": "test"}
{"utterance": "와이 티 엔 뉴스 중 가장 최근 소식이 뭐야", "expected_intent": "news:news_query", "expected_slots": {"media_type": "와이 티 엔"}, "split": "test"}
{"utterance": "베이징 은 지금 몇 시야", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "베이징"}, "split": "test"}
{"utterance": "오늘 날씨 맑지", "expected_intent": "weather:weather_query", "expected_slots": {"date": "오늘", "weather_descriptor": "맑지"}, "split": "test"}
{"utterance": "오늘 세계는 어떻니", "expected_intent": "news:news_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "y. t. n. 뉴스", "expected_intent": "news:news_query", "expected_slots": {"media_type": "y. t. n."}, "split": "test"}
{"utterance": "헤이 구글 재즈 음악 좀 재생해줘", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "재즈"}, "split": "test"}
{"utterance": "내가 어떤 종류의 음악을 좋아한다고 생각해", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "어떤 곳에서의 시간 좀 알려줘", "expected_intent": "datetime:datetime_convert", "expected_slots": {}, "split": "test"}
{"utterance": "이 레스토랑에서 포장 가능해", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_type": "레스토랑에서"}, "split": "test"}
{"utterance": "주방 이 다른 색이었으면 좋겠어", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "주방"}, "split": "test"}
{"utterance": "한 번 넘게 들은 노래 모두 저장해", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "내가 아끼는 발라드 음악 재생 목록 틀어", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "발라드"}, "split": "test"}
{"utterance": "내일 오전 다섯 시 삼십 분 으로 알람 맞춰줘", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "내일", "time": "오전 다섯 시 삼십 분"}, "split": "test"}
{"utterance": "오늘 세 시 알람 설정해줘", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "오늘", "time": "세 시"}, "split": "test"}
{"utterance": "조명들 퍼센트", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "올리 내가 내일 알람 설정해놓은 게 있어", "expected_intent": "alarm:alarm_query", "expected_slots": {"date": "내일"}, "split": "test"}
{"utterance": "나의 재생 목록 아래부터 틀어", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "내 구십년대 랩 히트곡 들려주세요", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "구십년대 랩"}, "split": "test"}
{"utterance": "이 노래 다음에 조광일 의 곡예사 듣고 싶어", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "조광일"}, "split": "test"}
{"utterance": "오늘 며칠이야", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "조용필 의 단발 머리 틀어줘", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "조용필", "song_name": "단발 머리"}, "split": "test"}
{"utterance": "조명 빨강 색 으로 바꿔", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "빨강"}, "split": "test"}
{"utterance": "지금 나오는 노래 뭐야", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "지금 나오는 음악 제목 알아", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "올리야 혹시 홍수 관련 새 소식 있으면 나한테 바로 알려줘", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "홍수"}, "split": "test"}
{"utterance": "오전 여덟 시 에 깨워줘", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "오전 여덟 시"}, "split": "test"}
{"utterance": "조명들 켜", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "알람 알려줘", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "스마트 플러그 비활성화", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "스마트 플러그"}, "split": "test"}
{"utterance": "지금 스마트 소켓 꺼 줘", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "스마트 소켓"}, "split": "test"}
{"utterance": "유튜브 플레이리스트 봄날 재생", "expected_intent": "play:play_music", "expected_slots": {"media_type": "유튜브"}, "split": "test"}
{"utterance": "나의 재생 목록에서 한밤중의 사랑 틀어줘", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "한밤중의 사랑"}, "split": "test"}
{"utterance": "부산 날씨 알려줘", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "부산"}, "split": "test"}
{"utterance": "화장실 불 꺼 줘", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "화장실"}, "split": "test"}
{"utterance": "스피커 볼륨 낮춰줘", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "십오 분 동안 멈춰", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"time": "십오 분"}, "split": "test"}
{"utterance": "현재 음악 별 다섯 개 줄래", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "자동차 관련 정보 찾아줘", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "자동차"}, "split": "test"}
{"utterance": "평일 아홉 시에 설정된 알람 삭제해줘", "expected_intent": "alarm:alarm_remove", "expected_slots": {"date": "평일", "time": "아홉 시에"}, "split": "test"}
{"utterance": "불 낮춰줘", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "나는 중국 음식을 포장 주문하고 싶다", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "중국 음식을", "order_type": "포장"}, "split": "test"}
{"utterance": "음악 소리 없애줘", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "소리 끄기", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "샤오미 로봇 청소기 작동시켜줘", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "샤오미 로봇 청소기"}, "split": "test"}
{"utterance": "경기도 용인 에 지금 날씨 어때", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "경기도 용인"}, "split": "test"}
{"utterance": "내 가 가장 좋아하는 랩 음악 플레이리스트 에 올려주세요", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "랩"}, "split": "test"}
{"utterance": "지금 듣고 있는 노래는 누가 부른거야", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "내가 이번 주말 비행 을 위해 설정한 알람 기상 시간이 언제야", "expected_intent": "alarm:alarm_query", "expected_slots": {"date": "이번 주말", "alarm_type": "기상"}, "split": "test"}
{"utterance": "조명 밝게 해줘", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "현재 설정된 알람 목록", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "현재 나열된 모든 알람", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "그것 다시 읽어", "expected_intent": "play:play_audiobook", "expected_slots": {}, "split": "test"}
{"utterance": "작년의 히트송 틀어줘", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "올해 한국대중음악상 수상한 노래들 듣고 싶어", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "댄스와 트로트 음악 듣고 싶어", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "댄스와 트로트"}, "split": "test"}
{"utterance": "이 곡 좋다고 파일에 그렇게 적어줄래", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "기온 알려줘", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "기온"}, "split": "test"}
{"utterance": "시간 말해줘", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "랩", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "랩"}, "split": "test"}
{"utterance": "멜로망스 의 인사 재생해주세요", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "멜로망스", "song_name": "인사"}, "split": "test"}
{"utterance": "아이튠즈 보관함 에서 첫 번째 노래 선택해주세요", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "아이튠즈 보관함"}, "split": "test"}
{"utterance": "오전 여섯시 알람 설정해줘", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "오전 여섯시"}, "split": "test"}
{"utterance": "조명 좀 꺼줄래", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "할로인이 무슨 요일이니", "expected_intent": "datetime:datetime_query", "expected_slots": {"event_name": "할로인이", "date": "요일이니"}, "split": "test"}
{"utterance": "설강화 어떻게 됐어", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "설강화"}, "split": "test"}
{"utterance": "먼지 깨끗하게 청소해줘", "expected_intent": "iot:iot_cleaning", "expected_slots": {}, "split": "test"}
{"utterance": "최근 알람들 지워줘", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "무슨 뉴스 있어", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "전원 꺼주세요", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "전원 꺼", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "스우파 재생", "expected_intent": "play:play_music", "expected_slots": {"song_name": "스우파"}, "split": "test"}
{"utterance": "내가 듣는 노래 중에 가장 많이 듣는 거 틀어", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "청소기 돌려", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "청소기"}, "split": "test"}
{"utterance": "맥도날드 딜리버리 찾아", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "맥도날드"}, "split": "test"}
{"utterance": "랩 음악 좀 듣고 싶어", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "랩"}, "split": "test"}
{"utterance": "오일 무슨 요일이야", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "오일"}, "split": "test"}
{"utterance": "주방 불 꺼 줘", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "주방"}, "split": "test"}
{"utterance": "내일 집에 운전해서 올 때 가게에 들러 음식 구하기 잊지 않도록 알람 설정하고 싶어", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "내일", "event_name": "가게에 들러 음식 구하기"}, "split": "test"}
{"utterance": "커피 만들어", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "좋은 가사", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "머리 맡 조명 꺼", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "내 스피커 볼륨 좀 키워줘", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 보령 날씨 어떨 것 같아", "expected_intent": "weather:weather_query", "expected_slots": {"date": "오늘", "place_name": "보령"}, "split": "test"}
{"utterance": "현재 시간을 g. m. t. 에서 e. s. t. 로 변환해줘", "expected_intent": "datetime:datetime_convert", "expected_slots": {"time_zone": "e. s. t."}, "split": "test"}
{"utterance": "셔플링한 재생 목록 틀어줘", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "셔플링한 재생 목록"}, "split": "test"}
{"utterance": "춘천에 있는 붕괴된 댐에 관한 모든 속보 알려줘", "expected_intent": "news:news_query", "expected_slots": {"place_name": "춘천에"}, "split": "test"}
{"utterance": "알람 몇 시로 설정했어", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "막걸리랑 보쌈 어디에서 먹을 수 있어", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"food_type": "막걸리랑 보쌈"}, "split": "test"}
{"utterance": "댄스 강습 리마인더 알람 맞춰져 있어", "expected_intent": "alarm:alarm_query", "expected_slots": {"event_name": "댄스 강습"}, "split": "test"}
{"utterance": "경기도 용인시 에 오늘 비가 올 확률이 얼마나 되는지 알려줘", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "경기도 용인시", "date": "오늘", "weather_descriptor": "비가 올"}, "split": "test"}
{"utterance": "커피소년 노래 틀어", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "커피소년"}, "split": "test"}
{"utterance": "교촌에서 포장 가능한지 확인해줄래", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "교촌에서", "order_type": "포장"}, "split": "test"}
{"utterance": "내가 오늘 어떤 알람 맞췄지", "expected_intent": "alarm:alarm_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "노래 너를 위해 재생해주세요", "expected_intent": "play:play_music", "expected_slots": {"song_name": "너를 위해"}, "split": "test"}
{"utterance": "내 와이파이 꺼 줘", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "볼륨 삼십오 퍼센트로 맞춰", "expected_intent": "audio:audio_volume_other", "expected_slots": {"change_amount": "삼십오 퍼센트로"}, "split": "test"}
{"utterance": "볼륨 레벨 최대로 바꿔", "expected_intent": "audio:audio_volume_other", "expected_slots": {"change_amount": "최대로"}, "split": "test"}
{"utterance": "경기도 날씨 좀 체크해봐줘", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "경기도"}, "split": "test"}
{"utterance": "주방 불 꺼 줘", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "주방"}, "split": "test"}
{"utterance": "진공 청소기 켜서 사용해", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "진공 청소기"}, "split": "test"}
{"utterance": "야 올리야 지금 조명 세팅 바꿔", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "전 세계 정치 최신 정치 헤드라인 말해줘", "expected_intent": "news:news_query", "expected_slots": {"place_name": "전 세계", "news_topic": "정치"}, "split": "test"}
{"utterance": "대통령 소식 있니", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "대통령"}, "split": "test"}
{"utterance": "현재 뉴욕 시간", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "뉴욕", "time_zone": "시간"}, "split": "test"}
{"utterance": "몇 시야", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "시리야 지금 몇 시야", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "지금 우리가 듣는 음악을 뭐라고 부르지", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "스마트 콘센트 켜 줘", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "스마트 콘센트"}, "split": "test"}
{"utterance": "비오 의 문득 듣고 싶어", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "비오", "song_name": "문득"}, "split": "test"}
{"utterance": "오늘 저녁 에 잔디를 깎을 수 있으려나", "expected_intent": "weather:weather_query", "expected_slots": {"timeofday": "오늘 저녁", "weather_descriptor": "잔디를 깎을"}, "split": "test"}
{"utterance": "들언것 중에 제일 재밌는 농담 말해줘", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "제일 재밌는"}, "split": "test"}
{"utterance": "엄청 재밌는 농담 듣고싶어", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "엄청 재밌는"}, "split": "test"}
{"utterance": "내 중국 음식 언제 배달 돼", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"food_type": "중국"}, "split": "test"}
{"utterance": "다음 주 일기 예보에 비 소식이 있었나", "expected_intent": "weather:weather_query", "expected_slots": {"date": "다음 주", "weather_descriptor": "비 소식이"}, "split": "test"}
{"utterance": "아이즈원 의 환상동화 재생", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "아이즈원", "song_name": "환상동화"}, "split": "test"}
{"utterance": "아직 오후 아닌가", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "샤오미 로봇 청소기 켜 줘", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "샤오미 로봇 청소기"}, "split": "test"}
{"utterance": "제발 말하지 말아 줘", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "올리 커피 좀 만들게 커피 머신 켜줘", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "커피 머신"}, "split": "test"}
{"utterance": "집 전체 불 파란색 으로 바꿔줘", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "파란색"}, "split": "test"}
{"utterance": "집 조명들 파랗게", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "파랗게"}, "split": "test"}
{"utterance": "집의 모든 조명 파랗게 만들 수 있어", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "집의", "color_type": "파랗게"}, "split": "test"}
{"utterance": "동부 표준 시로 지금 몇 시니", "expected_intent": "datetime:datetime_query", "expected_slots": {"time_zone": "동부 표준"}, "split": "test"}
{"utterance": "미국 동부 는 몇 시야", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "미국", "time_zone": "동부"}, "split": "test"}
{"utterance": "최신 뉴스 뭐야", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "오늘의 날씨는 어때", "expected_intent": "weather:weather_query", "expected_slots": {"date": "오늘의"}, "split": "test"}
{"utterance": "목록에서 다음 노래 로 이동", "expected_intent": "music:music_settings", "expected_slots": {"player_setting": "이동"}, "split": "test"}
{"utterance": "당장 커피 준비해", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "내 커피 차가운데 커피 더 만들어줄래", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "눈누난나 노래 틀어줘", "expected_intent": "play:play_music", "expected_slots": {"song_name": "눈누난나"}, "split": "test"}
{"utterance": "이 방 조명 높여줘", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "이 방"}, "split": "test"}
{"utterance": "오늘밤 에 재킷 가져가야 하려나", "expected_intent": "weather:weather_query", "expected_slots": {"timeofday": "오늘밤", "weather_descriptor": "재킷"}, "split": "test"}
{"utterance": "여기 조명 더 붉게 만들어", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "더 붉게"}, "split": "test"}
{"utterance": "십센치 의 노래 서랍 틀어줘", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "십센치", "song_name": "서랍"}, "split": "test"}
{"utterance": "영국 런던 은 몇 시간 후에 자정 이야", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "영국 런던", "time": "자정"}, "split": "test"}
{"utterance": "인천 기온이 십도 아래 로 떨어질까", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "인천", "weather_descriptor": "십도 아래"}, "split": "test"}
{"utterance": "내일 서울 에 비가 올까", "expected_intent": "weather:weather_query", "expected_slots": {"date": "내일", "place_name": "서울", "weather_descriptor": "비가 올까"}, "split": "test"}
{"utterance": "나는 내일 열 시 에 일어나야 해", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "내일", "time": "열 시"}, "split": "test"}
{"utterance": "내 페이스북 상태가 어때", "expected_intent": "social:social_query", "expected_slots": {"media_type": "페이스북"}, "split": "test"}
{"utterance": "중국 은 몇 시야", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "중국"}, "split": "test"}
{"utterance": "조명 꺼", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "켜져있는 조명 중지", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "나 있는 곳 날씨가 어때", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "좋은 소리 좀 들려줘", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "클리블랜드 는 몇 시야", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "클리블랜드"}, "split": "test"}
{"utterance": "모든 알람들 검토", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 밖에 날씨 어때", "expected_intent": "weather:weather_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "현재 날씨가 어떄", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "내일 날씨 어때", "expected_intent": "weather:weather_query", "expected_slots": {"date": "내일"}, "split": "test"}
{"utterance": "s. b. s 표제 뭐 있어", "expected_intent": "news:news_query", "expected_slots": {"media_type": "s. b. s"}, "split": "test"}
{"utterance": "네이버 뉴스에 실검 기사는 어떤 것들이 있어", "expected_intent": "news:news_query", "expected_slots": {"media_type": "네이버 뉴스에"}, "split": "test"}
{"utterance": "오늘 우산 가져가야 하나", "expected_intent": "weather:weather_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "강릉 날씨는 어때", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "강릉"}, "split": "test"}
{"utterance": "노래 뭐야", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "어떤 재킷 입어야 할까", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "재킷"}, "split": "test"}
{"utterance": "김포 날씨는 어때", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "김포"}, "split": "test"}
{"utterance": "세 시 에 커피 만들어", "expected_intent": "iot:iot_coffee", "expected_slots": {"time": "세 시"}, "split": "test"}
{"utterance": "세 시 에 커피 머신 시작", "expected_intent": "iot:iot_coffee", "expected_slots": {"time": "세 시", "device_type": "커피 머신"}, "split": "test"}
{"utterance": "오늘 오후 한 시 에 비가 올까", "expected_intent": "weather:weather_query", "expected_slots": {"date": "오늘", "time": "오후 한 시", "weather_descriptor": "비가 올까"}, "split": "test"}
{"utterance": "노래들 틀어줘", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "카페 페라 테이크아웃 안돼", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "카페 페라"}, "split": "test"}
{"utterance": "삼월에 토요일이 얼마나 있어", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "있어"}, "split": "test"}
{"utterance": "다음 노래 틀어", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 아침 에 우리집 진입로 삽질 해야 되나", "expected_intent": "weather:weather_query", "expected_slots": {"timeofday": "아침", "weather_descriptor": "진입로"}, "split": "test"}
{"utterance": "이번 주 일기 예보 알려줘", "expected_intent": "weather:weather_query", "expected_slots": {"date": "이번 주"}, "split": "test"}
{"utterance": "목요일 에 비가 오나", "expected_intent": "weather:weather_query", "expected_slots": {"date": "목요일", "weather_descriptor": "비가 오나"}, "split": "test"}
{"utterance": "문재인 관련 가장 최신 뉴스가 뭐지", "expected_intent": "news:news_query", "expected_slots": {"person": "문재인"}, "split": "test"}
{"utterance": "지역 최신 범죄 통계가 뭐야", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "범죄 통계가"}, "split": "test"}
{"utterance": "오늘 여성동아가 게시한 건 뭐야", "expected_intent": "news:news_query", "expected_slots": {"date": "오늘", "media_type": "여성동아가"}, "split": "test"}
{"utterance": "안녕 지금 런던 몇 시야", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "런던"}, "split": "test"}
{"utterance": "불 색상 바꿔줘", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "올리야 오늘 일기 예보 어때", "expected_intent": "weather:weather_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "슈프림 양념치킨 열둘 조각과 알트론 시즈닝과 사이다 주문해줘", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "슈프림 양념치킨", "drink_type": "사이다"}, "split": "test"}
{"utterance": "개 산책 플레이리스트 틀어", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "개 산책 플레이리스트"}, "split": "test"}
{"utterance": "나는 이영지 음악 좋아해", "expected_intent": "music:music_likeness", "expected_slots": {"artist_name": "이영지"}, "split": "test"}
{"utterance": "커피 좀 만들어 줄 수 있어", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "이거 무슨 노래 야", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "연합뉴스 t. v. 최신 헤드라인 좀 읽어줘", "expected_intent": "news:news_query", "expected_slots": {"media_type": "연합뉴스 t. v."}, "split": "test"}
{"utterance": "시카고 는 몇 시야", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "시카고"}, "split": "test"}
{"utterance": "내가 좋아하는 노래들 재생", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "스포츠 경기 알림 세팅해", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "스포츠 경기"}, "split": "test"}
{"utterance": "오후 다섯 시에 알려줘", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "오후 다섯 시에"}, "split": "test"}
{"utterance": "오늘의 주식 관련 정보 찾아줘", "expected_intent": "news:news_query", "expected_slots": {"date": "오늘의"}, "split": "test"}
{"utterance": "내일 기온 사십도보다 높을까", "expected_intent": "weather:weather_query", "expected_slots": {"date": "내일", "weather_descriptor": "기온 사십도보다 높을까"}, "split": "test"}
{"utterance": "스마트 콘센트 활성화", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "스마트 콘센트"}, "split": "test"}
{"utterance": "새 스마트 플러그 켜 줘", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "스마트 플러그"}, "split": "test"}
{"utterance": "네거티브 알렉사에서 볼륨 세팅 변경해", "expected_intent": "audio:audio_volume_other", "expected_slots": {}, "split": "test"}
{"utterance": "스피커 음소거 설정해", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "오전 여섯 시 삼십 분 알람 설정해", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "오전 여섯 시 삼십 분"}, "split": "test"}
{"utterance": "말하지 마", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "알렉사야 y. t. n. 뉴스 좀", "expected_intent": "news:news_query", "expected_slots": {"media_type": "y. t. n."}, "split": "test"}
{"utterance": "현재 시간", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "이 노래 진짜 좋다", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "이 밴드는 최고야", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "내 모든 알람 나열해주세요", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "나 샌들 아니면 양말 신고 신발 신어야 할까", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "샌들 아니면 양말 신고 신발"}, "split": "test"}
{"utterance": "너 날씨 알아", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "헤이즈 노래 재생해줘", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "헤이즈"}, "split": "test"}
{"utterance": "구글 내 스피커 켜줘", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "올해 핼러윈 은 무슨 요일이야", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "올해", "event_name": "핼러윈"}, "split": "test"}
{"utterance": "내일 나 깨우지 마", "expected_intent": "alarm:alarm_remove", "expected_slots": {"date": "내일"}, "split": "test"}
{"utterance": "월요일 에 비가 올까", "expected_intent": "weather:weather_query", "expected_slots": {"date": "월요일", "weather_descriptor": "비가 올까"}, "split": "test"}
{"utterance": "남북한 국경에 관한 새로운 정보 있어", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "남북한 국경에"}, "split": "test"}
{"utterance": "이 시간대 의 시간 알려줘", "expected_intent": "datetime:datetime_query", "expected_slots": {"time_zone": "이 시간대"}, "split": "test"}
{"utterance": "어떤 알람들이 켜져 있는지 알려줘", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "올해 유월 이십칠일 인 내 생일 은 무슨 요일이야", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "유월 이십칠일", "event_name": "생일"}, "split": "test"}
{"utterance": "재킷 필요한가", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "재킷"}, "split": "test"}
{"utterance": "매일 커피 내려줘", "expected_intent": "iot:iot_coffee", "expected_slots": {"date": "매일"}, "split": "test"}
{"utterance": "위모 플러그 소켓 켜줘", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "위모 플러그 소켓"}, "split": "test"}
{"utterance": "불 다른 hue 로 바꿔줘", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "이 노래 대한 내 감정을 기억해", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "다른 도시 는 몇 시야", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "다른 도시"}, "split": "test"}
{"utterance": "조명 분홍색 으로 바꿔줘", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "분홍색"}, "split": "test"}
{"utterance": "스피커 볼륨 높여", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "데이타 지워줘", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "올리야 아무 소식이라도 있니", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "김현식 의 모든 음악 재생해", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "김현식"}, "split": "test"}
{"utterance": "내 위치랑 뉴욕 이랑 시차가 어떻게 돼", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "뉴욕"}, "split": "test"}
{"utterance": "삼십 분 후 깨워줘", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "삼십 분"}, "split": "test"}
{"utterance": "내 알람 설정했어", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "사운드 꺼줘", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "바깥 날씨 어때", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "취중고백 노래 넣어", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "현재 지역 시간 그리고 시간대를 검색해", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "도시 는 지금 몇 시야", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "도시"}, "split": "test"}
{"utterance": "이예준 노래 에 관한 나의 의견 저장", "expected_intent": "music:music_likeness", "expected_slots": {"artist_name": "이예준"}, "split": "test"}
{"utterance": "일본 현재 기상 재해 알림 설정해", "expected_intent": "calendar:calendar_set", "expected_slots": {"place_name": "일본", "event_name": "기상 재해"}, "split": "test"}
{"utterance": "머리 위 조명 어둡게 해", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {"house_place": "머리 위"}, "split": "test"}
{"utterance": "악동 뮤지션 노래 재생", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "악동 뮤지션"}, "split": "test"}
{"utterance": "이 농담 알아", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "바깥 기온", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "기온"}, "split": "test"}
{"utterance": "내 첫 번째 알람 꺼", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "나의 사운드트랙 틀어", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "나의 사운드트랙"}, "split": "test"}
{"utterance": "오늘 오후 세 시 삼십 분 알람 켜줘", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "오늘", "time": "오후 세 시 삼십 분"}, "split": "test"}
{"utterance": "지금 비가 오나", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "비가 오나"}, "split": "test"}
{"utterance": "반올림피자 주문 건 언제 도착해", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "반올림피자"}, "split": "test"}
{"utterance": "지금 몇 시인지 알고 싶어요", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "열차 사고 뉴스", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "열차 사고"}, "split": "test"}
{"utterance": "보고싶으신가요", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "이달 이십삼일 무슨 요일이야", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "이달 이십삼일"}, "split": "test"}
{"utterance": "산울림 음악", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "산울림"}, "split": "test"}
{"utterance": "내 스마트 플러그 끄고 싶어", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "스마트 플러그"}, "split": "test"}
{"utterance": "올해 대선에서 누가 이겼어", "expected_intent": "qa:qa_factoid", "expected_slots": {"date": "올해", "news_topic": "대선에서"}, "split": "test"}
{"utterance": "올리 비와 당신 재생해", "expected_intent": "play:play_music", "expected_slots": {"song_name": "비와 당신"}, "split": "test"}
{"utterance": "가장 웃긴 농담 은 뭐야", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "가장 웃긴"}, "split": "test"}
{"utterance": "그 곡 플레이어에 나오는 거 내가 좋아한다고 저장해", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "내가 마실 커피 한 잔 준비해줘", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "소케트 꺼", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "스피커 음소거 부탁해", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "다음 재생할 노래 로 이 노래 추가해", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "알람 몇 시로 설정되어 있어", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "이번 주 에 우산 필요할까", "expected_intent": "weather:weather_query", "expected_slots": {"date": "이번 주", "weather_descriptor": "우산"}, "split": "test"}
{"utterance": "평소 마시던 거 만들어줘", "expected_intent": "iot:iot_coffee", "expected_slots": {"coffee_type": "평소 마시던 거"}, "split": "test"}
{"utterance": "방 더 밝게 만들어줄래", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "방"}, "split": "test"}
{"utterance": "주식시장의 상승과 하락에 관련된 뉴스 말해줘", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "주식시장의 상승과 하락에"}, "split": "test"}
{"utterance": "커피 만들어 줄 수 있어", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "불 자연스럽게 해 줘", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "언제가 다음 금요일 십삼일 이지", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "금요일 십삼일"}, "split": "test"}
{"utterance": "오늘 날씨가 얼마나 춥나", "expected_intent": "weather:weather_query", "expected_slots": {"date": "오늘", "weather_descriptor": "춥나"}, "split": "test"}
{"utterance": "이번 주 날씨 어떨 것 같아", "expected_intent": "weather:weather_query", "expected_slots": {"date": "이번 주"}, "split": "test"}
{"utterance": "현재 날씨 어때", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "오후 열두 시 내 알람 설정", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "오후 열두 시"}, "split": "test"}
{"utterance": "알렉사 집 안의 불 낮춰 줘", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {"house_place": "집"}, "split": "test"}
{"utterance": "켜져있는 모든 장치 꺼 줘", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "새 알람 만들어", "expected_intent": "alarm:alarm_set", "expected_slots": {}, "split": "test"}
{"utterance": "팔십년대 의 노래들 들려주세요", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "팔십년대"}, "split": "test"}
{"utterance": "그 주 날씨 어땠지", "expected_intent": "weather:weather_query", "expected_slots": {"time": "주"}, "split": "test"}
{"utterance": "오전 여섯 시 새 알람", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "오전 여섯 시"}, "split": "test"}
{"utterance": "토요일 날씨 예보 어때", "expected_intent": "weather:weather_query", "expected_slots": {"date": "토요일"}, "split": "test"}
{"utterance": "축구 연습 알람 모두 취소해", "expected_intent": "alarm:alarm_remove", "expected_slots": {"alarm_type": "축구 연습"}, "split": "test"}
{"utterance": "알람 하나도 필요 없어", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "너를 생각해", "expected_intent": "play:play_music", "expected_slots": {"song_name": "너를 생각해"}, "split": "test"}
{"utterance": "기본 알람 설정되어 있는지 확인해 줘", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "무료 급식소의 재정에 대한 진실", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "독일 가는 여행 티켓 확정해줘", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "독일"}, "split": "test"}
{"utterance": "서울 은 몇 시인지 말해줘", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "서울"}, "split": "test"}
{"utterance": "내 록 밴드 플레이리스트 에서 노래 찾아줘", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "록 밴드 플레이리스트"}, "split": "test"}
{"utterance": "커피 머신 켜짐으로 설정해", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "커피 머신"}, "split": "test"}
{"utterance": "두 곡 건너뛰어", "expected_intent": "music:music_settings", "expected_slots": {"player_setting": "건너뛰어"}, "split": "test"}
{"utterance": "거실 불 꺼 줘", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "거실"}, "split": "test"}
{"utterance": "거실 조명 꺼 줘", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "거실"}, "split": "test"}
{"utterance": "시나위 앨범 에서 최신 노래 틀어주세요", "expected_intent": "play:play_music", "expected_slots": {"music_album": "시나위"}, "split": "test"}
{"utterance": "아티스트 엄정화 의 노래 들려줄 수 있어", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "엄정화"}, "split": "test"}
{"utterance": "마이클 잭슨 의 노래 틀어줄 수 있어", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "마이클 잭슨"}, "split": "test"}
{"utterance": "불 강도 낮춰 줘", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "이번 주 날씨 어떨 것 같아", "expected_intent": "weather:weather_query", "expected_slots": {"date": "이번 주"}, "split": "test"}
{"utterance": "브렉시트 에 대해서 알고 싶어", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "브렉시트"}, "split": "test"}
{"utterance": "이거 노래 별 다섯 개 매겨줘", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "이 노래 좋다고 내 생각 추가해", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "낮은 밝기 단계 로 내 조명 어둡게 해줘", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "마닐라 시간으로 오전 여덟시 를 뉴욕 시간으로 바꿔줘", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "뉴욕", "time": "오전 여덟시"}, "split": "test"}
{"utterance": "스피커 볼륨 줄여줘", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "스피커 진동 끄기", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "다음 수요일 은 무슨 요일이야", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "수요일"}, "split": "test"}
{"utterance": "내가 음악 좋아해", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "시리야 욕실 조명 꺼", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "욕실"}, "split": "test"}
{"utterance": "환경 뉴스 알림 설정해줘", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "환경"}, "split": "test"}
{"utterance": "노래 제목", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "이 노래 플레이리스트에 저장해", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "이거 양희은 노래 야", "expected_intent": "music:music_query", "expected_slots": {"artist_name": "양희은"}, "split": "test"}
{"utterance": "현재 속보가 뭐야", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "케이팝 믹스 음악 만 재생해줘요", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "케이팝 믹스"}, "split": "test"}
{"utterance": "뮤직 플레이어 에서 슬픈 노래 만 틀어줘", "expected_intent": "play:play_music", "expected_slots": {"device_type": "뮤직 플레이어", "music_descriptor": "슬픈"}, "split": "test"}
{"utterance": "이민 관련 k. b. s. 뉴스 보여 줘", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "이민", "media_type": "k. b. s."}, "split": "test"}
{"utterance": "알람 정해", "expected_intent": "alarm:alarm_set", "expected_slots": {}, "split": "test"}
{"utterance": "올리야 s. b. s. 에서 인기있는 뉴스 가져와", "expected_intent": "news:news_query", "expected_slots": {"media_type": "s. b. s."}, "split": "test"}
{"utterance": "인기 많은 s. b. s. 뉴스 알려줘", "expected_intent": "news:news_query", "expected_slots": {"media_type": "s. b. s."}, "split": "test"}
{"utterance": "이천십칠년 삼월 이십일 의 날씨는 어때", "expected_intent": "weather:weather_query", "expected_slots": {"date": "이천십칠년 삼월 이십일"}, "split": "test"}
{"utterance": "오늘이 삼월 이십일 야", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "오늘이 삼월 이십일"}, "split": "test"}
{"utterance": "로제의 노래만 재생해줘", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "로제의"}, "split": "test"}
{"utterance": "날씨 보여줘", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "헤이 집 배달 있나요", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "배달"}, "split": "test"}
{"utterance": "락", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "락"}, "split": "test"}
{"utterance": "청소기 지금 켜서 거실 청소해", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "청소기", "house_place": "거실"}, "split": "test"}
{"utterance": "미국 과 한국 의 시차", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "한국"}, "split": "test"}
{"utterance": "한국 과 중국 의 시차", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "중국"}, "split": "test"}
{"utterance": "낮은 냉각 조건", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "시간을 알려줘", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "테크노 음악 틀어", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "테크노"}, "split": "test"}
{"utterance": "조명 조금 어둡게 해줘", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "현재 시간 업데이트", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "알람 오전 여섯 시 로 설정해줘", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "오전 여섯 시"}, "split": "test"}
{"utterance": "가장 최근 윤석열 논란 뭐야", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "윤석열 논란"}, "split": "test"}
{"utterance": "s.", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "플러그 꺼 줘", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "음악", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "드렁킨타이 포장 해", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "드렁킨타이", "order_type": "포장"}, "split": "test"}
{"utterance": "경향신문 최신 헤드라인 읽어줘", "expected_intent": "news:news_query", "expected_slots": {"media_type": "경향신문"}, "split": "test"}
{"utterance": "k. b. s.의 탑 뉴스는 뭐야", "expected_intent": "news:news_query", "expected_slots": {"media_type": "k. b. s.의"}, "split": "test"}
{"utterance": "음악 틀어줘", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "음악 틀어줄래", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "지금 캐나다 는 몇 시야", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "캐나다"}, "split": "test"}
{"utterance": "나중에 비가 올까", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "비가 올까"}, "split": "test"}
{"utterance": "밤 에 우산 필요할까", "expected_intent": "weather:weather_query", "expected_slots": {"timeofday": "밤", "weather_descriptor": "우산"}, "split": "test"}
{"utterance": "오늘 샌들 신어도 되나", "expected_intent": "weather:weather_query", "expected_slots": {"date": "오늘", "weather_descriptor": "샌들"}, "split": "test"}
{"utterance": "선글라스 챙겨야 하나", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "선글라스"}, "split": "test"}
{"utterance": "나 오전 여섯시 에 깨워줘야 해", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "오전 여섯시"}, "split": "test"}
{"utterance": "볼륨 줄여", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "배달 피자 주문해", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"order_type": "배달", "food_type": "피자"}, "split": "test"}
{"utterance": "서울 이랑 캘리포니아 시차 어떻게 돼", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "캘리포니아"}, "split": "test"}
{"utterance": "모든 조명 켜주세요", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"device_type": "모든 조명"}, "split": "test"}
{"utterance": "여덟시 반을 그리니치 시간 기준 네시에서 다섯시 반으로 환산한다", "expected_intent": "datetime:datetime_convert", "expected_slots": {"time": "여덟시 반을", "time_zone": "그리니치 시간 기준 네시에서 다섯시 반으로"}, "split": "test"}
{"utterance": "현재 날씨", "expected_intent": "weather:weather_query", "expected_slots": {"time": "현재"}, "split": "test"}
{"utterance": "한 시간 동안 음소거해", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"time": "한 시간"}, "split": "test"}
{"utterance": "몇시에 하이킹 가야 되지", "expected_intent": "weather:weather_query", "expected_slots": {"event_name": "하이킹"}, "split": "test"}
{"utterance": "배경 노래 완전 좋다", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "이 노래 감독이 누구야", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "아무 소리도 내지 마", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "배달 가장 빨리 하는 곳이 어디야", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "배달"}, "split": "test"}
{"utterance": "스텐딩 에그 노래야", "expected_intent": "music:music_query", "expected_slots": {"artist_name": "스텐딩 에그"}, "split": "test"}
{"utterance": "레게 듣고 싶어", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "레게"}, "split": "test"}
{"utterance": "다음 일요일 오전 아홉 시 알람 설정", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "다음 일요일", "time": "오전 아홉 시"}, "split": "test"}
{"utterance": "음식 찾아서 주문해", "expected_intent": "takeaway:takeaway_order", "expected_slots": {}, "split": "test"}
{"utterance": "주방 밝기 적절하게 설정 해주세요", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "주방"}, "split": "test"}
{"utterance": "거실 불 밝게 해줘", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "거실"}, "split": "test"}
{"utterance": "저녁에 너무 바람이 많이 불면 엄청 두꺼운 자켓 입어야 해", "expected_intent": "weather:weather_query", "expected_slots": {"timeofday": "저녁에", "weather_descriptor": "너무 바람이 많이 불면 엄청 두꺼운 자켓"}, "split": "test"}
{"utterance": "겨울 아침에는 두꺼운 양말이 필요해", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "두꺼운 양말이", "timeofday": "아침에는"}, "split": "test"}
{"utterance": "볼륨 바꿔줄래", "expected_intent": "audio:audio_volume_other", "expected_slots": {}, "split": "test"}
{"utterance": "불 꺼 줘", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "오픈 온도", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "온도"}, "split": "test"}
{"utterance": "블랙핑크 의 휘파람 틀어줘", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "블랙핑크", "song_name": "휘파람"}, "split": "test"}
{"utterance": "음악 가격 전부 확인", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"food_type": "음악"}, "split": "test"}
{"utterance": "볼륨 낮춰", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "지금 라디오 에 뭐 나와", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "네가 연주하는 곡 제목을 알려줘", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "이전 곡 틀어줘", "expected_intent": "play:play_music", "expected_slots": {"music_descriptor": "이전", "song_name": "곡"}, "split": "test"}
{"utterance": "오전 열 시 알람", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "오전 열 시"}, "split": "test"}
{"utterance": "beatles 노래 재생해줘", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "beatles"}, "split": "test"}
{"utterance": "나 아침 여섯 시 에 일어나야 한다는 점 명심해", "expected_intent": "alarm:alarm_set", "expected_slots": {"timeofday": "아침", "time": "여섯 시"}, "split": "test"}
{"utterance": "날짜 표시", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 밤 날씨에 대해 묻기", "expected_intent": "weather:weather_query", "expected_slots": {"date": "오늘", "timeofday": "밤"}, "split": "test"}
{"utterance": "스마트 플러그 꺼", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "스마트 플러그"}, "split": "test"}
{"utterance": "비틀즈 의 음악 재생해줘", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "비틀즈"}, "split": "test"}
{"utterance": "지금 비옷 챙겨야 하나", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "비옷"}, "split": "test"}
{"utterance": "라스베이거스 는 몇 시야", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "라스베이거스"}, "split": "test"}
{"utterance": "팔월 십오일 은 무슨 요일이야", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "팔월 십오일"}, "split": "test"}
{"utterance": "내 파티 노래 플레이리스트 틀어", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "파티 노래"}, "split": "test"}
{"utterance": "뉴스 헤드라인 말해 줄래", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "공일오비 별점", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "청소기 돌리기 시작", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "청소기 돌리기"}, "split": "test"}
{"utterance": "지금 시간", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "내가 좋아하는 노래들 듣기", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "이 지역 내일의 날씨 보여줘", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "이 지역", "date": "내일의"}, "split": "test"}
{"utterance": "이번 주 주간 예보 알려줘", "expected_intent": "weather:weather_query", "expected_slots": {"date": "이번 주", "weather_descriptor": "주간 예보"}, "split": "test"}
{"utterance": "현관 불 밝게 해 줘", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "현관"}, "split": "test"}
{"utterance": "조만간 자동차 바퀴를 스노우 타이어 로 바꿀까", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "스노우 타이어"}, "split": "test"}
{"utterance": "두시 십오분 전", "expected_intent": "datetime:datetime_query", "expected_slots": {"time": "두시 십오분 전"}, "split": "test"}
{"utterance": "수도 의 날씨는 어때", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "수도"}, "split": "test"}
{"utterance": "현재 서울 시간", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "서울"}, "split": "test"}
{"utterance": "밖에 나가기 전에 비옷 걸쳐야 하나", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "비옷"}, "split": "test"}
{"utterance": "기본 오디오 설정 지정", "expected_intent": "audio:audio_volume_other", "expected_slots": {}, "split": "test"}
{"utterance": "조용한 노래 재생", "expected_intent": "play:play_music", "expected_slots": {"song_name": "조용한"}, "split": "test"}
{"utterance": "블핑 의 휘파람", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "블핑", "song_name": "휘파람"}, "split": "test"}
{"utterance": "이십 프로 줄여", "expected_intent": "audio:audio_volume_down", "expected_slots": {"change_amount": "이십 프로"}, "split": "test"}
{"utterance": "이번 주의 날씨 알려줘", "expected_intent": "weather:weather_query", "expected_slots": {"date": "이번 주의"}, "split": "test"}
{"utterance": "롯데리아에서 음식 좀 주문해야 해", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"business_name": "롯데리아에서"}, "split": "test"}
{"utterance": "스마트 콘센트 꺼", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "스마트 콘센트"}, "split": "test"}
{"utterance": "오늘 부산 날씨 어때", "expected_intent": "weather:weather_query", "expected_slots": {"date": "오늘", "weather_descriptor": "부산 날씨"}, "split": "test"}
{"utterance": "인기 있는 주제", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "꺼주세요", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "오전 여섯시에 알람 있어", "expected_intent": "alarm:alarm_query", "expected_slots": {"time": "오전 여섯시에"}, "split": "test"}
{"utterance": "좋은 날 다시 재생", "expected_intent": "music:music_settings", "expected_slots": {"player_setting": "다시 재생"}, "split": "test"}
{"utterance": "이 음악에서 현재 노래들 삭제해", "expected_intent": "music:music_settings", "expected_slots": {}, "split": "test"}
{"utterance": "커피 내려줘", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "서울 백신패스 가장 최근에 업데이트 된게 뭐니", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "서울 백신패스"}, "split": "test"}
{"utterance": "조선일보의 속보", "expected_intent": "news:news_query", "expected_slots": {"media_type": "조선일보의"}, "split": "test"}
{"utterance": "내 플레이리스트 에서 좋은 음악 좀 들려줘", "expected_intent": "play:play_music", "expected_slots": {"music_descriptor": "좋은 음악"}, "split": "test"}
{"utterance": "지금 재밌는 농담 좀 해봐", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "재밌는"}, "split": "test"}
{"utterance": "도시 가 살기에 더 저렴하니 비싸니", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "도시"}, "split": "test"}
{"utterance": "법 관련해서 그 도시는 안전한 편이야", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "제발 말하지 마", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "음식을 좀 주문해 줘", "expected_intent": "takeaway:takeaway_order", "expected_slots": {}, "split": "test"}
{"utterance": "하루만 더 틀어줬으면 해", "expected_intent": "play:play_music", "expected_slots": {"song_name": "하루만 더"}, "split": "test"}
{"utterance": "나 정오 에 약 먹으라고 알람 설정했나", "expected_intent": "alarm:alarm_query", "expected_slots": {"timeofday": "정오", "event_name": "약 먹으라고"}, "split": "test"}
{"utterance": "y. t. n. 최신 뉴스 보여줘", "expected_intent": "news:news_query", "expected_slots": {"media_type": "y. t. n."}, "split": "test"}
{"utterance": "불 어두운 설정 으로 조정해줘", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 오후 에 스노우 부츠 필요할까", "expected_intent": "weather:weather_query", "expected_slots": {"timeofday": "오늘 오후", "weather_descriptor": "스노우 부츠"}, "split": "test"}
{"utterance": "한국표준 시로 몇 시야", "expected_intent": "datetime:datetime_query", "expected_slots": {"time_zone": "한국표준"}, "split": "test"}
{"utterance": "라디오에 이 사람 누구야", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "이 가수 누구야", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "불 밝기 줄여줘", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "오늘은 무더운 밤 이 될까", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "무더운", "timeofday": "밤"}, "split": "test"}
{"utterance": "오늘 스웨터를 입을까 아님 코트를 입을까", "expected_intent": "weather:weather_query", "expected_slots": {"date": "오늘", "weather_descriptor": "코트를"}, "split": "test"}
{"utterance": "오늘 오후 에 선크림 필요할까", "expected_intent": "weather:weather_query", "expected_slots": {"timeofday": "오늘 오후", "weather_descriptor": "선크림"}, "split": "test"}
{"utterance": "좋아하는 노래들 틀어줘", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "커피", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "내일 비가 오나", "expected_intent": "weather:weather_query", "expected_slots": {"date": "내일", "weather_descriptor": "비가 오나"}, "split": "test"}
{"utterance": "올리 조명 꺼 주세요", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "선택한 노래 추가", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "나중에 선크림 필요할까", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "선크림"}, "split": "test"}
{"utterance": "내가 차고 조명 켜놨어", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "차고"}, "split": "test"}
{"utterance": "랩 음악 재생", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "랩"}, "split": "test"}
{"utterance": "커피 포트 켜 줘", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "커피 포트"}, "split": "test"}
{"utterance": "커피 만들어", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "한 시간 동안 말하지 말아", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"time": "한 시간"}, "split": "test"}
{"utterance": "오늘 폭풍 이 올까", "expected_intent": "weather:weather_query", "expected_slots": {"date": "오늘", "weather_descriptor": "폭풍"}, "split": "test"}
{"utterance": "미스터피자에서 음식을 가지러 오려면 몇 분 정도 기다려야 하나요", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "미스터피자에서"}, "split": "test"}
{"utterance": "현관 불 꺼 줘", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "현관"}, "split": "test"}
{"utterance": "밤 아홉 시 반 에 안방 조명 꺼 줘", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"time": "아홉 시 반", "house_place": "안방"}, "split": "test"}
{"utterance": "오늘 최신 세계 소식 듣고 싶어", "expected_intent": "news:news_query", "expected_slots": {"date": "오늘", "place_name": "세계"}, "split": "test"}
{"utterance": "오늘 오전 열시 에 알람 생성", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "오늘", "time": "오전 열시"}, "split": "test"}
{"utterance": "선루프 열어야 할까", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "선루프 열어야"}, "split": "test"}
{"utterance": "현재 설정된 알람 뭐 있어", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "전라북도 남원 오늘 날씨는 어때", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "전라북도 남원", "date": "오늘"}, "split": "test"}
{"utterance": "곡 에 관한 스토어 의견", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "헤이 중국집에서 탕수육이랑 군만두 두 개를 주문하세요", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"business_name": "중국집에서", "food_type": "탕수육이랑 군만두"}, "split": "test"}
{"utterance": "이번 주 날씨 정보", "expected_intent": "weather:weather_query", "expected_slots": {"date": "이번 주"}, "split": "test"}
{"utterance": "텍사스 댈러스 는 지금 몇 시야", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "텍사스 댈러스"}, "split": "test"}
{"utterance": "오늘 우산 들고 갈까", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "우산"}, "split": "test"}
{"utterance": "세계 뉴스 계속 보고 해줘", "expected_intent": "news:news_query", "expected_slots": {"place_name": "세계"}, "split": "test"}
{"utterance": "이 노래 제목 찾아줘", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "재밌는 농담 찾아봐", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "재밌는"}, "split": "test"}
{"utterance": "오늘의 날씨 알려줘", "expected_intent": "weather:weather_query", "expected_slots": {"date": "오늘의"}, "split": "test"}
{"utterance": "바닥 청소 해줘", "expected_intent": "iot:iot_cleaning", "expected_slots": {"house_place": "바닥"}, "split": "test"}
{"utterance": "알람 지워 줘", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "오분 동안 음소거", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"time": "오분"}, "split": "test"}
{"utterance": "오늘 선글라스 쓰기 좋은 날인가", "expected_intent": "weather:weather_query", "expected_slots": {"date": "오늘", "weather_descriptor": "선글라스"}, "split": "test"}
{"utterance": "여기 더 밝게 해 줘", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 우산 필요할까", "expected_intent": "weather:weather_query", "expected_slots": {"date": "오늘", "weather_descriptor": "우산"}, "split": "test"}
{"utterance": "자켓 입어야 할까", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "자켓"}, "split": "test"}
{"utterance": "올리야 보고 싶었어", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 날씨 어때", "expected_intent": "weather:weather_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "무슨 생각 해", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "올리 나 오늘 하루 종일 일만 했어", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "헤이 오늘 내 회의에 대해 더 말해 줘", "expected_intent": "general:general_quirky", "expected_slots": {"date": "오늘", "event_name": "회의에"}, "split": "test"}
{"utterance": "돌아오는 내 친구 생일이 언제지", "expected_intent": "general:general_quirky", "expected_slots": {"relation": "친구", "event_name": "생일이"}, "split": "test"}
{"utterance": "이 질문에 대해 네가 쓴 내용을 확인해 줘", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "당신이 한 두 단어로 질문하면 어떻게 답해야할지 모르겠습니다", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "나 오늘 일 나갈꺼야", "expected_intent": "general:general_quirky", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "오늘 하루는 별로였어", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "올리야 나 오늘 도움이 필요한 가난한 사람을 도왔어", "expected_intent": "general:general_quirky", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "콘서트 티켓 얻어서 오늘 너무 행복해", "expected_intent": "general:general_quirky", "expected_slots": {"event_name": "콘서트", "date": "오늘"}, "split": "test"}
{"utterance": "너 몇살이야", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "당신의 이름은 무엇인가요", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "만약 네가 세 명을 살리기 위해 한 명의 사람을 죽여야 된다면 할거야 그리고 이유가 뭐야", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "채팅하자", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "나 일어나자마자 밥 먹었어", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 날씨 어때", "expected_intent": "weather:weather_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "읽을 책 추천해줘", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "헤이 올리 나 오늘 오래된 동창생 친구 만났어", "expected_intent": "general:general_quirky", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "올리 나 방금 차 청소했어", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "교통 체증 이 오래 지속되는게 싫어", "expected_intent": "general:general_quirky", "expected_slots": {"time": "오래"}, "split": "test"}
{"utterance": "고사리 나물이 뭐야", "expected_intent": "general:general_quirky", "expected_slots": {"food_type": "고사리 나물이"}, "split": "test"}
{"utterance": "오늘 기분 어때", "expected_intent": "general:general_quirky", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "너 오늘 뭐 하고 싶어", "expected_intent": "general:general_quirky", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "나 오늘 불독 봤어", "expected_intent": "general:general_quirky", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "넌 내가 오늘 극장에 가야한다고 생각하니", "expected_intent": "general:general_quirky", "expected_slots": {"date": "오늘", "place_name": "극장에"}, "split": "test"}
{"utterance": "그 경기 점수를 알려주세요", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "하루가 너무 힘들었어", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "나 야구 프리시즌 티켓 샀어", "expected_intent": "general:general_quirky", "expected_slots": {"event_name": "야구 프리시즌"}, "split": "test"}
{"utterance": "올리 내 하루에 대해 너에게 말해야만 해", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "그 상점에 갔었어", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "나 가스 사야해", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "미국에서 가장 최고의 관광지 알려줘", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"place_name": "최고의 관광지"}, "split": "test"}
{"utterance": "내 다음 주 어떻게 되나요", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "다음 주"}, "split": "test"}
{"utterance": "채식주의", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "식물 기반 뉴스", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "식물 기반"}, "split": "test"}
{"utterance": "이천 십육년부터 가장 좋은 이란 영화는 뭐야", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"date": "이천 십육년부터"}, "split": "test"}
{"utterance": "내 데이터랑 정보로 넌 뭘 하니", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "최근 스포츠계에서 일어난 흥미로운 일에는 뭐가 있어", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "장래에 어떤 걸 특징으로 출시하니", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "내 하루는 좋았어", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "건강에 관한 팁 줘", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "어딘가로 가는 법", "expected_intent": "transport:transport_query", "expected_slots": {}, "split": "test"}
{"utterance": "개가 어떻게 짖어", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 프랑스에서는 무슨 일이 일어났어", "expected_intent": "news:news_query", "expected_slots": {"date": "오늘", "place_name": "프랑스에서는"}, "split": "test"}
{"utterance": "다음주 수요일 날씨 어때", "expected_intent": "weather:weather_query", "expected_slots": {"date": "수요일"}, "split": "test"}
{"utterance": "내 하루는 잘 지나가는 중이라고 메모 추가해", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "안녕 오늘 하루 어땠어", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "기술", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "나 오늘 호철이랑 미팅했어", "expected_intent": "general:general_quirky", "expected_slots": {"date": "오늘", "person": "호철이랑", "event_name": "미팅했어"}, "split": "test"}
{"utterance": "나 오늘 철수 랑 미팅 있었는데 이런 일이 있었어", "expected_intent": "general:general_quirky", "expected_slots": {"date": "오늘", "person": "철수", "event_name": "미팅"}, "split": "test"}
{"utterance": "오늘 영호랑 미팅 있었어", "expected_intent": "general:general_quirky", "expected_slots": {"person": "영호랑", "event_name": "미팅"}, "split": "test"}
{"utterance": "당신에 대해 조금 알려주세요", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "나 오늘 하루종일 핸드폰 찾았는데도 못 찾았어", "expected_intent": "general:general_quirky", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "요즘 좋은 음악 들은 거 있어", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "동네에 고양이 전용 미용사가 있나요", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "트럼프", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "너 똑똑해", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "네 맘에 있는 아무거나", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 날씨 안좋았어", "expected_intent": "general:general_quirky", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "농구경기 점수", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 내가 좋아하는 것", "expected_intent": "general:general_quirky", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "인터넷 검색", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "조언 부탁해요", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "새로운 제품", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "소셜 미디어", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "개가 나를 쫓아왔었어", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "사소한 질문을 해줘", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 하루 어땠어", "expected_intent": "general:general_quirky", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "바쁜 하루였니", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "역사", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "너 행복해", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "오늘부터 다이어트 시작 추가", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "오늘부터", "event_name": "다이어트 시작"}, "split": "test"}
{"utterance": "소프트 치즈가 딱딱한 치즈보다 나아", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "소프트 치즈가"}, "split": "test"}
{"utterance": "나 오늘 승진했어 기분 너무 좋아", "expected_intent": "general:general_quirky", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "비디오 틀어", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "헤이 올리 여자 친구 있어", "expected_intent": "general:general_quirky", "expected_slots": {"relation": "여자 친구"}, "split": "test"}
{"utterance": "인터넷으로 정보를 찾아줘", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "수학", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "당신이 자각하게 되면 저에게 무슨일이 생기나요", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "너 남자친구 있어", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "식물", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "사랑", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "안녕 너 거기 있니", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "험담 시작해", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "내가 오늘 갔던 곳", "expected_intent": "general:general_quirky", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "내가 이 곳 에서 돌아왔을 때", "expected_intent": "general:general_quirky", "expected_slots": {"place_name": "이 곳"}, "split": "test"}
{"utterance": "건강", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "양육", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "너 몇 살이야", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "미래에 대해 어떻게 생각해", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "재밌는 뉴스 알려줘", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "영화관 최신 영화", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "너 누가 개발했어", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "비디오 게임", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "내 지역의 디지털 마케팅에서 가장 보수가 좋은 일", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "당신 n. s. a. 에서 일하나요", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 구글에서 탑 검색어가 뭐야", "expected_intent": "general:general_quirky", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "알렉사 너 나에 대해 얼마만큼 알아", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "식이요법에 집착하기", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "휴가 스포츠", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "너 좋은 뜨개질 패턴 아는 거 있니", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "나에게 달콤한 말을 해줘", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "선거", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "경제 문제", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "헤이 나 오늘 일진이 안 좋아 기분 업시키기 위해 무엇을 봐야할까", "expected_intent": "general:general_quirky", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "일반적인 건강 팁", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "친구 업데이트", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "너 진짜니", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "수요일 비지니스 미팅 취소해", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "수요일", "event_name": "비지니스 미팅"}, "split": "test"}
{"utterance": "너는 내년에 있을 여의도 벗꽃 축제에 대해 뭘 알아", "expected_intent": "general:general_quirky", "expected_slots": {"date": "내년에", "place_name": "여의도", "event_name": "벗꽃 축제에"}, "split": "test"}
{"utterance": "나에게 알려줄 리마인더 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "내 오후 일정 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"timeofday": "오후"}, "split": "test"}
{"utterance": "다음 미팅 삭제", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "미팅"}, "split": "test"}
{"utterance": "지은이네 집 아침 식사 취소해", "expected_intent": "calendar:calendar_remove", "expected_slots": {"place_name": "지은이네 집", "meal_type": "아침"}, "split": "test"}
{"utterance": "일요일 시부모와 만나기 리마인더 추가해", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "일요일", "relation": "시부모와", "event_name": "만나기"}, "split": "test"}
{"utterance": "올리 나 내일 모레 휴무야", "expected_intent": "general:general_quirky", "expected_slots": {"date": "모레"}, "split": "test"}
{"utterance": "내일 오전 열시 남준 하고 미팅 설정해", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "내일", "time": "오전 열시", "person": "남준", "event_name": "미팅"}, "split": "test"}
{"utterance": "내 캘린더에서 유월 첫 주 휴일로 저장해줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "유월 첫 주", "event_name": "휴일로"}, "split": "test"}
{"utterance": "리마인더 몇 개 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "내 달력 깨끗이 해 줘", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "오전 아홉시 내 달력에서 미팅 삭제해", "expected_intent": "calendar:calendar_remove", "expected_slots": {"time": "오전 아홉시", "event_name": "미팅"}, "split": "test"}
{"utterance": "창문 닦기 리마인드해 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "창문 닦기"}, "split": "test"}
{"utterance": "금요일 일정 세팅해", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "금요일"}, "split": "test"}
{"utterance": "다음 리마인더는 뭐야", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "토요일 오후 네시 서윤 하고 미팅 설정해", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "토요일", "time": "오후 네시", "person": "서윤"}, "split": "test"}
{"utterance": "다음 내 일정 삭제해", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "이번 금요일 미팅 보여줘", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "이번 금요일"}, "split": "test"}
{"utterance": "내 캘린더에서 이번 주 금요일 오후 이벤트 보여 줘", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "이번 주 금요일", "timeofday": "오후"}, "split": "test"}
{"utterance": "엄마의 생일 일주일 전 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"relation": "엄마의", "event_name": "생일", "time": "일주일 전"}, "split": "test"}
{"utterance": "오늘밤 아홉시에 재즈바 밴드 연주 잘 하는 팀 오나", "expected_intent": "calendar:calendar_set", "expected_slots": {"timeofday": "오늘밤", "time": "아홉시에", "place_name": "재즈바", "event_name": "밴드 연주"}, "split": "test"}
{"utterance": "내일 여섯시 미팅 리마인드해 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "내일", "time": "여섯시", "event_name": "미팅"}, "split": "test"}
{"utterance": "오늘 내 일정 나열해 줘", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "내일 오전 열시 미팅 관련해서 리마인더 알림 보내줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "내일", "time": "오전 열시", "event_name": "미팅"}, "split": "test"}
{"utterance": "다가오는 일정 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "내일 열시 미팅 관해서 알림 설정해", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "내일", "time": "열시", "event_name": "미팅"}, "split": "test"}
{"utterance": "금요일 오후 두시 반 회계부서 미팅 일정 잡아줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "금요일", "time": "오후 두시 반", "business_name": "회계부서", "event_name": "미팅"}, "split": "test"}
{"utterance": "가능한 아침 프로그램 있나", "expected_intent": "calendar:calendar_query", "expected_slots": {"timeofday": "아침", "event_name": "프로그램"}, "split": "test"}
{"utterance": "영화 스케쥴 알려줘", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "영화"}, "split": "test"}
{"utterance": "칠일 저녁 다섯시에 지현 데려오기 리마인드해 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "칠일", "timeofday": "저녁", "time": "다섯시에", "person": "지현", "event_name": "데려오기"}, "split": "test"}
{"utterance": "내일 오전 열시 미팅 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "내일", "time": "오전 열시", "event_name": "미팅"}, "split": "test"}
{"utterance": "다음 달 오일 교환 리마인더 설정해", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "다음 달", "event_name": "오일 교환"}, "split": "test"}
{"utterance": "오후 한시에서 세시 사이에 무슨 일 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "오후 한시에서 세시 사이에"}, "split": "test"}
{"utterance": "캘린더에서 일정들 지워", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "화요일 아침 서류 인쇄 리마인더 설정해", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "화요일", "timeofday": "아침", "event_name": "서류 인쇄"}, "split": "test"}
{"utterance": "오늘 금요일 이야", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "금요일"}, "split": "test"}
{"utterance": "이벤트 모두 지워", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "오전 아홉시 약 먹으라고 리마인더 해 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "오전 아홉시", "event_name": "약"}, "split": "test"}
{"utterance": "정오에 사장님과 점심 리마인더 세팅해", "expected_intent": "calendar:calendar_set", "expected_slots": {"timeofday": "정오에", "event_name": "사장님과 점심"}, "split": "test"}
{"utterance": "다음 수요일 미팅들 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "수요일", "event_name": "미팅들"}, "split": "test"}
{"utterance": "내 달력 상에 이벤트 없는 거 확인해 줘", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "미팅 시작 한 시간 전에 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "미팅", "time": "한 시간"}, "split": "test"}
{"utterance": "다음 주 토요일 오후 여섯시 나 뭐 해야 하는지 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "토요일", "time": "오후 여섯시"}, "split": "test"}
{"utterance": "사장님이랑 미팅 한 시간 전에 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"relation": "사장님이랑", "event_name": "미팅", "time": "한 시간"}, "split": "test"}
{"utterance": "이 이슈에 관한 팩트를 체크해줄 수 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 미팅 초대 다 했는지 확인해 줘", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "오늘", "event_name": "미팅"}, "split": "test"}
{"utterance": "내일 서울 회의 리마인더 추가해", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "내일", "place_name": "서울", "event_name": "회의"}, "split": "test"}
{"utterance": "나 내일 서울 에서 일 있다고 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "내일", "place_name": "서울", "event_name": "일"}, "split": "test"}
{"utterance": "투 두 리스트 보여줘", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "앞으로의 이벤트들 보여줘", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "계속되는 이벤트 삭제", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "새 이벤트", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "캘린더에 매년 이 날짜 리마인더 추가해", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "매년"}, "split": "test"}
{"utterance": "이벤트 언제 시작하니", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "오늘의 이벤트들 일정 보여줘", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "오늘의"}, "split": "test"}
{"utterance": "달력에서 새해 삭제해", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "새해"}, "split": "test"}
{"utterance": "이번 주 우리 동네에서 어떤 행사 있어", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "이번 주", "place_name": "동네에서"}, "split": "test"}
{"utterance": "다음 화요일 오전 열한시 수진 하고 미팅 설정해", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "화요일", "time": "오전 열한시", "person": "수진", "event_name": "미팅"}, "split": "test"}
{"utterance": "오후 다섯시 까지 준비 시작하라고 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "오후 다섯시", "event_name": "준비"}, "split": "test"}
{"utterance": "이십 일일 일곱시 동창 모임 추가해", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "이십 일일", "time": "일곱시", "event_name": "동창 모임"}, "split": "test"}
{"utterance": "목요일 오전 열한시 석훈 과의 미팅 일정 잡아", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "목요일", "time": "오전 열한시", "person": "석훈", "event_name": "미팅"}, "split": "test"}
{"utterance": "수요일 정오에 병수랑 점심 미팅 잡아줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "수요일", "timeofday": "정오에", "person": "병수랑", "event_name": "점심 미팅"}, "split": "test"}
{"utterance": "준석 과의 금요일 미팅 이십사 시간 전 리마인더 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "준석", "date": "금요일", "event_name": "미팅", "time": "이십사 시간 전"}, "split": "test"}
{"utterance": "내 캘린더 에서 다음 일정 찾아서 시작하기 전 에 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "전"}, "split": "test"}
{"utterance": "내 캘린더 의 모든 것 취소", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "내 달력에서 내일 미팅 취소해줘", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "내일", "event_name": "미팅"}, "split": "test"}
{"utterance": "내 달력에 내 자동차 할부금 십이일이라고 적어줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "자동차 할부금", "date": "십이일이라고"}, "split": "test"}
{"utterance": "내 자동차 마감 하루 전 리마인드해 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "자동차", "date": "하루 전"}, "split": "test"}
{"utterance": "삼월 삼십일일 진료 예약 몇 시야", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "삼월 삼십일일", "event_name": "진료 예약"}, "split": "test"}
{"utterance": "이번 주말에 시내에 일정 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "이번 주말에", "place_name": "시내에"}, "split": "test"}
{"utterance": "내 달력에서 십구일 에 있는 이벤트들 삭제해줘", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "십구일"}, "split": "test"}
{"utterance": "오늘 나의 일정은 뭐야", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "이 일정 반복해 줄래", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "점심 미팅 한 시간 전에 알려줄 리마인더 설정", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "점심 미팅"}, "split": "test"}
{"utterance": "이 프로그램이 예정되어 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "홀수 일요일 마다 리마인더 설정", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "홀수 일요일"}, "split": "test"}
{"utterance": "매일 열두시 삼십분 점심 설정해", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "매일", "time": "열두시 삼십분", "meal_type": "점심"}, "split": "test"}
{"utterance": "미래 에 이 이벤트 상기시켜 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "삼 월 이십육 일에 있을 연례 행사에 대한 세부 정보 알려줄래", "expected_intent": "general:general_quirky", "expected_slots": {"date": "삼 월 이십육 일에", "general_frequency": "연례", "event_name": "행사에"}, "split": "test"}
{"utterance": "오늘 어머니의 생신 이니 매년 이 날에 나에게 알림 보내줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "오늘", "relation": "어머니의", "event_name": "생신", "general_frequency": "매년"}, "split": "test"}
{"utterance": "내가 미팅 할 시간이 있도록 목요일 오전 여섯시 에 깨워줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "미팅", "date": "목요일", "time": "오전 여섯시"}, "split": "test"}
{"utterance": "이박사 와의 다음 약속 언제야", "expected_intent": "calendar:calendar_query", "expected_slots": {"person": "이박사", "event_name": "약속"}, "split": "test"}
{"utterance": "나 어떤 것 설정했어", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "내일 있을 회의 설정해", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "내일", "event_name": "회의"}, "split": "test"}
{"utterance": "삼월 십오일 에 상진 과의 미팅 상기시켜줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "삼월 십오일", "person": "상진", "event_name": "미팅"}, "split": "test"}
{"utterance": "한 시간 삼십 이 분 전에 다음 주 백 대 일 에 대한 알림 설정", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "다음 주", "event_name": "백 대 일"}, "split": "test"}
{"utterance": "화요일 에 쓰레기 버리기 알려줄 수 있어요", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "화요일", "event_name": "쓰레기 버리기"}, "split": "test"}
{"utterance": "좋은 첫인상", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "내일 미팅 리마인더 설정했니", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "내일", "event_name": "미팅"}, "split": "test"}
{"utterance": "진호의 결혼식 장소가 어디야", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "결혼식"}, "split": "test"}
{"utterance": "다음 주 이벤트 뭐야", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "다음 주"}, "split": "test"}
{"utterance": "삼십 분 후에 엄마 에게 전화하라고 알려주세요", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "삼십 분 후에", "relation": "엄마", "event_name": "전화하라고"}, "split": "test"}
{"utterance": "한 시간 후에 상사 한테 이메일 보내기 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"relation": "상사"}, "split": "test"}
{"utterance": "내일 미팅 리마인더 알림 생성해", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "내일", "event_name": "미팅"}, "split": "test"}
{"utterance": "나에게 걸려있는 업무는 뭐가 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "지연이 생일 이십사 시간 전에 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "지연이", "event_name": "생일", "time": "이십사 시간 전에"}, "split": "test"}
{"utterance": "기념일 하루 전에 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "기념일", "date": "하루 전에"}, "split": "test"}
{"utterance": "종석 관련 일정들 모두 삭제해", "expected_intent": "calendar:calendar_remove", "expected_slots": {"person": "종석"}, "split": "test"}
{"utterance": "내일 아침 열 시 부터 한 시간 막아놔", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "내일", "timeofday": "아침", "time": "한 시간"}, "split": "test"}
{"utterance": "내 달력에 내일 저녁 네시부터 여섯시까지 나 시간이 없다고 표시해줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "내일", "timeofday": "저녁", "time": "네시부터 여섯시까지"}, "split": "test"}
{"utterance": "토요일 한 시간 약속 일정 잡아", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "토요일", "time": "한 시간"}, "split": "test"}
{"utterance": "내 달력에서 정준호 하고 약속 지워 줘", "expected_intent": "calendar:calendar_remove", "expected_slots": {"person": "정준호", "event_name": "약속"}, "split": "test"}
{"utterance": "내 달력 지워", "expected_intent": "calendar:calendar_remove", "expected_slots": {"time": "지워"}, "split": "test"}
{"utterance": "오늘 뭐 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "약속 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "약속"}, "split": "test"}
{"utterance": "오늘 오후 두시부터 네시까지 무슨 일 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "오늘", "time": "오후 두시부터 네시까지"}, "split": "test"}
{"utterance": "다음 주 강원도 날씨 알려줘", "expected_intent": "email:email_query", "expected_slots": {"time": "다음 주", "place_name": "강원도"}, "split": "test"}
{"utterance": "여섯 시에 찌개 확인하기 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "여섯", "event_name": "찌개 확인하기"}, "split": "test"}
{"utterance": "오늘 고객이랑 진행하는 회의 일정 알려줘", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "오늘", "relation": "고객이랑"}, "split": "test"}
{"utterance": "앞으로 세 달 뭔가 정해놓은 일정이 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "앞으로 세 달"}, "split": "test"}
{"utterance": "이 사람이랑 회의를 잡아줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "회의를"}, "split": "test"}
{"utterance": "이 사람 하고 미팅 잡아야 돼", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "미팅"}, "split": "test"}
{"utterance": "내일 파티 관해서 리마인드 해 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "내일", "event_name": "파티"}, "split": "test"}
{"utterance": "캘린더 일정에 사람들 초대해", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "내 그룹에 새 미팅 일자가 내일 이라고 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "미팅", "date": "내일"}, "split": "test"}
{"utterance": "이벤트 시간 알려 줘", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "매년 삼월 십오일 결혼기념일 선물 준비하는 거 리마인드해줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "매년", "date": "삼월 십오일", "event_name": "결혼기념일 선물"}, "split": "test"}
{"utterance": "나 오늘 약속 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "오늘", "event_name": "약속"}, "split": "test"}
{"utterance": "내일 회의 새 일정 만들어", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "내일", "event_name": "회의"}, "split": "test"}
{"utterance": "다음 행사 삭제해 줘", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "오후 네시에 진수와의 미팅 주제는 뭐야", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "오후 네시에", "person": "진수와의"}, "split": "test"}
{"utterance": "금요일 오후 한시 그 미팅 서울 어디서 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "금요일", "time": "오후 한시", "event_name": "미팅", "place_name": "서울"}, "split": "test"}
{"utterance": "매일 오후 두시 점심 리마인드해줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "매일", "time": "오후 두시", "meal_type": "점심"}, "split": "test"}
{"utterance": "오늘 오후 다섯시 이십분 회사 미팅 관해서 요한 얼마나 투자할까", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "오늘", "time": "오후 다섯시 이십분", "event_name": "미팅", "person": "요한"}, "split": "test"}
{"utterance": "유월 십삼일 선거 결과 날인데 설정해 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "유월 십삼일", "event_name": "선거 결과"}, "split": "test"}
{"utterance": "내 월급 날들을 추가해줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "월급 날들을"}, "split": "test"}
{"utterance": "나 무슨 일정 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "내일 이거 다시 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "내일"}, "split": "test"}
{"utterance": "세 시 정각 회의 설정해", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "세 시 정각", "event_name": "회의"}, "split": "test"}
{"utterance": "매주 금요일 식료품 사라고 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "매주 금요일", "event_name": "식료품 사라고"}, "split": "test"}
{"utterance": "달력에 지역에 대한 리마인더 만들어줘", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "오늘밤 오후 여덟 시 드라이클리닝한 옷 찾아오기 리마인드해 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "오후 여덟 시", "event_name": "드라이클리닝한 옷 찾아오기"}, "split": "test"}
{"utterance": "내일 회의 한 시간 전에 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "내일", "event_name": "회의"}, "split": "test"}
{"utterance": "회의 리마인더", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "회의"}, "split": "test"}
{"utterance": "생일", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "생일"}, "split": "test"}
{"utterance": "내일 계획", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "내일"}, "split": "test"}
{"utterance": "오늘의 계획은 뭐야", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "달력에 친구 추가 이벤트", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "정오 에 서울 에서 진호 하고 회의 일정 잡아 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"timeofday": "정오", "place_name": "서울", "person": "진호", "event_name": "회의"}, "split": "test"}
{"utterance": "다음 가능한 미팅 날에 현웅 하고 테러에 대한 논의 미팅 설정해 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "다음 가능한", "event_name": "테러에 대한 논의", "person": "현웅"}, "split": "test"}
{"utterance": "내일 세 시 에 진호 랑 만나기", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "내일", "time": "세 시", "person": "진호"}, "split": "test"}
{"utterance": "화요일 회의 리마인더 삭제해", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "화요일", "event_name": "회의"}, "split": "test"}
{"utterance": "앞으로 행사 뭐 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "도서관 가면 새 도서관 카드 받기 리마인드해 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"place_name": "도서관", "event_name": "새 도서관 카드 받기"}, "split": "test"}
{"utterance": "사월 이십일 오빠의 생일 이렇게 표시해", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "사월 이십일", "relation": "오빠의", "event_name": "생일"}, "split": "test"}
{"utterance": "사월 이십일 내 형 생일 리마인더 추가해", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "사월 이십일", "relation": "형", "event_name": "생일"}, "split": "test"}
{"utterance": "오늘 오후 세시 약속 모두 취소하고 그 세부내용 알려줘", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "오늘", "time": "오후 세시", "event_name": "약속"}, "split": "test"}
{"utterance": "오늘 내 미팅 목록 뽑아줘", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "오늘", "event_name": "미팅"}, "split": "test"}
{"utterance": "민기 하고 점심 식사 추가해", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "민기", "meal_type": "점심 식사"}, "split": "test"}
{"utterance": "내일 세시 진우와 미팅 있는 거 표시해줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "내일", "time": "세시", "person": "진우와", "event_name": "미팅"}, "split": "test"}
{"utterance": "이번 달 골프 행사 달력에서 모두 삭제해", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "달", "event_name": "골프 행사"}, "split": "test"}
{"utterance": "축제 달력에 준호 하고 민수 포함해 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "축제", "person": "민수"}, "split": "test"}
{"utterance": "어떤 일정이 다가오고 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "이 십 일일 일정이 뭔가 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "이 십 일일"}, "split": "test"}
{"utterance": "이거 리마인더 설정해", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "다른 미팅은 모두 삭제하고 삼월 이일 성호 생일 행사 표시해", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "삼월 이일", "person": "성호", "event_name": "생일"}, "split": "test"}
{"utterance": "헤이 올리 삼월 이일은 영호의 생일이니깐 미팅이랑 전화미팅 전부 삭제해주고 캘린더에 이벤트 추가해줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "삼월 이일은", "person": "영호의", "event_name": "생일이니깐"}, "split": "test"}
{"utterance": "이번 금요일 김씨 한테 미팅 초대 보내고 내 달력에서 금요일 오후 막아 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "금요일 오후", "person": "김씨", "event_name": "미팅"}, "split": "test"}
{"utterance": "매주 월요일 리마인더 설정해야 돼", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "매주 월요일"}, "split": "test"}
{"utterance": "다음주 월요일 표시해줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "월요일"}, "split": "test"}
{"utterance": "내 달력에서 토요일 비워 줘", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "토요일"}, "split": "test"}
{"utterance": "월요일마다 쓰레기 버리기 리마인드해 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "월요일마다"}, "split": "test"}
{"utterance": "무슨 리마인더 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "이월 사일 오후 두시 서울 광장 연습 달력에 추가해", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "이월 사일", "time": "오후 두시", "place_name": "서울 광장"}, "split": "test"}
{"utterance": "이월 사일 오후 두시 용지공원 연습 추가해줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "이월 사일", "time": "오후 두시", "place_name": "용지공원"}, "split": "test"}
{"utterance": "내 달력에 내일 쇼핑 추가해", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "내일"}, "split": "test"}
{"utterance": "나 오늘 약속 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "오늘", "event_name": "약속"}, "split": "test"}
{"utterance": "일요일 오후 나 뭐할건지 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "일요일", "timeofday": "오후"}, "split": "test"}
{"utterance": "목요일 열한시 엄마 미용실", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "목요일", "time": "열한시", "relation": "엄마 미용실"}, "split": "test"}
{"utterance": "이것이 이 날짜에 대해 사실입니까", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "달력에 행사 모두 삭제해", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "모든 이벤트 삭제", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "빛나라뮤직 에서 오후 네시 바이올린 레슨 하러 출발해야 하니까 두 시간 후에 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"place_name": "빛나라뮤직", "time": "두 시간", "event_name": "바이올린 레슨"}, "split": "test"}
{"utterance": "무슨 리마인더 설정했어", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "등록 되면 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "등록"}, "split": "test"}
{"utterance": "오늘 정오 미팅 있어", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "오늘", "timeofday": "정오", "event_name": "미팅"}, "split": "test"}
{"utterance": "오늘 오후 다섯시 저녁식사 시작하는 거 리마인더해 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "오후 다섯시", "event_name": "저녁식사"}, "split": "test"}
{"utterance": "달력 이벤트 지워 줘", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "지난 두 달 동안 무슨 일이 있었던 거니", "expected_intent": "news:news_query", "expected_slots": {"date": "지난 두 달"}, "split": "test"}
{"utterance": "내 캘린더 삭제", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "내 다음 이벤트 세 개 뭐야", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "오늘밤 축구 경기 몇 시야", "expected_intent": "calendar:calendar_query", "expected_slots": {"timeofday": "오늘밤", "event_name": "축구 경기"}, "split": "test"}
{"utterance": "오늘 미용실 삭제해", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "오늘", "event_name": "미용실"}, "split": "test"}
{"utterance": "오늘밤 저녁 취소", "expected_intent": "calendar:calendar_remove", "expected_slots": {"timeofday": "오늘밤", "meal_type": "저녁"}, "split": "test"}
{"utterance": "오늘 다음 일정 삭제해", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "선거 한 시간 후에 업데이트 보여 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "선거", "time": "한 시간"}, "split": "test"}
{"utterance": "내일 오후 두시 나와 지훈 의 미팅 설정해", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "내일", "time": "오후 두시", "person": "지훈", "event_name": "미팅"}, "split": "test"}
{"utterance": "나 오늘 뭐 해야 하나", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "알렉사 내 달력에서 민호 와의 저녁 삭제해", "expected_intent": "calendar:calendar_remove", "expected_slots": {"person": "민호", "meal_type": "저녁"}, "split": "test"}
{"utterance": "오후 여섯시 에 쓰레기 버리러 가라고 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "오후 여섯시"}, "split": "test"}
{"utterance": "일정 이벤트 보내 김영호 초대해", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "김영호"}, "split": "test"}
{"utterance": "준호와 현주 가 참석자인 새 미팅 추가", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "준호와 현주", "event_name": "미팅"}, "split": "test"}
{"utterance": "미래 이벤트 삭제", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "이번 주 내가 뭐 해야 하지", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "이번 주"}, "split": "test"}
{"utterance": "앞으로 강릉 에서 무슨 콘서트가 열려", "expected_intent": "calendar:calendar_query", "expected_slots": {"place_name": "강릉"}, "split": "test"}
{"utterance": "토요일 에 주치의 와의 약속 지워줘", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "토요일", "relation": "주치의", "event_name": "약속"}, "split": "test"}
{"utterance": "이 일정 반복해서 내 캘린더 에 넣어줘", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "이 반복되는 이벤트 만들어", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "내가 너에게 뭔가 알려주라고 말했나", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "선물을 사기 위해 제 시간에 결혼식 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "결혼식"}, "split": "test"}
{"utterance": "그 이벤트 이틀 전 으로 리마인더 설정", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "이틀"}, "split": "test"}
{"utterance": "이벤트에 주차 서비스 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"relation": "주차 서비스"}, "split": "test"}
{"utterance": "내일 정오 이전에 어떤 리마인더가 설정되어있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "내일", "timeofday": "정오"}, "split": "test"}
{"utterance": "내가 언제 이벤트 있는지 말해 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "미팅 전에 알림 보내줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "미팅"}, "split": "test"}
{"utterance": "내 달력에서 모든 이벤트 지워줘", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "나 금요일 로 잡은 이발 일정 지워줄래", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "금요일", "event_name": "이발"}, "split": "test"}
{"utterance": "주현이가 우리의 이혼에 대해 대화하고 싶어해 가능한한 빨리 미팅 잡아줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "주현이가", "event_name": "미팅"}, "split": "test"}
{"utterance": "이십일 월요일 에 우리 주말 여행 에 관해 진호 와 대화 를 해야 해", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "이십일 월요일", "event_name": "대화", "person": "진호"}, "split": "test"}
{"utterance": "다음 달 내 미팅 보여줘", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "다음 달", "event_name": "미팅"}, "split": "test"}
{"utterance": "오늘 다가오는 이벤트들 뭐 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "삼일절 은 무슨 요일이야", "expected_intent": "datetime:datetime_query", "expected_slots": {"event_name": "삼일절"}, "split": "test"}
{"utterance": "오일을 갈라고 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "나에게 뭐가 언제인가 를 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "내 다음 미팅 몇명 들어와", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "미팅"}, "split": "test"}
{"utterance": "내 다음 약속 시간 언제야", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "약속"}, "split": "test"}
{"utterance": "오늘 내 일정이 뭐야", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "삼월 칠일 내 약속 지워", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "삼월 칠일", "event_name": "약속"}, "split": "test"}
{"utterance": "금요일에 데이트있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "금요일에"}, "split": "test"}
{"utterance": "오늘 영업 회의 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "오늘", "event_name": "영업 회의"}, "split": "test"}
{"utterance": "수요일 오전 열한시 에 영업 회의 일정 잡아", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "수요일", "time": "오전 열한시", "event_name": "영업 회의"}, "split": "test"}
{"utterance": "빵 한시간 리마인더 설정해", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "빵", "time": "한시간"}, "split": "test"}
{"utterance": "이벤트 안건이 뭐야", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "이번 주 에 날짜를 정하고 싶어", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "이번 주"}, "split": "test"}
{"utterance": "일정변경 위해 내 약속 이메일 보내", "expected_intent": "email:email_sendemail", "expected_slots": {"event_name": "약속"}, "split": "test"}
{"utterance": "병호 를 위한 생일 이벤트 설정", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "병호", "event_name": "생일"}, "split": "test"}
{"utterance": "내 달력에 감독 추가해", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "감독"}, "split": "test"}
{"utterance": "이월 일일과 삼월 십육일 에 어떤 미팅들 이 있지", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "이월 일일과 삼월 십육일", "event_name": "미팅들"}, "split": "test"}
{"utterance": "미현이 생일 파티 어디서 열려", "expected_intent": "calendar:calendar_query", "expected_slots": {"person": "미현이", "event_name": "생일 파티"}, "split": "test"}
{"utterance": "내 달력 에 미팅 이벤트 생성해줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "미팅"}, "split": "test"}
{"utterance": "내 캘린더에 미팅 이벤트 일정 잡아", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "미팅"}, "split": "test"}
{"utterance": "아직 남아있는 리마인더 가 뭐야", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "십삼일 에 나 진후 와 점심 있다고 리마인더 설정해줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "십삼일", "meal_type": "점심"}, "split": "test"}
{"utterance": "내가 어떤 리마인더 남겼어", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "생일 파티 관련해서 리마인더 뭔가 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "생일 파티"}, "split": "test"}
{"utterance": "오후 열두 시 삼십 분 에 이미 회의 십 분 전", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "십 분", "event_name": "회의"}, "split": "test"}
{"utterance": "치과 예약 삭제해 줘", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "치과 예약"}, "split": "test"}
{"utterance": "무슨 날짜야", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "우체국 가는 거 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "여동생 에게 줄 선물 사는 걸 잊지 않도록 해줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"relation": "여동생"}, "split": "test"}
{"utterance": "화요일 점심 미팅은 얼마나 길어", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "화요일", "event_name": "점심 미팅은"}, "split": "test"}
{"utterance": "올해의 남은 거 내 달력에서 모두 삭제해 줘", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "일요일 오전 열한시에 예배라고 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "일요일", "time": "오전 열한시에", "event_name": "예배라고"}, "split": "test"}
{"utterance": "캘린더 에 내일 저녁 추가", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "내일", "meal_type": "저녁"}, "split": "test"}
{"utterance": "다음 주 점심 달력에 넣어줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "다음 주", "meal_type": "점심"}, "split": "test"}
{"utterance": "진영의 생일 하루 전 알려 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "진영의", "event_name": "생일", "date": "하루 전"}, "split": "test"}
{"utterance": "다음 약속 한 시간 전 알림 보내줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "약속", "time": "한 시간 전"}, "split": "test"}
{"utterance": "화요일 미팅 에 삼십분 리마인더 설정", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "화요일", "time": "삼십분"}, "split": "test"}
{"utterance": "내 다음 약속 정한 거 삭제해 줘", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "약속"}, "split": "test"}
{"utterance": "삼월 십오일 리미인드 설정해 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "삼월 십오일"}, "split": "test"}
{"utterance": "달력에서 생일 지워", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "생일"}, "split": "test"}
{"utterance": "네 시 오늘의 교수 회의 리마인더 설정해", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "네 시", "date": "오늘의", "event_name": "교수 회의"}, "split": "test"}
{"utterance": "화요일 매니저 회의 에 대해서 다음 주 리마인더 열어봐", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "다음 주", "event_name": "매니저 회의"}, "split": "test"}
{"utterance": "달력에 더하고 반복해줘", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "삼월 십팔일 오후 다섯 시부터 오후 여섯 시 이벤트 저장해", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "삼월 십팔일", "time": "오후 다섯 시부터 오후 여섯 시"}, "split": "test"}
{"utterance": "다음 주 월요일 미팅 삭제해", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "다음 주 월요일", "event_name": "미팅"}, "split": "test"}
{"utterance": "어제 정오 광화문 광장에 뭐에 관한 시위였어", "expected_intent": "news:news_query", "expected_slots": {"date": "어제", "time": "정오", "place_name": "광화문 광장에"}, "split": "test"}
{"utterance": "이번 주말 퍼레이드 에 대해 더 알려줘", "expected_intent": "general:general_quirky", "expected_slots": {"date": "이번 주말", "event_name": "퍼레이드"}, "split": "test"}
{"utterance": "이번 주말에 있을 그 이벤트에 대해 알고 싶어", "expected_intent": "general:general_quirky", "expected_slots": {"date": "이번 주말에"}, "split": "test"}
{"utterance": "준희랑 브런치 먹기로 한 게 언제지", "expected_intent": "calendar:calendar_query", "expected_slots": {"person": "준희랑", "event_name": "브런치 먹기로 한 게"}, "split": "test"}
{"utterance": "수요일 이야", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "수요일"}, "split": "test"}
{"utterance": "미팅 언제 있을 건지 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "미팅"}, "split": "test"}
{"utterance": "십이월 사일에 무슨 일이 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "십이월 사일에"}, "split": "test"}
{"utterance": "이거에 대해 나에게 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "삼월 십팔일 재영의 생일 약속 반복으로 해 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "삼월 십팔일", "event_name": "재영의 생일 약속"}, "split": "test"}
{"utterance": "오후 여덟 시 세탁소 리마인드 설정해", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "오후 여덟 시"}, "split": "test"}
{"utterance": "저녁 여덟 시 빨래하기 리마인더 설정해", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "저녁 여덟 시"}, "split": "test"}
{"utterance": "내 회의 대해서 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "회의"}, "split": "test"}
{"utterance": "매일 정오 약 먹으라고 설정", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "매일", "timeofday": "정오"}, "split": "test"}
{"utterance": "내 행사에 관해 더 말해줄래", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "이 이벶트에 대해 더 알고 싶어", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "나의 내일 저녁 일정 지워", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "내일", "meal_type": "저녁"}, "split": "test"}
{"utterance": "월요일 내 저녁 식사 일정 지워", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "월요일", "meal_type": "저녁 식사"}, "split": "test"}
{"utterance": "알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "금요일 오후 다섯시에 이준이와 저녁 가라고 다시 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "금요일", "time": "오후 다섯시에", "person": "이준이와", "meal_type": "저녁"}, "split": "test"}
{"utterance": "화요일 오후 세시 병훈 사무실 미팅 추가해", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "화요일", "time": "오후 세시", "person": "병훈", "place_name": "사무실", "event_name": "미팅"}, "split": "test"}
{"utterance": "어제 하고 오늘 아침 사이 이벤트 있는 거 말해 줘", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "어제", "timeofday": "아침"}, "split": "test"}
{"utterance": "내 약속 모두 취소해", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "약속"}, "split": "test"}
{"utterance": "내 일정 이벤트 모두 제거해", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "삼월 수요일마다 오후 열두시 점심 회의 설정해", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "삼월", "general_frequency": "수요일마다", "time": "오후 열두시", "event_name": "점심 회의"}, "split": "test"}
{"utterance": "이 일정 관련해서 내 캘린더 수정해", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "내 딸들 생일 리마인더 잡아줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"relation": "딸들", "event_name": "생일"}, "split": "test"}
{"utterance": "내 달력에 행사 만들어서 반복 행사 표시해 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "내 이벤트들 보여줘", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "오월 계획이 뭐 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "오월"}, "split": "test"}
{"utterance": "수요일 오전 아홉시 회의 있는 거 다시 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "수요일", "time": "오전 아홉시", "event_name": "회의"}, "split": "test"}
{"utterance": "내 캘린더에서 오늘 스케줄 뭐야", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "내일 오후 두 시 명촌동 일이삼 장소에서 진희의 생일 파티 달력에 추가해", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "내일", "time": "오후 두 시", "place_name": "명촌동 일이삼", "person": "진희의", "event_name": "생일 파티"}, "split": "test"}
{"utterance": "오늘 같은 내 일정 뭐 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "내일 아침 내 회의 관해서 말해줘", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "내일", "timeofday": "아침", "event_name": "회의"}, "split": "test"}
{"utterance": "리마인더 모두 나열해", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "달력 항목 삭제", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "이벤트를 캘린더 앱에 추가해", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "세시에서 다섯시 미팅 리마인더", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "세시에서 다섯시", "event_name": "미팅"}, "split": "test"}
{"utterance": "두 시간 후 나 치과 예약 있는 거 리마인드 해 줄래", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "두 시간", "event_name": "치과 예약"}, "split": "test"}
{"utterance": "리마인드해 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "제발 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "내 캘린더에서 지민이와 오전 아홉시 미팅 추가해", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "지민이와", "time": "오전 아홉시", "event_name": "미팅"}, "split": "test"}
{"utterance": "오늘 일정 뭐 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "오늘 오후 두시 미팅 삭제해", "expected_intent": "calendar:calendar_remove", "expected_slots": {"time": "오후 두시", "event_name": "미팅"}, "split": "test"}
{"utterance": "화요일 오전 열한시 지훈이랑 희수 같이 브런치 초대 보내줄래", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "화요일", "time": "오전 열한시", "person": "지훈이랑 희수", "event_name": "브런치"}, "split": "test"}
{"utterance": "내일 오후 두시 이벤트 내가 바쁜 거 표시해 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "내일", "time": "오후 두시"}, "split": "test"}
{"utterance": "오늘 내 미팅 어떤 내용이야", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "오늘", "event_name": "미팅"}, "split": "test"}
{"utterance": "삼십일 생일파티 있는 거 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "삼십일", "event_name": "생일파티"}, "split": "test"}
{"utterance": "오후 여섯시 공항으로 민준이 픽업 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "오후 여섯시", "event_name": "민준이 픽업"}, "split": "test"}
{"utterance": "매주 화 목 토마다 화분 물주기 리마인드해 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "화 목 토마다", "event_name": "화분 물주기"}, "split": "test"}
{"utterance": "내 달력에서 저거 지워", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "추수 감사절 삼 주 전에 칠면조 주문하는 거 리마인드해줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "칠면조 주문하는 거"}, "split": "test"}
{"utterance": "내일 도서관 이벤트를 달력에 메모하고 싶어", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "내일", "place_name": "도서관"}, "split": "test"}
{"utterance": "오늘 오후 네시 내 리마인더 목록에 전화 회의 추가해", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "오늘", "time": "오후 네시", "event_name": "전화 회의"}, "split": "test"}
{"utterance": "내 달력에서 일정 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "내 캘린더에 이벤트 리마인드해 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "내 달력에서 모든 일정 지워줘", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "박씨랑 지난 삼 개월 미팅 몇 개 했어", "expected_intent": "calendar:calendar_query", "expected_slots": {"person": "박씨랑", "time": "지난 삼 개월", "event_name": "미팅"}, "split": "test"}
{"utterance": "달력에서 이벤트 삭제해", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "블핑 콘서트 어디서 해", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "블핑 콘서트"}, "split": "test"}
{"utterance": "오전 아홉시 미팅 어디야", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "오전 아홉시", "event_name": "미팅"}, "split": "test"}
{"utterance": "오늘 현충일이야", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "오늘", "event_name": "현충일이야"}, "split": "test"}
{"utterance": "누구 생일 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "생일"}, "split": "test"}
{"utterance": "그 이벤트는 재혁 하고 지현 포함할거야", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "지현"}, "split": "test"}
{"utterance": "삼월 이십오일 내 미팅 캘린더에 리마인더 세팅해줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "삼월 이십오일", "event_name": "미팅"}, "split": "test"}
{"utterance": "내가 사월 칠일 참석해야 하는 페이스북 이벤트 리마인더 알람 반복해서 설정해줘", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "사월 칠일", "media_type": "페이스북"}, "split": "test"}
{"utterance": "날짜 전체 삭제해", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "오후 두 시로 알람 맞춰", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "오후 두 시로"}, "split": "test"}
{"utterance": "오늘 오후 늦게 내 스케줄 말해줘", "expected_intent": "calendar:calendar_query", "expected_slots": {"timeofday": "오늘 오후"}, "split": "test"}
{"utterance": "달력에 오늘 아홉시에 김밥천국에서 저녁식사라고 적어줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "오늘", "time": "아홉시에", "place_name": "김밥천국에서", "meal_type": "저녁식사라고"}, "split": "test"}
{"utterance": "삼월 이십오일 토요일에 미팅 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "삼월 이십오일 토요일에", "event_name": "미팅"}, "split": "test"}
{"utterance": "현주 생일이 사월 십이일 이야", "expected_intent": "calendar:calendar_query", "expected_slots": {"person": "현주", "date": "사월 십이일"}, "split": "test"}
{"utterance": "다가오는 이벤트 지워줘", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "삼월 이십삼일 나 일정에서 쇼핑 여행 삭제해", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "삼월 이십삼일", "event_name": "쇼핑 여행"}, "split": "test"}
{"utterance": "칠 월 칠 일 내 일정 완전히 오픈해", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "칠 월 칠 일"}, "split": "test"}
{"utterance": "나 오후 네시 에 한가해", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "오후 네시"}, "split": "test"}
{"utterance": "오늘 오후 미팅 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"timeofday": "오늘 오후", "event_name": "미팅"}, "split": "test"}
{"utterance": "이 이벤트 정보 더 알려줘", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "보류 중인 리마인더 보여줘", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "다가오는 이벤트 정보", "expected_intent": "recommendation:recommendation_events", "expected_slots": {}, "split": "test"}
{"utterance": "십구일 오후 두시 일정이 뭐가 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "십구일", "time": "오후 두시"}, "split": "test"}
{"utterance": "다음 금요일 현우 와의 미팅 에 관한 리마인더 보내줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "금요일", "person": "현우", "event_name": "미팅"}, "split": "test"}
{"utterance": "캘린더 이벤트 가 맞아", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "올해 칠월 사일 로 설정해둔 것 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "올해 칠월 사일"}, "split": "test"}
{"utterance": "내 다음 활동 삭제", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "달력의 모든 이벤트들 삭제", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "다가오는 종민 과의 미팅 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "종민", "event_name": "미팅"}, "split": "test"}
{"utterance": "올리 리마인더 용 알람 설정해줘", "expected_intent": "alarm:alarm_set", "expected_slots": {}, "split": "test"}
{"utterance": "매주 화요일 오전 열시 에 엄마에게 전화하라고 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "매주 화요일", "time": "오전 열시", "event_name": "엄마에게 전화하라고"}, "split": "test"}
{"utterance": "내일 오전 아홉시 미팅 리마인더 설정", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "내일", "time": "오전 아홉시", "event_name": "미팅"}, "split": "test"}
{"utterance": "오늘 여섯 시 진영 과의 회의 알람 만들어줘", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "오늘", "time": "여섯 시", "person": "진영", "event_name": "회의"}, "split": "test"}
{"utterance": "그거 삭제해", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "매주 일요일 반복되는 리마인더를 맞춰 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "매주 일요일"}, "split": "test"}
{"utterance": "최근의 이벤트들 정보", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "다른 것들 과 달력 에 이벤트 날짜 설정해", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "다른 사람들과의 이벤트 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "오후 여섯시 이후 오늘의 달력 이벤트 알려줘", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "오후 여섯시 이후", "date": "오늘의"}, "split": "test"}
{"utterance": "사월 사일 내 약속 몇 시야", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "사월 사일", "event_name": "약속"}, "split": "test"}
{"utterance": "하루 동안 일정 알려줘", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "하루"}, "split": "test"}
{"utterance": "내 달력의 모든 이벤트들 삭제", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "은미 딸 베이비 샤워", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "은미", "event_name": "딸 베이비 샤워"}, "split": "test"}
{"utterance": "재훈 과의 미팅 이벤트 추가", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "재훈", "event_name": "미팅"}, "split": "test"}
{"utterance": "리마인더", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "회의 시간 열어 줘", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "회의"}, "split": "test"}
{"utterance": "다음 회의 에 대해서 오늘 저녁 에 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "회의", "timeofday": "저녁"}, "split": "test"}
{"utterance": "부인 생일 이틀 전에 리마인드해 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"relation": "부인", "event_name": "생일"}, "split": "test"}
{"utterance": "이번 주 기억할 것 있으면 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "이번 주"}, "split": "test"}
{"utterance": "오늘 잡혀있는 미팅 뭐 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "오늘", "event_name": "미팅"}, "split": "test"}
{"utterance": "보류 청구서 지불 에 관한 리마인더 설정", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "보류 청구서 지불"}, "split": "test"}
{"utterance": "일주일 동안 사장님과 중요한 회의 관련해서 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "일주일 동안", "event_name": "사장님과 중요한 회의"}, "split": "test"}
{"utterance": "재현 생일 캘린더에서 삭제", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "재현 생일"}, "split": "test"}
{"utterance": "이벤트 만들어", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "미팅들 보여줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "미팅들"}, "split": "test"}
{"utterance": "내 캘린더 에서 기념일 이벤트 삭제", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "기념일"}, "split": "test"}
{"utterance": "이번 달 십사일 추수 감사절 이벤트 진짜야", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "이번 달 십사일", "event_name": "추수 감사절"}, "split": "test"}
{"utterance": "시월 이십삼일 내 직장동료 와의 회의 에 관한 알림 설정해주세요", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "시월 이십삼일", "relation": "직장동료", "event_name": "회의"}, "split": "test"}
{"utterance": "내 캘린더 모든 일정들 삭제해", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "유월 이십일부터 이십오일 까지 미팅들", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "유월 이십일부터 이십오일", "event_name": "미팅들"}, "split": "test"}
{"utterance": "오늘 진료 예약 캘린더에서 삭제", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "오늘", "event_name": "진료 예약"}, "split": "test"}
{"utterance": "재인 결혼식 리마인더", "expected_intent": "calendar:calendar_query", "expected_slots": {"person": "재인", "event_name": "결혼식"}, "split": "test"}
{"utterance": "캘린더 에서 다가오는 일정", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "다가오는 일정"}, "split": "test"}
{"utterance": "화요일 에 현미 와의 미팅 일정 리마인더 설정", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "화요일", "person": "현미", "event_name": "미팅"}, "split": "test"}
{"utterance": "화요일 윤희 일정 리마인더", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "화요일", "event_name": "윤희"}, "split": "test"}
{"utterance": "이벤트 시간에 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "리마인더 에 어떤 정보가 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "유월 이십이일에 현수 생일이라고 표시해줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "유월 이십이일에", "event_name": "현수 생일이라고"}, "split": "test"}
{"utterance": "그 일정 삭제해주세요", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "내 캘린더에 있는 거 전부 지워", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "지호랑 오늘밤 저녁 삭제해", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "지호랑 오늘밤 저녁"}, "split": "test"}
{"utterance": "오늘 오후 회의 달력에 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {"timeofday": "오늘 오후", "event_name": "회의"}, "split": "test"}
{"utterance": "유월 삼일 이승환 콘서트 몇 시에 시작해", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "유월 삼일", "event_name": "이승환 콘서트"}, "split": "test"}
{"utterance": "삼월 이십오일 샤갈 전시회 해당 날짜에 표시해 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "삼월 이십오일", "event_name": "샤갈 전시회"}, "split": "test"}
{"utterance": "내 달력에서 이것 추가해", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "이 달력 이벤트에 반복 리마인더 설정해", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "내 미팅 조정해 줘", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "미팅"}, "split": "test"}
{"utterance": "내가 예약되어 있는 날이 언제야", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "다음 주 내 업무 달력 이벤트 보여줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "다음 주", "event_name": "업무"}, "split": "test"}
{"utterance": "점심 저녁 사이에 이탈리아 식당 몇시에 닫아", "expected_intent": "calendar:calendar_query", "expected_slots": {"business_name": "이탈리아 식당"}, "split": "test"}
{"utterance": "슈퍼볼 언제 시작해", "expected_intent": "qa:qa_factoid", "expected_slots": {"event_name": "슈퍼볼"}, "split": "test"}
{"utterance": "칠순 저녁 식사 몇 시에 시작해", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "칠순 저녁 식사"}, "split": "test"}
{"utterance": "내 달력에 토요일 진희와의 저녁 식사 추가해", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "토요일", "event_name": "진희와의 저녁 식사"}, "split": "test"}
{"utterance": "금요일 세시 치과 예약 잡아줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "금요일", "time": "세시", "event_name": "치과 예약"}, "split": "test"}
{"utterance": "알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "십분 전에 내 캘린더 업데이트 됐니", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "십분 전에"}, "split": "test"}
{"utterance": "공항에서 부모님 모시고 오는 일정 취소해줘", "expected_intent": "calendar:calendar_remove", "expected_slots": {"place_name": "공항에서", "event_name": "부모님 모시고 오는"}, "split": "test"}
{"utterance": "회의 참석하는 고객사 찾아 줘", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "회의"}, "split": "test"}
{"utterance": "이 날짜 반복 설정해", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "내 달력에서 이 이벤트 삭제해 줘", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "이번 주 내 일정 알려줘", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "이번 주"}, "split": "test"}
{"utterance": "내 리마인더들 확인해 줘", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "내 라디오 방송국 재생", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "에스비에스 라디오 틀어줘", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "에스비에스"}, "split": "test"}
{"utterance": "누가 라디오 틀어", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "내 스테이션 재생", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "라디오 켜줄 수 있어", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "pandora 열어", "expected_intent": "play:play_radio", "expected_slots": {"app_name": "pandora"}, "split": "test"}
{"utterance": "채널 구십오 점 구 로 가줘", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "구십오 점 구"}, "split": "test"}
{"utterance": "라디오 켜서 채널 팔십구 점 일 틀어줘", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "팔십구 점 일"}, "split": "test"}
{"utterance": "라디오 듣고 싶어", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "f. m. 구십일 점 구 라디오 틀어줘", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "f. m. 구십일 점 구"}, "split": "test"}
{"utterance": "radio 앱 열어", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "f. m. 팔십구 점 일 로 맞춰", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "f. m. 팔십구 점 일"}, "split": "test"}
{"utterance": "f. m. 팔십구 점 일 틀어줘", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "f. m. 팔십구 점 일"}, "split": "test"}
{"utterance": "라디오에서 f.m. 구십일 점 구 만 재생", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "f.m. 구십일 점 구"}, "split": "test"}
{"utterance": "f. m. 라디오 틀어", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "틀어", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "줄리엣 틀어", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "옛날 음악 방송 재생", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "옛날 음악 방송"}, "split": "test"}
{"utterance": "클래식 f. m. 맞쳐줘", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "클래식 f. m."}, "split": "test"}
{"utterance": "키스 에프엠 와줘 틀어줘", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "키스 에프엠"}, "split": "test"}
{"utterance": "라디오 지금 시작", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "라디오 지금 켜줘", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "pandora 시작", "expected_intent": "play:play_radio", "expected_slots": {"app_name": "pandora"}, "split": "test"}
{"utterance": "라디오 방송국 일번 지금 바로 틀어", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "라디오 방송국 일번"}, "split": "test"}
{"utterance": "라디오 채널 am으로 지금 바로 변경해줘", "expected_intent": "play:play_radio", "expected_slots": {"date": "지금"}, "split": "test"}
{"utterance": "재생", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "알렉사 라디오 방송국 바꿔", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "라디오 재생해주세요", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "라디오 틀어서 노래 좀 틀어", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "팔십구 점 일 라디오 채널 틀어", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "팔십구 점 일"}, "split": "test"}
{"utterance": "라디오 듣기", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "라디오 채널", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "라디오 에서 히트 틀어줘", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "히트송 틀어줘", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "라디오 국악방송 듣고 싶어", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "국악방송"}, "split": "test"}
{"utterance": "m. b. c. 라디오 틀어", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "m. b. c. 라디오"}, "split": "test"}
{"utterance": "헤이 올리 라디오 틀어줘", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "구십삼 점 일 라디오 방송국 재생", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "구십삼 점 일"}, "split": "test"}
{"utterance": "경인방송 시작", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "경인방송"}, "split": "test"}
{"utterance": "라디오 재생 시작", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "발라드 틀어주는 방송 듣고 싶어", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "발라드 틀어주는 방송"}, "split": "test"}
{"utterance": "라디오 에서 랩 노래 틀어줄 수 있어", "expected_intent": "play:play_radio", "expected_slots": {"music_genre": "랩"}, "split": "test"}
{"utterance": "노래 신호등 재생", "expected_intent": "play:play_music", "expected_slots": {"song_name": "신호등"}, "split": "test"}
{"utterance": "구십년대 힙합 재생", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "구십년대 힙합"}, "split": "test"}
{"utterance": "트로트 음악 방송국 켜줘", "expected_intent": "play:play_radio", "expected_slots": {"music_genre": "트로트"}, "split": "test"}
{"utterance": "케이팝 노래들 틀어주는 f. m. 방송국 틀어줄 수 있어", "expected_intent": "play:play_radio", "expected_slots": {"music_genre": "케이팝", "radio_name": "f. m."}, "split": "test"}
{"utterance": "올리 k. b. s. 팔백구십일 듣자", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "k. b. s. 팔백구십일"}, "split": "test"}
{"utterance": "현재 조용필 이 진행하는 라디오 방송국 찾아줘", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "어떤 거라도 좋으니 팝 f. m. 채널 틀어줘", "expected_intent": "play:play_radio", "expected_slots": {"music_genre": "팝", "radio_name": "f. m."}, "split": "test"}
{"utterance": "라디오 방송 출연한 마지막 의사 켜줘", "expected_intent": "play:play_radio", "expected_slots": {"media_type": "라디오 방송"}, "split": "test"}
{"utterance": "시사전망대 프로그램 틀어줘", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "시사전망대"}, "split": "test"}
{"utterance": "m. b. c. 켜서 스피커 에서 나오도록 틀어줘", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "m. b. c.", "device_type": "스피커"}, "split": "test"}
{"utterance": "라디오에서 달콤한 노래 틀어줘", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "라디오 에서 최신 뉴스 프로그램 들을래", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "컬투 쇼 듣고 싶어", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "kbs f.m. 백일점일에서 발라드 음악 틀어줘", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "kbs f.m. 백일점일에서", "music_genre": "발라드", "media_type": "음악"}, "split": "test"}
{"utterance": "라디오에서 극동방송 틀어줘", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "극동방송"}, "split": "test"}
{"utterance": "이 프로그램 틀어줘", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "논스탑 의 노래 가 나오는 라디오 틀어", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "아이유 라이브 콘서트 시리즈 틀어", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "오케이 구글 백칠 점 칠 재생해", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "백칠 점 칠"}, "split": "test"}
{"utterance": "라디오 주파수를 팔십구 점 일 로 바꿔", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "팔십구 점 일"}, "split": "test"}
{"utterance": "구십팔 점 칠 f. m. 에서 굿모닝 팝스 프로그램 재생", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "구십팔 점 칠 f. m."}, "split": "test"}
{"utterance": "남자의 고민 커버곡 팟캐스트 찾아줘", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "남자의 고민", "media_type": "팟캐스트"}, "split": "test"}
{"utterance": "f. m. 구십일 점 구 라디오 노래들", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "f. m. 구십일 점 구 라디오", "media_type": "노래들"}, "split": "test"}
{"utterance": "트로트 라디오 틀어줘", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "트로트 라디오"}, "split": "test"}
{"utterance": "백 일 점 구 에서 모닝쇼 틀어줘", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "백 일 점 구"}, "split": "test"}
{"utterance": "차 라디오 에서 프레리 홈 컴패니언 틀어줘", "expected_intent": "play:play_radio", "expected_slots": {"device_type": "차 라디오"}, "split": "test"}
{"utterance": "침실 라디오 에서 컬투쇼 들을 수 있어", "expected_intent": "play:play_radio", "expected_slots": {"house_place": "침실"}, "split": "test"}
{"utterance": "라디오 듣는거 도와줄래", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "e. b. s. f. m. 틀어줘", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "e. b. s. f. m."}, "split": "test"}
{"utterance": "라디오 부탁해", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "쿨 f. m. 에서 내 플레이리스트 시작", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "쿨 f. m."}, "split": "test"}
{"utterance": "spotify 틀고 운동 켜", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "내 플레이스테이션 포 에서 netflix 틀어", "expected_intent": "play:play_radio", "expected_slots": {"device_type": "플레이스테이션 포", "app_name": "netflix"}, "split": "test"}
{"utterance": "스피커 로 경쾌한 음악 틀어", "expected_intent": "play:play_music", "expected_slots": {"music_descriptor": "경쾌한"}, "split": "test"}
{"utterance": "나 롤링 의 해리 포터 듣고 싶어", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_author": "롤링", "audiobook_name": "해리 포터"}, "split": "test"}
{"utterance": "나의 가장 좋아하는 오디오북 타잔 틀어줘", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "타잔"}, "split": "test"}
{"utterance": "조승우 의 오디오북 재시작해", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_author": "조승우", "player_setting": "재시작해"}, "split": "test"}
{"utterance": "노인과 바다 틀어줄래", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "노인과 바다", "player_setting": "틀어줄래"}, "split": "test"}
{"utterance": "내가 최근에 듣다가 멈췄던 곳부터 해리포터 다시 시작", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "해리포터", "player_setting": "다시 시작"}, "split": "test"}
{"utterance": "책 멈춰 줘", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "멈춰"}, "split": "test"}
{"utterance": "당신이 모르는 이야기 오디오북 열어", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "당신이 모르는 이야기"}, "split": "test"}
{"utterance": "그것을 부르는 버터 재시작해", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "재시작해"}, "split": "test"}
{"utterance": "위대한 게츠비 재생", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "위대한 게츠비"}, "split": "test"}
{"utterance": "징글벨 틀어줘", "expected_intent": "play:play_music", "expected_slots": {"song_name": "징글벨"}, "split": "test"}
{"utterance": "미디어 열어서 징글벨 재생", "expected_intent": "play:play_music", "expected_slots": {"song_name": "징글벨"}, "split": "test"}
{"utterance": "동물농장 다시 시작", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "동물농장", "player_setting": "다시 시작"}, "split": "test"}
{"utterance": "해리포터 사 권 다시 틀어", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "해리포터 사 권", "player_setting": "다시 틀어"}, "split": "test"}
{"utterance": "오디오북 정지", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "오디오북", "player_setting": "정지"}, "split": "test"}
{"utterance": "다빈치 코드 오디오 북 열어", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "다빈치 코드", "media_type": "오디오 북"}, "split": "test"}
{"utterance": "클래식 음악 들려줄 수 있어", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "클래식"}, "split": "test"}
{"utterance": "오만과 편견 들려줘", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "오만과 편견"}, "split": "test"}
{"utterance": "올리 타나토노트 듣자", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "타나토노트"}, "split": "test"}
{"utterance": "재생 멈춰", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "재생 멈춰"}, "split": "test"}
{"utterance": "멈춰", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "멈춰"}, "split": "test"}
{"utterance": "오디오북 인생은 소설이다 재생", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "오디오북", "audiobook_name": "인생은 소설이다"}, "split": "test"}
{"utterance": "오디오북 계속 읽어줘", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "오디오북", "player_setting": "계속 읽어줘"}, "split": "test"}
{"utterance": "오디오북 계속 읽어", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "오디오북", "player_setting": "계속 읽어"}, "split": "test"}
{"utterance": "댄스 노래 재생", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "겨울잠 재시작", "expected_intent": "play:play_music", "expected_slots": {"song_name": "겨울잠", "player_setting": "재시작"}, "split": "test"}
{"utterance": "해리포터 오디오북 열어서 마지막으로 재생했던 부분 틀어줘", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "해리포터", "media_type": "오디오북"}, "split": "test"}
{"utterance": "오디오북 에서 이 목록 틀어", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "오디오북"}, "split": "test"}
{"utterance": "오디오북 에서 멜로망스 노래 틀어줘", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "오디오북", "artist_name": "멜로망스", "player_setting": "틀어줘"}, "split": "test"}
{"utterance": "내가 듣던 오디오 북 의 마지막 장 계속해", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "오디오 북", "player_setting": "계속해"}, "split": "test"}
{"utterance": "이방인 내가 지난번에 중단한 부분 부터 재시작 해줘", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "이방인", "player_setting": "재시작"}, "split": "test"}
{"utterance": "알렉사 돈의 속성 내 마지막 부분부터 시작해", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "돈의 속성", "player_setting": "시작해"}, "split": "test"}
{"utterance": "삼국지 오디오 재생 다시 시작", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "삼국지", "player_setting": "시작"}, "split": "test"}
{"utterance": "삼국지 책 틀어줘", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "삼국지"}, "split": "test"}
{"utterance": "처음부터 오디오 재생하도록 선택", "expected_intent": "play:play_audiobook", "expected_slots": {}, "split": "test"}
{"utterance": "나의 즐겨찾기 책 틀어줘", "expected_intent": "play:play_audiobook", "expected_slots": {}, "split": "test"}
{"utterance": "김동식 책 조금 더 읽어줘", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_author": "김동식", "media_type": "책", "player_setting": "읽어줘"}, "split": "test"}
{"utterance": "내 오디오북 재시작 해주세요", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "오디오북", "player_setting": "재시작"}, "split": "test"}
{"utterance": "오디오북 열어", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "오디오북"}, "split": "test"}
{"utterance": "아큐정전 오디오 재생해주세요", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "아큐정전"}, "split": "test"}
{"utterance": "환상서점 계속 재생", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "환상서점", "player_setting": "계속 재생"}, "split": "test"}
{"utterance": "태백산맥 제 오장 시작", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "태백산맥", "player_setting": "제 오장 시작"}, "split": "test"}
{"utterance": "김동인 반역자 재생", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_author": "김동인", "audiobook_name": "반역자", "player_setting": "재생"}, "split": "test"}
{"utterance": "사랑 과 관련 있는 오디오북 랜덤 재생", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "오디오북"}, "split": "test"}
{"utterance": "전쟁과 평화 계속 읽어줘", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "전쟁과 평화", "player_setting": "계속 읽어줘"}, "split": "test"}
{"utterance": "올리 계란 얼마나 오래 삶아야 해", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "계란", "cooking_type": "삶아야"}, "split": "test"}
{"utterance": "피자 어떻게 만들어", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "피자"}, "split": "test"}
{"utterance": "계란 얼마나 삶아", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "계란", "cooking_type": "삶아"}, "split": "test"}
{"utterance": "레시피 알려줘", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "계란 얼마나 오래 삶아야 해", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "계란", "cooking_type": "삶아야"}, "split": "test"}
{"utterance": "올리 계란 은 얼마나 오래 삶나", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "계란", "cooking_type": "삶나"}, "split": "test"}
{"utterance": "수박 화채 레시피 찾아줘", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "수박 화채"}, "split": "test"}
{"utterance": "닭백숙 어떻게 요리하나", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "닭백숙", "cooking_type": "요리하나"}, "split": "test"}
{"utterance": "레드벨벳 케이크 에 들어가는 모든 것", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "레드벨벳 케이크"}, "split": "test"}
{"utterance": "채소 라자냐 만드는 데 얼마나 걸려", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "채소 라자냐"}, "split": "test"}
{"utterance": "요리법 알려줘", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "닭 튀김 요리하는 비디오 보여줘", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "닭 튀김", "media_type": "비디오"}, "split": "test"}
{"utterance": "버터 는 무엇으로 대체할 수 있을까", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"ingredient": "버터"}, "split": "test"}
{"utterance": "감자 구이 하기 가장 좋은 오븐 온도는 뭐야", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"ingredient": "감자", "cooking_type": "구이"}, "split": "test"}
{"utterance": "알단테 파스타 최고 레시피 뭐야", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "알단테 파스타"}, "split": "test"}
{"utterance": "식품 가공 관련 지식", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "제일 쉬운 파스타 요리하는 법이 뭐야", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "파스타"}, "split": "test"}
{"utterance": "파슬리 대신 어떤 재료 쓸 수 있어", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"ingredient": "파슬리"}, "split": "test"}
{"utterance": "구리 냄비랑 무쇠 냄비 중에 뭐가 더 열 전도가 잘 돼", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "헤이 로봇 전라도 김치 재료 목록 알려줘", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "전라도 김치"}, "split": "test"}
{"utterance": "인터넷 검색해서 이탈리안 음식 요리에 적합한 유튜브 비디오 보여줘", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "이탈리안", "media_type": "유튜브 비디오"}, "split": "test"}
{"utterance": "오트밀 좀 요리해", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"ingredient": "오트밀"}, "split": "test"}
{"utterance": "오늘 메뉴는 뭐야 거기에 삶은 채소 도 좀 추가해", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"date": "오늘", "food_type": "삶은 채소"}, "split": "test"}
{"utterance": "삶기", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"cooking_type": "삶기"}, "split": "test"}
{"utterance": "소고기 카레 요리하는 레시피 말해줄 수 있어", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "소고기 카레"}, "split": "test"}
{"utterance": "새해 송편 요리 과정을 다섯 문장으로 알려줘", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "새해 송편"}, "split": "test"}
{"utterance": "오트밀 쿠키 열 두 개 어떻게 굽는지 말해줘", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "오트밀 쿠키"}, "split": "test"}
{"utterance": "소고기 카레 만들려면 무엇이 필요해", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "소고기 카레"}, "split": "test"}
{"utterance": "식사 만들기 위한 방법", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "내 쇼핑 목록 에 있는 재료 가 들어가는 요리법 알려줘", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"list_name": "쇼핑"}, "split": "test"}
{"utterance": "좋은 레시피 알려줘", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "집에서 만든 닭고기 칼국수 레시피 알려줄 수 있어", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "닭고기 칼국수"}, "split": "test"}
{"utterance": "생닭 어떻게 요리해", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "생닭"}, "split": "test"}
{"utterance": "해물파전 어떻게 만드는지 말해줘", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "해물파전"}, "split": "test"}
{"utterance": "피자 어떻게 만들어", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "피자"}, "split": "test"}
{"utterance": "삼계탕 조리법 은 뭐야", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "삼계탕"}, "split": "test"}
{"utterance": "저녁 으로 뭐 만들어야 할까", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"meal_type": "저녁"}, "split": "test"}
{"utterance": "압력밥솥 에서 갈비 만드는 시간", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"device_type": "압력밥솥", "food_type": "갈비"}, "split": "test"}
{"utterance": "베이킹소다를 베이킹파우더 로 대체할 수 있어", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"ingredient": "베이킹소다를 베이킹파우더"}, "split": "test"}
{"utterance": "오늘 밤 저녁 식사 요리법 찾아줘", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"timeofday": "오늘 밤", "meal_type": "저녁 식사"}, "split": "test"}
{"utterance": "저녁 으로 뭐 요리해야 할까", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"event_name": "저녁"}, "split": "test"}
{"utterance": "미트볼 같이 만들자", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "미트볼"}, "split": "test"}
{"utterance": "미트볼 어떻게 요리하는지 말해줘", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "미트볼"}, "split": "test"}
{"utterance": "참치 레시피 얻을 수 있어", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "참치"}, "split": "test"}
{"utterance": "라자냐 어떻게 만들어", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "라자냐"}, "split": "test"}
{"utterance": "짬뽕 먹고 싶어", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "짬뽕"}, "split": "test"}
{"utterance": "솥밥 어떻게 요리하는지 알아", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "솥밥"}, "split": "test"}
{"utterance": "볶음밥 레시피 알아", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "볶음밥"}, "split": "test"}
{"utterance": "스테이크 미디엄 레어로 구우려면 얼마나 요리해야 해", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "스테이크"}, "split": "test"}
{"utterance": "야채 볶음밥 요리법 필요해", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "야채 볶음밥"}, "split": "test"}
{"utterance": "생닭 삼키로 얼마나 요리해야 해", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "생닭"}, "split": "test"}
{"utterance": "오븐에 굽는 거랑 직화에 굽는 거랑 뭐가 달라", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "스테이크 를 미디움으로 하려면 얼마나 오래 요리해야 해", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "스테이크"}, "split": "test"}
{"utterance": "타코 어떻게 만들어", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "타코"}, "split": "test"}
{"utterance": "고추전 어떻게 만드는지 알아야 해", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "고추전"}, "split": "test"}
{"utterance": "마카로니 얼마나 삶아야 돼", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "사과파이 요리법 찾아줘", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "사과파이"}, "split": "test"}
{"utterance": "매운탕 레시피 뭐야", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "매운탕"}, "split": "test"}
{"utterance": "두부면 어떻게 요리해", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "두부면"}, "split": "test"}
{"utterance": "오믈렛 만드는 데 계란 몇 개 필요해", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "계란"}, "split": "test"}
{"utterance": "가장 좋은 스파게티 요리법 보여줘", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "스파게티"}, "split": "test"}
{"utterance": "쌀 은 어떻게 준비해", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "쌀"}, "split": "test"}
{"utterance": "유명한 일본 레시피 나열해줘", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "일본"}, "split": "test"}
{"utterance": "한 시간 만에 완성할 수 있는 레시피", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "머핀 만들기 위해서 사야하는 것들 인터넷에서 검색해봐", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "만개의 레시피에서 김치 찌개 레시피 찾아줘", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"app_name": "만개의 레시피에서", "food_type": "김치"}, "split": "test"}
{"utterance": "큰 케이크 구우려면 어떤 재료 필요해", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "케이크", "cooking_type": "구우려면"}, "split": "test"}
{"utterance": "맛있을 거야", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "파스타 준비하는 요리법 알려줘", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "파스타"}, "split": "test"}
{"utterance": "나랑 게임 하자", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "슈퍼마리오 실행", "expected_intent": "play:play_game", "expected_slots": {"game_name": "슈퍼마리오"}, "split": "test"}
{"utterance": "나와 함께 바둑 둘래", "expected_intent": "play:play_game", "expected_slots": {"game_name": "바둑"}, "split": "test"}
{"utterance": "바둑 앱 열어서 게임 시작해", "expected_intent": "play:play_game", "expected_slots": {"game_name": "바둑"}, "split": "test"}
{"utterance": "배틀그라운드 하자", "expected_intent": "play:play_game", "expected_slots": {"game_name": "배틀그라운드"}, "split": "test"}
{"utterance": "브루마블 하자", "expected_intent": "play:play_game", "expected_slots": {"game_name": "브루마블"}, "split": "test"}
{"utterance": "클래시 오브 클랜 실행해줘", "expected_intent": "play:play_game", "expected_slots": {"game_name": "클래시 오브 클랜"}, "split": "test"}
{"utterance": "클래시 오브 클랜 켜", "expected_intent": "play:play_game", "expected_slots": {"game_name": "클래시 오브 클랜"}, "split": "test"}
{"utterance": "오목 게임 하자", "expected_intent": "play:play_game", "expected_slots": {"game_name": "오목"}, "split": "test"}
{"utterance": "나랑 게임 하자", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "프렌즈마블 게임 해줄 수 있어", "expected_intent": "play:play_game", "expected_slots": {"game_name": "프렌즈마블"}, "split": "test"}
{"utterance": "게임 시작", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "탁구 실행", "expected_intent": "play:play_game", "expected_slots": {"game_name": "탁구"}, "split": "test"}
{"utterance": "오목 두자", "expected_intent": "play:play_game", "expected_slots": {"game_name": "오목"}, "split": "test"}
{"utterance": "나랑 축구 하자", "expected_intent": "play:play_game", "expected_slots": {"game_name": "축구"}, "split": "test"}
{"utterance": "피파 십칠 하고 싶어", "expected_intent": "play:play_game", "expected_slots": {"game_name": "피파 십칠"}, "split": "test"}
{"utterance": "재생하자", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "사가 열어", "expected_intent": "play:play_game", "expected_slots": {"game_name": "사가"}, "split": "test"}
{"utterance": "나랑 같이 포커 치자", "expected_intent": "play:play_game", "expected_slots": {"game_name": "포커"}, "split": "test"}
{"utterance": "해리 포터와 비밀의 방 게임 할래", "expected_intent": "play:play_game", "expected_slots": {"game_name": "해리 포터와 비밀의 방"}, "split": "test"}
{"utterance": "바둑 게임 열어줘 너랑 같이 하고 싶어", "expected_intent": "play:play_game", "expected_slots": {"game_name": "바둑"}, "split": "test"}
{"utterance": "게임 시작하고 나랑 놀자", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "마이 유니버스의 유 유 아 틀어", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "레이싱 하기", "expected_intent": "play:play_game", "expected_slots": {"game_name": "레이싱"}, "split": "test"}
{"utterance": "캔디크러쉬사가 하기", "expected_intent": "play:play_game", "expected_slots": {"game_name": "캔디크러쉬사가"}, "split": "test"}
{"utterance": "쿠키런 킹덤 꺼내", "expected_intent": "play:play_game", "expected_slots": {"game_name": "쿠키런 킹덤"}, "split": "test"}
{"utterance": "바둑 두자", "expected_intent": "play:play_game", "expected_slots": {"game_name": "바둑"}, "split": "test"}
{"utterance": "게임 실행", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "슈퍼마리오 게임 두 번째 플레이어로 할래", "expected_intent": "play:play_game", "expected_slots": {"game_name": "슈퍼마리오"}, "split": "test"}
{"utterance": "빠른 속도 로 바둑 두자", "expected_intent": "play:play_game", "expected_slots": {"game_name": "바둑"}, "split": "test"}
{"utterance": "십자말풀이 시작해", "expected_intent": "play:play_game", "expected_slots": {"game_name": "십자말풀이"}, "split": "test"}
{"utterance": "바둑 열어서 나랑 같이 하자", "expected_intent": "play:play_game", "expected_slots": {"game_name": "바둑"}, "split": "test"}
{"utterance": "게임들 열어", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "바둑 게임 열어서 너랑 나랑 하자", "expected_intent": "play:play_game", "expected_slots": {"game_name": "바둑 게임"}, "split": "test"}
{"utterance": "다이어리에서 또 뭐가 부족하지", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "나의 쇼핑 목록 삭제해줘", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "쇼핑"}, "split": "test"}
{"utterance": "목록에 있는 첫 번째 아이템 삭제해줘", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "내 할 일 목록 삭제해줘", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "할 일"}, "split": "test"}
{"utterance": "어떤 특별 이벤트가 나의 목록에 있어", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "내 목록에서 이벤트를 제거해", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "아이템 삭제해", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "나 오늘 뭐 해야 해", "expected_intent": "lists:lists_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "나의 할 일 목록에 뭐가 있어", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "할 일"}, "split": "test"}
{"utterance": "목록 삭제", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "새 할 일 목록 만들어야 해", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "할 일"}, "split": "test"}
{"utterance": "내 부엌 목록 시작하는 걸 도와 줘", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "부엌"}, "split": "test"}
{"utterance": "나의 할 일 목록에 뭐가 있어", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "할 일"}, "split": "test"}
{"utterance": "문구점에서 살 거 연필 삭제해줘", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "문구점에서"}, "split": "test"}
{"utterance": "파리 의 별 다섯 호텔 목록 알려줘", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "파리", "list_name": "별 다섯 호텔"}, "split": "test"}
{"utterance": "내 잡화 목록 에 브로콜리 추가해", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "잡화"}, "split": "test"}
{"utterance": "토요일 심부름 리스트에 우체국 추가해", "expected_intent": "lists:lists_createoradd", "expected_slots": {"date": "토요일", "list_name": "심부름"}, "split": "test"}
{"utterance": "목록 아이템 삭제해", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "목록에 남은 거 알려줘", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "이번 주 쇼핑 리스트 만들고 싶어", "expected_intent": "lists:lists_createoradd", "expected_slots": {"time": "주", "list_name": "쇼핑"}, "split": "test"}
{"utterance": "내 플레이리스트에서 영어 팝송 리스트 삭제", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "영어 팝송"}, "split": "test"}
{"utterance": "나의 캘린더 에서 나의 자동차 대금 삭제해", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "그 목록 없애줘", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 의 할 일 목록 어떻게 만들어", "expected_intent": "lists:lists_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "나의 쇼핑 목록 반복해서 말해봐", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "쇼핑"}, "split": "test"}
{"utterance": "목록 작성해줄래", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "모든 목록 삭제", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "올드 뮤직 목록 삭제해줘", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "올드 뮤직"}, "split": "test"}
{"utterance": "나의 할 일 목록 체크해", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "할 일"}, "split": "test"}
{"utterance": "안드로이드", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "나의 모든 목록들 줘봐", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "장소 리스트 다시 설정해 줘", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "장소"}, "split": "test"}
{"utterance": "리스트 내용 보여줘", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "목록에서 두 번째 줄 삭제", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "식료품 목록에 일 갤런짜리 이프로 저지방 우유 하나 추가해줘", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "식료품"}, "split": "test"}
{"utterance": "그 아이템 찾아줘", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "메뉴 카드에 파전 추가해줘", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "여유 있는 목록 생성해줘", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "살 것 목록에 세제 추가해", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "살 것"}, "split": "test"}
{"utterance": "쇼핑 목록에 레드 와인 추가해줘", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "쇼핑 목록에"}, "split": "test"}
{"utterance": "파티 타임 목록 삭제해줘", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "파티 타임"}, "split": "test"}
{"utterance": "스케줄 목록 나열해", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "스케줄"}, "split": "test"}
{"utterance": "다음 목록 삭제해주세요", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "현재 목록 버려", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "지출 목록에 오천 원 사용 추가해", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "지출"}, "split": "test"}
{"utterance": "오늘 내가 할 일 리스트에 뭐 있어", "expected_intent": "lists:lists_query", "expected_slots": {"date": "오늘", "list_name": "할 일"}, "split": "test"}
{"utterance": "내가 무슨 목록을 요청했지", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "쇼 이벤트가 있다면 그거 삭제해줘", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "대체", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "목록에서 아이템들 알려줘", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "목록 에 이것 추가해줘", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "새 목록 만들어줘", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "목록에서 이거 삭제해줄 수 있어", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "내 목록에 있는 것들을 읽어줘", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "잡화 목록 에 항목 하나 추가해줄 수 있어", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "잡화"}, "split": "test"}
{"utterance": "그 아이템 삭제해", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "이마트 목록에 내가 뭐 적었어", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "이마트 목록에"}, "split": "test"}
{"utterance": "나의 할 일 목록 버려", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "할 일"}, "split": "test"}
{"utterance": "쇼핑 목록 비워", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "쇼핑"}, "split": "test"}
{"utterance": "내 쇼핑 목록 에 어떤 항목 있어", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "쇼핑"}, "split": "test"}
{"utterance": "쇼핑 목록 읽어줘", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "쇼핑"}, "split": "test"}
{"utterance": "이틀 전에 적은 목록 알려줘", "expected_intent": "lists:lists_query", "expected_slots": {"date": "이틀"}, "split": "test"}
{"utterance": "쇼핑 목록에서 씨리얼 빼줘", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "쇼핑"}, "split": "test"}
{"utterance": "오늘 치과 예약 삭제해 줘", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "오늘", "event_name": "치과 예약"}, "split": "test"}
{"utterance": "내 식료품 목록 준비되었나", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "식료품"}, "split": "test"}
{"utterance": "내 오늘 액티비티 목록 지워줘", "expected_intent": "lists:lists_remove", "expected_slots": {"date": "오늘", "list_name": "액티비티"}, "split": "test"}
{"utterance": "목록 에서 항목 삭제", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "새 목록 만들어야 해", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "식료품 목록 읽어줘", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "식료품"}, "split": "test"}
{"utterance": "내가 가진 목록 을 나에게 보여 줘", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "리스트에 있는 마지막 아이템 삭제해줘", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "쇼핑 목록에 바나나 추가해줘", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "쇼핑"}, "split": "test"}
{"utterance": "쇼핑 목록 에 치약 추가해", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "쇼핑"}, "split": "test"}
{"utterance": "플레이리스트 작성해", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "올리 목록 지워 줘", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "목록 비워줘", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "잡화 목록 지워줘", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "잡화"}, "split": "test"}
{"utterance": "모두 제거해", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "올리 내 다음 계획은 뭐야", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "나의 잡화 목록 에서 우유 삭제", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "잡화"}, "split": "test"}
{"utterance": "닌텐도 스위치 살 돈이 충분히 없는데 아마존 위시리스트에서 그것 제거해줄래", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "이 목록 삭제해줘", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "나의 가능한 목록이 무엇이 있니", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "거기 서 그거 빼", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "나의 목록 확인 좀 해 줘", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "새 목록", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "올리 목록 에서 아무거나 남은 거 있어", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "나의 목록 삭제", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "잡화 목록 만들어줄래", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "잡화"}, "split": "test"}
{"utterance": "목록에서 문구 지워줘", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "파티 때 사야할 물품 목록에 추가 부탁해", "expected_intent": "lists:lists_createoradd", "expected_slots": {"event_name": "파티"}, "split": "test"}
{"utterance": "경희야 목록 나에게 읽어줘", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "새 목록 시작해줘", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "내 목록 알려줘", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "나의 재생 목록 에 뭐 있어", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "최고 좋아하는 앨범 목록 지워주세요", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "최고 좋아하는 앨범"}, "split": "test"}
{"utterance": "잡화 목록에 설탕 추가해줘", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "잡화"}, "split": "test"}
{"utterance": "쇼핑 목록 새거 하나 만들어줘", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "쇼핑"}, "split": "test"}
{"utterance": "연락처에 사람들 목록 얼마나 많이 있어", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "나의 연락처 에 어떤 그룹이 나열되어 있어", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "나 리스트 몇개 있는지 알려줘", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "목록에서 저것 삭제해줘", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "마지막 문구 삭제해줘", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "네 리스트에 지금 뭐 있어", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "목록 나한테 알려줘", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "내 식료품 목록 에 햄버거 넣어 줘", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "식료품"}, "split": "test"}
{"utterance": "이번 주 할 일 삭제해줘", "expected_intent": "lists:lists_remove", "expected_slots": {"date": "이번 주", "list_name": "할 일"}, "split": "test"}
{"utterance": "내 할 일에서 부엌 닦기 삭제해줘", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "할 일에서"}, "split": "test"}
{"utterance": "내 연락처 목록 에 영호 추가해", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "연락처 목록", "person": "영호"}, "split": "test"}
{"utterance": "목록 말해봐", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "쇼핑 목록 삭제해줘", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "쇼핑"}, "split": "test"}
{"utterance": "할일 목록 삭제", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "할일"}, "split": "test"}
{"utterance": "새 아이템을 목록에 추가해", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "목록에 추가해", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "그 목록을 없애자", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "잡화 목록에 오렌지 추가해", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "잡화"}, "split": "test"}
{"utterance": "나 목록 몇 개 있어", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "내 공책에 어떤 목록이 있어", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "쇼핑 목록에서 우유 빼줘", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "쇼핑"}, "split": "test"}
{"utterance": "천구백구십 년도의 세금 목록 제거해", "expected_intent": "lists:lists_remove", "expected_slots": {"date": "천구백구십 년도의", "list_name": "세금"}, "split": "test"}
{"utterance": "나의 현재 목록 무엇인지 말해줘", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "현재"}, "split": "test"}
{"utterance": "내 작업 목록에 항목들을 추가해줘", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "작업"}, "split": "test"}
{"utterance": "상세 주문 내역 보여줘", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "지난 주 에 내가 만든 목록 에 그 손님 은 제외해", "expected_intent": "lists:lists_remove", "expected_slots": {"date": "지난 주", "list_name": "손님"}, "split": "test"}
{"utterance": "목록 만들어줘", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "목록 하나 새로 생성해서 알파벳 에이로 시작하는 이름 찾아서 넣어", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "연락처 목록에 비즈니스 연락처 추가", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "연락처 목록에"}, "split": "test"}
{"utterance": "최근 해야 할 일 확인해줘", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "할 일"}, "split": "test"}
{"utterance": "새 목록 만들어주세요", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "목록에서 사과 삭제해줘", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "리스트에서 삭제", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "google keep 열기", "expected_intent": "lists:lists_query", "expected_slots": {"app_name": "google keep"}, "split": "test"}
{"utterance": "내 목록 삭제해줘", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "가능한 모든 목록 알려줘", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "이 디바이스의 모든 목록을 나열해줘", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "쇼핑 목록에 손목 시계 추가해줘", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "쇼핑 목록에"}, "split": "test"}
{"utterance": "내 파티 계획", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "파티"}, "split": "test"}
{"utterance": "내 의류 목록 있어", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "의류"}, "split": "test"}
{"utterance": "그 목록 찾아줘", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "중요한 집 정보", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "목록", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "새 목록 만들어 주세요", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "식료품 리스트 소리내서 읽어줘", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "식료품"}, "split": "test"}
{"utterance": "올리 다음 음반 들려줘", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "다음 팟캐스트 로 이동", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "다음 팟캐스트", "player_setting": "이동"}, "split": "test"}
{"utterance": "다음", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "다음 것 틀어", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "나의 라이브러리 에 있는 팟캐스트 틀어줘", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "라이브러리"}, "split": "test"}
{"utterance": "마지막 고민 상담 에 관한 흥미로운 팟캐스트 찾아줘", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "고민 상담"}, "split": "test"}
{"utterance": "다음 팟캐스트 재생", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "다음 팟캐스트"}, "split": "test"}
{"utterance": "다음 것 재생", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "박현숙 의 구미호 식당 다음 편 재생", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_author": "박현숙", "audiobook_name": "구미호 식당"}, "split": "test"}
{"utterance": "팟캐스트로 가서 매불쇼 다음 편 틀어줘", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "매불쇼", "podcast_descriptor": "다음 편"}, "split": "test"}
{"utterance": "손에 잡히는 경제 팟캐스트 재생", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "손에 잡히는 경제"}, "split": "test"}
{"utterance": "내 모든 팟캐스트 업로드", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "잡스러운 연애 팟캐스트 틀어", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "잡스러운 연애"}, "split": "test"}
{"utterance": "다음 뉴스공장 팟캐스트 재생", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "뉴스공장"}, "split": "test"}
{"utterance": "어제 들었던 팟캐스트 재생", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "어제 들었던"}, "split": "test"}
{"utterance": "팟캐스트 다음 편 틀어", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "다음 편"}, "split": "test"}
{"utterance": "오늘의 최고 팟캐스트들은 뭐야", "expected_intent": "play:play_podcasts", "expected_slots": {"date": "오늘의"}, "split": "test"}
{"utterance": "한화 이글스 관련 팟캐스트 재생", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "한화 이글스 관련"}, "split": "test"}
{"utterance": "최고로 평점이 좋은 록 음악 팟캐스트 보여줘", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "평점이 좋은 록 음악"}, "split": "test"}
{"utterance": "모든 느린 노래들 셔플로 재생", "expected_intent": "play:play_music", "expected_slots": {"player_setting": "셔플로 재생"}, "split": "test"}
{"utterance": "나의 즐겨 보는 팟캐스트 틀어줘", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "즐겨 보는"}, "split": "test"}
{"utterance": "주진우 새 팟캐스트 있어", "expected_intent": "play:play_podcasts", "expected_slots": {"person": "주진우"}, "split": "test"}
{"utterance": "최근 디즈니 팟캐스트 찾아줘", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "디즈니"}, "split": "test"}
{"utterance": "오징어게임 다음 편 으로 넘어가", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "오징어게임", "podcast_descriptor": "다음 편"}, "split": "test"}
{"utterance": "팟캐스트 다음 편 재생", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "다음 편"}, "split": "test"}
{"utterance": "올리 어젯밤 시작했던 팟캐스트 다시 시작해", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "어젯밤 시작했던"}, "split": "test"}
{"utterance": "팟캐스트들 보여줘", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "식장탈출 넘버원 팟캐스트 틀어", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "식장탈출 넘버원"}, "split": "test"}
{"utterance": "팟캐스트의 이전 편 으로 돌아가", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "이전 편"}, "split": "test"}
{"utterance": "김어준의 팟캐스트 틀어줘", "expected_intent": "play:play_podcasts", "expected_slots": {"person": "김어준의"}, "split": "test"}
{"utterance": "팟캐스트 듣고 싶어", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "인터넷에서 사용 가능한 내 팟캐스트 파일 다운로드해서 한 번 재생해줄 수 있어", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "팟캐스트 다음 편 으로 가", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "팟캐스트 다음 편"}, "split": "test"}
{"utterance": "다음 편 시작해", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "다음 편"}, "split": "test"}
{"utterance": "김어준 최신 팟캐스트 재생", "expected_intent": "play:play_podcasts", "expected_slots": {"person": "김어준"}, "split": "test"}
{"utterance": "내 가장 최근 팟캐스트 재생 시작", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "삼십 초 뒤로 가", "expected_intent": "play:play_podcasts", "expected_slots": {"time": "삼십 초", "player_setting": "뒤로 가"}, "split": "test"}
{"utterance": "국악방송", "expected_intent": "play:play_podcasts", "expected_slots": {"radio_name": "국악방송"}, "split": "test"}
{"utterance": "가장 많이 본 목록", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "수다맨들 틀어줘", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "수다맨들"}, "split": "test"}
{"utterance": "팟캐스트 재생해주세요", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "팟캐스트 다음 편 으로 가주세요", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "다음 편"}, "split": "test"}
{"utterance": "최신 김어준 팟캐스트 틀어주세요", "expected_intent": "play:play_podcasts", "expected_slots": {"person": "김어준"}, "split": "test"}
{"utterance": "최신 일당백 팟캐스트 듣고 싶어", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "일당백"}, "split": "test"}
{"utterance": "k. b. s. 팟캐스트 시작", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "k. b. s."}, "split": "test"}
{"utterance": "다음 섹션 으로 옮겨", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "옮겨"}, "split": "test"}
{"utterance": "팟캐스트 다음 편 으로 넘어가", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "다음 편", "player_setting": "넘어가"}, "split": "test"}
{"utterance": "이 팟캐스트 의 마지막 편 으로 돌아가", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "마지막 편", "player_setting": "돌아가"}, "split": "test"}
{"utterance": "스포츠 팟캐스트 듣고 싶어", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "스포츠 팟캐스트"}, "split": "test"}
{"utterance": "일당백 의 가장 최근 팟캐스트 들려줘", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "일당백", "podcast_descriptor": "가장 최근 팟캐스트"}, "split": "test"}
{"utterance": "내 가 선호하는 팟캐스트 재생해주세요", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "팟캐스트 시리즈 재시작", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "팟캐스트 시리즈"}, "split": "test"}
{"utterance": "이전 팟캐스트 재생", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "이전 팟캐스트"}, "split": "test"}
{"utterance": "뉴스공장 재생 시작", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "뉴스공장"}, "split": "test"}
{"utterance": "팟캐스트 다음 쇼 재생", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "다음 쇼"}, "split": "test"}
{"utterance": "다음 버튼", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "내 마지막 팟캐스트 다시 재생", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "다시 재생"}, "split": "test"}
{"utterance": "올리야 모든 팟캐스트 에서 회신 들을 수 있나", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "식장탈출 넘버원 팟캐스트 듣자", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "식장탈출 넘버원"}, "split": "test"}
{"utterance": "다음 팟캐스트 가 있는지 보고 싶어", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "다음 팟캐스트"}, "split": "test"}
{"utterance": "목록 에서 내 가 선호하는 팟캐스트 재생", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "선호하는"}, "split": "test"}
{"utterance": "좋아하는 팟캐스트 플레이리스트 추가 하고 틀어", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "틀어"}, "split": "test"}
{"utterance": "다음 팟캐스트 시작", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "시작"}, "split": "test"}
{"utterance": "지난 주 의 모든 왓섭 공포라디오 틀어줘", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "왓섭 공포라디오"}, "split": "test"}
{"utterance": "팟캐스트 틀어줘", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "울산에서 뭘 할 수 있을까", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "울산에서"}, "split": "test"}
{"utterance": "마을에서 무슨 일이 있는지 알려줘", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "마을에서"}, "split": "test"}
{"utterance": "서울에서 열리는 재즈 분야 관련 행사 있어", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "서울에서", "movie_type": "재즈 분야"}, "split": "test"}
{"utterance": "경기도에 문화 이벤트 있어", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "경기도에"}, "split": "test"}
{"utterance": "내 고향의 노래 자랑 행사에 대해 알려줘", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "고향의", "event_name": "노래 자랑"}, "split": "test"}
{"utterance": "오늘 밤 수원에서 어떤 영화를 봐야할가", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"timeofday": "오늘 밤", "place_name": "수원에서", "business_type": "영화를"}, "split": "test"}
{"utterance": "강남에 있는 영화관 리스트 줘", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"place_name": "강남에", "business_type": "영화관"}, "split": "test"}
{"utterance": "지금 도시에서 하는 서커스 공연들 알려줘", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "도시에서", "event_name": "서커스"}, "split": "test"}
{"utterance": "횡성에 어떤 소싸움 경기 있어", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "횡성에", "event_name": "소싸움 경기"}, "split": "test"}
{"utterance": "오늘 밤 시내에서 어떤 행사들이 있나", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"timeofday": "오늘 밤", "place_name": "시내에서"}, "split": "test"}
{"utterance": "가평에 약국 어디에 있어", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"place_name": "가평에", "business_type": "약국"}, "split": "test"}
{"utterance": "오늘 영화관에서 어떤 영화들이 상영 중인가", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"date": "오늘", "business_type": "영화관에서"}, "split": "test"}
{"utterance": "오늘 무슨 영화를 봐야 할까", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "근처에 무슨 영화 해", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "곧 어떤 행사 있어", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"time": "곧"}, "split": "test"}
{"utterance": "천안에 있는 행사 보여줘", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "천안에"}, "split": "test"}
{"utterance": "젊은 운전자들과 임시 운전자들 모두 스스로 안전하게 운전하는데 필요한 다양한 경험을 아직 경험하지 못했기 때문에 다른 운전자들 보다 더 자주 충돌한다. 연구에 따르면 운전 경험은 도로 충돌을 줄이는 주요 요인이며 젊은 운전자에게 가장 안전한 시간은 학습하는 동안 감독하에 운전할때다", "expected_intent": "recommendation:recommendation_events", "expected_slots": {}, "split": "test"}
{"utterance": "올리 나 술집 찾고 있는데 좋은 데 있어", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "술집"}, "split": "test"}
{"utterance": "올리야 내가 드레스 쇼를 찾고 있는데 여기서 일 키로 이내에 있는 옷 가게 찾아줄래", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "드레스 쇼를", "place_name": "일 키로 이내에"}, "split": "test"}
{"utterance": "신세계푸드 식당들 위치 찾아줘", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_name": "신세계푸드", "business_type": "식당들"}, "split": "test"}
{"utterance": "동네에 가장 인기 있는 술집 알려줘", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "술집"}, "split": "test"}
{"utterance": "근처 마라톤 보여줘", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "마라톤"}, "split": "test"}
{"utterance": "네가 내 지역에서 일어나는 이벤트 업데이트 해주면 나는 기쁠 거야", "expected_intent": "recommendation:recommendation_events", "expected_slots": {}, "split": "test"}
{"utterance": "액션 영화 추천해줘", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"movie_type": "액션"}, "split": "test"}
{"utterance": "내 가장 가까운 푸드코트의 리뷰 보여줘", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"place_name": "가장 가까운 푸드코트의"}, "split": "test"}
{"utterance": "삼청동에 있는 그림 전시회 보여줘", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "삼청동에", "event_name": "그림 전시회"}, "split": "test"}
{"utterance": "이 주변에 무슨 상점들이 있어", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"place_name": "이 주변에"}, "split": "test"}
{"utterance": "수영", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "수영"}, "split": "test"}
{"utterance": "새로운 경찰조직 영화가 있어", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"movie_name": "경찰조직"}, "split": "test"}
{"utterance": "올리 이번 주말 개봉하는 멜로 영화 뭐가 있나", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"time": "주말", "movie_type": "멜로"}, "split": "test"}
{"utterance": "십 킬로미터 이내에 있는 무슨 가게들이 있어", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"place_name": "십 킬로미터 이내에", "business_type": "가게들이"}, "split": "test"}
{"utterance": "씨스코 시스템", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "올리 이번 주 서산에서 무슨 이벤트 있어", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "이번 주", "place_name": "서산에서"}, "split": "test"}
{"utterance": "이번 주말에 의정부에서 이벤트 있어", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "이번 주말에", "place_name": "의정부에서"}, "split": "test"}
{"utterance": "영화 오스카 후보 찾아", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "근처 어디에 와인 바 있어", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "와인 바"}, "split": "test"}
{"utterance": "근처에서 이번 주말에 무슨 특별한 이벤트 있어", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "이번 주말에"}, "split": "test"}
{"utterance": "일번가 근처에 어떤 술집이 가장 저렴한 술들을 팔지", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"place_name": "일번가"}, "split": "test"}
{"utterance": "도서관 다음 이벤트는 뭐야", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "도서관"}, "split": "test"}
{"utterance": "이 주변에 맛있는 피자 가게가 있나", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "피자 가게가"}, "split": "test"}
{"utterance": "오늘 밤에 무슨 영화 상영해", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"timeofday": "오늘 밤에"}, "split": "test"}
{"utterance": "대전 여성복 쇼핑몰 찾아봐", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"place_name": "대전", "business_type": "쇼핑몰"}, "split": "test"}
{"utterance": "오늘 밤에 어디 갈 수 있어", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"timeofday": "오늘 밤에"}, "split": "test"}
{"utterance": "내 주변에 무슨 일이 일어나고있지", "expected_intent": "recommendation:recommendation_events", "expected_slots": {}, "split": "test"}
{"utterance": "이 지역에 플리마켓 있어", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "플리마켓"}, "split": "test"}
{"utterance": "수도권 지역에 재미있는 거 해", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "수도권 지역에"}, "split": "test"}
{"utterance": "올리 홍대 재밌는 행사 알려줘", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "홍대"}, "split": "test"}
{"utterance": "좋은 리뷰가 있는 영화", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "지역 행사 알려줘", "expected_intent": "recommendation:recommendation_events", "expected_slots": {}, "split": "test"}
{"utterance": "가장 인기 있는 영화가 뭐야", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "날 위한 영화를 추천해줘", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "내일 부산에 스포츠 행사 있어", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "내일", "place_name": "부산에", "event_name": "스포츠 행사"}, "split": "test"}
{"utterance": "내 지역에서 상영되고 있는 영화 추천해줘", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "이 지역에 음식 축제가 있나", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "음식 축제가"}, "split": "test"}
{"utterance": "지역 상점 찾아줘", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {}, "split": "test"}
{"utterance": "이번 주말에 여기 무슨 일 있어", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "이번 주말에"}, "split": "test"}
{"utterance": "올리 이번 주말 내 지역 활동에 대해 말해줘", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "이번 주말"}, "split": "test"}
{"utterance": "이번 주말에 여기에서 하는 재밌는 거 있어", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "이번 주말에"}, "split": "test"}
{"utterance": "커피 내려줘", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "마실 거 필요해", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "근처에 테마 파크 있어", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "테마 파크"}, "split": "test"}
{"utterance": "이번 주 어떤 영화가 있어", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"date": "이번 주"}, "split": "test"}
{"utterance": "지금 연 지역 식당 찾아줘", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "식당"}, "split": "test"}
{"utterance": "오늘 내가 뭘 봐야 할까", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "내 주변에서 가구점 찾아봐", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "가구점"}, "split": "test"}
{"utterance": "근처 좋은 식당 찾아 줘", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "식당"}, "split": "test"}
{"utterance": "가장 가까운 하나로마트 어딨어", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_name": "하나로마트"}, "split": "test"}
{"utterance": "내 주변 어디에 극장 있어", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "극장"}, "split": "test"}
{"utterance": "근처에 가게들 말해줘", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "가게들"}, "split": "test"}
{"utterance": "근처에서 열리는 특별한 게 있나", "expected_intent": "recommendation:recommendation_events", "expected_slots": {}, "split": "test"}
{"utterance": "내 근처 영화관 찾아줘", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "극장에서 나쁘지 않은 영화 알려줘", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"place_name": "극장에서"}, "split": "test"}
{"utterance": "오늘 우리 지역에 무슨 이벤트 있어", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "올리 내 근처 베스트 옷 가게 알려줘", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "옷 가게"}, "split": "test"}
{"utterance": "오늘 순천에서 재미있는 이벤트 있어", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "오늘", "place_name": "순천에서"}, "split": "test"}
{"utterance": "근처 쌀 빵집 찾아줘", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "쌀 빵집"}, "split": "test"}
{"utterance": "오 킬로미터 이내에 어떤 옷 가게들이 있나 알려줘", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "옷 가게들이"}, "split": "test"}
{"utterance": "나 선물 을 하려고 하는데 반경 일 점 육 k. m. 이내 에 어떤 상점들 이 있지", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "상점들", "place_name": "반경 일 점 육 k. m. 이내"}, "split": "test"}
{"utterance": "동네 주변에 무슨 일 있어", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "동네 주변에"}, "split": "test"}
{"utterance": "내 근처 무슨 상점들 있어", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "상점들"}, "split": "test"}
{"utterance": "스타필드 언제 열어", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"business_name": "스타필드"}, "split": "test"}
{"utterance": "지역 현재 이벤트 찾아줘", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "지역 현재 이벤트"}, "split": "test"}
{"utterance": "주변 음악 이벤트 알려줘", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "음악 이벤트"}, "split": "test"}
{"utterance": "스파이더 맨 노 웨이 홈 어때", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"movie_name": "스파이더 맨 노 웨이 홈"}, "split": "test"}
{"utterance": "한 시간 반 후 느티마을 가는 택시 예약해줘", "expected_intent": "transport:transport_taxi", "expected_slots": {"time": "한 시간 반", "place_name": "느티마을", "transport_type": "택시"}, "split": "test"}
{"utterance": "일요일 오전 다섯시 기차 타고 서울 가야 해", "expected_intent": "transport:transport_ticket", "expected_slots": {"date": "일요일", "time": "오전 다섯시", "transport_type": "기차", "place_name": "서울"}, "split": "test"}
{"utterance": "이번 주말 에 k.t.x. 로 서울 가는 기차표 좀 예매해줘 올리", "expected_intent": "transport:transport_ticket", "expected_slots": {"date": "이번 주말", "transport_name": "k.t.x.", "place_name": "서울"}, "split": "test"}
{"utterance": "카카오택시 예약 좀 해줄래", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "카카오택시"}, "split": "test"}
{"utterance": "내일 카카오택시 예매해줄래", "expected_intent": "transport:transport_taxi", "expected_slots": {"date": "내일", "transport_agency": "카카오택시"}, "split": "test"}
{"utterance": "내가 사무실 떠난 후 카카오택시 예약해줄 수 있어", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "카카오택시"}, "split": "test"}
{"utterance": "기차 표 한 장 예매해줄래", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "기차"}, "split": "test"}
{"utterance": "서울 에서 경주 가는 기차 표 예약해", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "경주", "transport_type": "기차"}, "split": "test"}
{"utterance": "을지로 일가 교통상황은 어떠니", "expected_intent": "transport:transport_traffic", "expected_slots": {"place_name": "을지로 일가"}, "split": "test"}
{"utterance": "기차역 시간표 알려줘", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "기차역"}, "split": "test"}
{"utterance": "공항 가는 도시 택시 불러줘", "expected_intent": "transport:transport_taxi", "expected_slots": {"place_name": "공항", "transport_type": "택시"}, "split": "test"}
{"utterance": "여기서 공항 까지 가게 도시 택시 잡아줘", "expected_intent": "transport:transport_taxi", "expected_slots": {"place_name": "공항", "transport_type": "택시"}, "split": "test"}
{"utterance": "구글 서울시 가는 기차 표", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "서울시", "transport_type": "기차"}, "split": "test"}
{"utterance": "이번주 주말 기차 표 한 장 사줘", "expected_intent": "transport:transport_ticket", "expected_slots": {"time": "주말", "transport_type": "기차"}, "split": "test"}
{"utterance": "다섯시 에 집 으로 갈 때 교통 상황이 어때", "expected_intent": "transport:transport_query", "expected_slots": {"time": "다섯시", "place_name": "집"}, "split": "test"}
{"utterance": "한 시 에 영화 보러 가게 택시 한 대 예약해줘", "expected_intent": "transport:transport_taxi", "expected_slots": {"time": "한 시", "place_name": "영화", "transport_type": "택시"}, "split": "test"}
{"utterance": "부산에서 울산 가는 다음 기차 언제야", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "부산에서 울산", "transport_type": "기차"}, "split": "test"}
{"utterance": "올리 가장 가까운 카카오택시 찾아줘", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "카카오택시"}, "split": "test"}
{"utterance": "청량리 가는 현지 기차 시간 알려줘", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "청량리", "transport_type": "기차"}, "split": "test"}
{"utterance": "몇 시에 천안 가는 기차가 떠나니", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "천안"}, "split": "test"}
{"utterance": "도시 교통에 대해 말해봐", "expected_intent": "transport:transport_traffic", "expected_slots": {"place_name": "도시"}, "split": "test"}
{"utterance": "현재 서래로 근처 교통은 어떠니", "expected_intent": "transport:transport_traffic", "expected_slots": {"place_name": "서래로"}, "split": "test"}
{"utterance": "다음 주 수요일이나 목요일에 부산행 기차 옵션들 보여줘", "expected_intent": "transport:transport_query", "expected_slots": {"date": "수요일이나 목요일에", "place_name": "부산행", "transport_type": "기차"}, "split": "test"}
{"utterance": "경기도", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "경기도"}, "split": "test"}
{"utterance": "서울", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "서울"}, "split": "test"}
{"utterance": "서울 에서 천안 가는 기차 표 한 장 예매해줘", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "천안", "transport_type": "기차"}, "split": "test"}
{"utterance": "나의 길에 교통 체증 있어", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "제천 가는 표", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "제천"}, "split": "test"}
{"utterance": "천안 가는 기차", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "천안"}, "split": "test"}
{"utterance": "예술의 전당 가는 기차 시간표 보여줘", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "예술의 전당", "transport_type": "기차"}, "split": "test"}
{"utterance": "올리 택시 불러줘", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "택시"}, "split": "test"}
{"utterance": "강릉 가는 다음 기차 일등석 표 예약해", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "강릉", "transport_type": "기차", "transport_descriptor": "일등석"}, "split": "test"}
{"utterance": "기차표 예매해줘", "expected_intent": "transport:transport_ticket", "expected_slots": {}, "split": "test"}
{"utterance": "서울 에서 강릉 갈 때 예약 가능한 기차 표 목록 보여줘", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "강릉", "transport_type": "기차"}, "split": "test"}
{"utterance": "카카오택시 불러", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "카카오택시"}, "split": "test"}
{"utterance": "화요일 오전 아홉시 편도 기차 티켓 한장 예매", "expected_intent": "transport:transport_ticket", "expected_slots": {"date": "화요일", "time": "오전 아홉시", "transport_descriptor": "편도", "transport_type": "기차"}, "split": "test"}
{"utterance": "이번 주 금요일 기차 표 두 개 예매해줘", "expected_intent": "transport:transport_ticket", "expected_slots": {"date": "금요일", "transport_type": "기차"}, "split": "test"}
{"utterance": "화요일 청량리 역 의 무궁화 호 기차 시간 확인해줘", "expected_intent": "transport:transport_query", "expected_slots": {"date": "화요일", "place_name": "청량리 역", "transport_name": "무궁화 호", "transport_type": "기차"}, "split": "test"}
{"utterance": "기차 시간 좀 줘 봐", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "기차"}, "split": "test"}
{"utterance": "서울 에서 부산 까지 연결되는 기차 가 몇 시에 있어", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "부산", "transport_type": "기차"}, "split": "test"}
{"utterance": "사천 가는 가장 좋은 길은 뭐야", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "사천"}, "split": "test"}
{"utterance": "인천 가는 첫 지하철 이 뭐지", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "인천", "transport_type": "지하철"}, "split": "test"}
{"utterance": "카카오택시 한 대 잡아줘", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "카카오택시"}, "split": "test"}
{"utterance": "경상남도 통영 에서 경기도 의왕 가는 기차 표 예매해", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "경기도 의왕", "transport_type": "기차"}, "split": "test"}
{"utterance": "택시 찾아서 예약해줘", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "택시"}, "split": "test"}
{"utterance": "오늘의 방향을 알려줘", "expected_intent": "transport:transport_query", "expected_slots": {"date": "오늘의"}, "split": "test"}
{"utterance": "도시 를 여행하는 다음 기차 는 언제 여기 에서 출발해", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "기차"}, "split": "test"}
{"utterance": "가장 가까운 주유소는 어디야", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "주유소는"}, "split": "test"}
{"utterance": "현재 교통 상황 어때", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "가로수길 로 가는 가장 빠른 경로", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "가로수길"}, "split": "test"}
{"utterance": "울산 도착하는 기차 시간 알려줘", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "울산", "transport_type": "기차"}, "split": "test"}
{"utterance": "공항 가는데 시간 얼마나 걸려", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "공항"}, "split": "test"}
{"utterance": "영화관 가는데 시간이 얼마나 걸려", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "영화관"}, "split": "test"}
{"utterance": "경부고속도로 에 교통 상황 은 어때", "expected_intent": "transport:transport_traffic", "expected_slots": {"place_name": "경부고속도로"}, "split": "test"}
{"utterance": "인천 가는 기차 시간 알려줄래", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "인천", "transport_type": "기차"}, "split": "test"}
{"utterance": "공항 까지 타다 해 줘", "expected_intent": "transport:transport_taxi", "expected_slots": {"place_name": "공항", "transport_agency": "타다"}, "split": "test"}
{"utterance": "가장 싼 값으로 기차 예매해", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "기차"}, "split": "test"}
{"utterance": "정읍행 기차표 찾아봐", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "정읍행"}, "split": "test"}
{"utterance": "서울시 가는 기차 표 사줘", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "서울시", "transport_type": "기차"}, "split": "test"}
{"utterance": "집에서 여기까지 어떻게 와", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "집에서"}, "split": "test"}
{"utterance": "기차 여행 표 구해줘", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "기차"}, "split": "test"}
{"utterance": "스타벅스 로 가는 가장 빠른 길이 뭐지", "expected_intent": "transport:transport_query", "expected_slots": {"business_name": "스타벅스"}, "split": "test"}
{"utterance": "그 곳으로 길 안내해", "expected_intent": "transport:transport_query", "expected_slots": {}, "split": "test"}
{"utterance": "울산 가는 기차 표 예약해줘", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "울산", "transport_type": "기차"}, "split": "test"}
{"utterance": "러시아 가는 가장 싼 기차 표 찾아줘", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "러시아", "transport_type": "기차"}, "split": "test"}
{"utterance": "집 까지 태워주면 좋겠어", "expected_intent": "transport:transport_taxi", "expected_slots": {"place_name": "집"}, "split": "test"}
{"utterance": "장소 가는 택시 한 대 예약해", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "택시"}, "split": "test"}
{"utterance": "카카오 택시 좀 예약해줘", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "카카오", "transport_type": "택시"}, "split": "test"}
{"utterance": "오늘 기차 언제 와", "expected_intent": "transport:transport_query", "expected_slots": {"date": "오늘", "transport_type": "기차"}, "split": "test"}
{"utterance": "아침에 첫 지하철 시간은 언제야", "expected_intent": "transport:transport_query", "expected_slots": {"timeofday": "아침에", "transport_type": "지하철"}, "split": "test"}
{"utterance": "내가 온라인에서 기차 티켓 예약 어떻게 해", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "기차"}, "split": "test"}
{"utterance": "인천에서 경주 로 가는 기차 표가 필요해", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "인천에서 경주", "transport_type": "기차"}, "split": "test"}
{"utterance": "강남에서 부산 가는 기차 표 구해줘", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "강남에서 부산", "transport_type": "기차"}, "split": "test"}
{"utterance": "월요일 정오 에 택시 픽업 잡아줘", "expected_intent": "transport:transport_taxi", "expected_slots": {"date": "월요일", "timeofday": "정오", "transport_type": "택시"}, "split": "test"}
{"utterance": "마산 까지 가는 왕복 여행 기차 표가 얼마야", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "마산", "transport_type": "기차"}, "split": "test"}
{"utterance": "경기도 군포 가는 기차 시간표 있니", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "경기도 군포", "transport_type": "기차"}, "split": "test"}
{"utterance": "부산 에서 출발하는 첫 기차 몇 시니", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "부산", "transport_type": "기차"}, "split": "test"}
{"utterance": "청주 가는 다음 기차 가 언제 있어", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "청주", "transport_type": "기차"}, "split": "test"}
{"utterance": "도시의 교통상황이 어때", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "교통량이 적어", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "현재 교통상황 어때", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 오전 여덟 시 에 여기서 경기도 군포 로 가는 기차 표 예약해", "expected_intent": "transport:transport_ticket", "expected_slots": {"date": "오늘", "time": "오전 여덟 시", "place_name": "경기도 군포", "transport_type": "기차"}, "split": "test"}
{"utterance": "내가 평소 회사 가는 길 교통 상황 어때", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "네비게이션 검색", "expected_intent": "transport:transport_query", "expected_slots": {}, "split": "test"}
{"utterance": "택시 불러 줘", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "택시"}, "split": "test"}
{"utterance": "구이정 으로 데려다 줄 카카오택시 불러줘", "expected_intent": "transport:transport_taxi", "expected_slots": {"place_name": "구이정", "transport_type": "카카오택시"}, "split": "test"}
{"utterance": "지금 교통이 어때", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "대전 가는 기차 표 구해줘", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "대전", "transport_type": "기차"}, "split": "test"}
{"utterance": "원주 가는 티켓 구해줘", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "원주"}, "split": "test"}
{"utterance": "부산 가는 기차 표 좀 찾아봐", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "부산", "transport_type": "기차"}, "split": "test"}
{"utterance": "도로 교통", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "지금 나를 태우러 올 카카오택시 한 대 예약해줘", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "카카오택시"}, "split": "test"}
{"utterance": "서울까지 운전하는데 걸리는 시간", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "서울까지"}, "split": "test"}
{"utterance": "가장 가까운 카카오택시 예약해줘", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "카카오택시"}, "split": "test"}
{"utterance": "교통 에 대해 말해 줄래", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "내 위치 근처의 기차 시간표", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "위치"}, "split": "test"}
{"utterance": "공립 도서관 어디야", "expected_intent": "transport:transport_query", "expected_slots": {"business_type": "공립 도서관"}, "split": "test"}
{"utterance": "부산행 기차 표 예매", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "부산행", "transport_type": "기차"}, "split": "test"}
{"utterance": "부산에서 가는 ktx 열차 예매해줘", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "부산에서", "transport_name": "ktx", "transport_type": "열차"}, "split": "test"}
{"utterance": "화요일 인천에서 포천 가는 표 구해줘", "expected_intent": "transport:transport_ticket", "expected_slots": {"date": "화요일", "place_name": "인천에서 포천"}, "split": "test"}
{"utterance": "쇼핑몰 로 어떻게 가", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "쇼핑몰"}, "split": "test"}
{"utterance": "부산 가는 기차 표 얼마야", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "부산", "transport_type": "기차"}, "split": "test"}
{"utterance": "서울 가는 모든 기차 시간 목록 부탁해", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "서울", "transport_type": "기차"}, "split": "test"}
{"utterance": "기차 몇 시에 출발해", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "기차"}, "split": "test"}
{"utterance": "지금 교통은 어떠니", "expected_intent": "transport:transport_traffic", "expected_slots": {"time": "지금"}, "split": "test"}
{"utterance": "롯데 타워 에 데려다줘", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "롯데 타워"}, "split": "test"}
{"utterance": "사무실 가는 택시 예약해줘", "expected_intent": "transport:transport_taxi", "expected_slots": {"place_name": "사무실", "transport_type": "택시"}, "split": "test"}
{"utterance": "내일 아침 수원에서 광주 가는 기차 표 예매해줘", "expected_intent": "transport:transport_ticket", "expected_slots": {"date": "내일", "timeofday": "아침", "place_name": "수원에서 광주", "transport_type": "기차"}, "split": "test"}
{"utterance": "우리 집 가는 방향 보여줘", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "집"}, "split": "test"}
{"utterance": "방향 부탁", "expected_intent": "transport:transport_query", "expected_slots": {}, "split": "test"}
{"utterance": "영남 고속버스 시간이 어떻게 돼", "expected_intent": "transport:transport_query", "expected_slots": {"transport_name": "영남 고속버스"}, "split": "test"}
{"utterance": "교통 리포트", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "기차 표", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "기차"}, "split": "test"}
{"utterance": "기차 표 예약 부탁해", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "기차"}, "split": "test"}
{"utterance": "이십육일 주말 에 울산 에서 부산 가는 기차 표 한 장 예매해", "expected_intent": "transport:transport_ticket", "expected_slots": {"date": "이십육일 주말", "place_name": "부산", "transport_type": "기차"}, "split": "test"}
{"utterance": "오전 아홉 시 에 다음 택시 예약해", "expected_intent": "transport:transport_taxi", "expected_slots": {"time": "오전 아홉 시", "transport_type": "택시"}, "split": "test"}
{"utterance": "청주 에 기차 몇 시에 도착하지", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "청주", "transport_type": "기차"}, "split": "test"}
{"utterance": "내 근처 가게들 지도에 찾아줘", "expected_intent": "transport:transport_query", "expected_slots": {"business_type": "가게들"}, "split": "test"}
{"utterance": "올리 봉은사로 가는 방향 알려줘", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "봉은사로"}, "split": "test"}
{"utterance": "세상 에서 가장 높은 건물이 뭐야", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "세상"}, "split": "test"}
{"utterance": "정교하다 의 정의", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "정교하다"}, "split": "test"}
{"utterance": "포렌식 정의 부탁해", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "포렌식"}, "split": "test"}
{"utterance": "포렌식 의 정의는 뭐야", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "포렌식"}, "split": "test"}
{"utterance": "세계 에서 제일 높은 봉우리는 뭐야", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "세계"}, "split": "test"}
{"utterance": "난기류 뜻이 뭐야", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "난기류"}, "split": "test"}
{"utterance": "톺아보다 의 정의 확인해줘", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "톺아보다"}, "split": "test"}
{"utterance": "내가 말하는 거 보고 내 감정을 알 수 있겠어", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "김연자 는 몇 살이야", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "김연자"}, "split": "test"}
{"utterance": "결례 의 정의 찾아줘", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "결례"}, "split": "test"}
{"utterance": "레시피들 보여줘", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "가장 가까운 만두 가게가 어디야", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "만두 가게가"}, "split": "test"}
{"utterance": "이백 나누기 십은 뭐야", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "구의 제곱근은 뭐야", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "동네 빵집에서 고구마파이를 먹고 싶다", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "매진된 토요일 밤 콘서트 티켓을 원해", "expected_intent": "general:general_quirky", "expected_slots": {"date": "토요일", "timeofday": "밤"}, "split": "test"}
{"utterance": "내가 이해할 수 있는 언어로 양자물리학 설명해줘", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "무설탕 식이요법이랑 재료 쇼핑 목록 만들어줘", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "오렌지 의 정의는 뭐야", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "오렌지"}, "split": "test"}
{"utterance": "박명수 가 왜 안 웃기지", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "박명수"}, "split": "test"}
{"utterance": "이승철 생일 언제야", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "이승철"}, "split": "test"}
{"utterance": "송새벽 주소 알려줘", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "송새벽"}, "split": "test"}
{"utterance": "차를 운전해서 내 친구들을 데려와", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "영국 의 현 총리가 누구였지", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "영국"}, "split": "test"}
{"utterance": "일 더하기 일은 얼마야", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "일 더하기 일은 얼마야", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "나이지리아 의 수도는 어디야", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "나이지리아"}, "split": "test"}
{"utterance": "십의 계승은 뭐야", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "우주는 얼마나 커", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "전도연 의 생일은 언제야", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "전도연"}, "split": "test"}
{"utterance": "태풍 에 관해 모두 말해줘", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "태풍"}, "split": "test"}
{"utterance": "나와 내 부인을 위해서 특별한 요리 해줄 수 있어", "expected_intent": "general:general_quirky", "expected_slots": {"relation": "부인을"}, "split": "test"}
{"utterance": "전지현 전화번호 알아", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "전지현"}, "split": "test"}
{"utterance": "계몽하다 의 뜻은 뭐야", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "계몽하다"}, "split": "test"}
{"utterance": "진동 의 정의와 철자", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "진동"}, "split": "test"}
{"utterance": "이 곱하기 이 계산", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "유명인 지금 어딨는지 체크해", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "살이 찌지 않도록 움직이게 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "여섯 달 안에 한번도 얘기 안 했던 오래된 친구들 연락처 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "내 지역에서 최근 나온 영화표 가격이랑 자리 있는지 알아봐", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "엄마 한테 말해야겠어", "expected_intent": "general:general_quirky", "expected_slots": {"relation": "엄마"}, "split": "test"}
{"utterance": "서울시 총선 결과 어떨지 나한테 말해줘", "expected_intent": "news:news_query", "expected_slots": {"place_name": "서울시"}, "split": "test"}
{"utterance": "육백이십오의 근은 뭐야", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "이것이 저에게 조언을 줄 수 있길 바랍니다", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "너 수학 알아", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "지역", "expected_intent": "qa:qa_definition", "expected_slots": {}, "split": "test"}
{"utterance": "교통체증 없이 시내 내 직장으로 가는 가장 빠른 방법이 뭐지", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "시내"}, "split": "test"}
{"utterance": "손예진 은 예뻐지기 위해서 뭘 하지", "expected_intent": "general:general_quirky", "expected_slots": {"person": "손예진"}, "split": "test"}
{"utterance": "김희선은 어디서 애들 옷 사", "expected_intent": "general:general_quirky", "expected_slots": {"person": "김희선은"}, "split": "test"}
{"utterance": "왜 전지현은 엄청 어려보이지", "expected_intent": "general:general_quirky", "expected_slots": {"person": "전지현은"}, "split": "test"}
{"utterance": "최고의 초코칩쿠키 레시피 뭐야", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "박경리 첫번째 출판물이 뭐야", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "박경리"}, "split": "test"}
{"utterance": "안중근 에 관한 정보 부탁해", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "안중근"}, "split": "test"}
{"utterance": "김범수 는 얼마나 벌었어", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "김범수"}, "split": "test"}
{"utterance": "빈번 이라는 단어의 정의가 뭐야", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "빈번"}, "split": "test"}
{"utterance": "유명인이 누구야", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "유명인은 뭐해", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "날 위해 저녁을 만들어줘", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "이 더하기 이는 뭐야", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "알렉사 나 이달 매일 얼마나 쓸 수 있어", "expected_intent": "qa:qa_maths", "expected_slots": {"date": "이달", "general_frequency": "매일"}, "split": "test"}
{"utterance": "근처 가장 좋은 글루텐 프리 빵 판매하는 슈퍼 알려줘", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"food_type": "글루텐 프리 빵", "business_type": "슈퍼"}, "split": "test"}
{"utterance": "향유고래의 크기는 얼마야", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "이휘소 박사가 하는 것처럼 검색 결과로부터 답을 계산할 수 있었으면 좋겠어", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "나는 그것이 나의 선호도를 기억하고 내가 물어볼 때 그것들을 바탕으로 추천해주기를 원해", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "나는 이게 내가 이걸 이번 달에 얼마나 자주 먹었는지와 같은 통계 자료들을 알려줄 수 있었으면 좋겠어", "expected_intent": "general:general_quirky", "expected_slots": {"date": "이번 달에"}, "split": "test"}
{"utterance": "그냥 의미없는 잡담", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "전 당신에게 핀헤드 위에서 얼마나 많은 천사들이 춤을 출 수 있는지 묻고 싶네요", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "십이 더하기 백구십육은 뭐야", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "적시성 의 정의는 뭐야", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "적시성"}, "split": "test"}
{"utterance": "언제 세상이 끝날까", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "사와 육 두 숫자의 합은 뭐야", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 밤 하키 게임이 몇 시에 해", "expected_intent": "general:general_quirky", "expected_slots": {"timeofday": "오늘 밤"}, "split": "test"}
{"utterance": "얼마나 많은 나라들이 사형 제도를 시행해", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "사십 달러의 십 퍼센트를 빼면", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "내 모든 친구들에게 재미있는 메시지를 보내줘", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "내일 어떤 상점에서 세일한", "expected_intent": "general:general_quirky", "expected_slots": {"date": "내일"}, "split": "test"}
{"utterance": "골다공증이 원인은 무엇일까", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "이백사십육 더하기 백오십사가 뭔지 알려줘", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "사 더하기 오 는 얼마야", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "박완서 는 몇 살이야", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "박완서"}, "split": "test"}
{"utterance": "내가 집에 없을 때 로봇이 애완견한테 밥도 주고 쓰다듬어 줬으면 좋겠어", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "예정된 일정에 늦지 않으려면 언제 떠나야 하는 지 알려줘", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "십이 나누기 사는 뭐야", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "십팔과 삼십일의 곱이 뭔지 말해줘", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "우리는 왜 여기에 있어", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "당신에게 법률 상담을 해줄 수 있다면 참 좋을텐데요", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "미국이 언제 자유를 얻었지", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "미국이"}, "split": "test"}
{"utterance": "내가 요구한 거 전부 다 리스트 보여줘", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "올리야 경기도 수도가 뭐니", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "경기도"}, "split": "test"}
{"utterance": "이번 주말에 당첨될 로또 번호 알려줘", "expected_intent": "general:general_quirky", "expected_slots": {"date": "이번 주말에"}, "split": "test"}
{"utterance": "동기 부여 의 정의 알려줘", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "동기 부여"}, "split": "test"}
{"utterance": "몇 시인지 알려줘", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "개의 다리는 몇 개야", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "고래는 왜 커", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "왜 지구는 둥급니까", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "이게 아이디어를 분석해줬으면 좋겠어", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "넷플릭스 보면서 쉬고 싶어", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "한석규 가 나온 마지막 영화가 뭐야", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "한석규"}, "split": "test"}
{"utterance": "어젯 밤 이정재 어디서 봤어", "expected_intent": "general:general_quirky", "expected_slots": {"date": "어젯 밤", "person": "이정재"}, "split": "test"}
{"utterance": "티비 켜 줄래", "expected_intent": "iot:iot_wemo_on", "expected_slots": {}, "split": "test"}
{"utterance": "육 나누기 이는 뭐야", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "조인성 얼마나 커", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "조인성"}, "split": "test"}
{"utterance": "환율 계산기 부탁해", "expected_intent": "qa:qa_currency", "expected_slots": {}, "split": "test"}
{"utterance": "지난번에 아카데미상 탄 영화가 언제였지", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "에베레스트 산 얼마나 높아", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "에베레스트"}, "split": "test"}
{"utterance": "웨스트 버지니아 주도가 어디야", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "웨스트 버지니아"}, "split": "test"}
{"utterance": "뉴질랜드 는 지도에서 어디 있어", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "뉴질랜드"}, "split": "test"}
{"utterance": "스티브 잡스 가 어디서 태어났는지 말해줘", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "스티브 잡스"}, "split": "test"}
{"utterance": "이정재 결혼했는지 확인해줄 수 있어", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "이정재"}, "split": "test"}
{"utterance": "대부분의 유명 인사들은 어디서 놀아", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 내 지역사회를 돕기위해 할 수 있는걸 알려줘", "expected_intent": "general:general_quirky", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "오늘 내 지역에 무료 이벤트 있어", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "가장 큰 책상 은 뭐야", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "가장 큰 책상"}, "split": "test"}
{"utterance": "내가 있는 곳에서 가장 가까운 동물원 어디 있어", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {}, "split": "test"}
{"utterance": "아놀드 슈워제네거의 생일이 언제야", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "아놀드 슈워제네거의"}, "split": "test"}
{"utterance": "디즈니의 지난 주 주식 상승률이 어떻게 돼", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "디즈니의"}, "split": "test"}
{"utterance": "지금 파운드 가치는 얼마야", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "파운드"}, "split": "test"}
{"utterance": "소의 위가 몇 개인지 말해줄 수 있어", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "조승우 는 연극 몇 편에 나왔어", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "조승우"}, "split": "test"}
{"utterance": "현빈 은 어떤 스프레이 브랜드 사용해", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "현빈"}, "split": "test"}
{"utterance": "달러 는 원 으로 얼마야", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "원"}, "split": "test"}
{"utterance": "달러 환율이 상승했어", "expected_intent": "qa:qa_currency", "expected_slots": {}, "split": "test"}
{"utterance": "중국 의 가장 최근 환율은 얼마야", "expected_intent": "qa:qa_currency", "expected_slots": {"place_name": "중국"}, "split": "test"}
{"utterance": "의자 가 뭐야", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "의자"}, "split": "test"}
{"utterance": "의자는 무슨 색이야", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "본초 자오선이 어디 있어", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "사람의 전기", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "전자 배출 시스템 은 뭐야", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "전자 배출 시스템"}, "split": "test"}
{"utterance": "회전자 설명해줘", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "회전자"}, "split": "test"}
{"utterance": "망고 가 뭐야", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "망고"}, "split": "test"}
{"utterance": "알래스카 에서 러시아 볼 수 있다는 게 진짜야", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "러시아"}, "split": "test"}
{"utterance": "오늘 미국 달러 에서 일본 엔 으로의 환율 정보 나열해줘", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "일본 엔"}, "split": "test"}
{"utterance": "한국조선해양 주식 어떻게 될까", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "한국조선해양"}, "split": "test"}
{"utterance": "미국 달러 와 중국 위안 사이의 환율이 뭐야", "expected_intent": "qa:qa_currency", "expected_slots": {"place_name": "중국 위안"}, "split": "test"}
{"utterance": "중국 환율이 얼마야", "expected_intent": "qa:qa_currency", "expected_slots": {"place_name": "중국"}, "split": "test"}
{"utterance": "중국 의 현재 환율은 얼마야", "expected_intent": "qa:qa_currency", "expected_slots": {"place_name": "중국"}, "split": "test"}
{"utterance": "유리 불기에 관한 위키피디아 기사를 읽어주세요", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "카카오 현재 주가 말해줘", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "카카오"}, "split": "test"}
{"utterance": "엄정화 는 몇 살이야", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "엄정화"}, "split": "test"}
{"utterance": "파섹이 뭐야", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "간장공장 공장장", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "이 곱하기 이는", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "서울 에서 부산 까지 얼마나 멀어", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "부산"}, "split": "test"}
{"utterance": "신용 카드 설명해줄 수 있어", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "신용 카드"}, "split": "test"}
{"utterance": "양세찬 은 결혼 했어", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "양세찬"}, "split": "test"}
{"utterance": "달러와 원화의 환율은 어떻게 돼", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "달러와 원화의"}, "split": "test"}
{"utterance": "지구에 있는 나라들의 평균 크기는 몇 제곱 미터야", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "종속적인 의 정의가 뭐야", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "종속적인"}, "split": "test"}
{"utterance": "오늘 다우지수에 무슨 일 있었어", "expected_intent": "qa:qa_stock", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "태양은 얼마나 멀어", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "멕시코 돈 의 환율은 얼마야", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "멕시코"}, "split": "test"}
{"utterance": "지구에서 화산이 가장 많은 곳은 어디야", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "서지원 은 언제 죽었어", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "서지원"}, "split": "test"}
{"utterance": "비오 인기곡이 뭐야", "expected_intent": "music:music_query", "expected_slots": {"artist_name": "비오"}, "split": "test"}
{"utterance": "지금 애플 주식 보여줘", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "애플"}, "split": "test"}
{"utterance": "논리 의 정의는 뭐야", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "논리"}, "split": "test"}
{"utterance": "독도 는 어디야", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "독도"}, "split": "test"}
{"utterance": "러시모어 산의 위치와 정보 검색해주세요", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "행복한 생일 을 어떻게 묘사할래", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "행복한 생일"}, "split": "test"}
{"utterance": "유승준 에 관한 정보 부탁해", "expected_intent": "qa:qa_factoid", "expected_slots": {"artist_name": "유승준"}, "split": "test"}
{"utterance": "충남 천안 의 기온 어때", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "충남 천안"}, "split": "test"}
{"utterance": "허재 에 관해 말해줄 수 있어", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "허재"}, "split": "test"}
{"utterance": "달러 에서 유로 로", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "유로"}, "split": "test"}
{"utterance": "인생 의 정의", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "인생"}, "split": "test"}
{"utterance": "기절초풍 정의해줘", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "기절초풍"}, "split": "test"}
{"utterance": "기절초풍 의 뜻이 뭔지 말해줄 수 있어", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "기절초풍"}, "split": "test"}
{"utterance": "황석영 의 생일은 언제야", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "황석영"}, "split": "test"}
{"utterance": "추신수 의 가치는 얼마야", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "추신수"}, "split": "test"}
{"utterance": "지금 눈 오는 곳 말해줘", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "전반적인 주식 상황 어때", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "엔화 의 가치는 얼마야", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "엔화"}, "split": "test"}
{"utterance": "라오스 는 어디 있어", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "라오스"}, "split": "test"}
{"utterance": "현재 달러 환율", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "달러"}, "split": "test"}
{"utterance": "suffering consequences 뜻", "expected_intent": "qa:qa_definition", "expected_slots": {}, "split": "test"}
{"utterance": "행동의 결과", "expected_intent": "qa:qa_definition", "expected_slots": {}, "split": "test"}
{"utterance": "탑 모델 자동차", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "평균적인 집은 얼마야", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "나무늘보 설명해줘", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "나무늘보"}, "split": "test"}
{"utterance": "나무늘보에 관해 아는 거 다 말해줘", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "송소희 생일 언제야", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "송소희", "event_name": "생일"}, "split": "test"}
{"utterance": "적도 의 좌표는 뭐야", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "적도"}, "split": "test"}
{"utterance": "지옥 을 설명해줘", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "지옥"}, "split": "test"}
{"utterance": "일 더하기 이는", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "만약 연필 한 자루가 사 달러이고 책 한 권은 십 달러라면 연필 두 개랑 책 세 권을 사면 얼마 지불해야 해", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "미국 달러 와 유로 환율 얼마야", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "유로"}, "split": "test"}
{"utterance": "문재인 이 언제 태어났는지 말해줘", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "문재인"}, "split": "test"}
{"utterance": "몰도바의 위치는 어디야", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "헐크는 얼마나 커", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "이 지역의 환율은 얼마야", "expected_intent": "qa:qa_currency", "expected_slots": {}, "split": "test"}
{"utterance": "이정재 는 몇 년도에 연기 시작했어", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "이정재"}, "split": "test"}
{"utterance": "엘비스 프레슬리의 생일 은 언제야", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "엘비스 프레슬리의", "event_name": "생일"}, "split": "test"}
{"utterance": "어제 내가 뭘 입었었는지 알려줘", "expected_intent": "general:general_quirky", "expected_slots": {"date": "어제"}, "split": "test"}
{"utterance": "일 달러 는 몇 인도 루피 와 같아", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "인도 루피"}, "split": "test"}
{"utterance": "성룡 은 지금 어디 살아", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "성룡"}, "split": "test"}
{"utterance": "카카오 현재 주가", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "카카오"}, "split": "test"}
{"utterance": "태백산맥 은 어디야", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "철수 뭐해", "expected_intent": "general:general_quirky", "expected_slots": {"person": "철수"}, "split": "test"}
{"utterance": "사암 에 관한 상세 정보 부탁해", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "사암"}, "split": "test"}
{"utterance": "사암 설명해줘", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "사암"}, "split": "test"}
{"utterance": "피라미드 는 어디 있어", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "피라미드"}, "split": "test"}
{"utterance": "피라미드 의 지리적 세부 정보 보여줘", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "피라미드"}, "split": "test"}
{"utterance": "이소라 의 약력 보여줘", "expected_intent": "qa:qa_factoid", "expected_slots": {"artist_name": "이소라"}, "split": "test"}
{"utterance": "카카오 현재 가격 얼마야", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "카카오"}, "split": "test"}
{"utterance": "실린더 의 정의가 뭔지 말해줘", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "실린더"}, "split": "test"}
{"utterance": "영국 파운드 는 얼마야", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "영국 파운드"}, "split": "test"}
{"utterance": "담요 정의", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "담요"}, "split": "test"}
{"utterance": "컨버스 신발 이 뭐야", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "컨버스 신발"}, "split": "test"}
{"utterance": "조종사 선글라스는 어떤 종류의 선글라스야", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "아프리카 정보", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "아프리카"}, "split": "test"}
{"utterance": "locality 뜻", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "정은지 는 어디에서 대학 다녔어", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "정은지"}, "split": "test"}
{"utterance": "김민정 이 컨버스 신어", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "김민정"}, "split": "test"}
{"utterance": "내 현재 위치에서 캐나다 까지 얼마나 멀어", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "캐나다"}, "split": "test"}
{"utterance": "현대차 주식 가격이 얼마야", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "현대차"}, "split": "test"}
{"utterance": "스타벅스 주식 요즘 얼마야", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "스타벅스"}, "split": "test"}
{"utterance": "같은 걸로 여행 길 찾아봐", "expected_intent": "transport:transport_query", "expected_slots": {}, "split": "test"}
{"utterance": "삼 곱하기 사의 답", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "미국 달러는 원으로는 얼마야", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "미국 달러는 원으로는"}, "split": "test"}
{"utterance": "전지현이 어느 영화에 나왔어", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "전지현이"}, "split": "test"}
{"utterance": "파운드 대 미국 달러 는 얼마야", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "미국 달러"}, "split": "test"}
{"utterance": "미국 달러 대비 유로 가치는 얼마야", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "유로"}, "split": "test"}
{"utterance": "사람의 자세한 정보", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "현무암 어떻게 얻었어", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "현대차 주식은 얼마야", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "현대차"}, "split": "test"}
{"utterance": "구 더하기 이 할 수 있어", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "책 이 뭐야", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "책"}, "split": "test"}
{"utterance": "강릉 에 관해 말해줘", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "강릉"}, "split": "test"}
{"utterance": "페소 와 엔 사이의 환율은 얼마야", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "엔"}, "split": "test"}
{"utterance": "인도 의 지리적 위치 설명해줘", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "인도"}, "split": "test"}
{"utterance": "이병헌의 가치는 얼마나 돼", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "이것이 역사속에서 가장 중요하거나 아니면 제일 안 중요한거야", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "강원도 는 얼마나 커", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "강원도"}, "split": "test"}
{"utterance": "미국의 사이즈는 어떻게 돼", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "용과의 색은 뭐야", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "이재용 어디서 태어났어", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "이재용"}, "split": "test"}
{"utterance": "인도 대 중국의 경제와 g.d.p. 에 대해 말해줘", "expected_intent": "general:general_quirky", "expected_slots": {"place_name": "중국의"}, "split": "test"}
{"utterance": "효성티앤씨 의 주가는 얼마야", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "효성티앤씨"}, "split": "test"}
{"utterance": "가설 이 뭐야", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "가설"}, "split": "test"}
{"utterance": "구글 사람에게 기본적으로 필요한 것들이 뭐야", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "세계관의 답변은 뭐야", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "간장 공장 공장장은 장 공장장이고 된장 공장 공장장은 공 공장장이다", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "내 생각에 나는 전 세계를 하루 만에 여행할 수 있을 거 같아", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "사 차 세계대전이 일어날까요", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "이십 년 후에 세계 인구가 얼마나 될까", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "유명인 직업 알려줘", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "치생 의 정의", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "치생"}, "split": "test"}
{"utterance": "육삼빌딩은 얼마나 커", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "지구에서 가장 깊은 곳은 어디야", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "엔씨소프트 주가 상세 정보 부탁해", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "엔씨소프트"}, "split": "test"}
{"utterance": "새로운 축구 경기 규칙을 설명해 줘", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "컴퓨터 하드 디스크 에 관해 설명해", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "컴퓨터 하드 디스크"}, "split": "test"}
{"utterance": "우리나라에 접한 대양은 뭐야", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "박찬호 는 일상생활에서 무엇을 할까", "expected_intent": "general:general_quirky", "expected_slots": {"person": "박찬호"}, "split": "test"}
{"utterance": "마동석 올해 새 영화 있어", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "마동석"}, "split": "test"}
{"utterance": "카프탄 이 뭐야", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "카프탄"}, "split": "test"}
{"utterance": "파운드 에 대한 미국 달러 환율 찾아줘", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "미국 달러"}, "split": "test"}
{"utterance": "멕시코 의 수도는 어디야", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "멕시코"}, "split": "test"}
{"utterance": "피지 는 어디야", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "피지"}, "split": "test"}
{"utterance": "정우성 의 첫 번째 영화는 뭐야", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "정우성"}, "split": "test"}
{"utterance": "정주리 에게 새로운 아기가 생겼어", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "정주리"}, "split": "test"}
{"utterance": "유로 대 달러 환율", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "달러"}, "split": "test"}
{"utterance": "길 찾아", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "구글 픽셀 의 기능", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "롯데월드 가는 방향", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "롯데월드"}, "split": "test"}
{"utterance": "stock price for name 실행해", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "주가 상세 정보", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "우리도 태양에 갈 수 있나", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "볼쇼이 극장 은 언제 지어졌어", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "볼쇼이 극장"}, "split": "test"}
{"utterance": "스마트폰에 대해 설명해봐", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "스마트폰에"}, "split": "test"}
{"utterance": "올리 김구 는 몇 번의 회의를 했어", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "김구"}, "split": "test"}
{"utterance": "러시아 의 현재 총리는 누구야", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "러시아"}, "split": "test"}
{"utterance": "조지 r.r. 마틴의 얼음과 불의 노래 최근 책 요약해주세요", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "김구 는 어디서 태어났어", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "김구"}, "split": "test"}
{"utterance": "달러 가격은 얼마야", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "달러"}, "split": "test"}
{"utterance": "g. b. p. 대 u. s. d. 환율이 내가 예상한 대로 되면 알려줘", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "u. s. d."}, "split": "test"}
{"utterance": "이 장소의 지리적 세부 정보 찾아", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "나스닥에서 마이크로소프트 주가 찾아주세요", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "마이크로소프트"}, "split": "test"}
{"utterance": "인도 의 위치를 말해줘", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "인도"}, "split": "test"}
{"utterance": "이효리 콘서트 스케줄 목록 만들어줘", "expected_intent": "lists:lists_createoradd", "expected_slots": {"person": "이효리"}, "split": "test"}
{"utterance": "지구 온난화 현상이 사실인지 말해줘", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "이 회사 주식의 상승과 하락을 알려줘", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "미국 이 다른 나라 대비해서 뭐가 더 좋은지 말해봐", "expected_intent": "general:general_quirky", "expected_slots": {"place_name": "미국"}, "split": "test"}
{"utterance": "지구 에서 가장 큰 활화산 어디야", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "지구"}, "split": "test"}
{"utterance": "일본에서 한국까지 가려면 얼마나 걸려", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "일본에서 한국까지"}, "split": "test"}
{"utterance": "television circuit 뜻이 뭐야", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "television circuit"}, "split": "test"}
{"utterance": "스마트폰 회로 설명해줘", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "스마트폰 회로"}, "split": "test"}
{"utterance": "서울 인구는 얼마나 돼", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "서울"}, "split": "test"}
{"utterance": "현재 환율", "expected_intent": "qa:qa_currency", "expected_slots": {}, "split": "test"}
{"utterance": "이승만은 몇 년 동안 한국의 대통령이었어", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "이미연 이 김승우 를 떠났어", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "김승우"}, "split": "test"}
{"utterance": "천우희 가 작업 중인 새 영화가 뭐야", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "천우희"}, "split": "test"}
{"utterance": "이백 나누기 사", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "외환 환율", "expected_intent": "qa:qa_currency", "expected_slots": {}, "split": "test"}
{"utterance": "구 가 뭔지 설명해줘", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "구"}, "split": "test"}
{"utterance": "주가", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 가장 싼 제주도 비행기 표 알려줘", "expected_intent": "transport:transport_ticket", "expected_slots": {"date": "오늘", "place_name": "제주도"}, "split": "test"}
{"utterance": "요리법 부탁해", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "러시아 의 인구는", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "러시아"}, "split": "test"}
{"utterance": "유로 와 달러 의 환율이 얼마야", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "달러"}, "split": "test"}
{"utterance": "노무현 이 태어난 해는 언제야", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "노무현"}, "split": "test"}
{"utterance": "xy에 대해 설명해봐", "expected_intent": "qa:qa_definition", "expected_slots": {}, "split": "test"}
{"utterance": "아마존 우림의 동물왕국에 대해 말해줘", "expected_intent": "general:general_quirky", "expected_slots": {"place_name": "아마존 우림의"}, "split": "test"}
{"utterance": "김남길 의 취미가 뭐야", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "김남길"}, "split": "test"}
{"utterance": "러시아 총리는 누구야", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "러시아"}, "split": "test"}
{"utterance": "오케이 구글 대통령 이 뭐야", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "대통령"}, "split": "test"}
{"utterance": "레진 치아 치료 가 정확히 뭐야", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "레진 치아 치료"}, "split": "test"}
{"utterance": "하스스톤 카드 게임 설명해줘", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "하스스톤 카드 게임"}, "split": "test"}
{"utterance": "오케이 구글 이효리 는 어디 살아", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "이효리"}, "split": "test"}
{"utterance": "이효리 는 어디 살아", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "이효리"}, "split": "test"}
{"utterance": "지금 유로 달러 얼마야", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "유로 달러"}, "split": "test"}
{"utterance": "카자흐스탄 의 수도는 어디야", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "카자흐스탄"}, "split": "test"}
{"utterance": "칠십 육을 두 개의 파트로 나눠", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "거들먹 이라는 단어의 정의 알려줘", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "거들먹"}, "split": "test"}
{"utterance": "달러 에서 유로 로의 환율", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "유로"}, "split": "test"}
{"utterance": "유로 대비 달러 가치는 얼마야", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "달러"}, "split": "test"}
{"utterance": "공 을 어떻게 설명할래", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "공"}, "split": "test"}
{"utterance": "세상 에서 가장 큰 대양 말해줘", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "세상"}, "split": "test"}
{"utterance": "로마와 그리스 달력의 차이점은 뭐야", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "의자의 구성은 뭐야", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "내 근처 둘레길 어디 있어", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {}, "split": "test"}
{"utterance": "랩몬 이 가장 좋아하는 놀이기구가 뭐야", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "랩몬"}, "split": "test"}
{"utterance": "그의 딱딱한 말은 적절하다", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "더 많은 주가", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "사람들을 비교", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "중립 밀도 필터란 무엇이며 하나 위의 나사와 네모난 것 사이에서 스타일이 더 좋은 그라데이션 필터를 원합니까 아니면 솔리드 필터를 원합니까", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "과도한 의 의미 설명해줄 수 있어", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "과도한"}, "split": "test"}
{"utterance": "일 영국 파운드 의 환율은 얼마야", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "영국 파운드"}, "split": "test"}
{"utterance": "에스피씨삼립 주가 확인", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "에스피씨삼립"}, "split": "test"}
{"utterance": "저 지역의 기후 조건은 어때", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "의 뜻", "expected_intent": "qa:qa_definition", "expected_slots": {}, "split": "test"}
{"utterance": "미국에서 토네이도가 가장 적게 출몰하는 도시가 어디야", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "미국에서"}, "split": "test"}
{"utterance": "그 대상을 나에게 설명해주세요", "expected_intent": "qa:qa_definition", "expected_slots": {}, "split": "test"}
{"utterance": "그 사람은 어떤 분야에서 뛰어나", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "주가가 상승했어 아니면 하락했어", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "노무현 대통령은 어디서 태어났어", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "노무현"}, "split": "test"}
{"utterance": "임영웅 다음 앨범 언제 나와", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "임영웅"}, "split": "test"}
{"utterance": "지난 주 카카오 주식 어땠어", "expected_intent": "qa:qa_stock", "expected_slots": {"date": "지난 주", "business_name": "카카오"}, "split": "test"}
{"utterance": "이마트 주식 가격 올랐어 내렸어", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "이마트"}, "split": "test"}
{"utterance": "셀트리온 사려면 얼마나 들어", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "셀트리온"}, "split": "test"}
{"utterance": "루피 에서 디르함 으로의 환율에 관해 알고 싶어", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "디르함"}, "split": "test"}
{"utterance": "인도의 지리에 관한 정보 말해줘", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "인도의"}, "split": "test"}
{"utterance": "강동원 에 관한 세부 정보가 필요해 도와줘", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "강동원"}, "split": "test"}
{"utterance": "찾아", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "인터넷 연결해 주세요", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "여자에 대해서 어떻게 알 수 있어", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "미국 달러 대 원화 우세한 환율이 어떻게 돼", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "원화"}, "split": "test"}
{"utterance": "아이폰 칠 설명", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "아이폰 칠"}, "split": "test"}
{"utterance": "마동석의 다음 영화는 뭐야", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "마동석의"}, "split": "test"}
{"utterance": "상황 뜻이 뭐야", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "상황"}, "split": "test"}
{"utterance": "일 미국 달러 는 영국 화폐로 얼마야", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "영국"}, "split": "test"}
{"utterance": "원빈 은 몇 살이야", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "원빈"}, "split": "test"}
{"utterance": "일 달러 는 파운드 로 얼마야", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "파운드"}, "split": "test"}
{"utterance": "올리 태백산맥 어디서 시작해", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "태백산맥"}, "split": "test"}
{"utterance": "남극과 북극 중 어디가 더 추워", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "제니 의 새 남자친구는 몇 살이야", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "제니"}, "split": "test"}
{"utterance": "제시 관련 정보 부탁해", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "제시"}, "split": "test"}
{"utterance": "올리 최초의 미국인들은 어디에 정착했어", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "삼성 t.v. 에 관한 설명 찾아줘", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "삼성 t.v."}, "split": "test"}
{"utterance": "경기도 일산 에 거주하는 인구 찾아줘", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "경기도 일산"}, "split": "test"}
{"utterance": "여수 는 어느 지역에 있어", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "여수"}, "split": "test"}
{"utterance": "siri 환율 확인해줘", "expected_intent": "qa:qa_currency", "expected_slots": {}, "split": "test"}
{"utterance": "이 지역의 지질은 무엇으로 되어있니", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "일 달러 로 몇 유로 를 받을 수 있어", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "유로"}, "split": "test"}
{"utterance": "스피커 정의해", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "스피커"}, "split": "test"}
{"utterance": "유한양행 은 어떻게 하고 있어", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "유한양행"}, "split": "test"}
{"utterance": "헬리콥터가 되다", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "내 s. n. s. 확인해줘", "expected_intent": "social:social_query", "expected_slots": {"media_type": "s. n. s."}, "split": "test"}
{"utterance": "내 페이스북 계정 에 가장 최근에 찍은 셀카 올려줄래", "expected_intent": "social:social_post", "expected_slots": {"media_type": "페이스북 계정"}, "split": "test"}
{"utterance": "트위터에 내 비지니스 올려줘", "expected_intent": "social:social_post", "expected_slots": {"media_type": "트위터에"}, "split": "test"}
{"utterance": "트위터 에 이 포스팅 리트윗 해줘", "expected_intent": "social:social_post", "expected_slots": {"media_type": "트위터"}, "split": "test"}
{"utterance": "나한테 새로운 친구 요청이 있어", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "생일에 원하는 것들 게시물 올려", "expected_intent": "social:social_post", "expected_slots": {"event_name": "생일에"}, "split": "test"}
{"utterance": "결혼 소망들 게시해", "expected_intent": "social:social_post", "expected_slots": {"event_name": "결혼"}, "split": "test"}
{"utterance": "친구 게시물에 공유", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "일본 에 내 방문 을 트위터 에 게시해", "expected_intent": "social:social_post", "expected_slots": {"media_type": "트위터"}, "split": "test"}
{"utterance": "무슨일 있어", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "페이스북 최신 업데이트해 줘", "expected_intent": "social:social_query", "expected_slots": {"media_type": "페이스북"}, "split": "test"}
{"utterance": "새로운 업데이트", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "세 시간마다 페이스북 내 계정 업데이트 해 줘", "expected_intent": "social:social_query", "expected_slots": {"general_frequency": "세 시간마다", "media_type": "페이스북"}, "split": "test"}
{"utterance": "페이스북 에 저기 모두들 이라고 게시해", "expected_intent": "social:social_post", "expected_slots": {"media_type": "페이스북"}, "split": "test"}
{"utterance": "지금 화제는 뭐야", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 무슨 뉴스 있어", "expected_intent": "news:news_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "나를 위해 뭔가를 트윗해", "expected_intent": "social:social_post", "expected_slots": {"media_type": "트윗해"}, "split": "test"}
{"utterance": "최신 알림들 보여 줘", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "페이스북 에 내 친구 성훈 이가 올린 게시물 있니", "expected_intent": "social:social_query", "expected_slots": {"media_type": "페이스북", "relation": "친구", "person": "성훈"}, "split": "test"}
{"utterance": "인스타그램 에 내 여행 사진 게시물", "expected_intent": "social:social_post", "expected_slots": {"media_type": "인스타그램"}, "split": "test"}
{"utterance": "내가 올린 내 사진 누가 좋아해", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "내 이걸 페이스북 에 ㅋㅋㅋ 라고 올려", "expected_intent": "social:social_post", "expected_slots": {"media_type": "페이스북"}, "split": "test"}
{"utterance": "내 소셜 미디어를 스캔하고 무슨 일이 일어나는지 말해줘", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "페이스북 에 기분 좋다고 써 줘", "expected_intent": "social:social_post", "expected_slots": {"media_type": "페이스북"}, "split": "test"}
{"utterance": "내가 좋은 날씨 를 즐기고 있다고 페이스북 에 새로 상태 게시해 줘", "expected_intent": "social:social_post", "expected_slots": {"weather_descriptor": "좋은 날씨", "media_type": "페이스북"}, "split": "test"}
{"utterance": "페이스북", "expected_intent": "social:social_query", "expected_slots": {"media_type": "페이스북"}, "split": "test"}
{"utterance": "지금 메시지 게시해", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "내 피드의 새 게시물 읽어 줘", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "올리야 핫한 소셜 미디어 토픽은 뭐가 있어", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 트위터 에 누군가 나 팔로우 했어", "expected_intent": "social:social_query", "expected_slots": {"date": "오늘", "media_type": "트위터"}, "split": "test"}
{"utterance": "소셜미디어 알림 어떤 거 있어", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "페이스북에 뭐 새로운 게 있나", "expected_intent": "social:social_query", "expected_slots": {"media_type": "페이스북에"}, "split": "test"}
{"utterance": "생일 축하 해줘서 모두 고맙다고 전하고 싶어", "expected_intent": "social:social_post", "expected_slots": {"event_name": "생일"}, "split": "test"}
{"utterance": "내 상태에 누가 커멘트 남겼어", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "내 페이스북 피드 좀 읽어 줘", "expected_intent": "social:social_query", "expected_slots": {"media_type": "페이스북"}, "split": "test"}
{"utterance": "인스타 에 새로운 것 있어", "expected_intent": "social:social_query", "expected_slots": {"media_type": "인스타"}, "split": "test"}
{"utterance": "페이스북 에 이 영상 올려줘", "expected_intent": "social:social_post", "expected_slots": {"media_type": "페이스북"}, "split": "test"}
{"utterance": "트위터 인기 글 뭐야", "expected_intent": "social:social_query", "expected_slots": {"media_type": "트위터"}, "split": "test"}
{"utterance": "지금 페이스북 라이브 누가 있어", "expected_intent": "social:social_query", "expected_slots": {"media_type": "페이스북 라이브"}, "split": "test"}
{"utterance": "지마켓에 불만이니 도와달라고 게시해", "expected_intent": "social:social_post", "expected_slots": {"business_name": "지마켓에"}, "split": "test"}
{"utterance": "올리 애플 한테 아이폰이 작동하지 않는다고 트윗 해", "expected_intent": "social:social_post", "expected_slots": {"business_name": "애플", "media_type": "트윗"}, "split": "test"}
{"utterance": "내 휴대폰이 항상 방전돼 있다고 애플에 트윗 보내", "expected_intent": "social:social_post", "expected_slots": {"business_name": "애플에", "media_type": "트윗"}, "split": "test"}
{"utterance": "새로운 폰 케이스가 완전 쓰레기라고 아마존 에 알려줄래", "expected_intent": "social:social_post", "expected_slots": {"business_name": "아마존"}, "split": "test"}
{"utterance": "삼성 연락해서 내 세탁기에 불이 났다고 말해 줄래", "expected_intent": "social:social_post", "expected_slots": {"business_name": "삼성"}, "split": "test"}
{"utterance": "내 현재 위치 트위터 에 올려줘", "expected_intent": "social:social_post", "expected_slots": {"media_type": "트위터"}, "split": "test"}
{"utterance": "네트워크 관련 문제 에 대하 케이티 에게 불만 전달해", "expected_intent": "social:social_post", "expected_slots": {"business_name": "케이티"}, "split": "test"}
{"utterance": "트위터 열어서 메시지 보내", "expected_intent": "social:social_post", "expected_slots": {"business_name": "트위터"}, "split": "test"}
{"utterance": "제품이 형편 없다고 트윗 해", "expected_intent": "social:social_post", "expected_slots": {"media_type": "트윗 해"}, "split": "test"}
{"utterance": "트위터 열고 고객 서비스에 내 불만 사항 입력하고 포스팅 해줘", "expected_intent": "social:social_post", "expected_slots": {"media_type": "트위터", "business_name": "고객 서비스에"}, "split": "test"}
{"utterance": "빨리 사람을 불러줘", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "엘지에 싫어요 두 개", "expected_intent": "social:social_post", "expected_slots": {"business_name": "엘지에"}, "split": "test"}
{"utterance": "인스타", "expected_intent": "social:social_query", "expected_slots": {"media_type": "인스타"}, "split": "test"}
{"utterance": "소니 음량 문제 있다고 트윗 보내줘", "expected_intent": "social:social_post", "expected_slots": {"business_name": "소니", "media_type": "트윗"}, "split": "test"}
{"utterance": "내 가방 잃어버린 점에 대해 화가 났다고 대한항공 에 트윗 해", "expected_intent": "social:social_post", "expected_slots": {"business_name": "대한항공", "media_type": "트윗 해"}, "split": "test"}
{"utterance": "내 가방 분실해서 대한항공 에 화난다고 트윗 한 거 보내고 싶어", "expected_intent": "social:social_post", "expected_slots": {"business_name": "대한항공", "media_type": "트윗"}, "split": "test"}
{"utterance": "내 버거가 문제가 있는데 버거킹 에 트윗 해줄래", "expected_intent": "social:social_post", "expected_slots": {"business_name": "버거킹", "media_type": "트윗"}, "split": "test"}
{"utterance": "트위터 항의 보내줘", "expected_intent": "social:social_post", "expected_slots": {"media_type": "트위터"}, "split": "test"}
{"utterance": "나 아직 상품 못 받았다고 롯데백화점에게 트윗 보내", "expected_intent": "social:social_post", "expected_slots": {"business_name": "롯데백화점에게", "media_type": "트윗"}, "split": "test"}
{"utterance": "comcast 에게 내가 싫어한다고 말해줘", "expected_intent": "social:social_post", "expected_slots": {"business_name": "comcast"}, "split": "test"}
{"utterance": "온라인 서점에 대한 불만 트윗 날리자", "expected_intent": "social:social_post", "expected_slots": {"business_name": "온라인 서점에", "media_type": "트윗"}, "split": "test"}
{"utterance": "롯데마트에게 점포의 청결함에 대해 트윗 해", "expected_intent": "social:social_post", "expected_slots": {"business_name": "롯데마트에게", "media_type": "트윗 해"}, "split": "test"}
{"utterance": "내가 내 배달은 지금까지 기다리고 있다고 피자헛에 트윗해", "expected_intent": "social:social_post", "expected_slots": {"business_name": "피자헛에", "media_type": "트윗해"}, "split": "test"}
{"utterance": "고객센터 에 새 트윗", "expected_intent": "social:social_post", "expected_slots": {"business_name": "고객센터", "media_type": "트윗"}, "split": "test"}
{"utterance": "시리 트위터 열어서 미국 대통령이 나쁘다고 트윗해줘", "expected_intent": "social:social_post", "expected_slots": {"media_type": "트윗해줘"}, "split": "test"}
{"utterance": "내 소셜 미디어 최신 활동 보여줘", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "소셜 미디어에 뭔가 중요한 사항 있어", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "나이키 에 트윗 으로 컴플레인 보내", "expected_intent": "social:social_post", "expected_slots": {"business_name": "나이키", "media_type": "트윗"}, "split": "test"}
{"utterance": "올리 이마트에 서비스가 최악이다라고 트윗 보내", "expected_intent": "social:social_post", "expected_slots": {"business_name": "이마트에", "media_type": "트윗"}, "split": "test"}
{"utterance": "파파존스 에 식은 피자에 대해 트윗 해", "expected_intent": "social:social_post", "expected_slots": {"business_name": "파파존스", "media_type": "트윗 해"}, "split": "test"}
{"utterance": "삼성 에 모바일 불만 사항 트윗", "expected_intent": "social:social_post", "expected_slots": {"business_name": "삼성", "media_type": "트윗"}, "split": "test"}
{"utterance": "한화 서비스에 부정적인 트윗 남겨", "expected_intent": "social:social_post", "expected_slots": {"business_name": "한화 서비스에", "media_type": "트윗"}, "split": "test"}
{"utterance": "삼성 서비스 에 서비스 지연 에 대해 트윗해줘", "expected_intent": "social:social_post", "expected_slots": {"business_name": "삼성 서비스", "media_type": "트윗해줘"}, "split": "test"}
{"utterance": "불만에 대해 트윗하자", "expected_intent": "social:social_post", "expected_slots": {"media_type": "트윗하자"}, "split": "test"}
{"utterance": "불만 사항을 트윗해줘", "expected_intent": "social:social_post", "expected_slots": {"media_type": "트윗해줘"}, "split": "test"}
{"utterance": "나 배 고프다고 페이스북 에 올려줘", "expected_intent": "social:social_post", "expected_slots": {"media_type": "페이스북"}, "split": "test"}
{"utterance": "그 문제에 대해서 자세히 봐봐", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "문제 해결", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "내가 다시는 아시아나 이용 안하겠다고 그들에게 알려줄래", "expected_intent": "social:social_post", "expected_slots": {"business_name": "아시아나"}, "split": "test"}
{"utterance": "사진첩 열어서 사진 이름 게시해", "expected_intent": "social:social_post", "expected_slots": {"media_type": "사진첩"}, "split": "test"}
{"utterance": "케이비에스에 불만 트윗 보내", "expected_intent": "social:social_post", "expected_slots": {"business_name": "케이비에스에", "media_type": "트윗"}, "split": "test"}
{"utterance": "유플러스에 불만 트윗 해", "expected_intent": "social:social_post", "expected_slots": {"business_name": "유플러스에", "media_type": "트윗"}, "split": "test"}
{"utterance": "엘지 열고 불만사항 찾아", "expected_intent": "social:social_post", "expected_slots": {"business_name": "엘지"}, "split": "test"}
{"utterance": "내 계정에 만족하지 못한 a. b. c. 회사에 의해 매우 나쁜 후속 조치를 트윗 해줘", "expected_intent": "social:social_post", "expected_slots": {"media_type": "트윗"}, "split": "test"}
{"utterance": "한화생명에 니네 짜증난다고 트윗해줘", "expected_intent": "social:social_post", "expected_slots": {"business_name": "한화생명에", "media_type": "트윗해줘"}, "split": "test"}
{"utterance": "엉망인 고객서비스를 k. t. 에 불만사항으로 트윗 해줘", "expected_intent": "social:social_post", "expected_slots": {"business_name": "k. t.", "media_type": "트윗"}, "split": "test"}
{"utterance": "오케이 구글 멍청이가 주유소 주인이라고 트위터 에 올려", "expected_intent": "social:social_post", "expected_slots": {"media_type": "트위터"}, "split": "test"}
{"utterance": "맥도날드 서비스가 엉망이라고 트윗 해", "expected_intent": "social:social_post", "expected_slots": {"media_type": "트윗 해"}, "split": "test"}
{"utterance": "롯데리아에 불만 트윗 해", "expected_intent": "social:social_post", "expected_slots": {"media_type": "트윗"}, "split": "test"}
{"utterance": "고객 서비스에 게시글 남겨", "expected_intent": "social:social_post", "expected_slots": {"business_name": "고객 서비스에"}, "split": "test"}
{"utterance": "고객 서비스 에 컴플레인 하는 것 좀 도와줘", "expected_intent": "social:social_post", "expected_slots": {"business_name": "고객 서비스"}, "split": "test"}
{"utterance": "구글 고객 서비스에 내 넥서스 폰이 작동 안한다고 도와 달라고 트윗 해", "expected_intent": "social:social_post", "expected_slots": {"media_type": "트윗 해"}, "split": "test"}
{"utterance": "네이버쇼핑에 아직도 배송을 기다리고 있다고 트윗 해", "expected_intent": "social:social_post", "expected_slots": {"business_name": "네이버쇼핑에", "media_type": "트윗 해"}, "split": "test"}
{"utterance": "국방부의 트위터에 마지막으로 게시글 올려", "expected_intent": "social:social_post", "expected_slots": {"business_name": "국방부의", "media_type": "트위터에"}, "split": "test"}
{"utterance": "불만 트윗 보내줘", "expected_intent": "social:social_post", "expected_slots": {"media_type": "트윗"}, "split": "test"}
{"utterance": "지난 주 내가 보낸 아이폰 수리 접수 불가에 대한 트윗 애플에 보내", "expected_intent": "social:social_post", "expected_slots": {"media_type": "트윗", "business_name": "애플에"}, "split": "test"}
{"utterance": "애슐리 에 트위터 로 서비스에 대한 컴플레인 추가해 줘", "expected_intent": "social:social_post", "expected_slots": {"business_name": "애슐리", "media_type": "트위터"}, "split": "test"}
{"utterance": "안녕 내가 누군가한테서 산 물건이 고장났어", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "초콜릿 포장에 벌레가 있었다는 거 트윗 해", "expected_intent": "social:social_post", "expected_slots": {"media_type": "트윗"}, "split": "test"}
{"utterance": "최근 시장에서 유통기한이 지난 상품들", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "사이즈가 넘 빨리 없어진다고 무신사 트위터 해 줘", "expected_intent": "social:social_post", "expected_slots": {"business_name": "무신사", "media_type": "트위터"}, "split": "test"}
{"utterance": "철수에세 트윗 남겨", "expected_intent": "social:social_post", "expected_slots": {"media_type": "트윗"}, "split": "test"}
{"utterance": "트윗 날리자", "expected_intent": "social:social_post", "expected_slots": {"media_type": "트윗"}, "split": "test"}
{"utterance": "삼성 전자에 서비스 불만 트윗 남겨", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "맥도날드 이중성 관해서 트윗해", "expected_intent": "social:social_post", "expected_slots": {"business_name": "맥도날드", "media_type": "트윗해"}, "split": "test"}
{"utterance": "페이스북 에서 행복한 상태로 기분 설정해", "expected_intent": "social:social_post", "expected_slots": {"media_type": "페이스북"}, "split": "test"}
{"utterance": "올리 에스 케이 텔레콤한테 서비스가 나쁘다고 트윗 보내줘", "expected_intent": "social:social_post", "expected_slots": {"business_name": "에스 케이 텔레콤한테", "media_type": "트윗"}, "split": "test"}
{"utterance": "삼성 제품들로 사람들을 죽이는 걸 멈춰라고 삼성 한테 트윗 해", "expected_intent": "social:social_post", "expected_slots": {"business_name": "삼성", "media_type": "트윗"}, "split": "test"}
{"utterance": "회사에 대한 부정적인 리뷰 남겨", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "이 사람의 이메일 주소를 추가해", "expected_intent": "email:email_addcontact", "expected_slots": {"personal_info": "이메일 주소를"}, "split": "test"}
{"utterance": "내 팀 한테 이메일 부탁해", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "팀"}, "split": "test"}
{"utterance": "새 이메일들이 있는지 확인해줘", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "민수의 이메일에 답장해", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "민수의"}, "split": "test"}
{"utterance": "새 이메일들이 있으면 말해줘", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "내 메일함에 새로운 이메일이 있나", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "새로운 이메일들을 받은 게 있니", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "내 오늘 미팅 누구랑이지", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "오늘", "event_name": "미팅"}, "split": "test"}
{"utterance": "태희 어디 살아", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "태희", "personal_info": "살아"}, "split": "test"}
{"utterance": "진우에게 이메일 보내", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "진우에게"}, "split": "test"}
{"utterance": "현수한테 오늘 밤에 가지 않을 거라고 이메일 답장해", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "현수한테", "timeofday": "오늘 밤에"}, "split": "test"}
{"utterance": "시우가 아직 이메일 안 보냈나", "expected_intent": "email:email_query", "expected_slots": {"person": "시우가"}, "split": "test"}
{"utterance": "준희 회사 번호 뭐야", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "준희", "personal_info": "회사 번호"}, "split": "test"}
{"utterance": "아빠에게 내가 늦는다고 답장해", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "아빠에게"}, "split": "test"}
{"utterance": "여기 연락처에 추가할 새로운 이메일 주소가 있어", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "연락처에 새로운 이메일 주소를 추가해", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "주제", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "민호에게 보낼 이메일 작성해줘", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "민호에게"}, "split": "test"}
{"utterance": "그게 어떻게 우리에게 와", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "크레딧 어떻게 얻어", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "내 상사에게 메일 보내", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "상사에게"}, "split": "test"}
{"utterance": "적힌 새 이메일 주소로 보내줘", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "엄마한테서 온 이메일을 확인해 줘", "expected_intent": "email:email_query", "expected_slots": {"relation": "엄마한테서"}, "split": "test"}
{"utterance": "내 메일 확인해주세요", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "아빠가 보낸 새 이메일들이 있는지 확인해", "expected_intent": "email:email_query", "expected_slots": {"relation": "아빠가 보낸"}, "split": "test"}
{"utterance": "새 이메일 확인하여 무엇에 대한 건지 말해줘", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "민호에게 고맙다고 회신해", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "민호에게"}, "split": "test"}
{"utterance": "수지에게 이메일 보내자", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "수지에게"}, "split": "test"}
{"utterance": "내가 받은 새 이메일들 뭐야", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "마지막 이메일에 이 이메일을 답장으로 보내", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "연락처에서 오상헌 찾아줘", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "오상헌"}, "split": "test"}
{"utterance": "연락처 열고 이종희 전화해", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "이종희"}, "split": "test"}
{"utterance": "김준호한테서 온 이메일에 답장해", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "김준호한테서"}, "split": "test"}
{"utterance": "우리 지금 가고 있다고 현주한테 이메일 보내줘", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "현주한테"}, "split": "test"}
{"utterance": "수진 한테 온 어떤 새로운 이메일 나 받았어", "expected_intent": "email:email_query", "expected_slots": {"person": "수진"}, "split": "test"}
{"utterance": "그게 가장 중요하다면 답장해줘", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "매우 익숙한 곳에서 온 것이라면 중요라고 표시해라", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "엄마의 마지막 이메일이 무슨 내용이었지", "expected_intent": "email:email_query", "expected_slots": {"relation": "엄마의"}, "split": "test"}
{"utterance": "직장에서 온 마지막 이메일이 뭐지", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "지호의 전화번호 알려줘", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "지호의", "personal_info": "전화번호"}, "split": "test"}
{"utterance": "현숙이 이메일 주소가 뭐야", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "현숙이", "personal_info": "이메일 주소가"}, "split": "test"}
{"utterance": "이 새로운 이메일 주소를 연락처에 추가해", "expected_intent": "email:email_addcontact", "expected_slots": {}, "split": "test"}
{"utterance": "준호한테 이메일 보내서 회의 시간 언제가 좋은지 물어봐", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "준호한테", "event_name": "회의"}, "split": "test"}
{"utterance": "현주에게 예산 회의에 관한 이메일 보내", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "현주에게", "event_name": "예산 회의에"}, "split": "test"}
{"utterance": "이름한테서 온 이메일 확인해줘", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "내 새 이메일 확인해", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "지영 골뱅이 네이버 닷컴으로 이메일 보내", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "지영 골뱅이 네이버 닷컴으로"}, "split": "test"}
{"utterance": "내 수신함에 새로운 메시지들이 있는지 말해줘", "expected_intent": "email:email_query", "expected_slots": {"email_folder": "수신함에"}, "split": "test"}
{"utterance": "봉준이한테 나 내일 바쁘다고 이메일 보내줘", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "봉준이한테"}, "split": "test"}
{"utterance": "헤이 시리 동료 한테 이메일 보내줘", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "동료"}, "split": "test"}
{"utterance": "회사동료에게 보낼 새로운 이메일을 작성해", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "회사동료에게"}, "split": "test"}
{"utterance": "내일 회의 관련해 시은 한테 이메일 보내", "expected_intent": "email:email_sendemail", "expected_slots": {"date": "내일", "event_name": "회의", "person": "시은"}, "split": "test"}
{"utterance": "강훈이 최근에 보낸 이메일 있나", "expected_intent": "email:email_query", "expected_slots": {"person": "강훈이"}, "split": "test"}
{"utterance": "인주에게 사무실 영업 시간표를 적어서 메일 보내", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "인주에게"}, "split": "test"}
{"utterance": "최근 이메일 보여줘", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "나 도와 줄 수 있는지 가족한테 이메일 보내주세요", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "가족한테"}, "split": "test"}
{"utterance": "지메일 확인해봐", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "아웃룩 확인해 줘", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "이메일에 회신해", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "지난 십 분 안에 받은 이메일이 있나", "expected_intent": "email:email_query", "expected_slots": {"time": "지난 십 분"}, "split": "test"}
{"utterance": "나의 상사에게 오늘 급한 일로 늦어서 회의에 참석하지 못해 죄송하다고 메일 보내", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "상사에게", "date": "오늘", "event_name": "회의에"}, "split": "test"}
{"utterance": "호현에게 온 최근 이메일 보여줘", "expected_intent": "email:email_query", "expected_slots": {"person": "호현에게"}, "split": "test"}
{"utterance": "병수 어떻게 지내는지 또 내가 어떻게 도울 수 있는지 물어보는 이메일 좀 보내줘", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "병수"}, "split": "test"}
{"utterance": "지난 십 분 내에 새로운 이메일을 받은 게 있니", "expected_intent": "email:email_query", "expected_slots": {"time": "지난 십 분"}, "split": "test"}
{"utterance": "진희 가 새 이메일 보냈어", "expected_intent": "email:email_query", "expected_slots": {"person": "진희"}, "split": "test"}
{"utterance": "수진 한테 온 읽지 않은 이메일 확인해", "expected_intent": "email:email_query", "expected_slots": {"person": "수진"}, "split": "test"}
{"utterance": "직업 목록 포함한 이메일 체크해줘", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "결혼 기념일이라고 내 남동생한테 이메일 보내줄래", "expected_intent": "email:email_sendemail", "expected_slots": {"event_name": "결혼 기념일이라고", "relation": "남동생한테"}, "split": "test"}
{"utterance": "도움은 성희에게만 보내져야 한다", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "성희에게만"}, "split": "test"}
{"utterance": "이 새로운 이메일 주소를 내 연락처에 추가해", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "가장 최근 이메일 보여줘", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "최신 업데이트 해줘", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "정수한테 메일로 빠르게 답장해", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "정수한테"}, "split": "test"}
{"utterance": "오늘 메일에서 미팅 일정 확인해줘", "expected_intent": "email:email_query", "expected_slots": {"date": "오늘", "event_name": "미팅"}, "split": "test"}
{"utterance": "이 이메일 주소 기록해줘", "expected_intent": "email:email_addcontact", "expected_slots": {}, "split": "test"}
{"utterance": "답장 보내기", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "어제 누가 나한테 메일 보낸거야", "expected_intent": "email:email_query", "expected_slots": {"date": "어제"}, "split": "test"}
{"utterance": "지윤이가 답장했나", "expected_intent": "email:email_query", "expected_slots": {"person": "지윤이가"}, "split": "test"}
{"utterance": "나 앞으로 삼주 동안 프로젝트로 바쁠거라고 현주한테 답장 보내줄래", "expected_intent": "email:email_sendemail", "expected_slots": {"time": "앞으로 삼주", "person": "현주한테"}, "split": "test"}
{"utterance": "지난 십오 분 동안 온 이메일 있나", "expected_intent": "email:email_query", "expected_slots": {"time": "십오 분"}, "split": "test"}
{"utterance": "받은 편지함을 열어서 읽지 않은 메일들 확인해봐", "expected_intent": "email:email_query", "expected_slots": {"email_folder": "받은 편지함을"}, "split": "test"}
{"utterance": "오늘 진영이한테서 온 메일이 있나", "expected_intent": "email:email_query", "expected_slots": {"date": "오늘", "person": "진영이한테서"}, "split": "test"}
{"utterance": "내 직업에 관련된 이메일 확인해봐", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "욱환을 위해 새 이메일을 로드하고 지금 메시지를 보내줘", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "욱환을"}, "split": "test"}
{"utterance": "현지한테 알려주겠다고 이메일 적어서 보내줘", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "현지한테"}, "split": "test"}
{"utterance": "명희에 관해 말해줘", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "명희에"}, "split": "test"}
{"utterance": "연락처 열어줘", "expected_intent": "email:email_addcontact", "expected_slots": {}, "split": "test"}
{"utterance": "이번 달 내가 아는 누구 생일 있나", "expected_intent": "email:email_querycontact", "expected_slots": {"date": "이번 달", "event_name": "생일"}, "split": "test"}
{"utterance": "열두 달 동안 내가 전화 안한 연락처 뭐야", "expected_intent": "email:email_querycontact", "expected_slots": {"time": "열두 달"}, "split": "test"}
{"utterance": "지수 골뱅이 네이버 닷컴으로 이메일 보내줘", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "지수 골뱅이 네이버 닷컴으로"}, "split": "test"}
{"utterance": "메일 온 게 있나 학인해", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "봉수한테서 새 이메일 받은 거 있니", "expected_intent": "email:email_query", "expected_slots": {"person": "봉수한테서"}, "split": "test"}
{"utterance": "우리 가족들한테 메일을 써서 모두를 사랑한다고 말해", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "가족들한테"}, "split": "test"}
{"utterance": "내 받은편지함 새로고침하고 새 이메일에 대해 알려줘", "expected_intent": "email:email_query", "expected_slots": {"email_folder": "받은편지함"}, "split": "test"}
{"utterance": "서희의 연락처 알려줘", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "서희의", "personal_info": "연락처"}, "split": "test"}
{"utterance": "새 이메일에 대한 폴링 시작해줘", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "나에게 새 이메일 왔어", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "가족이나 친구 명단에 있는 지효에게 이메일 보내", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "가족이나 친구", "person": "지효에게"}, "split": "test"}
{"utterance": "조수 지윤이한테 내일 약속 다 취소해 달라고 메일 보내줘", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "조수", "person": "지윤이한테", "date": "내일", "event_name": "약속"}, "split": "test"}
{"utterance": "엄마에게 수민의 생일 파티가 일요일에 있다고 이메일 보내", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "엄마에게", "person": "수민의", "event_name": "생일 파티가", "date": "일요일에"}, "split": "test"}
{"utterance": "지후한테 고맙다고 이메일 보내줘", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "지후한테"}, "split": "test"}
{"utterance": "은정에게 이메일 보내줘", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "은정에게"}, "split": "test"}
{"utterance": "유진이 보낸 새 이메일이 있나", "expected_intent": "email:email_query", "expected_slots": {"person": "유진이"}, "split": "test"}
{"utterance": "이메일 답장 보내줘", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "김지영의 이메일에 회신하고 싶어", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "김지영의"}, "split": "test"}
{"utterance": "선우에게 온 이메일들 체크해줘", "expected_intent": "email:email_query", "expected_slots": {"person": "선우에게"}, "split": "test"}
{"utterance": "내 회사에서 온 이메일들 확인해줘", "expected_intent": "email:email_query", "expected_slots": {"relation": "회사에서"}, "split": "test"}
{"utterance": "총기관리 제목으로 재준에게 이메일 보냈나", "expected_intent": "email:email_query", "expected_slots": {"person": "재준에게"}, "split": "test"}
{"utterance": "선정 이가 탄약에 관해 나한테 메일 보냈어", "expected_intent": "email:email_query", "expected_slots": {"person": "선정"}, "split": "test"}
{"utterance": "지난 한 시간 동안 새 이메일을 받은 게 있나", "expected_intent": "email:email_query", "expected_slots": {"time": "지난 한 시간"}, "split": "test"}
{"utterance": "추적 번호가 있는 이메일을 받은 적이 있나", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "가현이한테 이메일 보내", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "가현이한테"}, "split": "test"}
{"utterance": "알렉사 엄마 한테 이메일 하나 보내 줘", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "엄마"}, "split": "test"}
{"utterance": "지금 엄마에게 이메일 보내자", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "엄마에게"}, "split": "test"}
{"utterance": "나에게 온 새 이메일 있어", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "새 이메일 읽어줘", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "재우한테 그 이메일 보내줘", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "재우한테"}, "split": "test"}
{"utterance": "나 새로 받은 이메일 있어", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 뭐하는지 주현이한테 이메일 보내줘", "expected_intent": "email:email_sendemail", "expected_slots": {"date": "오늘", "person": "주현이한테"}, "split": "test"}
{"utterance": "오늘 형돈이 계획 이메일 보내", "expected_intent": "email:email_sendemail", "expected_slots": {"date": "오늘", "person": "형돈이"}, "split": "test"}
{"utterance": "알렉사 이메일 시작해", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "이메일을 써", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "내 상사가 보낸 모든 이메일들 보여줘", "expected_intent": "email:email_query", "expected_slots": {"relation": "상사가"}, "split": "test"}
{"utterance": "삼촌 중호에게 네 그거 가능해요라고 이메일 보내", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "삼촌", "person": "중호에게"}, "split": "test"}
{"utterance": "오늘 새로운 이메일 몇 개 받았어", "expected_intent": "email:email_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "엄마 아빠 한테 안부 이메일 보내주세요", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "엄마 아빠"}, "split": "test"}
{"utterance": "내 친구한테 이 이메일 보내주세요", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "친구한테"}, "split": "test"}
{"utterance": "이 이메일 지금 보내줘", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "철수로부터 온 최근 이메일들 확인해", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "진호 골뱅이 지메일 닷컴 내 연락처에 추가해줘", "expected_intent": "email:email_addcontact", "expected_slots": {"email_address": "진호 골뱅이 지메일 닷컴"}, "split": "test"}
{"utterance": "newmail at gmail dot com 로 새 메시지", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "newmail at gmail dot com"}, "split": "test"}
{"utterance": "나 안 읽은 메일 있니", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "내 연락처 철수로부터 새 이메일을 받은 게 있니", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "내 연락처에 이 이메일 추가해줘", "expected_intent": "email:email_addcontact", "expected_slots": {}, "split": "test"}
{"utterance": "진혁에게서 온 이메일 확인해봐", "expected_intent": "email:email_query", "expected_slots": {"person": "진혁에게서"}, "split": "test"}
{"utterance": "답장 이메일 보내줘", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "내 친구 은수에게 어떻게 지내냐고 메일 보내줘", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "친구", "person": "은수에게"}, "split": "test"}
{"utterance": "새 메일 주소 추가해서 메일 보내", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "김민정 새로운 이메일 추가해", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "김민정"}, "split": "test"}
{"utterance": "나 내 연락처에 새로운 이메일을 추가해야 해", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "주호 연락처 정보 말해줘", "expected_intent": "email:email_querycontact", "expected_slots": {}, "split": "test"}
{"utterance": "엄마 번호 확인해", "expected_intent": "email:email_querycontact", "expected_slots": {"relation": "엄마"}, "split": "test"}
{"utterance": "전화 걸어", "expected_intent": "email:email_querycontact", "expected_slots": {}, "split": "test"}
{"utterance": "지후한테 이메일 보내줘", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "지후한테"}, "split": "test"}
{"utterance": "종현이가 아침에 보낸 이메일에 정답은 사백삼십이라고 답변해줘", "expected_intent": "email:email_sendemail", "expected_slots": {"timeofday": "아침에"}, "split": "test"}
{"utterance": "상사의 이메일에 오후 네 시에 갈게요라고 답장 보내", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "상사의"}, "split": "test"}
{"utterance": "올리야 내 이메일 체크해", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "내 회사 직원이 집 전화번호 가지고 있어", "expected_intent": "email:email_querycontact", "expected_slots": {"relation": "회사 직원이", "personal_info": "집 전화번호"}, "split": "test"}
{"utterance": "나한테 마지막으로 연락한 사람이 누군가", "expected_intent": "email:email_querycontact", "expected_slots": {}, "split": "test"}
{"utterance": "방금 영수에게서 메일을 받았는데 지금 바로 답장을 해야겠어", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "마지막 메일에 즉시 답장 해", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "삼십 분 전에 엄마로부터 온 이메일의 내용이 뭐지", "expected_intent": "email:email_query", "expected_slots": {"time": "삼십 분", "relation": "엄마로부터"}, "split": "test"}
{"utterance": "상사한테 이메일 보내줘", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "상사한테"}, "split": "test"}
{"utterance": "혹시 내가 안 읽은 새 이메일 있는지 말해 줘", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "상사한테 나 늦을거라고 이메일 보내줘", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "상사한테"}, "split": "test"}
{"utterance": "이 연락처로 이메일 보내", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "내 서비스 문제 관련해 s. k. 텔레콤 한테 이메일 보내고 싶어", "expected_intent": "email:email_sendemail", "expected_slots": {"business_name": "s. k. 텔레콤"}, "split": "test"}
{"utterance": "최근 이메일 확인해줘", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "마지막 이메일 답자아 보재", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "효진이한테 온 메일 있는 지 확인해봐", "expected_intent": "email:email_query", "expected_slots": {"person": "효진이한테"}, "split": "test"}
{"utterance": "내 이메일들 좀 확인 부탁해", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "현우의 이메일에 첨부가 있니", "expected_intent": "email:email_query", "expected_slots": {"person": "현우의"}, "split": "test"}
{"utterance": "동민에게서 새 이메일을 받은 게 있니", "expected_intent": "email:email_query", "expected_slots": {"person": "동민에게서"}, "split": "test"}
{"utterance": "이메일 받은 게 있나", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 네 시 이후 이메일 온 거 있어", "expected_intent": "email:email_query", "expected_slots": {"date": "오늘", "time": "네 시"}, "split": "test"}
{"utterance": "민수로부터 이메일 받았니", "expected_intent": "email:email_query", "expected_slots": {"person": "민수로부터"}, "split": "test"}
{"utterance": "경식이에게 연락이 왔나", "expected_intent": "email:email_query", "expected_slots": {"person": "경식이에게"}, "split": "test"}
{"utterance": "오늘 받은편지함에 새 이메일들이 있나", "expected_intent": "email:email_query", "expected_slots": {"date": "오늘", "email_folder": "받은편지함에"}, "split": "test"}
{"utterance": "경기도 인천에 있는 로우즈 하드웨어 내 이메일 연락처에 추가해줘", "expected_intent": "email:email_addcontact", "expected_slots": {"place_name": "경기도 인천에"}, "split": "test"}
{"utterance": "삼성전자에 보낸 메일을 찾아서 그 주소를 내 연락처 목록에 추가해줘", "expected_intent": "email:email_addcontact", "expected_slots": {"business_name": "삼성전자에", "list_name": "연락처 목록에"}, "split": "test"}
{"utterance": "내 어머니 이메일로 답장 보내줘", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "어머니"}, "split": "test"}
{"utterance": "나 현주의 이메일에 답장하고 싶어", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "현주의"}, "split": "test"}
{"utterance": "가장 최근 이메일 답장 할래", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "내 연락처에서 창원에 살거나 직장이 있는 사람이 몇이지", "expected_intent": "email:email_querycontact", "expected_slots": {"place_name": "창원에"}, "split": "test"}
{"utterance": "내 연락처 대부분은 여자야 아니면 남자야", "expected_intent": "email:email_querycontact", "expected_slots": {}, "split": "test"}
{"utterance": "새 이메일 온 게 있나", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "이메일을 확인해서 새 이메일이 있으면 알려줘", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "대현에게 내가 휴가 중이라고 이메일 보내줘", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "대현에게"}, "split": "test"}
{"utterance": "새로 온 이메일이 있나 알려 줘", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "한수의 이메일에 내일 만나자고 답장해", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "한수의", "date": "내일"}, "split": "test"}
{"utterance": "영준이에게서 새 이메일 왔어", "expected_intent": "email:email_query", "expected_slots": {"person": "영준이에게서"}, "split": "test"}
{"utterance": "네이버로 부터 최근 이메일들 보여줘", "expected_intent": "email:email_query", "expected_slots": {"business_name": "네이버로"}, "split": "test"}
{"utterance": "오늘 온 새 이메일이 있니", "expected_intent": "email:email_query", "expected_slots": {"date": "오늘"}, "split": "test"}
{"utterance": "이메일 받아써줘", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "지난 번 이후에 온 이메일 있어", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "지난 십 분 동안 온 이메일들이 있나", "expected_intent": "email:email_query", "expected_slots": {"time": "지난 십 분"}, "split": "test"}
{"utterance": "어제 이메일에 인터뷰 몇 시 라고 했지", "expected_intent": "email:email_query", "expected_slots": {"date": "어제"}, "split": "test"}
{"utterance": "새 메일 확인해", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "법규 위반에 관한 모든 이메일들을 보여줘", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "준호의 연락처 정보를 보여줘", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "준호의"}, "split": "test"}
{"utterance": "juanpedro 골뱅이 gmail 쩜 com으로 이메일 보내줘", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "juanpedro 골뱅이 gmail 쩜 com으로"}, "split": "test"}
{"utterance": "이 이메일 주소를 내 연락처에 저장하고 이메일 보내", "expected_intent": "email:email_addcontact", "expected_slots": {}, "split": "test"}
{"utterance": "brandon at example dot com 이 새 주소고 새 이메일 작성해", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "brandon at example dot com"}, "split": "test"}
{"utterance": "카카오택시 전화 번호 뭐야 그것은 내 연락처에 있어", "expected_intent": "email:email_querycontact", "expected_slots": {"business_name": "카카오택시", "personal_info": "전화 번호"}, "split": "test"}
{"utterance": "정오 이후에 이메일 받은 게 있니", "expected_intent": "email:email_query", "expected_slots": {"timeofday": "정오"}, "split": "test"}
{"utterance": "경희가 보낸 동희 관련 어떠한 이메일 있어", "expected_intent": "email:email_query", "expected_slots": {"person": "동희"}, "split": "test"}
{"utterance": "한경의 이메일을 받으면 소리로 알려줘", "expected_intent": "email:email_query", "expected_slots": {"person": "한경의"}, "split": "test"}
{"utterance": "이메일 체크해줘", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "새 이메일 i. d.에게 이메일 보내줄래", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "내 연락처에 홍길동으로 홍길동 골뱅이 네이버 닷 컴 이메일 하나 추가해 줘", "expected_intent": "email:email_addcontact", "expected_slots": {"person": "홍길동으로", "email_address": "홍길동 골뱅이 네이버 닷 컴"}, "split": "test"}
{"utterance": "알림 이메일 보내", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "나의 마지막 이메일에 영희 한테 내가 뭐라고 말했지", "expected_intent": "email:email_query", "expected_slots": {"person": "영희"}, "split": "test"}
{"utterance": "내 연락처에서 은지 찾아서 이메일 보내줘", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "은지"}, "split": "test"}
{"utterance": "나래 생일 이니 이메일 보내", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "나래", "event_name": "생일"}, "split": "test"}
{"utterance": "병규의 전화번호가 몇개지", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "병규의", "personal_info": "전화번호가"}, "split": "test"}
{"utterance": "미팅 관련해서 진기 한테 이메일 보내", "expected_intent": "email:email_sendemail", "expected_slots": {"event_name": "미팅", "person": "진기"}, "split": "test"}
{"utterance": "진우에게 이메일을 보내서 오늘밤 언제 집에 들어오는지 물어봐", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "진우에게", "timeofday": "오늘밤"}, "split": "test"}
{"utterance": "이 이메일에 답장해", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "새 메일 뭐에 관한 거야", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "새 이메일의 내용이 뭐지", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "박진우 한테 이메일 보내", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "박진우"}, "split": "test"}
{"utterance": "박상준에게 이메일 보내", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "박상준에게"}, "split": "test"}
{"utterance": "정준호한테서 온 메일 있어", "expected_intent": "email:email_query", "expected_slots": {"person": "정준호한테서"}, "split": "test"}
{"utterance": "민호 전화번호", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "민호", "personal_info": "전화번호"}, "split": "test"}
{"utterance": "연락처에 나의 새로운 이메일 주소를 입력해", "expected_intent": "email:email_addcontact", "expected_slots": {}, "split": "test"}
{"utterance": "이 발신자로부터 이메일 받은 거 있나", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "받은 메일에 답장을 보내", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "새 메일 있는지 내 지메일 확인 부탁해", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "최근 이메일 보여줘", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "진수의 이메일에 답장 해", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "진수의"}, "split": "test"}
{"utterance": "할머니에게 토요일에 들른다고 이메일 보내줘", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "할머니에게"}, "split": "test"}
{"utterance": "이메일 답장해줘", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "새로운 연락처로 이메일 보내", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "새로운 연락처로 이메일 보내", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "답장 보내", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "소득세부서 한테 온 모든 새로울 이메일 체크해 줘", "expected_intent": "email:email_query", "expected_slots": {"business_name": "소득세부서"}, "split": "test"}
{"utterance": "제희 연락처 번호 찾아서 나한테 말해줘", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "제희", "personal_info": "번호"}, "split": "test"}
{"utterance": "우리 혹시 지환이 사무실 번호 있니", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "지환이", "personal_info": "사무실 번호"}, "split": "test"}
{"utterance": "준석 이 새 이메일 보냈어", "expected_intent": "email:email_query", "expected_slots": {"person": "준석"}, "split": "test"}
{"utterance": "나한테 보낸 이메일에 남수한테 나 지금 돈 필요하고 급하다고 말 좀 해줘", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "남수한테"}, "split": "test"}
{"utterance": "김영희가 내게 메일 보냈니", "expected_intent": "email:email_query", "expected_slots": {"person": "김영희가"}, "split": "test"}
{"utterance": "정선에게 이메일 보내", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "정선에게"}, "split": "test"}
{"utterance": "새 메일이 있는지 확인해", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "이메일 보내줄 수 있어", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "답장 시작해", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "지난 이메일에 답장 만들어", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "마지막으로 받은 이메일에 답장 보내", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "엄마한테 이메일 보내서 날씨 어떤지 물어봐줘", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "엄마한테"}, "split": "test"}
{"utterance": "준 골뱅이 지메일 닷 컴 으로 이메일 하나 써", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "준 골뱅이 지메일 닷 컴"}, "split": "test"}
{"utterance": "수민 골뱅이 네이버 닷컴으로 이메일 보내", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "수민 골뱅이 네이버 닷컴으로"}, "split": "test"}
{"utterance": "새로운 이메일 받았나", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "낸디 검색해", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "내 연락처 에서 명호 새 이메일 추가", "expected_intent": "email:email_addcontact", "expected_slots": {"person": "명호"}, "split": "test"}
{"utterance": "아웃룩에 새로운 이메일들이 있니", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "오늘 네 시 이후에 받은 새 메일이 있나", "expected_intent": "email:email_query", "expected_slots": {"date": "오늘", "time": "네 시 이후에"}, "split": "test"}
{"utterance": "최근에 저장한 문서와 함께 회사 동료 한테 보내는 이메일 생성하기", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "회사 동료"}, "split": "test"}
{"utterance": "시연이한테서 새로 온 이메일을 열어 줘", "expected_intent": "email:email_query", "expected_slots": {"person": "시연이한테서"}, "split": "test"}
{"utterance": "연락처 열어줄래", "expected_intent": "email:email_querycontact", "expected_slots": {}, "split": "test"}
{"utterance": "진현의 이메일 이 뭐야", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "진현의", "personal_info": "이메일"}, "split": "test"}
{"utterance": "지난 한 시간 동안 온 이메일을 보여줘", "expected_intent": "email:email_query", "expected_slots": {"time": "지난 한 시간"}, "split": "test"}
{"utterance": "새 이메일들 체크해줘", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "가장 최근 이메일 보여줘", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "진영이 연락처 세부 정보", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "진영이", "personal_info": "연락처 세부 정보"}, "split": "test"}
{"utterance": "윤지에게 보낼 이메일 작성해", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "윤지에게"}, "split": "test"}
{"utterance": "새로운 이메일 목록 읽어줘", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "최근 이메일 리스트 보여줘", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "아마존 한테 온 어떤 메일 있나 체크해 줘", "expected_intent": "email:email_query", "expected_slots": {"person": "아마존"}, "split": "test"}
{"utterance": "지역 부사장에 대한 이메일 양식", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "지역 부사장에"}, "split": "test"}
{"utterance": "어떤 밝은 소식의 이메일들", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "새로 온 이메일을 읽어 줘", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "내가 읽은 메시지 보관해줘", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "우리가 마지막으로 학인한 후에 받은 편지함에 새로운 메일이 온 게 있나", "expected_intent": "email:email_query", "expected_slots": {"email_folder": "받은 편지함에"}, "split": "test"}
{"utterance": "진우에게 이메일 보내자", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "진우에게"}, "split": "test"}
{"utterance": "이메일 확인해봐", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "답장 할 때 다음과 같이 보내세요 안녕하세요", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "안녕하세요라는 내용의 메일에 답장해", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "내 친구 지훈이가 새로 장만한 집으로 초대장 보냈는데 걔 이메일 아이디로 고맙다고 보내줘", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "친구", "person": "지훈이가"}, "split": "test"}
{"utterance": "지영이한테서 새로 온 이메일이 있으면 확인해 줘", "expected_intent": "email:email_query", "expected_slots": {"person": "지영이한테서"}, "split": "test"}
{"utterance": "준호한테서 온 새 이메일이 있나", "expected_intent": "email:email_query", "expected_slots": {"person": "준호한테서"}, "split": "test"}
{"utterance": "지화가 언제 내게 이메일 보냈는지 알려줘", "expected_intent": "email:email_query", "expected_slots": {"person": "지화가"}, "split": "test"}
{"utterance": "주호가 보낸 이메일 있었니", "expected_intent": "email:email_query", "expected_slots": {"person": "주호가"}, "split": "test"}
|