File size: 56,860 Bytes
76962bf | 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 | {
"questions": [
{
"id": 1,
"question": "I've been feeling really thirsty and urinating a lot lately, could that be a sign of diabetes?",
"intent": "general",
"role": "patient"
},
{
"id": 2,
"question": "What is the optimal HbA1c target for a patient with Type 2 diabetes who has just started insulin therapy?",
"intent": "treatment",
"role": "clinician"
},
{
"id": 3,
"question": "I've been taking metformin for my polycystic ovary syndrome (PCOS), but I'm experiencing some side effects - can you help me weigh the benefits and risks?",
"intent": "general",
"role": "patient"
},
{
"id": 4,
"question": "What is the recommended diet for a patient with diabetes who has just started an intensive insulin regimen?",
"intent": "general",
"role": "dietitian"
},
{
"id": 5,
"question": "I'm planning to start a new exercise program to manage my blood sugar levels - what types of exercises are recommended for patients with diabetes?",
"intent": "general",
"role": "patient"
},
{
"id": 6,
"question": "I've been experiencing frequent urination and my hands are always cold, but I haven't had any symptoms that would indicate a heart attack or stroke. Is this related to diabetes?",
"intent": "general",
"role": "patient"
},
{
"id": 7,
"question": "My doctor just told me that my HbA1c levels are higher than normal and I need to start taking insulin every day. What are the different types of insulin and how do I know which one is right for me?",
"intent": "general",
"role": "patient"
},
{
"id": 8,
"question": "I've been tracking my glucose levels using a continuous glucose monitor, but I'm not sure what the normal range is for me. Can you tell me what this information means and how often I should check it?",
"intent": "general",
"role": "patient"
},
{
"id": 9,
"question": "I've been reading about different diets for people with diabetes, but I'm not sure which one is best. Can you recommend a low-carb diet and explain how it will help me manage my blood sugar levels?",
"intent": "general",
"role": "researcher"
},
{
"id": 10,
"question": "My friend just got diagnosed with Type 2 diabetes, but she's not sure what the difference is between metformin and pioglitazone. Can you explain how these medications work and which one might be better for her?",
"intent": "treatment",
"role": "clinician"
},
{
"id": 11,
"question": "I've been experiencing frequent urination and my hands feel numb. Is this related to my diabetes?",
"intent": "general",
"role": "patient"
},
{
"id": 12,
"question": "What is the recommended daily intake of carbohydrates for someone with Type 1 diabetes who is trying to lose weight?",
"intent": "general",
"role": "dietitian"
},
{
"id": 13,
"question": "My blood glucose levels have been consistently high since starting a new medication. Can you explain why this might be happening and what I can do about it?",
"intent": "general",
"role": "patient"
},
{
"id": 14,
"question": "I've been prescribed insulin glargine for my Type 2 diabetes, but I'm having trouble injecting it correctly. Can you show me how to administer this type of insulin?",
"intent": "general",
"role": "patient"
},
{
"id": 15,
"question": "A recent study suggests that incorporating more plant-based meals into your diet can help lower blood sugar levels in people with diabetes. Can you provide me with some examples of healthy, diabetic-friendly recipes?",
"intent": "general",
"role": "researcher"
},
{
"id": 16,
"question": "My mother was recently diagnosed with Type 2 diabetes, and I'm worried about her risk of complications. What are the main things she needs to watch out for?",
"intent": "general",
"role": "patient"
},
{
"id": 17,
"question": "I've been taking metformin as prescribed by my doctor, but I'm still experiencing high blood sugar levels. Can you explain why this is happening and what else my doctor might recommend?",
"intent": "general",
"role": "patient"
},
{
"id": 18,
"question": "I've noticed that I've been getting really thirsty and urinating a lot more than usual. Could this be a sign of diabetes, or is there another explanation?",
"intent": "general",
"role": "patient"
},
{
"id": 19,
"question": "I'm planning to start a new diet that's high in sugar and low in fiber. Will this impact my risk of developing Type 2 diabetes, and are there any specific foods I should avoid?",
"intent": "general",
"role": "patient"
},
{
"id": 20,
"question": "My doctor mentioned that I should monitor my blood sugar levels more closely. Can you explain why this is important and what tools or apps can help me do so accurately?",
"intent": "general",
"role": "patient"
},
{
"id": 21,
"question": "I've been experiencing excessive thirst and urination lately. What could be the possible cause, Doctor?",
"intent": "general",
"role": "patient"
},
{
"id": 22,
"question": "My doctor has prescribed metformin for my Type 2 diabetes. Can you explain how this medication works and its potential side effects?",
"intent": "general",
"role": "patient"
},
{
"id": 23,
"question": "I'm planning to start a new exercise routine to manage my blood sugar levels better. What types of exercises are recommended for diabetics, and how often should I aim to work out?",
"intent": "general",
"role": "patient"
},
{
"id": 24,
"question": "I've been experiencing frequent episodes of hypoglycemia despite taking my insulin as prescribed. Can you suggest any lifestyle changes or adjustments to my medication regimen that might help prevent these episodes?",
"intent": "general",
"role": "patient"
},
{
"id": 25,
"question": "What are the most effective dietary habits for managing diabetes, and how can I ensure I'm getting enough nutrients while following a strict glycemic index diet?",
"intent": "general",
"role": "dietitian"
},
{
"id": 26,
"question": "I've been experiencing frequent urination and my hands are feeling numb sometimes, do you think I could have diabetes?",
"intent": "general",
"role": "patient"
},
{
"id": 27,
"question": "My doctor has prescribed metformin for my Type 1 diabetes. How often should I check my blood glucose levels?",
"intent": "general",
"role": "patient"
},
{
"id": 28,
"question": "What is the ideal HbA1c target range for a patient with newly diagnosed type 2 diabetes, and how can we monitor it?",
"intent": "diagnosis",
"role": "clinician"
},
{
"id": 29,
"question": "I've been eating a lot of sweet dishes during festivals. How will this affect my blood sugar levels, and what can I do to manage them?",
"intent": "general",
"role": "patient"
},
{
"id": 30,
"question": "Are there any clinical trials or studies currently underway for new diabetes medications? Can you provide more information on DPP-4 inhibitors?",
"intent": "general",
"role": "researcher"
},
{
"id": 31,
"question": "I've been experiencing frequent urination and my hands are shaking a lot, what could be causing these symptoms?",
"intent": "general",
"role": "patient"
},
{
"id": 32,
"question": "My HbA1c level is 8.5%, I'm currently on metformin and taking insulin twice a day, what are my next steps to better manage my blood sugar?",
"intent": "general",
"role": "patient"
},
{
"id": 33,
"question": "I've been told I have gestational diabetes, what dietary changes can I make to reduce my risk of complications during pregnancy?",
"intent": "general",
"role": "pregnant woman"
},
{
"id": 34,
"question": "My doctor wants me to start monitoring my blood glucose levels more regularly, what type of meter and test strips should I use?",
"intent": "general",
"role": "patient"
},
{
"id": 35,
"question": "I've been reading about the benefits of a low-carb diet for managing diabetes, but I'm not sure if it's safe for me to follow a keto diet. Can you advise on how to incorporate this into my existing treatment plan?",
"intent": "general",
"role": "patient"
},
{
"id": 36,
"question": "I've been experiencing excessive thirst and urination lately, along with blurred vision. Could these be symptoms of diabetes? What's the first step I should take?",
"intent": "general",
"role": "patient"
},
{
"id": 37,
"question": "My doctor has prescribed metformin to help lower my HbA1c levels. Can you walk me through how this medication works and what I can expect from the treatment?",
"intent": "general",
"role": "patient"
},
{
"id": 38,
"question": "I've been tracking my blood glucose levels for a few weeks now, but I'm still struggling to maintain a consistent target range. Do you have any tips for improving insulin sensitivity?",
"intent": "general",
"role": "patient"
},
{
"id": 39,
"question": "I've recently started incorporating more plant-based meals into my diet, but I'm worried that it might not be suitable for someone with diabetes. Can you recommend some healthy Indian dishes that won't spike my blood sugar levels?",
"intent": "general",
"role": "patient"
},
{
"id": 40,
"question": "I've been diagnosed with diabetic ketoacidosis (DKA). What are the warning signs I should look out for, and how can I get immediate medical attention if I experience them?",
"intent": "general",
"role": "patient"
},
{
"id": 41,
"question": "I've been experiencing numbness in my hands for the past few days, could it be related to my diabetes?",
"intent": "general",
"role": "patient"
},
{
"id": 42,
"question": "What are the benefits of using a continuous glucose monitor (CGM) versus traditional blood glucose meters?",
"intent": "general",
"role": "researcher"
},
{
"id": 43,
"question": "Can you recommend some low-carb Indian recipes that I can easily prepare for my diabetes diet?",
"intent": "general",
"role": "patient"
},
{
"id": 44,
"question": "I've been diagnosed with gestational diabetes and am experiencing high blood sugar levels. What are the immediate steps I should take?",
"intent": "general",
"role": "pregnant woman"
},
{
"id": 45,
"question": "How does metformin work in treating type 2 diabetes, and what are its common side effects?",
"intent": "treatment",
"role": "clinician"
},
{
"id": 46,
"question": "I've been experiencing frequent urination and my hands are feeling all tingly, doctor can you tell me what's causing this?",
"intent": "general",
"role": "patient"
},
{
"id": 47,
"question": "What is the optimal HbA1c target for a patient with newly diagnosed Type 2 diabetes and I'm not taking any medications yet?",
"intent": "treatment",
"role": "clinician"
},
{
"id": 48,
"question": "I've been tracking my daily glucose levels using my insulin pump, can you help me understand what this trend graph is telling me?",
"intent": "general",
"role": "patient"
},
{
"id": 49,
"question": "What are the latest guidelines for carbohydrate counting in patients with diabetes and how does it differ from traditional meal planning?",
"intent": "general",
"role": "researcher"
},
{
"id": 50,
"question": "I've been experiencing extreme thirst and hunger, doctor I think I might be developing ketoacidosis can you tell me what to do?",
"intent": "general",
"role": "patient"
},
{
"id": 51,
"question": "My doctor says I need to monitor my blood sugar levels more closely, but what's the normal range for someone like me with Type 2 diabetes?",
"intent": "general",
"role": "patient"
},
{
"id": 52,
"question": "I've been prescribed metformin for my diabetes, but I'm having side effects - how can I minimize these while still taking the medication as directed?",
"intent": "general",
"role": "patient"
},
{
"id": 53,
"question": "My friend has just been diagnosed with Gestational Diabetes and is feeling really overwhelmed. What are some key lifestyle changes she can make to manage her condition during pregnancy?",
"intent": "diagnosis",
"role": "clinician"
},
{
"id": 54,
"question": "I've noticed I'm experiencing frequent urination at night, which is really disrupting my sleep. What could be causing this and are there any remedies or treatments available?",
"intent": "general",
"role": "patient"
},
{
"id": 55,
"question": "A recent study suggests that a specific dietary approach may help manage blood sugar levels in people with Type 1 diabetes. Can you tell me more about it and whether I should try it?",
"intent": "general",
"role": "researcher"
},
{
"id": 56,
"question": "Doc, I've been experiencing weird tingling sensations in my hands and feet since my diagnosis with Type 2 diabetes. Can you help me figure out if it's related to my insulin dosages?",
"intent": "general",
"role": "patient"
},
{
"id": 57,
"question": "How often should I check my blood glucose levels, and what are the normal ranges for a person with Type 1 diabetes on an insulin pump?",
"intent": "monitoring",
"role": "clinician"
},
{
"id": 58,
"question": "I've been prescribed metformin for my gestational diabetes. Can you explain how it works and what I can expect from the treatment?",
"intent": "general",
"role": "patient"
},
{
"id": 59,
"question": "If my HbA1c levels are consistently above 8%, does that mean I have diabetic neuropathy, or is it just a sign of poor blood sugar control?",
"intent": "general",
"role": "patient"
},
{
"id": 60,
"question": "What's the best way to incorporate more plant-based meals into my diet while managing Type 2 diabetes, and are there any specific foods to limit or avoid?",
"intent": "general",
"role": "researcher"
},
{
"id": 61,
"question": "I've been experiencing recurring chest pains when I eat, and my blood sugar levels have been spiking after meals. Is this a sign of diabetic cardiomyopathy?",
"intent": "general",
"role": "patient"
},
{
"id": 62,
"question": "My doctor prescribed metformin for my Type 2 diabetes, but I'm having trouble managing my side effects - bloating and gas. Can you suggest alternative medications or dosing strategies?",
"intent": "general",
"role": "patient"
},
{
"id": 63,
"question": "I've noticed that my blood glucose levels tend to drop significantly at night, even when I'm sleeping - is this a normal variation or could it be a sign of an underlying issue?",
"intent": "general",
"role": "patient"
},
{
"id": 64,
"question": "I've been reading about the benefits of a low-carb diet for diabetes management, but I'm not sure how to incorporate it into my daily meal planning - can you provide some tips?",
"intent": "general",
"role": "patient"
},
{
"id": 65,
"question": "I have a family history of Type 2 diabetes and am concerned about my risk - what are the most effective lifestyle modifications I can make to reduce my risk, and when should I consider genetic testing?",
"intent": "general",
"role": "patient"
},
{
"id": 66,
"question": "I've been experiencing frequent urination and blurred vision. Is this a sign of diabetes?",
"intent": "general",
"role": "patient"
},
{
"id": 67,
"question": "My HbA1c levels are consistently above 7%. What is the best course of action for me to take?",
"intent": "general",
"role": "patient"
},
{
"id": 68,
"question": "I've been taking insulin twice a day, but I'm still experiencing high blood sugar levels. Can you help me adjust my dosage?",
"intent": "general",
"role": "patient"
},
{
"id": 69,
"question": "Can you explain the benefits and risks of switching from metformin to sitagliptin for Type 2 diabetes management?",
"intent": "treatment",
"role": "clinician"
},
{
"id": 70,
"question": "I'm considering a low-carb diet to manage my blood sugar levels. Can you provide me with some recommendations on how much protein and healthy fats I should include in my daily meals?",
"intent": "general",
"role": "dietary"
},
{
"id": 71,
"question": "I've been experiencing weird tingling sensations in my feet, and I'm worried it might be a sign of nerve damage from diabetes. Can you tell me what's causing this?",
"intent": "general",
"role": "patient"
},
{
"id": 72,
"question": "I was recently diagnosed with Type 2 diabetes, and my doctor prescribed metformin. Can you explain how it works and what I can expect from the medication?",
"intent": "general",
"role": "patient"
},
{
"id": 73,
"question": "My fasting glucose levels have been consistently high, and I'm worried about the long-term effects on my health. What are some lifestyle changes I can make to improve my blood sugar control?",
"intent": "general",
"role": "patient"
},
{
"id": 74,
"question": "I've been reading about the benefits of a low-carb diet for people with diabetes. Can you recommend some specific foods and meal plans that I can follow?",
"intent": "general",
"role": "patient"
},
{
"id": 75,
"question": "I'm a researcher studying the effects of insulin pumps on glycemic control in patients with Type 1 diabetes. Can you provide me with some data on the current market trends and user experiences with different pump models?",
"intent": "general",
"role": "researcher"
},
{
"id": 76,
"question": "My blood sugar levels have been fluctuating a lot lately, and I've noticed numbness in my feet. What could be causing this?",
"intent": "general",
"role": "patient"
},
{
"id": 77,
"question": "I recently had an HbA1c test done and my levels are higher than expected. Can you help me understand what it means and how I can lower them?",
"intent": "general",
"role": "patient"
},
{
"id": 78,
"question": "I'm considering taking metformin to manage my blood sugar levels, but I've heard some concerns about its side effects. Can you weigh the pros and cons for me?",
"intent": "general",
"role": "patient"
},
{
"id": 79,
"question": "I'm planning a road trip with friends, but I'm worried about managing my blood sugar levels on the go. Do you have any tips or recommendations?",
"intent": "general",
"role": "patient"
},
{
"id": 80,
"question": "My doctor mentioned that I may be at risk for diabetic retinopathy, but I don't understand what it means or how to prevent it. Can you explain it in simple terms?",
"intent": "general",
"role": "patient"
},
{
"id": 81,
"question": "I've been feeling really thirsty and hungry lately, even though I eat a full meal three times a day. Is this normal for someone with diabetes?",
"intent": "general",
"role": "patient"
},
{
"id": 82,
"question": "My HbA1c levels are consistently above 7%, and my doctor prescribed metformin. Can you explain how the medication works, and what kind of diet would be best with it?",
"intent": "general",
"role": "patient"
},
{
"id": 83,
"question": "I have type 2 diabetes, and my doctor recommended an A1C test. What does this test measure, and how can I prepare for it?",
"intent": "general",
"role": "patient"
},
{
"id": 84,
"question": "My blood glucose levels are fluctuating wildly throughout the day. How often should I check my levels, and what's the optimal range to aim for?",
"intent": "monitoring",
"role": "clinician"
},
{
"id": 85,
"question": "I've been hearing about a new type of insulin pump that can automatically adjust dosages based on food intake. Can you tell me more about its benefits and potential risks, and how I would use it?",
"intent": "general",
"role": "researcher"
},
{
"id": 86,
"question": "I've been experiencing extreme thirst and frequent urination since starting insulin therapy. Is this a common side effect?",
"intent": "general",
"role": "patient"
},
{
"id": 87,
"question": "What is the recommended HbA1c target for a patient with Type 2 diabetes who also has kidney disease?",
"intent": "management",
"role": "clinician"
},
{
"id": 88,
"question": "I'm trying to follow a low-carb diet, but I keep running out of healthy options. Can you suggest some quick and easy recipes for diabetic meals?",
"intent": "general",
"role": "dietary"
},
{
"id": 89,
"question": "I've been feeling dizzy during physical activity. Could this be related to my diabetes, or is it something else?",
"intent": "general",
"role": "patient"
},
{
"id": 90,
"question": "What are the latest guidelines for foot care in patients with diabetic neuropathy?",
"intent": "management",
"role": "clinician"
},
{
"id": 91,
"question": "I've been experiencing frequent urination and my hands are feeling numb, what could be causing this?",
"intent": "general",
"role": "patient"
},
{
"id": 92,
"question": "What is the difference between a glucometer and a continuous glucose monitor, and which one should I use for my Type 1 diabetes?",
"intent": "general",
"role": "patient"
},
{
"id": 93,
"question": "I've been taking metformin to control my blood sugar levels, but I'm experiencing some side effects like nausea and diarrhea. Can you recommend a different medication or dosage?",
"intent": "general",
"role": "patient"
},
{
"id": 94,
"question": "I've been diagnosed with diabetic retinopathy, what are the next steps for managing my condition and preventing further vision loss?",
"intent": "general",
"role": "patient"
},
{
"id": 95,
"question": "What is the recommended carb count for a person with diabetes following a low-carb diet, and how can I adjust my meal plan to achieve this goal?",
"intent": "general",
"role": "dietitian"
},
{
"id": 96,
"question": "I've been experiencing frequent urination and blurred vision since my diagnosis. What could be the cause and when should I see my doctor?",
"intent": "general",
"role": "patient"
},
{
"id": 97,
"question": "What is the optimal HbA1c target for a patient with Type 2 diabetes, and how does it relate to cardiovascular risk?",
"intent": "treatment",
"role": "clinician"
},
{
"id": 98,
"question": "I've been trying various low-carb diets but still struggle with blood sugar control. Are there any specific dietary recommendations for Indian patients with diabetes?",
"intent": "general",
"role": "patient"
},
{
"id": 99,
"question": "My doctor has prescribed metformin, but I'm experiencing digestive issues. Can you tell me more about the common side effects of this medication and what alternatives are available?",
"intent": "general",
"role": "patient"
},
{
"id": 100,
"question": "I've noticed my feet swelling after meals. Is this a symptom of diabetes, and can I take any over-the-counter medications to reduce it?",
"intent": "general",
"role": "patient"
},
{
"id": 101,
"question": "I've been experiencing frequent urination and blurred vision, could these be symptoms of diabetes? My blood sugar levels have been consistently high for the past few weeks.",
"intent": "general",
"role": "patient"
},
{
"id": 102,
"question": "What are some effective ways to manage blood sugar levels through dietary changes?",
"intent": "general",
"role": "researcher"
},
{
"id": 103,
"question": "I'm scheduled for a flu shot, but I have diabetes. Can I still get vaccinated without increasing my risk of complications?",
"intent": "general",
"role": "patient"
},
{
"id": 104,
"question": "What is the recommended HbA1c target range for people with Type 2 diabetes, and what are the consequences of not meeting this target?",
"intent": "treatment",
"role": "clinician"
},
{
"id": 105,
"question": "Can you recommend a low-carb diet plan that suits my lifestyle as a busy working professional with diabetes? I'd like to know the macronutrient breakdown and meal ideas.",
"intent": "general",
"role": "dietary"
},
{
"id": 106,
"question": "I've been experiencing frequent urination and my hands feel cold all the time, I'm worried I might have diabetes. What should I do?",
"intent": "general",
"role": "patient"
},
{
"id": 107,
"question": "My doctor just prescribed me metformin to control my blood sugar levels. Can you explain how it works and what kind of diet would be best with this medication?",
"intent": "general",
"role": "patient"
},
{
"id": 108,
"question": "I'm a type 2 diabetic patient, I've been monitoring my HbA1c levels regularly. What is the target range for HbA1c in patients with diabetes, and how often should I check it?",
"intent": "general",
"role": "patient"
},
{
"id": 109,
"question": "I've been reading about the benefits of a ketogenic diet for type 2 diabetes. Can you provide me with some resources or studies that support this claim?",
"intent": "general",
"role": "researcher"
},
{
"id": 110,
"question": "I have gestational diabetes and I'm due to give birth soon. What are the most common complications of gestational diabetes in newborns, and what should I do to minimize them?",
"intent": "general",
"role": "patient"
},
{
"id": 111,
"question": "I've been experiencing blurred vision and frequent urination lately, but my blood sugar levels are usually okay. What could be causing these symptoms?",
"intent": "general",
"role": "patient"
},
{
"id": 112,
"question": "My doctor prescribed me metformin to control my blood sugar levels. How often should I take it and what should I expect from the medication?",
"intent": "general",
"role": "patient"
},
{
"id": 113,
"question": "I've been tracking my glucose levels using a continuous glucose monitor, but I'm having trouble understanding how to interpret the data. Can you explain how HbA1c is calculated?",
"intent": "general",
"role": "patient"
},
{
"id": 114,
"question": "I've been reading about the importance of a balanced diet in managing diabetes. What are some examples of healthy carbohydrates and protein sources that I can incorporate into my daily meals?",
"intent": "general",
"role": "dietary"
},
{
"id": 115,
"question": "I'm planning to participate in a clinical trial for a new diabetes medication. What are the potential benefits and risks of participating, and how will I be monitored throughout the trial?",
"intent": "general",
"role": "researcher"
},
{
"id": 116,
"question": "I've been experiencing frequent urination and blurred vision. Could these be symptoms of diabetes, and if so, what's the next step?",
"intent": "general",
"role": "patient"
},
{
"id": 117,
"question": "What is the ideal HbA1c target for someone with Type 2 diabetes, and how often should I get my levels checked?",
"intent": "general",
"role": "patient"
},
{
"id": 118,
"question": "I recently underwent a kidney biopsy due to suspected diabetic nephropathy. What are the possible complications of this procedure, and what's the expected recovery time?",
"intent": "general",
"role": "researcher"
},
{
"id": 119,
"question": "My doctor has prescribed metformin for my Type 2 diabetes. Can you explain how it works, and are there any potential side effects I should be aware of?",
"intent": "general",
"role": "patient"
},
{
"id": 120,
"question": "I've been following a low-carb diet to manage my blood sugar levels. Can you recommend some specific Indian dishes that are low in carbs and rich in fiber, such as dal makhani or vegetable biryani?",
"intent": "general",
"role": "dietitian"
},
{
"id": 121,
"question": "I've been experiencing constant fatigue and blurred vision, and my blood sugar levels have been consistently high lately. Is this a sign of diabetic complications?",
"intent": "general",
"role": "patient"
},
{
"id": 122,
"question": "What is the difference between metformin and sulfonylureas in terms of how they affect insulin levels, and which one would you recommend for a patient with a body mass index (BMI) of 35?",
"intent": "treatment",
"role": "clinician"
},
{
"id": 123,
"question": "I've been tracking my blood glucose levels daily, but I'm having trouble predicting when to take insulin. Can you help me understand the relationship between carbohydrate intake and blood glucose spikes?",
"intent": "general",
"role": "patient"
},
{
"id": 124,
"question": "I recently underwent a low-carb diet for two months, but my HbA1c levels didn't decrease as expected. Is it normal to experience weight loss without improved glycemic control?",
"intent": "general",
"role": "researcher"
},
{
"id": 125,
"question": "What are the best foods to include in a meal plan for someone with type 2 diabetes, and how can I calculate the glycemic index of different ingredients?",
"intent": "general",
"role": "dietitian"
},
{
"id": 126,
"question": "I've been experiencing frequent urination and my hands are feeling really cold, is this a sign of diabetes?",
"intent": "general",
"role": "patient"
},
{
"id": 127,
"question": "What are the short-term effects of not taking metformin as prescribed by my doctor?",
"intent": "general",
"role": "patient"
},
{
"id": 128,
"question": "How often should I check my blood glucose levels and what's a normal range for me?",
"intent": "general",
"role": "patient"
},
{
"id": 129,
"question": "I've been trying the keto diet to manage my blood sugar, but I'm not seeing any improvements. Is it working for everyone with type 2 diabetes?",
"intent": "general",
"role": "researcher"
},
{
"id": 130,
"question": "My doctor has prescribed insulin therapy for my diabetic neuropathy. Can you explain how this will help me manage my nerve pain?",
"intent": "general",
"role": "patient"
},
{
"id": 131,
"question": "I've been experiencing frequent urination and blurry vision. Could these be symptoms of diabetes? How do I know for sure?",
"intent": "general",
"role": "patient"
},
{
"id": 132,
"question": "My doctor has prescribed metformin to help with my blood sugar levels. Can you explain how this medication works and what I can expect in terms of dosage and side effects?",
"intent": "general",
"role": "patient"
},
{
"id": 133,
"question": "I'm planning a road trip to India and want to know if it's safe for me to travel with insulin. Are there any specific precautions I should take or foods I should avoid?",
"intent": "general",
"role": "patient"
},
{
"id": 134,
"question": "I've been having trouble controlling my blood sugar levels lately. Is it possible that I have a new onset of diabetes and what are the next steps to take?",
"intent": "general",
"role": "patient"
},
{
"id": 135,
"question": "I'm considering switching from a basal insulin to an insulin glargine regimen. What are the potential benefits and drawbacks of this change, and how will it impact my daily routine?",
"intent": "general",
"role": "patient"
},
{
"id": 136,
"question": "I've been experiencing extreme thirst and frequent urination since starting a new medication for my high blood pressure. Could this be a sign of diabetes?",
"intent": "general",
"role": "patient"
},
{
"id": 137,
"question": "What is the optimal target HbA1c level for a patient with newly diagnosed Type 2 diabetes, and how should I adjust their insulin regimen accordingly?",
"intent": "treatment",
"role": "clinician"
},
{
"id": 138,
"question": "I've noticed that my feet are feeling numb and tingling lately. Could this be related to my blood sugar levels, and what can I do to manage it?",
"intent": "general",
"role": "patient"
},
{
"id": 139,
"question": "What are the potential risks associated with taking metformin as a monotherapy for Type 2 diabetes, and how does it interact with other medications?",
"intent": "general",
"role": "researcher"
},
{
"id": 140,
"question": "I'm planning to start a new diet that's low in carbohydrates and high in protein. Will this help me better manage my blood sugar levels, and are there any specific foods I should avoid?",
"intent": "general",
"role": "dietitian"
},
{
"id": 141,
"question": "I've been experiencing fatigue and blurred vision lately. Is this a sign of diabetes?",
"intent": "general",
"role": "patient"
},
{
"id": 142,
"question": "What is the difference between basal and background insulin doses, and how often should I adjust them?",
"intent": "treatment",
"role": "clinician"
},
{
"id": 143,
"question": "I've been tracking my blood glucose levels using a glucometer. How do I interpret the readings to prevent complications?",
"intent": "general",
"role": "patient"
},
{
"id": 144,
"question": "Is it true that following a low-carb diet can help manage blood sugar levels? What are some tips for incorporating it into my daily meals?",
"intent": "general",
"role": "researcher"
},
{
"id": 145,
"question": "I've been experiencing frequent urination and feeling thirsty all the time. Could this be a sign of diabetic nephropathy? What are my treatment options?",
"intent": "general",
"role": "patient"
},
{
"id": 146,
"question": "I've been experiencing excessive thirst and urination for weeks. Is this a sign of diabetes?",
"intent": "general",
"role": "patient"
},
{
"id": 147,
"question": "What is the recommended HbA1c target range for patients with Type 1 diabetes, and why is it important?",
"intent": "treatment",
"role": "clinician"
},
{
"id": 148,
"question": "I've noticed my feet are really cold all the time. Could this be related to diabetes?",
"intent": "general",
"role": "patient"
},
{
"id": 149,
"question": "How does a low-carb diet affect blood sugar levels in people with type 2 diabetes, and what are some potential benefits?",
"intent": "general",
"role": "dietitian"
},
{
"id": 150,
"question": "I've had an episode of diabetic ketoacidosis (DKA). How often should I check my blood sugar levels while recovering at home, and what are the warning signs of DKA?",
"intent": "general",
"role": "researcher"
},
{
"id": 151,
"question": "Doc, I've been experiencing frequent urination and my hands are always sweating even when I'm not hot. Could this be related to diabetes? What's the best course of action?",
"intent": "general",
"role": "patient"
},
{
"id": 152,
"question": "I've been prescribed metformin for my type 2 diabetes, but I'm still experiencing high blood sugar readings. Can you explain how this medication works and what adjustments I need to make to my diet?",
"intent": "general",
"role": "patient"
},
{
"id": 153,
"question": "I've been tracking my glucose levels for a week, and I notice that my HbA1c has increased from 6.5% to 7.2%. What does this mean for my treatment plan, and are there any lifestyle changes I can make to bring it back under control?",
"intent": "general",
"role": "patient"
},
{
"id": 154,
"question": "Can you explain the difference between carbohydrate counting and glycemic index? Which one is more effective for managing my diabetes, especially when it comes to planning meals for a social event?",
"intent": "general",
"role": "patient"
},
{
"id": 155,
"question": "I've been experiencing severe dehydration due to excessive urination. Can you recommend any additional fluids I can drink in addition to my usual water intake to help manage this side effect?",
"intent": "general",
"role": "patient"
},
{
"id": 156,
"question": "I've been experiencing frequent urination and thirst since my diagnosis, is this a normal side effect of taking insulin?",
"intent": "general",
"role": "patient"
},
{
"id": 157,
"question": "What are the differences between metformin and pioglitazone in terms of efficacy for Type 2 diabetes management, and which one is more suitable for patients with renal impairment?",
"intent": "treatment",
"role": "clinician"
},
{
"id": 158,
"question": "I've noticed that my blood sugar levels are higher after eating a meal high in sugar. Can you recommend any diet adjustments or supplements to help manage post-meal spikes?",
"intent": "general",
"role": "patient"
},
{
"id": 159,
"question": "What is the significance of HbA1c levels in monitoring diabetic control, and what are the implications for adjusting insulin dosages?",
"intent": "general",
"role": "researcher"
},
{
"id": 160,
"question": "I'm planning to start a low-carb diet. Can you provide some guidance on how many grams of carbs I should aim for daily, and what are the potential risks of drastically reducing my carb intake?",
"intent": "general",
"role": "dietitian"
},
{
"id": 161,
"question": "I've been experiencing recurring fatigue and blurred vision, can you help me figure out if it's related to my diabetes?",
"intent": "general",
"role": "patient"
},
{
"id": 162,
"question": "How often should I check my blood sugar levels, and what's the ideal range for a normal reading?",
"intent": "general",
"role": "patient"
},
{
"id": 163,
"question": "I've been prescribed metformin to help with my insulin resistance. Can you explain how it works and when I can expect to see results?",
"intent": "general",
"role": "patient"
},
{
"id": 164,
"question": "Can you recommend a healthy meal plan for someone with diabetes, focusing on Indian cuisine as my family's food preferences are traditional?",
"intent": "general",
"role": "dietitian"
},
{
"id": 165,
"question": "What's the difference between HbA1c and glucose monitoring, and how often should I have both done to ensure accurate diabetes management?",
"intent": "general",
"role": "researcher"
},
{
"id": 166,
"question": "I've been experiencing excessive thirst and urination since my diagnosis with type 2 diabetes. Is this a symptom of a more serious condition?",
"intent": "general",
"role": "patient"
},
{
"id": 167,
"question": "What is the optimal HbA1c target for someone with Type 1 diabetes, and how does it impact long-term complications?",
"intent": "treatment",
"role": "clinician"
},
{
"id": 168,
"question": "I've been noticing numbness in my feet, which I suspect might be related to my diabetes. Can you recommend any exercises or stretches to alleviate this discomfort?",
"intent": "general",
"role": "patient"
},
{
"id": 169,
"question": "My doctor recently started me on metformin for my gestational diabetes. How does this medication work, and what are the potential side effects?",
"intent": "general",
"role": "pregnant patient"
},
{
"id": 170,
"question": "I've been tracking my glucose levels using a continuous glucometer. Can you help me understand how to interpret these readings, and what the normal ranges are for someone with diabetes?",
"intent": "general",
"role": "patient"
},
{
"id": 171,
"question": "I've been experiencing frequent urination and blurred vision since starting my insulin regimen. What could be causing this, and are these symptoms reversible?",
"intent": "general",
"role": "patient"
},
{
"id": 172,
"question": "What is the recommended HbA1c target range for a patient with newly diagnosed Type 2 diabetes, and how often should we check it?",
"intent": "diagnosis",
"role": "clinician"
},
{
"id": 173,
"question": "I've been following a keto diet to manage my blood sugar levels. Can you tell me if this type of diet is suitable for someone with diabetes, and are there any specific concerns I should be aware of?",
"intent": "general",
"role": "patient"
},
{
"id": 174,
"question": "I've been experiencing severe headaches and fatigue since taking my insulin medication. Are these side effects common with this type of medication, and are there any alternatives I can try?",
"intent": "general",
"role": "patient"
},
{
"id": 175,
"question": "I've been reading about the potential benefits of using continuous glucose monitoring systems (CGMS) for diabetes management. Can you tell me more about how they work, and are they suitable for patients with Type 1 diabetes?",
"intent": "general",
"role": "researcher"
},
{
"id": 176,
"question": "I keep experiencing sudden episodes of blurry vision, and my legs feel like they're on fire. What could be causing this?",
"intent": "general",
"role": "patient"
},
{
"id": 177,
"question": "What's the difference between basal and bolus insulin dosages, and how often should I adjust them based on my blood glucose levels?",
"intent": "general",
"role": "patient"
},
{
"id": 178,
"question": "I've been following a low-carb diet for the past week, but my blood sugar levels are still spiking after meals. Can you help me identify any potential issues with this approach?",
"intent": "general",
"role": "dietitian"
},
{
"id": 179,
"question": "My doctor recently told me I have high HbA1c levels, which means my long-term blood sugar control is poor. What are the potential risks and complications of this condition?",
"intent": "general",
"role": "patient"
},
{
"id": 180,
"question": "I've been researching different types of diabetes medications online and came across a new oral medication that seems promising for my condition. Can you verify its efficacy and safety in clinical trials?",
"intent": "general",
"role": "researcher"
},
{
"id": 181,
"question": "I've been experiencing frequent urination and my hands are always cold to the touch. Could this be a sign of diabetes? My blood sugar levels have been okay, but I've noticed some fluctuations lately.",
"intent": "general",
"role": "patient"
},
{
"id": 182,
"question": "I'm trying to lose weight and was wondering if it's okay to cut out carbohydrates completely for a week. Can you recommend any low-carb diets for diabetes management?",
"intent": "general",
"role": "patient"
},
{
"id": 183,
"question": "My HbA1c test result came back at 7.5%. Is that within the normal range? What can I do to get it lower?",
"intent": "general",
"role": "patient"
},
{
"id": 184,
"question": "I've been prescribed metformin for my type 2 diabetes, but I'm having trouble swallowing the pills. Are there any alternative medications or formulations that might be easier to take?",
"intent": "general",
"role": "patient"
},
{
"id": 185,
"question": "I've noticed some numbness in my fingers and toes, and I'm worried it might be related to diabetes. Can you tell me more about diabetic neuropathy and what treatment options are available?",
"intent": "general",
"role": "patient"
},
{
"id": 186,
"question": "I've been experiencing frequent urination and my hands are shaking while walking, do you think these symptoms could be related to diabetes?",
"intent": "general",
"role": "patient"
},
{
"id": 187,
"question": "What are the recommended daily carb limits for a type 1 diabetic on insulin therapy, and how does this impact blood sugar control?",
"intent": "general",
"role": "researcher"
},
{
"id": 188,
"question": "I've been tracking my glucose levels and noticed that they tend to spike after meals high in refined carbs. Can you suggest some low-GI food options for breakfast?",
"intent": "general",
"role": "dietary"
},
{
"id": 189,
"question": "My doctor just diagnosed me with diabetic retinopathy, what are the immediate steps I should take to slow its progression and potentially prevent vision loss?",
"intent": "general",
"role": "patient"
},
{
"id": 190,
"question": "I've been taking metformin for my type 2 diabetes, but I'm not sure what it does or how to adjust my dosage based on changes in my blood sugar levels. Can you explain the mechanism of action and provide guidance?",
"intent": "general",
"role": "patient"
},
{
"id": 191,
"question": "I've been experiencing frequent urination and feeling thirsty all the time. Could this be a sign of diabetes?",
"intent": "general",
"role": "patient"
},
{
"id": 192,
"question": "What is the difference between basal insulin and bolus insulin, and when should I use each?",
"intent": "treatment",
"role": "clinician"
},
{
"id": 193,
"question": "I've had high blood sugar levels for a while, but my HbA1c is still relatively normal. Is it safe to continue with my current diet and exercise plan?",
"intent": "general",
"role": "patient"
},
{
"id": 194,
"question": "How does the glycemic index of different foods affect blood sugar levels in people with diabetes?",
"intent": "general",
"role": "researcher"
},
{
"id": 195,
"question": "I've been experiencing numbness and tingling in my hands and feet. Could this be a side effect of my diabetes medication?",
"intent": "general",
"role": "patient"
},
{
"id": 196,
"question": "I've been experiencing frequent urination and blurry vision - could these be signs of diabetes? Are there any early symptoms I can look out for?",
"intent": "general",
"role": "patient"
},
{
"id": 197,
"question": "How does metformin affect my blood sugar levels during the first few months of treatment?",
"intent": "general",
"role": "patient"
},
{
"id": 198,
"question": "I've been tracking my glucose levels using a Continuous Glucose Monitor (CGM). What's the normal range for my HbA1c test results, and how often should I aim to check it?",
"intent": "general",
"role": "patient"
},
{
"id": 199,
"question": "I've been advised to follow a low-carb diet to manage my blood sugar levels. Can you provide some examples of keto-friendly foods and snacks?",
"intent": "general",
"role": "dietary"
},
{
"id": 200,
"question": "What are the potential risks associated with taking insulin without medical supervision, and how can I safely manage my insulin dosage?",
"intent": "general",
"role": "patient"
}
]
} |