File size: 483,469 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": "obudź mnie o piątej rano w tym tygodniu", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "piątej rano", "date": "w tym tygodniu"}, "split": "test"}
{"utterance": "cicho", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "różowy to to czego potrzebujemy", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "różowy"}, "split": "test"}
{"utterance": "i zapadła ciemność", "expected_intent": "iot:iot_hue_lighton", "expected_slots": {}, "split": "test"}
{"utterance": "olly wyłącz światła w sypialni", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "sypialni"}, "split": "test"}
{"utterance": "brudno tu zrób trochę hałasu", "expected_intent": "iot:iot_cleaning", "expected_slots": {}, "split": "test"}
{"utterance": "odkurzacz w korytarzu", "expected_intent": "iot:iot_cleaning", "expected_slots": {"house_place": "korytarzu"}, "split": "test"}
{"utterance": "chcę mieć status jasności mojego ekranu", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "co słychać olly", "expected_intent": "general:general_greet", "expected_slots": {}, "split": "test"}
{"utterance": "która jest godzina w australii", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "australii"}, "split": "test"}
{"utterance": "olly powiedz mi która godzina jest w strefie g. m. t. plus pięć", "expected_intent": "datetime:datetime_convert", "expected_slots": {"time_zone": "g. m. t. plus pięć"}, "split": "test"}
{"utterance": "wyłącz mój budzik o siódmej rano", "expected_intent": "alarm:alarm_remove", "expected_slots": {"time": "siódmej rano"}, "split": "test"}
{"utterance": "jakie alarmy ustawiłem", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "pokaż mi moje alarmy", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "lubię piosenki krzysztofa zalewskiego", "expected_intent": "music:music_likeness", "expected_slots": {"artist_name": "krzysztofa zalewskiego"}, "split": "test"}
{"utterance": "nastaw wyżej jasność świateł", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest dzisiejsza data", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "dzisiejsza"}, "split": "test"}
{"utterance": "który dzisiaj jest", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "czy mozesz zamówić sushi na dzisiejszą kolację", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "sushi", "timeofday": "dzisiejszą", "meal_type": "kolację"}, "split": "test"}
{"utterance": "jaka jest pogoda na ten tydzień", "expected_intent": "weather:weather_query", "expected_slots": {"time": "tydzień"}, "split": "test"}
{"utterance": "jaka jest pogoda na ten tydzień", "expected_intent": "weather:weather_query", "expected_slots": {"date": "na ten tydzień"}, "split": "test"}
{"utterance": "podaj mi pogodę na ten tydzień", "expected_intent": "weather:weather_query", "expected_slots": {"date": "ten tydzień"}, "split": "test"}
{"utterance": "połaskocz mnie", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "olly opowiedz dowcip", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest data", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "zamów na wynos", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"order_type": "na wynos"}, "split": "test"}
{"utterance": "lubię tę piosenkę", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "graj to ponownie proszę", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "ściemnij światła", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "czy dają jedzenie na wynos", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "jedzenie na wynos"}, "split": "test"}
{"utterance": "czy mają dostawę", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "dostawę"}, "split": "test"}
{"utterance": "czy dowożą do domu", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "dowożą"}, "split": "test"}
{"utterance": "olly czy dostarczają do domu", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "dostarczają"}, "split": "test"}
{"utterance": "ustaw budzik na czwartek o siódmej rano", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "czwartek", "time": "siódmej rano"}, "split": "test"}
{"utterance": "podaj wiadomości ze świata biznesu", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "ze świata biznesu"}, "split": "test"}
{"utterance": "pokaż mi wiadomości międzynarodowe", "expected_intent": "news:news_query", "expected_slots": {"place_name": "międzynarodowe"}, "split": "test"}
{"utterance": "zagraj moją playlistę rocka", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rocka"}, "split": "test"}
{"utterance": "włącz moją playlistę i graj trzeci utwór w kolejce", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "wycisz głośność", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "która jest godzina", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "usuń alarm który ustawiłam", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest dzisiaj pogoda", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "czy mam jutro wziąć parasol", "expected_intent": "weather:weather_query", "expected_slots": {"date": "jutro", "weather_descriptor": "parasol"}, "split": "test"}
{"utterance": "odtwórz muzykę z mojej playlisty rockowej", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "playlisty rockowej"}, "split": "test"}
{"utterance": "czuję gatunek muzyczny jazz", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "jazz"}, "split": "test"}
{"utterance": "olly graj dobry utwór mojego ulubionego jazzowego muzyka", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "jazzowego"}, "split": "test"}
{"utterance": "nie slysze cie", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "ledwo cię słyszę", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "nastawmy niebieskie światła", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "niebieskie"}, "split": "test"}
{"utterance": "jaka jest dzisiejsza prognoza dla warszawy", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dzisiejsza", "place_name": "warszawy"}, "split": "test"}
{"utterance": "jaki jest kurs wymiany dolara do funta", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "kurs wymiany dolara do funta"}, "split": "test"}
{"utterance": "włącz światła w kuchni", "expected_intent": "iot:iot_hue_lighton", "expected_slots": {"house_place": "kuchni"}, "split": "test"}
{"utterance": "włącz odkurzacz", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "odkurzacz"}, "split": "test"}
{"utterance": "włącz odkurzacz", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "odkurzacz"}, "split": "test"}
{"utterance": "puść playlistę nirvany", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "playlistę nirvany"}, "split": "test"}
{"utterance": "przetasuj piosenki coldplay", "expected_intent": "play:play_music", "expected_slots": {"player_setting": "przetasuj", "artist_name": "coldplay"}, "split": "test"}
{"utterance": "jaka jest pogoda", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "którego dnia jesy sylwester w tym roku", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "w tym roku"}, "split": "test"}
{"utterance": "bądź cicho przez następną godzinę", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"time": "następną godzinę"}, "split": "test"}
{"utterance": "nie odzywaj sie dzisiaj", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "podaj mi pogodę w barcelonie dwa dni od teraz", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "barcelonie", "time": "dwa dni od teraz"}, "split": "test"}
{"utterance": "wyłącz mój okug", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "okug"}, "split": "test"}
{"utterance": "włącz moją wtyczkę", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "wtyczkę"}, "split": "test"}
{"utterance": "siedem lat", "expected_intent": "play:play_music", "expected_slots": {"song_name": "siedem lat"}, "split": "test"}
{"utterance": "jaka jest pogoda w bydgoszczy", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "bydgoszczy"}, "split": "test"}
{"utterance": "proszę pogodę w gnieźnie", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "gnieźnie"}, "split": "test"}
{"utterance": "czy jutro będzie deszczowo", "expected_intent": "weather:weather_query", "expected_slots": {"date": "jutro", "weather_descriptor": "deszczowo"}, "split": "test"}
{"utterance": "czy będzie jutro padać", "expected_intent": "weather:weather_query", "expected_slots": {"date": "jutro", "weather_descriptor": "padać"}, "split": "test"}
{"utterance": "który dzień tygodnia jest pierwszego kwietnia", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "pierwszego kwietnia"}, "split": "test"}
{"utterance": "która jest teraz godzina", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "włącz drugą piosenkę z męskiego grania", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "męskiego grania"}, "split": "test"}
{"utterance": "prosze powiedz mi jakie są ostatnie wiadomości", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "wyłącz światła", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "chcę zapisać muzykę czy możesz to zrobić dla mnie", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "jakie są sensacje w gazecie wyborczej", "expected_intent": "news:news_query", "expected_slots": {"media_type": "gazecie wyborczej"}, "split": "test"}
{"utterance": "włącz tę inteligentną wtyczkę", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "inteligentną wtyczkę"}, "split": "test"}
{"utterance": "odtwórz losową piosenkę z mojej playlisty", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "odpal retro piosenki z mojej playlisty", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "retro"}, "split": "test"}
{"utterance": "odtwórz jakąkolwiek piosenkę autorstwa joe prsaise", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "joe prsaise"}, "split": "test"}
{"utterance": "usuń pierwszy alarm", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "zacznij grać", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "czy możesz grać rock przez następną godzinę", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rock", "time": "następną godzinę"}, "split": "test"}
{"utterance": "opowiedz mi dowcip", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "powiedz mi zabawny żart", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "zabawny"}, "split": "test"}
{"utterance": "jakie są główne wiadomości", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "podkręć pierwsze gniazdko", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "pierwsze gniazdko"}, "split": "test"}
{"utterance": "wyłącz światła w łazience", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "łazience"}, "split": "test"}
{"utterance": "wyłącz światła w sypialni", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "w sypialni"}, "split": "test"}
{"utterance": "jaka jest teraz pogoda", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "otwórz bad religion folder", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "bad religion"}, "split": "test"}
{"utterance": "jakie są najświeższe informacje", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "co się dzieje w wiadomościach", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "zwieksz głośność", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "włącz ekspres do kawy", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "ekspres do kawy"}, "split": "test"}
{"utterance": "podaj mi ostatnią cenę akcji dla bodzia", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "cenę akcji dla bodzia"}, "split": "test"}
{"utterance": "zmień światła w sypialni na zielone", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "w sypialni", "color_type": "zielone"}, "split": "test"}
{"utterance": "przyciemnij te światło", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "puść ale jazz", "expected_intent": "play:play_music", "expected_slots": {"song_name": "ale jazz"}, "split": "test"}
{"utterance": "jakie błędy zwykle popełniasz", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "kto śpiewa utwór", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "która godzina jest w rzymie", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "rzymie"}, "split": "test"}
{"utterance": "czy jest zimno na dworzu", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "zimno"}, "split": "test"}
{"utterance": "co to jest dobry żart", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "dobry"}, "split": "test"}
{"utterance": "otwórz piosenki autorstwa major lazer", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "major lazer"}, "split": "test"}
{"utterance": "jakie alarmy są nastawione", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "przez otrzymane oceny", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "przygotuj zamówienie jak najszybciej", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy znasz jakieś dowcipy", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "nastaw alarm na dziewiątą rano", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "dziewiątą rano"}, "split": "test"}
{"utterance": "graj piosenkę wehikuł czasu autorstwa dżem", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "dżem"}, "split": "test"}
{"utterance": "graj cokolwiek darii zawiałow", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "darii zawiałow"}, "split": "test"}
{"utterance": "wyłącz alarm o ósmej rano", "expected_intent": "alarm:alarm_remove", "expected_slots": {"time": "o ósmej rano"}, "split": "test"}
{"utterance": "zmień kolor świateł", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "odtwórz wszystko z playlisty", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "pokaż najnowsze wiadomości", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "jakie są nowe wiadomości na dziś", "expected_intent": "news:news_query", "expected_slots": {"date": "dziś"}, "split": "test"}
{"utterance": "jaka jest teraz pogoda", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "wyłącz wyciszenie później", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "dzwoń proszę budzikiem o ósmej rano w następną sobotę", "expected_intent": "alarm:alarm_set", "expected_slots": {"alarm_type": "budzikiem", "time": "ósmej rano", "date": "sobotę"}, "split": "test"}
{"utterance": "rozpocznij playlistę", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "proszę graj w radio piosenkę gaga", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "gaga"}, "split": "test"}
{"utterance": "ustaw powiadomienia dla wiadomości o gazociągu nord stream", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "gazociągu nord stream"}, "split": "test"}
{"utterance": "proszę włącz odkurzacz", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "odkurzacz"}, "split": "test"}
{"utterance": "wyłącz światła w pokoju", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "w pokoju"}, "split": "test"}
{"utterance": "aktualny czas w japonii", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "japonii"}, "split": "test"}
{"utterance": "czy możesz przygasić światła", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "chce dwa burgery i colę zamów to szybko", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "colę"}, "split": "test"}
{"utterance": "ingormuj mnie na bieżąco o cenie bitcoina", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "cenie bitcoina"}, "split": "test"}
{"utterance": "która godzina jest teraz w warszawie", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "w warszawie"}, "split": "test"}
{"utterance": "czy możesz przykręcić światła", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "chcę posłuchać najnowszych wiadomości cnn", "expected_intent": "news:news_query", "expected_slots": {"media_type": "cnn"}, "split": "test"}
{"utterance": "podsumuj szczegóły tygodniowej prognozy pogody", "expected_intent": "weather:weather_query", "expected_slots": {"time": "tygodniowej"}, "split": "test"}
{"utterance": "wyłącz te światła", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "jak zimno jest dzisiaj na dworze", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "zimno", "date": "dzisiaj"}, "split": "test"}
{"utterance": "nie mów zanim cię nie poproszę", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "chcę wiedzieć coś o tej piosence", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest prognoza pogody na ten tydzień", "expected_intent": "weather:weather_query", "expected_slots": {"date": "na ten tydzień"}, "split": "test"}
{"utterance": "czy mógłbyś podać mi aktualne nagłówki wiadomości od mojego najnowszego dostawcy", "expected_intent": "news:news_query", "expected_slots": {"media_type": "najnowszego dostawcy"}, "split": "test"}
{"utterance": "czy mógłbyś znaleźć mi najnowsze wiadomości ze źródła zktórego zwykle nie korzystam", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "pokaż mi o najnowsze wiadomości polityczne", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "polityczne"}, "split": "test"}
{"utterance": "chcę posłuchać latawce dmuchawce wiatr urszuli", "expected_intent": "play:play_music", "expected_slots": {"song_name": "latawce dmuchawce wiatr", "artist_name": "urszuli"}, "split": "test"}
{"utterance": "graj ale jazz", "expected_intent": "play:play_music", "expected_slots": {"song_name": "ale jazz"}, "split": "test"}
{"utterance": "graj ale jazz od sanah", "expected_intent": "play:play_music", "expected_slots": {"song_name": "ale jazz", "artist_name": "sanah"}, "split": "test"}
{"utterance": "graj piosenki miłosne", "expected_intent": "play:play_music", "expected_slots": {"song_name": "piosenki miłosne"}, "split": "test"}
{"utterance": "umiarkowana czy brzydka pogoda", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "brzydka"}, "split": "test"}
{"utterance": "potwierdź moje ustawienia budzika", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "hej siri wycisz głośniki", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest obecnie temperatura na zewnątrz", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "temperatura"}, "split": "test"}
{"utterance": "graj plejlistę boba dylana", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "boba dylana"}, "split": "test"}
{"utterance": "jaka będzie przewidywana pogoda jutro", "expected_intent": "weather:weather_query", "expected_slots": {"date": "jutro"}, "split": "test"}
{"utterance": "jakie są sondaże t. v. n. na nadchodzące wybory w u. s. a.", "expected_intent": "news:news_query", "expected_slots": {"media_type": "sondaże t. v. n.", "news_topic": "nadchodzące wybory w u. s. a."}, "split": "test"}
{"utterance": "włącz rumbę", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "rumbę"}, "split": "test"}
{"utterance": "moje ustawione alarmy", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "ustawienia alarmu", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "robot odkurzający salon teraz", "expected_intent": "iot:iot_cleaning", "expected_slots": {"house_place": "salon"}, "split": "test"}
{"utterance": "zapisz opinię", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "nastaw alarm na ósmą rano", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "ósmą rano"}, "split": "test"}
{"utterance": "graj jakąś chrześcijańską muzykę", "expected_intent": "play:play_music", "expected_slots": {"music_descriptor": "chrześcijańską"}, "split": "test"}
{"utterance": "zrób domowe światła bursztynowe o szóstej po południu", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "domowe", "color_type": "bursztynowe", "time": "szóstej po południu"}, "split": "test"}
{"utterance": "wyłącz światła proszę", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "usuń proszę mój alarm", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "lubię tę piosenkę zachowaj ją proszę", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "otwórz i graj muzykę z mojej playlisty do ćwiczeń", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "playlisty do ćwiczeń"}, "split": "test"}
{"utterance": "ustaw alarm na siódmą rano", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "siódmą rano"}, "split": "test"}
{"utterance": "włącz mój poranny alarm", "expected_intent": "alarm:alarm_set", "expected_slots": {"timeofday": "poranny"}, "split": "test"}
{"utterance": "jaka jest różnica czasu między tutaj a japonią", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "japonią"}, "split": "test"}
{"utterance": "jaka jest teraz pogoda w katowicach", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "katowicach"}, "split": "test"}
{"utterance": "podkręć jasność świateł", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "chcę ciemniejsze światła", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "czy mogę zamówić na wynos z sao mai", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "na wynos", "business_name": "sao mai"}, "split": "test"}
{"utterance": "artykuły z wiadomościami na określony temat", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "która godzina jest teraz we wrocławiu", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "wrocławiu"}, "split": "test"}
{"utterance": "wyłącz światła w salonie", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "w salonie"}, "split": "test"}
{"utterance": "czy możesz wyłączyć światło", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "graj creed z mojej rockowej playlisty", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "creed", "music_genre": "rockowej"}, "split": "test"}
{"utterance": "która godzina jest teraz w londynie", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "londynie"}, "split": "test"}
{"utterance": "przyciemnij światła w salonie", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {"house_place": "w salonie"}, "split": "test"}
{"utterance": "otwórz folder w apce", "expected_intent": "takeaway:takeaway_order", "expected_slots": {}, "split": "test"}
{"utterance": "zadzwoń do najbliższej tajskiej restauracji z dostawą", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "tajskiej", "business_type": "restauracji", "order_type": "dostawą"}, "split": "test"}
{"utterance": "potrzebuję popłakać czy możesz zagrać smutne piosenki rock", "expected_intent": "play:play_music", "expected_slots": {"music_descriptor": "smutne", "music_genre": "rock"}, "split": "test"}
{"utterance": "scisz głośność", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "włącz robota odkurzającego", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "robota odkurzającego"}, "split": "test"}
{"utterance": "informuj mnie na bieżąco o wiadomościach sportowych", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "sportowych"}, "split": "test"}
{"utterance": "podawaj co godzinę najnowsze wiadomości sportowe", "expected_intent": "news:news_query", "expected_slots": {"general_frequency": "co godzinę", "news_topic": "sportowe"}, "split": "test"}
{"utterance": "gdzie jest ustawianie głośności", "expected_intent": "audio:audio_volume_other", "expected_slots": {}, "split": "test"}
{"utterance": "rozjaśnij światła w korytarzu", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "w korytarzu"}, "split": "test"}
{"utterance": "proszę podkręć maksymalnie jasność ekranu", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"change_amount": "maksymalnie", "device_type": "ekranu"}, "split": "test"}
{"utterance": "nie puszczaj rock metalu", "expected_intent": "music:music_dislikeness", "expected_slots": {"music_genre": "rock metalu"}, "split": "test"}
{"utterance": "przyjazny użytkownikowi", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy możesz zwiększyć jasność w pokoju", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "pokoju"}, "split": "test"}
{"utterance": "przejdź na stronę gazety wyborczej", "expected_intent": "news:news_query", "expected_slots": {"media_type": "gazety wyborczej"}, "split": "test"}
{"utterance": "którego dnia tygodnia wypada piętnasty marca", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "piętnasty marca"}, "split": "test"}
{"utterance": "mam ochotę posłuchać jakąś muzykę country", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "country"}, "split": "test"}
{"utterance": "zbierz wszystkie gatunki piosenek pop", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "pop"}, "split": "test"}
{"utterance": "czy jest coś specjalnego w polityce", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "polityce"}, "split": "test"}
{"utterance": "graj ale jazz autorki sanah", "expected_intent": "play:play_music", "expected_slots": {"song_name": "ale jazz", "artist_name": "sanah"}, "split": "test"}
{"utterance": "następnie graj pastempomat podsiadło", "expected_intent": "play:play_music", "expected_slots": {"song_name": "pastempomat", "artist_name": "podsiadło"}, "split": "test"}
{"utterance": "przygotuj sanah melodia aby było następne", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "sanah", "song_name": "melodia"}, "split": "test"}
{"utterance": "odtwarzaj wszystkie piosenki losowo", "expected_intent": "play:play_music", "expected_slots": {"player_setting": "losowo"}, "split": "test"}
{"utterance": "chcę jakiś rap", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rap"}, "split": "test"}
{"utterance": "która jest teraz godzina w sydney", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "sydney"}, "split": "test"}
{"utterance": "włącz odkurzacz", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "odkurzacz"}, "split": "test"}
{"utterance": "najnowsze informacje na temat międzynarodowego dnia kobiet", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "międzynarodowego dnia kobiet"}, "split": "test"}
{"utterance": "powiedz jakiś żart", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "jak zimno będzie każdej nocy w tym tygodniu", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "zimno", "general_frequency": "każdej nocy", "date": "w tym tygodniu"}, "split": "test"}
{"utterance": "kto śpiewa piosenkę o długim czarnym pociągu", "expected_intent": "music:music_query", "expected_slots": {"song_name": "długim czarnym pociągu"}, "split": "test"}
{"utterance": "znajdź dzisiejsze artykuły facebooka o trumpie", "expected_intent": "news:news_query", "expected_slots": {"date": "dzisiejsze", "media_type": "facebooka", "news_topic": "trumpie"}, "split": "test"}
{"utterance": "jeśli jest wschód słońca w sztokholmie która godzina jest na okinawie", "expected_intent": "datetime:datetime_convert", "expected_slots": {"time": "wschód słońca", "place_name": "na okinawie"}, "split": "test"}
{"utterance": "aktualny czas w warszawie", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "warszawie"}, "split": "test"}
{"utterance": "usuń alarm na trzecią po południu", "expected_intent": "alarm:alarm_remove", "expected_slots": {"time": "trzecią po południu"}, "split": "test"}
{"utterance": "olly zmień oświetlenie na niebieskie", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "na niebieskie"}, "split": "test"}
{"utterance": "odtwórz pandora", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "chcę widzieć czy pizza hut ma dowóz", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "pizza hut", "order_type": "ma dowóz"}, "split": "test"}
{"utterance": "jaka będzie prawdopodobnie pogoda w tym tygodniu", "expected_intent": "weather:weather_query", "expected_slots": {"date": "w tym tygodniu"}, "split": "test"}
{"utterance": "powiedz mi aktualny czas", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "jaki jest najzabawniejszy żart jaki znasz", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "najzabawniejszy"}, "split": "test"}
{"utterance": "czy mój budzik jest ustawiony na jutro rano", "expected_intent": "alarm:alarm_query", "expected_slots": {"date": "jutro", "timeofday": "rano"}, "split": "test"}
{"utterance": "jest piąta rano w berlinie która godzina jest tutaj", "expected_intent": "datetime:datetime_convert", "expected_slots": {"time": "piąta rano", "place_name": "berlinie"}, "split": "test"}
{"utterance": "chcę kawę", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "informacje o nagrodzie akademii filmowej", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "nagrodzie akademii filmowej"}, "split": "test"}
{"utterance": "szybko", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "opowiedz mi o nowej polityce zagranicznej trumpa", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "nowej polityce zagranicznej trumpa"}, "split": "test"}
{"utterance": "sprawdź dzisiejszą pogodę tutaj", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dzisiejszą"}, "split": "test"}
{"utterance": "otwórz aplikację z muzyką i puść dla mnie piosenkę", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "lubię piosenki o. n. a. proszę puść ją", "expected_intent": "music:music_likeness", "expected_slots": {"artist_name": "o. n. a."}, "split": "test"}
{"utterance": "czy będzie ładnie na dworzu w tym tygodniu", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "ładnie", "date": "w tym tygodniu"}, "split": "test"}
{"utterance": "spowolnij ustawienie głośności głośnika", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "proszę podkręć światło w ten sposób nie jest dobrze", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "co mamy na pierwszej stronie gazety wyborczej", "expected_intent": "news:news_query", "expected_slots": {"media_type": "gazety wyborczej"}, "split": "test"}
{"utterance": "jaki jest dobry żart", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "dobry"}, "split": "test"}
{"utterance": "czy możesz podkręcić głośność", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "proszę wyłącz światło w pokoju mojego syna", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "pokoju mojego syna"}, "split": "test"}
{"utterance": "czy pizza hut ma dostawy", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "pizza hut", "order_type": "dostawy"}, "split": "test"}
{"utterance": "głównie zwracam uwagę", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "czasami uważam", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy mogę poprosić pogodę jutro w zgierzu", "expected_intent": "weather:weather_query", "expected_slots": {"date": "jutro", "place_name": "zgierzu"}, "split": "test"}
{"utterance": "olly czy mozesz mi zrobić trochę kawy", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "powiedz mi o dudzie", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "dudzie"}, "split": "test"}
{"utterance": "powiadom mnie kiedy usłyszysz o francji", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "francji"}, "split": "test"}
{"utterance": "zmień światła na niebieskie olly", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "na niebieskie"}, "split": "test"}
{"utterance": "chciałbym czerwone światło", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "czerwone"}, "split": "test"}
{"utterance": "graj najnowsze piosenki rock z oceną cztery lub powyżej", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rock", "music_descriptor": "z oceną cztery lub powyżej"}, "split": "test"}
{"utterance": "kiedy są święta wielkanocne w roku dwa tysiące osiemnaście", "expected_intent": "datetime:datetime_query", "expected_slots": {"event_name": "święta wielkanocne", "date": "dwa tysiące osiemnaście"}, "split": "test"}
{"utterance": "usuń alarm na jutro", "expected_intent": "alarm:alarm_remove", "expected_slots": {"date": "jutro"}, "split": "test"}
{"utterance": "usuń alarm", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "jak gorąco jest w krakowie", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "gorąco", "place_name": "krakowie"}, "split": "test"}
{"utterance": "graj sanah", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "sanah"}, "split": "test"}
{"utterance": "jakie są dzisiejsze wiadomości sportowe", "expected_intent": "news:news_query", "expected_slots": {"date": "dzisiejsze", "news_topic": "sportowe"}, "split": "test"}
{"utterance": "jakie alarmy nastawiłam", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "zagraj najnowsze piosenki sanah", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "sanah"}, "split": "test"}
{"utterance": "nie rób hałasu aż do porannego budzika", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"timeofday": "porannego"}, "split": "test"}
{"utterance": "włącz tryb cichy dopóki nie wrócę do domu z pracy", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "pokaż dostępne kolory świateł", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jeat temperatura", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "temperatura"}, "split": "test"}
{"utterance": "zamów pizzę z kiełbasą z pizza hut", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "pizzę", "ingredient": "kiełbasą", "business_name": "pizza hut"}, "split": "test"}
{"utterance": "przypomnij mi że lubię tę piosenkę", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "jakie wiadomości były dzisiaj w t. v. n.", "expected_intent": "news:news_query", "expected_slots": {"date": "dzisiaj", "media_type": "t. v. n."}, "split": "test"}
{"utterance": "pokaż mi obecną godzinę w niemczech", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "niemczech"}, "split": "test"}
{"utterance": "słońce pięknie świeci czy będziemy mieć taką pogodę przez resztę dnia", "expected_intent": "weather:weather_query", "expected_slots": {"time": "resztę dnia"}, "split": "test"}
{"utterance": "graj mi letni relaks", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "letni relaks"}, "split": "test"}
{"utterance": "jaka jest będzie pogoda w mojej okolicy w tym tygodniu", "expected_intent": "weather:weather_query", "expected_slots": {"date": "w tym tygodniu"}, "split": "test"}
{"utterance": "czy będzie padać w tym tygodniu", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "padać", "date": "w tym tygodniu"}, "split": "test"}
{"utterance": "włącz wemo", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "wemo"}, "split": "test"}
{"utterance": "wyłącz lampy", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"device_type": "lampy"}, "split": "test"}
{"utterance": "włącz odkurzacz", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "odkurzacz"}, "split": "test"}
{"utterance": "znajdź mi żart związany z bejsbolem", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "bejsbolem"}, "split": "test"}
{"utterance": "jaki jest dziś dzień miesiąc i rok", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "w najbliższy wtorek będzie słonecznie", "expected_intent": "weather:weather_query", "expected_slots": {"date": "wtorek", "weather_descriptor": "słonecznie"}, "split": "test"}
{"utterance": "ustaw powiadomienie na wiadomości ze świata", "expected_intent": "news:news_query", "expected_slots": {"media_type": "wiadomości ze świata"}, "split": "test"}
{"utterance": "czy możesz podać mi najnowsze wiadomości", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "podaj mi godzinę w los angeles", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "los angeles"}, "split": "test"}
{"utterance": "informuj mnie o każdym nowym temacie w polityce", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "polityce"}, "split": "test"}
{"utterance": "objaśnienie utworu", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "zwiększ głośność bieżącej muzyki", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "w jakich godzinach włączają się moje alarmy", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "pokaż mi ostatnie wiadomości z wyborczej", "expected_intent": "news:news_query", "expected_slots": {"media_type": "wyborczej"}, "split": "test"}
{"utterance": "scisz głośność", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "podkrec to", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "czy dzisiaj są jakieś alarmy", "expected_intent": "alarm:alarm_query", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "kiedy będzie ponownie padać", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "padać"}, "split": "test"}
{"utterance": "czy jutro w południe będzie padać śnieg", "expected_intent": "weather:weather_query", "expected_slots": {"date": "jutro", "timeofday": "południe", "weather_descriptor": "padać śnieg"}, "split": "test"}
{"utterance": "chcę zobaczyć wszystkie ustawione alarmy", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "jakie są wiadomości z polsatu z ostatnich sześciu godzin", "expected_intent": "news:news_query", "expected_slots": {"media_type": "polsatu", "time": "ostatnich sześciu godzin"}, "split": "test"}
{"utterance": "zagraj muzykę z roku tysiąc dziewięćset dziewięćdziesiątego do roku dwu tysięcznego deltete", "expected_intent": "play:play_music", "expected_slots": {"date": "dwu tysięcznego"}, "split": "test"}
{"utterance": "usuń wtorkowy alarm o dziewiątej rano", "expected_intent": "alarm:alarm_remove", "expected_slots": {"date": "wtorkowy", "time": "dziewiątej rano"}, "split": "test"}
{"utterance": "jaka muzyka jest aktualnie odtwarzana", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "jutrzejsza temperatura ma być wysoka tak czy nie", "expected_intent": "weather:weather_query", "expected_slots": {"date": "jutrzejsza", "weather_descriptor": "wysoka"}, "split": "test"}
{"utterance": "jutrzejsza temperatura będzie wysoka", "expected_intent": "weather:weather_query", "expected_slots": {"date": "jutrzejsza", "weather_descriptor": "wysoka"}, "split": "test"}
{"utterance": "znajdź jakiś jazz dla mnie", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "jazz"}, "split": "test"}
{"utterance": "mój odkurzacz powinien zostać włączony między dziesiątą a jedenastą rano codziennie", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "odkurzacz", "time": "jedenastą rano", "general_frequency": "codziennie"}, "split": "test"}
{"utterance": "zmień tryb muzyki na rock", "expected_intent": "music:music_settings", "expected_slots": {"player_setting": "zmień", "music_genre": "rock"}, "split": "test"}
{"utterance": "ścisz o pięćdziesiąt procent", "expected_intent": "audio:audio_volume_down", "expected_slots": {"change_amount": "o pięćdziesiąt procent"}, "split": "test"}
{"utterance": "ustaw alarm tylko na poniedziałek na szóstą rano", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "poniedziałek", "time": "szóstą rano"}, "split": "test"}
{"utterance": "jaka jest temperatura w warszawie", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "temperatura", "place_name": "warszawie"}, "split": "test"}
{"utterance": "hej olly powiedz mi proszę jak się nazywa ta piosenka która teraz leci", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "co myślisz", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "czy podoba ci się ta piosenka", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "wyłącz wszystkie światła", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"device_type": "wszystkie światła"}, "split": "test"}
{"utterance": "rozjaśnij światła", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "pokaż mi informacje o prezydencie trumpie", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "prezydencie trumpie"}, "split": "test"}
{"utterance": "najnowsze wiadomości o terroryzmie", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "terroryzmie"}, "split": "test"}
{"utterance": "wyłącz alarm", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "następna piosenka", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "proszę przyciemnij światła", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "wyłącz jadalnię", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "jadalnię"}, "split": "test"}
{"utterance": "wyłącz główną sypialnię", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "główną sypialnię"}, "split": "test"}
{"utterance": "czy trump odwiedzi niedługo rosję", "expected_intent": "news:news_query", "expected_slots": {"person": "trump", "place_name": "rosję"}, "split": "test"}
{"utterance": "dzisiejsza data", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "dzisiejsza"}, "split": "test"}
{"utterance": "które drużyny grają dzisiaj w ekstraklasie", "expected_intent": "news:news_query", "expected_slots": {"date": "dzisiaj", "news_topic": "ekstraklasie"}, "split": "test"}
{"utterance": "więcej świateł proszę", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "tytuł piosenki", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "tytuł", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "zacznij playlistę i graj muzykę", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "proszę zrób mi kawy bez słodzika", "expected_intent": "iot:iot_coffee", "expected_slots": {"coffee_type": "bez słodzika"}, "split": "test"}
{"utterance": "chcę zjeść coś pikantnego", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "pikantnego"}, "split": "test"}
{"utterance": "zamów pizzę z pizza hut", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "pizzę", "business_name": "pizza hut"}, "split": "test"}
{"utterance": "graj album coldplay", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "coldplay"}, "split": "test"}
{"utterance": "czy możesz zapętlić playlistę muzyka filmowa", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "muzyka filmowa"}, "split": "test"}
{"utterance": "kiedy włączy się mój alarm", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "raport pogodowy na teraz", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "jaki jest dzisiaj miesiąc", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "świetna piosenka do słuchania", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "dodaj utwór do obecnej playlisty", "expected_intent": "music:music_likeness", "expected_slots": {"playlist_name": "obecnej"}, "split": "test"}
{"utterance": "pokaż mi najważniejsze momenty z meczu", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "najważniejsze momenty z meczu"}, "split": "test"}
{"utterance": "obudź mnie o piątej rano", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "piątej rano"}, "split": "test"}
{"utterance": "włącz odkurzacz", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "odkurzacz"}, "split": "test"}
{"utterance": "czy dziś wieczorem będzie spadek temperatury", "expected_intent": "weather:weather_query", "expected_slots": {"timeofday": "dziś wieczorem", "weather_descriptor": "temperatury"}, "split": "test"}
{"utterance": "graj utwór szampan", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "posprzątaj dom", "expected_intent": "iot:iot_cleaning", "expected_slots": {"house_place": "dom"}, "split": "test"}
{"utterance": "zmień światła na różowy kolor", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "różowy"}, "split": "test"}
{"utterance": "cześć google puść moją zwariowaną playlistę z apki gaana", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "zwariowaną"}, "split": "test"}
{"utterance": "nastaw alarm na szóstą trzydzieści rano", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "szóstą trzydzieści rano"}, "split": "test"}
{"utterance": "czy możesz podkręcić światła", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "czy możesz otworzyć mój itunes", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "odtwarzaj the beatles", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "beatles"}, "split": "test"}
{"utterance": "proszę graj orenżada", "expected_intent": "play:play_music", "expected_slots": {"song_name": "orenżada"}, "split": "test"}
{"utterance": "przyciemnij światła w kuchni", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {"house_place": "w kuchni"}, "split": "test"}
{"utterance": "zrób kawę teraz", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "co to za piosenka co teraz gra", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "gdzie jest moje jedzenie", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "nigdy więcej nie chcę słyszeć tej piosenki", "expected_intent": "music:music_dislikeness", "expected_slots": {}, "split": "test"}
{"utterance": "umieść tę piosenkę na mojej liście ulubionych", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "chcę jakąś jazzową muzykę do grania", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "jazzową"}, "split": "test"}
{"utterance": "chcę więcej światła", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "podkręć światło", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "alexa chciałbym posłuchać jakiejś muzyki klasycznej z wyjątkiem bacha lub schuberta", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "klasycznej", "artist_name": "schuberta"}, "split": "test"}
{"utterance": "podaj mi tytuł obecnej muzyki", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "co to za muzyka teraz gra", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "co się ostatnio dzieje na świecie", "expected_intent": "news:news_query", "expected_slots": {"place_name": "świecie"}, "split": "test"}
{"utterance": "następnie graj tańcz głupia tańcz", "expected_intent": "play:play_music", "expected_slots": {"song_name": "tańcz głupia tańcz"}, "split": "test"}
{"utterance": "powiedz mi co się teraz dzieje w moim rodzinnym mieście", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "rodzinnym mieście"}, "split": "test"}
{"utterance": "światła mają być przyciemnione jasne", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "obudź mnie", "expected_intent": "alarm:alarm_set", "expected_slots": {}, "split": "test"}
{"utterance": "którego jest zimowe przesilenie za dwa lata", "expected_intent": "datetime:datetime_query", "expected_slots": {"event_name": "zimowe przesilenie", "time": "dwa lata"}, "split": "test"}
{"utterance": "musze wiedzieć która jest teraz godzina", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "idę teraz spać", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "jak idzie zamówienie jedzenia", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "kiedy możemy jeść", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy kolacja jest gotowa", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"meal_type": "kolacja"}, "split": "test"}
{"utterance": "nastaw alarm na jutro o szóstej rano", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "jutro", "time": "szóstej", "timeofday": "rano"}, "split": "test"}
{"utterance": "obudź mnie za pół godziny", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "pół godziny"}, "split": "test"}
{"utterance": "wyłącz mój alarm", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "kto śpiewa hotel california", "expected_intent": "music:music_query", "expected_slots": {"song_name": "hotel california"}, "split": "test"}
{"utterance": "jaka jest teraz pogoda u mnie", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "u mnie"}, "split": "test"}
{"utterance": "jaki dzień tygodnia był czwartego grudnia tysiąc dziewięćset osiemdziesiątego drugiego", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "czwartego grudnia tysiąc dziewięćset osiemdziesiątego drugiego"}, "split": "test"}
{"utterance": "główne wiadomości z tvn dwadzieścia cztery", "expected_intent": "news:news_query", "expected_slots": {"media_type": "tvn dwadzieścia cztery"}, "split": "test"}
{"utterance": "najważniejsze wiadomości tvn dwadzieścia cztery", "expected_intent": "news:news_query", "expected_slots": {"media_type": "tvn dwadzieścia cztery"}, "split": "test"}
{"utterance": "cisza przez dwie godziny", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"time": "dwie godziny"}, "split": "test"}
{"utterance": "od teraz na wyciszenie", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "dostosuj wyciszenie", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "wow", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "pogoda we wrocławiu", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "wrocławiu"}, "split": "test"}
{"utterance": "graj melodia autorstwa sanah", "expected_intent": "play:play_music", "expected_slots": {"song_name": "melodia", "artist_name": "sanah"}, "split": "test"}
{"utterance": "wyłącz światło w kuchni", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "w kuchni"}, "split": "test"}
{"utterance": "nic nie widzę podkręć światło", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "przeczytaj najnowsze wiadomości międzynarodowe", "expected_intent": "news:news_query", "expected_slots": {"place_name": "międzynarodowe"}, "split": "test"}
{"utterance": "czy mogę zamówić na wynos z curry house", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"order_type": "na wynos", "business_name": "curry house"}, "split": "test"}
{"utterance": "czy potrzebuję dziś swetra", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dziś", "weather_descriptor": "swetra"}, "split": "test"}
{"utterance": "pokaż przyciemniony kolor", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "jasny kolor do gabinetu", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "gabinetu"}, "split": "test"}
{"utterance": "powiedz mi jaka jest teraz pogoda w oławie na dolnym śląsku", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "oławie na dolnym śląsku"}, "split": "test"}
{"utterance": "proszę graj piosenki które kupiłem i polubiłem", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "muszę zmienić kolor świateł w moim domu na niebieskie", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "domu", "color_type": "niebieskie"}, "split": "test"}
{"utterance": "włącz kawę o szóstej rano", "expected_intent": "iot:iot_coffee", "expected_slots": {"time": "o szóstej rano"}, "split": "test"}
{"utterance": "podawaj mi najnowsze dzisiejsze wyniki n b a", "expected_intent": "news:news_query", "expected_slots": {"date": "dzisiejsze", "news_topic": "wyniki n b a"}, "split": "test"}
{"utterance": "wyłącz światła teraz", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "jest siódma rano czasy pacyficznego", "expected_intent": "datetime:datetime_convert", "expected_slots": {"time": "siódma rano", "time_zone": "pacyficznego"}, "split": "test"}
{"utterance": "alexa przykręć światła do siedmiu", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {"change_amount": "do siedmiu"}, "split": "test"}
{"utterance": "jakie sa informacje na dziś", "expected_intent": "news:news_query", "expected_slots": {"date": "dziś"}, "split": "test"}
{"utterance": "alexa daj mi najnowsze informacje", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest pogoda w ten piątek", "expected_intent": "weather:weather_query", "expected_slots": {"date": "piątek"}, "split": "test"}
{"utterance": "jaka będzie jutro pogoda", "expected_intent": "weather:weather_query", "expected_slots": {"date": "jutro"}, "split": "test"}
{"utterance": "pokaż która jest teraz godzina w londynie", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "londynie"}, "split": "test"}
{"utterance": "dodaj alarm na jutro rano o szóstej rano", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "jutro", "timeofday": "rano", "time": "szóstej"}, "split": "test"}
{"utterance": "zamów nudle na dowóz", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "nudle", "order_type": "na dowóz"}, "split": "test"}
{"utterance": "złóż zamówienie na jedną paczkę makaronu zrób to jako zamówienie na wynos", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "makaronu", "order_type": "na wynos"}, "split": "test"}
{"utterance": "włącz ciemne kolory zamiast jasnych w domu", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "ciemne", "house_place": "domu"}, "split": "test"}
{"utterance": "olly nastaw ciemne światła w domu zamiast jasnych", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "ciemne", "house_place": "w domu"}, "split": "test"}
{"utterance": "jaki to rodzaj muzyki", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "z którego filmu pochodzi muzyka jak jest nazwa muzyki", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "jaka piosenka jest w radiu", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "info o piosence", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "co się dzieje na świecie", "expected_intent": "news:news_query", "expected_slots": {"place_name": "świecie"}, "split": "test"}
{"utterance": "jakie są najnowsze wiadomości", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "kto napisał tę piosenkę", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "zacznij grać piosenki celine dion", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "celine dion"}, "split": "test"}
{"utterance": "czy to nie urocza piosenka proszę zapisz ją dla mnie", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "daj mi więcej światła", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "poszukaj więcej piosenek tego zespołu", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "czy możesz mi powiedzieć która godzina w gdańsku", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "gdańsku"}, "split": "test"}
{"utterance": "chcę zamówić pizzę z viva la pizza", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "pizzę", "business_name": "viva la pizza"}, "split": "test"}
{"utterance": "podaj dzisiejszą prognozę dla nowego sącza", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dzisiejszą", "place_name": "nowego sącza"}, "split": "test"}
{"utterance": "co z moim zamówieniem", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "włącz rumbę", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "rumbę"}, "split": "test"}
{"utterance": "wyślij informacje technologiczne", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "technologiczne"}, "split": "test"}
{"utterance": "wyłącz światło w szopce", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "szopce"}, "split": "test"}
{"utterance": "mam ochotę na zupę na lunch zamów rosół z restauracji jimmy's", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "zupę", "meal_type": "lunch", "business_type": "restauracji", "business_name": "jimmy's"}, "split": "test"}
{"utterance": "siedemset", "expected_intent": "datetime:datetime_convert", "expected_slots": {}, "split": "test"}
{"utterance": "czy czas jest poprawny dla miejsca w którym się znajduję", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "zadzwoń po jedzenie na wynos", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"order_type": "jedzenie na wynos"}, "split": "test"}
{"utterance": "codzienne wiadomości", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest dziś data", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "dziś"}, "split": "test"}
{"utterance": "siri któray jest dzisiaj dzień", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "jak mam nastawić ekspres do kawy żeby zrobić kawę", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "ekspres do kawy"}, "split": "test"}
{"utterance": "jak włączyć rumbę", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "rumbę"}, "split": "test"}
{"utterance": "włącz klasyczny rock", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "klasyczny rock"}, "split": "test"}
{"utterance": "alexa graj mi piosenkę rapową i rockową jedna po drugiej", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rockową"}, "split": "test"}
{"utterance": "zrób światła w pokoju niebieskie", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "pokoju", "color_type": "niebieskie"}, "split": "test"}
{"utterance": "zrób światła w sypialni czerwone i w korytarzu światła w normalnym kolorze", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "w korytarzu", "color_type": "w normalnym"}, "split": "test"}
{"utterance": "jaka jest pogoda", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "coś ciekawego z wiadomości borysa", "expected_intent": "news:news_query", "expected_slots": {"media_type": "wiadomości borysa"}, "split": "test"}
{"utterance": "zmień światła w moim domu na zielone", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "domu", "color_type": "zielone"}, "split": "test"}
{"utterance": "graj losową muzykę", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "proszę ustawić budzik na następny piątek o szóstej trzydzieści rano", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "piątek", "time": "szóstej trzydzieści rano"}, "split": "test"}
{"utterance": "wyłącz moje gniazdko wemo", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "gniazdko wemo"}, "split": "test"}
{"utterance": "gra moją playlistę muzyka taneczna ze spotify", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "wyłącz światło na ganku", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "ganku"}, "split": "test"}
{"utterance": "proszę jakie są najnowsze wiadomości z tvn dwadzieścia cztery", "expected_intent": "news:news_query", "expected_slots": {"media_type": "tvn dwadzieścia cztery"}, "split": "test"}
{"utterance": "zwiększ tu jasność", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "powiedz mi o najnowszych wiadomościach dotyczących ochrony środowiska", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "dotyczących ochrony środowiska"}, "split": "test"}
{"utterance": "graj moją ulubioną muzykę teraz", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "anulowałem zamówienie w macu czy przeszło", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "macu"}, "split": "test"}
{"utterance": "aktualna prognoza pogody", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy będę musiała założyć kurtkę w przyszłą środę", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "kurtkę", "date": "środę"}, "split": "test"}
{"utterance": "pokaż mi wiadomości o trumpie", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "trumpie"}, "split": "test"}
{"utterance": "pokaż mi wiadomości na temat środowiska", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "środowiska"}, "split": "test"}
{"utterance": "czy możesz utworzyć na pandorze kanał edyty bartosiewicz", "expected_intent": "music:music_settings", "expected_slots": {"artist_name": "edyty bartosiewicz"}, "split": "test"}
{"utterance": "najnowsze wiadomości z okolicy", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy pamiętałem aby ustawić alarm przypominający o mojej następnej wizycie u lekarza", "expected_intent": "alarm:alarm_query", "expected_slots": {"event_name": "wizycie u lekarza"}, "split": "test"}
{"utterance": "czy dziś pada", "expected_intent": "weather:weather_query", "expected_slots": {"timeofday": "dziś", "weather_descriptor": "pada"}, "split": "test"}
{"utterance": "czy temperatura będzie mniej więcej taka sama czy zrobi się zimniej", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "temperatura"}, "split": "test"}
{"utterance": "czy ostatnie zamówienie jest gotowe", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "wyłącz gniazdko", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "gniazdko"}, "split": "test"}
{"utterance": "proszę odtwarzaj muzykę folk", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "folk"}, "split": "test"}
{"utterance": "posłuchajmy jakiś indie rock ok", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "indie rock"}, "split": "test"}
{"utterance": "czuję że chcę posłuchać trochę rocka", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rocka"}, "split": "test"}
{"utterance": "olly potrzebuję posłuchać jakichś smutnych piosenek dzisiaj", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "smutnych piosenek", "date": "dzisiaj"}, "split": "test"}
{"utterance": "wyłącz światła kompletnie", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "chcę posłuchać purple haze", "expected_intent": "play:play_music", "expected_slots": {"song_name": "purple haze"}, "split": "test"}
{"utterance": "czy masz dla mnie zabawny dowcip", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "zabawny"}, "split": "test"}
{"utterance": "podaj mi wiadomości z tvn", "expected_intent": "news:news_query", "expected_slots": {"media_type": "tvn"}, "split": "test"}
{"utterance": "włącz proszę dzbanek do kawy", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "potrzebuję filiżankę kawy", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "olly zagraj muzykę z gatunku jazz", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "jazz"}, "split": "test"}
{"utterance": "kiedy moje zamówienie będzie gotowe", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "wyłącz światła", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "przerwij używanie świateł", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "czy powinnam wziąć dzisiaj parasol", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "czy są jakieś nadchodzące koncerty", "expected_intent": "music:music_likeness", "expected_slots": {"event_name": "koncerty"}, "split": "test"}
{"utterance": "proszę graj jakąś muzykę jazzową", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "muzykę jazzową"}, "split": "test"}
{"utterance": "wycisz glosniki", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "tryb głośności cisza", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "alexa puść piosenkę ale jazz", "expected_intent": "play:play_music", "expected_slots": {"song_name": "ale jazz"}, "split": "test"}
{"utterance": "która godzina jest teraz w londynie", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "londynie"}, "split": "test"}
{"utterance": "czy możesz mi zrobić filiżankę kawy", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "ustaw światła w salonie do pięćdziesięciu procent", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "w salonie", "change_amount": "do pięćdziesięciu procent"}, "split": "test"}
{"utterance": "jaki jest dzień trzynastego grudnia", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "trzynastego grudnia"}, "split": "test"}
{"utterance": "w jaki dzień wypada drugi przyszłego miesiąca", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy da się zamówić na wynos w papa john's", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "papa john's"}, "split": "test"}
{"utterance": "olly która godzina jest w tym mieście", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "tym mieście"}, "split": "test"}
{"utterance": "proszę włącz ekspres do kawy w zrób trochę kawy", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "ekspres do kawy"}, "split": "test"}
{"utterance": "olly pokaż mi moje alarmy", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "proszę pokaż mi w porannych wiadomościach artykuły związane z pogodą", "expected_intent": "news:news_query", "expected_slots": {"media_type": "porannych wiadomościach", "news_topic": "pogodą"}, "split": "test"}
{"utterance": "aktualna pogoda", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy są jakieś nowe wiadomości na temat wyborów", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "wyborów"}, "split": "test"}
{"utterance": "proszę włącz odkurzacz", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "odkurzacz"}, "split": "test"}
{"utterance": "jasność na dziewięćdziesiąt proceent", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"change_amount": "dziewięćdziesiąt proceent"}, "split": "test"}
{"utterance": "powiedz czy subway ma dostawy", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "subway"}, "split": "test"}
{"utterance": "powiedz mi jaka jest dzisiaj data", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "tygodniowa prognoza pogody", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "jakie są wiadomości na stronie internetowej tvn dwadzieścia cztery", "expected_intent": "news:news_query", "expected_slots": {"media_type": "tvn dwadzieścia cztery"}, "split": "test"}
{"utterance": "która jest godzina w austin", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "austin"}, "split": "test"}
{"utterance": "graj atmosphere następne", "expected_intent": "play:play_music", "expected_slots": {"song_name": "atmosphere"}, "split": "test"}
{"utterance": "czy jest alarm na dziesiątą rano", "expected_intent": "alarm:alarm_query", "expected_slots": {"time": "dziesiątą rano"}, "split": "test"}
{"utterance": "włącz robota odkurzającego", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "robota odkurzającego"}, "split": "test"}
{"utterance": "włącz odkurzacz", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "odkurzacz"}, "split": "test"}
{"utterance": "proszę odtwórz piosenkę bruno marsa", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "bruno marsa"}, "split": "test"}
{"utterance": "wyłącz światła w biurze", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "biurze"}, "split": "test"}
{"utterance": "proszę zmień kolor światła na czerwony", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "czerwony"}, "split": "test"}
{"utterance": "usuń alarm", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "usuń alarm", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "proszę podaj mi wiadomości związane z giełdą", "expected_intent": "qa:qa_stock", "expected_slots": {"news_topic": "giełdą"}, "split": "test"}
{"utterance": "puść piosenki zespołu the beatles", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "the beatles"}, "split": "test"}
{"utterance": "czy możesz podkręcić światła proszę", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "odzyskaj światło", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "czy giuseppe ma ofertę na wynos", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "giuseppe"}, "split": "test"}
{"utterance": "weź co się da w giuseppe", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "giuseppe"}, "split": "test"}
{"utterance": "nie znoszę tej piosenki", "expected_intent": "music:music_dislikeness", "expected_slots": {}, "split": "test"}
{"utterance": "ja uwielbiam tę piosenkę", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "chcę posłuchać tą piosenkę ponownie", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "podaj mi temperaturę", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "temperaturę"}, "split": "test"}
{"utterance": "poproszę artykuły z pierwszych stron gazet", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "co nowego w wiadomościach", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "zmień mój jasny kolor na niebieski i wyłącz światło w kuchni", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "niebieski", "house_place": "w kuchni"}, "split": "test"}
{"utterance": "jakie są informacje z nowego źródła", "expected_intent": "news:news_query", "expected_slots": {"media_type": "nowego źródła"}, "split": "test"}
{"utterance": "wyłącz gniazdko", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "czas na niezdrowe żarcie", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "niezdrowe żarcie"}, "split": "test"}
{"utterance": "która jest godzina w strefie pacyficznej", "expected_intent": "datetime:datetime_query", "expected_slots": {"time_zone": "pacyficznej"}, "split": "test"}
{"utterance": "jaka jest pogoda w łańcucie", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "łańcucie"}, "split": "test"}
{"utterance": "wyłącz te światła", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "pokaż mi aktualne wydarzenia", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "olly włącz wiadomości", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "nie graj tej piosenki ponownie", "expected_intent": "music:music_dislikeness", "expected_slots": {}, "split": "test"}
{"utterance": "uwielbiam tę muzykę czy możesz ją zapisać do mojej playlisty tanecznej i zapamiętać że ją lubię", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "graj moją ulubioną piosenkę z zeszłego roku", "expected_intent": "play:play_music", "expected_slots": {"date": "zeszłego roku"}, "split": "test"}
{"utterance": "graj coś z albumu zabawa krzysztofa zalewskiego", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "krzysztofa zalewskiego"}, "split": "test"}
{"utterance": "która jest teraz godzina czasu wschodniego", "expected_intent": "datetime:datetime_query", "expected_slots": {"time_zone": "wschodniego"}, "split": "test"}
{"utterance": "graj mi losowe piosenki z mojej playlisty", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "ile tornad było w tym miesiącu", "expected_intent": "general:general_quirky", "expected_slots": {"news_topic": "tornad", "date": "tym miesiącu"}, "split": "test"}
{"utterance": "olly ile tornad było w tym miesiącu", "expected_intent": "general:general_quirky", "expected_slots": {"news_topic": "tornad", "date": "w tym miesiącu"}, "split": "test"}
{"utterance": "zrób mi filiżankę kawy z kremem o smaku solonego karmelu", "expected_intent": "iot:iot_coffee", "expected_slots": {"coffee_type": "kremem o smaku solonego karmelu"}, "split": "test"}
{"utterance": "graj utwór pierwszy z mojej playlisty david bowie", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "david bowie"}, "split": "test"}
{"utterance": "czy mam jakieś alarmy ustawione jutro na szóstą rano", "expected_intent": "alarm:alarm_query", "expected_slots": {"date": "jutro", "time": "szóstą"}, "split": "test"}
{"utterance": "pokaż moje alarmy które ustawiłem", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "wyłącz światła w mojej sypialni", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "sypialni"}, "split": "test"}
{"utterance": "graj playlistę muzyczną", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "wyłącz głośniki", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "w którym roku ta piosenka została wydana", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "zatrzymaj zacznij sok", "expected_intent": "iot:iot_wemo_on", "expected_slots": {}, "split": "test"}
{"utterance": "oceń na pięć", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "hey olly czy możesz mi zrobić kremową kawę", "expected_intent": "iot:iot_coffee", "expected_slots": {"coffee_type": "kremową"}, "split": "test"}
{"utterance": "proszę zapamiętaj że lubię jazz i nie znoszę disco", "expected_intent": "music:music_likeness", "expected_slots": {"music_genre": "jazz", "place_name": "disco"}, "split": "test"}
{"utterance": "graj czerwony jak cegła dżemu", "expected_intent": "play:play_music", "expected_slots": {"song_name": "czerwony jak cegła", "artist_name": "dżemu"}, "split": "test"}
{"utterance": "streamuj poker face autorstwa lady gaga", "expected_intent": "play:play_music", "expected_slots": {"song_name": "poker face", "artist_name": "lady gaga"}, "split": "test"}
{"utterance": "dlatego przypomnij mi żebym coś zrobił", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "ustaw nowy alarm na ten czas", "expected_intent": "alarm:alarm_set", "expected_slots": {}, "split": "test"}
{"utterance": "jaki jest aktualny stan śledztwa w sprawie związków trumpa z rosją", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "śledztwa w sprawie związków trumpa", "place_name": "rosją"}, "split": "test"}
{"utterance": "chce słabsze światło", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "którego dnia wypada boże narodzenie w tym roku", "expected_intent": "datetime:datetime_query", "expected_slots": {"event_name": "boże narodzenie", "date": "tym roku"}, "split": "test"}
{"utterance": "czy mamy się spodziewać deszczu po południu", "expected_intent": "weather:weather_query", "expected_slots": {"timeofday": "po południu"}, "split": "test"}
{"utterance": "graj muzykę reggae", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "reggae"}, "split": "test"}
{"utterance": "olly czy shibaru sushi ma dowozy", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "shibaru sushi"}, "split": "test"}
{"utterance": "zmniejsz światła", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "czy najbliższa domino pizza ma dostawy", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "domino pizza"}, "split": "test"}
{"utterance": "wyłącz wtyczkę wemo", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "wtyczkę wemo"}, "split": "test"}
{"utterance": "jaka jest pogoda w tym tygodniu dla ustki", "expected_intent": "weather:weather_query", "expected_slots": {"date": "w tym tygodniu", "place_name": "ustki"}, "split": "test"}
{"utterance": "jaka jest prognoza na tydzień", "expected_intent": "weather:weather_query", "expected_slots": {"date": "tydzień"}, "split": "test"}
{"utterance": "proszę włącz mój dzbanek do kawy", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "dzbanek do kawy"}, "split": "test"}
{"utterance": "proszę zrób mi filiżankę kawy", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "proszę włącz mój dzbanek do kawy", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "dzbanek do kawy"}, "split": "test"}
{"utterance": "wyłącz całkowicie wtyczkę", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "chcę obejrzeć wiadomości", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "chce usłyszeć żart", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "raport pogodowy za zeszły tydzień", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "podaj pogodę dla rewala", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "rewala"}, "split": "test"}
{"utterance": "gdzie jest samochód", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "jaka będzie data w przyszły wtorek", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "wtorek"}, "split": "test"}
{"utterance": "puk puk", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "żadnych świateł w kuchni", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "w kuchni"}, "split": "test"}
{"utterance": "przykręć światła do poziomu średniego", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "zrób tutaj czerwone światło", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "czerwone"}, "split": "test"}
{"utterance": "proszę nastaw mój alarm piątą po południu", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "piątą po południu"}, "split": "test"}
{"utterance": "puść eltona johna wersję koncertową", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "eltona johna"}, "split": "test"}
{"utterance": "graj najpopularniejszą piosenkę eltona johna", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "eltona johna"}, "split": "test"}
{"utterance": "jaka jest prognoza pogody na dziesięć dni", "expected_intent": "weather:weather_query", "expected_slots": {"date": "na dziesięć dni"}, "split": "test"}
{"utterance": "czy zapowiadają deszcz lub śnieg na ten tydzień", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "deszcz lub śnieg", "date": "ten tydzień"}, "split": "test"}
{"utterance": "czy będzie ładna pogoda w ten weekend", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "ładna", "date": "ten weekend"}, "split": "test"}
{"utterance": "czy wiesz kiedy mniej więcej ma przyjść moje zamówienie", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy możesz nastawić ekspres do kawy żeby zrobił mi kawę o siódmej rano", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "ekspres do kawy", "time": "o siódmej rano"}, "split": "test"}
{"utterance": "ile jest stopni na zewnątrz", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "stopni"}, "split": "test"}
{"utterance": "nowa muzyka pop", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "pop"}, "split": "test"}
{"utterance": "najlepsza muzyka rap", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rap"}, "split": "test"}
{"utterance": "usuń najnowszy alarm", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "czy dwudziesty drugi wypada w środę", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "dwudziesty drugi"}, "split": "test"}
{"utterance": "czy jest dziesiąty", "expected_intent": "datetime:datetime_query", "expected_slots": {"time": "dziesiąty"}, "split": "test"}
{"utterance": "czy na sobotę jest zapowiadany deszcz", "expected_intent": "weather:weather_query", "expected_slots": {"date": "sobotę", "weather_descriptor": "deszcz"}, "split": "test"}
{"utterance": "cisza", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "zmniejsz głośność muzyki", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "graj najpopularniejszą piosenkę danego artysty", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "mow ciszej", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "graj proszę teraz muzykę", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "posłuchajmy mojej najczęściej granej listy piosenek", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest pogoda w katowicach", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "katowicach"}, "split": "test"}
{"utterance": "czy zapowiadają śnieg", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "śnieg"}, "split": "test"}
{"utterance": "graj tylko moją listę", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest szansa na opady dzisiaj", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "opady", "date": "dzisiaj"}, "split": "test"}
{"utterance": "proszę włącz moje światła na balkonie", "expected_intent": "iot:iot_hue_lighton", "expected_slots": {"house_place": "na balkonie"}, "split": "test"}
{"utterance": "prosze zmień strefę czasową na kanadyjską", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "kanadyjską"}, "split": "test"}
{"utterance": "proszę zagraj shake it off autorstwa taylor swift", "expected_intent": "play:play_music", "expected_slots": {"song_name": "shake it off", "artist_name": "taylor swift"}, "split": "test"}
{"utterance": "zmień światła w salonie na zielone i czerwone", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "salonie", "color_type": "zielone i czerwone"}, "split": "test"}
{"utterance": "chcę żeby światła byly troche bardziej czerwonawe", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "czerwonawe"}, "split": "test"}
{"utterance": "chcę posłuchać jakąś muzę rockową", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rockową"}, "split": "test"}
{"utterance": "włącz jakiś utwór led zeppelin", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "led zeppelin"}, "split": "test"}
{"utterance": "czy możesz włączyć playlista miłosna", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "playlista miłosna"}, "split": "test"}
{"utterance": "graj one more time", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "która jest godzina w paryżu", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "paryżu"}, "split": "test"}
{"utterance": "nastaw mój ekspres do kawy", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "ekspres do kawy"}, "split": "test"}
{"utterance": "proszę wyłącz światła na patio", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "patio"}, "split": "test"}
{"utterance": "jaka jest najnowsza wiadomość fox news", "expected_intent": "news:news_query", "expected_slots": {"media_type": "fox news"}, "split": "test"}
{"utterance": "wyłącz dźwięk", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "wycisz się proszę", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest pogoda w pekinie", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "pekinie"}, "split": "test"}
{"utterance": "mow ciszej", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "jaśniej", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "a co z tobą", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "przypomnij mi po dziesięciu minutach", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "po dziesięciu minutach"}, "split": "test"}
{"utterance": "jakie są najnowsze wiadomości z łodzi", "expected_intent": "news:news_query", "expected_slots": {"media_type": "łodzi"}, "split": "test"}
{"utterance": "jakie są najnowsze wiadomości tvn dwadzieścia cztery", "expected_intent": "news:news_query", "expected_slots": {"media_type": "tvn dwadzieścia cztery"}, "split": "test"}
{"utterance": "która godzina jest w pekinie", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "pekinie"}, "split": "test"}
{"utterance": "dziś jest słoneczny dzień prawda", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dziś", "weather_descriptor": "słoneczny"}, "split": "test"}
{"utterance": "co się dzisiaj dzieje na świecie", "expected_intent": "news:news_query", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "wiadomości z tvn", "expected_intent": "news:news_query", "expected_slots": {"media_type": "tvn"}, "split": "test"}
{"utterance": "hey google graj jakąś muzykę jazz dla mnie", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "jazz"}, "split": "test"}
{"utterance": "jak myślisz jaki rodzaj muzyki lubię", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "sprawdź mi godzinę gdzieś", "expected_intent": "datetime:datetime_convert", "expected_slots": {}, "split": "test"}
{"utterance": "czy mogę zamówić dostawę z tej restauracji", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_type": "restauracji"}, "split": "test"}
{"utterance": "chciałbym światła w kuchni w innym kolorze", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "w kuchni"}, "split": "test"}
{"utterance": "olly zapisz wszystkie piosenki których słuchałem więcej niż raz", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "włącz playlistę którą zapisałem jako muzyka rock", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rock"}, "split": "test"}
{"utterance": "potrzebuję nastawić alarm na jutro na piątą trzydzieści rano", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "jutro", "time": "piątą trzydzieści rano"}, "split": "test"}
{"utterance": "chcę alarm na trzecią dzisiaj", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "trzecią", "date": "dzisiaj"}, "split": "test"}
{"utterance": "procent światła", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "olly czy mam nastawione jakieś alarmy na jutro", "expected_intent": "alarm:alarm_query", "expected_slots": {"date": "jutro"}, "split": "test"}
{"utterance": "graj moją playlistę zaczynając od końca", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "zagraj moje hity rap z lat dziewięćdziesiątych", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rap z lat dziewięćdziesiątych"}, "split": "test"}
{"utterance": "chcę posłuchać sanah po tej piosence", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "sanah"}, "split": "test"}
{"utterance": "jaki jest dzisiaj dzień", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "zagraj best friends autorstwa yelawolf", "expected_intent": "play:play_music", "expected_slots": {"song_name": "best friends", "artist_name": "yelawolf"}, "split": "test"}
{"utterance": "włącz światła na czerwony kolor", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "czerwony"}, "split": "test"}
{"utterance": "co to za piosenka", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "znasz tytuł piosenki która teraz leci", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "olly jeśli pojawią się jakieś nowe wiadomości o powodzi czy możesz mnie od razu powiadomić", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "powodzi"}, "split": "test"}
{"utterance": "obudź mnie o ósmej rano", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "ósmej rano"}, "split": "test"}
{"utterance": "podkręć światła", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "pokaż mi alarmy", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "wyłącz inteligentne gniazdko", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "inteligentne gniazdko"}, "split": "test"}
{"utterance": "wyłącz teraz inteligentne gniazdko", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "inteligentne gniazdko"}, "split": "test"}
{"utterance": "graj playlistę pop na youtube", "expected_intent": "play:play_music", "expected_slots": {"media_type": "youtube"}, "split": "test"}
{"utterance": "zagraj moją romantyczną playlistę", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "romantyczną"}, "split": "test"}
{"utterance": "podaj mi raport pogodowy dla białegostoku", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "białegostoku"}, "split": "test"}
{"utterance": "wyłącz światła w łazience", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "w łazience"}, "split": "test"}
{"utterance": "zwolnij ustawienia głośności głośnika", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "wycisz na piętnaście minut", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"time": "piętnaście minut"}, "split": "test"}
{"utterance": "proszę oceń aktualną piosenkę na pięć gwiazdek", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "znajdź informacje o samochodach", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "samochodach"}, "split": "test"}
{"utterance": "proszę usuń alarm ustawiony w dni powszednie o dziewiątej", "expected_intent": "alarm:alarm_remove", "expected_slots": {"date": "dni powszednie", "time": "dziewiątej"}, "split": "test"}
{"utterance": "zgaś te światła", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "chcę zamówić chińskie jedzenie na wynos", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "chińskie", "order_type": "jedzenie na wynos"}, "split": "test"}
{"utterance": "wycisz muzyke", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "wyłącz dzwiek", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "uruchom rumbę", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "rumbę"}, "split": "test"}
{"utterance": "jaką mają teraz pogodę we wrocławiu", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "wrocławiu"}, "split": "test"}
{"utterance": "nastaw moją ulubioną playlistę muzyczną rap", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rap"}, "split": "test"}
{"utterance": "kto śpiewa piosenkę której słucham właśnie teraz", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "jaki jest czas pobudki dla mojego alarmu który ustawiłem na lot w ten weekend", "expected_intent": "alarm:alarm_query", "expected_slots": {"alarm_type": "pobudki", "date": "w ten weekend"}, "split": "test"}
{"utterance": "rozjaśnij oświetlenie", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "lista ustawionych alarmów", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "jakieś aktualne alarmy", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "czytaj to dalej", "expected_intent": "play:play_audiobook", "expected_slots": {}, "split": "test"}
{"utterance": "graj zeszłoroczne hity", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "chcę posłuchać jakiejkolwiek piosenki która otrzymała grammy w tym roku", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "chcę posłuchać muzyki tanecznej i country", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "tanecznej i country"}, "split": "test"}
{"utterance": "to jest dobra muza proszę zanotuj plik", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest temperatura", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "temperatura"}, "split": "test"}
{"utterance": "powiedz mi godzinę", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "rap", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rap"}, "split": "test"}
{"utterance": "proszę zagraj shape of you autorstwa eda sheerana", "expected_intent": "play:play_music", "expected_slots": {"song_name": "shape of you", "artist_name": "eda sheerana"}, "split": "test"}
{"utterance": "proszę wybierz pierwszą piosenkę z biblioteka itunes", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "biblioteka itunes"}, "split": "test"}
{"utterance": "ustaw budzik na szóstą rano", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "szóstą rano"}, "split": "test"}
{"utterance": "czy możesz wyłączyć światła", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "olly w jaki dzień tygodnia jest halloween", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "dzień tygodnia", "event_name": "halloween"}, "split": "test"}
{"utterance": "co się wydarzyło w walking dead", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "walking dead"}, "split": "test"}
{"utterance": "usuńmy kurz", "expected_intent": "iot:iot_cleaning", "expected_slots": {}, "split": "test"}
{"utterance": "pozbądź się obecnych alarmów", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "co w wiadomościach", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "proszę wyłącz zasilanie", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "wyłącz prąd", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "graj annuszka", "expected_intent": "play:play_music", "expected_slots": {"song_name": "annuszka"}, "split": "test"}
{"utterance": "graj utwór którego słucham najczęściej", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "włącz odkurzacz", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "odkurzacz"}, "split": "test"}
{"utterance": "dowiedz się czy stół i wół oferuje dostawę", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "stół i wół"}, "split": "test"}
{"utterance": "chcę usłyszeć trochę muzyki rapu", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rapu"}, "split": "test"}
{"utterance": "jaki dzień jest piątego", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "piątego"}, "split": "test"}
{"utterance": "wyłącz światła w kuchni", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "kuchni"}, "split": "test"}
{"utterance": "chcę ustawić alarm kiedy jadę jutro do domu żeby pamiętać żeby wstąpić do sklepu i kupić jedzenie", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "jutro", "event_name": "wstąpić do sklepu i kupić jedzenie"}, "split": "test"}
{"utterance": "zrób kawę", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "niezły tekst", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "wyłącz światło nad głową", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "zwiększ głośność w moich sluchawkach", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "jaka będzie dziś pogoda w katowicach", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dziś", "place_name": "katowicach"}, "split": "test"}
{"utterance": "zamień obecny czas g. m. t. na czas e. s. t.", "expected_intent": "datetime:datetime_convert", "expected_slots": {"time_zone": "e. s. t."}, "split": "test"}
{"utterance": "graj moją playlistę losowo proszę", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "playlistę losowo"}, "split": "test"}
{"utterance": "chcę znać wszystkie najnowsze informacje o pęknięciu tamy w kaliforni", "expected_intent": "news:news_query", "expected_slots": {"place_name": "w kaliforni"}, "split": "test"}
{"utterance": "na którą ustawiony jest alarm", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "gdzie mogę dostać szota tequili i jakieś meksykańskie żarcie", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"food_type": "meksykańskie"}, "split": "test"}
{"utterance": "czy mój alarm jest ustawiony na lekcje tańca", "expected_intent": "alarm:alarm_query", "expected_slots": {"event_name": "lekcje tańca"}, "split": "test"}
{"utterance": "powiedz mi jaka jest szansa procentowa na opady dzisiaj w suwałkach", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "opady", "date": "dzisiaj", "place_name": "suwałkach"}, "split": "test"}
{"utterance": "czy możesz grać sanah", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "sanah"}, "split": "test"}
{"utterance": "czy możesz sprawdzić czy greenway przyjmuje zamówienia z dowozem", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "greenway", "order_type": "dowozem"}, "split": "test"}
{"utterance": "jakie alarmy dzisiaj nastawiłem", "expected_intent": "alarm:alarm_query", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "proszę graj piosenkę ale jazz", "expected_intent": "play:play_music", "expected_slots": {"song_name": "ale jazz"}, "split": "test"}
{"utterance": "wyłącz moje wifi", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "zmniejsz głośność do trzydziestu pięciu procent", "expected_intent": "audio:audio_volume_other", "expected_slots": {"change_amount": "do trzydziestu pięciu procent"}, "split": "test"}
{"utterance": "zmień poziom głośności do maksimum", "expected_intent": "audio:audio_volume_other", "expected_slots": {"change_amount": "do maksimum"}, "split": "test"}
{"utterance": "sprawdź pogodę w giżycku", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "giżycku"}, "split": "test"}
{"utterance": "wyłącz światła w kuchni", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "w kuchni"}, "split": "test"}
{"utterance": "włącz odkurzacz", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "odkurzacz"}, "split": "test"}
{"utterance": "hey olly zmień ustawienia świateł", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "podaj mi najnowsze nagłówki polityczne na całym świecie", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "polityczne", "place_name": "świecie"}, "split": "test"}
{"utterance": "czy są jakieś informacje o prezydenturze", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "prezydenturze"}, "split": "test"}
{"utterance": "aktualny czas w nowym jorku", "expected_intent": "datetime:datetime_query", "expected_slots": {"time_zone": "czas", "place_name": "w nowym jorku"}, "split": "test"}
{"utterance": "hey olly która jest godzina", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "hey siri która godzina", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "jak nazwałbyś ten typ muzyki który właśnie leci", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "włącz wemo", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "wemo"}, "split": "test"}
{"utterance": "chcę usłyszeć ale jazz autorstwa sanah", "expected_intent": "play:play_music", "expected_slots": {"song_name": "ale jazz", "artist_name": "sanah"}, "split": "test"}
{"utterance": "czy będę mogła skosić trawę dziś wieczorem", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "skosić trawę", "timeofday": "dziś wieczorem"}, "split": "test"}
{"utterance": "opowiedz mi najzabawniejszy dowcip jaki kiedykolwiek opowiedziano", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "najzabawniejszy"}, "split": "test"}
{"utterance": "chciałbym usłyszeć jakieś dobre zabawne żarty", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "dobre zabawne"}, "split": "test"}
{"utterance": "kiedy moje chińskie żarcie będzie dostarczone", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"food_type": "chińskie"}, "split": "test"}
{"utterance": "czy na następny tydzień zapowiadają deszcz", "expected_intent": "weather:weather_query", "expected_slots": {"date": "następny tydzień", "weather_descriptor": "deszcz"}, "split": "test"}
{"utterance": "puść takie tango budki suflera", "expected_intent": "play:play_music", "expected_slots": {"song_name": "takie tango", "artist_name": "budki suflera"}, "split": "test"}
{"utterance": "czy jest już popołudnie", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "włącz rumbę", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "rumbę"}, "split": "test"}
{"utterance": "proszę przestać mówić", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "olly włącz ekspres do kawy i zrób kawy", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "ekspres do kawy"}, "split": "test"}
{"utterance": "zmień wszystkie światła w domu na niebieskie", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "niebieskie"}, "split": "test"}
{"utterance": "domowe światła niebieskie", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "niebieskie"}, "split": "test"}
{"utterance": "czy możesz nastawić wszystkie światła w domu na niebieskie", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "w domu", "color_type": "niebieskie"}, "split": "test"}
{"utterance": "jaki jest aktualny czas w strefie wschodniej", "expected_intent": "datetime:datetime_query", "expected_slots": {"time_zone": "wschodniej"}, "split": "test"}
{"utterance": "która godzina jest na zachodzie europy", "expected_intent": "datetime:datetime_query", "expected_slots": {"time_zone": "zachodzie", "place_name": "europy"}, "split": "test"}
{"utterance": "jakie są najnowsze wiadomości", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest dzisiejsza pogoda", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dzisiejsza"}, "split": "test"}
{"utterance": "przejdź do następnej piosenki na liście", "expected_intent": "music:music_settings", "expected_slots": {"player_setting": "przejdź"}, "split": "test"}
{"utterance": "przygotuj teraz kawę", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "moja kawa jest zimna proszę zrób więcej kawy", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "zagraj piosenkę ale jazz", "expected_intent": "play:play_music", "expected_slots": {"song_name": "ale jazz"}, "split": "test"}
{"utterance": "zwiększ jasność w tym pokoju", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "w tym pokoju"}, "split": "test"}
{"utterance": "czy powinienem zabrać kurtkę dziś wieczorem", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "kurtkę", "timeofday": "dziś"}, "split": "test"}
{"utterance": "zrób światło tutaj bardziej czerwone", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "bardziej czerwone"}, "split": "test"}
{"utterance": "graj piosenkę i ciebie też bardzo autorstwa męskie granie", "expected_intent": "play:play_music", "expected_slots": {"song_name": "i ciebie też bardzo", "artist_name": "męskie granie"}, "split": "test"}
{"utterance": "za ile godzin będzie północ w londynie w anglii", "expected_intent": "datetime:datetime_query", "expected_slots": {"time": "północ", "place_name": "londynie w anglii"}, "split": "test"}
{"utterance": "czy będzie mniej niż dziesięć stopni w lublinie", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "mniej niż dziesięć stopni", "place_name": "lublinie"}, "split": "test"}
{"utterance": "czy będzie padać jutro w łebie", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "padać", "date": "jutro", "place_name": "łebie"}, "split": "test"}
{"utterance": "muszę wstać jutro o dziesiątej", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "jutro", "time": "dziesiątej"}, "split": "test"}
{"utterance": "jak wygląda moja tablica facebooka", "expected_intent": "social:social_query", "expected_slots": {"media_type": "facebooka"}, "split": "test"}
{"utterance": "która jest godzina w chinach", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "chinach"}, "split": "test"}
{"utterance": "wyłącz światła całkowicie", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "wstrzymaj działanie świateł", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest pogoda tu gdzie jestem", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "daj mi jakieś dobre dźwięki", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "która godzina jest w paryżu", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "paryżu"}, "split": "test"}
{"utterance": "przejrzyj wszystkie alarmy", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "jak jest dziś na dworzu", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dziś"}, "split": "test"}
{"utterance": "jaka jest aktualnie pogoda", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "jaka będzie pogoda jutro", "expected_intent": "weather:weather_query", "expected_slots": {"date": "jutro"}, "split": "test"}
{"utterance": "jakie są nagłówki na tvn dwadzieścia cztery", "expected_intent": "news:news_query", "expected_slots": {"media_type": "tvn dwadzieścia cztery"}, "split": "test"}
{"utterance": "jakie są popularne artykuły na temat czasów w gazecie wyborczej", "expected_intent": "news:news_query", "expected_slots": {"media_type": "w gazecie wyborczej"}, "split": "test"}
{"utterance": "czy musze dzisiaj zabrać parasol", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "jaka jest pogoda w kielcach", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "kielcach"}, "split": "test"}
{"utterance": "dowiedz się co to za piosenka", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "jaka kurtkę powinnam założyć", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "kurtkę"}, "split": "test"}
{"utterance": "jaka jest pogoda we władysławowie", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "władysławowie"}, "split": "test"}
{"utterance": "zrób mi kawy o trzeciej", "expected_intent": "iot:iot_coffee", "expected_slots": {"time": "o trzeciej"}, "split": "test"}
{"utterance": "włącz ekspres do kawy o trzeciej", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "ekspres do kawy", "time": "o trzeciej"}, "split": "test"}
{"utterance": "czy będzie padać o trzynastej dzisiaj", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "będzie padać", "time": "trzynastej", "date": "dzisiaj"}, "split": "test"}
{"utterance": "graj piosenki", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "czy sfinks wydaje posiłki tylko na miejscu", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "sfinks"}, "split": "test"}
{"utterance": "ile sobót jest w marcu", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "sobót jest w marcu"}, "split": "test"}
{"utterance": "graj następną piosenkę", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "czy będę musiał odśnieżyć moją drogę dziś rano", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "drogę", "timeofday": "rano"}, "split": "test"}
{"utterance": "podaj mi prognozę pogody w tym tygodniu", "expected_intent": "weather:weather_query", "expected_slots": {"date": "w tym tygodniu"}, "split": "test"}
{"utterance": "czy będzie padać w czwartek", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "padać", "date": "czwartek"}, "split": "test"}
{"utterance": "jakie są najnowsze informacje o donaldzie trumpie", "expected_intent": "news:news_query", "expected_slots": {"person": "donaldzie trumpie"}, "split": "test"}
{"utterance": "jakie są najnowsze statystyki przestępstw w mojej okolicy", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "statystyki przestępstw"}, "split": "test"}
{"utterance": "co dzisiaj zamieścił vogue", "expected_intent": "news:news_query", "expected_slots": {"date": "dzisiaj", "media_type": "vogue"}, "split": "test"}
{"utterance": "która godzina jest etraz w londynie", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "londynie"}, "split": "test"}
{"utterance": "olly zmień kolor świateł", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "olly jaka jest prognoza pogody na dzisiaj", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "zamów dwunastoczęściowy kubełek skrzydełek w sosie miodowo-musztardowym z przyprawami bez frytek i sprite", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "kubełek skrzydełek w sosie miodowo-musztardowym", "drink_type": "sprite"}, "split": "test"}
{"utterance": "włącz playlista na spacery z psem", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "playlista na spacery z psem"}, "split": "test"}
{"utterance": "olly lubię muzykę sigur ros", "expected_intent": "music:music_likeness", "expected_slots": {"artist_name": "sigur ros"}, "split": "test"}
{"utterance": "czy możesz zrobić kawy", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "jaka to piosenka", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "przeczytaj mi najnowsze nagłówki wyborcza pl", "expected_intent": "news:news_query", "expected_slots": {"media_type": "wyborcza pl"}, "split": "test"}
{"utterance": "która jest godzina w chicago", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "chicago"}, "split": "test"}
{"utterance": "puść moje ulubione", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "ustaw powiadomienie na mecz", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "mecz"}, "split": "test"}
{"utterance": "powiadom mnie że jest siedemnasta", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "siedemnasta"}, "split": "test"}
{"utterance": "znajdź informacje o dzisiejszych akcjach", "expected_intent": "news:news_query", "expected_slots": {"date": "dzisiejszych"}, "split": "test"}
{"utterance": "czy temperatura będzie jutro powyżej czterech stopni", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "powyżej czterech stopni", "date": "jutro"}, "split": "test"}
{"utterance": "włącz inteligentne gniazdko", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "inteligentne gniazdko"}, "split": "test"}
{"utterance": "włącz nowe inteligentne gniazdko", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "inteligentne gniazdko"}, "split": "test"}
{"utterance": "zmień ustawienia głośności na negatywne alexa", "expected_intent": "audio:audio_volume_other", "expected_slots": {}, "split": "test"}
{"utterance": "nastaw głośniki na wyciszone", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "nastaw alarm na szóstą trzydzieści rano", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "szóstą trzydzieści rano"}, "split": "test"}
{"utterance": "nie mow", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "alexa wiadomości z tvn", "expected_intent": "news:news_query", "expected_slots": {"media_type": "tvn"}, "split": "test"}
{"utterance": "aktualny czas w", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "naprawdę lubię tę piosenkę", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "to najlepszy zespół na świecie", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "proszę wywietl wszystkie moje alarmy", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy mam założyć sandały czy pełne buty ze skarpetkami", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "sandały czy pełne buty"}, "split": "test"}
{"utterance": "czy wiesz jaka będzie pogoda", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "odtwórz piosenkę autorstwa van halen", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "van halen"}, "split": "test"}
{"utterance": "włącz moje sluchawki na google", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "którego dnia wypada halloween w tym roku", "expected_intent": "datetime:datetime_query", "expected_slots": {"event_name": "halloween", "date": "w tym roku"}, "split": "test"}
{"utterance": "nie budź mnie jutro", "expected_intent": "alarm:alarm_remove", "expected_slots": {"date": "jutro"}, "split": "test"}
{"utterance": "czy będzie padał deszcz w poniedziałek", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "padał", "date": "poniedziałek"}, "split": "test"}
{"utterance": "czy są jakieś informacje o meksykańsko-amerykańskim murze granicznym", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "meksykańsko-amerykańskim murze granicznym"}, "split": "test"}
{"utterance": "pokaż mi godzinę w tej strefie czasowej", "expected_intent": "datetime:datetime_query", "expected_slots": {"time_zone": "w tej strefie czasowej"}, "split": "test"}
{"utterance": "proszę pokaż mi jakie alarmy są włączone", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "którego dnia wypadają moje urodziny w tym roku dwudziestego siódmego czerwca", "expected_intent": "datetime:datetime_query", "expected_slots": {"event_name": "urodziny", "date": "dwudziestego siódmego czerwca"}, "split": "test"}
{"utterance": "czy potrzebna mi kurtka", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "kurtka"}, "split": "test"}
{"utterance": "chcę codziennie kawę", "expected_intent": "iot:iot_coffee", "expected_slots": {"date": "codziennie"}, "split": "test"}
{"utterance": "proszę włącz gniazdko wemo", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "gniazdko wemo"}, "split": "test"}
{"utterance": "zmień światła na inny odcień", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "pamiętam jak zakochałem się w tej piosence", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "która jest godzina w innym mieście", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "innym mieście"}, "split": "test"}
{"utterance": "zrób światła różowe", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "różowe"}, "split": "test"}
{"utterance": "podkręć głośność głośnika", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "wyczysc dane", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "olly czy są jakieś wiadomości", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "odtwórz całą muzykę grzegorza cugowskiego", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "grzegorza cugowskiego"}, "split": "test"}
{"utterance": "ile godzin jest między moim miejscem pobytu a nowym jorkiem", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "nowym jorkiem"}, "split": "test"}
{"utterance": "obudź mnie za pół godziny", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "za pół godziny"}, "split": "test"}
{"utterance": "czy mój alarm jest ustawiony", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "wyłącz dźwięk", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "jak jest na zewnątrz", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "wprowadź sugestie piosenek", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "szukaj aby znaleźć aktualny czas lokalny i strefę czasową", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "która jest godzina w mieście", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "mieście"}, "split": "test"}
{"utterance": "zapisz moją opinię o piosence adele", "expected_intent": "music:music_likeness", "expected_slots": {"artist_name": "adele"}, "split": "test"}
{"utterance": "ustaw powiadomienie o katastrofach pogodowych w usa", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "katastrofach pogodowych", "place_name": "usa"}, "split": "test"}
{"utterance": "proszę przyciemnij światła nad głową", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {"house_place": "nad głową"}, "split": "test"}
{"utterance": "puść piosenki z męskiego grania", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "męskiego grania"}, "split": "test"}
{"utterance": "czy znasz ten żart", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "temperatura na zewnątrz", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "temperatura"}, "split": "test"}
{"utterance": "wyłącz mój pierwszy alarm", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "zagraj moje ulubione", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "moje ulubione"}, "split": "test"}
{"utterance": "włącz alarm na trzecią trzydzieści po południu dzisiaj", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "trzecią trzydzieści po południu", "date": "dzisiaj"}, "split": "test"}
{"utterance": "czy teraz będzie padać", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "padać"}, "split": "test"}
{"utterance": "kiedy zamówienie z pizzerii ma przyjechać", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "pizzerii"}, "split": "test"}
{"utterance": "chciałbym wiedzieć która jest teraz godzina", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "wiadomości na temat rozbitego pociągu", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "rozbitego pociągu"}, "split": "test"}
{"utterance": "chciałbym zebyś zobaczyła", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "jaki jest dzień tygodnia dwudziesty trzeci tego miesiąca", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "dwudziesty trzeci tego miesiąca"}, "split": "test"}
{"utterance": "muzyka sanah", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "sanah"}, "split": "test"}
{"utterance": "chcesz wyłączyć wtyczkę wemo", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "wtyczkę wemo"}, "split": "test"}
{"utterance": "kto wygrał wybory prezydenckie w tym roku", "expected_intent": "qa:qa_factoid", "expected_slots": {"news_topic": "wybory prezydenckie", "date": "w tym roku"}, "split": "test"}
{"utterance": "olly zagra i can't feel my face", "expected_intent": "play:play_music", "expected_slots": {"song_name": "i can't feel my face"}, "split": "test"}
{"utterance": "jaki jest najzabawniejszy dowcip w historii", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "najzabawniejszy"}, "split": "test"}
{"utterance": "tak chcę zachować opinie o tej piosence i kto wspiera tę piosenkę", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "przygotuj mi filiżankę kawy", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "wyłącz gniazdka", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "wycisz głośnik", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "dodaj tę piosenkę jako następną piosenkę w kolejce", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "na jakie godziny są ustawione alarmy", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy będe potrzebował parasol w tym tygodniu", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "parasol", "date": "w tym tygodniu"}, "split": "test"}
{"utterance": "zrób moją zwykłą", "expected_intent": "iot:iot_coffee", "expected_slots": {"coffee_type": "zwykłą"}, "split": "test"}
{"utterance": "zrób jaśniej w pokoju", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "w pokoju"}, "split": "test"}
{"utterance": "podaj mi najnowsze wiadomości o spadkach i wzrostach na giełdzie", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "spadkach i wzrostach na giełdzie"}, "split": "test"}
{"utterance": "czy możesz zrobić trochę kawy", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "ustaw naturalne światła", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "kiedy jest następny piątek trzynastego", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "piątek trzynastego"}, "split": "test"}
{"utterance": "jak zimno jest dziś", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "zimno", "date": "dziś"}, "split": "test"}
{"utterance": "jaka jest pogoda na ten tydzień", "expected_intent": "weather:weather_query", "expected_slots": {"date": "ten tydzień"}, "split": "test"}
{"utterance": "jaka jest teraz pogoda", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "ustaw mój alarm w południe", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "w południe"}, "split": "test"}
{"utterance": "alexa przykręć światła w domu", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {"house_place": "domu"}, "split": "test"}
{"utterance": "wyłącz wszystkie urządzenia", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "nastaw nowy alarm", "expected_intent": "alarm:alarm_set", "expected_slots": {}, "split": "test"}
{"utterance": "proszę zagraj dla mnie piosenki z lat osiemdziesiątych", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "lat osiemdziesiątych"}, "split": "test"}
{"utterance": "jaka była pogoda na tydzień", "expected_intent": "weather:weather_query", "expected_slots": {"time": "tydzień"}, "split": "test"}
{"utterance": "nowy alarm na szóstą rano", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "szóstą"}, "split": "test"}
{"utterance": "jaka jest prognoza na sobotę", "expected_intent": "weather:weather_query", "expected_slots": {"date": "sobotę"}, "split": "test"}
{"utterance": "olly anuluj wszystkie alarmy przed treningami piłki", "expected_intent": "alarm:alarm_remove", "expected_slots": {"alarm_type": "przed treningami piłki"}, "split": "test"}
{"utterance": "nie chcę żadnych alarmów", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "ale jazz", "expected_intent": "play:play_music", "expected_slots": {"song_name": "ale jazz"}, "split": "test"}
{"utterance": "sprawdź czy domyślny alarm jest ustawiony", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "oto prawda o posiłkach na kółkach w czyimś budżecie", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "potwierdź bilet na podróż do niemiec", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "niemiec"}, "split": "test"}
{"utterance": "proszę powiedz która jest godzina w katowicach", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "katowicach"}, "split": "test"}
{"utterance": "znajdź piosenki z mojej playlisty muzyka imprezowa", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "muzyka imprezowa"}, "split": "test"}
{"utterance": "nastaw ekspres do kawy", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "ekspres do kawy"}, "split": "test"}
{"utterance": "proszę pomiń dwie piosenki", "expected_intent": "music:music_settings", "expected_slots": {"player_setting": "pomiń"}, "split": "test"}
{"utterance": "wyłącz światła w salonie", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "salonie"}, "split": "test"}
{"utterance": "olly wyłącz światła w salonie", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "salonie"}, "split": "test"}
{"utterance": "proszę graj ostatnią piosenkę z albumu abbas", "expected_intent": "play:play_music", "expected_slots": {"music_album": "abbas"}, "split": "test"}
{"utterance": "czy możesz zagrać piosenkę artystki madonna", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "madonna"}, "split": "test"}
{"utterance": "piosenka micheala jacksona", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "micheala jacksona"}, "split": "test"}
{"utterance": "zmniejsz intensywność światła", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "jakiej pogody moge się spodziewać w tym tygodniu", "expected_intent": "weather:weather_query", "expected_slots": {"date": "w tym tygodniu"}, "split": "test"}
{"utterance": "chcę wiedzieć o brexicie", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "brexicie"}, "split": "test"}
{"utterance": "oznacz tę piosenkę pięcioma gwiazdkami", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "dodaj moją pozytywną opinię do tego utworu", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "przygaś moje światła do niższego poziomu jasności", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "zamień ósmą rano w manili na godzinę w warszawie", "expected_intent": "datetime:datetime_convert", "expected_slots": {"time": "ósmą rano", "place_name": "warszawie"}, "split": "test"}
{"utterance": "zmniejsz głośność", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "wyłącz wibracje głośnika", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "który będzie w najbliższą środę", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "środę"}, "split": "test"}
{"utterance": "ja lubię muzykę", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "siri proszę wyłącz światła w łazience", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "łazience"}, "split": "test"}
{"utterance": "ustaw powiadomienie na wiadomości o środowisku", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "środowisku"}, "split": "test"}
{"utterance": "tytuł piosenki", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "zapisz tę piosenkę w playliście", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "to piosenka shakiry", "expected_intent": "music:music_query", "expected_slots": {"artist_name": "shakiry"}, "split": "test"}
{"utterance": "jakie są teraz najważniejsze wiadomości", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "proszę graj tylko muzykę pop", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "pop"}, "split": "test"}
{"utterance": "proszę graj jedynie smutne piosenki w odtwarzaczu muzyki", "expected_intent": "play:play_music", "expected_slots": {"music_descriptor": "smutne", "device_type": "odtwarzaczu muzyki"}, "split": "test"}
{"utterance": "pokaż wiadomości tvn na temat migrantów", "expected_intent": "news:news_query", "expected_slots": {"media_type": "tvn", "news_topic": "migrantów"}, "split": "test"}
{"utterance": "napraw alarm", "expected_intent": "alarm:alarm_set", "expected_slots": {}, "split": "test"}
{"utterance": "olly podaj popularne wiadomości tvn dwadzieścia cztery", "expected_intent": "news:news_query", "expected_slots": {"media_type": "tvn dwadzieścia cztery"}, "split": "test"}
{"utterance": "podaj mi popularne wiadomości z t. v. n.", "expected_intent": "news:news_query", "expected_slots": {"media_type": "t. v. n."}, "split": "test"}
{"utterance": "jak będzie pogoda dwudziestego marca dwa tysiące siedemnastego roku", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dwudziestego marca dwa tysiące siedemnastego roku"}, "split": "test"}
{"utterance": "czy jest dziś dwudziesty marca", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "dziś dwudziesty marca"}, "split": "test"}
{"utterance": "proszę graj jedynie piosenki elektrycznych gitar", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "elektrycznych gitar"}, "split": "test"}
{"utterance": "pokaż pogodę", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "cześć czy macie dostawę", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "dostawę"}, "split": "test"}
{"utterance": "rock", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rock"}, "split": "test"}
{"utterance": "włącz odkurzacz teraz i posprzątaj w salonie", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "odkurzacz", "house_place": "w salonie"}, "split": "test"}
{"utterance": "różnica czasu między polską a kanadą", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "kanadą"}, "split": "test"}
{"utterance": "różnica czasu między wielką brytanią a u. s. a.", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "u. s. a."}, "split": "test"}
{"utterance": "stan małego ochłodzenia", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "powiadom mnie o czasie proszę", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "zagraj muzykę techno", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "techno"}, "split": "test"}
{"utterance": "olly daj mi ciemniejsze światła", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "uaktualnij do lokalnego czasu", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "nastaw alarm na szóstą rano", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "szóstą rano"}, "split": "test"}
{"utterance": "jakie są najnowsze kontrowersje trumpa", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "kontrowersje trumpa"}, "split": "test"}
{"utterance": "s.", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "proszę wyłącz gniazdko", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "muzyka", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "czy sajgon ma dowozy", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "sajgon", "order_type": "dowozy"}, "split": "test"}
{"utterance": "przeczytaj mi ostatnie nagłówki z gazety wyborczej", "expected_intent": "news:news_query", "expected_slots": {"media_type": "gazety wyborczej"}, "split": "test"}
{"utterance": "jakie są główne wiadomości w tvn", "expected_intent": "news:news_query", "expected_slots": {"media_type": "tvn"}, "split": "test"}
{"utterance": "gra muzykę", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "czy możesz załączyć muzykę", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "która jest teraz godzina w kanadzie", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "kanadzie"}, "split": "test"}
{"utterance": "czy będzie później padać", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "padać"}, "split": "test"}
{"utterance": "czy potrzebuję parasol w nocy", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "parasol", "timeofday": "w nocy"}, "split": "test"}
{"utterance": "czy mogę założyć dzisiaj moje sandały", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dzisiaj", "weather_descriptor": "sandały"}, "split": "test"}
{"utterance": "czy musze wziąć okulary przeciwsłoneczne", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "okulary przeciwsłoneczne"}, "split": "test"}
{"utterance": "musisz mnie obudzić o szóstej rano", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "szóstej rano"}, "split": "test"}
{"utterance": "zmniejsz głośność", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "zamów pizzę na wynos", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "pizzę", "order_type": "wynos"}, "split": "test"}
{"utterance": "jaka jest różnica czasu między kalifornią a nowym jorkiem", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "nowym jorkiem"}, "split": "test"}
{"utterance": "prosze wyłącz wszystkie światła", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"device_type": "wszystkie światła"}, "split": "test"}
{"utterance": "przekonwertuj ósmą trzydzieści ze strefy u. t. c. cztery na piątą trzydzieści strefy u. t. c.", "expected_intent": "datetime:datetime_convert", "expected_slots": {"time": "ósmą trzydzieści", "time_zone": "piątą trzydzieści strefy u. t. c."}, "split": "test"}
{"utterance": "pogoda teraz", "expected_intent": "weather:weather_query", "expected_slots": {"time": "teraz"}, "split": "test"}
{"utterance": "wucisz na godzinę", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"time": "godzinę"}, "split": "test"}
{"utterance": "kiedy powinienem iść na spacer", "expected_intent": "weather:weather_query", "expected_slots": {"event_name": "spacer"}, "split": "test"}
{"utterance": "ta piosenka w tle jest świetna", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "kto jest kierownikiem muzycznym tej piosenki", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "nie wydawaj żadnych dźwięków", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "kto szybciej dowiezie dostawę", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "dostawę"}, "split": "test"}
{"utterance": "czy to piosenka eda sheerana", "expected_intent": "music:music_query", "expected_slots": {"artist_name": "eda sheerana"}, "split": "test"}
{"utterance": "chce reggae", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "reggae"}, "split": "test"}
{"utterance": "nastaw alarm na dziewiątą rano w przyszłą niedzielę", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "dziewiątą rano", "date": "przyszłą niedzielę"}, "split": "test"}
{"utterance": "znajdź jedzenie i zamów", "expected_intent": "takeaway:takeaway_order", "expected_slots": {}, "split": "test"}
{"utterance": "proszę odpowiednio ustaw jasność świateł w kuchni", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "kuchni"}, "split": "test"}
{"utterance": "rozjaśnij światła w salonie", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "w salonie"}, "split": "test"}
{"utterance": "będę potrzebować kurtki jeśli wieczorem będzie zbyt wietrznie", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "zbyt wietrznie", "timeofday": "wieczorem"}, "split": "test"}
{"utterance": "będe potrzebować ciepłych skarpet rano zimą", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "zimą", "timeofday": "rano"}, "split": "test"}
{"utterance": "zmien głośność na", "expected_intent": "audio:audio_volume_other", "expected_slots": {}, "split": "test"}
{"utterance": "proszę wyłącz światła", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "pokaż temperaturę", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "temperaturę"}, "split": "test"}
{"utterance": "graj ale jazz sanah", "expected_intent": "play:play_music", "expected_slots": {"song_name": "ale jazz", "artist_name": "sanah"}, "split": "test"}
{"utterance": "sprawdź cenę dania i wszystko", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"food_type": "dania"}, "split": "test"}
{"utterance": "zmniejsz głośność", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "co jest teraz w radiu", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "jak się nazywa kawałek który teraz grasz", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "graj poprzednią piosenkę", "expected_intent": "play:play_music", "expected_slots": {"music_descriptor": "poprzednią", "song_name": "piosenkę"}, "split": "test"}
{"utterance": "alarm o dziesiątej rano", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "dziesiątej rano"}, "split": "test"}
{"utterance": "graj mi muzykę beatles", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "beatles"}, "split": "test"}
{"utterance": "zagwarantuj że wstanę o szóstej rano", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "szóstej", "timeofday": "rano"}, "split": "test"}
{"utterance": "pokaż datę", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "zapytaj o podłogę dziś wieczorem", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dziś", "timeofday": "wieczorem"}, "split": "test"}
{"utterance": "wyłącz gniazdko wemo", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "gniazdko wemo"}, "split": "test"}
{"utterance": "graj dla mnie muzykę autorstwa the beatles", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "the beatles"}, "split": "test"}
{"utterance": "czy powinnam wziąć płaszcz przeciwdeszczowy", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "płaszcz przeciwdeszczowy"}, "split": "test"}
{"utterance": "która jest godzina w las vegas", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "las vegas"}, "split": "test"}
{"utterance": "którego dnia tygodnia jest piętnasty sierpnia", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "piętnasty sierpnia"}, "split": "test"}
{"utterance": "graj moją playlistę muzyka imprezowa", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "muzyka imprezowa"}, "split": "test"}
{"utterance": "pokaż mi nagłówki", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "yaro", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "zacznij odkurzanie", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "odkurzanie"}, "split": "test"}
{"utterance": "czas teraz", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "słuchajmy moje ulubione", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "pokaż mi jutrzejszą pogodę w tym rejonie", "expected_intent": "weather:weather_query", "expected_slots": {"date": "jutrzejszą", "place_name": "tym rejonie"}, "split": "test"}
{"utterance": "pokaż siedmiodniową prognozę na ten tydzień", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "siedmiodniową prognozę", "date": "ten tydzień"}, "split": "test"}
{"utterance": "rozjaśnij światło w korytarzu", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "w korytarzu"}, "split": "test"}
{"utterance": "czy będę musiała zmienić opony na zimowe niedługo", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "zimowe"}, "split": "test"}
{"utterance": "za piętnaście druga", "expected_intent": "datetime:datetime_query", "expected_slots": {"time": "za piętnaście druga"}, "split": "test"}
{"utterance": "jaka jest pogoda w stolicy", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "stolicy"}, "split": "test"}
{"utterance": "jaki jest czas w deli", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "deli"}, "split": "test"}
{"utterance": "czy powinienem wziąć płaszcz przeciwdeszczowy przed wyjściem", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "czy powinienem wziąć płaszcz przeciwdeszczowy"}, "split": "test"}
{"utterance": "nastaw ustawienie domyślne dźwięku", "expected_intent": "audio:audio_volume_other", "expected_slots": {}, "split": "test"}
{"utterance": "graj piosenkę ale jazz", "expected_intent": "play:play_music", "expected_slots": {"song_name": "ale jazz"}, "split": "test"}
{"utterance": "list do m autorstwa dżemu", "expected_intent": "play:play_music", "expected_slots": {"song_name": "list do m", "artist_name": "dżemu"}, "split": "test"}
{"utterance": "zmniejsw o dwadzieścia procent", "expected_intent": "audio:audio_volume_down", "expected_slots": {"change_amount": "dwadzieścia procent"}, "split": "test"}
{"utterance": "powiedz mi o pogodzie w tym tygodniu", "expected_intent": "weather:weather_query", "expected_slots": {"date": "w tym tygodniu"}, "split": "test"}
{"utterance": "chcę zamówić jedzenie z papy john'sa", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"business_name": "papy john'sa"}, "split": "test"}
{"utterance": "wyłącz inteligentne gniazdko", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "inteligentne gniazdko"}, "split": "test"}
{"utterance": "jaka jest dzisiaj pogoda w jastarni", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dzisiaj", "weather_descriptor": "pogoda w jastarni"}, "split": "test"}
{"utterance": "gorący temat", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "wyłącz prąd", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "sprawdź czy alarm jest ustawiony na szóstą rano", "expected_intent": "alarm:alarm_query", "expected_slots": {"time": "szóstą rano"}, "split": "test"}
{"utterance": "odtwórz ponownie muzykę", "expected_intent": "music:music_settings", "expected_slots": {"player_setting": "odtwórz ponownie"}, "split": "test"}
{"utterance": "utnij piosenki w tej muzyce", "expected_intent": "music:music_settings", "expected_slots": {}, "split": "test"}
{"utterance": "zrób kawy proszę", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest najnowsza aktualizacja propozycji mostu w nowym jorku", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "propozycji mostu w nowym jorku"}, "split": "test"}
{"utterance": "jakieś najnowsze informacje z super expresu", "expected_intent": "news:news_query", "expected_slots": {"media_type": "super expresu"}, "split": "test"}
{"utterance": "zagraj jakaś dobrą piosenkę z mojej playlisty", "expected_intent": "play:play_music", "expected_slots": {"music_descriptor": "dobrą piosenkę"}, "split": "test"}
{"utterance": "powiedz mi teraz dobry żart", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "dobry"}, "split": "test"}
{"utterance": "czy miasto jest tańsze czy droższe do życia", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "miasto"}, "split": "test"}
{"utterance": "czy to miasto jest bezpieczne", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy możesz przestać mówić proszę", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "czy możesz mi zamówić jedzenie", "expected_intent": "takeaway:takeaway_order", "expected_slots": {}, "split": "test"}
{"utterance": "puść mi bohemian raphsody", "expected_intent": "play:play_music", "expected_slots": {"song_name": "bohemian raphsody"}, "split": "test"}
{"utterance": "czy ustawiłem alarm żeby wziąć tabletki w południe", "expected_intent": "alarm:alarm_query", "expected_slots": {"event_name": "żeby wziąć tabletki", "timeofday": "południe"}, "split": "test"}
{"utterance": "pokaż mi najnowsze informacje z o. n. z.", "expected_intent": "news:news_query", "expected_slots": {"media_type": "o. n. z."}, "split": "test"}
{"utterance": "ustaw światła na niższy stopień", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "czy będę po południu potrzebować moich kozaków", "expected_intent": "weather:weather_query", "expected_slots": {"timeofday": "po południu", "weather_descriptor": "kozaków"}, "split": "test"}
{"utterance": "która godzina jest w strefie czasu centralnego", "expected_intent": "datetime:datetime_query", "expected_slots": {"time_zone": "centralnego"}, "split": "test"}
{"utterance": "kto jest w radiu", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "jaki to artysta", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "zmniejsz jasność świateł", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "czy będzie parna noc", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "parna", "timeofday": "noc"}, "split": "test"}
{"utterance": "czy powinieniem wziąć płaszcz czy sweter dzisiaj do pracy", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "sweter", "date": "dzisiaj"}, "split": "test"}
{"utterance": "czy po południu będę potrzebować krem z filtrem", "expected_intent": "weather:weather_query", "expected_slots": {"timeofday": "po południu", "weather_descriptor": "krem z filtrem"}, "split": "test"}
{"utterance": "zagraj ulubione piosenki", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "kawa", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "czy jutro będzie deszczowy dzień", "expected_intent": "weather:weather_query", "expected_slots": {"date": "jutro", "weather_descriptor": "deszczowy"}, "split": "test"}
{"utterance": "hey olly wyłącz światło proszę", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "dodaj wybraną piosenkę", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "czy potrzebuję kremu z filtrem", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "kremu z filtrem"}, "split": "test"}
{"utterance": "czy zostawiłam włączone światło w garażu", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "garażu"}, "split": "test"}
{"utterance": "graj muzyka rap", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rap"}, "split": "test"}
{"utterance": "proszę uruchom ekspres do kawy", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "ekspres do kawy"}, "split": "test"}
{"utterance": "zrób kawę", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "nie mow przez godzinę", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"time": "godzinę"}, "split": "test"}
{"utterance": "czy będą dziś burze", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dziś", "weather_descriptor": "burze"}, "split": "test"}
{"utterance": "ile minut muszę czekać aby odebrać moje jedzenie ze złotego smoka", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "złotego smoka"}, "split": "test"}
{"utterance": "wyłącz światło na werandzie", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "na werandzie"}, "split": "test"}
{"utterance": "wyłącz światło w sypialni o dwudziestej pierwszej trzydzieści", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "sypialni", "time": "dwudziestej pierwszej trzydzieści"}, "split": "test"}
{"utterance": "chcę usłyszeć dzisiejsze najnowsze wiadomości ze świata", "expected_intent": "news:news_query", "expected_slots": {"date": "dzisiejsze", "place_name": "ze świata"}, "split": "test"}
{"utterance": "nastaw budzik na dzisiaj na dziesiątą rano", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "dzisiaj", "time": "dziesiątą"}, "split": "test"}
{"utterance": "czy powinienem otworzyć szyberdach", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "szyberdach"}, "split": "test"}
{"utterance": "czy są ustawione jakieś alarmy", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "hej jaka będzie dzisiaj pogoda sopot pomorskie", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dzisiaj", "place_name": "sopot pomorskie"}, "split": "test"}
{"utterance": "zachowaj opinię o utworze", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "hej zamów dwa razy skrzydełka z frytkami z garmażerki", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "skrzydełka z frytkami", "business_name": "garmażerki"}, "split": "test"}
{"utterance": "informacje o pogodzie w tym tygodniu", "expected_intent": "weather:weather_query", "expected_slots": {"date": "w tym tygodniu"}, "split": "test"}
{"utterance": "która jest godzina w dallas", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "dallas"}, "split": "test"}
{"utterance": "czy polecasz parasol", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "parasol"}, "split": "test"}
{"utterance": "informuj mnie na bieżąco o nowościach ze świata", "expected_intent": "news:news_query", "expected_slots": {"place_name": "świata"}, "split": "test"}
{"utterance": "dowiedz się co to za piosenka i podaj mi tytuł", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "znajdź śmieszne żarty", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "śmieszne"}, "split": "test"}
{"utterance": "chcę poznać dzisiejszą prognozę", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dzisiejszą"}, "split": "test"}
{"utterance": "posprzątaj podłogę", "expected_intent": "iot:iot_cleaning", "expected_slots": {"house_place": "podłogę"}, "split": "test"}
{"utterance": "usuń alarm", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "wycisz przez pięć minut", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"time": "pięć minut"}, "split": "test"}
{"utterance": "czy mam dzisiaj wziąć okulary przeciwsłoneczne", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dzisiaj", "weather_descriptor": "okulary przeciwsłoneczne"}, "split": "test"}
{"utterance": "zrób tutaj jaśniej", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "czy mam wziąć dziś parasol", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dziś", "weather_descriptor": "parasol"}, "split": "test"}
{"utterance": "czy mam założyć kurtkę", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "kurtkę"}, "split": "test"}
{"utterance": "cześć olly stęskniłem się", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest dzisiaj pogoda", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "o czym myślisz", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "miałem ciężki dzień", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "hej powiedz mi więcej o moich dzisiejszych spotkaniach", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dzisiejszych", "event_name": "spotkaniach"}, "split": "test"}
{"utterance": "kiedy sa urodziny mojego przyjaciela", "expected_intent": "general:general_quirky", "expected_slots": {"event_name": "urodziny", "relation": "przyjaciela"}, "split": "test"}
{"utterance": "zobacz co napisałeś do tego pytania", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "nie wiem jak odpowiedzieć na to pytanie zapomniałeś o jednym lub dwóch słowach", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "idę dzisiaj do pracy", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "miałem zły dzień", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "pomogłem dzisiaj biednemu olly", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "jestem dzisiaj bardzo szczęśliwy że dostałem bilety na koncert", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dzisiaj", "event_name": "koncert"}, "split": "test"}
{"utterance": "ile masz lat", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "jak masz na imię", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "gdybyś miał zabić trzy osoby żeby przeżyć zrobiłbyś to i jeśli tak to dlaczego", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "pogadajmy", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "zjadłem jak tylko wstałem", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest dzisiaj pogoda", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "co poleciłbyś dla mnie do przeczytania", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "hej olly spotkałem jednego z moich starych kolegów z klasy dzisiaj", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "olly właśnie umyłem samochód", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "nienawidzę jak długie robią się korki", "expected_intent": "general:general_quirky", "expected_slots": {"time": "długie"}, "split": "test"}
{"utterance": "co jest grane", "expected_intent": "general:general_quirky", "expected_slots": {"food_type": "jest grane"}, "split": "test"}
{"utterance": "jak się dzisiaj czujesz", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "co chcesz dziś robić", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dziś"}, "split": "test"}
{"utterance": "dzisiaj widziałem buldoga", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "myślisz że powinienem dziś iść do teatru", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dziś", "place_name": "teatru"}, "split": "test"}
{"utterance": "proszę podaj wynik meczu", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "mój dzień był bardzo ciężki", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "kupiłem bilety na ligę przed sezonem", "expected_intent": "general:general_quirky", "expected_slots": {"event_name": "na ligę przed sezonem"}, "split": "test"}
{"utterance": "olly muszę ci opowiedzieć swój dzień", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "poszedłem do sklepu", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "muszę kupić paliwo", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "powiedz mi jakie są najlepsze atrakcje turystyczne w ameryce", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"place_name": "ameryce"}, "split": "test"}
{"utterance": "jak wygląda moj przyszły tydzień", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "przyszły tydzień"}, "split": "test"}
{"utterance": "weganizm", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "wiadomości dotyczące roślin", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "dotyczące roślin"}, "split": "test"}
{"utterance": "jaki jest dobry irański film z dwutysięcznego szesnastego", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"date": "dwutysięcznego szesnastego"}, "split": "test"}
{"utterance": "co robisz z moimi danymi osobowymi i informacjami", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "hej co ciekawego wydarzyło się ostatnio w sporcie", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "jakie funkcje planujesz wydać w przyszłości", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "mój dzień był wspaniały", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "daj mi kilka wskazówek dotyczących zdrowia", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "jak gdzieś dojechać", "expected_intent": "transport:transport_query", "expected_slots": {}, "split": "test"}
{"utterance": "jak robi pies", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "co się dzisiaj dzieje we francji", "expected_intent": "news:news_query", "expected_slots": {"date": "dzisiaj", "place_name": "francji"}, "split": "test"}
{"utterance": "jaka będzie pogoda w następna środę", "expected_intent": "weather:weather_query", "expected_slots": {"date": "środę"}, "split": "test"}
{"utterance": "mam dobry dzień dodaj memo", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "cześć jak mija dzień", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "technologia", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "dzisiaj miałem spotkanie z georgem", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dzisiaj", "event_name": "spotkanie", "person": "georgem"}, "split": "test"}
{"utterance": "dziś przydarzyło mi się to że miałem spotkanie z grześkiem", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dziś", "event_name": "spotkanie", "person": "grześkiem"}, "split": "test"}
{"utterance": "proszę wiedz że miałam dziś spotkanie z grześkiem", "expected_intent": "general:general_quirky", "expected_slots": {"event_name": "spotkanie", "person": "grześkiem"}, "split": "test"}
{"utterance": "czy możesz mi coś o sobie powiedzieć", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "dzisiaj szukałem wszędzie mojego telefonu i nie mogłem go znaleźć", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "czy słyszałeś ostatnio jakąś dobrą muzykę", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "czy w mieście jest groomer tylko dla kotów", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "trump", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "czy jesteś mądry", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "o czym myślisz", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "pogoda była dzisiaj brzydka", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "wyniki siatkówki", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "co dzisiaj lubię", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "poszukiwanie w sieci", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "czy możesz mi doradzić", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "nowe gadżety", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "media społecznościowe", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "gonił mnie pies", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "zapytaj o drobiazgi", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "jak ci minął dziś dzień", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dziś"}, "split": "test"}
{"utterance": "miałeś ciężki dzień", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "historia", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "czy jesteś szczęśliwa", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "zaznacz dzisiaj jako początek mojej diety", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "dzisiaj", "event_name": "początek mojej diety"}, "split": "test"}
{"utterance": "czy ser pleśniowy jest lepszy od żółtego", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "ser pleśniowy"}, "split": "test"}
{"utterance": "dzisiaj dostanę awans cudownie się czuję", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "odegraj filmiki", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "hey olly czy lubisz moją dziewczynę", "expected_intent": "general:general_quirky", "expected_slots": {"relation": "dziewczynę"}, "split": "test"}
{"utterance": "szukanie informacji w internecie", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "matematyka", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "co się ze mną stanie jeśli tu będziesz istotą czującą", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "czy masz chłopaka", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "rośliny", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "miłość", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "cześć", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "zacznij plotki", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "gdzie dzisiaj byłem", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "kiedy wróciłem z tego miejsca", "expected_intent": "general:general_quirky", "expected_slots": {"place_name": "tego miejsca"}, "split": "test"}
{"utterance": "zdrowie", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "rodzicielstwo", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "ile masz lat", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "co sądzisz o przyszłości", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "podaj ciekawe wiadomości", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "nowości filmowe", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "kim jesteście deweloperzy", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "gry video", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "najlepiej płatne prace w digital marketingu w mojej okolicy", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "czy pracujesz dla n. s. a.", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "jakie są dzisiaj najpopularniejsze wyszukiwania w google", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "alexa ile o mnie wiesz", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "trzymanie diety", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "wakacyjne destynacje", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "czy znasz jakieś dobre darmowe wzory dziewiarskie", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "mów do mnie slodko", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "wybory na górze", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "sprawy gospodarcze", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "hej mam dzisiaj zły dzień co mogę obejrzeć żeby poprawić sobie humor", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "ogólne wskazówki zdrowotne", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "aktualności u znajomych", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "czy jesteś prawdziwy", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "odwołaj spotkanie biznesowe w środę", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "spotkanie biznesowe", "date": "w środę"}, "split": "test"}
{"utterance": "co wiesz o festiwalu fringe w edynburgu w przyszłym roku", "expected_intent": "general:general_quirky", "expected_slots": {"event_name": "festiwalu fringe", "place_name": "edynburgu", "date": "w przyszłym roku"}, "split": "test"}
{"utterance": "czy mam jakieś przypomnienia", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "przypomnij mi o moim grafiku na popołudnie", "expected_intent": "calendar:calendar_set", "expected_slots": {"timeofday": "popołudnie"}, "split": "test"}
{"utterance": "odwołaj następne spotkanie", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "spotkanie"}, "split": "test"}
{"utterance": "odwołaj śniadanie cafe bristol", "expected_intent": "calendar:calendar_remove", "expected_slots": {"meal_type": "śniadanie", "place_name": "cafe bristol"}, "split": "test"}
{"utterance": "dodaj przypomnienie o spotkaniu w niedzielę z moimi teściami", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkaniu", "date": "w niedzielę", "relation": "teściami"}, "split": "test"}
{"utterance": "olly biorę jutro wolne", "expected_intent": "general:general_quirky", "expected_slots": {"date": "jutro"}, "split": "test"}
{"utterance": "umów spotkanie z pawłem na jutro o dziesiątej rano", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkanie", "person": "z pawłem", "date": "jutro", "time": "o dziesiątej rano"}, "split": "test"}
{"utterance": "ustaw pierwszy tydzień czerwca jako wakacje w moim kalendarzu", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "pierwszy tydzień czerwca", "event_name": "wakacje"}, "split": "test"}
{"utterance": "ile mam przypomnień", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "proszę wyczyść mój kalendarz", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "usuń z mojego kalendarza spotkanie o dziewiątej rano", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "spotkanie", "time": "o dziewiątej rano"}, "split": "test"}
{"utterance": "przypomnij mi umyć okna", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "umyć okna"}, "split": "test"}
{"utterance": "ustaw wydarzenie na piątek", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "piątek"}, "split": "test"}
{"utterance": "jakie jest kolejne moje przypomnienie", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "umów spotkanie z joanną w sobotę o czwartej po południu", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "joanną", "date": "sobotę", "time": "czwartej po południu"}, "split": "test"}
{"utterance": "usuń moje następne wydarzenie", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "pokaż moje spotkania w ten piątek", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "w ten piątek"}, "split": "test"}
{"utterance": "pokaż mi moje wydarzenie w kalendarzu w ten piątek po południu", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "ten piątek", "timeofday": "po południu"}, "split": "test"}
{"utterance": "przypomnij mi o urodzinach mojej mamy na tydzień wcześniej", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "urodzinach", "relation": "mamy", "time": "tydzień wcześniej"}, "split": "test"}
{"utterance": "olly dziś wieczorem o dziewiątej w barze jazzowym jest dobry występ zespołu muzycznego chcę iść", "expected_intent": "calendar:calendar_set", "expected_slots": {"timeofday": "wieczorem", "time": "o dziewiątej", "place_name": "w barze jazzowym", "event_name": "występ zespołu muzycznego"}, "split": "test"}
{"utterance": "przypomnij mi o spotkaniu jutro o szóstej", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkaniu", "date": "jutro", "time": "o szóstej"}, "split": "test"}
{"utterance": "wypisz mój plan na dzisiaj", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "daj mi powiadomienie na jutrzejsze spotkanie o dziesiątej rano", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "jutrzejsze", "event_name": "spotkanie", "time": "o dziesiątej rano"}, "split": "test"}
{"utterance": "czy są jakieś nadchodzące wydarzenia", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "ustaw powiadomienie o jutrzejszym spotkaniu na dziesiątą", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "jutrzejszym", "event_name": "spotkaniu", "time": "dziesiątą"}, "split": "test"}
{"utterance": "zaplanuj spotkanie z działem księgowości o czternastej trzydzieści w piątek", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkanie", "business_name": "działem księgowości", "time": "czternastej trzydzieści", "date": "piątek"}, "split": "test"}
{"utterance": "czy są jakieś poranne pokazy dostępne", "expected_intent": "calendar:calendar_query", "expected_slots": {"timeofday": "poranne", "event_name": "pokazy"}, "split": "test"}
{"utterance": "czy możesz znaleźć mi repertuar kina", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "kina"}, "split": "test"}
{"utterance": "przypomnij mi żeby odebrać anię siódmego o piątej wieczór", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "odebrać", "person": "anię", "date": "siódmego", "time": "piątej", "timeofday": "wieczór"}, "split": "test"}
{"utterance": "przypomnij mi jutro o dziesiątej rano o spotkaniu", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "jutro", "time": "o dziesiątej rano", "event_name": "spotkaniu"}, "split": "test"}
{"utterance": "ustaw przypomnienie aby zmienić olej w przyszłym miesiącu", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "zmienić olej", "date": "w przyszłym miesiącu"}, "split": "test"}
{"utterance": "co się dzieje po pierwszej i przed trzecią po południu", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "przed trzecią po południu"}, "split": "test"}
{"utterance": "usuń wydarzenia z kalendarza", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "ustaw przypomnienie żeby wydrukować dokumenty we wtorek rano", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "wydrukować dokumenty", "date": "wtorek", "timeofday": "rano"}, "split": "test"}
{"utterance": "czy dziś jest piątek", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "piątek"}, "split": "test"}
{"utterance": "usuń wszystkie wydarzenia", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "przypomnij mi żebym wzięła lekarstwo o dziewiątej rano", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "lekarstwo", "time": "dziewiątej rano"}, "split": "test"}
{"utterance": "ustaw przypomnienie na południe aby zjeść lunch z szefem", "expected_intent": "calendar:calendar_set", "expected_slots": {"timeofday": "południe", "event_name": "lunch z szefem"}, "split": "test"}
{"utterance": "czy są jakieś spotkania na następną środę", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "spotkania", "date": "środę"}, "split": "test"}
{"utterance": "upewnij się że w moim kalendarzu nie ma żadnych wydarzeń", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "przypomnij mi godzinę przed spotkaniem że je mam", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "godzinę", "event_name": "spotkaniem"}, "split": "test"}
{"utterance": "co mam do zrobienia w przyszłą sobotę o osiemnastej", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "sobotę", "time": "o osiemnastej"}, "split": "test"}
{"utterance": "czy możesz przypomnieć moje następne spotkanie z szefem godzinę przed jego terminem", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkanie", "relation": "szefem", "time": "godzinę"}, "split": "test"}
{"utterance": "możesz sprawdzic fakty na ten temat", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "potrzebuję potwierdzić wszystkie spotkania dzisiaj czy możesz zaprosić te osoby", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "spotkania", "date": "dzisiaj"}, "split": "test"}
{"utterance": "dodaj przypomnienie o konferencji jutro w warszawie", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "konferencji", "date": "jutro", "place_name": "warszawie"}, "split": "test"}
{"utterance": "przypomnij mi że mam jutro przyjęcie jutro w warszawie", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "jutro", "event_name": "przyjęcie", "place_name": "warszawie"}, "split": "test"}
{"utterance": "daj mi listę zadań", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "pokaż nadchodzące wydarzenia", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "przypomnij mi o", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "usuń następne wydarzenie", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "nowe wydarzenie", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "dodaj do mojego kalendarza przypomnienie tego dnia co roku", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "co roku"}, "split": "test"}
{"utterance": "kiedy rozpocznie się wydarzenie", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "podaj mi plan dzisiejszych wydarzeń", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dzisiejszych"}, "split": "test"}
{"utterance": "usuń nowy rok z kalendarza", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "nowy rok"}, "split": "test"}
{"utterance": "jakie wydarzenia są w moim mieście w tym tygodniu", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "mieście", "date": "w tym tygodniu"}, "split": "test"}
{"utterance": "ustaw spotkanie z krzyśkiem w przyszły wtorek o jedenastej rano", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkanie", "person": "krzyśkiem", "date": "wtorek", "time": "jedenastej rano"}, "split": "test"}
{"utterance": "przypomnij mi żebym zaczęła się szykować przed siedemnastą", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "się szykować", "time": "przed siedemnastą"}, "split": "test"}
{"utterance": "dodaj spotkanie z romanem dwudziestego pierwszego o siódmej", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkanie z romanem", "date": "dwudziestego pierwszego", "time": "siódmej"}, "split": "test"}
{"utterance": "zaplanuj spotkanie z mateuszem o jedenastej rano w czwartek", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkanie", "person": "z mateuszem", "time": "o jedenastej rano", "date": "czwartek"}, "split": "test"}
{"utterance": "zaplanuj lunch z arturem w środę w południe", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "lunch", "person": "z arturem", "date": "środę", "timeofday": "południe"}, "split": "test"}
{"utterance": "przypomnij mi o piątkowym spotkaniu z edkiem dwadzieścia cztery godziny wcześniej", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "piątkowym", "event_name": "spotkaniu", "person": "z edkiem", "time": "dwadzieścia cztery godziny wcześniej"}, "split": "test"}
{"utterance": "przeszukaj mój kalendarz i powiadom mnie przed następnym wydarzeniem", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "przed"}, "split": "test"}
{"utterance": "anuluj wszystko w moim kalendarzu", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "usuń jutrzejsze spotkanie z mojego kalendarza", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "jutrzejsze", "event_name": "spotkanie"}, "split": "test"}
{"utterance": "dodaj moją opłatę za samochód dwunastego w moim kalendarzu", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "opłatę za samochód", "date": "dwunastego"}, "split": "test"}
{"utterance": "przypomnij mi dzień przed przeglądem samochodu", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "dzień przed", "event_name": "samochodu"}, "split": "test"}
{"utterance": "o której mam wizytę u lekarza trzydziestego pierwszego marca", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "wizytę u lekarza", "date": "trzydziestego pierwszego marca"}, "split": "test"}
{"utterance": "czy w ten weekend są jakieś wydarzenia w centrum", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "ten weekend", "place_name": "w centrum"}, "split": "test"}
{"utterance": "pozbądź się wydarzeń z dziewiętnastego z mojego kalendarza", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "dziewiętnastego"}, "split": "test"}
{"utterance": "jak wygląda mój plan na dziś", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dziś"}, "split": "test"}
{"utterance": "czy możesz powtórzyć to wydarzenie", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "ustaw przypomnienie i powiadom mnie godzinę przed spotkanie w czasie lunchu", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkanie w czasie lunchu"}, "split": "test"}
{"utterance": "czy ten program jest w planie", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "w każdą nieparzystą niedzielę ustaw przypomnienie", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "nieparzystą niedzielę"}, "split": "test"}
{"utterance": "zaplanuj lunch każdego dnia o dwunastej trzydzieści", "expected_intent": "calendar:calendar_set", "expected_slots": {"meal_type": "lunch", "general_frequency": "każdego dnia", "time": "o dwunastej trzydzieści"}, "split": "test"}
{"utterance": "przypomnij o tym wydarzeniu w przyszłości", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "czy możesz mi podać szczegóły dotyczące nadchodzącej corocznej uroczystości w dniu dwudziestego szóstego marca", "expected_intent": "general:general_quirky", "expected_slots": {"general_frequency": "corocznej", "event_name": "uroczystości", "date": "dwudziestego szóstego marca"}, "split": "test"}
{"utterance": "dzisiaj są urodziny mojej mamy wyślij mi przypomnienie każdego roku w tym dniu", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "dzisiaj", "event_name": "urodziny", "relation": "mamy", "general_frequency": "każdego roku"}, "split": "test"}
{"utterance": "obudź mnie o szóstej rano w czwartek żebym miała czas na spotkanie", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "szóstej rano", "date": "czwartek", "event_name": "spotkanie"}, "split": "test"}
{"utterance": "kiedy mam następną wizytę u doktora nowaka", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "wizytę", "person": "u doktora nowaka"}, "split": "test"}
{"utterance": "czy mam coś zaplanowane", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "ustaw spotkanie jutro", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkanie", "date": "jutro"}, "split": "test"}
{"utterance": "przypomnij mi o spotkaniu z tomkiem piętnastego marca", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkaniu", "person": "tomkiem", "time": "piętnastego marca"}, "split": "test"}
{"utterance": "ustaw powiadomienie na trzy dwie i jedną godzinę przed angielskim finałem w przyszłym tygodniu", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "angielskim finałem", "date": "w przyszłym tygodniu"}, "split": "test"}
{"utterance": "czy możesz mi przypomnieć żeby wynieść śmieci we wtorek", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "wynieść śmieci", "date": "wtorek"}, "split": "test"}
{"utterance": "dobre pierwsze wrażenie", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "czy nastawiłeś przypomnienie na spotkanie jutro", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "spotkanie", "date": "jutro"}, "split": "test"}
{"utterance": "gdzie odbędzie się ślub tomka", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "ślub"}, "split": "test"}
{"utterance": "jakie są wydarzenia w przyszłym tygodniu", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "w przyszłym tygodniu"}, "split": "test"}
{"utterance": "proszę przypomnij mi żebym za pół godziny zadzwonił do mamy", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "za pół godziny", "event_name": "zadzwonił", "relation": "mamy"}, "split": "test"}
{"utterance": "przypomnij mi żeby wysłać email do szefa godzinę później", "expected_intent": "calendar:calendar_set", "expected_slots": {"relation": "szefa"}, "split": "test"}
{"utterance": "utwórz przypomnienie na jutrzejsze spotkanie", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "jutrzejsze", "event_name": "spotkanie"}, "split": "test"}
{"utterance": "jakie ma nadchodzące zadania", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "przypomnij mi o urodzinach renaty dwadzieścia cztery godziny wcześniej", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "urodzinach", "person": "renaty", "time": "dwadzieścia cztery godziny wcześniej"}, "split": "test"}
{"utterance": "przypomnij mi o mojej rocznicy dzień wcześniej", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rocznicy", "date": "dzień wcześniej"}, "split": "test"}
{"utterance": "usuń wszystkie wydarzenia z grześkiem", "expected_intent": "calendar:calendar_remove", "expected_slots": {"person": "grześkiem"}, "split": "test"}
{"utterance": "zablokuj jedną godzinę od dziesiątej rano jutro", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "dziesiątej", "timeofday": "rano", "date": "jutro"}, "split": "test"}
{"utterance": "jestem niedostępny od czwartej do szóstej jutro wieczorem zaznacz w moim kalendarzu", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "od czwartej do szóstej", "date": "jutro", "timeofday": "wieczorem"}, "split": "test"}
{"utterance": "zaplanuj godzinne spotkanie na sobotę", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "godzinne", "date": "sobotę"}, "split": "test"}
{"utterance": "usuń spotkanie z jerzym adamskim z mojego kalendarza", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "spotkanie", "person": "jerzym adamskim"}, "split": "test"}
{"utterance": "proszę wyczyść mój kalendarz", "expected_intent": "calendar:calendar_remove", "expected_slots": {"time": "wyczyść"}, "split": "test"}
{"utterance": "co jest zaplanowane na dzisiaj", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "czy mam jakieś spotkania", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "spotkania"}, "split": "test"}
{"utterance": "jakie są plany na dzisiaj od czternastej do szesnastej", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dzisiaj", "time": "od czternastej do szesnastej"}, "split": "test"}
{"utterance": "po prostu powiedz mi jaka będzie pogoda na mazurach kolejnych tygodniach", "expected_intent": "email:email_query", "expected_slots": {"place_name": "mazurach", "time": "kolejnych tygodniach"}, "split": "test"}
{"utterance": "przypomnij mi aby sprawdzić gulasz o szóstej", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "sprawdzić gulasz", "time": "szóstej"}, "split": "test"}
{"utterance": "proszę pokaż dzisiejsze spotkanie z klientami", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dzisiejsze", "relation": "klientami"}, "split": "test"}
{"utterance": "czy mam jakieś wydarzenia zaplanowane na następne trzy miesiące", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "następne trzy miesiące"}, "split": "test"}
{"utterance": "zaplanuj spotkanie z tą osobą", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkanie"}, "split": "test"}
{"utterance": "potrzebuję zaplanować spotkanie z tą osobą", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkanie"}, "split": "test"}
{"utterance": "przypomnij mi o jutrzejszym przyjęciu", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "jutrzejszym", "event_name": "przyjęciu"}, "split": "test"}
{"utterance": "zaproś ludzi na wydarzenie w kalendarzu", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "poinformuj moją grupę że nowy termin spotkania jest jutro", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkania", "date": "jutro"}, "split": "test"}
{"utterance": "podaj mi godzinę wydarzeń", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "przypomnij mi piątego marca każdego roku o prezentach na rocznicę ślubu", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "piątego marca", "general_frequency": "każdego roku", "event_name": "prezentach na rocznicę ślubu"}, "split": "test"}
{"utterance": "czy mam dzisiaj spotkania", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dzisiaj", "event_name": "spotkania"}, "split": "test"}
{"utterance": "zrób nowy plan na jutrzejsze spotkanie", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "jutrzejsze", "event_name": "spotkanie"}, "split": "test"}
{"utterance": "czy możesz usunąć następne wydarzenie", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "co jest zaplanowane na spotkanie z kubą o czwartej po południu", "expected_intent": "calendar:calendar_query", "expected_slots": {"person": "z kubą", "time": "o czwartej po południu"}, "split": "test"}
{"utterance": "gdzie w warszawie jest to spotkanie o trzynastej w piątek", "expected_intent": "calendar:calendar_query", "expected_slots": {"place_name": "w warszawie", "event_name": "spotkanie", "time": "o trzynastej", "date": "piątek"}, "split": "test"}
{"utterance": "przypomnij mi codziennie o drugiej po południu o lunchu", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "codziennie", "time": "o drugiej po południu", "meal_type": "lunchu"}, "split": "test"}
{"utterance": "ile mariusz proponował zainwestować w moją firmę na spotkaniu które odbyło się dzisiaj o siedemnastej dwadzieścia", "expected_intent": "calendar:calendar_query", "expected_slots": {"person": "mariusz", "event_name": "spotkaniu", "date": "dzisiaj", "time": "siedemnastej dwadzieścia"}, "split": "test"}
{"utterance": "trzynastego czerwca będą wyniki wyborów proszę zaznacz to", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "trzynastego czerwca", "event_name": "wyniki wyborów"}, "split": "test"}
{"utterance": "proszę dodaj moje dni wypłaty", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "dni wypłaty"}, "split": "test"}
{"utterance": "czy mam jakies plany", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "proszę przypomnij mi o tym jutro", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "jutro"}, "split": "test"}
{"utterance": "chcę mieć spotkanie aż do trzeciej", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkanie", "time": "do trzeciej"}, "split": "test"}
{"utterance": "ustaw mój kalendarz aby przypominał żeby zrobić zakupy w każdy piątek", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "zrobić zakupy", "general_frequency": "każdy piątek"}, "split": "test"}
{"utterance": "dodaj przypomnienie lokalizacji w kalendarzu", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "przypomnij mi dziś wieczorem żeby odebrać pranie o dwudziestej", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "odebrać pranie", "time": "o dwudziestej"}, "split": "test"}
{"utterance": "przypomnij mi o jutrzejszym spotkaniu godzinę wcześniej", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "jutrzejszym", "event_name": "spotkaniu"}, "split": "test"}
{"utterance": "przypomnienie o spotkaniu", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkaniu"}, "split": "test"}
{"utterance": "urodziny", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "urodziny"}, "split": "test"}
{"utterance": "plan na jutro", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "jutro"}, "split": "test"}
{"utterance": "jaki jest plan na dziś", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "znajomy dodaje wydarzenie w twoim kalendarzu", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "proszę umów spotkanie z darkiem w piasecznie w południe", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkanie", "person": "z darkiem", "place_name": "w piasecznie", "timeofday": "w południe"}, "split": "test"}
{"utterance": "utwórz spotkanie z tomkiem na temat terroryzmu w następny wolny dzień", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "na temat terroryzmu", "person": "z tomkiem", "date": "następny wolny"}, "split": "test"}
{"utterance": "spotkanie z piotrek jutro o trzeciej", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "piotrek", "date": "jutro", "time": "o trzeciej"}, "split": "test"}
{"utterance": "usuń przypomnienie o spotkaniu we wtorek", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "spotkaniu", "date": "wtorek"}, "split": "test"}
{"utterance": "jakie było nadchodzące wydarzenie", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "przypomnij mi kiedy będę w bibliotece żebym wyrobił nową kartę biblioteczną", "expected_intent": "calendar:calendar_set", "expected_slots": {"place_name": "bibliotece", "event_name": "wyrobił nową kartę biblioteczną"}, "split": "test"}
{"utterance": "oznacz dwudziesty kwiecień jako urodziny mojego brata", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "dwudziesty kwiecień", "event_name": "urodziny", "relation": "brata"}, "split": "test"}
{"utterance": "dodaj przypomnienie na dwudziestego kwietnia o urodzinach mojego brata", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "dwudziestego kwietnia", "event_name": "urodzinach", "relation": "brata"}, "split": "test"}
{"utterance": "anuluj wszystkie moje spotkania po trzeciej po południu dzisiaj i poinformuj mnie o szczegółach", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "spotkania", "time": "trzeciej po południu", "date": "dzisiaj"}, "split": "test"}
{"utterance": "czy możesz wymienić moje spotkania dzisiaj", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "spotkania", "date": "dzisiaj"}, "split": "test"}
{"utterance": "dodaj lunch z michałem", "expected_intent": "calendar:calendar_set", "expected_slots": {"meal_type": "lunch", "person": "z michałem"}, "split": "test"}
{"utterance": "zaznaczysz że mam spotkanie z tomkiem jutro o trzeciej", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkanie", "person": "z tomkiem", "date": "jutro", "time": "o trzeciej"}, "split": "test"}
{"utterance": "w moim kalendarzu usuń wszystkie wydarzenia gry w golfa na ten miesiąc", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "gry w golfa", "date": "miesiąc"}, "split": "test"}
{"utterance": "dodaj michała i jacka do kalendarza festiwal", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "jacka", "event_name": "festiwal"}, "split": "test"}
{"utterance": "co mam teraz w kalendarzu", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy mam coś zaplanowanego na dwudziestego pierwszego", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dwudziestego pierwszego"}, "split": "test"}
{"utterance": "ustaw przypomnienie na to", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "hej anuluj wszystkie moje inne spotkania i telefony drugiego marca ponieważ są urodziny kuby oznacz je jako wydarzenie w swoim kalendarzu", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "drugiego marca", "event_name": "urodziny", "person": "kuby"}, "split": "test"}
{"utterance": "hej olly usuń moje wszystkie inne spotkania i połączenia na drugiego marca jako że są urodziny kuby dodaj to jako wydarzenie w twoim kalendarzu", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "drugiego marca", "event_name": "urodziny", "person": "kuby"}, "split": "test"}
{"utterance": "hej wyślij zaproszenie do pana nowaka na spotkanie w ten piątek i zablokuj mój kalendarz na piątek po południu", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "pana nowaka", "date": "piątek po południu"}, "split": "test"}
{"utterance": "potrzebuję coś w każdy poniedziałek nastaw przypomnienie", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "każdy poniedziałek"}, "split": "test"}
{"utterance": "zaznacz przyszły poniedziałek", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "poniedziałek"}, "split": "test"}
{"utterance": "wyczyść mój kalendarz sobota", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "sobota"}, "split": "test"}
{"utterance": "przypominaj mi w każdy poniedziałek żeby wynieść śmieci", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "w każdy poniedziałek"}, "split": "test"}
{"utterance": "jakie mam przypomnienia", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "dodaj trening do kalendarza czwartego lutego w parku saskim o drugiej po południu", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "czwartego lutego", "place_name": "w parku saskim", "time": "o drugiej po południu"}, "split": "test"}
{"utterance": "proszę dodaj trening czwartego lutego na polu mokotowskim o drugiej po południu", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "czwartego lutego", "place_name": "na polu mokotowskim", "time": "o drugiej po południu"}, "split": "test"}
{"utterance": "dodaj zakupy do mojego kalendarza na jutro", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "jutro"}, "split": "test"}
{"utterance": "czy mam dzisiaj spotkanie", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dzisiaj", "event_name": "spotkanie"}, "split": "test"}
{"utterance": "przypomnij mi co robię w niedzielę po południu", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "niedzielę", "timeofday": "po południu"}, "split": "test"}
{"utterance": "przypomnij mi że zabieram mamę do fryzjera w czwartek o jedenastej rano", "expected_intent": "calendar:calendar_set", "expected_slots": {"relation": "fryzjera", "date": "czwartek", "time": "o jedenastej rano"}, "split": "test"}
{"utterance": "czy to prawda o tym dniu", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "usuń wszystkie wydarzenia z kalendarza", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "usuń wszystkie wydarzenia", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "daj mi znać za dwie godziny że muszę wyjść na moją lekcję skrzypiec o czwartej po południu w fabryce muzyki", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "o czwartej po południu", "event_name": "lekcję skrzypiec", "place_name": "w fabryce muzyki"}, "split": "test"}
{"utterance": "jakie przypomnienia ja ustawiłem", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "powiadom mnie kiedy otwierają rejestrację", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rejestrację"}, "split": "test"}
{"utterance": "mam dziś spotkanie w południe", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "dziś", "event_name": "spotkanie", "timeofday": "południe"}, "split": "test"}
{"utterance": "przypomnij mi aby zacząć kolacje po południu o piątej", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "kolacje", "time": "po południu o piątej"}, "split": "test"}
{"utterance": "usuń wydarzenie z kalendarza", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "co się działo przez ostatnie dwa miesiące", "expected_intent": "news:news_query", "expected_slots": {"date": "ostatnie dwa miesiące"}, "split": "test"}
{"utterance": "wyczyść mój kalendarz", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "jakie są moje następne trzy wydarzenia", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "o której zaczyna się mecz piłki nożnej dziś wieczorem", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "mecz piłki nożnej", "timeofday": "dziś wieczorem"}, "split": "test"}
{"utterance": "skasuj dzisiaj fryzjera", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "dzisiaj", "event_name": "fryzjera"}, "split": "test"}
{"utterance": "anuluj kolację dziś wieczorem", "expected_intent": "calendar:calendar_remove", "expected_slots": {"meal_type": "kolację", "timeofday": "dziś wieczorem"}, "split": "test"}
{"utterance": "usuń następne wydarzenie dzisiaj", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "podaj mi najnowsze wiadomości o wyborach za godzinę", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "wyborach", "time": "godzinę"}, "split": "test"}
{"utterance": "ustaw spotkanie między mną a jasiem jutro o drugiej po południu", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkanie", "person": "jasiem", "date": "jutro", "time": "o drugiej po południu"}, "split": "test"}
{"utterance": "czy muszę dzisiaj coś zrobić", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "alexa usuń kolację z wojtkiem z mojego kalendarza", "expected_intent": "calendar:calendar_remove", "expected_slots": {"meal_type": "kolację", "person": "wojtkiem"}, "split": "test"}
{"utterance": "przypomnij mi wyrzucić śmieci o szóstej po południu", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "szóstej po południu"}, "split": "test"}
{"utterance": "wyślij zaproszenie do bill malinda na wydarzenie", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "bill malinda"}, "split": "test"}
{"utterance": "nowe spotkanie dodaj kubę i melindę jako uczestników", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkanie", "person": "kubę i melindę"}, "split": "test"}
{"utterance": "otwórz zadania usuń przyszłe wydarzenia", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "co mam do zrobienia w tym tygodniu", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "w tym tygodniu"}, "split": "test"}
{"utterance": "jakie są nadchodzące koncerty w dallas", "expected_intent": "calendar:calendar_query", "expected_slots": {"place_name": "dallas"}, "split": "test"}
{"utterance": "usuń wizytę u mojego lekarza w sobotę", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "wizytę", "relation": "u mojego lekarza", "date": "w sobotę"}, "split": "test"}
{"utterance": "wpisz to wydarzenie na stałe do mojego kalendarza", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "zamień to wydarzenie na cykliczne", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "czy kazałam o czymś sobie przypomnieć", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "przypomnij mi na czas o ślubie żebym zdążyła kupić prezent", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "ślubie"}, "split": "test"}
{"utterance": "ustaw przypomnienie na dwa dni przed wydarzeniem", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "dwa dni"}, "split": "test"}
{"utterance": "czy podczas wydarzenia będzie osoba parkująca samochody", "expected_intent": "calendar:calendar_query", "expected_slots": {"relation": "osoba parkująca samochody"}, "split": "test"}
{"utterance": "jakie przypomnienia mam zaplanowane jutro przed południem", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "jutro", "timeofday": "południem"}, "split": "test"}
{"utterance": "pokaż mi kiedy mam wydarzenie", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "wyślij przypomnienie przed spotkaniem", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkaniem"}, "split": "test"}
{"utterance": "usuń wszystkie wydarzenia z mojego kalendarza", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "czy możesz wymazać wizytę u fryzjera która mam zaplanowaną na piątek", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "wizytę u fryzjera", "date": "piątek"}, "split": "test"}
{"utterance": "dorota i ja musimy porozmawiać o naszym rozwodzie ustaw spotkanie na pierwszy wolny termin", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "dorota", "event_name": "spotkanie"}, "split": "test"}
{"utterance": "w poniedziałek dwudziestego muszę porozmawiać z grześkiem o naszej weekendowej wycieczce", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "poniedziałek dwudziestego", "event_name": "naszej weekendowej wycieczce", "person": "grześkiem"}, "split": "test"}
{"utterance": "pokaż moje spotkanie w przyszłym miesiącu", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "spotkanie", "date": "w przyszłym miesiącu"}, "split": "test"}
{"utterance": "jakie są dziś wydarzenia", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dziś"}, "split": "test"}
{"utterance": "kiedy wypada wielkanoc", "expected_intent": "datetime:datetime_query", "expected_slots": {"event_name": "wielkanoc"}, "split": "test"}
{"utterance": "przypomnij mi o wymianie oleju", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "przypomnij mi coś kiedyś", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "ile osób przyjdzie na moje następne spotkanie", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "spotkanie"}, "split": "test"}
{"utterance": "o której godzinie jest moje następne spotkanie", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "spotkanie"}, "split": "test"}
{"utterance": "jaki jest mój plan na dzisiaj", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "usuń moje spotkanie siódmego marca", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "spotkanie", "date": "siódmego marca"}, "split": "test"}
{"utterance": "czy mam w piątek randkę", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "piątek"}, "split": "test"}
{"utterance": "czy mam dzisiaj spotkanie sprzedażowe", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dzisiaj", "event_name": "spotkanie sprzedażowe"}, "split": "test"}
{"utterance": "zorganizuj spotkanie sprzedażowe w środę o jedenastej rano", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkanie sprzedażowe", "date": "środę", "time": "jedenastej"}, "split": "test"}
{"utterance": "ustaw przypomnienie na pieczenie chleba za jedną godzinę", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "pieczenie chleba", "time": "jedną godzinę"}, "split": "test"}
{"utterance": "jaki jest plan wydarzenia", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "chcę ustalić datę na ten tydzień", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "ten tydzień"}, "split": "test"}
{"utterance": "wyślij maila do osób z którymi się umówiłem żeby zmienić termin", "expected_intent": "email:email_sendemail", "expected_slots": {"event_name": "osób z którymi się umówiłem"}, "split": "test"}
{"utterance": "staw wydarzenie urodziny marcina", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "urodziny", "person": "marcina"}, "split": "test"}
{"utterance": "proszę dodaj superwizję do mojego kalendarza", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "superwizję"}, "split": "test"}
{"utterance": "w okresie między pierwszym lutego i szesnastym marca jakie mam spotkania", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "pierwszym lutego i szesnastym marca", "event_name": "spotkania"}, "split": "test"}
{"utterance": "gdzie odbywa się przyjęcie urodzinowe marysi", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "przyjęcie urodzinowe", "person": "marysi"}, "split": "test"}
{"utterance": "utwórz spotkanie w moim kalendarzu", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkanie"}, "split": "test"}
{"utterance": "utwórz wydarzenie spotkanie w moim kalendarzu", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkanie"}, "split": "test"}
{"utterance": "jakie mam jeszcze przypomnienia", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "nastaw przypomnienie trzynastego na lunch z danielem", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "trzynastego", "meal_type": "lunch"}, "split": "test"}
{"utterance": "czy ustawiłam jakieś przypomnienia", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy mam jakieś przypomnienie przyjęcie urodzinowe", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "przyjęcie urodzinowe"}, "split": "test"}
{"utterance": "dwunasta trzydzieści masz już zarezerwowane spotkanie za dziesięć minut", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "dziesięć minut", "event_name": "spotkanie"}, "split": "test"}
{"utterance": "usuń wizytę u dentysty", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "wizytę u dentysty"}, "split": "test"}
{"utterance": "jaki dzisiaj jest dzień", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "prosze przypomnij mi żebym poszła na pocztę", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "nie pozwól mi zapomnieć kupić prezent dla siostry", "expected_intent": "calendar:calendar_set", "expected_slots": {"relation": "siostry"}, "split": "test"}
{"utterance": "jak długo potrwa mój lunch we wtorek", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "lunch", "date": "wtorek"}, "split": "test"}
{"utterance": "usuń wszystko z mojego kalendarza do końca roku", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "do końca roku"}, "split": "test"}
{"utterance": "powiadom mnie o mszach w niedziele o jedenastej rano", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "mszach", "date": "niedziele", "time": "o jedenastej rano"}, "split": "test"}
{"utterance": "dodaj jutrzejszą kolację do kalendarza", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "jutrzejszą", "meal_type": "kolację"}, "split": "test"}
{"utterance": "wpisz przyszłotygodniowy lunch do kalendarza", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "przyszłotygodniowy", "meal_type": "lunch"}, "split": "test"}
{"utterance": "proszę powiadom mnie dzień przed urodzinami grzesia", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "dzień przed", "event_name": "urodzinami", "person": "grzesia"}, "split": "test"}
{"utterance": "wyślij mi alert na godzinę przed moim następnym spotkaniem", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "godzinę przed", "event_name": "spotkaniem"}, "split": "test"}
{"utterance": "przypomnienie trzydzieści minut na spotkanie we wtorek", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "trzydzieści minut", "date": "wtorek"}, "split": "test"}
{"utterance": "usuń następne zaplanowane spotkanie", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "spotkanie"}, "split": "test"}
{"utterance": "muszę ustawić przypomnienie na piętnastego marca", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "piętnastego marca"}, "split": "test"}
{"utterance": "usuń urodziny z kalendarza", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "urodziny"}, "split": "test"}
{"utterance": "ustaw przypomnienie o dzisiejszym zebraniu wydziału o czwartej", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "dzisiejszym", "event_name": "zebraniu wydziału", "time": "o czwartej"}, "split": "test"}
{"utterance": "otwórz przypomnienie o przyszłotygodniowym spotkaniu menedżerów we wtorek", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "wtorek", "event_name": "spotkaniu menedżerów"}, "split": "test"}
{"utterance": "dodaj do kalendarza i powtórz", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "zapisz wydarzenie od piątej do szóstej po południu osiemnastego marca", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "od piątej do szóstej po południu", "date": "osiemnastego marca"}, "split": "test"}
{"utterance": "usuń spotkanie w przyszły poniedziałek", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "spotkanie", "date": "przyszły poniedziałek"}, "split": "test"}
{"utterance": "czego dotyczył protest wczoraj w południe na placu zamkowym", "expected_intent": "news:news_query", "expected_slots": {"date": "wczoraj", "time": "południe", "place_name": "placu zamkowym"}, "split": "test"}
{"utterance": "muszę wiedzieć więcej o paradzie w ten weekend", "expected_intent": "general:general_quirky", "expected_slots": {"event_name": "paradzie", "date": "ten weekend"}, "split": "test"}
{"utterance": "chcę wiedzieć więcej o targach w ten weekend", "expected_intent": "general:general_quirky", "expected_slots": {"date": "w ten weekend"}, "split": "test"}
{"utterance": "kiedy jest mój brunch z janką", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "brunch", "person": "z janką"}, "split": "test"}
{"utterance": "czy jest środa", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "środa"}, "split": "test"}
{"utterance": "daj mi znać o której jest spotkanie", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkanie"}, "split": "test"}
{"utterance": "co się dzieje czwartego grudnia", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "czwartego grudnia"}, "split": "test"}
{"utterance": "przypomnij mi o tym", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "utwórz osiemnastego marca powtarzające się spotkanie z okazji urodzin amelii", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "osiemnastego marca", "event_name": "z okazji urodzin amelii"}, "split": "test"}
{"utterance": "nastaw przypomnienie na pranie o ósmej po południu", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "ósmej po południu"}, "split": "test"}
{"utterance": "chcę zrobić pranie o ósmej wieczorem utwórz przypomnienie", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "o ósmej wieczorem"}, "split": "test"}
{"utterance": "przypomnij mi o moim spotkaniu", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkaniu"}, "split": "test"}
{"utterance": "ustaw przypomnienie o zażyciu leków codziennie w południe", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "codziennie", "timeofday": "południe"}, "split": "test"}
{"utterance": "powiedz mi o wydarzeniach", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "chcę wiedzieć więcej o tym wydarzeniu", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "usuń moją jutrzejszą kolację", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "jutrzejszą", "meal_type": "kolację"}, "split": "test"}
{"utterance": "usuń moją kolację w poniedziałek", "expected_intent": "calendar:calendar_remove", "expected_slots": {"meal_type": "kolację", "date": "poniedziałek"}, "split": "test"}
{"utterance": "przypomnij mi", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "przypomnij mi żeby iść na kolację z dawidem w piątek o piątej po południu", "expected_intent": "calendar:calendar_set", "expected_slots": {"meal_type": "kolację", "person": "z dawidem", "date": "piątek", "time": "o piątej po południu"}, "split": "test"}
{"utterance": "dodaj spotkanie w biurze z bartkiem o trzeciej po południu we wtorek", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkanie", "place_name": "w biurze", "person": "z bartkiem", "time": "o trzeciej po południu", "date": "wtorek"}, "split": "test"}
{"utterance": "powiedz mi o wydarzeniach bieżących pomiędzy wczoraj a dzisiaj rano", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "wczoraj", "timeofday": "rano"}, "split": "test"}
{"utterance": "anuluj wszystkie moje spotkania", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "spotkania"}, "split": "test"}
{"utterance": "pozbądź się wszystkich moich zaplanowanych wydarzeń", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "proszę ustaw spotkanie przy lunchu o dwunastej po południu w każdą środę w marcu", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "lunchu", "time": "o dwunastej po południu", "general_frequency": "w każdą środę", "date": "w marcu"}, "split": "test"}
{"utterance": "proszę zmodyfikuj mój kalendarz o to wydarzenie", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "ustaw przypomnienie o urodzinach mojej córki", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "urodzinach", "relation": "córki"}, "split": "test"}
{"utterance": "proszę wpisz wydarzenie do mojego kalendarza i oznacz je jako wydarzenie cykliczne", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "pokaż mi moje wydarzenia", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "jakie są moje plany na miesiąc maj", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "miesiąc maj"}, "split": "test"}
{"utterance": "przyślij mi przypomnienie o spotkaniu w środę o dziewiątej", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkaniu", "date": "w środę", "time": "o dziewiątej"}, "split": "test"}
{"utterance": "co jest zaplanowane na dzisiaj w moim kalendarzu", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "dodaj przyjęcie urodzinowe janki na jutro o drugiej po południu w świętokrzyskiej sześć do mojego kalendarza", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "przyjęcie urodzinowe", "person": "janki", "date": "jutro", "time": "drugiej po południu", "place_name": "świętokrzyskiej sześć"}, "split": "test"}
{"utterance": "jak wygląda mój plan na dzisiaj", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "pokaż moje spotkania jutro rano", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "spotkania", "date": "jutro", "timeofday": "rano"}, "split": "test"}
{"utterance": "przejrzyjmy wszystkie bieżące przypomnienia", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "usuń pozycję z kalendarza", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "dodaj wydarzenie do aplikacji kalendarz", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "przypomnienia o spotkaniach od trzeciej do piątej", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "spotkaniach", "time": "trzeciej do piątej"}, "split": "test"}
{"utterance": "przypomnij mi o wydarzeniu wizyta u dentysty które ja mam za dwa tygodnie", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "wizyta u dentysty", "time": "za dwa tygodnie"}, "split": "test"}
{"utterance": "przypomnij mi o", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "przypomnij mi proszę", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "dodaj do mojego kalendarza spotkanie z tomkiem o dziewiątej rano", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkanie", "person": "z tomkiem", "time": "o dziewiątej rano"}, "split": "test"}
{"utterance": "czy mam coś zaplanowane na dzisiaj", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "usuń moje spotkanie dzisiaj na drugą po południu", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "spotkanie", "time": "drugą po południu"}, "split": "test"}
{"utterance": "wyślij zaproszenia do kuby i alicji na brunch we wtorek o jedenastej rano", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "kuby i alicji", "event_name": "brunch", "date": "wtorek", "time": "jedenastej rano"}, "split": "test"}
{"utterance": "czy możesz zaznaczyć że jestem zajęta jutro o drugiej po południu", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "jutro", "time": "o drugiej po południu"}, "split": "test"}
{"utterance": "jakie informacje powinienem znać na moje dzisiejsze spotkania", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dzisiejsze", "event_name": "spotkania"}, "split": "test"}
{"utterance": "przypomnij mi że mam przyjęcie urodzinowe trzydziestego", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "przyjęcie urodzinowe", "date": "trzydziestego"}, "split": "test"}
{"utterance": "przypomnij mi żeby odebrać marka z lotniska o szóstej po południu", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "odebrać marka", "place_name": "lotniska", "time": "szóstej po południu"}, "split": "test"}
{"utterance": "przypomnij mi żeby podlać kwiatki w każdy wtorek czwartek i sobotę", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "podlać kwiatki", "general_frequency": "każdy wtorek czwartek i sobotę"}, "split": "test"}
{"utterance": "usuń to z mojego kalendarza", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "czy możesz mi przypomnieć żebym zamówił indyka na trzy tygodnie przed świętem dziękczynienia", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "zamówił indyka"}, "split": "test"}
{"utterance": "chcę zrobić notatkę w moim kalendarzu o jutrzejszym wydarzeniu w bibliotece", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "jutrzejszym", "place_name": "w bibliotece"}, "split": "test"}
{"utterance": "dodaj połączenie konferencyjne o czwartej po południu do moich przypomnień na dzisiaj", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "połączenie konferencyjne", "time": "czwartej po południu", "date": "dzisiaj"}, "split": "test"}
{"utterance": "powiadom mnie o wydarzeniu w moim kalendarzu", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "przypomnij mi o wydarzeniu w moim kalendarzu", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "usuń wszystkie wydarzenia z mojego kalendarza", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "w ostatnie trzy miesiące ile spotkań odbyłem z panem rychardem", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "ostatnie trzy miesiące", "event_name": "spotkań", "person": "z panem rychardem"}, "split": "test"}
{"utterance": "usuń wydarzenia z kalendarza", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "gdzie jest koncert ira", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "koncert ira"}, "split": "test"}
{"utterance": "gdzie jest moje spotkanie o dziewiątej rano", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "spotkanie", "time": "o dziewiątej rano"}, "split": "test"}
{"utterance": "czy dzisiaj jest dzień świętego patryka", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dzisiaj", "event_name": "dzień świętego patryka"}, "split": "test"}
{"utterance": "czy dziś są czyjeś urodziny", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "urodziny"}, "split": "test"}
{"utterance": "w wydarzeniu wezmą udział walenty i grażyna", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "grażyna"}, "split": "test"}
{"utterance": "ustaw przypomnienie w moim kalendarzu o moim spotkaniu dwudziestego piątego marca", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkaniu", "date": "dwudziestego piątego marca"}, "split": "test"}
{"utterance": "ustaw powtarzający się alarm przypominający o wydarzeniu na facebooku w którym muszę wziąć udział siódmego kwietnia", "expected_intent": "alarm:alarm_set", "expected_slots": {"media_type": "facebooku", "date": "siódmego kwietnia"}, "split": "test"}
{"utterance": "usuń wszystkie daty", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "nastaw alert na czternastą", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "czternastą"}, "split": "test"}
{"utterance": "pokaż mi mój plan na dzisiejsze popołudnie", "expected_intent": "calendar:calendar_query", "expected_slots": {"timeofday": "dzisiejsze popołudnie"}, "split": "test"}
{"utterance": "wpisz moją kolację w tawernie do kalendarza dzisiaj o dwudziestej pierwszej", "expected_intent": "calendar:calendar_set", "expected_slots": {"meal_type": "kolację", "place_name": "tawernie", "date": "dzisiaj", "time": "dwudziestej pierwszej"}, "split": "test"}
{"utterance": "czy mam spotkanie w sobotę dwudziestego piątego marca", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "spotkanie", "date": "sobotę dwudziestego piątego marca"}, "split": "test"}
{"utterance": "czy urodziny justyny są dwunastego kwietnia", "expected_intent": "calendar:calendar_query", "expected_slots": {"person": "justyny", "date": "dwunastego kwietnia"}, "split": "test"}
{"utterance": "wydarzenie", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "usuń wypad na zakupy który zaplanowałam na dwudziestego trzeciego marca", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "wypad na zakupy", "date": "dwudziestego trzeciego marca"}, "split": "test"}
{"utterance": "czy mam jakieś plany na siódmego lipca", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "siódmego lipca"}, "split": "test"}
{"utterance": "czy jestem wolna o szesnastej", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "szesnastej"}, "split": "test"}
{"utterance": "czy mam jakieś spotkanie dziś po południu", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "spotkanie", "timeofday": "dziś po południu"}, "split": "test"}
{"utterance": "więcej informacji o tym wydarzeniu", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "pokaż nadchodzące przypomnienia", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "informacja o nadchodzących wydarzeniach", "expected_intent": "recommendation:recommendation_events", "expected_slots": {}, "split": "test"}
{"utterance": "co ja mam ustawione dziewiętnastego o drugiej po południu", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dziewiętnastego", "time": "o drugiej po południu"}, "split": "test"}
{"utterance": "wyślij mi przypomnienie o moim spotkaniu z tomkiem w piątek", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkaniu", "person": "tomkiem", "date": "piątek"}, "split": "test"}
{"utterance": "czy wydarzenie w kalendarzu jest prawdziwe", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy mam coś zaplanowane na czwartego lipca tego roku", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "czwartego lipca tego roku"}, "split": "test"}
{"utterance": "usuń moją następną aktywność", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "usuń wszystkie wydarzenia z kalendarza", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "przypomnij o nadchodzącym spotkaniu z dawidem podsiadło", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkaniu", "person": "dawidem podsiadło"}, "split": "test"}
{"utterance": "olly ustaw alarm dla przypomnienia", "expected_intent": "alarm:alarm_set", "expected_slots": {}, "split": "test"}
{"utterance": "przypomnij mi żebym zadzwoniła do mamy co wtorek o dziesiątej rano", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "zadzwoniła do mamy", "general_frequency": "co wtorek", "time": "dziesiątej rano"}, "split": "test"}
{"utterance": "ustaw przypomnienie o jutrzejszym spotkaniu o dziewiątej rano", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "jutrzejszym", "event_name": "spotkaniu", "time": "dziewiątej rano"}, "split": "test"}
{"utterance": "ustaw alarm na spotkanie z piotrem dzisiaj o siódmej", "expected_intent": "alarm:alarm_set", "expected_slots": {"event_name": "spotkanie", "person": "piotrem", "date": "dzisiaj", "time": "siódmej"}, "split": "test"}
{"utterance": "usuń to", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "ustaw cykliczne przypomnienie na każdą niedzielę", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "każdą niedzielę"}, "split": "test"}
{"utterance": "informacje na temat ostatnich wydarzeń", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "nastaw wydarzenie w kalendarzu z innymi", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "wspomnij wydarzenie w kalendarzu z innymi", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "pokaż co mam dzisiaj po osiemnastej w kalendarzu", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dzisiaj", "time": "osiemnastej"}, "split": "test"}
{"utterance": "o której jest moje spotkanie czwartego kwietnia", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "spotkanie", "date": "czwartego kwietnia"}, "split": "test"}
{"utterance": "jaki jest mój plan na ten dzień", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "ten dzień"}, "split": "test"}
{"utterance": "usuń wszystkie wydarzenia z mojego kalendarza", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "weronika baby shower córki", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "weronika", "event_name": "baby shower córki"}, "split": "test"}
{"utterance": "dodaj wydarzenie spotkanie z jackiem", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkanie", "person": "z jackiem"}, "split": "test"}
{"utterance": "usuń przypomnienie", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "otwórz czas spotkania", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "spotkania"}, "split": "test"}
{"utterance": "ustaw na wieczór alarm w związku z nadchodzącym spotkaniem", "expected_intent": "calendar:calendar_set", "expected_slots": {"timeofday": "wieczór", "event_name": "spotkaniem"}, "split": "test"}
{"utterance": "przypomnij mi dwa dni przed urodzinami żony", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "urodzinami", "relation": "żony"}, "split": "test"}
{"utterance": "przypomnij mi ten tydzień", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "ten tydzień"}, "split": "test"}
{"utterance": "jakie mam dzisiaj spotkanie", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dzisiaj", "event_name": "spotkanie"}, "split": "test"}
{"utterance": "ustaw przypomnienie o bieżących rachunkach", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "bieżących rachunkach"}, "split": "test"}
{"utterance": "przypomnij mi o ważnych spotkaniach z szefem w tygodniu", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "ważnych spotkaniach z szefem", "time": "w tygodniu"}, "split": "test"}
{"utterance": "ok google usuń urodziny eryka z kalendarza", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "urodziny eryka"}, "split": "test"}
{"utterance": "utwórz wydarzenie", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "pokaż spotkania", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkania"}, "split": "test"}
{"utterance": "usuń wydarzenie rocznica z mojego kalendarza", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "rocznica"}, "split": "test"}
{"utterance": "czy wielkanoc jest czternastego tego miesiąca", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "wielkanoc", "date": "czternastego tego miesiąca"}, "split": "test"}
{"utterance": "proszę ustaw powiadomienie dwudziestego trzeciego października na spotkanie z moim kolegą", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "dwudziestego trzeciego października", "event_name": "spotkanie", "relation": "kolegą"}, "split": "test"}
{"utterance": "usuń wydarzenia z mojego kalendarza", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "spotkania od dwudziestego do dwudziestego piątego czerwca", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "spotkania", "time": "dwudziestego do dwudziestego piątego czerwca"}, "split": "test"}
{"utterance": "usuń z kalendarza wizytę u lekarza dzisiaj", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "wizytę u lekarza", "date": "dzisiaj"}, "split": "test"}
{"utterance": "przypomnienie rafał ślub", "expected_intent": "calendar:calendar_query", "expected_slots": {"person": "rafał", "event_name": "ślub"}, "split": "test"}
{"utterance": "nadchodzące wydarzenia w kalendarzu", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "nadchodzące wydarzenia"}, "split": "test"}
{"utterance": "ustaw przypomnienie o spotkaniu z moniką we wtorek", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkaniu", "person": "moniką", "date": "wtorek"}, "split": "test"}
{"utterance": "przypomnienie o wydarzeniu monika we wtorek", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "monika", "date": "wtorek"}, "split": "test"}
{"utterance": "powiadom mnie w dniu wydarzenia", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "jakie mam informacje w przypomnieniach", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy możesz wpisać urodziny leszka na dwudziestego drugiego czerwca", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "urodziny leszka", "date": "dwudziestego drugiego czerwca"}, "split": "test"}
{"utterance": "proszę usuń to wydarzenie", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "wyczyść wszystko w moim kalendarzu", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "usuń dzisiejszą kolację z sylwią", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "dzisiejszą kolację z sylwią"}, "split": "test"}
{"utterance": "czy mam spotkanie w moim kalendarzu dziś po południu", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "spotkanie", "timeofday": "dziś po południu"}, "split": "test"}
{"utterance": "o której zaczyna się koncert kacperczyka trzeciego czerwca", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "koncert kacperczyka", "date": "trzeciego czerwca"}, "split": "test"}
{"utterance": "wystawa marka rothko w warszawie dwudziestego piątego marca stwórz notkę o tym w tamten dzień", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "wystawa marka rothko w warszawie", "date": "dwudziestego piątego marca"}, "split": "test"}
{"utterance": "dodaj to do mojego kalendarza", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "ustaw cykliczne przypomnienie dla tego wydarzenia w kalendarzu", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "możesz przełożyć termin mojego spotkania", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "spotkania"}, "split": "test"}
{"utterance": "które dni muszę zarezerwować", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "pokaż mi wydarzenia z mojego kalendarza z pracy na następny tydzień", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "pracy", "date": "następny tydzień"}, "split": "test"}
{"utterance": "o której włoska kawiarnia jest zamknięta między lunchem a kolacją", "expected_intent": "calendar:calendar_query", "expected_slots": {"business_name": "włoska kawiarnia"}, "split": "test"}
{"utterance": "kiedy jest oficjalne rozpoczęcie super bowl", "expected_intent": "qa:qa_factoid", "expected_slots": {"event_name": "super bowl"}, "split": "test"}
{"utterance": "o której ma się zacząć kolacja w strojach wieczorowych", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "kolacja w strojach wieczorowych"}, "split": "test"}
{"utterance": "dodaj do mojego kalendarza kolację z marią w sobotę", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "kolację z marią", "date": "w sobotę"}, "split": "test"}
{"utterance": "w piątek zapisz wizytę u dentysty o trzeciej", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "piątek", "event_name": "wizytę u dentysty", "time": "o trzeciej"}, "split": "test"}
{"utterance": "przypomnij", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "czy mój kalendarz został uaktualniony w ciągu ostatnich dziesięciu minut", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "ostatnich dziesięciu minut"}, "split": "test"}
{"utterance": "odwołaj plany odebrania rodziców z lotniska", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "odebrania rodziców", "place_name": "z lotniska"}, "split": "test"}
{"utterance": "zobacz jacy klienci będą brać udział w spotkaniu", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "spotkaniu"}, "split": "test"}
{"utterance": "nastaw tę datę na powtarzanie", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "proszę usuń to wydarzenie z mojego kalendarza", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "co zaplanowałem w tym tygodniu", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "w tym tygodniu"}, "split": "test"}
{"utterance": "proszę sprawdź moje przypomnienia", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "graj moją radiostację", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "graj r. m. f. f. m.", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "r. m. f. f. m."}, "split": "test"}
{"utterance": "niech ktoś włączy radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "graj moją stację", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "czy możesz włączyć radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "włącz open f. m.", "expected_intent": "play:play_radio", "expected_slots": {"app_name": "open f. m."}, "split": "test"}
{"utterance": "przejdź na kanał sto jeden i trzy f. m.", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "sto jeden i trzy f. m."}, "split": "test"}
{"utterance": "włącz radio i graj kanał sto jeden i trzy f. m.", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "sto jeden i trzy f. m."}, "split": "test"}
{"utterance": "chcę posłuchać radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "proszę włącz radio antyradio", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "antyradio"}, "split": "test"}
{"utterance": "otwórz radio aplikacja", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "przełącz na sto jeden i trzy f. m.", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "sto jeden i trzy f. m."}, "split": "test"}
{"utterance": "graj dziewięćdziesiąt dziewięć i osiem f. m.", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "dziewięćdziesiąt dziewięć i osiem f. m."}, "split": "test"}
{"utterance": "graj jedynie w radio sto jeden i trzy f. m.", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "sto jeden i trzy f. m."}, "split": "test"}
{"utterance": "graj radio zet", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "puść", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "włącz radio zet", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "graj złote przeboje", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "złote przeboje"}, "split": "test"}
{"utterance": "włącz klasyczne hity", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "klasyczne hity"}, "split": "test"}
{"utterance": "graj radio zet moralne salto", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "radio zet"}, "split": "test"}
{"utterance": "włącz radio teraz", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "włącz radio teraz", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "włącz radio fm", "expected_intent": "play:play_radio", "expected_slots": {"app_name": "radio fm"}, "split": "test"}
{"utterance": "proszę włącz teraz radio zet", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "radio zet"}, "split": "test"}
{"utterance": "proszę przeskanuj stację na której jestem teraz", "expected_intent": "play:play_radio", "expected_slots": {"date": "teraz"}, "split": "test"}
{"utterance": "zagraj", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "alexa zmień stację radiową", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "graj proszę radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "zacznij grać jakąś muzykę z radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "wystartuj radio na sto jeden i trzy f. m.", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "sto jeden i trzy f. m."}, "split": "test"}
{"utterance": "posłuchaj radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "stacje radiowe", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "zagraj hity w radiu", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "graj hity muzyczne", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "chcę przejść w radiu na sto jeden i trzy f. m.", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "sto jeden i trzy f. m."}, "split": "test"}
{"utterance": "odtwarzaj eska", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "eska"}, "split": "test"}
{"utterance": "hej olly graj radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "graj sto jeden i trzy f. m. stacji radiowej antyradio", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "sto jeden i trzy f. m."}, "split": "test"}
{"utterance": "załącz eska", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "eska"}, "split": "test"}
{"utterance": "włącz radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "chcę osłuchać stacji z muzyką disco polo", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "stacji z muzyką disco polo"}, "split": "test"}
{"utterance": "możesz puścić mi w radiu jakiś rapowy kawałek", "expected_intent": "play:play_radio", "expected_slots": {"music_genre": "rapowy"}, "split": "test"}
{"utterance": "graj piosenkę mam tę moc", "expected_intent": "play:play_music", "expected_slots": {"song_name": "mam tę moc"}, "split": "test"}
{"utterance": "puść hip hop z lat dziewięćdziesiątych", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "hip hop z lat dziewięćdziesiątych"}, "split": "test"}
{"utterance": "włącz stację muzyczną z disco polo", "expected_intent": "play:play_radio", "expected_slots": {"music_genre": "disco polo"}, "split": "test"}
{"utterance": "czy możesz zagrać stację f. m. która gra piosenki popowe", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "f. m.", "music_genre": "popowe"}, "split": "test"}
{"utterance": "olly posłuchajmy sto jeden i trzy f. m.", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "sto jeden i trzy f. m."}, "split": "test"}
{"utterance": "proszę znajdź obecną radiostację i graj karol paciorek", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "graj jakikolwiek pop kanał f. m.", "expected_intent": "play:play_radio", "expected_slots": {"music_genre": "pop", "radio_name": "f. m."}, "split": "test"}
{"utterance": "zacznij grać doctor who w transmisji radiowej", "expected_intent": "play:play_radio", "expected_slots": {"media_type": "transmisji radiowej"}, "split": "test"}
{"utterance": "włącz program w radio zet", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "radio zet"}, "split": "test"}
{"utterance": "przełącz na jakiś r. m. f. f. m. i graj to na moje głośniki", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "r. m. f. f. m.", "device_type": "głośniki"}, "split": "test"}
{"utterance": "graj piosenkę mniej niż zero w radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "chcę posłuchać nowości w radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "chcę usłyszeć program imponderabilia", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "graj muzykę romantyczną na eska", "expected_intent": "play:play_radio", "expected_slots": {"media_type": "muzykę", "music_genre": "romantyczną", "radio_name": "eska"}, "split": "test"}
{"utterance": "puść radiostację w radio", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "radiostację"}, "split": "test"}
{"utterance": "czy możesz zagrać dla mnie hard as a rock", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "graj radio z ciągłymi piosenkami", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "graj koncert na żywo britney spears", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "ok google sto jeden i trzy f. m.", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "sto jeden i trzy f. m."}, "split": "test"}
{"utterance": "zmień stację na sto jeden i trzy f. m.", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "sto jeden i trzy f. m."}, "split": "test"}
{"utterance": "graj program anonimowi alkoholicy na sto jeden i trzy f. m.", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "sto jeden i trzy f. m."}, "split": "test"}
{"utterance": "szukaj podcasty dotyczące męskich problemów", "expected_intent": "play:play_podcasts", "expected_slots": {"media_type": "podcasty", "podcast_descriptor": "męskich problemów"}, "split": "test"}
{"utterance": "piosenki z r. m. f. f. m.", "expected_intent": "play:play_radio", "expected_slots": {"media_type": "piosenki", "radio_name": "r. m. f. f. m."}, "split": "test"}
{"utterance": "graj radio country", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "radio country"}, "split": "test"}
{"utterance": "puść mi tą poranną audycję na sto jeden i trzy f. m.", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "sto jeden i trzy f. m."}, "split": "test"}
{"utterance": "graj dla mnie radio samochodowe", "expected_intent": "play:play_radio", "expected_slots": {"device_type": "radio samochodowe"}, "split": "test"}
{"utterance": "czy mogę posłuchać kryminatorium w radio znajdującym się w sypialni", "expected_intent": "play:play_radio", "expected_slots": {"house_place": "sypialni"}, "split": "test"}
{"utterance": "czy możesz mi pomóc w słuchaniu radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "graj radio zet dla mnie", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "radio zet"}, "split": "test"}
{"utterance": "radio proszę", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "zacznij moją playlistę na open f. m.", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "open f. m."}, "split": "test"}
{"utterance": "otwórz spotify i otwórz ćwiczenia", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "odtwarzaj netflix na moim p. s. cztery", "expected_intent": "play:play_radio", "expected_slots": {"app_name": "netflix", "device_type": "p. s. cztery"}, "split": "test"}
{"utterance": "graj mi skoczny kawałek na głośniki", "expected_intent": "play:play_music", "expected_slots": {"music_descriptor": "skoczny"}, "split": "test"}
{"utterance": "chcę posłuchać be more chill neda vizzini", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "be more chill", "audiobook_author": "neda vizzini"}, "split": "test"}
{"utterance": "czy możesz zagrać mój ulubiony audio book tarzan", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "tarzan"}, "split": "test"}
{"utterance": "wznów mój audio book od remigiusz mróz", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "wznów", "audiobook_author": "remigiusz mróz"}, "split": "test"}
{"utterance": "czy możesz włączyć inwigilację", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "włączyć", "audiobook_name": "inwigilację"}, "split": "test"}
{"utterance": "wznów harry potter z miejsca gdzie ja skończyłem oglądać ostatnim razem", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "wznów", "audiobook_name": "harry potter"}, "split": "test"}
{"utterance": "zatrzymaj odtwarzanie książki", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "zatrzymaj"}, "split": "test"}
{"utterance": "graj audiobook historia rzymu", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "historia rzymu"}, "split": "test"}
{"utterance": "wznów odtwarzanie dziecko wołając do niego", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "wznów"}, "split": "test"}
{"utterance": "odtwórz biografię jackie kennedy", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "biografię jackie kennedy"}, "split": "test"}
{"utterance": "graj jingle bells", "expected_intent": "play:play_music", "expected_slots": {"song_name": "jingle bells"}, "split": "test"}
{"utterance": "otwórz i graj jingle bells", "expected_intent": "play:play_music", "expected_slots": {"song_name": "jingle bells"}, "split": "test"}
{"utterance": "wznów stary człowiek i morze", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "wznów", "audiobook_name": "stary człowiek i morze"}, "split": "test"}
{"utterance": "wznów harry potter i kamień filozoficzny", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "wznów", "audiobook_name": "harry potter i kamień filozoficzny"}, "split": "test"}
{"utterance": "zatrzymaj audiobook", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "zatrzymaj", "media_type": "audiobook"}, "split": "test"}
{"utterance": "otwórz audiobook kod da vinci", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "audiobook", "audiobook_name": "kod da vinci"}, "split": "test"}
{"utterance": "czy możesz włączyć muzykę klasyczną dla mnie", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "klasyczną"}, "split": "test"}
{"utterance": "odtwórz duma i uprzedzenie", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "duma i uprzedzenie"}, "split": "test"}
{"utterance": "olly posłuchajmy polowania na czerwony październik", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "polowania na czerwony październik"}, "split": "test"}
{"utterance": "zatrzymaj odtwarzanie", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "zatrzymaj odtwarzanie"}, "split": "test"}
{"utterance": "zatrzymaj", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "zatrzymaj"}, "split": "test"}
{"utterance": "graj audiobook przedwiośnie", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "audiobook", "audiobook_name": "przedwiośnie"}, "split": "test"}
{"utterance": "czytaj audiobook dla mnie", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "czytaj", "media_type": "audiobook"}, "split": "test"}
{"utterance": "proszę kontynuuj czytanie audiobooka", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "kontynuuj czytanie", "media_type": "audiobooka"}, "split": "test"}
{"utterance": "graj romantyczne piosenki", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "wznów ale jazz", "expected_intent": "play:play_music", "expected_slots": {"player_setting": "wznów", "song_name": "ale jazz"}, "split": "test"}
{"utterance": "otwórz audiobook harrypotter i włącz tam gdzie skończyłem", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "audiobook", "audiobook_name": "harrypotter"}, "split": "test"}
{"utterance": "proszę odtwórz ten playback w audiobooku", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "audiobooku"}, "split": "test"}
{"utterance": "wznów utwór z audiobooka the beatles", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "wznów", "media_type": "audiobooka", "artist_name": "beatles"}, "split": "test"}
{"utterance": "kontynuuj ostatni rozdział audiobooka którego słuchałem", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "kontynuuj", "media_type": "audiobooka"}, "split": "test"}
{"utterance": "wznów inwigilacja tam gdzie skończyłem", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "wznów", "audiobook_name": "inwigilacja"}, "split": "test"}
{"utterance": "alexa zacznij czytać od ostatniej sesji książki wielki gatsby", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "zacznij", "audiobook_name": "wielki gatsby"}, "split": "test"}
{"utterance": "rozpocznij odtwarzanie audio zmierzch ponownie", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "rozpocznij", "audiobook_name": "zmierzch"}, "split": "test"}
{"utterance": "włącz książkę zmierzch", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "zmierzch"}, "split": "test"}
{"utterance": "wybieram zagranie audio z pierwszego", "expected_intent": "play:play_audiobook", "expected_slots": {}, "split": "test"}
{"utterance": "włącz moją ulubioną książkę", "expected_intent": "play:play_audiobook", "expected_slots": {}, "split": "test"}
{"utterance": "czytaj dalej książkę remigiusza mroza", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "czytaj", "media_type": "książkę", "audiobook_author": "remigiusza mroza"}, "split": "test"}
{"utterance": "proszę wznów mojego audiobooka", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "wznów", "media_type": "audiobooka"}, "split": "test"}
{"utterance": "otwórz audiobook", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "audiobook"}, "split": "test"}
{"utterance": "proszę graj audio pamiętnik", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "pamiętnik"}, "split": "test"}
{"utterance": "nie przerywaj odtwarzania tajemniczego ogrodu", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "nie przerywaj odtwarzania", "audiobook_name": "tajemniczego ogrodu"}, "split": "test"}
{"utterance": "rozpocznij rozdział piąty króla", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "rozpocznij rozdział piąty", "audiobook_name": "króla"}, "split": "test"}
{"utterance": "cofnij inwigilację remigiusza mroza", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "cofnij", "audiobook_name": "inwigilację", "audiobook_author": "remigiusza mroza"}, "split": "test"}
{"utterance": "odtwórz losowo miłosny audio book", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "audio book"}, "split": "test"}
{"utterance": "kontynuuj odtwarzanie inwigilacja", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "kontynuuj odtwarzanie", "audiobook_name": "inwigilacja"}, "split": "test"}
{"utterance": "jak długo mam gotować jajka", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"cooking_type": "gotować", "food_type": "jajka"}, "split": "test"}
{"utterance": "jak zrobić pizzę", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "pizzę"}, "split": "test"}
{"utterance": "jak długo mam gotować jajko", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"cooking_type": "gotować", "food_type": "jajko"}, "split": "test"}
{"utterance": "podaj przepis na", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "jak długo mam gotować jajko", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"cooking_type": "gotować", "food_type": "jajko"}, "split": "test"}
{"utterance": "jak długo mam gotować jajko", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"cooking_type": "gotować", "food_type": "jajko"}, "split": "test"}
{"utterance": "znajdź przepis na ciasto czekoladowe", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "ciasto czekoladowe"}, "split": "test"}
{"utterance": "jak ugotować kurczaka w maśle", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"cooking_type": "ugotować", "food_type": "kurczaka w maśle"}, "split": "test"}
{"utterance": "jakie składniki są potrzebne aby upiec tort red velvet", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "tort red velvet"}, "split": "test"}
{"utterance": "jak długo będę czekać na wegetariańską lasagnę", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "wegetariańską lasagnę"}, "split": "test"}
{"utterance": "wyświetl filmik z przepisem", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "wyświetl filmik jak zrobić kurczaka z rożna", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"media_type": "filmik", "food_type": "kurczaka z rożna"}, "split": "test"}
{"utterance": "jaki jest zamiennik masła", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"ingredient": "masła"}, "split": "test"}
{"utterance": "w jakiej temperaturze piekarnika najlepiej przyrządzić pieczone ziemniaki", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"cooking_type": "pieczone", "ingredient": "ziemniaki"}, "split": "test"}
{"utterance": "jaki znasz najlepszy przepis na makaron al dente", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "makaron al dente"}, "split": "test"}
{"utterance": "wiedza o przyrządzaniu potraw", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "jak najprościej ugotować makaron", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "makaron"}, "split": "test"}
{"utterance": "jakiego składnika mogę użyć zamiast szafranu", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"ingredient": "szafranu"}, "split": "test"}
{"utterance": "co lepiej przewodzi ciepło miedziany garnek czy garnek z żeliwnym spodem", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "podaj listę składników na tosty z serem", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "tosty z serem"}, "split": "test"}
{"utterance": "znajdź wideo z youtube z potrawami kuchni włoskiej", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"media_type": "wideo z youtube", "food_type": "włoskiej"}, "split": "test"}
{"utterance": "ugotuj porcję owsianki", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"ingredient": "owsianki"}, "split": "test"}
{"utterance": "jakie menu jest na dzisiaj dodaj trochę gotowanych warzyw", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"date": "dzisiaj", "food_type": "gotowanych warzyw"}, "split": "test"}
{"utterance": "gotowanie", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"cooking_type": "gotowanie"}, "split": "test"}
{"utterance": "podaj przepis na curry", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "curry"}, "split": "test"}
{"utterance": "jak w pięciu krokach przyrządzić pieczeń świąteczną", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "pieczeń świąteczną"}, "split": "test"}
{"utterance": "jak upiec dwanaście ciasteczek owsianych", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "ciasteczek owsianych"}, "split": "test"}
{"utterance": "co jest potrzebne by zrobić pieczeń z jagnięciny", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "pieczeń z jagnięciny"}, "split": "test"}
{"utterance": "wskazówki jak przygotować posiłek", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "znajdź przepis na potrawę w której wykorzystam składniki na mojej liście zakupów", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"list_name": "zakupów"}, "split": "test"}
{"utterance": "potrzebuję fajne pomysły na posiłki", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "podaj przepis na domowy rosół z makaronem", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "rosół z makaronem"}, "split": "test"}
{"utterance": "jak przyrządzić indyka", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "indyka"}, "split": "test"}
{"utterance": "jak zrobić kanapkę drwala", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "kanapkę drwala"}, "split": "test"}
{"utterance": "jak zrobić pizzę", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "pizzę"}, "split": "test"}
{"utterance": "jaki masz przepis na kurczaka z rożna", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "kurczaka z rożna"}, "split": "test"}
{"utterance": "co powinnam zrobić na obiad", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"meal_type": "obiad"}, "split": "test"}
{"utterance": "podaj czas pieczenia kurczaka w piekarniku", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "kurczaka", "device_type": "piekarniku"}, "split": "test"}
{"utterance": "czy można zamienić sodę oczyszczoną na proszek do pieczenia", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"ingredient": "sodę oczyszczoną na proszek do pieczenia"}, "split": "test"}
{"utterance": "znajdź przepis na dzisiejszą kolację", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"timeofday": "dzisiejszą", "meal_type": "kolację"}, "split": "test"}
{"utterance": "co przyrządzić na kolację", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"event_name": "kolację"}, "split": "test"}
{"utterance": "przyrządźmy wspólnie klopsiki", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "klopsiki"}, "split": "test"}
{"utterance": "powiedz jak przyrządzić klopsiki", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "klopsiki"}, "split": "test"}
{"utterance": "znajdź przepis na tuńczyka", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "tuńczyka"}, "split": "test"}
{"utterance": "jak zrobić lasagnę", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "lasagnę"}, "split": "test"}
{"utterance": "chcę cheesburgera", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "cheesburgera"}, "split": "test"}
{"utterance": "wiesz jak ugotować risotto", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "risotto"}, "split": "test"}
{"utterance": "podaj przepis na risotto", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "risotto"}, "split": "test"}
{"utterance": "jak długo smażyć stek żeby był średnio krwisty", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "stek"}, "split": "test"}
{"utterance": "znajdź przepis na ryż z warzywami", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "ryż z warzywami"}, "split": "test"}
{"utterance": "jak długo piecze się siedmiokilogramowego indyka", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "indyka"}, "split": "test"}
{"utterance": "jaka jest różnica pomiędzy pieczeniem a opiekaniem", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "jak długo smażyć stek żeby był średnio krwisty", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "stek"}, "split": "test"}
{"utterance": "jak zrobić tacos", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "tacos"}, "split": "test"}
{"utterance": "powiedz jak zrobić nadziewane papryki", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "nadziewane papryki"}, "split": "test"}
{"utterance": "jak długo gotuje się makaron", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "znajdź przepis na szarlotkę", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "szarlotkę"}, "split": "test"}
{"utterance": "jaki masz przepis na zupę rybną", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "zupę rybną"}, "split": "test"}
{"utterance": "jak przyrządzić spaghetti z cukinii", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "spaghetti z cukinii"}, "split": "test"}
{"utterance": "ile jajek potrzebuję na omlet", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "omlet"}, "split": "test"}
{"utterance": "wyświetl najlepszy przepis na spaghetti", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "spaghetti"}, "split": "test"}
{"utterance": "jak ugotować ryż", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "ryż"}, "split": "test"}
{"utterance": "lista sławnych przepisów na biryani", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "biryani"}, "split": "test"}
{"utterance": "przepisy na dania gotowe w godzinę", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "znajdź w internecie oferty sprzedaży foremek na babeczki", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "znajdź przepis na gulasz w serwisie kwestiasmaku", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "gulasz", "app_name": "kwestiasmaku"}, "split": "test"}
{"utterance": "jakie składniki potrzebuję aby upiec ciasto", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"cooking_type": "upiec", "food_type": "ciasto"}, "split": "test"}
{"utterance": "to musi być smak", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "podaj przepis na makaron", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "makaron"}, "split": "test"}
{"utterance": "zagraj ze mną w grę", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "włącz super mario", "expected_intent": "play:play_game", "expected_slots": {"game_name": "super mario"}, "split": "test"}
{"utterance": "graj w scrabble ze mną", "expected_intent": "play:play_game", "expected_slots": {"game_name": "scrabble"}, "split": "test"}
{"utterance": "otwórz aplikację szachy i zacznij grę", "expected_intent": "play:play_game", "expected_slots": {"game_name": "szachy"}, "split": "test"}
{"utterance": "zagrajmy w warcaby", "expected_intent": "play:play_game", "expected_slots": {"game_name": "warcaby"}, "split": "test"}
{"utterance": "zagrajmy w statki", "expected_intent": "play:play_game", "expected_slots": {"game_name": "statki"}, "split": "test"}
{"utterance": "zagraj proszę w age of empire", "expected_intent": "play:play_game", "expected_slots": {"game_name": "age of empire"}, "split": "test"}
{"utterance": "proszę rozpocznij warcaby", "expected_intent": "play:play_game", "expected_slots": {"game_name": "warcaby"}, "split": "test"}
{"utterance": "graj w grę kółko i krzyżyk", "expected_intent": "play:play_game", "expected_slots": {"game_name": "kółko i krzyżyk"}, "split": "test"}
{"utterance": "rozpocznij grę ze mną", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "czy możesz proszę zagrać dla mnie w grę temple run", "expected_intent": "play:play_game", "expected_slots": {"game_name": "temple run"}, "split": "test"}
{"utterance": "uruchom grę", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "odtwórz ping pong", "expected_intent": "play:play_game", "expected_slots": {"game_name": "ping pong"}, "split": "test"}
{"utterance": "grajmy w kółko i krzyżyk", "expected_intent": "play:play_game", "expected_slots": {"game_name": "kółko i krzyżyk"}, "split": "test"}
{"utterance": "graj football ze mną", "expected_intent": "play:play_game", "expected_slots": {"game_name": "football"}, "split": "test"}
{"utterance": "chcę pograć w fifa siedemnaście", "expected_intent": "play:play_game", "expected_slots": {"game_name": "fifa siedemnaście"}, "split": "test"}
{"utterance": "puść", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "otwórz warcaby", "expected_intent": "play:play_game", "expected_slots": {"game_name": "warcaby"}, "split": "test"}
{"utterance": "olly zagraj ze mną w pokera", "expected_intent": "play:play_game", "expected_slots": {"game_name": "pokera"}, "split": "test"}
{"utterance": "zagraj dla mnie w grę harry potter i komnata tajemnic", "expected_intent": "play:play_game", "expected_slots": {"game_name": "harry potter i komnata tajemnic"}, "split": "test"}
{"utterance": "proszę otwórz grę szachy chcę z tobą zagrać", "expected_intent": "play:play_game", "expected_slots": {"game_name": "szachy"}, "split": "test"}
{"utterance": "rozpocznij grę i graj ze mną", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "zagraj ty bądź właścicielem i nigdy nie zmieniaj pozycji", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "zagraj w wyścigi", "expected_intent": "play:play_game", "expected_slots": {"game_name": "wyścigi"}, "split": "test"}
{"utterance": "grajmy w kółko i krzyżyk", "expected_intent": "play:play_game", "expected_slots": {"game_name": "kółko i krzyżyk"}, "split": "test"}
{"utterance": "dawaj warcaby", "expected_intent": "play:play_game", "expected_slots": {"game_name": "warcaby"}, "split": "test"}
{"utterance": "graj w szachy", "expected_intent": "play:play_game", "expected_slots": {"game_name": "szachy"}, "split": "test"}
{"utterance": "rozpocznij grę", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "graj w grę kółko i krzyżyk jako drugi gracz", "expected_intent": "play:play_game", "expected_slots": {"game_name": "kółko i krzyżyk"}, "split": "test"}
{"utterance": "powinniśmy grać w need for speed na dużej prędkości", "expected_intent": "play:play_game", "expected_slots": {"game_name": "need for speed"}, "split": "test"}
{"utterance": "zacznij dla nas krzyżówkę", "expected_intent": "play:play_game", "expected_slots": {"game_name": "krzyżówkę"}, "split": "test"}
{"utterance": "proszę otwórz i graj ze mną w szachy", "expected_intent": "play:play_game", "expected_slots": {"game_name": "szachy"}, "split": "test"}
{"utterance": "otwórz gry", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "otwórz warcaby dla mnie i ciebie", "expected_intent": "play:play_game", "expected_slots": {"game_name": "warcaby"}, "split": "test"}
{"utterance": "czego jeszcze brakuje w dzienniku", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "proszę wyczyść moją listę zakupów", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "zakupów"}, "split": "test"}
{"utterance": "usuń pierwszą pozycję na liście", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "usuń moją listę zadań", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "zadań"}, "split": "test"}
{"utterance": "jakieś specjalne wydarzenia na mojej liście", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "usuń wydarzenia z mojej listy", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "usuń pozycję", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "co będę dzisiaj robić", "expected_intent": "lists:lists_query", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "co jest na mojej liście rzeczy do zrobienia", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "rzeczy do zrobienia"}, "split": "test"}
{"utterance": "pozbądź się listy", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "muszę zrobić nową listę rzeczy do zrobienia", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "do zrobienia"}, "split": "test"}
{"utterance": "pomóz mi zrobić moja listę kuchenną", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "kuchenną"}, "split": "test"}
{"utterance": "co jest na mojej liście rzeczy do zrobienia", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "rzeczy do zrobienia"}, "split": "test"}
{"utterance": "usuń ołówek z listy materiałów papierniczych", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "materiałów papierniczych"}, "split": "test"}
{"utterance": "mogę prosić o listę pięciogwiazdkowych hoteli w paryżu", "expected_intent": "qa:qa_factoid", "expected_slots": {"list_name": "pięciogwiazdkowych hoteli", "place_name": "paryżu"}, "split": "test"}
{"utterance": "dodaj brokuły do mojej listy zakupów", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "zakupów"}, "split": "test"}
{"utterance": "dodaj pocztę do mojej listy obowiązków na sobotę", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "obowiązków", "date": "sobotę"}, "split": "test"}
{"utterance": "usuń listy", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "wypisz wszystko co pozostało w moim zapytaniu", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "chcę zrobić listę zakupów na ten tydzień", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "zakupów", "time": "tydzień"}, "split": "test"}
{"utterance": "usuń z playlisty moją listę starych angielskich piosenek", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "starych angielskich"}, "split": "test"}
{"utterance": "usuń moją płatność za samochód z mojego kalendarza", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "usuń listę", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "jaka lista rzeczy do zrobienia na dzisiaj", "expected_intent": "lists:lists_query", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "proszę powtórz moją listę zakupów", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "zakupów"}, "split": "test"}
{"utterance": "czy możesz stworzyć dla mnie listę", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "usuń wszystkie listy", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "usuń listę starszych kawałków", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "starszych kawałków"}, "split": "test"}
{"utterance": "sprawdż moją listę rzeczy do zrobienia", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "rzeczy do zrobienia"}, "split": "test"}
{"utterance": "android", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "pokaż wszystkie moje listy", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "zresetuj moja listę lokalizacji", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "lokalizacji"}, "split": "test"}
{"utterance": "pokaż zawartość mojej listy", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "usuń drugi rząd z listy", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "proszę uzupełnij moją listę zakupów o jeden galon dwuprocentowego mleka", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "zakupów"}, "split": "test"}
{"utterance": "wyszukaj pozycję", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "dodaj paav bhaji do menu", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "stówrz listę która jest dostępna", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "dodaj detergent do listy rzeczy które muszę kupić", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "rzeczy które muszę kupić"}, "split": "test"}
{"utterance": "dodaj czerwone wino do listy zakupów", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "listy zakupów"}, "split": "test"}
{"utterance": "usuń listę o nazwie czas na imprezę", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "czas na imprezę"}, "split": "test"}
{"utterance": "odczytaj harmonogramy z listy", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "harmonogramy"}, "split": "test"}
{"utterance": "proszę usuń następującą listę", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "usuń aktualną listę", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "dodaj wydano pięć dolarów do mojej listy wydatków", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "wydatków"}, "split": "test"}
{"utterance": "co jest dzisiaj na mojej liście rzeczy do zrobienia", "expected_intent": "lists:lists_query", "expected_slots": {"date": "dzisiaj", "list_name": "rzeczy do zrobienia"}, "split": "test"}
{"utterance": "o jakie listy pytałem", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "jeśli jest tam wydarzenie pokaz usuń je", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "zamień", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "poinformuj mnie o pozycjach na liście", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "dodaj to do listy", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "stwórz nowa listę", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "czy możesz usunąć tę pozycję z listy", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "przeczytaj co jest na mojej liście", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy możesz dodać pozycję do listy artykułów spożywczych", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "artykułów spożywczych"}, "split": "test"}
{"utterance": "usuń tę pozycję", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "co już umieściłem na liście do biedronki", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "liście do biedronki"}, "split": "test"}
{"utterance": "usuń moją listę rzeczy do zrobienia proszę", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "rzeczy do zrobienia"}, "split": "test"}
{"utterance": "wyczyść listę zakupów", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "zakupów"}, "split": "test"}
{"utterance": "jakie są pozycje na mojej liście zakupów", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "zakupów"}, "split": "test"}
{"utterance": "przeczytaj mi moją listę zakupów", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "zakupów"}, "split": "test"}
{"utterance": "pokaż mi tę listę którą zrobiłam dwa dni temu", "expected_intent": "lists:lists_query", "expected_slots": {"date": "dwa dni"}, "split": "test"}
{"utterance": "usuń platki z mojej listy zakupów", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "zakupów"}, "split": "test"}
{"utterance": "usunąć wizytę u dentysty z dzisiejszego kalendarza", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "wizytę u dentysty", "date": "dzisiejszego"}, "split": "test"}
{"utterance": "czy moja lista zakupów jest gotowa", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "zakupów"}, "split": "test"}
{"utterance": "usuń wszystko z mojej listy aktywności dzisiaj", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "aktywności", "date": "dzisiaj"}, "split": "test"}
{"utterance": "usuń pozycję z listy", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "muszę zrobić listę", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "przeczytaj moja listę artykułów spożywczych", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "artykułów spożywczych"}, "split": "test"}
{"utterance": "proszę pokaż mi listę którą mam", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "usuń ostatnią wypisana pozycję", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "dodaj banany do listy zakupów spożywczych", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "zakupów spożywczych"}, "split": "test"}
{"utterance": "dodja pastę do zębów z listy zakupów", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "zakupów"}, "split": "test"}
{"utterance": "utwórz playlistę", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "olly wyczyść listę", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "wyczyść listę", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "usuń listę zakupów", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "zakupów"}, "split": "test"}
{"utterance": "usuń wszystko", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "jakie są moje dlasze plany", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "usuń mleko z mojej listy zakupów spożywczych", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "zakupów spożywczych"}, "split": "test"}
{"utterance": "nie mam wystarczająco dużo pieniędzy aby teraz kupić przełącznik nintendo czy możesz go usunąć z mojej listy życzeń amazon", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "usuń tę listę z innych", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "jakie sa moje dostępne listy", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "weż to stąd", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "muszę sprawdzić moją listę", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "nową listę", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "olly czy coś jeszcze zostało na liście", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "usuń moją listę", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "utwórz listę zakupów proszę", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "zakupów"}, "split": "test"}
{"utterance": "usuń pozycję z mojej listy", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "proszę dodaj listę rzeczy do kupienia na imprezę", "expected_intent": "lists:lists_createoradd", "expected_slots": {"event_name": "imprezę"}, "split": "test"}
{"utterance": "olly przeczytaj mi moje listy", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "zacznij nową listę", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "przeczytaj mo moją listę", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "co jest na mojej playliście", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "proszę usuń moją listę ulubionych albumów", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "ulubionych albumów"}, "split": "test"}
{"utterance": "proszę dodaj cukier do mojej listy artykułów spożywczych", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "artykułów spożywczych"}, "split": "test"}
{"utterance": "zrób nową listę zakupów", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "zakupów"}, "split": "test"}
{"utterance": "ile list mam w kontaktach", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "jakie grupy są w moich kontaktach", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "przypomnij mi ile mam list", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "usuń tę pozycję z listy", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "usuń ostatnią frazę", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "co jest na twojej liście teraz", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "powiedz mi co jest na liście", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "umieśc hamburgera na mojej liście zakupów spożywczych", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "zakupów spożywczych"}, "split": "test"}
{"utterance": "usuń moją listę zadań na ten tydzień", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "zadań", "date": "ten tydzień"}, "split": "test"}
{"utterance": "usuń umyj podłogę w kuchni z mojej listy rzeczy do zrobienia", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "do zrobienia"}, "split": "test"}
{"utterance": "dodaj bartka do listy kontaktów", "expected_intent": "lists:lists_createoradd", "expected_slots": {"person": "bartka", "list_name": "listy kontaktów"}, "split": "test"}
{"utterance": "powiedz listę", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "usuń listę zakupów", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "zakupów"}, "split": "test"}
{"utterance": "usuń listę rzeczy do zrobienia", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "rzeczy do zrobienia"}, "split": "test"}
{"utterance": "dodaj nową pozycję do listy", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "dodaj do listy", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "pozbądź się listy google", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "proszę dodaj pomarańcze do mojej listy zakupów spożywczych", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "zakupów spożywczych"}, "split": "test"}
{"utterance": "ile mam list", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "jakie listy są w moim notatniku", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "zdejmij mleko z listy zakupów", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "zakupów"}, "split": "test"}
{"utterance": "pozbądź się listy podatkowej z tysiąc dziewięćset dziewięćdziesiątego", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "podatkowej", "date": "tysiąc dziewięćset dziewięćdziesiątego"}, "split": "test"}
{"utterance": "jakie są moje obecne listy", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "obecne"}, "split": "test"}
{"utterance": "wylistuj pozycje na mojej liście zadań", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "zadań"}, "split": "test"}
{"utterance": "podaj mi szczegóły zamówienia", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "usuń listę gości którą stworzyłam w zeszłym tygodniu", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "gości", "date": "zeszłym tygodniu"}, "split": "test"}
{"utterance": "ustaw listę", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "znajdź wszystkie nazwiska zaczynające się od litery a i utwórz z nich listę", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "dodaj kontakty służbowe do mojej listy kontaktów", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "listy kontaktów"}, "split": "test"}
{"utterance": "sprawdź ostatnią listę rzeczy do zrobienia", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "rzeczy do zrobienia"}, "split": "test"}
{"utterance": "proszę stówr nową listę", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "chcę usunąć jabłka z listy", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "usuń z listy", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "otwórz google keep", "expected_intent": "lists:lists_query", "expected_slots": {"app_name": "google keep"}, "split": "test"}
{"utterance": "usuń moją listę", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "podaj mi wszystkie dostępne listy", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "wypisz wszystkie listy na tym urządzeniu", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "dodaj zegarek do listy zakupów", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "listy zakupów"}, "split": "test"}
{"utterance": "planowanie mojego przyjęcia", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "przyjęcia"}, "split": "test"}
{"utterance": "mam moją listę ubrań", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "ubrań"}, "split": "test"}
{"utterance": "znajdź listę", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "ważna informacja o domu", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "lista", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "proszę stwórz dla mnie nowa listę", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "odczytaj mi listę zakupów spożywczych", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "zakupów spożywczych"}, "split": "test"}
{"utterance": "olly puść następne nagranie", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "przeskocz na następny podcast", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "przeskocz", "podcast_descriptor": "następny podcast"}, "split": "test"}
{"utterance": "następny", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "włącz następny", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "odtwórz podcast z mojej biblioteki", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "biblioteki"}, "split": "test"}
{"utterance": "znajdź mi intersujący podcast o prezydencie polski", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "prezydencie polski"}, "split": "test"}
{"utterance": "zagraj następny podcast", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "następny podcast"}, "split": "test"}
{"utterance": "zagraj następny", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "odtwórz następną część harrego pottera autorstwa j. k. rowling", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "harrego pottera", "audiobook_author": "j. k. rowling"}, "split": "test"}
{"utterance": "przejdź do podcastów i włącz następny odcinek imponderabilia", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "następny odcinek", "podcast_name": "imponderabilia"}, "split": "test"}
{"utterance": "graj podcast imponderabilia", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "imponderabilia"}, "split": "test"}
{"utterance": "załaduj wszystkie moje podcasty", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "odtwórz podcast last libertarian", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "last libertarian"}, "split": "test"}
{"utterance": "odtwórz następny podcast kryminatorium", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "kryminatorium"}, "split": "test"}
{"utterance": "odtwórz podcast którego słuchałem wczoraj", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "słuchałem wczoraj"}, "split": "test"}
{"utterance": "odtwórz następny odcinek podcastu", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "następny odcinek"}, "split": "test"}
{"utterance": "jakie podcasty są dzisiaj na topie", "expected_intent": "play:play_podcasts", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "odtwórz podcasty o tematyce philadelphia eagles", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "o tematyce philadelphia eagles"}, "split": "test"}
{"utterance": "pokaż mi podcast rockowy z najlepszymi ocenami", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "rockowy z najlepszymi ocenami"}, "split": "test"}
{"utterance": "odtwarzaj losowo wszystkie wolne piosenki", "expected_intent": "play:play_music", "expected_slots": {"player_setting": "odtwarzaj losowo"}, "split": "test"}
{"utterance": "graj mój najczęściej oglądany podcast", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "najczęściej oglądany"}, "split": "test"}
{"utterance": "czy karol paciorek ma nowy podcast", "expected_intent": "play:play_podcasts", "expected_slots": {"person": "karol paciorek"}, "split": "test"}
{"utterance": "znajdz ostatni podcast disney", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "disney"}, "split": "test"}
{"utterance": "przejdź na następny odcinek wojownika", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "następny odcinek", "podcast_name": "wojownika"}, "split": "test"}
{"utterance": "zagraj następny odcinek podcastu", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "następny odcinek"}, "split": "test"}
{"utterance": "rozpocznij podcast który zaczęłam wczoraj w nocy", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "zaczęłam wczoraj w nocy"}, "split": "test"}
{"utterance": "pokaż mi podcasty", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "podcast imponderabilia zagraj to", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "imponderabilia"}, "split": "test"}
{"utterance": "idź do poprzedniego odcinka podcastu", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "poprzedniego odcinka"}, "split": "test"}
{"utterance": "włącz podcast karola paciorka", "expected_intent": "play:play_podcasts", "expected_slots": {"person": "karola paciorka"}, "split": "test"}
{"utterance": "chcę posłuchać podcast", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "proszę ściągnij mój podcast i zagraj raz", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "proszę przeskocz następny odcinek podcastu", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "następny odcinek podcastu"}, "split": "test"}
{"utterance": "zacznij następny odcinek", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "następny odcinek"}, "split": "test"}
{"utterance": "graj ostatni podcast karola paciorka", "expected_intent": "play:play_podcasts", "expected_slots": {"person": "karola paciorka"}, "split": "test"}
{"utterance": "puść mój ostatni podcast", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "cofnij trzydzieści sekund", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "cofnij", "time": "trzydzieści sekund"}, "split": "test"}
{"utterance": "imponderabilia", "expected_intent": "play:play_podcasts", "expected_slots": {"radio_name": "imponderabilia"}, "split": "test"}
{"utterance": "najczęściej sprawdzana lista", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "rozpocznij imponderabilia", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "imponderabilia"}, "split": "test"}
{"utterance": "proszę odtwórz podcast dla mnie", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "proszę przejdź do następnego odcinka tego podcastu", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "następnego odcinka"}, "split": "test"}
{"utterance": "włącz proszę ostatni podcast karola paciorka", "expected_intent": "play:play_podcasts", "expected_slots": {"person": "karola paciorka"}, "split": "test"}
{"utterance": "chcę posłuchać ostatniego podcastu imponderabilia", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "imponderabilia"}, "split": "test"}
{"utterance": "zacznij podcasty o wojowniku", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "wojowniku"}, "split": "test"}
{"utterance": "przejdź do następnej sekcji", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "przejdź"}, "split": "test"}
{"utterance": "przejdź do następnego odcinka podcastu", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "przejdź", "podcast_descriptor": "następnego odcinka podcastu"}, "split": "test"}
{"utterance": "wróć na ostatni odcinek podcastu", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "wróć", "podcast_descriptor": "ostatni odcinek"}, "split": "test"}
{"utterance": "chcę posłuchać podcast sportowy", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "podcast sportowy"}, "split": "test"}
{"utterance": "graj najnowszy podcast od dział zagraniczny", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "najnowszy podcast", "podcast_name": "dział zagraniczny"}, "split": "test"}
{"utterance": "graj mój ulubiony podcast", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "wznów serie podkastu", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "serie podkastu"}, "split": "test"}
{"utterance": "graj poprzedni podcast", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "poprzedni podcast"}, "split": "test"}
{"utterance": "zacznij grać kryminatorium", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "kryminatorium"}, "split": "test"}
{"utterance": "graj następny program w podcaście", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "następny program"}, "split": "test"}
{"utterance": "następny przycisk", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "odtwórz ponownie mój ostatni podcast", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "odtwórz ponownie"}, "split": "test"}
{"utterance": "czy możemy posłuchać wszystkich podcastów kryminatorium", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "posłuchajmy podcastu żurnalista", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "żurnalista"}, "split": "test"}
{"utterance": "chcę obejrzeć następny dostępny podcast", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "podcast"}, "split": "test"}
{"utterance": "hej graj mój ulubiony podcast z listy", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "ulubiony"}, "split": "test"}
{"utterance": "dodaj ten podcast do ulubionych i włącz go", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "włącz go"}, "split": "test"}
{"utterance": "zacznij następny podcast", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "zacznij"}, "split": "test"}
{"utterance": "graj wszystkie podkasty historyczne z zeszłego tygodnia", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "podkasty historyczne"}, "split": "test"}
{"utterance": "chcę byś grała podcast", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "co mogę robić w berlinie", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "berlinie"}, "split": "test"}
{"utterance": "co się dzieje w moim mieście", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "mieście"}, "split": "test"}
{"utterance": "jakie koncerty jazzowe grają w krakowie", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"movie_type": "koncerty jazzowe", "place_name": "krakowie"}, "split": "test"}
{"utterance": "jakieś wydarzenia kulturalne w łodzi", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "łodzi"}, "split": "test"}
{"utterance": "poinformuj mnie o wydarzeniach takich jak wystawy psów w mojej miejscowości", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "wystawy psów", "place_name": "miejscowości"}, "split": "test"}
{"utterance": "jaki film mogę zobaczyć dzisiaj wieczorem w kinie w bydgoszczy", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"business_type": "film", "timeofday": "dzisiaj wieczorem", "place_name": "bydgoszczy"}, "split": "test"}
{"utterance": "podaj mi listę pobliskich kin", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"place_name": "pobliskich", "business_type": "kin"}, "split": "test"}
{"utterance": "podaj listę pokazów cyrkowych w centrum które dzieją się teraz", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "cyrkowych", "place_name": "centrum"}, "split": "test"}
{"utterance": "podaj pokazy fajerwerków w tychach", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "pokazy fajerwerków", "place_name": "tychach"}, "split": "test"}
{"utterance": "czy są jakieś wydarzenia w centrum dziś wieczorem", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "centrum", "timeofday": "dziś wieczorem"}, "split": "test"}
{"utterance": "gdzie jest apteka w piasecznie", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "apteka", "place_name": "w piasecznie"}, "split": "test"}
{"utterance": "jakie filmy grają dzisiaj w kinie", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"date": "dzisiaj", "business_type": "kinie"}, "split": "test"}
{"utterance": "jaki film powinienem dziś obejrzeć", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"date": "dziś"}, "split": "test"}
{"utterance": "jakie filmy grają w mojej okolicy", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "jakie wydarzenia będą niedługo", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"time": "niedługo"}, "split": "test"}
{"utterance": "pokaż wydarzenia w poznaniu", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "w poznaniu"}, "split": "test"}
{"utterance": "zarówno młodzi kierowcy jak i kierowcy którzy niedawno zdali prawo jazdy mają częściej wypadki samochodowe niż pozostali kierowcy ponieważ brakuje im doświadczenia by jechać bezpiecznie według badań doświadczenie za kółkiem jest głównym czynnikiem zmniejszającym liczbę wypadków drogowych a młodzi kierowcy prowadzą pojazdy bezpieczniej wtedy gdy obok siedzi bardziej doświadczony kierowca", "expected_intent": "recommendation:recommendation_events", "expected_slots": {}, "split": "test"}
{"utterance": "olly szukam bar czy znasz jakiś dobry", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "bar"}, "split": "test"}
{"utterance": "olly szukam pokazów mody czy możesz znaleźć sklepy odzieżowe w promieniu kilometra", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "pokazów mody", "place_name": "w promieniu kilometra"}, "split": "test"}
{"utterance": "podaj adresy restauracji amazona", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "restauracji", "business_name": "amazona"}, "split": "test"}
{"utterance": "chciałbym znać najlepiej oceniane puby w okolicy", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "puby"}, "split": "test"}
{"utterance": "wyświetl maraton w pobliżu", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "maraton"}, "split": "test"}
{"utterance": "będę szczęśliwy jeśli powiesz mi jakie najnowsze wydarzenia są w mojej okolicy", "expected_intent": "recommendation:recommendation_events", "expected_slots": {}, "split": "test"}
{"utterance": "czy możesz zaproponować filmy akcji", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"movie_type": "akcji"}, "split": "test"}
{"utterance": "pokaż mi opinie miejsca z jedzeniem w mojej najbliższej lokalizacji", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "miejsca z jedzeniem", "place_name": "najbliższej lokalizacji"}, "split": "test"}
{"utterance": "podaj mi wystawy malarstwa w trójmieście", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "wystawy malarstwa", "place_name": "trójmieście"}, "split": "test"}
{"utterance": "jakie są sklepy w okolicy", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"place_name": "w okolicy"}, "split": "test"}
{"utterance": "pływanie", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "pływanie"}, "split": "test"}
{"utterance": "jaki jest ten nowy film akcji", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"movie_name": "film akcji"}, "split": "test"}
{"utterance": "olly jakie nowe dramaty wchodzą na ekrany kin w ten weekend", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"movie_type": "dramaty", "time": "weekend"}, "split": "test"}
{"utterance": "jakie sklepy są w promieniu piętnastu kilometrów", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "sklepy", "place_name": "w promieniu piętnastu kilometrów"}, "split": "test"}
{"utterance": "system cisco", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "olly co dzieje się w ten weekend w poznaniu", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "ten weekend", "place_name": "poznaniu"}, "split": "test"}
{"utterance": "czy są jakieś ciekawe wydarzenia w ten weekend w konstancinie", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "w ten weekend", "place_name": "w konstancinie"}, "split": "test"}
{"utterance": "znajdź film nominowany do oskara", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "gdzie jest dobra winiarnia niedaleko mnie", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "winiarnia"}, "split": "test"}
{"utterance": "czy w ten weekend w pobliżu mnie są jakieś specjalne wydarzenia", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "ten weekend"}, "split": "test"}
{"utterance": "który bar na wrocławskiej ma najtańsze drinki", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"place_name": "wrocławskiej"}, "split": "test"}
{"utterance": "jakie jest następne wydarzenie w bibliotece", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "bibliotece"}, "split": "test"}
{"utterance": "czy są tutaj dobre pizzerie", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "pizzerie"}, "split": "test"}
{"utterance": "jakie filmy grają dziś wieczorem", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"timeofday": "dziś wieczorem"}, "split": "test"}
{"utterance": "znajdź w krakowie centra handlowe i sklepy z ubraniami damskimi", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"place_name": "krakowie", "business_type": "centra handlowe"}, "split": "test"}
{"utterance": "dokąd mogę pójść dziś wieczorem", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"timeofday": "dziś wieczorem"}, "split": "test"}
{"utterance": "co się dzieje blisko mnie", "expected_intent": "recommendation:recommendation_events", "expected_slots": {}, "split": "test"}
{"utterance": "czy w pobliżu są jakieś kiermasze rękodzieła", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "kiermasze rękodzieła"}, "split": "test"}
{"utterance": "czy coś ciekawego dzieje się nad morzem", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "nad morzem"}, "split": "test"}
{"utterance": "olly podaj mi kilka ciekawych wydarzeń w trójmieście", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "w trójmieście"}, "split": "test"}
{"utterance": "filmy z dobrymi recenzjami", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "powiedz mi o lokalnych wydarzeniach", "expected_intent": "recommendation:recommendation_events", "expected_slots": {}, "split": "test"}
{"utterance": "jaki film jest teraz najwyżej oceniany", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "poleć mi jakiś film", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "czy jest jakieś wydarzenie sportowe jutro w krakowie", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "wydarzenie sportowe", "date": "jutro", "place_name": "w krakowie"}, "split": "test"}
{"utterance": "poleć film który grają w mojej okolicy", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "czy jest festiwal jedzenia w tej okolicy", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "festiwal jedzenia"}, "split": "test"}
{"utterance": "sprawdź adresy okolicznych sklepów", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {}, "split": "test"}
{"utterance": "co się dzieje w okolicy w ten weekend", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "ten weekend"}, "split": "test"}
{"utterance": "olly powiedz co się dzieje w mojej okolicy w ten weekend", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "ten weekend"}, "split": "test"}
{"utterance": "czy coś ciekawego ma miejsce w pobliżu w ten weekend", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "w ten weekend"}, "split": "test"}
{"utterance": "olly potrzebuję drinka", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "potrzebuję drinka", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "jakie parki tematyczne są w okolicy", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "parki tematyczne"}, "split": "test"}
{"utterance": "jakie są w tym tygodniu premiery filmowe", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"date": "w tym tygodniu"}, "split": "test"}
{"utterance": "wyszukaj lokalne restauracje otwarte teraz", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "restauracje"}, "split": "test"}
{"utterance": "co powinnam dzisiaj obejrzeć", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "znajdź sklep z meblami w mojej okolicy", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "sklep z meblami"}, "split": "test"}
{"utterance": "jakie są restauracje w mojej okolicy", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "restauracje"}, "split": "test"}
{"utterance": "gdzie jest najbliższa biedronka", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_name": "biedronka"}, "split": "test"}
{"utterance": "gdzie jest kino w mojej okolicy", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "kino"}, "split": "test"}
{"utterance": "powiedz jakie sklepy są w pobliżu", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "sklepy"}, "split": "test"}
{"utterance": "czy coś ciekawego ma miejsce w pobliżu", "expected_intent": "recommendation:recommendation_events", "expected_slots": {}, "split": "test"}
{"utterance": "sprawdź filmy w kinach blisko mnie", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "jaki film jest w kinach które nie są beznadziejne", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"place_name": "kinach"}, "split": "test"}
{"utterance": "powiedz mi jakie wydarzenia są dzisiaj w moim mieście", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "olly podaj proszę najlepsze sklepy odzieżowe blisko mnie", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "sklepy odzieżowe"}, "split": "test"}
{"utterance": "czy dziś we wrocławiu są jakieś rozrywkowe wydarzenia", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "dziś", "place_name": "wrocławiu"}, "split": "test"}
{"utterance": "znajdź piekarnię z bezglutenowym pieczywem w okolicy", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "piekarnię z bezglutenowym pieczywem"}, "split": "test"}
{"utterance": "powiedz jakie sklepy odzieżowe są w promieniu dziesięciu kilometrów ode mnie", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "sklepy odzieżowe"}, "split": "test"}
{"utterance": "muszę kupić prezent jakie sklepy są w promieniu kilometra", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "sklepy", "place_name": "w promieniu kilometra"}, "split": "test"}
{"utterance": "co się dzieje w mieście", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "w mieście"}, "split": "test"}
{"utterance": "jakie sklepy są w mojej okolicy", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "sklepy"}, "split": "test"}
{"utterance": "kiedy otwierają najbliższą galerię handlową", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"business_name": "najbliższą galerię handlową"}, "split": "test"}
{"utterance": "pokaż lokalne wydarzenia", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "lokalne wydarzenia"}, "split": "test"}
{"utterance": "pokaż wydarzenia muzyczne w pobliżu", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "wydarzenia muzyczne"}, "split": "test"}
{"utterance": "kung fu panda trzy", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"movie_name": "kung fu panda trzy"}, "split": "test"}
{"utterance": "zamów taksówkę do grudziąca za pół godziny", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "taksówkę", "place_name": "grudziąca", "time": "pół godziny"}, "split": "test"}
{"utterance": "muszę jechać do damasławka o piątej rano w niedzielę pociągiem", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "damasławka", "time": "piątej rano", "date": "niedzielę", "transport_type": "pociągiem"}, "split": "test"}
{"utterance": "olly zamów mi bilet do paryża w ten weekend na eurostar", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "paryża", "date": "w ten weekend", "transport_name": "eurostar"}, "split": "test"}
{"utterance": "czy możesz mi zamówić ubera dla mnie", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "ubera"}, "split": "test"}
{"utterance": "czy możesz zamówić mi ubera na jutro", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "ubera", "date": "jutro"}, "split": "test"}
{"utterance": "czy możesz zamówić ubera po moim wyjściu z biura", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "ubera"}, "split": "test"}
{"utterance": "czy możesz zarezerwować bilet na pociąg", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "na pociąg"}, "split": "test"}
{"utterance": "zamów mi bilet na pociąg z krakowa do wrocławia", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "pociąg", "place_name": "wrocławia"}, "split": "test"}
{"utterance": "jakie są warunki drogowe na a cztery", "expected_intent": "transport:transport_traffic", "expected_slots": {"place_name": "a cztery"}, "split": "test"}
{"utterance": "jak dostać się na dworzec po bilet", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "dworzec"}, "split": "test"}
{"utterance": "zamów taksówkę na lotnisko", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "taksówkę", "place_name": "lotnisko"}, "split": "test"}
{"utterance": "zamów taksówkę stąd na lotnisko", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "taksówkę", "place_name": "lotnisko"}, "split": "test"}
{"utterance": "google bilety na pociąg do warszawy", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "pociąg", "place_name": "warszawy"}, "split": "test"}
{"utterance": "proszę kup bilet na pociąg na ten weekend", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "pociąg", "time": "weekend"}, "split": "test"}
{"utterance": "jaki jest korek na mojej trasie do domu o piątej", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "do domu", "time": "piątej"}, "split": "test"}
{"utterance": "zamów taksówkę która jedzie do kina o pierwszej", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "taksówkę", "place_name": "kina", "time": "pierwszej"}, "split": "test"}
{"utterance": "kiedy jest następny pociąg do olsztyna z krakowa", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "pociąg", "place_name": "krakowa"}, "split": "test"}
{"utterance": "olly znajdź najbliższego ubera", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "ubera"}, "split": "test"}
{"utterance": "daj mi czasy lokalnych pociągów do płocka", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "pociągów", "place_name": "płocka"}, "split": "test"}
{"utterance": "o której odjeżdżają pociągi do gdańska", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "gdańska"}, "split": "test"}
{"utterance": "powiedz mi o korkach w mieście", "expected_intent": "transport:transport_traffic", "expected_slots": {"place_name": "mieście"}, "split": "test"}
{"utterance": "jaki jest obecnie korek w pobliżu wałbrzyskiej", "expected_intent": "transport:transport_traffic", "expected_slots": {"place_name": "wałbrzyskiej"}, "split": "test"}
{"utterance": "powiedz mi o moich opcjach na pociąg do olsztyna w następną środę lub czwartek", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "pociąg", "place_name": "olsztyna", "date": "czwartek"}, "split": "test"}
{"utterance": "warszawa", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "warszawa"}, "split": "test"}
{"utterance": "nowy jork", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "nowy jork"}, "split": "test"}
{"utterance": "proszę zamów mi bilet na pociąg z londynu do manchesteru", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "pociąg", "place_name": "manchesteru"}, "split": "test"}
{"utterance": "czy jest korek na mojej trasie", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "bilet do gdańska", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "gdańska"}, "split": "test"}
{"utterance": "bilet do warszawy", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "warszawy"}, "split": "test"}
{"utterance": "pokaż mi rozkład pociągów do krakowa głównego", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "pociągów", "place_name": "krakowa głównego"}, "split": "test"}
{"utterance": "wezwij mi taksówkę olly", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "taksówkę"}, "split": "test"}
{"utterance": "zamów mi bilet pierwszą klasą na pociąg do skawiny", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_descriptor": "pierwszą klasą", "transport_type": "pociąg", "place_name": "skawiny"}, "split": "test"}
{"utterance": "zarezerwuj mi bilet na pociąg", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "pociąg"}, "split": "test"}
{"utterance": "podaj mi rodzaje biletów na pociąg z suwałk do białegostoku", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "pociąg", "place_name": "białegostoku"}, "split": "test"}
{"utterance": "zamów żółtą taksówkę", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "żółtą taksówkę"}, "split": "test"}
{"utterance": "zamów bilet na pociąg w jedną stronę we wtorek na dziewiątą rano", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "na pociąg", "transport_descriptor": "w jedną stronę", "date": "wtorek", "time": "dziewiątą rano"}, "split": "test"}
{"utterance": "czy możesz prosze zabukować na piątek bilety dla dwóch osób na pociąg", "expected_intent": "transport:transport_ticket", "expected_slots": {"date": "piątek", "transport_type": "pociąg"}, "split": "test"}
{"utterance": "sprawdź czas odjazdu pociągu dziesięć tysięcy osiemset osiemdziesiąt siedem we wtorek ze stacji warszawa centralna", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "pociągu", "transport_name": "dziesięć tysięcy osiemset osiemdziesiąt siedem", "date": "wtorek", "place_name": "warszawa centralna"}, "split": "test"}
{"utterance": "daj mi czas pociągu", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "pociągu"}, "split": "test"}
{"utterance": "czy jest tutaj połączeniem pociągiem z londynu do paryża i o której", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "pociągiem", "place_name": "paryża"}, "split": "test"}
{"utterance": "jaka jest najlepsza droga do olsztyna", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "olsztyna"}, "split": "test"}
{"utterance": "kiedy jedzie pierwsze metro do bielan", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "metro", "place_name": "bielan"}, "split": "test"}
{"utterance": "zamów mi ubera", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "ubera"}, "split": "test"}
{"utterance": "zamów bilet na pociąg z krakowa do rzeszowa", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "pociąg", "place_name": "rzeszowa"}, "split": "test"}
{"utterance": "znajdź taksówkę do zamówienia", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "taksówkę"}, "split": "test"}
{"utterance": "podaj mi dzisiejszą trasę", "expected_intent": "transport:transport_query", "expected_slots": {"date": "dzisiejszą"}, "split": "test"}
{"utterance": "kiedy odjeżdża następny pociąg do centrum stąd", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "pociąg"}, "split": "test"}
{"utterance": "gdzie jest najbliższa stacja benzynowa", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "stacja benzynowa"}, "split": "test"}
{"utterance": "jaka jest obecnie sytuacja na drogach", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "najszybsza trasa do płocka", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "płocka"}, "split": "test"}
{"utterance": "o której dojedzie pociąg do wrocławia", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "pociąg", "place_name": "wrocławia"}, "split": "test"}
{"utterance": "ile zajmie mi dojazd na lotnisko", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "lotnisko"}, "split": "test"}
{"utterance": "jaki jest czas dojazdu do teatru", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "teatru"}, "split": "test"}
{"utterance": "jaki jest ruch na autostradzie a cztery", "expected_intent": "transport:transport_traffic", "expected_slots": {"place_name": "autostradzie a cztery"}, "split": "test"}
{"utterance": "czy możesz mi powiedzieć kiedy odjeżdża pociąg do wrocławia", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "pociąg", "place_name": "wrocławia"}, "split": "test"}
{"utterance": "zamów ubera na lotnisko", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "ubera", "place_name": "lotnisko"}, "split": "test"}
{"utterance": "zamów pociąg na goodie", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "pociąg"}, "split": "test"}
{"utterance": "znajdź bilet na pociąg do wrocławia", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "pociąg", "place_name": "wrocławia"}, "split": "test"}
{"utterance": "zamów bilet do nowego jorku na pociąg", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "nowego jorku", "transport_type": "pociąg"}, "split": "test"}
{"utterance": "jad dostanę się stąd do domu", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "domu"}, "split": "test"}
{"utterance": "zamów mi bilet na pociąg", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "na pociąg"}, "split": "test"}
{"utterance": "jak najszybciej dojdę do sturbacksa", "expected_intent": "transport:transport_query", "expected_slots": {"business_name": "sturbacksa"}, "split": "test"}
{"utterance": "prowadź do miejsca", "expected_intent": "transport:transport_query", "expected_slots": {}, "split": "test"}
{"utterance": "zamów mi proszę bilet na pociąg do suwałek", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "pociąg", "place_name": "suwałek"}, "split": "test"}
{"utterance": "zamów mi najtańszy bilet na pociąg do hiszpanii", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "pociąg", "place_name": "hiszpanii"}, "split": "test"}
{"utterance": "zamów taksówkę do domu", "expected_intent": "transport:transport_taxi", "expected_slots": {"place_name": "do domu"}, "split": "test"}
{"utterance": "zamów mi taksówkę do lokalizacji", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "taksówkę"}, "split": "test"}
{"utterance": "proszę zamów mi taksówkę ubera", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "taksówkę", "transport_agency": "ubera"}, "split": "test"}
{"utterance": "o której dzisiaj odjeżdża pociąg", "expected_intent": "transport:transport_query", "expected_slots": {"date": "dzisiaj", "transport_type": "pociąg"}, "split": "test"}
{"utterance": "o której nadjeżdzą rano kolej podmiejska", "expected_intent": "transport:transport_query", "expected_slots": {"timeofday": "rano", "transport_type": "kolej podmiejska"}, "split": "test"}
{"utterance": "jak mam zamówić bilet na pociąg online", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "pociąg"}, "split": "test"}
{"utterance": "potrzebuję bilet na pociąg do szczecina przez wrocław", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "pociąg", "place_name": "szczecina przez wrocław"}, "split": "test"}
{"utterance": "chcę bilet na pociąg do jasnej góry", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "na pociąg", "place_name": "jasnej góry"}, "split": "test"}
{"utterance": "zarezerwuj odbiór taxi na poniedziałek w południe", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "taxi", "date": "poniedziałek", "timeofday": "w południe"}, "split": "test"}
{"utterance": "ile kosztuje bilet na pociąg w obie strony do inowrocławia", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "pociąg", "place_name": "inowrocławia"}, "split": "test"}
{"utterance": "czy masz rozkład jazdy pociągów do kłodzka", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "pociągów", "place_name": "kłodzka"}, "split": "test"}
{"utterance": "o której odjeżdża pierwszy pociąg z brzegu", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "pociąg", "place_name": "brzegu"}, "split": "test"}
{"utterance": "o której wyjeżdża następny pociąg do olsztyna", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "pociąg", "place_name": "olsztyna"}, "split": "test"}
{"utterance": "jaki jest korek w mieście", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "czy korek jest spokojny", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "jaki jest ruch w tej chwili", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "zamów mi bilet na pociąg stąd do warszawy o ósmej rano dzisiaj", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "pociąg", "place_name": "warszawy", "time": "ósmej rano", "date": "dzisiaj"}, "split": "test"}
{"utterance": "jak zazwyczaj wygląda korek moją zwykłą drogą do pracy", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "wyszukaj po nawigacji", "expected_intent": "transport:transport_query", "expected_slots": {}, "split": "test"}
{"utterance": "wezwij taksówkę", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "taksówkę"}, "split": "test"}
{"utterance": "zadzwoń po uberpool żeby mnie zawiózł do baru dwa piwka", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "uberpool", "place_name": "baru dwa piwka"}, "split": "test"}
{"utterance": "jaki teraz jest korek", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "zamów bilet na pociąg do bostonu", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "na pociąg", "place_name": "bostonu"}, "split": "test"}
{"utterance": "zamów mi bilet do krakowa", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "krakowa"}, "split": "test"}
{"utterance": "znajdź mi bilet kolejowy do gniezna", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "kolejowy", "place_name": "gniezna"}, "split": "test"}
{"utterance": "ruch uliczny", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "zamów ubera żeby mnie teraz zabrał", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "ubera"}, "split": "test"}
{"utterance": "czas jazdy do oławy", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "oławy"}, "split": "test"}
{"utterance": "zamów mi najbliższego ubera", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "ubera"}, "split": "test"}
{"utterance": "powiedz mi jaki jest ruch uliczny", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "podaj mi czasy pociągów w pobliżu mojej lokacji", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "lokacji"}, "split": "test"}
{"utterance": "gdzie jest biblioteka publiczna", "expected_intent": "transport:transport_query", "expected_slots": {"business_type": "biblioteka publiczna"}, "split": "test"}
{"utterance": "zamów bilet na pociąg do warszawy", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "pociąg", "place_name": "warszawy"}, "split": "test"}
{"utterance": "proszę zamów mi bilet na pociąg express do poznania z wrocławia", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "pociąg", "transport_name": "express do poznania", "place_name": "wrocławia"}, "split": "test"}
{"utterance": "zarezerwuj bilet z jastarni do mikołajek na wtorek", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "mikołajek", "date": "wtorek"}, "split": "test"}
{"utterance": "jak dostanę się do centrum handlowego", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "centrum handlowego"}, "split": "test"}
{"utterance": "ile kosztuje bilet na pociąg do poznania", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "pociąg", "place_name": "poznania"}, "split": "test"}
{"utterance": "rozkład jazdy pociągów do warszawy", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "pociągów", "place_name": "warszawy"}, "split": "test"}
{"utterance": "o której odjeżdża pociąg do miejsca docelowego", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "pociąg"}, "split": "test"}
{"utterance": "jaki jest teraz ruch na drogach", "expected_intent": "transport:transport_traffic", "expected_slots": {"time": "teraz"}, "split": "test"}
{"utterance": "zabierz mnie do layfayette saint i canal", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "layfayette saint i canal"}, "split": "test"}
{"utterance": "zarezerwuj dla mnie taryfę do biura", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "taryfę", "place_name": "biura"}, "split": "test"}
{"utterance": "proszę zamów bilet kolejowy z przemyśla do szczecina na jutro rano", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "kolejowy", "place_name": "szczecina", "date": "jutro", "timeofday": "rano"}, "split": "test"}
{"utterance": "wyświetl mi drogę do mojego domu", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "domu"}, "split": "test"}
{"utterance": "kierunki proszę", "expected_intent": "transport:transport_query", "expected_slots": {}, "split": "test"}
{"utterance": "jakie są czasy ekspresu do krakowa", "expected_intent": "transport:transport_query", "expected_slots": {"transport_name": "ekspresu do krakowa"}, "split": "test"}
{"utterance": "raport o korkach", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "bilet na pociąg", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "pociąg"}, "split": "test"}
{"utterance": "proszę bilet na pociąg", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "na pociąg"}, "split": "test"}
{"utterance": "zamów bilet na pociąg w w weekend dwudziestego szóstego z poznania do szczecina", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "pociąg", "date": "weekend dwudziestego szóstego", "place_name": "szczecina"}, "split": "test"}
{"utterance": "proszę zarezerwuj taksówkę na dziewiątą rano", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "taksówkę", "time": "dziewiątą rano"}, "split": "test"}
{"utterance": "o której pociąg przyjeżdża do zakopanego", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "pociąg", "place_name": "zakopanego"}, "split": "test"}
{"utterance": "pokaz mapę ze sklepami w pobliżu mnie", "expected_intent": "transport:transport_query", "expected_slots": {"business_type": "sklepami"}, "split": "test"}
{"utterance": "olly jak dojść na marszałkowską", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "marszałkowską"}, "split": "test"}
{"utterance": "jaki jest najwyższy budynek na świecie", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "świecie"}, "split": "test"}
{"utterance": "podaj definicję słowa opracować", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "opracować"}, "split": "test"}
{"utterance": "zdefiniuj kryminalistykę", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "kryminalistykę"}, "split": "test"}
{"utterance": "podaj definicje słowa kryminalistyczny", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "kryminalistyczny"}, "split": "test"}
{"utterance": "jaki jest najwyższy szczyt świata", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "świata"}, "split": "test"}
{"utterance": "co znaczą turbulencje", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "turbulencje"}, "split": "test"}
{"utterance": "sprawdź definicję słowa kapryśny", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "kapryśny"}, "split": "test"}
{"utterance": "czy możesz śledzić moje emocje na podstawie tego jak mówię", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "ile lat ma mariah carey", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "mariah carey"}, "split": "test"}
{"utterance": "sprawdź definicję słowa gafa", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "gafa"}, "split": "test"}
{"utterance": "wyświetl przepisy", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest najbliższa pizzeria", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "pizzeria"}, "split": "test"}
{"utterance": "oblicz dwieście dzielone na dziesięć", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "jaki jest pierwiastek kwadratowy dziewięciu", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "chcę ciasto z batatów z lokalnej piekarni", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "chcę bilety na wyprzedany koncert w sobotni wieczór", "expected_intent": "general:general_quirky", "expected_slots": {"date": "sobotni", "timeofday": "wieczór"}, "split": "test"}
{"utterance": "wyjaśnij mi fizykę kwantową tak żebym zrozumiał", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "czy możesz stworzyć dla mnie dietę bez cukru i stworzyć listę zakupów ze składnikami", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "podaj definicję słowa pomarańcza", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "pomarańcza"}, "split": "test"}
{"utterance": "dlaczego adam sandler nie jest zabawny", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "adam sandler"}, "split": "test"}
{"utterance": "kiedy są urodziny robina williamsa", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "robina williamsa"}, "split": "test"}
{"utterance": "gdzie mieszka artur dziurman", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "artur dziurman"}, "split": "test"}
{"utterance": "prowadź samochód i przywieź przyjaciół", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "kto jest obecnie premierem wielkiej brytanii", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "wielkiej brytanii"}, "split": "test"}
{"utterance": "ile jest jeden dodać jeden", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "ile to jest jeden plus jeden", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest stolica nigerii", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "nigerii"}, "split": "test"}
{"utterance": "jaka jest silnia dziesięciu", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "jak wielki jest kosmos", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "kiedy urodził się dawid ogrodnik", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "dawid ogrodnik"}, "split": "test"}
{"utterance": "powiedz mi wszystko o huraganie", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "huraganie"}, "split": "test"}
{"utterance": "czy możesz ugotować coś specjalnego dla mnie i mojej żony", "expected_intent": "general:general_quirky", "expected_slots": {"relation": "żony"}, "split": "test"}
{"utterance": "czy znasz numer telefonu agnieszki matusik", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "agnieszki matusik"}, "split": "test"}
{"utterance": "co znaczy słowo oscylować", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "oscylować"}, "split": "test"}
{"utterance": "przeliteruj i zdefiniuj słowo oscylować", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "oscylować"}, "split": "test"}
{"utterance": "ile to jest dwa razy dwa", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "sprawdź gdzie jest celebryta", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "przypomnij mi żebym się ruszała żeby nie przybrać na wadze", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "przypomnij mi żeby skontaktować się ze starymi przyjaciółmi z którymi nie rozmawiałem przez sześć miesięcy zanim odejdą", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "sprawdź ceny i dostępność biletów na najnowszy film we wszystkich kinach w mojej okolicy", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "muszę porozmawiać z mamą", "expected_intent": "general:general_quirky", "expected_slots": {"relation": "mamą"}, "split": "test"}
{"utterance": "powiedz mi kiedy będą dostępne wyniki wyborów w delhi", "expected_intent": "news:news_query", "expected_slots": {"place_name": "delhi"}, "split": "test"}
{"utterance": "jaki jest pierwiastek z sześćset dwadzieścia pięć", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "chciałabym żeby mi to pomogło", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "czy znasz się na matematyce", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "lokalizacja", "expected_intent": "qa:qa_definition", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest najszybsza droga do mojej pracy w centrum z ominięciem korków", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "centrum"}, "split": "test"}
{"utterance": "co robi priyanka chopra aby wyglądać pięknie", "expected_intent": "general:general_quirky", "expected_slots": {"person": "priyanka chopra"}, "split": "test"}
{"utterance": "gdzie justyna steczkowska kupuje ubrania dla dzieci", "expected_intent": "general:general_quirky", "expected_slots": {"person": "justyna steczkowska"}, "split": "test"}
{"utterance": "dlaczego sofia vergara wygląda tak młodo", "expected_intent": "general:general_quirky", "expected_slots": {"person": "sofia vergara"}, "split": "test"}
{"utterance": "jaki jest najlepszy przepis na ciastka z kawałkami czekolady", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "kim była george eliot", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "george eliot"}, "split": "test"}
{"utterance": "proszę daj mi informacje o johnie abrahamie lincolnie", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "johnie abrahamie lincolnie"}, "split": "test"}
{"utterance": "ile zarabia bill gates", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "bill gates"}, "split": "test"}
{"utterance": "jaka jest definicja słowa wieczny", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "wieczny"}, "split": "test"}
{"utterance": "kto to jest celebryta", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "co robi celebryta", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "możesz zrobić dla mnie obiad", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "ile to jest dwa plus dwa", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "alexa mam x dolarów w tym miesiącu ile mogę wydać każdego dnia", "expected_intent": "qa:qa_maths", "expected_slots": {"date": "w tym miesiącu", "general_frequency": "każdego dnia"}, "split": "test"}
{"utterance": "chcę wiedzieć który supermarket niedaleko mnie ma najlepszą cenę chleba bezglutenowego", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "supermarket", "food_type": "chleba bezglutenowego"}, "split": "test"}
{"utterance": "jak duży jest kaszalot", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "chciałbym aby był w stanie obliczyć odpowiedź z wyników wyszukiwania tak jak robi to wolfram alpha", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "chcę żeby zapamiętywał moje preferencje i polecał mi rzeczy na ich podstawie gdy o nie pytam", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "chcę aby był w stanie podać mi statystyki dotyczące rzeczy które dla mnie zrobiono np. jak często jadałem poza domem w tym miesiącu", "expected_intent": "general:general_quirky", "expected_slots": {"date": "w tym miesiącu"}, "split": "test"}
{"utterance": "taka gadka-szmatka", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "chciałbym zapytać ile aniołu może tańczyć na łebku szpilki", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "ile jest dwanaście dodać sto dziewięćdziesiąt sześć", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest definicja słowa aktualność", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "aktualność"}, "split": "test"}
{"utterance": "kiedy będzie koniec świata", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest suma dwóch liczb cztery i sześć", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "o której jest dziś w nocy mecz hokeja", "expected_intent": "general:general_quirky", "expected_slots": {"timeofday": "dziś w nocy"}, "split": "test"}
{"utterance": "w jak wielu stanach wykonuje się karę śmierci", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "ile to jest dziesięć procent z czterdziestu dolarów", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "wyślij zabawną wiadomość do wszystkich moich przyjaciół", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "jaki sklep ma jutro wyprzedaż", "expected_intent": "general:general_quirky", "expected_slots": {"date": "jutro"}, "split": "test"}
{"utterance": "co powoduje osteoporozę", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "pokaż mi rozwiązanie tego zadania dwieście czterdzieści sześć dodać sześćset pięćdziesiąt cztery", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "ile jest cztery plus pięć", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "ile lat ma j. k. rowling", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "j. k. rowling"}, "split": "test"}
{"utterance": "chcę żeby mój robot karmił i głaskał mojego psa gdy nie ma mnie w domu", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "kiedy mam wyjść z domu żeby nie spóźnić się na zaplanowane spotkanie", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "podziel dwanaście przez cztery", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "ile jest osiemnaście razy trzydzieści jeden", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "po co tu jesteśmy", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "byłoby świetnie gdybym mógł udzielić ci konsultacji prawnych", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "kiedy stany zjednoczone uzyskały niepodległość", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "stany zjednoczone"}, "split": "test"}
{"utterance": "czy możesz pokazać mi listę wszystkich moich ostatnich poleceń", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest stolica kalifornii", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "kalifornii"}, "split": "test"}
{"utterance": "proszę podaj mi zwycięskie numery loterii na ten weekend", "expected_intent": "general:general_quirky", "expected_slots": {"date": "ten weekend"}, "split": "test"}
{"utterance": "podaj definicję słowa motywacja", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "motywacja"}, "split": "test"}
{"utterance": "czy możesz mi powiedzieć jaka jest godzina", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "ile łap ma pies", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "dlaczego wieloryby są duże", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "dlaczego zmienia jest okrągła", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "chciałbym żeby pomogła w analizie pomysłów", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "chcę netflix i chill", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "jaki był ostatni film willa smitha", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "willa smitha"}, "split": "test"}
{"utterance": "gdzie był will ferrell widziany poprzedniej nocy", "expected_intent": "general:general_quirky", "expected_slots": {"person": "will ferrell", "date": "poprzedniej nocy"}, "split": "test"}
{"utterance": "chciałabym włączyć telewizor", "expected_intent": "iot:iot_wemo_on", "expected_slots": {}, "split": "test"}
{"utterance": "ile jest sześć podzielić przez dwa", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "ile brad pitt ma wzrostu", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "brad pitt"}, "split": "test"}
{"utterance": "proszę tabelę kursu walut", "expected_intent": "qa:qa_currency", "expected_slots": {}, "split": "test"}
{"utterance": "który film wygrał ostatnią nagrodę akademii filmowej", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "jak wysoki jest mount everest", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "everest"}, "split": "test"}
{"utterance": "co jest stolicą wirginii zachodniej", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "wirginii zachodniej"}, "split": "test"}
{"utterance": "gdzie znajduje się nowa zelandia", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "nowa zelandia"}, "split": "test"}
{"utterance": "gdzie urodził się steve jobs", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "steve jobs"}, "split": "test"}
{"utterance": "proszę potwierdź czy leonardo jest żonaty", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "leonardo"}, "split": "test"}
{"utterance": "gdzie spotyka się większość celebrytów", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "powiedz mi co mogę dzisiaj zrobić aby pomóc mojej społeczności", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "czy są dzisiaj jakieś darmowe wydarzenia w mojej okolicy", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "jakie jest największe biurko", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "największe biurko"}, "split": "test"}
{"utterance": "gdzie jest obok mnie najbliższe zoo", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {}, "split": "test"}
{"utterance": "kiedy są urodziny arnolda schwarzeneggera", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "arnolda schwarzeneggera"}, "split": "test"}
{"utterance": "jaki jest wzrost wartości akcji firmy disney w ciągu ostatniego tygodnia", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "disney"}, "split": "test"}
{"utterance": "jak stoi teraz funt", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "funt"}, "split": "test"}
{"utterance": "czy możesz mi powiedzieć ile żołądków ma krowa", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "w ilu sztukach zagrał mariusz benoit", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "mariusz benoit"}, "split": "test"}
{"utterance": "jakiego lakieru do włosów używa donald trump", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "donald trump"}, "split": "test"}
{"utterance": "jaka jest cena dolara w polskich złotych", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "polskich złotych"}, "split": "test"}
{"utterance": "czy cena dolara wzrosła", "expected_intent": "qa:qa_currency", "expected_slots": {}, "split": "test"}
{"utterance": "jaki jest najbardziej aktualny kurs wymiany w chinach", "expected_intent": "qa:qa_currency", "expected_slots": {"place_name": "w chinach"}, "split": "test"}
{"utterance": "co to jest krzesło", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "krzesło"}, "split": "test"}
{"utterance": "jakiego koloru są skrzydła", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "gdzie jest południk zerowy", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "biografia aosoby", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "co to jest elektroniczny system emisji", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "elektroniczny system emisji"}, "split": "test"}
{"utterance": "opisz wirnik", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "wirnik"}, "split": "test"}
{"utterance": "co to jest mango", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "mango"}, "split": "test"}
{"utterance": "czy naprawdę widać rosję z alaski", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "alaski"}, "split": "test"}
{"utterance": "informacje o kursie wymiany na dziś dla dolara amerykańskiego do japońskiego jena", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "japońskiego jena"}, "split": "test"}
{"utterance": "czy kacje firmy benefit wzrastają", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "benefit"}, "split": "test"}
{"utterance": "jaki jest kurs wymiany między dolarem a chinami", "expected_intent": "qa:qa_currency", "expected_slots": {"place_name": "chinami"}, "split": "test"}
{"utterance": "jaki jest kurs wymiany waluty chin", "expected_intent": "qa:qa_currency", "expected_slots": {"place_name": "chin"}, "split": "test"}
{"utterance": "jaki jest kurs wymiany waluty chin", "expected_intent": "qa:qa_currency", "expected_slots": {"place_name": "chin"}, "split": "test"}
{"utterance": "proszę otwórz artykuł wikipedii na temat dmuchania szkła", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest obecna cena akcji grupy azoty", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "grupy azoty"}, "split": "test"}
{"utterance": "ile lat ma edyta górniak", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "edyta górniak"}, "split": "test"}
{"utterance": "co to jest parsec", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "stół z powyłamywanymi nogami", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "dwa razy dwa jest", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "jak daleko jest portugalia od ukrainy", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "ukrainy"}, "split": "test"}
{"utterance": "jak możesz opisać kartę kredytową", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "kartę kredytową"}, "split": "test"}
{"utterance": "czy jakub błaszczykowski jest żonaty", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "jakub błaszczykowski"}, "split": "test"}
{"utterance": "jaki jest kurs wymiany waluty między polską i ukrainą", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "ukrainą"}, "split": "test"}
{"utterance": "ile mil kwadratowych zajmuje średnio kraj na ziemi", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest definicja słowa subiektywny", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "subiektywny"}, "split": "test"}
{"utterance": "co się dzisiaj stało na giedzie", "expected_intent": "qa:qa_stock", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "jak daleko jest słońce", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "jaki kurs ma waluta meksykańska", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "meksykańska"}, "split": "test"}
{"utterance": "gdzie na ziemi jest najwięcej wulkanów", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "kiedy zmarł zbigniew cybulski", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "zbigniew cybulski"}, "split": "test"}
{"utterance": "jakie są najpopularniejsze piosenki edyty bartosiewicz", "expected_intent": "music:music_query", "expected_slots": {"artist_name": "edyty bartosiewicz"}, "split": "test"}
{"utterance": "podaj mi aktualną wartość akcji taurona", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "taurona"}, "split": "test"}
{"utterance": "jaka jest definicja logiki", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "logiki"}, "split": "test"}
{"utterance": "gdzie jest kampinoski park narodowy", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "kampinoski park narodowy"}, "split": "test"}
{"utterance": "sprawdź lokalizację i informacje na temat mount rushmore", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "jakbyś powiedział wszystkiego najlepszego", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "wszystkiego najlepszego"}, "split": "test"}
{"utterance": "proszę daj mi informacje o michaelu jacksonie", "expected_intent": "qa:qa_factoid", "expected_slots": {"artist_name": "michaelu jacksonie"}, "split": "test"}
{"utterance": "jaka jest temperatura w suwałkach", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "w suwałkach"}, "split": "test"}
{"utterance": "czy możesz przedstawić mi roberta korzeniowskiego", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "roberta korzeniowskiego"}, "split": "test"}
{"utterance": "cena dolara do euro", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "euro"}, "split": "test"}
{"utterance": "definicja życia", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "życia"}, "split": "test"}
{"utterance": "zdefiniuj zdumiony", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "zdumiony"}, "split": "test"}
{"utterance": "możesz mi powiedzieć co znaczy zdumiony", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "zdumiony"}, "split": "test"}
{"utterance": "kiedy są urodziny hemingwaya", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "hemingwaya"}, "split": "test"}
{"utterance": "ile jest wart lebron james", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "lebron james"}, "split": "test"}
{"utterance": "powiedz gdzie teraz jest śnieg", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "jak stoją akcje na giełdzie", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "ile jest wart jen", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "jen"}, "split": "test"}
{"utterance": "gdzie znajduje się laos", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "laos"}, "split": "test"}
{"utterance": "aktualny kurs dolara", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "dolara"}, "split": "test"}
{"utterance": "konsekwencje cierpienia", "expected_intent": "qa:qa_definition", "expected_slots": {}, "split": "test"}
{"utterance": "konsekwencje działań", "expected_intent": "qa:qa_definition", "expected_slots": {}, "split": "test"}
{"utterance": "najlepszy model samochodu", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "podaj średnią cenę domu", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "opisz lenistwo", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "lenistwo"}, "split": "test"}
{"utterance": "powiedz mi wszystko co wiesz o leniwcach", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "kiedy są urodziny violety villas", "expected_intent": "qa:qa_factoid", "expected_slots": {"event_name": "urodziny", "person": "violety villas"}, "split": "test"}
{"utterance": "jakie są współrzędne równika", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "równika"}, "split": "test"}
{"utterance": "opisz piekło", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "piekło"}, "split": "test"}
{"utterance": "jeden plus dwa równa się", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "jeśli ołówek kosztuje cztery dolary a książka dziesięć dolarów ile powinienem zapłacić jeśli kupię dwa ołówki i trzy książki", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "jaki jest kurs wymiany dolara amerykańskiego na euro", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "euro"}, "split": "test"}
{"utterance": "powiedz mi kiedy obudził się obama", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "obama"}, "split": "test"}
{"utterance": "gdzie znajduje się mołdawia", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "ile wzrostu ma hulk hogan", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "jaki jest kurs waluty w tym regionie", "expected_intent": "qa:qa_currency", "expected_slots": {}, "split": "test"}
{"utterance": "w którym roku zaczął grać w filmach george clooney", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "george clooney"}, "split": "test"}
{"utterance": "kiedy były urodziny elvisa presleya", "expected_intent": "qa:qa_factoid", "expected_slots": {"event_name": "urodziny", "person": "elvisa presleya"}, "split": "test"}
{"utterance": "powiedz mi co nosiłem wczoraj", "expected_intent": "general:general_quirky", "expected_slots": {"date": "wczoraj"}, "split": "test"}
{"utterance": "jedna złotówka równa się ile euro", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "euro"}, "split": "test"}
{"utterance": "gdzie teraz mieszka tomasz bednarek", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "tomasz bednarek"}, "split": "test"}
{"utterance": "aktualna cena akcji facebooka", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "facebooka"}, "split": "test"}
{"utterance": "gdzie są góry stołowe", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "co tam u jlo", "expected_intent": "general:general_quirky", "expected_slots": {"person": "jlo"}, "split": "test"}
{"utterance": "podaj informacje o koniu rock sand", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "rock sand"}, "split": "test"}
{"utterance": "opisz konia rock sand", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "rock sand"}, "split": "test"}
{"utterance": "gdzie znajdują się piramidy", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "piramidy"}, "split": "test"}
{"utterance": "pokaż geograficzne szczegóły piramid", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "piramid"}, "split": "test"}
{"utterance": "pokaż biografię ani dąbrowskiej", "expected_intent": "qa:qa_factoid", "expected_slots": {"artist_name": "ani dąbrowskiej"}, "split": "test"}
{"utterance": "jaka jest aktualna cena google", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "google"}, "split": "test"}
{"utterance": "proszę powiedz mi jaka jest definicja cylindra", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "cylindra"}, "split": "test"}
{"utterance": "ile kosztuje funt brytyjski", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "funt brytyjski"}, "split": "test"}
{"utterance": "zdefiniuj koc", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "koc"}, "split": "test"}
{"utterance": "co to są buty converse", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "buty converse"}, "split": "test"}
{"utterance": "jaki rodzaj okularów słonecznych nosi nazwę aviator", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "informacje o afryce", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "afryce"}, "split": "test"}
{"utterance": "przeszukaj miejscowość", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "gdzie amal clooney chodziła do collegeu", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "amal clooney"}, "split": "test"}
{"utterance": "czy kim kardashian nosi conversy", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "kim kardashian"}, "split": "test"}
{"utterance": "jak daleko jest kanada od mojej obecnej lokalizacji", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "kanada"}, "split": "test"}
{"utterance": "jaka jest cena akcji forte", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "forte"}, "split": "test"}
{"utterance": "ile kosztują akcje mabionu", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "mabionu"}, "split": "test"}
{"utterance": "znajdź jak można się dostać do", "expected_intent": "transport:transport_query", "expected_slots": {}, "split": "test"}
{"utterance": "powiedz ile jest trzy razy cztery", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "ile jest warte euro w polsce", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "polsce"}, "split": "test"}
{"utterance": "w jakich filmach grała emma watson", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "emma watson"}, "split": "test"}
{"utterance": "jaki jest kurs dolara amerykańskiego do funta", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "funta"}, "split": "test"}
{"utterance": "ile jest warte euro w stosunku do dolara", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "dolara"}, "split": "test"}
{"utterance": "szczegóły o osobie", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "czy możesz zdobyć bazalt", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "ile kosztują akcje allegro", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "allegro"}, "split": "test"}
{"utterance": "daj dziewięć plus dwa", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "hey co to jest książka", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "książka"}, "split": "test"}
{"utterance": "opowiedz mi o pile", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "pile"}, "split": "test"}
{"utterance": "jaki jest kurs wymiany między złotówką a jenem", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "jenem"}, "split": "test"}
{"utterance": "opisz położenie geograficzne indii", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "indii"}, "split": "test"}
{"utterance": "jaki jest majątek leonardo dicaprio", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "czy to jest najważniejszy czy najmniej ważny moment w historii", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "jak duża jest alaska", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "alaska"}, "split": "test"}
{"utterance": "jak duże są stany zjednoczone", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "jakiego koloru jest pitaja", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "gdzie urodził się steve jobs", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "steve jobs"}, "split": "test"}
{"utterance": "opowiedz mi o ekonomii i pkb indii i chin", "expected_intent": "general:general_quirky", "expected_slots": {"place_name": "chin"}, "split": "test"}
{"utterance": "podaj cenę akcji hdfc", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "hdfc"}, "split": "test"}
{"utterance": "co to jest hipoteza", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "hipoteza"}, "split": "test"}
{"utterance": "google jakie są podstawowe potrzeby człowieka", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "jaki jest sens wszechświata", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "stół z powyłamywanymi nogami", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "myślę że mogę podróżować po całym świecie w jeden dzień", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "czy będzie czwarta wojna światowa", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "jaka będzie liczba ludności na świecie za dwadzieścia lat", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "powiedz jaki zawód ma celebryta", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "definicja słowa prędkość", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "prędkość"}, "split": "test"}
{"utterance": "podaj wysokość empire state building", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "jaki jest najgłębszy punkt na ziemi", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "podaj szczegóły cen akcji motorolli", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "motorolli"}, "split": "test"}
{"utterance": "wyjaśnij zasady nowej gry w piłkę", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "opisz dysk twardy komputera", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "dysk twardy komputera"}, "split": "test"}
{"utterance": "nad którym oceanem leży nasz kontynent", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "co robi obama w swoim codziennym życiu", "expected_intent": "general:general_quirky", "expected_slots": {"person": "obama"}, "split": "test"}
{"utterance": "czy anna wypuszcza w tym roku nowy film", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "anna"}, "split": "test"}
{"utterance": "co to jest kaftan", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "kaftan"}, "split": "test"}
{"utterance": "znajdź kurs wymiany dolara na funta", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "funta"}, "split": "test"}
{"utterance": "jaka jest stolica meksyku", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "meksyku"}, "split": "test"}
{"utterance": "gdzie leży fidżi", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "fidżi"}, "split": "test"}
{"utterance": "jaki był pierwszy film morgana freemana", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "morgana freemana"}, "split": "test"}
{"utterance": "czy pink ma nowe dziecko", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "pink"}, "split": "test"}
{"utterance": "ile wynosi kurs wymiany euro na dolara", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "dolara"}, "split": "test"}
{"utterance": "wyznacz trasę", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "cechy google pixel", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "kierunek do disney landu", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "disney landu"}, "split": "test"}
{"utterance": "kurs akcji otwartej dla name", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "szczegóły ceny akcji", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "czy można lecieć na słońce", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "kiedy powstał teatr bolszoj", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "teatr bolszoj"}, "split": "test"}
{"utterance": "podaj mi opis smartfona", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "smartfona"}, "split": "test"}
{"utterance": "olly ile spotkań odbył mahatma gandhi", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "mahatma gandhi"}, "split": "test"}
{"utterance": "kto jest aktualnie premierem rosji", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "rosji"}, "split": "test"}
{"utterance": "proszę streść najnowszą książkę georgea r r martina lód i ogień", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "gdzie urodził się mahatma gandhi", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "mahatma gandhi"}, "split": "test"}
{"utterance": "jaka jest cena dolara", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "dolara"}, "split": "test"}
{"utterance": "powiadom mnie kiedy kurs funta brytyjskiego do dolara amerykańskiego będzie taki jakiego oczekuję", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "dolara amerykańskiego"}, "split": "test"}
{"utterance": "znajdź informacje o położeniu geograficznym tego miejsca", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "znajdź ceny akcji microsoft na nasdaq", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "microsoft"}, "split": "test"}
{"utterance": "gdzie znajdują się indie", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "indie"}, "split": "test"}
{"utterance": "zrób harmonogram koncertów anny marii jopek", "expected_intent": "lists:lists_createoradd", "expected_slots": {"person": "anny marii jopek"}, "split": "test"}
{"utterance": "powiedz czy globalne ocieplenie to prawda", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "poinformuj mnie o wzrostach i spadkach cen akcji tej firmy", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "wyjaśnij w czym usa są lepsze od innych krajów", "expected_intent": "general:general_quirky", "expected_slots": {"place_name": "usa"}, "split": "test"}
{"utterance": "znajdź największy aktywny wulkan na ziemi", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "ziemi"}, "split": "test"}
{"utterance": "ile trwa podróż z japonii do południowej korei", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "południowej korei"}, "split": "test"}
{"utterance": "podaj opis obwodu telewizyjnego", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "obwodu telewizyjnego"}, "split": "test"}
{"utterance": "podaj mi opis obwodu smartfona", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "obwodu smartfona"}, "split": "test"}
{"utterance": "ile liczy populacja nowego jorku", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "nowego jorku"}, "split": "test"}
{"utterance": "wymiana walut", "expected_intent": "qa:qa_currency", "expected_slots": {}, "split": "test"}
{"utterance": "przez ile lat abraham lincoln był prezydentem stanów zjednoczonych", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "czy angelina jolie zostawiła brada pitta", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "brada pitta"}, "split": "test"}
{"utterance": "nad jakim filmem pracuje teraz jennifer lawrence", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "jennifer lawrence"}, "split": "test"}
{"utterance": "podziel dwieście przez cztery", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "kursy wymiany obcej waluty", "expected_intent": "qa:qa_currency", "expected_slots": {}, "split": "test"}
{"utterance": "opisz co to jest sfera", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "sfera"}, "split": "test"}
{"utterance": "cena akcji", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "pokaż mi jakie są dzisiaj najtańsze bilety lotnicze do warszawy", "expected_intent": "transport:transport_ticket", "expected_slots": {"date": "dzisiaj", "place_name": "warszawy"}, "split": "test"}
{"utterance": "przepis poproszę", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest populacja rosji", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "rosji"}, "split": "test"}
{"utterance": "jaki jest kurs wymiany dolara i euro", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "euro"}, "split": "test"}
{"utterance": "w którym roku urodził się lech wałęsa", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "lech wałęsa"}, "split": "test"}
{"utterance": "opisz przedmiot xy", "expected_intent": "qa:qa_definition", "expected_slots": {}, "split": "test"}
{"utterance": "czy możesz mi opowiedzieć o królestwie zwierząt w lesie równikowym", "expected_intent": "general:general_quirky", "expected_slots": {"place_name": "lesie równikowym"}, "split": "test"}
{"utterance": "jakie jest hobby marcina dorocińskiego", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "marcina dorocińskiego"}, "split": "test"}
{"utterance": "kto jest premierem rosji", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "rosji"}, "split": "test"}
{"utterance": "ok google co to jest prezydent", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "prezydent"}, "split": "test"}
{"utterance": "co to dokładnie jest wypełnienie z żywicy", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "wypełnienie z żywicy"}, "split": "test"}
{"utterance": "opisz grę karcianą hearthstone", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "grę karcianą hearthstone"}, "split": "test"}
{"utterance": "ok google gdzie mieszka sophia vergara", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "sophia vergara"}, "split": "test"}
{"utterance": "gdzie mieszka katarzyna cichopek", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "katarzyna cichopek"}, "split": "test"}
{"utterance": "podaj kurs euro dolara", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "euro dolara"}, "split": "test"}
{"utterance": "jaka jest stolica kazachstanu", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "kazachstanu"}, "split": "test"}
{"utterance": "podziel siedemdziesiąt sześć na dwie części", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "podaj definicję słowa pontyfikat", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "pontyfikat"}, "split": "test"}
{"utterance": "kurs wymiany złotego do euro", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "euro"}, "split": "test"}
{"utterance": "ile jest wart dolar w relacji do euro", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "euro"}, "split": "test"}
{"utterance": "jak można opisać piłkę", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "piłkę"}, "split": "test"}
{"utterance": "jaki jest największy ocena na świecie", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "świecie"}, "split": "test"}
{"utterance": "jak jest różnica między kalendarzem rzymskim a gregoriańskim", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "jakie jest pokrycie krzesła", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "gdzie jest szlak turystyczny w pobliżu mnie", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {}, "split": "test"}
{"utterance": "jaki był ulubiony samochód elvisa", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "elvisa"}, "split": "test"}
{"utterance": "cannot translate", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "podaj więcej ceny akcji", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "porównaj ludzi", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "co to jest neutralny filtr fotograficzny o neutralnej gęstości i czy chciałbym mieć gradientowy czy stały a także który rodzaj byłby lepszy przykręcany czy kwadratowy nakładany", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "wyjaśnij znaczenie słowa wygórowany", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "wygórowany"}, "split": "test"}
{"utterance": "jaki jest kurs wymiany funta brytyjskiego", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "funta brytyjskiego"}, "split": "test"}
{"utterance": "jaka jest cena akcji firmy mercator", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "mercator"}, "split": "test"}
{"utterance": "jakie są warunki klimatyczne na tym obszarze", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "znaczenie", "expected_intent": "qa:qa_definition", "expected_slots": {}, "split": "test"}
{"utterance": "jaki stan w stanach zjednoczonych jest najmniej podatny na tornada", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "w stanach zjednoczonych"}, "split": "test"}
{"utterance": "proszę opisz dla mnie ten przedmiot", "expected_intent": "qa:qa_definition", "expected_slots": {}, "split": "test"}
{"utterance": "w jakiej dziedzinie ta osoba jest najlepsza", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "czy ceny akcji poszły w górę czy w dół", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "kiedy urodził się prezedent narutowicz", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "narutowicz"}, "split": "test"}
{"utterance": "kiedy wychodzi najnowszy album marka lanegana", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "marka lanegana"}, "split": "test"}
{"utterance": "jak radziły sobie akcje orlenu w zeszłym tygodniu", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "orlenu", "date": "w zeszłym tygodniu"}, "split": "test"}
{"utterance": "czy ceny akcji ccc poszły w górę czy w dół", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "ccc"}, "split": "test"}
{"utterance": "ile kosztują akcje apple", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "apple"}, "split": "test"}
{"utterance": "jaki jest kurs wymiany złotówki i korony szwedzkiej", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "korony szwedzkiej"}, "split": "test"}
{"utterance": "daj mi informacje na temat geografii indii", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "indii"}, "split": "test"}
{"utterance": "potrzebuje informacji na temat brucea lee proszę pomóż", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "brucea lee"}, "split": "test"}
{"utterance": "spójrz do góry", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "poproszę internet", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "jak zrozumieć kobiety", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "jaki jest kurs wymiany dolara na polski złoty", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "polski złoty"}, "split": "test"}
{"utterance": "opis iphone siedem", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "iphone siedem"}, "split": "test"}
{"utterance": "jaki jest kolejny film denzela washingtona", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "denzela washingtona"}, "split": "test"}
{"utterance": "co znaczy sytuacja", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "sytuacja"}, "split": "test"}
{"utterance": "ile wart jest dolar amerykański w anglii", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "anglii"}, "split": "test"}
{"utterance": "ile lat ma clint eastwood", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "clint eastwood"}, "split": "test"}
{"utterance": "ile kosztuje dolar w funtach", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "funtach"}, "split": "test"}
{"utterance": "olly gdzie zaczynają się góry świętokrzyskie", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "góry świętokrzyskie"}, "split": "test"}
{"utterance": "który biegun jest zimniejszy południowy czy północny", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "ile lat ma nowy chłopak emmy watson", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "emmy watson"}, "split": "test"}
{"utterance": "informację o lisa ann poproszę", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "lisa ann"}, "split": "test"}
{"utterance": "gdzie osiedlili się pierwsi amerykanie", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "znajdź opis telewizora samsung", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "telewizora samsung"}, "split": "test"}
{"utterance": "sprawdź liczbę mieszkańców w kielcach", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "w kielcach"}, "split": "test"}
{"utterance": "gdzie znajduje się legnica", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "legnica"}, "split": "test"}
{"utterance": "siri sprawdź kurs wymiany", "expected_intent": "qa:qa_currency", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest geologia tej lokalizacji", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "ile euro dostanę za jednego dolara", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "dolara"}, "split": "test"}
{"utterance": "zdefiniuj mówcę", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "mówcę"}, "split": "test"}
{"utterance": "jak sobie radzi i. b. m.", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "i. b. m."}, "split": "test"}
{"utterance": "stań się helikopterem", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "sprawdź moje portale społecznościowe", "expected_intent": "social:social_query", "expected_slots": {"media_type": "portale społecznościowe"}, "split": "test"}
{"utterance": "czy możesz umieścić moje ostatnie selfie na koncie na facebooku", "expected_intent": "social:social_post", "expected_slots": {"media_type": "koncie na facebooku"}, "split": "test"}
{"utterance": "opublikuj moją firmę na twitterze", "expected_intent": "social:social_post", "expected_slots": {"media_type": "twitterze"}, "split": "test"}
{"utterance": "proszę prześlij dalej ten post na twitterze", "expected_intent": "social:social_post", "expected_slots": {"media_type": "twitterze"}, "split": "test"}
{"utterance": "czy mam jakieś nowe zaproszenia do znajomych", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "życzenia urodzinowe", "expected_intent": "social:social_post", "expected_slots": {"event_name": "urodzinowe"}, "split": "test"}
{"utterance": "życzenia weselne", "expected_intent": "social:social_post", "expected_slots": {"event_name": "weselne"}, "split": "test"}
{"utterance": "udostępnij w poście znajomych", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "post na twitterze na moją wizytę w japonii", "expected_intent": "social:social_post", "expected_slots": {"media_type": "na twitterze"}, "split": "test"}
{"utterance": "co się dzieje", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "daj mi ostatnie updaty z facebooka", "expected_intent": "social:social_query", "expected_slots": {"media_type": "facebooka"}, "split": "test"}
{"utterance": "nowe aktualności", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "daj mi update mojego facebooka co trzy godziny", "expected_intent": "social:social_query", "expected_slots": {"media_type": "facebooka", "general_frequency": "co trzy godziny"}, "split": "test"}
{"utterance": "opublikuj na facebooku hej wszystkim", "expected_intent": "social:social_post", "expected_slots": {"media_type": "facebooku"}, "split": "test"}
{"utterance": "co jest teraz popularne", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "jakie są dzisiaj wiadomości", "expected_intent": "news:news_query", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "napisz tweeta coś dla mnie", "expected_intent": "social:social_post", "expected_slots": {"media_type": "napisz tweeta"}, "split": "test"}
{"utterance": "pokaż ostatnie powiadomienia", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy jest jakiś post od mojego znajomego michała na fejsie", "expected_intent": "social:social_query", "expected_slots": {"relation": "znajomego", "person": "michała", "media_type": "fejsie"}, "split": "test"}
{"utterance": "zdjęcie z mojej wycieczki do goa opublikuj je na instagramie", "expected_intent": "social:social_post", "expected_slots": {"media_type": "instagramie"}, "split": "test"}
{"utterance": "czy ktoś polubił moje zdjęcie które właśnie wrzuciłem", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "zapostuj to na moim facebooku", "expected_intent": "social:social_post", "expected_slots": {"media_type": "facebooku"}, "split": "test"}
{"utterance": "proszę sprawdź moje social media i powiedz co się dzieje", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "zapostuj że jestem szczęśliwy na fejsie", "expected_intent": "social:social_post", "expected_slots": {"media_type": "fejsie"}, "split": "test"}
{"utterance": "opublikuj na facebooku nowy status że cieszę się ładną pogodą", "expected_intent": "social:social_post", "expected_slots": {"media_type": "facebooku", "weather_descriptor": "ładną pogodą"}, "split": "test"}
{"utterance": "facebook", "expected_intent": "social:social_query", "expected_slots": {"media_type": "facebook"}, "split": "test"}
{"utterance": "zapostuj wiadomość teraz", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "przeczytaj posta na moim kanale", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "olly jakie są gorące tematy w social mediach", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy ktoś dzisiaj mnie zaczął śledzić na twitterze", "expected_intent": "social:social_query", "expected_slots": {"date": "dzisiaj", "media_type": "twitterze"}, "split": "test"}
{"utterance": "czy ja mam jakieś powiadomienia z social mediów", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "powiedz mi co się dzieje na fejsbuku", "expected_intent": "social:social_query", "expected_slots": {"media_type": "fejsbuku"}, "split": "test"}
{"utterance": "chcę wszystkim podziękować za życzenia urodzinowe", "expected_intent": "social:social_post", "expected_slots": {"event_name": "urodzinowe"}, "split": "test"}
{"utterance": "czy ktoś skomentował mój status", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "proszę czytaj nowości z mojego facebooka", "expected_intent": "social:social_query", "expected_slots": {"media_type": "facebooka"}, "split": "test"}
{"utterance": "coś nowego na insta", "expected_intent": "social:social_query", "expected_slots": {"media_type": "insta"}, "split": "test"}
{"utterance": "opublikuj ten filmik na fejsie", "expected_intent": "social:social_post", "expected_slots": {"media_type": "fejsie"}, "split": "test"}
{"utterance": "sprawdź popularne tematy na twitterze", "expected_intent": "social:social_query", "expected_slots": {"media_type": "twitterze"}, "split": "test"}
{"utterance": "kto robi facebook live teraz", "expected_intent": "social:social_query", "expected_slots": {"media_type": "facebook live"}, "split": "test"}
{"utterance": "jestem niezadowolony w tesco proszę pomóż mi", "expected_intent": "social:social_post", "expected_slots": {"business_name": "tesco"}, "split": "test"}
{"utterance": "olly zatweetuj do apple że iphone nie działa", "expected_intent": "social:social_post", "expected_slots": {"media_type": "zatweetuj do", "business_name": "apple"}, "split": "test"}
{"utterance": "otwórz tweeta do apple że moja bateria w iphonie jest zawsze zużyta", "expected_intent": "social:social_post", "expected_slots": {"media_type": "tweeta", "business_name": "apple"}, "split": "test"}
{"utterance": "czy możesz dać znać amazonowi że ich nowy telefon to śmieć", "expected_intent": "social:social_post", "expected_slots": {"business_name": "śmieć"}, "split": "test"}
{"utterance": "czy możesz skontaktować się z samsungiem i powiedzieć im że moja zmywarka jest super", "expected_intent": "social:social_post", "expected_slots": {"business_name": "samsungiem"}, "split": "test"}
{"utterance": "napisz tweeta z moją aktualną lokalizację", "expected_intent": "social:social_post", "expected_slots": {"media_type": "napisz tweeta"}, "split": "test"}
{"utterance": "prześlij dalej skargę do netii że są problemy z siecią", "expected_intent": "social:social_post", "expected_slots": {"business_name": "netii"}, "split": "test"}
{"utterance": "otwórz twittera wyślij wiadomość", "expected_intent": "social:social_post", "expected_slots": {"business_name": "twittera"}, "split": "test"}
{"utterance": "wyślij tweeta że produkty ssą", "expected_intent": "social:social_post", "expected_slots": {"media_type": "wyślij tweeta"}, "split": "test"}
{"utterance": "otwórz twittera wpisz moją skargę i wyślij do obsługi klienta", "expected_intent": "social:social_post", "expected_slots": {"media_type": "twittera", "business_name": "do obsługi klienta"}, "split": "test"}
{"utterance": "daj mi człowieka tak szybko jak to możliwe", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "dwa kcióki w dół dla kulka", "expected_intent": "social:social_post", "expected_slots": {"business_name": "kulka"}, "split": "test"}
{"utterance": "powiedz mi co się dzieje na instagramie", "expected_intent": "social:social_query", "expected_slots": {"media_type": "instagramie"}, "split": "test"}
{"utterance": "wyślij tweeta o problemie z głośnością do sony", "expected_intent": "social:social_post", "expected_slots": {"media_type": "tweeta", "business_name": "sony"}, "split": "test"}
{"utterance": "zatweetuj do united airlines jestem zły że straciłem mój bagaż", "expected_intent": "social:social_post", "expected_slots": {"media_type": "zatweetuj", "business_name": "united airlines"}, "split": "test"}
{"utterance": "chce wysłać tweeta do united airlines jestem wściekły że straciłem mój bagaż", "expected_intent": "social:social_post", "expected_slots": {"media_type": "tweeta", "business_name": "united airlines"}, "split": "test"}
{"utterance": "miałem problem z moim burgerem możesz zatweetować do burger kinga", "expected_intent": "social:social_post", "expected_slots": {"media_type": "zatweetować do", "business_name": "burger kinga"}, "split": "test"}
{"utterance": "napisz skargę na twitter", "expected_intent": "social:social_post", "expected_slots": {"media_type": "twitter"}, "split": "test"}
{"utterance": "nie dostałem produktu na czas wyślij tweeta do aldi", "expected_intent": "social:social_post", "expected_slots": {"media_type": "tweeta", "business_name": "aldi"}, "split": "test"}
{"utterance": "powiedz plusowi że ich nienawidzę", "expected_intent": "social:social_post", "expected_slots": {"business_name": "plusowi"}, "split": "test"}
{"utterance": "wyślij tweeta do empiku online", "expected_intent": "social:social_post", "expected_slots": {"media_type": "wyślij tweeta", "business_name": "empiku"}, "split": "test"}
{"utterance": "wyślij tweeta do lidla o czystości w ich sklepie", "expected_intent": "social:social_post", "expected_slots": {"media_type": "wyślij tweeta do", "business_name": "lidla"}, "split": "test"}
{"utterance": "proszę wyślij tweeta do pizza hut że czekam na dostawę numer i nie jest zadowolony", "expected_intent": "social:social_post", "expected_slots": {"media_type": "wyślij tweeta", "business_name": "do pizza hut"}, "split": "test"}
{"utterance": "nowy tweet do obsługi klienta", "expected_intent": "social:social_post", "expected_slots": {"media_type": "tweet", "business_name": "obsługi klienta"}, "split": "test"}
{"utterance": "siri otwórz twitter i zatweetuj potus ssie", "expected_intent": "social:social_post", "expected_slots": {"media_type": "twitter"}, "split": "test"}
{"utterance": "pokaż mi moją ostatnią aktywność na mediach społecznościowych", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy w mediach społecznościowych dzieje się coś ważnego", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "napisz tweeta do medicine", "expected_intent": "social:social_post", "expected_slots": {"media_type": "tweeta", "business_name": "medicine"}, "split": "test"}
{"utterance": "olly zatweetuj do biedronki i powiedz że ich nowy wystrój sklepu jest okropny", "expected_intent": "social:social_post", "expected_slots": {"media_type": "zatweetuj do", "business_name": "biedronki"}, "split": "test"}
{"utterance": "napisz tweeta o zimnej pizzy w papa johns", "expected_intent": "social:social_post", "expected_slots": {"media_type": "napisz tweeta", "business_name": "papa johns"}, "split": "test"}
{"utterance": "zatweetuj przez telefon skargę do samsunga", "expected_intent": "social:social_post", "expected_slots": {"media_type": "zatweetuj", "business_name": "samsunga"}, "split": "test"}
{"utterance": "proszę zatweetuj negatywną odpowiedź na serwis daikin", "expected_intent": "social:social_post", "expected_slots": {"media_type": "zatweetuj", "business_name": "serwis daikin"}, "split": "test"}
{"utterance": "proszę zatweetuj na serwis della że jest opóźniony serwis", "expected_intent": "social:social_post", "expected_slots": {"media_type": "zatweetuj", "business_name": "serwis della"}, "split": "test"}
{"utterance": "zatweetujmy skargę", "expected_intent": "social:social_post", "expected_slots": {"media_type": "zatweetujmy"}, "split": "test"}
{"utterance": "potrzebuję byś zatweetował skargę", "expected_intent": "social:social_post", "expected_slots": {"media_type": "zatweetował"}, "split": "test"}
{"utterance": "opublikuj na fejsie że jestem głodny", "expected_intent": "social:social_post", "expected_slots": {"media_type": "fejsie"}, "split": "test"}
{"utterance": "proszę zajrzeć do sprawy", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "rozwiąż problem", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "możesz dać znać linii wizzair że już nigdy nie będę korzystać z ich usług", "expected_intent": "social:social_post", "expected_slots": {"business_name": "wizzair"}, "split": "test"}
{"utterance": "otwórz album i zapostuj zdjęcia nazwa", "expected_intent": "social:social_post", "expected_slots": {"media_type": "album"}, "split": "test"}
{"utterance": "napisz tweeta ze skargą na orange", "expected_intent": "social:social_post", "expected_slots": {"media_type": "napisz tweeta", "business_name": "na orange"}, "split": "test"}
{"utterance": "napisz tweeta ze skargą na plusa", "expected_intent": "social:social_post", "expected_slots": {"media_type": "napisz tweeta", "business_name": "na plusa"}, "split": "test"}
{"utterance": "otwórz lidl i znajdź skargi", "expected_intent": "social:social_post", "expected_slots": {"business_name": "lidl"}, "split": "test"}
{"utterance": "twitnij posta as follows very bad follow up autorstwa a. b. c. company not satisfied na moim koncie", "expected_intent": "social:social_post", "expected_slots": {"media_type": "twitnij"}, "split": "test"}
{"utterance": "zatweetuj do warty i powiedz im że są do dupy", "expected_intent": "social:social_post", "expected_slots": {"media_type": "zatweetuj do", "business_name": "warty"}, "split": "test"}
{"utterance": "proszę napisz tweeta skargę na plusa o ich złej obsłudze klienta", "expected_intent": "social:social_post", "expected_slots": {"media_type": "napisz tweeta", "business_name": "na plusa"}, "split": "test"}
{"utterance": "ok google napisz tweeta jakim głupkiem jest właściciel stacji benzynowej", "expected_intent": "social:social_post", "expected_slots": {"media_type": "napisz tweeta"}, "split": "test"}
{"utterance": "zatweetuj do mcdonalda że mają okropny seriws", "expected_intent": "social:social_post", "expected_slots": {"media_type": "zatweetuj"}, "split": "test"}
{"utterance": "napisz tweeta narzekającego na", "expected_intent": "social:social_post", "expected_slots": {"media_type": "napisz tweeta"}, "split": "test"}
{"utterance": "wyślij raport do obsługi konsumenta", "expected_intent": "social:social_post", "expected_slots": {"business_name": "obsługi konsumenta"}, "split": "test"}
{"utterance": "pomóc w reklamacji do obsługi klienta", "expected_intent": "social:social_post", "expected_slots": {"business_name": "obsługi klienta"}, "split": "test"}
{"utterance": "wyślij tweeta do obsługi klienta google że mój nowy telefon nexus przestał działać proszę o pomoc", "expected_intent": "social:social_post", "expected_slots": {"media_type": "wyślij tweeta"}, "split": "test"}
{"utterance": "napisz tweeta z wiadomością do saturna że ciągle czekam na dostawę", "expected_intent": "social:social_post", "expected_slots": {"media_type": "napisz tweeta", "business_name": "saturna"}, "split": "test"}
{"utterance": "zapostuj na twittera moje ostatnie wejścia w n. s. a.", "expected_intent": "social:social_post", "expected_slots": {"media_type": "twittera", "business_name": "w n. s. a."}, "split": "test"}
{"utterance": "wyślij tweeta z zażaleniem", "expected_intent": "social:social_post", "expected_slots": {"media_type": "tweeta"}, "split": "test"}
{"utterance": "napisz tweeta do allegro o braku praragony w iphonie który wysłałem w ostatnim tygodniu do naprawy", "expected_intent": "social:social_post", "expected_slots": {"media_type": "napisz tweeta", "business_name": "allegro"}, "split": "test"}
{"utterance": "proszę dodat skargę o serwisie na twitterze do bar a boo", "expected_intent": "social:social_post", "expected_slots": {"media_type": "twitterze", "business_name": "bar a boo"}, "split": "test"}
{"utterance": "hello mój przedmiot który kupiłem dla kogoś zniknął z zamówienia", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "zatweetuj że był insekt w paczce czekolady", "expected_intent": "social:social_post", "expected_slots": {"media_type": "zatweetuj"}, "split": "test"}
{"utterance": "przeterminowane produkty na ostatnim rynku", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "twitter do wolfskin że za szybko skończyły im się rozmiarówki", "expected_intent": "social:social_post", "expected_slots": {"media_type": "twitter", "business_name": "wolfskin"}, "split": "test"}
{"utterance": "zatweetuj na", "expected_intent": "social:social_post", "expected_slots": {"media_type": "zatweetuj"}, "split": "test"}
{"utterance": "napiszmy tweeta", "expected_intent": "social:social_post", "expected_slots": {"media_type": "tweeta"}, "split": "test"}
{"utterance": "zapostuj skargę na seriws", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "napisz tweeta że jesteś niezadowolony w macdonaldzie", "expected_intent": "social:social_post", "expected_slots": {"media_type": "napisz tweeta", "business_name": "macdonaldzie"}, "split": "test"}
{"utterance": "ustaw status czuję się szczęśliwy na facebooku", "expected_intent": "social:social_post", "expected_slots": {"media_type": "facebooku"}, "split": "test"}
{"utterance": "olly napisz tweeta z wiadomością do vectry i powiedz im że ich serwis jest zły", "expected_intent": "social:social_post", "expected_slots": {"media_type": "napisz tweeta", "business_name": "do vectry"}, "split": "test"}
{"utterance": "zatweetuj do samsunga i poweidz im aby przestali zabijać ludzi swoimi produktami", "expected_intent": "social:social_post", "expected_slots": {"media_type": "zatweetuj do", "business_name": "samsunga"}, "split": "test"}
{"utterance": "zamieść negatywną opinię o firmie", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "dodaj maila tej osoby", "expected_intent": "email:email_addcontact", "expected_slots": {"personal_info": "maila"}, "split": "test"}
{"utterance": "wyślij email do mojego zespołu", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "zespołu"}, "split": "test"}
{"utterance": "proszę sprawdź czy są nowe emaile", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "odpowiedz na maila pawła", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "pawła"}, "split": "test"}
{"utterance": "powiedz mi czy mam nowe emaile", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy są nowe wiadomości w mojej skrzync", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "olly czy mam jakieś nowe maile", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "z kim się dzisiaj spotykam", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dzisiaj", "event_name": "spotykam"}, "split": "test"}
{"utterance": "gdzie mieszka szymon", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "mieszka", "person": "szymon"}, "split": "test"}
{"utterance": "wyślij maila do agnieszki", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "agnieszki"}, "split": "test"}
{"utterance": "odpowiedz na maila janka i napisz że dziś wieczorem nie przyjdę", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "janka", "timeofday": "dziś wieczorem"}, "split": "test"}
{"utterance": "czy robert napisał do mnie maila", "expected_intent": "email:email_query", "expected_slots": {"person": "robert"}, "split": "test"}
{"utterance": "jaki jest numer służbowy emilii", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "numer służbowy", "person": "emilii"}, "split": "test"}
{"utterance": "odpowiedz tacie napisz spóźnię się", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "tacie"}, "split": "test"}
{"utterance": "tu jest nowy adres email który trzeba dodać do kontaktów", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "idź do kontaktów i dodaj nowy adres email", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "temat", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "stwórz nowy mail do ryśka", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "ryśka"}, "split": "test"}
{"utterance": "skąd to się wzięło", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "jak możemy dostać pożyczkę", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "wyślij mail do mojego szefa", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "szefa"}, "split": "test"}
{"utterance": "proszę wyślij mi nowy email do wypisanych adresów", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "sprawdz email otrzymany od mamy", "expected_intent": "email:email_query", "expected_slots": {"relation": "mamy"}, "split": "test"}
{"utterance": "sprawdź pocztę", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "zobacz czy mam jakieś nowe maile od mojego taty", "expected_intent": "email:email_query", "expected_slots": {"relation": "taty"}, "split": "test"}
{"utterance": "sprawdź moje nowe emaile i powiedz o czym one są", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "odpowiedz dziękuje ci jankowi", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "jankowi"}, "split": "test"}
{"utterance": "przygotuj maila do zuzi", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "zuzi"}, "split": "test"}
{"utterance": "jakie mam nowe emaile", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "wyślij mi email aby odpowiedzieć na ostatnie emaile", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "znajdź jana kowalskiego w kontaktach", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "jana kowalskiego"}, "split": "test"}
{"utterance": "otwórz kontakty i zadzwoń do jana kowalskiego", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "jana kowalskiego"}, "split": "test"}
{"utterance": "odpowiedz na email od jana kowalskiego", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "jana kowalskiego"}, "split": "test"}
{"utterance": "emailuj alicję i daj jej znać że jesteśmy w drodze", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "alicję"}, "split": "test"}
{"utterance": "czy mam jakieś nowe maile od tadeusza", "expected_intent": "email:email_query", "expected_slots": {"person": "tadeusza"}, "split": "test"}
{"utterance": "wyślij odpowiedź jeśli to bardzo ważne", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "jeśli to pochodzi z bardzo znanego miejsca oznacz jako ważne", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "jaki był temat ostatniego maila od mamy", "expected_intent": "email:email_query", "expected_slots": {"relation": "mamy"}, "split": "test"}
{"utterance": "jaki jest ostatni email z pracy", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "podaj mi numer telefonu piotra", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "numer telefonu", "person": "piotra"}, "split": "test"}
{"utterance": "jaki jest adres mailowy teresy", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "adres mailowy", "person": "teresy"}, "split": "test"}
{"utterance": "dodaj nowy adres email do kontaktów", "expected_intent": "email:email_addcontact", "expected_slots": {}, "split": "test"}
{"utterance": "wyślij email do jana z zapytaniem jaka godzina odpowiada mu na spotkanie", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "jana", "event_name": "spotkanie"}, "split": "test"}
{"utterance": "wyślij maila do kariny o spotkaniu budżetowym", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "kariny", "event_name": "spotkaniu budżetowym"}, "split": "test"}
{"utterance": "sprawdź moje emaile pod kątem nazwy", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "sprawdź nowe maile", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "wyślij maila josef małpa gmail kropka com", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "josef małpa gmail kropka com"}, "split": "test"}
{"utterance": "powiedz czy mam jakieś nowe wiadomości w mojej skrzynce", "expected_intent": "email:email_query", "expected_slots": {"email_folder": "skrzynce"}, "split": "test"}
{"utterance": "wyślij maila do ryśka z informacją że jestem jutro zajęta", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "ryśka"}, "split": "test"}
{"utterance": "hej siri odpal maila do współpracownika", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "współpracownika"}, "split": "test"}
{"utterance": "stwórz mail do współpracownika", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "współpracownika"}, "split": "test"}
{"utterance": "proszę wyślij maila do sylwii w sprawie jutrzejszego spotkania", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "sylwii", "date": "jutrzejszego", "event_name": "spotkania"}, "split": "test"}
{"utterance": "hej czy janek wysłał mi ostatni jakiegoś maila", "expected_intent": "email:email_query", "expected_slots": {"person": "janek"}, "split": "test"}
{"utterance": "wyślij do irka mail z zapytaniem o godziny otwarcie biura", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "irka"}, "split": "test"}
{"utterance": "pokaż mi ostatnie maile", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "chcę wysłać maila do mojej rodziny pomożesz mi", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "rodziny"}, "split": "test"}
{"utterance": "sprawdź gmaila", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "sprawdź outlooka", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "odpowiedz na email", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "czy dostałem jakieś maile w ciągu ostatnich dziesięciu minut", "expected_intent": "email:email_query", "expected_slots": {"time": "ostatnich dziesięciu minut"}, "split": "test"}
{"utterance": "napisz do mojego szefa że będę dzisiaj spóźniona z powodu awarii i przeproś go że przegapiłam spotkanie", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "szefa", "date": "dzisiaj", "event_name": "spotkanie"}, "split": "test"}
{"utterance": "pokaż ostatniego maila od janka", "expected_intent": "email:email_query", "expected_slots": {"person": "janka"}, "split": "test"}
{"utterance": "wyślij email do piotra pytając jak się czuje i czy mogę mu jakoś pomóc", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "piotra"}, "split": "test"}
{"utterance": "czy ja otrzymałem nowe emaile w ostatnich dziesięciu minutach", "expected_intent": "email:email_query", "expected_slots": {"time": "ostatnich dziesięciu minutach"}, "split": "test"}
{"utterance": "czy ania wysłała do mnie jakieś nowe maile", "expected_intent": "email:email_query", "expected_slots": {"person": "ania"}, "split": "test"}
{"utterance": "sprawdź nieodczytane maile od ani", "expected_intent": "email:email_query", "expected_slots": {"person": "ani"}, "split": "test"}
{"utterance": "sprawdź proszę email z ofertą pracy", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "wyślij maila do mojego brata i przypomnij o rocznicy ślubu", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "brata", "event_name": "rocznicy ślubu"}, "split": "test"}
{"utterance": "pomoc ma być wysłana tylko do janki", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "janki"}, "split": "test"}
{"utterance": "ten nowy email powinien być dodany do moich kontaktów", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "pokaż mi najnowsze emaile", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "daj mi najnowsze informacje", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "szybka odpowiedź do jacka więc proszę wyślij mail", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "jacka"}, "split": "test"}
{"utterance": "sprawdź plan spotkań w dzisiejszej poczcie", "expected_intent": "email:email_query", "expected_slots": {"event_name": "spotkań", "date": "w dzisiejszej"}, "split": "test"}
{"utterance": "zapamiętaj ten email", "expected_intent": "email:email_addcontact", "expected_slots": {}, "split": "test"}
{"utterance": "wyślij odpowiedź", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "kto wysłał do mnie maila wczoraj", "expected_intent": "email:email_query", "expected_slots": {"date": "wczoraj"}, "split": "test"}
{"utterance": "czy krystyna odpowiedziała", "expected_intent": "email:email_query", "expected_slots": {"person": "krystyna"}, "split": "test"}
{"utterance": "czy możesz odpowiedzieć do krystyny że będę zajęty projektem przez następne trzy tygodnie", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "krystyny", "time": "następne trzy tygodnie"}, "split": "test"}
{"utterance": "czy w ciągu ostatnich piętnastu minut przyszły jakieś maile", "expected_intent": "email:email_query", "expected_slots": {"time": "piętnastu minut"}, "split": "test"}
{"utterance": "otwórz skrzynkę odbiorczą żeby sprawdzić nieprzeczytane maile", "expected_intent": "email:email_query", "expected_slots": {"email_folder": "skrzynkę odbiorczą"}, "split": "test"}
{"utterance": "czy dostałam dzisiaj jakiś mail od amazona", "expected_intent": "email:email_query", "expected_slots": {"date": "dzisiaj", "person": "amazona"}, "split": "test"}
{"utterance": "sprawdź maila o mojej pracy", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "proszę załaduj nowy email od bartka i wyślij wiadomość teraz", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "bartka"}, "split": "test"}
{"utterance": "znajdź adres email kasi i napisz że dam jej znać", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "kasi"}, "split": "test"}
{"utterance": "powiedz mi o marii s", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "marii s"}, "split": "test"}
{"utterance": "otwórz kontakty", "expected_intent": "email:email_addcontact", "expected_slots": {}, "split": "test"}
{"utterance": "czy są w tym miesiącu urodziny kogoś kogo znam", "expected_intent": "email:email_querycontact", "expected_slots": {"date": "tym miesiącu", "event_name": "urodziny"}, "split": "test"}
{"utterance": "do jakich kontaktów nie dzwoniłem w ciągu ostatnich dwunastu miesięcy", "expected_intent": "email:email_querycontact", "expected_slots": {"time": "dwunastu miesięcy"}, "split": "test"}
{"utterance": "wyślij email do jasiek małpa o dwa kropka pl", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "jasiek małpa o dwa kropka pl"}, "split": "test"}
{"utterance": "sprawdź moje maile", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy otrzymałem jakieś nowe maile od roberta", "expected_intent": "email:email_query", "expected_slots": {"person": "roberta"}, "split": "test"}
{"utterance": "napisz email do mojej rodziny mówiący kocham was wszystkich", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "rodziny"}, "split": "test"}
{"utterance": "odśwież moją skrzynkę i poinformuj mnie o nowych mailach", "expected_intent": "email:email_query", "expected_slots": {"email_folder": "skrzynkę"}, "split": "test"}
{"utterance": "jak nawiążę kontakt ze stefanią", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "nawiążę", "person": "stefanią"}, "split": "test"}
{"utterance": "rozpocznij ankietę na nowy email", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy mam jakieś nowe maile", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "proszę wyślij maile do kasi która jest na liście rodzina i przyjaciele", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "kasi", "relation": "przyjaciele"}, "split": "test"}
{"utterance": "wyślij email do asystentki karoliny i anuluj wszystkie spotkania jutro", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "asystentki", "person": "karoliny", "event_name": "spotkania", "date": "jutro"}, "split": "test"}
{"utterance": "wyślij do mamy mail z informacją że impreza urodzinowa wojtka jest w niedzielę", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "mamy", "event_name": "impreza urodzinowa", "person": "wojtka", "date": "niedzielę"}, "split": "test"}
{"utterance": "wyślij do jacka email z podziękowaniem", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "jacka"}, "split": "test"}
{"utterance": "wyślij maila do gosi", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "gosi"}, "split": "test"}
{"utterance": "czy mam nowe maile od sarah", "expected_intent": "email:email_query", "expected_slots": {"person": "sarah"}, "split": "test"}
{"utterance": "odpowiedz na email", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "chcę odpowiedzieć na maila od roberta kowalskiego", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "roberta kowalskiego"}, "split": "test"}
{"utterance": "sprawdź e-maile od stefan", "expected_intent": "email:email_query", "expected_slots": {"person": "stefan"}, "split": "test"}
{"utterance": "sprawdź maile od mojego pracodawcy", "expected_intent": "email:email_query", "expected_slots": {"relation": "pracodawcy"}, "split": "test"}
{"utterance": "czy napisałem email do tomka na temat kontroli broni", "expected_intent": "email:email_query", "expected_slots": {"person": "tomka"}, "split": "test"}
{"utterance": "czy tomek wysłał mi maila o amunicji", "expected_intent": "email:email_query", "expected_slots": {"person": "tomek"}, "split": "test"}
{"utterance": "czy ja mam jakieś nowe maile z ostatniej godziny", "expected_intent": "email:email_query", "expected_slots": {"time": "ostatniej godziny"}, "split": "test"}
{"utterance": "czy dostałam jakieś maile z numerami nadania przesyłki", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "stwórz email do bolka", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "bolka"}, "split": "test"}
{"utterance": "alexa proszę wyślij email do mamy", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "mamy"}, "split": "test"}
{"utterance": "wyślij mamie maila teraz", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "mamie"}, "split": "test"}
{"utterance": "czy dostałem jakieś nowe maile", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "proszę przeczytaj nowe emaile", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "proszę wyślij email do jarka", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "jarka"}, "split": "test"}
{"utterance": "czy ja mam jakieś nowe emaile", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "napisz email do doroty z pytaniem co dzisiaj robi", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "doroty", "date": "dzisiaj"}, "split": "test"}
{"utterance": "wyślij emaila z planami danuty na dziś", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "danuty", "date": "dziś"}, "split": "test"}
{"utterance": "alexa napisz nowy email", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "utwórz email", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "pokaż wszystkie maile od mojego szefa", "expected_intent": "email:email_query", "expected_slots": {"relation": "szefa"}, "split": "test"}
{"utterance": "wyślij email do wujka janka z informacją że dam radę", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "wujka", "person": "janka"}, "split": "test"}
{"utterance": "jak dużo nowych maili dzisiaj otrzymałem", "expected_intent": "email:email_query", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "proszę wyślij mamie i tacie emaila z pytaniem jak się mają", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "tacie"}, "split": "test"}
{"utterance": "wyślij ten email do przyjaciela", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "przyjaciela"}, "split": "test"}
{"utterance": "muszę wysłać ten email teraz", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "proszę sprawdź najnowszą korespondencję od tego nadawcy", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "dodaj nowy adres macs małpa gmail kropka com do moich kontaktów", "expected_intent": "email:email_addcontact", "expected_slots": {"email_address": "macs małpa gmail kropka com"}, "split": "test"}
{"utterance": "nowa wiadomość do newmail małpa gmail kropka com", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "newmail małpa gmail kropka com"}, "split": "test"}
{"utterance": "czy mam jakieś nieodczytane maile", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy mam jakieś nowe emaile od mojego kontaktu a.", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "proszę dodaj ten email do moich kontaktów", "expected_intent": "email:email_addcontact", "expected_slots": {}, "split": "test"}
{"utterance": "sprawdź maile od janka", "expected_intent": "email:email_query", "expected_slots": {"person": "janka"}, "split": "test"}
{"utterance": "odpowiedz na maila", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "proszę wyślij email do przyjaciela darka jak się masz", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "przyjaciela", "person": "darka"}, "split": "test"}
{"utterance": "dodaj nowy adres email i wyślij wiadomość", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "dodaj nowy mail julii smith", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "julii smith"}, "split": "test"}
{"utterance": "muszę dodać nowy mail do moich kontaktów", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "możesz podać mi informacje kontaktowe do kuby", "expected_intent": "email:email_querycontact", "expected_slots": {}, "split": "test"}
{"utterance": "sprawdź numer do mamy", "expected_intent": "email:email_querycontact", "expected_slots": {"relation": "mamy"}, "split": "test"}
{"utterance": "zadzwoń do", "expected_intent": "email:email_querycontact", "expected_slots": {}, "split": "test"}
{"utterance": "czy możesz napisać maila do czesi", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "czesi"}, "split": "test"}
{"utterance": "wyślij do michała odpowiedź czterysta trzydzieści na maila którego wysłał rankiem", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "michała", "timeofday": "rankiem"}, "split": "test"}
{"utterance": "odpowiedź na maila od moich szefów że będę o czwartej wieczorem", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "szefów"}, "split": "test"}
{"utterance": "sprawdź mój mail", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy mój kolega z pracy ma numer telefonu stacjonarnego", "expected_intent": "email:email_querycontact", "expected_slots": {"relation": "kolega z pracy", "personal_info": "numer telefonu stacjonarnego"}, "split": "test"}
{"utterance": "kto do mnie dzwonił ostatni", "expected_intent": "email:email_querycontact", "expected_slots": {}, "split": "test"}
{"utterance": "właśnie dostałem email od billa na który natychmiast musze odpowiedzieć", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "ten ostatni email potrzebuje odpowiedzi a. s. a. p.", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "jaka jest treść emaila od mamy sprzed trzydziestu minut", "expected_intent": "email:email_query", "expected_slots": {"relation": "mamy", "time": "trzydziestu minut"}, "split": "test"}
{"utterance": "napisz i wyślij email do mojego szefa", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "szefa"}, "split": "test"}
{"utterance": "powiedz mi czy mam jakieś nowe nieprzeczytane emaile", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "wyślij maila do szefa mówiącego że się spóźnię", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "szefa"}, "split": "test"}
{"utterance": "wyślij email do tego kontaktu", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "potrzebuję wysłać emaila do orange o moich problemach z usługą", "expected_intent": "email:email_sendemail", "expected_slots": {"business_name": "orange"}, "split": "test"}
{"utterance": "sprawdź najnowsze maile", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "wyślij odpowiedź na ostatni email", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "sprawdź w poczcie czy jest cokolwiek od shelly", "expected_intent": "email:email_query", "expected_slots": {"person": "shelly"}, "split": "test"}
{"utterance": "proszę sprawdź dla mnie moje emaile", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy mail od bartka miał załącznik", "expected_intent": "email:email_query", "expected_slots": {"person": "bartka"}, "split": "test"}
{"utterance": "czy dostałam jakieś nowe maile od daniela", "expected_intent": "email:email_query", "expected_slots": {"person": "daniela"}, "split": "test"}
{"utterance": "czy mam jakieś maile", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy przyszły jakieś maile od czwartej dzisiaj", "expected_intent": "email:email_query", "expected_slots": {"time": "czwartej", "date": "dzisiaj"}, "split": "test"}
{"utterance": "czy dostałam email od pawła", "expected_intent": "email:email_query", "expected_slots": {"person": "pawła"}, "split": "test"}
{"utterance": "czy bartek się odzywał", "expected_intent": "email:email_query", "expected_slots": {"person": "bartek"}, "split": "test"}
{"utterance": "czy mam dziś jakieś nowe emaile w skrzynce odbiorczej", "expected_intent": "email:email_query", "expected_slots": {"date": "dziś", "email_folder": "skrzynce"}, "split": "test"}
{"utterance": "dodaj stalownię do moich kontaktów mailowych z adresem w rzeszowie", "expected_intent": "email:email_addcontact", "expected_slots": {"place_name": "rzeszowie"}, "split": "test"}
{"utterance": "znajdź email do stokrotki i dodaj go do mojej listy kontaktów", "expected_intent": "email:email_addcontact", "expected_slots": {"business_name": "stokrotki", "list_name": "listy kontaktów"}, "split": "test"}
{"utterance": "napisz odpowiedź na mail mojej mamy", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "mamy"}, "split": "test"}
{"utterance": "chcę odpowiedzieć na email sary", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "sary"}, "split": "test"}
{"utterance": "chciałbym odpowiedzieć na ostatniego maila", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "ile z moich kontaktów mieszka lub żyje w warszawie", "expected_intent": "email:email_querycontact", "expected_slots": {"place_name": "w warszawie"}, "split": "test"}
{"utterance": "czy mam więcej kontaktów do kobiet czy do mężczyzn", "expected_intent": "email:email_querycontact", "expected_slots": {}, "split": "test"}
{"utterance": "czy mam jakieś nowe maile", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "proszę sprawdź moje emaile i powiadom mnie ja jest jakiś nowy email", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy możesz napisać email do jana że jestem na urlopie", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "jana"}, "split": "test"}
{"utterance": "daj mi znać czy dostałam jakieś nowe maile", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "odpowiedz na mojego maila od roberta z informacją że zobaczę się z nimi jutro", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "roberta", "date": "jutro"}, "split": "test"}
{"utterance": "sprawdź nowy email od andrzeja", "expected_intent": "email:email_query", "expected_slots": {"person": "andrzeja"}, "split": "test"}
{"utterance": "pokaż mi ostatnie maile od amazona", "expected_intent": "email:email_query", "expected_slots": {"business_name": "amazona"}, "split": "test"}
{"utterance": "czy są do mnie jakieś nowe maile dzisiaj", "expected_intent": "email:email_query", "expected_slots": {"date": "dzisiaj"}, "split": "test"}
{"utterance": "dyktuj email", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "czy są nowe maile od ostatniego czasu", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "maile w ostatnich dziesięciu minutach", "expected_intent": "email:email_query", "expected_slots": {"time": "ostatnich dziesięciu minutach"}, "split": "test"}
{"utterance": "jaka jest godzina wywiadu z wczorajszego maila", "expected_intent": "email:email_query", "expected_slots": {"date": "wczorajszego"}, "split": "test"}
{"utterance": "sprawdź nowego maila", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "pokaż wszystkie maile o naruszeniu", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "pokaż dane kontaktowe jana", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "jana"}, "split": "test"}
{"utterance": "wyślij email na juanpedro małpa gmail kropka com", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "juanpedro małpa gmail kropka com"}, "split": "test"}
{"utterance": "dodaj ten adres mailowy do moich kontaktów i wyślij email do", "expected_intent": "email:email_addcontact", "expected_slots": {}, "split": "test"}
{"utterance": "stwórz nowy email na nowy adres rafal małpa onet kropka pl", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "rafal małpa onet kropka pl"}, "split": "test"}
{"utterance": "jaki jest numer telefonu do radio taxi jest on w moich kontaktach", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "numer telefonu", "business_name": "radio taxi"}, "split": "test"}
{"utterance": "czy otrzymałem jakieś emaile od południa", "expected_intent": "email:email_query", "expected_slots": {"timeofday": "południa"}, "split": "test"}
{"utterance": "czy kasia przysłała jakieś maile o tomku", "expected_intent": "email:email_query", "expected_slots": {"person": "o tomku"}, "split": "test"}
{"utterance": "zasygnalizuj dźwiękowo kiedy dostanę emaila od jana", "expected_intent": "email:email_query", "expected_slots": {"person": "jana"}, "split": "test"}
{"utterance": "sprawdź maile", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy możesz wysłać email na nowy identyfikator email", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "dodaj emaila do jana nowaka do moich kontaktów jannowak małpa onet kropka pl", "expected_intent": "email:email_addcontact", "expected_slots": {"person": "jana nowaka", "email_address": "jannowak małpa onet kropka pl"}, "split": "test"}
{"utterance": "powiadomienia email", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "co napisałem karolinie w moim ostatnim mailu", "expected_intent": "email:email_query", "expected_slots": {"person": "karolinie"}, "split": "test"}
{"utterance": "znajdź natalię w moich kontaktach i wyślij jej email", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "natalię"}, "split": "test"}
{"utterance": "wyślij maila do natalii na jej urodziny", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "natalii", "event_name": "urodziny"}, "split": "test"}
{"utterance": "ile mam numerów telefonów do bartka", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "numerów telefonów", "person": "bartka"}, "split": "test"}
{"utterance": "napisz maila do jurka na temat spotkania", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "jurka", "event_name": "spotkania"}, "split": "test"}
{"utterance": "wyślij do jurka email z pytaniem o której będzie w domu dziś wieczorem", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "do jurka", "timeofday": "dziś wieczorem"}, "split": "test"}
{"utterance": "odpowiedz na tego maila", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "co z nowym mailem", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "co pisze w nowym mailu", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "wyśli mail do jana nowaka", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "jana nowaka"}, "split": "test"}
{"utterance": "napisz maila do janka nowaka", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "janka nowaka"}, "split": "test"}
{"utterance": "czy otrzymałem jakieś wiadomości od jana kowalskiego", "expected_intent": "email:email_query", "expected_slots": {"person": "jana kowalskiego"}, "split": "test"}
{"utterance": "numer telefonu jay'a", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "numer telefonu", "person": "jay'a"}, "split": "test"}
{"utterance": "proszę dodaj mój nowy adres mailowy do listy kontaktów", "expected_intent": "email:email_addcontact", "expected_slots": {}, "split": "test"}
{"utterance": "czy mam maile od tego nadawcy", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "odpowiedz na email który otrzymałem", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "proszę sprawdź mój gmail pod kątem nowych maili", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "pokaż ostatniego maila", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "odpowiedz na email janka", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "janka"}, "split": "test"}
{"utterance": "wyślij wiadomość do babci z wiadomością że wpadniemy w sobotę do zobaczenia", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "babci"}, "split": "test"}
{"utterance": "odpowiedź na email", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "mail do nowego kontaktu", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "wyślij email do nowego kontaktu", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "odpowiedz za pomocą", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "sprawdź wszystkie nowe wiadomości z działu podatku dochodowego", "expected_intent": "email:email_query", "expected_slots": {"business_name": "działu podatku dochodowego"}, "split": "test"}
{"utterance": "proszę znajdź numer do janusza i podyktuj go", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "numer", "person": "janusza"}, "split": "test"}
{"utterance": "czy mamy numer służbowy marcina", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "numer służbowy", "person": "marcina"}, "split": "test"}
{"utterance": "czy jest jakiś nowy email od jana", "expected_intent": "email:email_query", "expected_slots": {"person": "jana"}, "split": "test"}
{"utterance": "odpowiedz na email jerzego pisząc potrzebuję pieniędzy teraz to pilna sprawa", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "jerzego"}, "split": "test"}
{"utterance": "czy janina jagodzińska emailuje do mnie", "expected_intent": "email:email_query", "expected_slots": {"person": "janina jagodzińska"}, "split": "test"}
{"utterance": "wyślij email do dżesiki", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "dżesiki"}, "split": "test"}
{"utterance": "sprawdź nowe maile", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy możesz wysłać email do", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "odpowiedz", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "stwórz odpowiedź na ostatni email", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "odpowiedz na ostatniego otrzymanego maila", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "napisz mail do mamy i zapytaj jaka jest u nich pogoda", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "mamy"}, "split": "test"}
{"utterance": "napisz email do jan małpa gmail kropka kom", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "jan małpa gmail kropka kom"}, "split": "test"}
{"utterance": "wyślij maila do tomka na tim małpa hotmail dot com", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "tomka na tim małpa hotmail dot com"}, "split": "test"}
{"utterance": "daj nowy email", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "wyszukaj kasię", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "dodaj nowy mail od michała do moich kontaktów", "expected_intent": "email:email_addcontact", "expected_slots": {"person": "michała"}, "split": "test"}
{"utterance": "czy są jakieś nowe maile", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "czy dzisiaj po czwartej przyszły jakieś nowe wiadomości", "expected_intent": "email:email_query", "expected_slots": {"date": "dzisiaj", "time": "po czwartej"}, "split": "test"}
{"utterance": "stwórz email do mojego pracownika z ostatnio zapisanymi dokumentami", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "pracownika"}, "split": "test"}
{"utterance": "sprawdź nowe emaile od sary", "expected_intent": "email:email_query", "expected_slots": {"person": "sary"}, "split": "test"}
{"utterance": "proszę kontakty", "expected_intent": "email:email_querycontact", "expected_slots": {}, "split": "test"}
{"utterance": "jaki jest email leona", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "email", "person": "leona"}, "split": "test"}
{"utterance": "pokaż mi wszystkie maile otrzymane w ciągu ostatniej godziny", "expected_intent": "email:email_query", "expected_slots": {"time": "ostatniej godziny"}, "split": "test"}
{"utterance": "sprawdź nowe maile", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "daj mi mój ostatni email", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "informacje kontaktowe pawła", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "informacje kontaktowe", "person": "pawła"}, "split": "test"}
{"utterance": "napisz maila do julii", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "julii"}, "split": "test"}
{"utterance": "przeczytaj listę nowych maili", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "pokaż listę ostatnich maili", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "sprawdź wszystkie maile od amazona", "expected_intent": "email:email_query", "expected_slots": {"person": "amazona"}, "split": "test"}
{"utterance": "wyślij email do wiceprezesa regionalnego", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "wiceprezesa regionalnego"}, "split": "test"}
{"utterance": "jakieś nowe wiadomości o błyskawicach", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "odczytaj moje nowe emaile", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "zarchiwizuj moje przeczytane wiadomości", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "co się pojawiło w mojej skrzynce odbiorczej odkąd sprawdzaliśmy ostatnio", "expected_intent": "email:email_query", "expected_slots": {"email_folder": "skrzynce odbiorczej"}, "split": "test"}
{"utterance": "wyślij email do jana", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "jana"}, "split": "test"}
{"utterance": "hej sprawdź pocztę", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "odpowiedz na mail pisząc hej ty", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "alexa odpowiedz na email pisząc hej ty", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "mój przyjaciel jan wysłał mi zaproszenie do swojego nowego domu wyślij mu mailem podziękowanie", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "przyjaciel", "person": "jan"}, "split": "test"}
{"utterance": "sprawdź moją pocztę czy mam jakieś nowe maile od józka", "expected_intent": "email:email_query", "expected_slots": {"person": "od józka"}, "split": "test"}
{"utterance": "czy mam jakiegoś nowego maila od jurka", "expected_intent": "email:email_query", "expected_slots": {"person": "jurka"}, "split": "test"}
{"utterance": "powiadom mnie kiedy napisze piotrek", "expected_intent": "email:email_query", "expected_slots": {"person": "piotrek"}, "split": "test"}
{"utterance": "czy jan wysłał mi mail", "expected_intent": "email:email_query", "expected_slots": {"person": "jan"}, "split": "test"}
|