Spaces:
Sleeping
Sleeping
File size: 361,222 Bytes
210d88d | 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 | {"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for l3 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Sanjay as unavailable for Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "sanjay", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'DevOps' taught by Prof. Syed: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "syed_devops_6b-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "syed_devops_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'NSS' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nss", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Syed has requested a day off on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "syed", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Mr. Vikas Kumar's 'SEPM (Soft. Engg)' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "vikas_sepm_5b", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "vikas_sepm_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Nanda's 'NSS' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "nanda_nss_5b", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "nanda_nss_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'CN Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cnlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Praveen's 'ML Lab' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "praveen_mllab_6b-E1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "praveen_mllab_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Env. Studies' taught by Ms. Krithika: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "krithika_evs_5a", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "krithika_evs_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Praveen as unavailable for Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "praveen", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'ML' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "ml", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Sanjay's 'GenAI' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "sanjay_genai_6b-E2", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "sanjay_genai_6b-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Vikas Kumar has requested a day off on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "vikas", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Praveen has requested a day off on Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "praveen", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark OE Teacher 2 as unavailable for Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'GenAI' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "genai", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Jovin as unavailable for Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "jovin", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Wednesday for Mr. Vikas Kumar.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "vikas", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark OE Teacher 2 as unavailable for Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'SEPM (Soft. Engg)' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Anu as unavailable for Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Anu is not able to take any classes on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Syed as unavailable for Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "syed", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 2 is not able to take any classes on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Saturday for Ms. Krithika.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "krithika", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Theory of Comp.' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "toc", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Comp. Networks' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cn", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'SEPM (Soft. Engg)' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Nanda is not able to take any classes on Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "nanda", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'ML' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "ml", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'DevOps' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "devops", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Anu is not able to take any classes on Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'NLP' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'NLP' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'NSS' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nss", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Surbhi has requested a day off on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Tahir as unavailable for Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'NLP' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'NoSQL DB' taught by Prof. Praveen: It must not be on Wednesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "praveen_nosql_5b", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "praveen_nosql_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Saturday for Mr. Rahul Bharath.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "rahul", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 2 is not able to take any classes on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'Mini Project' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "miniproj", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Sanjay has requested a day off on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "sanjay", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Friday for Mr. Vikas Kumar.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "vikas", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Project' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room r3 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'CN Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cnlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Dr. Kavitha as unavailable for Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Anu as unavailable for Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for r3 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'Comp. Networks' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cn", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'NLP Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlplab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room r1 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r1", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'NLP' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'GenAI' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "genai", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Tuesday for Prof. Surbhi.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Rahul Bharath is not able to take any classes on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "rahul", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Monday for Soft Skills Trainer.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Tahir as unavailable for Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Wednesday for Prof. Anu.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Praveen as unavailable for Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "praveen", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'ML' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "ml", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 1 is not able to take any classes on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_1", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Friday for Ms. Krithika.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "krithika", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Adrash's 'Forum' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "adrash_forum_6b-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "adrash_forum_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'NLP' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'GenAI' taught by Prof. Sanjay: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "sanjay_genai_6a-E2", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "sanjay_genai_6a-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'Project' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Dr. Kavitha is not able to take any classes on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for r1 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r1", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Surbhi has requested a day off on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l1 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l1", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'ML' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "ml", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Praveen is not able to take any classes on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "praveen", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'OE' taught by OE Teacher 1: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "oe_fac_1_oe_6a-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "oe_fac_1_oe_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Spread the 3 weekly hours for 'Analog Circuits' across the week, not just on Monday and Tuesday.", "output": {"constraint_type": "balanced_weekly_distribution", "entity_type": "subject", "entity_name": "Analog Circuits", "parameters": {"weekly_hours": 3}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Abhijith has requested a day off on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "abhijith", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for l4 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for l2 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l2", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l3 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for r1 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r1", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Wednesday for Prof. Syed.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "syed", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Anu is not able to take any classes on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Mr. Vikas Kumar as unavailable for Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "vikas", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Theory of Comp.' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "toc", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Surbhi is not able to take any classes on Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Adrash's 'CN Lab' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "adrash_cnlab_5a", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "adrash_cnlab_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Praveen's 'NoSQL DB' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "praveen_nosql_5b", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "praveen_nosql_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'NLP' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E2", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Abhijith is not able to take any classes on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "abhijith", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 1 is not able to take any classes on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_1", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Anu is not able to take any classes on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 2 has requested a day off on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Anu as unavailable for Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "The Physics Lab (PHY201L) must take place in the designated lab room.", "output": {"constraint_type": "resource_assignment", "entity_type": "course", "entity_name": "PHY201L", "parameters": {"required_room_type": "designated_lab"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Dr. Kavitha is not able to take any classes on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Nanda has requested a day off on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "nanda", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'ML Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "mllab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'NSS' taught by Prof. Nanda: It must not be on Wednesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "nanda_nss_5b", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "nanda_nss_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'NLP Lab' taught by Prof. Anu: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlplab_6b-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlplab_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Tuesday for Prof. Anu.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'DevOps' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "devops", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for l4 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ms. Krithika has requested a day off on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "krithika", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Thursday for Prof. Jovin.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "jovin", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Soft Skills Trainer as unavailable for Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Dr. Kavitha has requested a day off on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Jovin has requested a day off on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "jovin", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Thursday for Soft Skills Trainer.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'Theory of Comp.' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "toc", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Soft Skills Trainer is not able to take any classes on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room r2 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r2", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For the CS305 lab, the CSE-A section of 60 students must be split into batches of 20 because the lab has only 20 computers.", "output": {"constraint_type": "lab_batch_division", "entity_type": "section", "entity_name": "CSE-A", "parameters": {"course": "CS305", "total_students": 60, "capacity_per_batch": 20}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 2 is not able to take any classes on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'DevOps' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "devops", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'NLP' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Nanda is not able to take any classes on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "nanda", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Tahir has requested a day off on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Tahir's 'Cloud' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "tahir_cc_6a-E2", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "tahir_cc_6a-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 2 is not able to take any classes on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Saturday for Soft Skills Trainer.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'RM & IPR' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_rmipr_5a", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_rmipr_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'CN Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cnlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Soft Skills Trainer is not able to take any classes on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Soft Skills Trainer as unavailable for Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark OE Teacher 2 as unavailable for Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Project' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'SEPM (Soft. Engg)' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'CN Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cnlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Soft Skills Trainer as unavailable for Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Praveen's 'NoSQL DB' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "praveen_nosql_5b", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "praveen_nosql_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'Comp. Networks' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_cn_5b", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_cn_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Professor Sharma cannot teach two different classes at the same time.", "output": {"constraint_type": "no_faculty_clash", "entity_type": "faculty", "entity_name": "Professor Sharma", "parameters": {}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'DevOps' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "devops", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Thursday for OE Teacher 1.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_1", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Jovin has requested a day off on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "jovin", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 2 has requested a day off on Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'NLP' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'NLP' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for l4 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'Data Vis Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "dvlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Abhijith has requested a day off on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "abhijith", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'NSS' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nss", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark OE Teacher 2 as unavailable for Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For OE Teacher 2's 'OE' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "oe_fac_2_oe_6b-E2", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "oe_fac_2_oe_6b-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 2 is not able to take any classes on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'ML' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "ml", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'SEPM (Soft. Engg)' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'DevOps' taught by Prof. Syed: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "syed_devops_6a-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "syed_devops_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Monday for Prof. Nanda.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "nanda", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Soft Skills Trainer as unavailable for Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Tuesday for Prof. Praveen.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "praveen", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'ML' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "ml", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Praveen as unavailable for Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "praveen", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Tahir as unavailable for Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for r4 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Data Vis Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "dvlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 2 has requested a day off on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'Comp. Networks' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cn", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 1 is not able to take any classes on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Data Vis Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "dvlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'NLP Lab' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlplab_6b-E1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlplab_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'NLP Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlplab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Nanda has requested a day off on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "nanda", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'Mini Project' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "miniproj", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Friday for OE Teacher 1.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_1", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'RM & IPR' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_rmipr_5b", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_rmipr_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room r1 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r1", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Thursday for Prof. Surbhi.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Ms. Krithika as unavailable for Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "krithika", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Tuesday for Prof. Jovin.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "jovin", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for r4 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'OE' taught by OE Teacher 2: It must not be on Wednesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "oe_fac_2_oe_6b-E1", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "oe_fac_2_oe_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'ML Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "mllab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Saturday for Dr. Kavitha.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Adrash as unavailable for Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "adrash", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 2 is not able to take any classes on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Anu is not able to take any classes on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'GenAI' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "genai", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Syed has requested a day off on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "syed", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Syed's 'DevOps' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "syed_devops_6b-E1", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "syed_devops_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for l3 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Surbhi has requested a day off on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Nanda's 'HCI' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "nanda_hcai_6a-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "nanda_hcai_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Tuesday for Prof. Nanda.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "nanda", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'GenAI' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "genai", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for l3 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Nanda has requested a day off on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "nanda", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Tahir is not able to take any classes on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Project' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'NoSQL DB' taught by Prof. Praveen: It must not be on Wednesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "praveen_nosql_5b", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "praveen_nosql_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room r3 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Mr. Abhijith as unavailable for Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "abhijith", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Nanda's 'HCI' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "nanda_hcai_6b-E1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "nanda_hcai_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for l4 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Sanjay has requested a day off on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "sanjay", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Sanjay's 'Mini Project' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "sanjay_miniproj_5b", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "sanjay_miniproj_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Comp. Networks' taught by Prof. Adrash: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "adrash_cn_5a", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "adrash_cn_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for r3 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'ML' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "ml", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'GenAI' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "genai", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'ML' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "ml", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'SEPM (Soft. Engg)' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for l2 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l2", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'NoSQL DB' taught by Prof. Praveen: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "praveen_nosql_5a", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "praveen_nosql_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 1 is not able to take any classes on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Cloud' taught by Prof. Tahir: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "tahir_cc_6a-E2", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "tahir_cc_6a-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Vikas Kumar is not able to take any classes on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "vikas", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'Comp. Networks' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cn", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Jovin's 'Data Vis Lab' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "jovin_dvlab_5b", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "jovin_dvlab_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Dr. Kavitha as unavailable for Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'GenAI' taught by Prof. Sanjay: It must not be on Wednesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "sanjay_genai_6b-E2", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "sanjay_genai_6b-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Soft Skills Trainer has requested a day off on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Praveen is not able to take any classes on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "praveen", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'ML Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "mllab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'GenAI' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "genai", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for r1 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r1", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Surbhi has requested a day off on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Monday for Prof. Tahir.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Adrash's 'CN Lab' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "adrash_cnlab_5a", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "adrash_cnlab_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'ML' taught by Dr. Kavitha: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "kavitha_ml_6a-E2", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "kavitha_ml_6a-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Praveen's 'IKS' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "praveen_iks_6b-E1", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "praveen_iks_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l3 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Mini Project' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "miniproj", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Tahir has requested a day off on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 2 is not able to take any classes on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Mr. Rahul Bharath as unavailable for Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "rahul", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'Project' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'SEPM (Soft. Engg)' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'CN Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cnlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'DevOps' taught by Prof. Syed: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "syed_devops_6b-E1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "syed_devops_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Jovin is not able to take any classes on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "jovin", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Syed has requested a day off on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "syed", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Project' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'SEPM (Soft. Engg)' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'Comp. Networks' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_cn_5b", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_cn_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Wednesday for Mr. Vikas Kumar.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "vikas", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l1 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l1", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'NLP' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for r3 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'GenAI' taught by Prof. Sanjay: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "sanjay_genai_6b-E2", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "sanjay_genai_6b-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Dr. Rao wants to keep Fridays free if possible.", "output": {"constraint_type": "faculty_time_preference", "entity_type": "faculty", "entity_name": "Dr. Rao", "parameters": {"prefer_day_off": "Friday"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Theory of Comp.' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "toc", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'Mini Project' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "miniproj", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l1 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l1", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Data Vis Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "dvlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'SEPM (Soft. Engg)' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l2 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l2", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Professor Gupta is on emergency leave today. Re-optimize today's schedule for his classes.", "output": {"constraint_type": "emergency_reoptimization", "entity_type": "faculty", "entity_name": "Professor Gupta", "parameters": {"reason": "sudden_leave", "scope": "partial_timetable"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'Project' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'CN Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cnlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Nanda as unavailable for Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "nanda", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Friday for Prof. Nanda.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "nanda", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l1 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l1", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Jovin is not able to take any classes on Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "jovin", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'Project' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Soft Skills Trainer has requested a day off on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Vikas Kumar has requested a day off on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "vikas", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark OE Teacher 2 as unavailable for Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Anu has requested a day off on Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'RM & IPR' taught by Prof. Anu: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_rmipr_5a", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_rmipr_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'SEPM (Soft. Engg)' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for r3 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'NLP Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlplab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Soft Skills Trainer has requested a day off on Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Syed is not able to take any classes on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "syed", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Project' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'Theory of Comp.' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "toc", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'NLP' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Monday for OE Teacher 2.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'NLP' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'GenAI' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "genai", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Tahir is not able to take any classes on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'CN Lab' taught by Prof. Adrash: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "adrash_cnlab_5a", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "adrash_cnlab_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Thursday for Ms. Krithika.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "krithika", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'NSS' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nss", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Mr. Vikas Kumar as unavailable for Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "vikas", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Surbhi has requested a day off on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'DevOps' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "devops", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Dr. Kavitha's 'ML' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "kavitha_ml_6b-E2", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "kavitha_ml_6b-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Jovin as unavailable for Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "jovin", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Project' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 1 is not able to take any classes on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_1", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Surbhi is not able to take any classes on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Praveen's 'NoSQL DB' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "praveen_nosql_5b", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "praveen_nosql_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Dr. Priya's total teaching load should not exceed 18 hours per week.", "output": {"constraint_type": "faculty_workload_limit", "entity_type": "faculty", "entity_name": "Dr. Priya", "parameters": {"max_hours_per_week": 18}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Thursday for Mr. Abhijith.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "abhijith", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'DevOps' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "devops", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'Theory of Comp.' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "toc", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Abhijith has requested a day off on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "abhijith", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'NLP' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Jovin is not able to take any classes on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "jovin", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'SEPM (Soft. Engg)' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Wednesday for OE Teacher 2.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'NLP' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'NLP' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Cloud' taught by Prof. Tahir: It must not be on Wednesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "tahir_cc_6b-E2", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "tahir_cc_6b-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'DevOps' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "devops", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Vikas Kumar has requested a day off on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "vikas", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Mr. Abhijith's 'Data Vis Lab' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "abhijith_dvlab_5a", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "abhijith_dvlab_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'NSS' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nss", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'CN Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cnlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Jovin as unavailable for Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "jovin", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'CN Lab' taught by Prof. Adrash: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "adrash_cnlab_5a", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "adrash_cnlab_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'NLP Lab' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlplab_6a-E1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlplab_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Project' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'NLP Lab' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlplab_6b-E1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlplab_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Comp. Networks' taught by Prof. Anu: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_cn_5b", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_cn_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Comp. Networks' taught by Prof. Anu: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_cn_5b", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_cn_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'Project' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark OE Teacher 2 as unavailable for Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Don't schedule 'Advanced Mathematics' in the last period of the day.", "output": {"constraint_type": "avoid_end_of_day_heavy_subject", "entity_type": "subject", "entity_name": "Advanced Mathematics", "parameters": {}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Nanda as unavailable for Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "nanda", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Tahir has requested a day off on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l4 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'CN Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cnlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Friday for Soft Skills Trainer.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'Mini Project' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "miniproj", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Jovin has requested a day off on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "jovin", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Project' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Sanjay's 'Mini Project' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "sanjay_miniproj_5a", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "sanjay_miniproj_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Tahir is not able to take any classes on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Project' taught by Prof. Jovin: It must not be on Wednesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "jovin_major_6b-E1", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "jovin_major_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'GenAI' taught by Prof. Sanjay: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "sanjay_genai_6b-E2", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "sanjay_genai_6b-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'ML' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "ml", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark OE Teacher 1 as unavailable for Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Tuesday for Mr. Vikas Kumar.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "vikas", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Dr. Kavitha as unavailable for Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Nanda has requested a day off on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "nanda", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'NLP' taught by Prof. Anu: It must not be on Wednesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E1", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for r3 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'Project' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Tahir as unavailable for Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'ML' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "ml", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'Mini Project' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "miniproj", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Data Vis Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "dvlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Syed is not able to take any classes on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "syed", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Friday for Prof. Sanjay.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "sanjay", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Dr. Kavitha has requested a day off on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l4 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Project' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Abhijith has requested a day off on Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "abhijith", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Surbhi as unavailable for Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Jovin as unavailable for Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "jovin", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for l4 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'SEPM (Soft. Engg)' taught by Mr. Vikas Kumar: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "vikas_sepm_5a", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "vikas_sepm_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'RM & IPR' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_rmipr_5a", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_rmipr_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'ML' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "ml", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Praveen is not able to take any classes on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "praveen", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Mini Project' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "miniproj", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Vikas Kumar has requested a day off on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "vikas", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'DevOps' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "devops", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Syed as unavailable for Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "syed", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Thursday for Prof. Surbhi.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l3 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'DevOps' taught by Prof. Syed: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "syed_devops_6b-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "syed_devops_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'ML Lab' taught by Dr. Kavitha: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "kavitha_mllab_6a-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "kavitha_mllab_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Monday for Dr. Kavitha.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Tahir has requested a day off on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'NLP' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Adrash's 'Comp. Networks' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "adrash_cn_5a", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "adrash_cn_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'NLP' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Friday for Prof. Nanda.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "nanda", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Jovin's 'Data Vis Lab' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "jovin_dvlab_5b", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "jovin_dvlab_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Jovin's 'Data Vis Lab' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "jovin_dvlab_5b", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "jovin_dvlab_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room r1 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r1", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'NoSQL DB' taught by Prof. Praveen: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "praveen_nosql_5b", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "praveen_nosql_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Praveen is not able to take any classes on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "praveen", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Tahir as unavailable for Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'NLP' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Saturday for Prof. Jovin.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "jovin", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'NSS' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nss", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'DevOps' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "devops", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'SEPM (Soft. Engg)' taught by Mr. Vikas Kumar: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "vikas_sepm_5a", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "vikas_sepm_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l1 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l1", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Project' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'OE' taught by OE Teacher 2: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "oe_fac_2_oe_6b-E1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "oe_fac_2_oe_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'Comp. Networks' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cn", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Mr. Abhijith as unavailable for Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "abhijith", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For OE Teacher 1's 'OE' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "oe_fac_1_oe_6a-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "oe_fac_1_oe_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Tahir is not able to take any classes on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'NLP Lab' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlplab_6a-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlplab_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Surbhi is not able to take any classes on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Mr. Vikas Kumar as unavailable for Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "vikas", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Soft Skills Trainer's 'Soft Skills' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "soft_softskill_6a-E1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "soft_softskill_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'NLP' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "The 'Digital Signal Processing' class needs a room with a projector.", "output": {"constraint_type": "room_preference", "entity_type": "subject", "entity_name": "Digital Signal Processing", "parameters": {"required_equipment": "projector"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Sanjay has requested a day off on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "sanjay", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Thursday for Soft Skills Trainer.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'NLP' taught by Prof. Anu: It must not be on Wednesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E2", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'SEPM (Soft. Engg)' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Soft Skills Trainer is not able to take any classes on Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For OE Teacher 1's 'OE' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "oe_fac_1_oe_6a-E2", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "oe_fac_1_oe_6a-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Anu is not able to take any classes on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Data Vis Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "dvlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Wednesday for Mr. Vikas Kumar.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "vikas", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'CN Lab' taught by Prof. Adrash: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "adrash_cnlab_5a", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "adrash_cnlab_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Friday for Mr. Vikas Kumar.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "vikas", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for l3 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'Data Vis Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "dvlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Project' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Vikas Kumar is not able to take any classes on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "vikas", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'NLP' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlp_6b-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlp_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'OE' taught by OE Teacher 1: It must not be on Wednesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "oe_fac_1_oe_6a-E1", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "oe_fac_1_oe_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Project' taught by Prof. Jovin: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "jovin_major_6a-E1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "jovin_major_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Mr. Rahul Bharath's 'Theory of Comp.' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "rahul_toc_5a", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "rahul_toc_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'Project' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'GenAI' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "genai", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'ML' taught by Dr. Kavitha: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "kavitha_ml_6a-E2", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "kavitha_ml_6a-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Aim for a balanced number of credits per day for students to avoid overload.", "output": {"constraint_type": "credit_based_allocation", "entity_type": "student_group", "entity_name": "ALL", "parameters": {"goal": "balanced_daily_load"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Saturday for Dr. Kavitha.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'GenAI' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "genai", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 2 has requested a day off on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'NLP Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlplab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Surbhi is not able to take any classes on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'ML' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "ml", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Comp. Networks' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cn", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Theory of Comp.' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "toc", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Dr. Kavitha as unavailable for Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Abhijith has requested a day off on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "abhijith", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for l2 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l2", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'NLP' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Adrash has requested a day off on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "adrash", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Sanjay's 'GenAI' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "sanjay_genai_6b-E2", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "sanjay_genai_6b-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'OE' taught by OE Teacher 2: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "oe_fac_2_oe_6b-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "oe_fac_2_oe_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'ML' taught by Dr. Kavitha: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "kavitha_ml_6a-E1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "kavitha_ml_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'NLP' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E2", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Thursday for Prof. Surbhi.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'SEPM (Soft. Engg)' taught by Mr. Vikas Kumar: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "vikas_sepm_5a", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "vikas_sepm_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Soft Skills Trainer as unavailable for Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'Data Vis Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "dvlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Friday for Dr. Kavitha.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Abhijith has requested a day off on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "abhijith", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'CN Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cnlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Dr. Kavitha's 'ML' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "kavitha_ml_6b-E1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "kavitha_ml_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Friday for Mr. Abhijith.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "abhijith", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark OE Teacher 2 as unavailable for Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 2 is not able to take any classes on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'NLP Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlplab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'NLP Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlplab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Nanda has requested a day off on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "nanda", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Tahir has requested a day off on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'DevOps' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "devops", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Mr. Vikas Kumar as unavailable for Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "vikas", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'OE' taught by OE Teacher 2: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "oe_fac_2_oe_6b-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "oe_fac_2_oe_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Mr. Rahul Bharath as unavailable for Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "rahul", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ms. Krithika is not able to take any classes on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "krithika", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'OE' taught by OE Teacher 2: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "oe_fac_2_oe_6b-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "oe_fac_2_oe_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Nanda's 'NSS' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "nanda_nss_5b", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "nanda_nss_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l4 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Saturday for Prof. Surbhi.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For OE Teacher 1's 'OE' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "oe_fac_1_oe_6a-E1", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "oe_fac_1_oe_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room r3 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Soft Skills Trainer as unavailable for Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ms. Krithika is not able to take any classes on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "krithika", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Surbhi's 'Forum' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "surbhi_forum_6a-E1", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "surbhi_forum_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Tuesday for Prof. Jovin.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "jovin", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Dr. Kavitha has requested a day off on Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Project' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Sanjay as unavailable for Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "sanjay", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'NSS' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nss", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Preferentially assign senior faculty like Dr. Murthy to core subjects.", "output": {"constraint_type": "faculty_designation_preference", "entity_type": "faculty_rank", "entity_name": "senior", "parameters": {"assign_to": "core_subjects"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Syed is not able to take any classes on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "syed", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Project' taught by Prof. Jovin: It must not be on Wednesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "jovin_major_6b-E1", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "jovin_major_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Mr. Vikas Kumar as unavailable for Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "vikas", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for l2 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l2", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Env. Studies' taught by Ms. Krithika: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "krithika_evs_5a", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "krithika_evs_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'ML Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "mllab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 2 has requested a day off on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for l2 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l2", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'NSS' taught by Prof. Nanda: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "nanda_nss_5a", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "nanda_nss_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'CN Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cnlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Thursday for Prof. Tahir.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'OE' taught by OE Teacher 2: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "oe_fac_2_oe_6b-E2", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "oe_fac_2_oe_6b-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Abhijith is not able to take any classes on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "abhijith", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Forum' taught by Prof. Adrash: It must not be on Wednesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "adrash_forum_6b-E1", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "adrash_forum_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Praveen's 'IKS' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "praveen_iks_6a-E1", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "praveen_iks_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Theory of Comp.' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "toc", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for r2 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r2", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room r1 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r1", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Vikas Kumar has requested a day off on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "vikas", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l4 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'Comp. Networks' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cn", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "The subject 'Advanced Calculus' (MA401) requires exactly 4 hours per week.", "output": {"constraint_type": "subject_weekly_hours", "entity_type": "subject", "entity_name": "MA401", "parameters": {"hours": 4, "subject_type": "theory"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Praveen's 'ML Lab' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "praveen_mllab_6b-E1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "praveen_mllab_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Mr. Vikas Kumar as unavailable for Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "vikas", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Mr. Vikas Kumar's 'SEPM (Soft. Engg)' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "vikas_sepm_5a", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "vikas_sepm_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Nanda's 'NSS' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "nanda_nss_5a", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "nanda_nss_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For OE Teacher 2's 'OE' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "oe_fac_2_oe_6b-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "oe_fac_2_oe_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for r3 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Praveen is not able to take any classes on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "praveen", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Praveen is not able to take any classes on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "praveen", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'Project' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'OE' taught by OE Teacher 2: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "oe_fac_2_oe_6b-E2", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "oe_fac_2_oe_6b-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'NLP Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlplab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Data Vis Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "dvlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l1 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l1", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule consecutive classes for the ECE department in the same building to reduce movement.", "output": {"constraint_type": "minimize_campus_movement", "entity_type": "department", "entity_name": "ECE", "parameters": {"strategy": "same_building_consecutive"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Soft Skills Trainer has requested a day off on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'GenAI' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "genai", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 1 is not able to take any classes on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_1", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "The instructor for the ECE lab must be the same for the entire 3-hour session.", "output": {"constraint_type": "consistent_instructor_for_block", "entity_type": "course_type", "entity_name": "lab", "parameters": {}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Saturday for Mr. Rahul Bharath.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "rahul", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'DevOps' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "devops", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'NLP' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Comp. Networks' taught by Prof. Anu: It must not be on Wednesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_cn_5b", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_cn_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Saturday for OE Teacher 1.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_1", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Praveen's 'NoSQL DB' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "praveen_nosql_5b", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "praveen_nosql_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'NLP' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E2", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Adrash is not able to take any classes on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "adrash", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Praveen has requested a day off on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "praveen", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'SEPM (Soft. Engg)' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'GenAI' taught by Prof. Sanjay: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "sanjay_genai_6a-E2", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "sanjay_genai_6a-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Thursday for Prof. Surbhi.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'DevOps' taught by Prof. Syed: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "syed_devops_6a-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "syed_devops_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'CN Lab' taught by Prof. Adrash: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "adrash_cnlab_5a", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "adrash_cnlab_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "The institutional lunch break is from 1:00 PM to 2:00 PM and no classes can be scheduled then.", "output": {"constraint_type": "time_unavailability", "entity_type": "global", "entity_name": "institution", "parameters": {"reason": "Lunch Break", "between_times": ["13:00", "14:00"]}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Soft Skills Trainer has requested a day off on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'Comp. Networks' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_cn_5b", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_cn_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Soft Skills Trainer as unavailable for Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Soft Skills Trainer's 'Soft Skills' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "soft_softskill_6b-E1", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "soft_softskill_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'NLP' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'SEPM (Soft. Engg)' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Project' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Praveen is not able to take any classes on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "praveen", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Cloud' taught by Prof. Tahir: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "tahir_cc_6a-E2", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "tahir_cc_6a-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'DevOps' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "devops", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Surbhi has requested a day off on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Surbhi has requested a day off on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Mini Project' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "miniproj", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room r1 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r1", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "The 5th semester ISE students cannot have 'Data Structures' and 'Algorithms' scheduled at the same time.", "output": {"constraint_type": "no_section_clash", "entity_type": "student_group", "entity_name": "5th Sem ISE", "parameters": {}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ms. Krithika is not able to take any classes on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "krithika", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Syed has requested a day off on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "syed", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for r1 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r1", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l1 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l1", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'Mini Project' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "miniproj", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Dr. Kavitha as unavailable for Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'ML' taught by Dr. Kavitha: It must not be on Wednesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "kavitha_ml_6a-E1", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "kavitha_ml_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Friday for Prof. Tahir.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room r3 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Dr. Kavitha's 'ML Lab' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "kavitha_mllab_6a-E1", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "kavitha_mllab_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Project' taught by Prof. Jovin: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "jovin_major_6b-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "jovin_major_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'Theory of Comp.' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "toc", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Surbhi has requested a day off on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'Project' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Data Vis Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "dvlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Vikas Kumar has requested a day off on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "vikas", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'RM & IPR' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_rmipr_5b", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_rmipr_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Monday for Prof. Sanjay.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "sanjay", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Dr. Kavitha has requested a day off on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'ML' taught by Dr. Kavitha: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "kavitha_ml_6b-E1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "kavitha_ml_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Tuesday for Prof. Surbhi.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'ML' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "ml", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Monday for Prof. Syed.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "syed", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'NLP Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlplab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ms. Krithika is not able to take any classes on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "krithika", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l2 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l2", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l4 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Project' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Theory of Comp.' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "toc", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Sanjay is not able to take any classes on Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "sanjay", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'DevOps' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "devops", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'OE' taught by OE Teacher 2: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "oe_fac_2_oe_6b-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "oe_fac_2_oe_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l3 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Project' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Tahir is not able to take any classes on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "All lab sessions must be scheduled as continuous 3-hour blocks.", "output": {"constraint_type": "lab_block_duration", "entity_type": "course_type", "entity_name": "lab", "parameters": {"duration_hours": 3, "continuous": true}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Anu is not able to take any classes on Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Anu as unavailable for Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Dr. Kavitha has requested a day off on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Soft Skills Trainer is not able to take any classes on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Project' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Dr. Kavitha's 'ML' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "kavitha_ml_6b-E2", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "kavitha_ml_6b-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Project' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'OE' taught by OE Teacher 1: It must not be on Wednesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "oe_fac_1_oe_6a-E1", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "oe_fac_1_oe_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark OE Teacher 1 as unavailable for Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'NSS' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nss", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Comp. Networks' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cn", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Nanda has requested a day off on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "nanda", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Anu is not able to take any classes on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Data Vis Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "dvlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for l2 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l2", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For OE Teacher 1's 'OE' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "oe_fac_1_oe_6a-E2", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "oe_fac_1_oe_6a-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Mr. Rahul Bharath's 'Theory of Comp.' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "rahul_toc_5a", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "rahul_toc_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'SEPM (Soft. Engg)' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Data Vis Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "dvlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'NSS' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nss", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'RM & IPR' taught by Prof. Anu: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_rmipr_5a", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_rmipr_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Adrash is not able to take any classes on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "adrash", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Sanjay's 'GenAI' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "sanjay_genai_6b-E2", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "sanjay_genai_6b-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Syed's 'DevOps' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "syed_devops_6a-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "syed_devops_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ms. Krithika is not able to take any classes on Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "krithika", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for r4 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Friday for Prof. Adrash.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "adrash", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'DevOps' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "devops", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Tahir's 'Cloud' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "tahir_cc_6b-E2", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "tahir_cc_6b-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Theory of Comp.' taught by Mr. Rahul Bharath: It must not be on Wednesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "rahul_toc_5b", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "rahul_toc_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'NLP' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'NLP' taught by Prof. Anu: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlp_6b-E2", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlp_6b-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark OE Teacher 2 as unavailable for Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Wednesday for Prof. Tahir.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l4 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Data Vis Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "dvlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'NLP' taught by Prof. Anu: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlp_6b-E2", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlp_6b-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Friday for Dr. Kavitha.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Sanjay is not able to take any classes on Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "sanjay", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Sanjay's 'GenAI' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "sanjay_genai_6b-E2", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "sanjay_genai_6b-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'NLP' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E2", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ms. Krithika is not able to take any classes on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "krithika", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Rahul Bharath is not able to take any classes on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "rahul", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Wednesday for Soft Skills Trainer.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'RM & IPR' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_rmipr_5a", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_rmipr_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Praveen as unavailable for Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "praveen", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Soft Skills' taught by Soft Skills Trainer: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "soft_softskill_6b-E1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "soft_softskill_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'NLP' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E2", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'CN Lab' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_cnlab_5b", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_cnlab_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'Project' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Dr. Susan is on pre-approved leave and is unavailable for the entire next week.", "output": {"constraint_type": "leave_availability", "entity_type": "faculty", "entity_name": "Dr. Susan", "parameters": {"unavailability": "next week"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Nanda has requested a day off on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "nanda", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'NLP Lab' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlplab_6b-E1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlplab_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'Data Vis Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "dvlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Mini Project' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "miniproj", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Nanda has requested a day off on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "nanda", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'NLP Lab' taught by Prof. Anu: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlplab_6b-E1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlplab_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Theory of Comp.' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "toc", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'Project' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark OE Teacher 2 as unavailable for Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Thursday for Prof. Praveen.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "praveen", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 1 is not able to take any classes on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_1", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Thursday for OE Teacher 1.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_1", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Rahul Bharath has requested a day off on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "rahul", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'ML' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "ml", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for r4 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'ML' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "ml", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Abhijith has requested a day off on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "abhijith", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'NLP Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlplab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'CN Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cnlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Mr. Abhijith as unavailable for Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "abhijith", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'IKS' taught by Prof. Praveen: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "praveen_iks_6b-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "praveen_iks_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Jovin's 'Project' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "jovin_major_6a-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "jovin_major_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Tuesday for Prof. Nanda.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "nanda", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'ML' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "ml", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Anu is not able to take any classes on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Project' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Rahul Bharath is not able to take any classes on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "rahul", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Wednesday for Mr. Rahul Bharath.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "rahul", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Adrash as unavailable for Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "adrash", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'Theory of Comp.' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "toc", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Tahir has requested a day off on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Saturday for Prof. Anu.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l4 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark OE Teacher 2 as unavailable for Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'DevOps' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "devops", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'ML Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "mllab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Tuesday for Prof. Anu.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Anu as unavailable for Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark OE Teacher 2 as unavailable for Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Dr. Kavitha's 'ML' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "kavitha_ml_6b-E2", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "kavitha_ml_6b-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Friday for Prof. Sanjay.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "sanjay", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'NLP' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Tahir is not able to take any classes on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Syed as unavailable for Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "syed", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Anu has requested a day off on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Dr. Kavitha has requested a day off on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'GenAI' taught by Prof. Sanjay: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "sanjay_genai_6b-E2", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "sanjay_genai_6b-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room r4 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "If possible, schedule lab sessions in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "course_type", "entity_name": "lab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Tuesday for Prof. Tahir.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'NLP' taught by Prof. Anu: It must not be on Wednesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E2", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'DevOps' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "devops", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Nanda has requested a day off on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "nanda", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Adrash is not able to take any classes on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "adrash", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'DevOps' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "devops", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Project' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room r4 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Tuesday for Prof. Anu.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'NLP' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E2", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Dr. Kavitha is not able to take any classes on Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'ML' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "ml", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Comp. Networks' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cn", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Mr. Vikas Kumar as unavailable for Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "vikas", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'NSS' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nss", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'SEPM (Soft. Engg)' taught by Mr. Vikas Kumar: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "vikas_sepm_5a", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "vikas_sepm_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Syed is not able to take any classes on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "syed", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 2 is not able to take any classes on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'ML Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "mllab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l4 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'Comp. Networks' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cn", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Tahir as unavailable for Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Comp. Networks' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cn", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Sanjay's 'GenAI' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "sanjay_genai_6a-E2", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "sanjay_genai_6a-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Monday for Soft Skills Trainer.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'ML Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "mllab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Nanda has requested a day off on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "nanda", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Jovin has requested a day off on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "jovin", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'ML Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "mllab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Mr. Rahul Bharath's 'Theory of Comp.' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "rahul_toc_5b", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "rahul_toc_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Mr. Rahul Bharath as unavailable for Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "rahul", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'OE' taught by OE Teacher 2: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "oe_fac_2_oe_6b-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "oe_fac_2_oe_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 1 is not able to take any classes on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Surbhi has requested a day off on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'ML Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "mllab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Project' taught by Prof. Jovin: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "jovin_major_6b-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "jovin_major_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room r3 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Praveen has requested a day off on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "praveen", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Vikas Kumar is not able to take any classes on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "vikas", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'SEPM (Soft. Engg)' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Mr. Vikas Kumar as unavailable for Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "vikas", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for l1 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l1", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Syed has requested a day off on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "syed", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'NLP' taught by Prof. Anu: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlp_6b-E1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlp_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room r1 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r1", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'DevOps' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "devops", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Mini Project' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "miniproj", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'SEPM (Soft. Engg)' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room r3 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l1 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l1", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Dr. Kavitha's 'ML Lab' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "kavitha_mllab_6a-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "kavitha_mllab_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Comp. Networks' taught by Prof. Anu: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_cn_5b", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_cn_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l4 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Mr. Abhijith as unavailable for Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "abhijith", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Project' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'CN Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cnlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Mr. Abhijith's 'Data Vis Lab' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "abhijith_dvlab_5a", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "abhijith_dvlab_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'DevOps' taught by Prof. Syed: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "syed_devops_6b-E1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "syed_devops_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'GenAI' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "genai", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Soft Skills' taught by Soft Skills Trainer: It must not be on Wednesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "soft_softskill_6a-E1", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "soft_softskill_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room r4 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Tahir's 'Cloud' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "tahir_cc_6b-E2", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "tahir_cc_6b-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for r3 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Jovin's 'Project' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "jovin_major_6b-E1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "jovin_major_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try not to schedule the same theory subject, like 'Microprocessors', more than once on the same day.", "output": {"constraint_type": "avoid_daily_subject_repetition", "entity_type": "subject", "entity_name": "Microprocessors", "parameters": {"subject_type": "theory"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'NLP' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Comp. Networks' taught by Prof. Anu: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_cn_5b", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_cn_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'Project' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Mini Project' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "miniproj", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Nanda is not able to take any classes on Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "nanda", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Anand prefers not to take the first hour of the day.", "output": {"constraint_type": "faculty_time_preference", "entity_type": "faculty", "entity_name": "Mr. Anand", "parameters": {"avoid_slot": "first_hour"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'NLP' taught by Prof. Anu: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlp_6b-E2", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlp_6b-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'CN Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cnlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'ML Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "mllab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Mr. Rahul Bharath's 'Theory of Comp.' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "rahul_toc_5b", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "rahul_toc_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'ML' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "ml", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'SEPM (Soft. Engg)' taught by Mr. Vikas Kumar: It must not be on Wednesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "vikas_sepm_5b", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "vikas_sepm_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Syed has requested a day off on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "syed", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'NSS' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nss", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Wednesday for Prof. Jovin.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "jovin", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'NLP' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l1 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l1", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'ML Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "mllab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'IKS' taught by Prof. Praveen: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "praveen_iks_6b-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "praveen_iks_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Monday for OE Teacher 2.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Praveen's 'ML Lab' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "praveen_mllab_6b-E1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "praveen_mllab_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Comp. Networks' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cn", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "When Dr. Verma teaches CSE-A, CSE-B, and ISE-A, make sure none of her classes for these sections clash.", "output": {"constraint_type": "shared_faculty_multi_section", "entity_type": "faculty", "entity_name": "Dr. Verma", "parameters": {"sections": ["CSE-A", "CSE-B", "ISE-A"]}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'NLP' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Project' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'NLP Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlplab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Saturday for Prof. Nanda.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "nanda", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room r4 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'GenAI' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "genai", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'GenAI' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "genai", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'RM & IPR' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_rmipr_5a", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_rmipr_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Tahir is not able to take any classes on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'ML Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "mllab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room r3 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'ML' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "ml", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Project' taught by Prof. Jovin: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "jovin_major_6b-E1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "jovin_major_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Anu is not able to take any classes on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Jovin as unavailable for Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "jovin", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'GenAI' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "genai", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room r2 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r2", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for r4 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room LH-301 can only be used for one class at any given moment.", "output": {"constraint_type": "no_room_clash", "entity_type": "room", "entity_name": "LH-301", "parameters": {}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 2 is not able to take any classes on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'CN Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cnlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'Project' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'SEPM (Soft. Engg)' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'NLP' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Nanda's 'HCI' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "nanda_hcai_6b-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "nanda_hcai_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for r2 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r2", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'SEPM (Soft. Engg)' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Surbhi as unavailable for Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'IKS' taught by Prof. Praveen: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "praveen_iks_6a-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "praveen_iks_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'NLP' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room r3 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Dr. Kavitha has requested a day off on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'Project' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for l4 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'SEPM (Soft. Engg)' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'SEPM (Soft. Engg)' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Adrash as unavailable for Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "adrash", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'DevOps' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "devops", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room r1 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r1", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Soft Skills Trainer's 'Soft Skills' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "soft_softskill_6a-E1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "soft_softskill_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Theory of Comp.' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "toc", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Nanda's 'HCI' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "nanda_hcai_6a-E1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "nanda_hcai_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'CN Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cnlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Abhijith has requested a day off on Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "abhijith", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for l3 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'NLP' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "The classroom CR-205 has a seating capacity of 65 and should not be over-allocated.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "CR-205", "parameters": {"capacity": 65}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Friday for Prof. Tahir.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'NSS' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nss", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 2 is not able to take any classes on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Syed is not able to take any classes on Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "syed", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Monday for Soft Skills Trainer.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'NLP' taught by Prof. Anu: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlp_6b-E2", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlp_6b-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Anu has requested a day off on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Theory of Comp.' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "toc", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'GenAI' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "genai", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'ML Lab' taught by Prof. Praveen: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "praveen_mllab_6b-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "praveen_mllab_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Saturday for OE Teacher 1.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_1", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark OE Teacher 1 as unavailable for Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'Comp. Networks' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cn", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Tuesday for Mr. Abhijith.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "abhijith", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Saturday for Mr. Vikas Kumar.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "vikas", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Adrash is not able to take any classes on Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "adrash", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Ms. Krithika as unavailable for Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "krithika", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'NLP Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlplab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'Comp. Networks' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cn", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'Project' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Dr. Kavitha is not able to take any classes on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Dr. Kavitha has requested a day off on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'CN Lab' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_cnlab_5b", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_cnlab_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Tahir has requested a day off on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'Mini Project' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "miniproj", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "A common slot must be assigned for the 5th and 6th semester elective subjects.", "output": {"constraint_type": "common_slot_for_electives", "entity_type": "student_group", "entity_name": ["5th Sem", "6th Sem"], "parameters": {}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Surbhi has requested a day off on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Nanda as unavailable for Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "nanda", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'NLP' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E2", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for l3 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Soft Skills Trainer is not able to take any classes on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Nanda is not able to take any classes on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "nanda", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'ML' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "ml", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Dr. Kavitha is not able to take any classes on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Wednesday for Prof. Surbhi.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'ML' taught by Dr. Kavitha: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "kavitha_ml_6a-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "kavitha_ml_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 2 has requested a day off on Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Ms. Krithika as unavailable for Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "krithika", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'NLP Lab' taught by Prof. Anu: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlplab_6a-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlplab_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Syed is not able to take any classes on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "syed", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Comp. Networks' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cn", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for r3 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Anu is not able to take any classes on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Syed has requested a day off on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "syed", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Spread out tough subjects like 'Control Systems' and 'Thermodynamics' evenly through the week, don't cluster them.", "output": {"constraint_type": "distribute_load_evenly", "entity_type": "global", "entity_name": "ALL", "parameters": {"subject_category": "tough"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'NLP Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlplab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Tahir has requested a day off on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'NLP Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlplab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Project' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for l3 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'NLP' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Vikas Kumar has requested a day off on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "vikas", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Jovin is not able to take any classes on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "jovin", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'Project' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'SEPM (Soft. Engg)' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Anu as unavailable for Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'NLP' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Jovin as unavailable for Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "jovin", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'NLP Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlplab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'Comp. Networks' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cn", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'RM & IPR' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_rmipr_5a", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_rmipr_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'SEPM (Soft. Engg)' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Praveen's 'ML Lab' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "praveen_mllab_6b-E1", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "praveen_mllab_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Comp. Networks' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cn", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for r1 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r1", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Dr. Kavitha has requested a day off on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'SEPM (Soft. Engg)' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'NoSQL DB' taught by Prof. Praveen: It must not be on Wednesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "praveen_nosql_5b", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "praveen_nosql_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Syed is not able to take any classes on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "syed", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Friday for Dr. Kavitha.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'GenAI' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "genai", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l4 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Jovin has requested a day off on Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "jovin", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Comp. Networks' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cn", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "The total continuous scheduled time for any section before lunch must be limited to 6 hours.", "output": {"constraint_type": "max_stretch_limit", "entity_type": "student_group", "entity_name": "ALL", "parameters": {"limit_hours": 6}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for l2 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l2", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Project' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Nanda is not able to take any classes on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "nanda", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 2 has requested a day off on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Saturday for Prof. Syed.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "syed", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Thursday for Soft Skills Trainer.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'NLP' taught by Prof. Anu: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'SEPM (Soft. Engg)' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'GenAI' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "genai", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark OE Teacher 1 as unavailable for Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_1", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Abhijith is not able to take any classes on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "abhijith", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for l2 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l2", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'Data Vis Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "dvlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'DevOps' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "devops", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Saturday for Prof. Jovin.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "jovin", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Cloud' taught by Prof. Tahir: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "tahir_cc_6a-E2", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "tahir_cc_6a-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Tahir's 'Cloud' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "tahir_cc_6b-E2", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "tahir_cc_6b-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Surbhi as unavailable for Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Praveen has requested a day off on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "praveen", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'Project' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'SEPM (Soft. Engg)' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For OE Teacher 2's 'OE' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "oe_fac_2_oe_6b-E1", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "oe_fac_2_oe_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for l4 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Comp. Networks' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cn", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'SEPM (Soft. Engg)' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'ML' taught by Dr. Kavitha: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "kavitha_ml_6b-E2", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "kavitha_ml_6b-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Praveen has requested a day off on Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "praveen", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'NoSQL DB' taught by Prof. Praveen: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "praveen_nosql_5b", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "praveen_nosql_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Tuesday for OE Teacher 2.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Rahul Bharath is not able to take any classes on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "rahul", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'NLP' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Dr. Kavitha's 'ML' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "kavitha_ml_6a-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "kavitha_ml_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Tuesday for Mr. Abhijith.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "abhijith", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'NLP Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlplab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'NSS' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nss", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'NLP' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Tuesday for OE Teacher 2.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for l3 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for r1 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r1", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 1 is not able to take any classes on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_1", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Data Vis Lab' taught by Mr. Abhijith: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "abhijith_dvlab_5a", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "abhijith_dvlab_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'NLP' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'ML' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "ml", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Nanda's 'NSS' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "nanda_nss_5b", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "nanda_nss_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Monday for Dr. Kavitha.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Mr. Vikas Kumar's 'SEPM (Soft. Engg)' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "vikas_sepm_5a", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "vikas_sepm_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Wednesday for Prof. Tahir.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Theory of Comp.' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "toc", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Sanjay as unavailable for Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "sanjay", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Thursday for Prof. Anu.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Soft Skills Trainer has requested a day off on Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Vikas Kumar is not able to take any classes on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "vikas", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'ML' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "ml", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room r2 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r2", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ms. Krithika is not able to take any classes on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "krithika", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Mr. Rahul Bharath's 'Theory of Comp.' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "rahul_toc_5b", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "rahul_toc_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'NLP Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlplab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'NLP' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 2 is not able to take any classes on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_2", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'CN Lab' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cnlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for r4 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l3 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 1 has requested a day off on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Anu as unavailable for Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Sanjay is not able to take any classes on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "sanjay", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Project' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Wednesday for Soft Skills Trainer.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Wednesday for OE Teacher 1.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_1", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Mr. Abhijith as unavailable for Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "abhijith", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Mr. Abhijith as unavailable for Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "abhijith", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'GenAI' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "genai", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Tahir as unavailable for Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room r4 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r4", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 1 is not able to take any classes on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_1", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Wednesday for Prof. Surbhi.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'Project' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Nanda's 'HCI' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "nanda_hcai_6a-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "nanda_hcai_6a-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Thursday for Prof. Sanjay.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "sanjay", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'NLP' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E2", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Sanjay's 'Mini Project' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "sanjay_miniproj_5a", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "sanjay_miniproj_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Thursday for Prof. Tahir.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'Project' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Dr. Kavitha as unavailable for Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'Comp. Networks' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cn", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Sanjay as unavailable for Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "sanjay", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Jovin as unavailable for Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "jovin", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Jovin is not able to take any classes on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "jovin", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Saturday for Dr. Kavitha.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'NSS' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nss", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Lab sessions like 'Mini Project' are preferred in the afternoon.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "miniproj", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'NLP' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'NSS' taught by Prof. Nanda: It must not be on Tuesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "nanda_nss_5b", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "nanda_nss_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Nanda's 'HCI' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "nanda_hcai_6b-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "nanda_hcai_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Praveen has requested a day off on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "praveen", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'NSS' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nss", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Sanjay is not able to take any classes on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "sanjay", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for r2 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r2", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Praveen as unavailable for Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "praveen", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Theory of Comp.' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "toc", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Data Vis Lab' taught by Mr. Abhijith: It must not be on Wednesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "abhijith_dvlab_5a", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "abhijith_dvlab_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'Project' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "major", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Adrash has requested a day off on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "adrash", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ms. Krithika is not able to take any classes on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "krithika", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Thursday for Ms. Krithika.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "krithika", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'SEPM (Soft. Engg)' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Tuesday for Mr. Rahul Bharath.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "rahul", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Praveen has requested a day off on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "praveen", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Surbhi has requested a day off on Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'NLP' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "nlp", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'SEPM (Soft. Engg)' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'CN Lab' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_cnlab_5b", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_cnlab_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Soft Skills Trainer has requested a day off on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "CSE-A and CSE-B must have 'Computer Networks' at the same time for a combined session.", "output": {"constraint_type": "parallel_section_constraint", "entity_type": "subject", "entity_name": "Computer Networks", "parameters": {"sections": ["CSE-A", "CSE-B"]}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Tahir is not able to take any classes on Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "tahir", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'SEPM (Soft. Engg)' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "sepm", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Wednesday for Prof. Praveen.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "praveen", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Praveen is not able to take any classes on Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "praveen", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Praveen's 'NoSQL DB' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "praveen_nosql_5a", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "praveen_nosql_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Anu as unavailable for Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Syed's 'DevOps' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "syed_devops_6b-E1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "syed_devops_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 1 is not able to take any classes on Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_1", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Mr. Rahul Bharath as unavailable for Friday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "rahul", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Saturday for Prof. Sanjay.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "sanjay", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'ML' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "ml", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Students should not have more than 4 theory classes in a row.", "output": {"constraint_type": "max_consecutive_hours", "entity_type": "student_group", "entity_name": "ALL", "parameters": {"limit": 4, "class_type": "theory"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Comp. Networks' taught by Prof. Adrash: It must not be on Wednesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "adrash_cn_5a", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "adrash_cn_5a", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'CN Lab' taught by Prof. Anu: It must not be on Wednesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_cnlab_5b", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_cnlab_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for r3 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Soft Skills' taught by Soft Skills Trainer: It must not be on Monday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "soft_softskill_6b-E1", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "soft_softskill_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'ML Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "mllab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Thursday for Soft Skills Trainer.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "soft", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Regarding 'Theory of Comp.' taught by Mr. Rahul Bharath: It must not be on Wednesday, and a room in the Main building is preferred.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "rahul_toc_5b", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "rahul_toc_5b", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Praveen's 'IKS' class, please avoid Tuesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "praveen_iks_6b-E1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "praveen_iks_6b-E1", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mr. Abhijith is not able to take any classes on Wednesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "abhijith", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'GenAI' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "genai", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Try to schedule 'Theory of Comp.' in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "toc", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please block off all of Friday for Prof. Anu.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "anu", "parameters": {"on_day": "Friday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "'Theory of Comp.' is a tough course, morning would be better.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "toc", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Dr. Kavitha as unavailable for Monday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "kavitha", "parameters": {"on_day": "Monday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Core theoretical subjects should preferably be scheduled in the morning slots.", "output": {"constraint_type": "slot_preference", "entity_type": "subject_category", "entity_name": "core_theory", "parameters": {"preferred_slot": "morning"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l3 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'CN Lab' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "cnlab", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Ensure the class size for r3 does not surpass 80 seats.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "r3", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Prof. Surbhi has requested a day off on Saturday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Saturday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark Prof. Surbhi as unavailable for Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "surbhi", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Prof. Anu's 'NLP' class, please avoid Monday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E2", "parameters": {"on_day": "Monday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "anu_nlp_6a-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "For Dr. Kavitha's 'ML' class, please avoid Wednesday and also try to keep it in the Main building.", "output": [{"constraint_type": "time_unavailability", "entity_type": "allocation", "entity_name": "kavitha_ml_6a-E2", "parameters": {"on_day": "Wednesday"}, "hard_constraint": true}, {"constraint_type": "location_preference", "entity_type": "allocation", "entity_name": "kavitha_ml_6a-E2", "parameters": {"building": "Main"}, "hard_constraint": false}]}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Schedule the 'Mini Project' lab post-lunch if possible.", "output": {"constraint_type": "slot_preference", "entity_type": "subject", "entity_name": "miniproj", "parameters": {"preferred_slot": "afternoon"}, "hard_constraint": false}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Mark OE Teacher 1 as unavailable for Thursday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_1", "parameters": {"on_day": "Thursday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "OE Teacher 1 has requested a day off on Tuesday.", "output": {"constraint_type": "time_unavailability", "entity_type": "faculty", "entity_name": "oe_fac_1", "parameters": {"on_day": "Tuesday"}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Room l2 can only hold 80 students, don't exceed this.", "output": {"constraint_type": "room_capacity", "entity_type": "room", "entity_name": "l2", "parameters": {"capacity": 80}, "hard_constraint": true}}
{"instruction": "Convert the scheduling rule into a JSON constraint.", "input": "Please minimize the free hour gaps for Professor Menon between his classes.", "output": {"constraint_type": "minimize_faculty_gaps", "entity_type": "faculty", "entity_name": "Professor Menon", "parameters": {}, "hard_constraint": false}}
|