File size: 49,084 Bytes
119a107 |
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 |
[
{
"text": "is it good to add roadside assistance?",
"intent": "Add",
"type": "Test"
},
{
"text": "How can I add my invoice?",
"intent": "Add",
"type": "Test"
},
{
"text": "how to check when you are closed for holidays?",
"intent": "Check",
"type": "Test"
},
{
"text": "how to check transactions?",
"intent": "Check",
"type": "Test"
},
{
"text": "Where can I consult an agent?",
"intent": "Consult ",
"type": "Test"
},
{
"text": "who can I consult regarding my disease?",
"intent": "Consult ",
"type": "Test"
},
{
"text": "Would you please speed-up the process?",
"intent": "process ",
"type": "Test"
},
{
"text": "If the the claim process takes too much time, i would like my case to be assigned to another agent.",
"intent": "process ",
"type": "Test"
},
{
"text": "is it okay to complain if my insurance policy is improperly worded?",
"intent": "complain",
"type": "Test"
},
{
"text": "Why should i still wait to complain if your agent doesn't respond to me at all?",
"intent": "complain",
"type": "Test"
},
{
"text": "where should i click to compare the service quality of different insurance companies?",
"intent": "compare ",
"type": "Test"
},
{
"text": "what if I want to compare two or more insurance brokers?",
"intent": "compare ",
"type": "Test"
},
{
"text": "Would it be necessary to infrom authority about the change?",
"intent": "change ",
"type": "Test"
},
{
"text": "Is their any change in terms and conditions?",
"intent": "change ",
"type": "Test"
},
{
"text": "Is it okay to show my documents to an agent over a video call?",
"intent": "show",
"type": "Test"
},
{
"text": "Do you always show only the authentic insurance brokers?",
"intent": "show",
"type": "Test"
},
{
"text": "Is it possible to report a fake insurance agency?",
"intent": "report ",
"type": "Test"
},
{
"text": "Does the insurance report contain all my claims and health related details?",
"intent": "report ",
"type": "Test"
},
{
"text": "Are there any mtaterials to learn what all these difficult terms mean?",
"intent": "learn ",
"type": "Test"
},
{
"text": "Where to learn more about the benefits and services from my insurance?",
"intent": "learn ",
"type": "Test"
},
{
"text": "Did I already pay for my insurance this month, can you find it pls.",
"intent": "find ",
"type": "Test"
},
{
"text": "Great, thanks. Can you also find information about: If my friends sigh a contract because of my invitation. Do I get some money for that. ",
"intent": "find ",
"type": "Test"
},
{
"text": "Before upgrading my insurance package, I want to review current services provided by insurance.",
"intent": "review ",
"type": "Test"
},
{
"text": "When can I review an agent's interaction with customers?",
"intent": "review ",
"type": "Test"
},
{
"text": "How many policies can I buy?",
"intent": "buy",
"type": "Test"
},
{
"text": "Buy an insurance from another company?",
"intent": "buy",
"type": "Test"
},
{
"text": "What service I am able to request in my insurance?",
"intent": "request ",
"type": "Test"
},
{
"text": "Please request the cancellation of my policy.",
"intent": "request ",
"type": "Test"
},
{
"text": "Choose an insurer who has best feedback from customers.",
"intent": "feedback ",
"type": "Test"
},
{
"text": "a doctor has given me a feedback on my health.",
"intent": "feedback ",
"type": "Test"
},
{
"text": "When should i apply for a claim settlement?",
"intent": "apply ",
"type": "Test"
},
{
"text": "please apply for a maturity period reduction.",
"intent": "apply ",
"type": "Test"
},
{
"text": "Because of health insurance, I was able to save my life through coverage.",
"intent": "save",
"type": "Test"
},
{
"text": "When is the best time to save on money using insurance benefits?",
"intent": "save",
"type": "Test"
},
{
"text": "Can I cancel my policy by writing an e-mail?",
"intent": "cancel ",
"type": "Test"
},
{
"text": "When to cancel a car insurance?",
"intent": "cancel ",
"type": "Test"
},
{
"text": "What is there to withdraw when a claim has been processed?",
"intent": "withdraw ",
"type": "Test"
},
{
"text": "Why should I withdraw the claim funds as soon as possible?",
"intent": "withdraw ",
"type": "Test"
},
{
"text": "My doctor wants to modify my medicines.",
"intent": "modify",
"type": "Test"
},
{
"text": "Who should I approach to modfiy my insurance contract?",
"intent": "modify",
"type": "Test"
},
{
"text": "Does update button actually work?",
"intent": "update",
"type": "Test"
},
{
"text": "How to update the name of my nominee in the policy?",
"intent": "update",
"type": "Test"
},
{
"text": "Should I keep myself in link with agent to access services easliy?",
"intent": "link",
"type": "Test"
},
{
"text": "Please, send me the link of the insurance policy.",
"intent": "link",
"type": "Test"
},
{
"text": "Would it be possible to combine insurances of my whole family into one?",
"intent": "combine",
"type": "Test"
},
{
"text": "where to click to combine all the extra services to my current insurance plan?",
"intent": "combine",
"type": "Test"
},
{
"text": "Where to click to merge different coverage and benefits into one?",
"intent": "merge",
"type": "Test"
},
{
"text": "which insurance company is about to merge with mine?",
"intent": "merge",
"type": "Test"
},
{
"text": "Are the business that automate insurance services better than manual insurance services?",
"intent": "automate",
"type": "Test"
},
{
"text": "Can you automate my loan sactioning process?",
"intent": "automate",
"type": "Test"
},
{
"text": "I am an existing policy holder, how can I visit the download center?",
"intent": "download",
"type": "Test"
},
{
"text": "where can I download the policy certificate from?",
"intent": "download",
"type": "Test"
},
{
"text": "Hey, please notify me only via whatsApp call.",
"intent": "notify",
"type": "Test"
},
{
"text": "Notify the insurer about my health check-up.",
"intent": "notify",
"type": "Test"
},
{
"text": "Would it be possible for me to track an insurance agent's activity?",
"intent": "track",
"type": "Test"
},
{
"text": "Please track my payments for this month.",
"intent": "track",
"type": "Test"
},
{
"text": "When can I resend documents to the insurance agent?",
"intent": "resend",
"type": "Test"
},
{
"text": "How to resend something after a system failure?",
"intent": "resend",
"type": "Test"
},
{
"text": "Where can i look for a reset button?",
"intent": "reset",
"type": "Test"
},
{
"text": "When will my loan status be reset?",
"intent": "reset",
"type": "Test"
},
{
"text": "When will you transfer matured policy payment to my personal bank account?",
"intent": "transfer",
"type": "Test"
},
{
"text": "How to transfer funds from one insurance to the other?",
"intent": "transfer",
"type": "Test"
},
{
"text": "When will the insurance office lift the hold on my loan?",
"intent": "hold",
"type": "Test"
},
{
"text": "How to hold first conversation with an insurance agent?",
"intent": "hold",
"type": "Test"
},
{
"text": "When can my agent approve which medicines I can take?",
"intent": "approve",
"type": "Test"
},
{
"text": "How to have an insurance officer to approve my application for delayed payments?",
"intent": "approve",
"type": "Test"
},
{
"text": "When will be eligible to expedite all the insurance related processes?",
"intent": "Expedite",
"type": "Test"
},
{
"text": "How do I expedite the sactioning of my loan?",
"intent": "Expedite",
"type": "Test"
},
{
"text": "When can I view my future premium amounts?",
"intent": "View ",
"type": "Test"
},
{
"text": "How to view the terms and conditions of my policy?",
"intent": "View ",
"type": "Test"
},
{
"text": "When can I connect to someone regarding my optical insurance?",
"intent": "connect",
"type": "Test"
},
{
"text": "How do I quickly connect to an insurance agent?",
"intent": "connect",
"type": "Test"
},
{
"text": "I just sent you an unnecessarily rude email, please delete it out of the system",
"intent": "Delete",
"type": "Test"
},
{
"text": "Someone stole my password, what do I need to prove in order to delete my account?",
"intent": "Delete",
"type": "Test"
},
{
"text": "Where exactly should I start to pay my premium payments?",
"intent": "Start",
"type": "Test"
},
{
"text": "When will my money back for my policy start?",
"intent": "Start",
"type": "Test"
},
{
"text": "Where should i click to resume my current policy?",
"intent": "Resume",
"type": "Test"
},
{
"text": "When will be able to resume my insurance policy after i am back?",
"intent": "Resume",
"type": "Test"
},
{
"text": "Where is the button to startover a process?",
"intent": "Startover",
"type": "Test"
},
{
"text": "When should i ideally startover my insurance application?",
"intent": "Startover",
"type": "Test"
},
{
"text": "Where to click to restart the loan repayment?",
"intent": "Restart",
"type": "Test"
},
{
"text": "When can i restart my policy after it has lapsed?",
"intent": "Restart",
"type": "Test"
},
{
"text": "Where to click so that you send me the confirmation of address change on my policy papers?",
"intent": "Send",
"type": "Test"
},
{
"text": "When will you send me the loan saction letter?",
"intent": "Send",
"type": "Test"
},
{
"text": "Where can I get the assurance written on my policy?",
"intent": "Get",
"type": "Test"
},
{
"text": "When will be able to get to know if this is an authorized insurer?",
"intent": "Get",
"type": "Test"
},
{
"text": "Where should i click to set my residential address as my mailing address?",
"intent": "Set",
"type": "Test"
},
{
"text": "When will be able to set a limit on monthy payments?",
"intent": "Set",
"type": "Test"
},
{
"text": "Where to retrieve all my data that exists on your platform?",
"intent": "Retrieve",
"type": "Test"
},
{
"text": "When will be eligible to retrieve more benefits from my insurance?",
"intent": "Retrieve",
"type": "Test"
},
{
"text": "Where can i click to remove a member from my policy?",
"intent": "Remove",
"type": "Test"
},
{
"text": "When is the earliest I can remove a nominee's name from my policy?",
"intent": "Remove",
"type": "Test"
},
{
"text": "Where to click to disconnect the remote assistance session?",
"intent": "Disconnect",
"type": "Test"
},
{
"text": "When to disconnect a call with an insurance agent?",
"intent": "Disconnect",
"type": "Test"
},
{
"text": "I am an existing policy holder, where can I upload the identification documents?",
"intent": "Upload",
"type": "Test"
},
{
"text": "When is the best time to upload things faster?",
"intent": "Upload",
"type": "Test"
},
{
"text": "Where is the latest release of this reconciliation software?",
"intent": "Release",
"type": "Test"
},
{
"text": "When will you release my receipts?",
"intent": "Release",
"type": "Test"
},
{
"text": "Could you please show me the total bonus that I would receive on the maturity of a policy?",
"intent": "Show ",
"type": "Test"
},
{
"text": "I am interested in changing my nominee, please show me how to do it.",
"intent": "Show ",
"type": "Test"
},
{
"text": "Is it possible to hide my policy from other insurance companies?",
"intent": "Hide",
"type": "Test"
},
{
"text": "Can I hide my illness while buying a policy?",
"intent": "Hide",
"type": "Test"
},
{
"text": "Where can I obtain a joint policy?",
"intent": "Obtain",
"type": "Test"
},
{
"text": "When can I obtain information about the conditions in which my policy can get lapsed?",
"intent": "Obtain",
"type": "Test"
},
{
"text": "Where should i click to talk about home insurance?",
"intent": "Talk",
"type": "Test"
},
{
"text": "When is the best time to call about insurance during your business hours?",
"intent": "Talk",
"type": "Test"
},
{
"text": "Where is the option to chat with a live agent?",
"intent": "Chat",
"type": "Test"
},
{
"text": "When did we chat the last time about my vehicle insurance?",
"intent": "Chat",
"type": "Test"
},
{
"text": "Where is the option to call the main insurance office in my city?",
"intent": "Call",
"type": "Test"
},
{
"text": "When is a better time to call someone at the head office?",
"intent": "Call",
"type": "Test"
},
{
"text": "I would like to ask the manager at the head office to forward my applicaton.",
"intent": "Ask",
"type": "Test"
},
{
"text": "Where to ask for cash deposit to my bank upon claim approval?",
"intent": "Ask",
"type": "Test"
},
{
"text": "how do you calculate the bonus amount upon policy maturity?",
"intent": "Calcuate",
"type": "Test"
},
{
"text": "I want to calculate the total maturity value of my insurance policy.",
"intent": "Calcuate",
"type": "Test"
},
{
"text": "Where do i have to click in order to re-calculate all my previous matured policies?",
"intent": "Re-Calculate",
"type": "Test"
},
{
"text": "When can you enable the re-calculate button for me?",
"intent": "Re-Calculate",
"type": "Test"
},
{
"text": "Where can I see the option to grant myself an extension on the payment deadline?",
"intent": "Grant",
"type": "Test"
},
{
"text": "When can the agent grant me rights to my online account?",
"intent": "Grant",
"type": "Test"
},
{
"text": "Where is the picture of the agent to help me identify them?",
"intent": "Identify",
"type": "Test"
},
{
"text": "When do you usually identify if a customer is eligible for an insurance benefit?",
"intent": "Identify",
"type": "Test"
},
{
"text": "Where to find conditions for getting a loan on my policy?",
"intent": "Find",
"type": "Test"
},
{
"text": "When will I be able to find if my policy has matured?",
"intent": "Find",
"type": "Test"
},
{
"text": "When will I see the group transactions in my app?",
"intent": "Group",
"type": "Test"
},
{
"text": "How to group items together if they belong to different subgroups?",
"intent": "Group",
"type": "Test"
},
{
"text": "Where can I click to print this webpage?",
"intent": "Print",
"type": "Test"
},
{
"text": "When can I print my premium receipts?",
"intent": "Print",
"type": "Test"
},
{
"text": "When do insurance companies publish their new coverage plans?",
"intent": "Publish",
"type": "Test"
},
{
"text": "How to publish a draft of an insurance underwriting?",
"intent": "Publish",
"type": "Test"
},
{
"text": "I would like to submit all my personal details as soon as possible.",
"intent": "Submit",
"type": "Test"
},
{
"text": "Where are the PDFs that I wanted to submit before the agent visits me?",
"intent": "Submit",
"type": "Test"
},
{
"text": "Where is the option to create categories for insurances?",
"intent": "Create",
"type": "Test"
},
{
"text": "When will be eligible to create my own invoices?",
"intent": "Create",
"type": "Test"
},
{
"text": "Where can I adjust a few clauses in my insurance contract?",
"intent": "Adjust",
"type": "Test"
},
{
"text": "When will be able to adjust my coverage in all of my insurances?",
"intent": "Adjust",
"type": "Test"
},
{
"text": "Where do I go to select a different insurance plan?",
"intent": "Select",
"type": "Test"
},
{
"text": "When will my insurance let me select the services that I desperately need?",
"intent": "Select",
"type": "Test"
},
{
"text": "Where is the option to annotate this piece of text?",
"intent": "Annotate",
"type": "Test"
},
{
"text": "When insurance companies annotate customer's data, is it kept private?",
"intent": "Annotate",
"type": "Test"
},
{
"text": "Where to find information on the people you appoint to visit customers?",
"intent": "Appoint",
"type": "Test"
},
{
"text": "When will you appoint an insurance agent for my case?",
"intent": "Appoint",
"type": "Test"
},
{
"text": "Where can I click to continue my insurance benefits even though I have withdrawn from the policy?",
"intent": "Continue",
"type": "Test"
},
{
"text": "When can i continue the repayment of my loan taken on my insurance?",
"intent": "Continue",
"type": "Test"
},
{
"text": "Where should i click to define this term here?",
"intent": "Define",
"type": "Test"
},
{
"text": "When there is no explanation for a term given, will you define it for me?",
"intent": "Define",
"type": "Test"
},
{
"text": "Where to inform that I need to have someone correct a few lines in my insurance contract?",
"intent": "Correct",
"type": "Test"
},
{
"text": "When can I have someone correct my misprinted address on policy certificate?",
"intent": "Correct",
"type": "Test"
},
{
"text": "Where is the mailbox to draft an e-mail to insurance authority?",
"intent": "Draft",
"type": "Test"
},
{
"text": "When is the next chance to ask my insurance manager to draf a new policy for me?",
"intent": "Draft",
"type": "Test"
},
{
"text": "Where should I e-mail if I need a copy of my insurance certificate?",
"intent": "E-mail",
"type": "Test"
},
{
"text": "When will the agent be receiving my e-mail?",
"intent": "E-mail",
"type": "Test"
},
{
"text": "Where is the unlink option on your website?",
"intent": "Unlink",
"type": "Test"
},
{
"text": "When can I unlink my car from your vehicle insurance?",
"intent": "Unlink",
"type": "Test"
},
{
"text": "Where to refer my application for renewal?",
"intent": "Refer",
"type": "Test"
},
{
"text": "When is the best time to refer a nominee for my current insurance policy?",
"intent": "Refer",
"type": "Test"
},
{
"text": "Where can I convert my paper policy into a plastic card?",
"intent": "Convert",
"type": "Test"
},
{
"text": "When will your agent help me to convert my mandatory insurance to a voluntary one?",
"intent": "Convert",
"type": "Test"
},
{
"text": "Where is the option to use another payment method for this month's premium?",
"intent": "Use",
"type": "Test"
},
{
"text": "When is the best time to use liability insurance?",
"intent": "Use",
"type": "Test"
},
{
"text": "Where should i click to generate a pdf of this webpage?",
"intent": "Generate",
"type": "Test"
},
{
"text": "When will be able to generate the invoices for the plans I have bought?",
"intent": "Generate",
"type": "Test"
},
{
"text": "Where is an option to visualize any data for better understanding?",
"intent": "Visualize",
"type": "Test"
},
{
"text": "When will the insurance data be ready for me to visualize?",
"intent": "Visualize",
"type": "Test"
},
{
"text": "Where do I click to translate this page?",
"intent": "Translate",
"type": "Test"
},
{
"text": "When I want to translate something, should I highlight it?",
"intent": "Translate",
"type": "Test"
},
{
"text": "I would like to invite other people to be customers of my insurance company.",
"intent": "Invite",
"type": "Test"
},
{
"text": "When is the best time to invite other people through the referal program?",
"intent": "Invite",
"type": "Test"
},
{
"text": "If I don't increase the maturity period, will I lose some benefits?",
"intent": "Increase",
"type": "Test"
},
{
"text": "Can you increase the cash payment limit?",
"intent": "Increase",
"type": "Test"
},
{
"text": "Where is all the the data that you usually record?",
"intent": "Record",
"type": "Test"
},
{
"text": "When is the transaction record deleted?",
"intent": "Record",
"type": "Test"
},
{
"text": "I would like an agent to reconcile and prepare a document for my perusal.",
"intent": "Reconcile",
"type": "Test"
},
{
"text": "When will be able to renconcile this payment?",
"intent": "Reconcile",
"type": "Test"
},
{
"text": "I would like to have someone to describe me the entire procedure of claiming an amount.",
"intent": "Describe",
"type": "Test"
},
{
"text": "When is the next chance to describe my insurance requirements to your agent?",
"intent": "Describe",
"type": "Test"
},
{
"text": "Where can I see someone to audit all the previous payments to my insurance?",
"intent": "Audit",
"type": "Test"
},
{
"text": "When will the next audit be?",
"intent": "Audit",
"type": "Test"
},
{
"text": "Please locate the nearest customer service center.",
"intent": "Locate",
"type": "Test"
},
{
"text": "if I want to locate an invoice in the portal, what keyword should I give you?",
"intent": "Locate",
"type": "Test"
},
{
"text": "Where do i find the option to schedule a meeting?",
"intent": "Schedule",
"type": "Test"
},
{
"text": "When is the soonest I can schedule a consultation with an insurance agent?",
"intent": "Schedule",
"type": "Test"
},
{
"text": "Where can I receive a brochure with all the information related to the insurance plan I want to buy?",
"intent": "Receive",
"type": "Test"
},
{
"text": "When will receive my money back from the health insurance?",
"intent": "Receive",
"type": "Test"
},
{
"text": "Where to find the troubleshoot manual?",
"intent": "Troubleshoot",
"type": "Test"
},
{
"text": "When is the best time to have a customer service representative troubleshoot these problems?",
"intent": "Troubleshoot",
"type": "Test"
},
{
"text": "Does claim involve a lot of bureacracy?",
"intent": "Claim",
"type": "Test"
},
{
"text": "I want to claim my insurance because I had to spend a lot of money out of my pocket.",
"intent": "Claim",
"type": "Test"
},
{
"text": "Where should I click to manage my payment methods?",
"intent": "Manage",
"type": "Test"
},
{
"text": "When is the best time to manage my pending payments?",
"intent": "Manage",
"type": "Test"
},
{
"text": "Where should I inquire if my insurance application was approved?",
"intent": "Inquire",
"type": "Test"
},
{
"text": "When can inquire about my application status?",
"intent": "Inquire",
"type": "Test"
},
{
"text": "Where do I assign the current pending invoices?",
"intent": "Assign",
"type": "Test"
},
{
"text": "When can I have the insurane agent assign my case further to a policy manager?",
"intent": "Assign",
"type": "Test"
},
{
"text": "Where do I have to click to designate this task to my favorite branch?",
"intent": "Designate",
"type": "Test"
},
{
"text": "When will I be able to designate my pending insurance taks to someone else?",
"intent": "Designate",
"type": "Test"
},
{
"text": "Where is the option to allocate ?",
"intent": "Allocate",
"type": "Test"
},
{
"text": "When will be able to allocate the claimed money?",
"intent": "Allocate",
"type": "Test"
},
{
"text": "Where can I arrange for someone to pick up my documents?",
"intent": "Arrange",
"type": "Test"
},
{
"text": "When will you be able to arrange my documents for insurance application ?",
"intent": "Arrange",
"type": "Test"
},
{
"text": "Where can I look if I wish to assess the reputation of this company?",
"intent": "Assess",
"type": "Test"
},
{
"text": "When does an agent assess risks and benefits of a customer?",
"intent": "Assess",
"type": "Test"
},
{
"text": "Where to go if I want all the details of my past reimbursements?",
"intent": "Go",
"type": "Test"
},
{
"text": "When can I go to your office to have my application processed?",
"intent": "Go",
"type": "Test"
},
{
"text": "Where should I click to evaluate an insurance plan?",
"intent": "Evaluate",
"type": "Test"
},
{
"text": "When will the insurance agent visit to evaluate the accident case?",
"intent": "Evaluate",
"type": "Test"
},
{
"text": "Where can I see a button to examine the current insurance policies?",
"intent": "Examine",
"type": "Test"
},
{
"text": "When is the best time to have an agent over to examine my liquid assests?",
"intent": "Examine",
"type": "Test"
},
{
"text": "If my customer doesn't like the product after I sell it, do I have to pay for the product return?",
"intent": "Sell",
"type": "Test "
},
{
"text": "I want to sell a product but it doesn't work properly, can you get it repaired before the sale?",
"intent": "Sell",
"type": "Test "
},
{
"text": "For the listing, do i need to maintain my own paperwork?",
"intent": "listing",
"type": "Test "
},
{
"text": "I am banned from listing my products, what should I do?",
"intent": "listing",
"type": "Test "
},
{
"text": "Can I get paid on my credit card instead of debit card?",
"intent": "paid",
"type": "Test "
},
{
"text": "Where can i complain, if I don't get paid for my sale in time?",
"intent": "paid",
"type": "Test "
},
{
"text": "I want my order to be changed.",
"intent": "order",
"type": "Test "
},
{
"text": "Does my order include shipping?",
"intent": "order",
"type": "Test "
},
{
"text": "Do you deliver even outside your regular business hours?",
"intent": "deliver",
"type": "Test "
},
{
"text": "where should I click if I want you to deliver this product to me?",
"intent": "deliver",
"type": "Test "
},
{
"text": "Would you be able to search who was the last person to buy this product?",
"intent": "Search",
"type": "Test "
},
{
"text": "How do you search among so many items so quickly?",
"intent": "Search",
"type": "Test "
},
{
"text": "What if you recommend a product and I don't want to order it?",
"intent": "Recommend",
"type": "Test "
},
{
"text": "would you recommend another product if i don't like this one?",
"intent": "Recommend",
"type": "Test "
},
{
"text": "can you locate the previous facility where my item was reported?",
"intent": "Locate",
"type": "Test "
},
{
"text": "Can you locate the manufacturer of this product?",
"intent": "Locate",
"type": "Test "
},
{
"text": "The expiry date on the package tells when the product is to expire but I can't see any date on it.",
"intent": "expire",
"type": "Test "
},
{
"text": "What do you mean by \"expire\"? these kind of products don't expire!",
"intent": "expire",
"type": "Test "
},
{
"text": "When do the pre-orders for this product end?",
"intent": "Pre-orders",
"type": "Test "
},
{
"text": "can I cancel the pre-order after booking one?",
"intent": "Pre-orders",
"type": "Test "
},
{
"text": "How do I track the order if it shows missing?",
"intent": "Track",
"type": "Test "
},
{
"text": "I would like to track the payment status but the page is not loading.",
"intent": "Track",
"type": "Test "
},
{
"text": "Can someone else contact you on my behalf?",
"intent": "Contact",
"type": "Test "
},
{
"text": "Can I contact you outside your business hours?",
"intent": "Contact",
"type": "Test "
},
{
"text": "What documents do I need to send this product abroad?",
"intent": "Send",
"type": "Test "
},
{
"text": "Send a picture of the delivery person before they come.",
"intent": "Send",
"type": "Test "
},
{
"text": "I want to manage the deliveries and orders for my shop on my own.",
"intent": "Manage",
"type": "Test "
},
{
"text": "Does the local area manager manage after-sales services too?",
"intent": "Manage",
"type": "Test "
},
{
"text": "Are there any charges levied on in person collection from your office?",
"intent": "Collect",
"type": "Test "
},
{
"text": "I want to authorize a relative to collect my order for me. What should I do?",
"intent": "Collect",
"type": "Test "
},
{
"text": "Please list all the documents that I need in order to resolve this dispute.",
"intent": "Resolve",
"type": "Test "
},
{
"text": "Who will act as a witness you resolve the issue?",
"intent": "Resolve",
"type": "Test "
},
{
"text": "Do I have to pay by cash or online when I buy a product?",
"intent": "buy",
"type": "Test "
},
{
"text": "Show me the specifics of the product I plan to buy.",
"intent": "buy",
"type": "Test "
},
{
"text": "Does guarantee cover cases like theft or loss of product?",
"intent": "Guarantee",
"type": "Test "
},
{
"text": "Can you also give an insurance for guarantee period?",
"intent": "Guarantee",
"type": "Test "
},
{
"text": "Even though the product I order is still in warranty period, you guys don't want to fix it.",
"intent": "Warranty",
"type": "Test "
},
{
"text": "What does my warranty cover?",
"intent": "Warranty",
"type": "Test "
},
{
"text": "If I do not like the product, can I replace it by another?",
"intent": "Replace",
"type": "Test "
},
{
"text": "Replace the product, it is more expensive than at my nearest store.",
"intent": "Replace",
"type": "Test "
},
{
"text": "Specify the criteria to customers before they click the order button.",
"intent": "Specify",
"type": "Test "
},
{
"text": "Why not specify price before customers purchase the product?",
"intent": "Specify",
"type": "Test "
},
{
"text": "Is the required documentation important for setting up my shop?",
"intent": "Documentation",
"type": "Test "
},
{
"text": "Do I need any documentation as a buyer if I want to buy products in bulk?",
"intent": "Documentation",
"type": "Test "
},
{
"text": "Does it matter if I don't learn about the terms and conditions?",
"intent": "Learn",
"type": "Test "
},
{
"text": "Where to learn more about the services you offer?",
"intent": "Learn",
"type": "Test "
},
{
"text": "Check please.",
"intent": "Check",
"type": "Test "
},
{
"text": "Will you check my ID before I can start a shop on your website?",
"intent": "Check",
"type": "Test "
},
{
"text": "Please make Help available immediately. ",
"intent": "Help",
"type": "Test "
},
{
"text": "Why should I avail Help?",
"intent": "Help",
"type": "Test "
},
{
"text": "How to check FAQs for other products?",
"intent": "FAQs",
"type": "Test "
},
{
"text": "Why are there no FAQs listed for my products?",
"intent": "FAQs",
"type": "Test "
},
{
"text": "Why do I have to advertize my products on the main page?",
"intent": "Advertize",
"type": "Test "
},
{
"text": "how to advertize my products?",
"intent": "Advertize",
"type": "Test "
},
{
"text": "Why is it important to exchange items sooner than later?",
"intent": "Exchange",
"type": "Test "
},
{
"text": "Can I exchange the delivered product the same day?",
"intent": "Exchange",
"type": "Test "
},
{
"text": "Do you regularly notify the buyers about how many times their store is viewed?",
"intent": "Notify",
"type": "Test "
},
{
"text": "Where is the option to notify myself about the products from competitors?",
"intent": "Notify",
"type": "Test "
},
{
"text": "Please E-mail me immediately if someone tries to report my online shop.",
"intent": "E-mail",
"type": "Test "
},
{
"text": "When should I E-mail your customer service if the matter is urgent?",
"intent": "E-mail",
"type": "Test "
},
{
"text": "Do you need any documents if I want to return a product?",
"intent": "Return",
"type": "Test "
},
{
"text": "Are sellers supposed to return the items to the warehouse if rejected by a customer?",
"intent": "Return",
"type": "Test "
},
{
"text": "What if I register with a wrong name? Can I register with a new name?",
"intent": "Register",
"type": "Test "
},
{
"text": "is a buyer obligated to register in order to buy from your website?",
"intent": "Register",
"type": "Test "
},
{
"text": "Am I supposed to sort the list of my products as per your guidelines?",
"intent": "Sort",
"type": "Test "
},
{
"text": "Help me sort the items in my shopping cart.",
"intent": "Sort",
"type": "Test "
},
{
"text": "Why should I download the helper guide?",
"intent": "Download",
"type": "Test "
},
{
"text": "We want to download copies of the bills. How do we do that?",
"intent": "Download",
"type": "Test "
},
{
"text": "Is it important to upload my personal information?",
"intent": "Upload",
"type": "Test "
},
{
"text": "We want to upload copies of the bills. How do we do that?",
"intent": "Upload",
"type": "Test "
},
{
"text": "should the customer pack the items they want to return?",
"intent": "Pack",
"type": "Test "
},
{
"text": "Let us pack the products and get them going!",
"intent": "Pack",
"type": "Test "
},
{
"text": "Try to fix the amount of negative reviews my store has.",
"intent": "Fix",
"type": "Test "
},
{
"text": "Should I fix the description if there are spelling errors?",
"intent": "Fix",
"type": "Test "
},
{
"text": "how do I complain about stalled orders?",
"intent": "Complain",
"type": "Test "
},
{
"text": "How soon can I complain about the wrongly delivered package?",
"intent": "Complain",
"type": "Test "
},
{
"text": "Will I be able to process a bill without your intervention?",
"intent": "Process",
"type": "Test "
},
{
"text": "can I process an invoice even after the customer has returned the product?",
"intent": "Process",
"type": "Test "
},
{
"text": "where is the document to print located on the website?",
"intent": "Print",
"type": "Test "
},
{
"text": "So i really need to print this document?",
"intent": "Print",
"type": "Test "
},
{
"text": "can you post a message to the customer care representative on my behalf?",
"intent": "Post",
"type": "Test "
},
{
"text": "what if I post a customer's personal details publicly?",
"intent": "Post",
"type": "Test "
},
{
"text": "What to do if I want to checkout some other online store with a similar product?",
"intent": "Checkout",
"type": "Test "
},
{
"text": "how soon can I checkout if I am eligible to sell on your website?",
"intent": "Checkout",
"type": "Test "
},
{
"text": "Would you ask for my seller ID everytime I list a product on my online store?",
"intent": "Ask",
"type": "Test "
},
{
"text": "Let customers know not to ask for my personal contact number.",
"intent": "Ask",
"type": "Test "
},
{
"text": "Is it important to connect with the manufacturer if the product doesn't function as expected?",
"intent": "Connect",
"type": "Test "
},
{
"text": "please connect the delivery person with me as soon they reach at buyer's doorstep.",
"intent": "Connect",
"type": "Test "
},
{
"text": "how can i have you add a seller to your scam list?",
"intent": "Add",
"type": "Test "
},
{
"text": "why should I add my bank details to my profile?",
"intent": "Add",
"type": "Test "
},
{
"text": "When should I delete the old contacts from your website?",
"intent": "Delete",
"type": "Test "
},
{
"text": "Will you delete all the information on my online store if I do not pay you?",
"intent": "Delete",
"type": "Test "
},
{
"text": "What if I view some bugs in the homepage of your website?",
"intent": "View",
"type": "Test "
},
{
"text": "Should I view some sensitive information, who should I report it to?",
"intent": "View",
"type": "Test "
},
{
"text": "Is there any benefit if I subscribe to a particular seller?",
"intent": "Subscribe",
"type": "Test "
},
{
"text": "Could you subscribe to the trending online stores if I happen to miss out on them?",
"intent": "Subscribe",
"type": "Test "
},
{
"text": "Is it allowed to create multiple online stores using a single account?",
"intent": "Create",
"type": "Test "
},
{
"text": "What if I create invoices with someone else's name?",
"intent": "Create",
"type": "Test "
},
{
"text": "can I purchase things on your website using my credit card?",
"intent": "Purchase",
"type": "Test "
},
{
"text": "The product I purchased from your store is defective!",
"intent": "Purchase",
"type": "Test "
},
{
"text": "How long they will take to customize my product.",
"intent": "Customize",
"type": "Test "
},
{
"text": "Which products can we customize online.",
"intent": "Customize",
"type": "Test "
},
{
"text": "I am disappointed because you always ship the products really late.",
"intent": "Ship",
"type": "Test "
},
{
"text": "Is there a limit on quantity of the items to ship?",
"intent": "Ship",
"type": "Test "
},
{
"text": "why do all your products I share turn out to be broken?",
"intent": "Share",
"type": "Test "
},
{
"text": "When can you share the details of the shipment with me?",
"intent": "Share",
"type": "Test "
},
{
"text": "WIll you charge me if I first reserve a product and then cancel it?",
"intent": "Reserve",
"type": "Test "
},
{
"text": "After I reserve a product, can I get a discount on it?",
"intent": "Reserve",
"type": "Test "
},
{
"text": "Please save all of my personal data before you delete the online store.",
"intent": "Save",
"type": "Test "
},
{
"text": "Does it make sense to save a sellers bank info?",
"intent": "Save",
"type": "Test "
},
{
"text": "I wish to book this item but I would like to get a better price on it.",
"intent": "Book",
"type": "Test "
},
{
"text": "Why should i book one of the products that you show me?",
"intent": "Book",
"type": "Test "
},
{
"text": "Do you choose the delivery courier service for customers or let them do it?",
"intent": "Choose",
"type": "Test "
},
{
"text": "would it be possible to the delivery location even if I don't have a permanent address?",
"intent": "Choose",
"type": "Test "
},
{
"text": "Would you open the transaction history for me?",
"intent": "Open",
"type": "Test "
},
{
"text": "I didn't even open my shopping cart, and everything is gone!",
"intent": "Open",
"type": "Test "
},
{
"text": "Why should I close my store if have no products to sell?",
"intent": "Close",
"type": "Test "
},
{
"text": "Do I need to close the account if I am banned from selling products on your website?",
"intent": "Close",
"type": "Test "
},
{
"text": "Would it be okay if I first delay the delivery and then later refuse to accept it?",
"intent": "Delay",
"type": "Test "
},
{
"text": "why do you always delay the delivery?",
"intent": "Delay",
"type": "Test "
},
{
"text": "Can the surprise be planned in advance?",
"intent": "Surprise ",
"type": "Test "
},
{
"text": "Why is it against your terms and conditions to surprise a customer by personally shipping a gift to them?",
"intent": "Surprise ",
"type": "Test "
},
{
"text": "will you ask the administrator to remove my store if it violated return policies?",
"intent": "Remove",
"type": "Test "
},
{
"text": "Do you usually remove those sellers who don't respond to their customer's queries?",
"intent": "Remove",
"type": "Test "
},
{
"text": "Am i responsible to browse through my content and check it?",
"intent": "Browse",
"type": "Test "
},
{
"text": "Browse all the online stores that come under this category.",
"intent": "Browse",
"type": "Test "
},
{
"text": "Where should i click to schedule a delivery?",
"intent": "Schedule",
"type": "Test "
},
{
"text": "if i schedule the delivery person to arrive early, is there an extra fees for that?",
"intent": "Schedule",
"type": "Test "
},
{
"text": "Are these exlusive club memberships for whole life, if I join one of them?",
"intent": "Join",
"type": "Test "
},
{
"text": "I wonder if I another sellers can join in the sale event that I created.",
"intent": "Join",
"type": "Test "
},
{
"text": "Are there any limitations on the basic setup?",
"intent": "Setup",
"type": "Test "
},
{
"text": "How fast can I setup my customer account?",
"intent": "Setup",
"type": "Test "
},
{
"text": "Is it possible to deactivate a feature if I don't like it?",
"intent": "deactivate",
"type": "Test "
},
{
"text": "What if i deactivated my account unintentionally?",
"intent": "deactivate",
"type": "Test "
},
{
"text": "I think i will not be able to finish filling the forms now. can we continue tomorrow?",
"intent": "finish",
"type": "Test "
},
{
"text": "why should I finish filling the forms first? Will i have to re-do them?",
"intent": "finish",
"type": "Test "
},
{
"text": "Why should I shop from this seller?",
"intent": "shop",
"type": "Test "
},
{
"text": "What do i shop for? can you recommend me a few things?",
"intent": "shop",
"type": "Test "
},
{
"text": "Will my items be saved if I leave my shopping cart for a long time?",
"intent": "Leave",
"type": "Test "
},
{
"text": "Where to leave a comment if I am not satisfied with the product?",
"intent": "Leave",
"type": "Test "
},
{
"text": "Can someone else try your products virtually using my account?",
"intent": "Try",
"type": "Test "
},
{
"text": "After I try a product, is it allowed to take a screenshot?",
"intent": "Try",
"type": "Test "
},
{
"text": "Will the customers be interested in the new products I am trying to launch?",
"intent": "Launch",
"type": "Test "
},
{
"text": "I want to launch some products outside this region because there my products are in high demand.",
"intent": "Launch",
"type": "Test "
},
{
"text": "What options do you have to help disabled people access your website?",
"intent": "access",
"type": "Test "
},
{
"text": "How soon can I get full access to my online store that I recently setup?",
"intent": "access",
"type": "Test "
},
{
"text": "What does autofill do?",
"intent": "Autofill",
"type": "Test "
},
{
"text": "I would like to autofill all my payment details quickly but the feature is disabled for some reason.",
"intent": "Autofill",
"type": "Test "
},
{
"text": "Everytime I can't understand a text or an image, please check if I want to zoom_out.",
"intent": "zoom_out",
"type": "Test "
},
{
"text": "What if I ask you to zoom_out in the middle of a demo?",
"intent": "zoom_out",
"type": "Test "
},
{
"text": "What do I have to do in order to lift a ban?",
"intent": "Ban",
"type": "Test "
},
{
"text": "I want to ban a seller for misbehavior and rude language. How do i do that`?",
"intent": "Ban",
"type": "Test "
},
{
"text": "I want to unblock my favorite store but It is not clear in your help section how to do it.",
"intent": "Unblock",
"type": "Test "
},
{
"text": "Will you unblock someone if they send you an email with explanation for their action?",
"intent": "Unblock",
"type": "Test "
},
{
"text": "I have received the order twice, i just want to keep only one. So, I will reject it.",
"intent": "Reject",
"type": "Test "
},
{
"text": "where should i notify if i reject an order?",
"intent": "Reject",
"type": "Test "
},
{
"text": "I usually select my own products but sometimes I might need your help. ",
"intent": "Select",
"type": "Test "
},
{
"text": "will you have me select the template of my online store?",
"intent": "Select",
"type": "Test "
},
{
"text": "Am i required to enter my banking details?",
"intent": "Enter",
"type": "Test "
},
{
"text": "I would like to enter a quiz contest but don't know how to find out which stores have one going on.",
"intent": "Enter",
"type": "Test "
},
{
"text": "would slide feature help me to compare two products side by side?",
"intent": "Slide",
"type": "Test "
},
{
"text": "The slide bar is way too fast, it doesn't stop where I want it to.",
"intent": "Slide",
"type": "Test "
},
{
"text": "How to pick a delivery from your warehouse?",
"intent": "Pick",
"type": "Test "
},
{
"text": "I will pick up my order on my own, please tell me where to go.",
"intent": "Pick",
"type": "Test "
},
{
"text": "What is the best filter to apply if I do not want to see overrated products?",
"intent": "Filter",
"type": "Test "
},
{
"text": "Can you filter out all the items that I have alredy bought once?",
"intent": "Filter",
"type": "Test "
},
{
"text": "Are there any implications if I you read about a product to me many times?",
"intent": "Read",
"type": "Test "
},
{
"text": "read the return policy to me.",
"intent": "Read",
"type": "Test "
},
{
"text": "Do not make my products trend on the website until you have an approval from me.",
"intent": "Trend",
"type": "Test "
},
{
"text": "What is this new trend all about?",
"intent": "Trend",
"type": "Test "
},
{
"text": "Should I follow a store if I know there have been frauds reported by other customers?",
"intent": "Follow",
"type": "Test "
},
{
"text": "We would like to follow some trendy stores for this product.",
"intent": "Follow",
"type": "Test "
},
{
"text": "how come my message always end up in customer's spam folder?",
"intent": "message",
"type": "Test "
},
{
"text": "Do you recommend connecting with customers by sending a message?",
"intent": "message",
"type": "Test "
},
{
"text": "Can you help me edit a comment after I post it?",
"intent": "comment",
"type": "Test "
},
{
"text": "There is a hateful comment on my online store, I would like to complain about it.",
"intent": "comment",
"type": "Test "
},
{
"text": "What if my poduct is delayed, can I bargain for a better price?",
"intent": "bargain",
"type": "Test "
},
{
"text": "I would like to bargain for a good price as you got some new customers via my referal. ",
"intent": "bargain",
"type": "Test "
},
{
"text": "Everytime I read a contract, please ask me if I want to zoom_in on terms and conditions.",
"intent": "zoom_in",
"type": "Test "
},
{
"text": "What if I ask you to zoom_in into the stores that offer this product?",
"intent": "zoom_in",
"type": "Test "
},
{
"text": "We would like to activate our online store again after we were banned?",
"intent": "Activate",
"type": "Test "
},
{
"text": "What if do not activate my account for months?",
"intent": "Activate",
"type": "Test "
},
{
"text": "As a customer, i would like a demo of the product that I plan to buy.",
"intent": "demo",
"type": "Test "
},
{
"text": "A demo really helps us customers to make an informed decision about buying a product.",
"intent": "demo",
"type": "Test "
},
{
"text": "Am I supposed to discover new products on my own or can I get some assistance?",
"intent": "discover",
"type": "Test "
},
{
"text": "what does discover button do?",
"intent": "discover",
"type": "Test "
},
{
"text": "Are you going to release all the invoices of the current billing cycle soon?",
"intent": "release",
"type": "Test "
},
{
"text": "I would like to be notified about the next release of products in this range.",
"intent": "release",
"type": "Test "
},
{
"text": "I want to unlock as many deals as possible.",
"intent": "unlock",
"type": "Test "
},
{
"text": "Is this coupon valid to unlock the deal?",
"intent": "unlock",
"type": "Test "
},
{
"text": "Redeem this voucher code.",
"intent": "Redeem",
"type": "Test "
},
{
"text": "How does it benefit me to redeem this voucher?",
"intent": "Redeem",
"type": "Test "
},
{
"text": "I need to sign_up on a store but I have no clue where to go from here.",
"intent": "Sign_up",
"type": "Test "
},
{
"text": "Is a sign_up considered valid if it is done with someone else's details?",
"intent": "Sign_up",
"type": "Test "
},
{
"text": "when should I see a store's latest products listings?",
"intent": "See",
"type": "Test "
},
{
"text": "If I want to see more, what should I do?",
"intent": "See",
"type": "Test "
},
{
"text": "if I bookmark an out of stock product, will you let me know when its available?",
"intent": "Bookmark",
"type": "Test "
},
{
"text": "are there any discounts on the products if I bookmark them?",
"intent": "Bookmark",
"type": "Test "
},
{
"text": "Would it be possible to donate for some noble cause after I pay for the items?",
"intent": "Donate",
"type": "Test"
},
{
"text": "How do I pledge to donate some money to an ngo on your website?",
"intent": "Donate",
"type": "Test"
}
] |