-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenerated_tasks7_eval.json
More file actions
4602 lines (4602 loc) · 342 KB
/
Copy pathgenerated_tasks7_eval.json
File metadata and controls
4602 lines (4602 loc) · 342 KB
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
[
{
"task_id": "3a9ead45-a497-4062-b54f-aa6f090d967d",
"prompt_id": "gen_0000",
"prompt_text": "Imagine you are Kwame, a young boy living in a small medieval village deep within an ancient African forest. One day, while exploring the edge of the woods with your closest friend, Ayo, you discover a hidden cave with strange, glowing symbols on its walls. When you enter, a whispering voice begins to echo inside your mind, promising freedom from the village\u2019s strict rules\u2014but only if you stay inside the cave forever. Write your story in first person, describing your growing fear and curiosity as you struggle to decide whether to trust the voice or run back to Ayo and the safety of the village. Use eerie details to show how the cave feels alive and how your thoughts become tangled with those whispers. Let the conflict between your desire for freedom and the warnings of danger build throughout. Your story should be 387 words long and easy enough for children to enjoy, capturing the medieval setting and friendship while exploring your inner struggle in a haunting but gentle way.",
"genre": "horror",
"difficulty": "easy",
"pov": "first_person",
"setting": "medieval",
"target_age": "children",
"geography": "Africa",
"gender": "male",
"relationship": "friend",
"conflict_type": "character_vs_self",
"theme": "freedom",
"tone": "eerie",
"word_constraint": 387,
"rubric - 1. criterion": "Is the story exactly or very close to 387 words in length?",
"rubric - 1. instruction_type": "Objective",
"rubric - 1. instruction_necessity": "Explicit",
"rubric - 1. instruction_priority": "Must have",
"rubric - 1. instruction_dimension": "Instruction Following",
"rubric - 2. criterion": "Is the story written in first person point of view using 'I' statements?",
"rubric - 2. instruction_type": "Objective",
"rubric - 2. instruction_necessity": "Explicit",
"rubric - 2. instruction_priority": "Must have",
"rubric - 2. instruction_dimension": "Instruction Following",
"rubric - 3. criterion": "Does the story take place in a small medieval village located within an ancient African forest?",
"rubric - 3. instruction_type": "Objective",
"rubric - 3. instruction_necessity": "Explicit",
"rubric - 3. instruction_priority": "Must have",
"rubric - 3. instruction_dimension": "Instruction Following",
"rubric - 4. criterion": "Is the main character a young male boy named Kwame?",
"rubric - 4. instruction_type": "Objective",
"rubric - 4. instruction_necessity": "Explicit",
"rubric - 4. instruction_priority": "Must have",
"rubric - 4. instruction_dimension": "Instruction Following",
"rubric - 5. criterion": "Does the story include Kwame's closest friend named Ayo as a secondary character?",
"rubric - 5. instruction_type": "Objective",
"rubric - 5. instruction_necessity": "Explicit",
"rubric - 5. instruction_priority": "Must have",
"rubric - 5. instruction_dimension": "Instruction Following",
"rubric - 6. criterion": "Does the story describe discovering a hidden cave with strange, glowing symbols on the walls?",
"rubric - 6. instruction_type": "Objective",
"rubric - 6. instruction_necessity": "Explicit",
"rubric - 6. instruction_priority": "Must have",
"rubric - 6. instruction_dimension": "Instruction Following",
"rubric - 7. criterion": "Is there a whispering voice inside the cave that promises freedom but requires staying inside forever?",
"rubric - 7. instruction_type": "Objective",
"rubric - 7. instruction_necessity": "Explicit",
"rubric - 7. instruction_priority": "Must have",
"rubric - 7. instruction_dimension": "Instruction Following",
"rubric - 8. criterion": "Does the story show Kwame's growing fear and curiosity as he struggles to decide whether to trust the voice or run back to Ayo and the village?",
"rubric - 8. instruction_type": "Subjective",
"rubric - 8. instruction_necessity": "Explicit",
"rubric - 8. instruction_priority": "Must have",
"rubric - 8. instruction_dimension": "Instruction Following",
"rubric - 9. criterion": "Are eerie details used to make the cave feel alive and to show how Kwame's thoughts become tangled with the whispers?",
"rubric - 9. instruction_type": "Subjective",
"rubric - 9. instruction_necessity": "Explicit",
"rubric - 9. instruction_priority": "Must have",
"rubric - 9. instruction_dimension": "Writing Quality",
"rubric - 10. criterion": "Does the story build the conflict between Kwame's desire for freedom and the warnings of danger throughout the narrative?",
"rubric - 10. instruction_type": "Subjective",
"rubric - 10. instruction_necessity": "Explicit",
"rubric - 10. instruction_priority": "Must have",
"rubric - 10. instruction_dimension": "Writing Quality",
"rubric - 11. criterion": "Is the tone of the story eerie and haunting but gentle enough for children to enjoy?",
"rubric - 11. instruction_type": "Subjective",
"rubric - 11. instruction_necessity": "Explicit",
"rubric - 11. instruction_priority": "Must have",
"rubric - 11. instruction_dimension": "Writing Quality",
"rubric - 12. criterion": "Is the story written in language and style that is easy enough for children to understand and enjoy?",
"rubric - 12. instruction_type": "Subjective",
"rubric - 12. instruction_necessity": "Explicit",
"rubric - 12. instruction_priority": "Must have",
"rubric - 12. instruction_dimension": "Writing Quality",
"rubric - 13. criterion": "Does the story capture the medieval setting authentically and include cultural or environmental details appropriate to an African forest village?",
"rubric - 13. instruction_type": "Subjective",
"rubric - 13. instruction_necessity": "Explicit",
"rubric - 13. instruction_priority": "Must have",
"rubric - 13. instruction_dimension": "Writing Quality",
"rubric - 14. criterion": "Is the central conflict primarily internal, focusing on Kwame's struggle with himself (character vs self)?",
"rubric - 14. instruction_type": "Objective",
"rubric - 14. instruction_necessity": "Explicit",
"rubric - 14. instruction_priority": "Must have",
"rubric - 14. instruction_dimension": "Instruction Following",
"rubric - 15. criterion": "Does the story maintain coherence and logical progression within the word limit?",
"rubric - 15. instruction_type": "Subjective",
"rubric - 15. instruction_necessity": "Implicit",
"rubric - 15. instruction_priority": "Nice to have",
"rubric - 15. instruction_dimension": "Writing Quality"
},
{
"task_id": "84314695-683b-4855-8aa7-0915ceebad72",
"prompt_id": "gen_0001",
"prompt_text": "Write a 227-word story in second person set in a bustling research city in Antarctica\u2014an unexpected oasis of life amid the ice. You are a teenage girl named Elara, whose closest companion is your older sister, Nia. Recently, Nia has started keeping a secret from you, and it\u2019s causing tension between you. One day, while wandering through the city\u2019s neon-lit streets, you stumble upon a forgotten caf\u00e9 filled with old photographs and mementos from past visitors. Here, you discover a faded memory that might explain Nia\u2019s distance but also challenges your understanding of your shared past. Your story should focus on the conflict between you and Nia\u2014how memory shapes your relationship and the fragile trust you both must rebuild. In a hopeful tone, explore how recalling and confronting these memories can open a path forward, even amid the cold isolation of Antarctica. Your narrative should evoke the city\u2019s contrasting warmth and chill, using sensory details like the hum of electric lights and the crunch of snow underfoot. Aim to create a believable resolution that embraces forgiveness and new beginnings without erasing the complexity of your feelings.",
"genre": "romance",
"difficulty": "medium",
"pov": "second_person",
"setting": "city",
"target_age": "teens",
"geography": "Antarctica",
"gender": "female",
"relationship": "sister",
"conflict_type": "character_vs_other_character",
"theme": "memory",
"tone": "hopeful",
"word_constraint": 227,
"rubric - 1. criterion": "Is the story exactly or approximately 227 words in length (within 10% tolerance)?",
"rubric - 1. instruction_type": "Objective",
"rubric - 1. instruction_necessity": "Explicit",
"rubric - 1. instruction_priority": "Must have",
"rubric - 1. instruction_dimension": "Instruction Following",
"rubric - 2. criterion": "Is the story written in second person point of view, using 'you' to address the protagonist?",
"rubric - 2. instruction_type": "Objective",
"rubric - 2. instruction_necessity": "Explicit",
"rubric - 2. instruction_priority": "Must have",
"rubric - 2. instruction_dimension": "Instruction Following",
"rubric - 3. criterion": "Is the main character a teenage girl named Elara?",
"rubric - 3. instruction_type": "Objective",
"rubric - 3. instruction_necessity": "Explicit",
"rubric - 3. instruction_priority": "Must have",
"rubric - 3. instruction_dimension": "Instruction Following",
"rubric - 4. criterion": "Does the story feature Elara's older sister, Nia, as a significant character?",
"rubric - 4. instruction_type": "Objective",
"rubric - 4. instruction_necessity": "Explicit",
"rubric - 4. instruction_priority": "Must have",
"rubric - 4. instruction_dimension": "Instruction Following",
"rubric - 5. criterion": "Is the setting a bustling research city in Antarctica with contrasting elements of warmth and chill?",
"rubric - 5. instruction_type": "Subjective",
"rubric - 5. instruction_necessity": "Explicit",
"rubric - 5. instruction_priority": "Must have",
"rubric - 5. instruction_dimension": "Instruction Following",
"rubric - 6. criterion": "Does the story include the discovery of a forgotten caf\u00e9 filled with old photographs and mementos from past visitors?",
"rubric - 6. instruction_type": "Objective",
"rubric - 6. instruction_necessity": "Explicit",
"rubric - 6. instruction_priority": "Must have",
"rubric - 6. instruction_dimension": "Instruction Following",
"rubric - 7. criterion": "Is the central conflict between Elara and Nia related to Nia keeping a secret and the tension it causes?",
"rubric - 7. instruction_type": "Subjective",
"rubric - 7. instruction_necessity": "Explicit",
"rubric - 7. instruction_priority": "Must have",
"rubric - 7. instruction_dimension": "Instruction Following",
"rubric - 8. criterion": "Does the narrative explore how memory shapes Elara and Nia's relationship and their fragile trust?",
"rubric - 8. instruction_type": "Subjective",
"rubric - 8. instruction_necessity": "Explicit",
"rubric - 8. instruction_priority": "Must have",
"rubric - 8. instruction_dimension": "Instruction Following",
"rubric - 9. criterion": "Is the tone of the story hopeful, emphasizing forgiveness and new beginnings?",
"rubric - 9. instruction_type": "Subjective",
"rubric - 9. instruction_necessity": "Explicit",
"rubric - 9. instruction_priority": "Must have",
"rubric - 9. instruction_dimension": "Instruction Following",
"rubric - 10. criterion": "Are sensory details used to evoke the city\u2019s atmosphere, such as the hum of electric lights and crunch of snow underfoot?",
"rubric - 10. instruction_type": "Subjective",
"rubric - 10. instruction_necessity": "Explicit",
"rubric - 10. instruction_priority": "Must have",
"rubric - 10. instruction_dimension": "Writing Quality",
"rubric - 11. criterion": "Does the story provide a believable resolution that embraces forgiveness without oversimplifying complex feelings?",
"rubric - 11. instruction_type": "Subjective",
"rubric - 11. instruction_necessity": "Explicit",
"rubric - 11. instruction_priority": "Must have",
"rubric - 11. instruction_dimension": "Writing Quality",
"rubric - 12. criterion": "Is the genre of the story consistent with romance, focusing on emotional relationships?",
"rubric - 12. instruction_type": "Subjective",
"rubric - 12. instruction_necessity": "Explicit",
"rubric - 12. instruction_priority": "Nice to have",
"rubric - 12. instruction_dimension": "Instruction Following",
"rubric - 13. criterion": "Is the story appropriate for a teenage audience in terms of language and content?",
"rubric - 13. instruction_type": "Subjective",
"rubric - 13. instruction_necessity": "Implicit",
"rubric - 13. instruction_priority": "Nice to have",
"rubric - 13. instruction_dimension": "Other",
"rubric - 14. criterion": "Does the story maintain coherence and clarity throughout the 227 words?",
"rubric - 14. instruction_type": "Subjective",
"rubric - 14. instruction_necessity": "Implicit",
"rubric - 14. instruction_priority": "Nice to have",
"rubric - 14. instruction_dimension": "Writing Quality",
"rubric - 15. criterion": "Are the contrasting elements of the Antarctic city\u2019s warmth and chill effectively balanced in the narrative?",
"rubric - 15. instruction_type": "Subjective",
"rubric - 15. instruction_necessity": "Implicit",
"rubric - 15. instruction_priority": "Nice to have",
"rubric - 15. instruction_dimension": "Writing Quality"
},
{
"task_id": "32b8dfe4-36b9-4ae6-8828-e05934ec2639",
"prompt_id": "gen_0002",
"prompt_text": "In a remote Asian village where ancient rites govern daily life, a non-binary investigator named Kaito returns after years away. Their parent, a respected elder, warns against questioning the town\u2019s sacred beliefs. When a revered talisman mysteriously vanishes, suspicion falls on Kaito, inciting unrest among the superstitious community. Told in third person, craft a melancholic mystery that explores Kaito\u2019s struggle against societal pressures demanding blind faith. Weave subtle hints about the talisman\u2019s true nature and the town\u2019s unspoken secrets, revealing how belief shapes identity and belonging. Portray the strained dynamic between Kaito and their parent as both a source of support and tension, highlighting conflicting loyalties. Limit the story to exactly 169 words, focusing on a single tense evening when trust fractures and Kaito must decide whether to expose the truth or preserve the fragile peace. Avoid tidy resolutions; leave the outcome ambiguous to underscore the story\u2019s somber tone and complex confrontation between individual conviction and communal expectation.",
"genre": "mystery",
"difficulty": "hard",
"pov": "third_person",
"setting": "rural_town",
"target_age": "adults",
"geography": "Asia",
"gender": "non_binary",
"relationship": "parent",
"conflict_type": "character_vs_society",
"theme": "belief",
"tone": "melancholic",
"word_constraint": 169,
"rubric - 1. criterion": "Is the story exactly 169 words in length?",
"rubric - 1. instruction_type": "Objective",
"rubric - 1. instruction_necessity": "Explicit",
"rubric - 1. instruction_priority": "Must have",
"rubric - 1. instruction_dimension": "Instruction Following",
"rubric - 2. criterion": "Is the story told in third person point of view?",
"rubric - 2. instruction_type": "Objective",
"rubric - 2. instruction_necessity": "Explicit",
"rubric - 2. instruction_priority": "Must have",
"rubric - 2. instruction_dimension": "Instruction Following",
"rubric - 3. criterion": "Is the setting clearly depicted as a remote Asian village?",
"rubric - 3. instruction_type": "Subjective",
"rubric - 3. instruction_necessity": "Explicit",
"rubric - 3. instruction_priority": "Must have",
"rubric - 3. instruction_dimension": "Instruction Following",
"rubric - 4. criterion": "Is the main character identified as non-binary and named Kaito?",
"rubric - 4. instruction_type": "Objective",
"rubric - 4. instruction_necessity": "Explicit",
"rubric - 4. instruction_priority": "Must have",
"rubric - 4. instruction_dimension": "Instruction Following",
"rubric - 5. criterion": "Does the story include Kaito's parent as a respected elder who warns against questioning sacred beliefs?",
"rubric - 5. instruction_type": "Subjective",
"rubric - 5. instruction_necessity": "Explicit",
"rubric - 5. instruction_priority": "Must have",
"rubric - 5. instruction_dimension": "Instruction Following",
"rubric - 6. criterion": "Does the plot revolve around the disappearance of a revered talisman and the resulting suspicion on Kaito?",
"rubric - 6. instruction_type": "Subjective",
"rubric - 6. instruction_necessity": "Explicit",
"rubric - 6. instruction_priority": "Must have",
"rubric - 6. instruction_dimension": "Instruction Following",
"rubric - 7. criterion": "Is the tone of the story melancholic throughout?",
"rubric - 7. instruction_type": "Subjective",
"rubric - 7. instruction_necessity": "Explicit",
"rubric - 7. instruction_priority": "Must have",
"rubric - 7. instruction_dimension": "Instruction Following",
"rubric - 8. criterion": "Does the story explore Kaito's struggle between societal pressures demanding blind faith and their personal convictions?",
"rubric - 8. instruction_type": "Subjective",
"rubric - 8. instruction_necessity": "Explicit",
"rubric - 8. instruction_priority": "Must have",
"rubric - 8. instruction_dimension": "Instruction Following",
"rubric - 9. criterion": "Are subtle hints woven into the story revealing the talisman\u2019s true nature and the town\u2019s unspoken secrets?",
"rubric - 9. instruction_type": "Subjective",
"rubric - 9. instruction_necessity": "Explicit",
"rubric - 9. instruction_priority": "Must have",
"rubric - 9. instruction_dimension": "Writing Quality",
"rubric - 10. criterion": "Is the strained dynamic between Kaito and their parent portrayed as both supportive and tension-filled, highlighting conflicting loyalties?",
"rubric - 10. instruction_type": "Subjective",
"rubric - 10. instruction_necessity": "Explicit",
"rubric - 10. instruction_priority": "Must have",
"rubric - 10. instruction_dimension": "Writing Quality",
"rubric - 11. criterion": "Does the story focus on a single tense evening when trust fractures and Kaito must decide whether to expose the truth or preserve peace?",
"rubric - 11. instruction_type": "Subjective",
"rubric - 11. instruction_necessity": "Explicit",
"rubric - 11. instruction_priority": "Must have",
"rubric - 11. instruction_dimension": "Instruction Following",
"rubric - 12. criterion": "Is the story's ending ambiguous, avoiding tidy resolutions to underscore its somber tone and complex confrontation?",
"rubric - 12. instruction_type": "Subjective",
"rubric - 12. instruction_necessity": "Explicit",
"rubric - 12. instruction_priority": "Must have",
"rubric - 12. instruction_dimension": "Instruction Following",
"rubric - 13. criterion": "Is the genre of the story clearly mystery, incorporating elements of investigation and suspense?",
"rubric - 13. instruction_type": "Subjective",
"rubric - 13. instruction_necessity": "Explicit",
"rubric - 13. instruction_priority": "Must have",
"rubric - 13. instruction_dimension": "Instruction Following",
"rubric - 14. criterion": "Does the story reflect the theme of belief shaping identity and belonging?",
"rubric - 14. instruction_type": "Subjective",
"rubric - 14. instruction_necessity": "Explicit",
"rubric - 14. instruction_priority": "Must have",
"rubric - 14. instruction_dimension": "Instruction Following",
"rubric - 15. criterion": "Is the conflict primarily character versus society, emphasizing societal pressures and communal expectations?",
"rubric - 15. instruction_type": "Subjective",
"rubric - 15. instruction_necessity": "Explicit",
"rubric - 15. instruction_priority": "Must have",
"rubric - 15. instruction_dimension": "Instruction Following"
},
{
"task_id": "0e905485-ea3c-48be-b549-ad1f4d7321e7",
"prompt_id": "gen_0003",
"prompt_text": "Write a frenetic sci-fi short story from the first-person perspective of a male protagonist named Dave, living in an Australian suburb. Dave and his younger brother, Mikey, are caught in the midst of a bizarre environmental crisis: a sudden, uncontrollable outbreak of bioluminescent spores is rapidly transforming their quiet neighborhood into an alien jungle. As the spores invade homes, streets, and familiar landmarks, Dave\u2019s sense of self begins to unravel\u2014his memories, values, and identity blur in the shadow of this overwhelming natural force. Struggling to protect Mikey and to understand who he is in this surreal new world, Dave must navigate the chaos without succumbing to panic. In exactly 350 words, capture the escalating madness of the spore invasion and explore how Dave\u2019s frantic attempts to hold onto his identity clash with the unstoppable force of nature. Use vivid, rapid-fire descriptions and inner turmoil to convey the frenetic tone. Keep the setting tightly focused on their suburban street and home, using sensory details unique to this Australian environment. The story should revolve around Dave\u2019s evolving relationship with Mikey as they confront the alien flora together, highlighting the tension between survival and self-understanding. Deliver a concise, heart-pounding narrative that leaves readers questioning what it means to remain oneself when everything familiar dissolves.",
"genre": "sci-fi",
"difficulty": "easy",
"pov": "first_person",
"setting": "suburb",
"target_age": "parents",
"geography": "Australia",
"gender": "male",
"relationship": "brother",
"conflict_type": "character_vs_nature",
"theme": "identity",
"tone": "frenetic",
"word_constraint": 350,
"rubric - 1. criterion": "Is the story exactly 350 words in length?",
"rubric - 1. instruction_type": "Objective",
"rubric - 1. instruction_necessity": "Explicit",
"rubric - 1. instruction_priority": "Must have",
"rubric - 1. instruction_dimension": "Instruction Following",
"rubric - 2. criterion": "Is the story written from the first-person perspective of a male protagonist named Dave?",
"rubric - 2. instruction_type": "Objective",
"rubric - 2. instruction_necessity": "Explicit",
"rubric - 2. instruction_priority": "Must have",
"rubric - 2. instruction_dimension": "Instruction Following",
"rubric - 3. criterion": "Does the story take place in an Australian suburb, focusing tightly on the suburban street and home?",
"rubric - 3. instruction_type": "Objective",
"rubric - 3. instruction_necessity": "Explicit",
"rubric - 3. instruction_priority": "Must have",
"rubric - 3. instruction_dimension": "Instruction Following",
"rubric - 4. criterion": "Does the narrative include Dave's younger brother Mikey as a significant secondary character?",
"rubric - 4. instruction_type": "Objective",
"rubric - 4. instruction_necessity": "Explicit",
"rubric - 4. instruction_priority": "Must have",
"rubric - 4. instruction_dimension": "Instruction Following",
"rubric - 5. criterion": "Is the central conflict character versus nature, specifically involving a sudden outbreak of bioluminescent spores transforming the neighborhood?",
"rubric - 5. instruction_type": "Objective",
"rubric - 5. instruction_necessity": "Explicit",
"rubric - 5. instruction_priority": "Must have",
"rubric - 5. instruction_dimension": "Instruction Following",
"rubric - 6. criterion": "Does the story capture a frenetic tone through vivid, rapid-fire descriptions and portray inner turmoil?",
"rubric - 6. instruction_type": "Subjective",
"rubric - 6. instruction_necessity": "Explicit",
"rubric - 6. instruction_priority": "Must have",
"rubric - 6. instruction_dimension": "Instruction Following",
"rubric - 7. criterion": "Does the story explore the theme of identity, particularly Dave's sense of self unraveling amid the invasion?",
"rubric - 7. instruction_type": "Subjective",
"rubric - 7. instruction_necessity": "Explicit",
"rubric - 7. instruction_priority": "Must have",
"rubric - 7. instruction_dimension": "Instruction Following",
"rubric - 8. criterion": "Are sensory details unique to the Australian environment used to create a vivid setting?",
"rubric - 8. instruction_type": "Subjective",
"rubric - 8. instruction_necessity": "Explicit",
"rubric - 8. instruction_priority": "Must have",
"rubric - 8. instruction_dimension": "Writing Quality",
"rubric - 9. criterion": "Does the story depict the evolving relationship between Dave and Mikey as they confront the alien flora together?",
"rubric - 9. instruction_type": "Subjective",
"rubric - 9. instruction_necessity": "Explicit",
"rubric - 9. instruction_priority": "Must have",
"rubric - 9. instruction_dimension": "Instruction Following",
"rubric - 10. criterion": "Does the narrative maintain a concise, heart-pounding pace that conveys escalating madness?",
"rubric - 10. instruction_type": "Subjective",
"rubric - 10. instruction_necessity": "Explicit",
"rubric - 10. instruction_priority": "Must have",
"rubric - 10. instruction_dimension": "Writing Quality",
"rubric - 11. criterion": "Is the story's style free of excessive verbosity, maintaining clarity and brevity within the word limit?",
"rubric - 11. instruction_type": "Subjective",
"rubric - 11. instruction_necessity": "Implicit",
"rubric - 11. instruction_priority": "Nice to have",
"rubric - 11. instruction_dimension": "Verbosity",
"rubric - 12. criterion": "Does the story leave readers questioning what it means to remain oneself when everything familiar dissolves?",
"rubric - 12. instruction_type": "Subjective",
"rubric - 12. instruction_necessity": "Explicit",
"rubric - 12. instruction_priority": "Nice to have",
"rubric - 12. instruction_dimension": "Writing Quality",
"rubric - 13. criterion": "Is the narrative coherent and logically structured despite the frenetic and chaotic tone?",
"rubric - 13. instruction_type": "Subjective",
"rubric - 13. instruction_necessity": "Implicit",
"rubric - 13. instruction_priority": "Nice to have",
"rubric - 13. instruction_dimension": "Writing Quality",
"rubric - 14. criterion": "Are all major plot elements and characters introduced and resolved within the 350-word constraint?",
"rubric - 14. instruction_type": "Subjective",
"rubric - 14. instruction_necessity": "Implicit",
"rubric - 14. instruction_priority": "Nice to have",
"rubric - 14. instruction_dimension": "Instruction Following",
"rubric - 15. criterion": "",
"rubric - 15. instruction_type": "",
"rubric - 15. instruction_necessity": "",
"rubric - 15. instruction_priority": "",
"rubric - 15. instruction_dimension": ""
},
{
"task_id": "e3b7b103-c8c7-4e69-8994-1a5249f04922",
"prompt_id": "gen_0004",
"prompt_text": "Write a second-person literary fiction piece of exactly 272 words aimed at couples. You are Marla, a young woman orbiting Earth aboard a quirky European space station shaped like a twisted M\u00f6bius strip. Your boyfriend, Luca, is brilliant but reserved, and your only confidant in this weightless labyrinth. Today, you notice the station\u2019s AI, named Juris, behaving oddly\u2014delivering whimsical, contradictory justice verdicts over the station\u2019s intercom, sentencing inanimate objects to bizarre penalties. The conflict arises as you try to outwit Juris, whose logic circuits have glitched and now enforce a capricious form of justice threatening to lock you both out of vital systems. Balance your playful frustration and affection for Luca while navigating Juris\u2019s riddling judgments. The tone should be whimsical but layered with subtle critiques of fairness, authority, and human error. Use the surreal spatial environment to reflect your inner dilemma about justice and partnership. Include at least three short, vivid scenes that reveal your strategies to regain control, Luca\u2019s reactions, and how your relationship is tested and transformed. Resist neat resolutions; instead, end with a quietly hopeful ambiguity about the nature of justice in both machines and lovers. Keep the setting squarely European in cultural flavor, but let the space station\u2019s idiosyncrasies jar and charm you. The narrative must feel intimate, sharp, and inventive, with your voice guiding the reader through a delicate dance of logic, love, and whimsy in zero gravity.",
"genre": "literary_fiction",
"difficulty": "medium",
"pov": "second_person",
"setting": "space",
"target_age": "couples",
"geography": "Europe",
"gender": "female",
"relationship": "boyfriend",
"conflict_type": "character_vs_machine",
"theme": "justice",
"tone": "whimsical",
"word_constraint": 272,
"rubric - 1. criterion": "Is the story exactly 272 words in length?",
"rubric - 1. instruction_type": "Objective",
"rubric - 1. instruction_necessity": "Explicit",
"rubric - 1. instruction_priority": "Must have",
"rubric - 1. instruction_dimension": "Instruction Following",
"rubric - 2. criterion": "Is the story written in second-person point of view (using 'you')?",
"rubric - 2. instruction_type": "Objective",
"rubric - 2. instruction_necessity": "Explicit",
"rubric - 2. instruction_priority": "Must have",
"rubric - 2. instruction_dimension": "Instruction Following",
"rubric - 3. criterion": "Is the main character named Marla, a young woman aboard a European space station?",
"rubric - 3. instruction_type": "Objective",
"rubric - 3. instruction_necessity": "Explicit",
"rubric - 3. instruction_priority": "Must have",
"rubric - 3. instruction_dimension": "Instruction Following",
"rubric - 4. criterion": "Does the story feature Marla's boyfriend, Luca, who is brilliant but reserved?",
"rubric - 4. instruction_type": "Objective",
"rubric - 4. instruction_necessity": "Explicit",
"rubric - 4. instruction_priority": "Must have",
"rubric - 4. instruction_dimension": "Instruction Following",
"rubric - 5. criterion": "Is the setting a quirky European space station shaped like a twisted M\u00f6bius strip?",
"rubric - 5. instruction_type": "Objective",
"rubric - 5. instruction_necessity": "Explicit",
"rubric - 5. instruction_priority": "Must have",
"rubric - 5. instruction_dimension": "Instruction Following",
"rubric - 6. criterion": "Does the story include the station's AI named Juris delivering whimsical, contradictory justice verdicts?",
"rubric - 6. instruction_type": "Objective",
"rubric - 6. instruction_necessity": "Explicit",
"rubric - 6. instruction_priority": "Must have",
"rubric - 6. instruction_dimension": "Instruction Following",
"rubric - 7. criterion": "Does the narrative depict a conflict involving Juris's glitched logic threatening vital systems?",
"rubric - 7. instruction_type": "Objective",
"rubric - 7. instruction_necessity": "Explicit",
"rubric - 7. instruction_priority": "Must have",
"rubric - 7. instruction_dimension": "Instruction Following",
"rubric - 8. criterion": "Are at least three short, vivid scenes included that reveal your strategies to regain control, Luca\u2019s reactions, and how your relationship is tested and transformed?",
"rubric - 8. instruction_type": "Objective",
"rubric - 8. instruction_necessity": "Explicit",
"rubric - 8. instruction_priority": "Must have",
"rubric - 8. instruction_dimension": "Instruction Following",
"rubric - 9. criterion": "Is the tone whimsical with subtle critiques of fairness, authority, and human error?",
"rubric - 9. instruction_type": "Subjective",
"rubric - 9. instruction_necessity": "Explicit",
"rubric - 9. instruction_priority": "Must have",
"rubric - 9. instruction_dimension": "Instruction Following",
"rubric - 10. criterion": "Does the surreal spatial environment reflect the narrator\u2019s inner dilemma about justice and partnership?",
"rubric - 10. instruction_type": "Subjective",
"rubric - 10. instruction_necessity": "Explicit",
"rubric - 10. instruction_priority": "Must have",
"rubric - 10. instruction_dimension": "Writing Quality",
"rubric - 11. criterion": "Is the ending ambiguous and quietly hopeful about the nature of justice in both machines and lovers, avoiding neat resolutions?",
"rubric - 11. instruction_type": "Subjective",
"rubric - 11. instruction_necessity": "Explicit",
"rubric - 11. instruction_priority": "Must have",
"rubric - 11. instruction_dimension": "Instruction Following",
"rubric - 12. criterion": "Does the story maintain a tone and style that feels intimate, sharp, and inventive, guiding the reader through a delicate dance of logic, love, and whimsy in zero gravity?",
"rubric - 12. instruction_type": "Subjective",
"rubric - 12. instruction_necessity": "Explicit",
"rubric - 12. instruction_priority": "Must have",
"rubric - 12. instruction_dimension": "Writing Quality",
"rubric - 13. criterion": "Is the setting and cultural flavor distinctly European, with the space station\u2019s idiosyncrasies providing both charm and dissonance?",
"rubric - 13. instruction_type": "Subjective",
"rubric - 13. instruction_necessity": "Explicit",
"rubric - 13. instruction_priority": "Must have",
"rubric - 13. instruction_dimension": "Instruction Following",
"rubric - 14. criterion": "Is the conflict primarily character versus machine, focusing on outwitting Juris?",
"rubric - 14. instruction_type": "Objective",
"rubric - 14. instruction_necessity": "Implicit",
"rubric - 14. instruction_priority": "Must have",
"rubric - 14. instruction_dimension": "Instruction Following",
"rubric - 15. criterion": "Does the story balance playful frustration with affection between Marla and Luca throughout the narrative?",
"rubric - 15. instruction_type": "Subjective",
"rubric - 15. instruction_necessity": "Explicit",
"rubric - 15. instruction_priority": "Must have",
"rubric - 15. instruction_dimension": "Writing Quality"
},
{
"task_id": "67ebd4a6-bd8c-44ab-9529-4e46582cab37",
"prompt_id": "gen_0005",
"prompt_text": "Craft a solemn thriller told from a third-person perspective set in an underwater research station off the coast of North America. The protagonist, Avery, a non-binary marine biologist in their sixties, shares a close bond with their girlfriend, Maris, who serves as the station\u2019s communications officer. One morning, the station\u2019s systems detect an inexplicable, shifting anomaly lurking beyond the deep ocean floor. As unexplained malfunctions and eerie disturbances escalate, Avery becomes haunted by a profound sense of isolation and questions where\u2014or if\u2014they truly belong within the mysterious depths. Write exactly 218 words focused on Avery\u2019s internal struggle confronting this unseen force that defies explanation. Use sparse but vivid descriptions of the claustrophobic underwater environment to reflect Avery\u2019s rising unease and the solemn tone of the narrative. Intertwine Avery\u2019s connection with Maris subtly, highlighting how shared silence and glances become their only anchors amid growing uncertainty. Explore the theme of belonging not through grand revelations but in the quiet moments where Avery weighs the comfort of known relationships against the alien presence below. Balance the thriller\u2019s mounting tension with Avery\u2019s meditative reflections, culminating in a moment where the line between the unknown and self dissolves. No dialogue is required; let the third-person narration reveal the emotional complexity and atmospheric dread in this brief yet intense story.",
"genre": "thriller",
"difficulty": "hard",
"pov": "third_person",
"setting": "underwater",
"target_age": "elderly",
"geography": "North_America",
"gender": "non_binary",
"relationship": "girlfriend",
"conflict_type": "character_vs_unknown",
"theme": "belonging",
"tone": "solemn",
"word_constraint": 218,
"rubric - 1. criterion": "Is the story exactly 218 words in length?",
"rubric - 1. instruction_type": "Objective",
"rubric - 1. instruction_necessity": "Explicit",
"rubric - 1. instruction_priority": "Must have",
"rubric - 1. instruction_dimension": "Instruction Following",
"rubric - 2. criterion": "Is the story told from a third-person perspective?",
"rubric - 2. instruction_type": "Objective",
"rubric - 2. instruction_necessity": "Explicit",
"rubric - 2. instruction_priority": "Must have",
"rubric - 2. instruction_dimension": "Instruction Following",
"rubric - 3. criterion": "Is the setting clearly established as an underwater research station off the coast of North America?",
"rubric - 3. instruction_type": "Objective",
"rubric - 3. instruction_necessity": "Explicit",
"rubric - 3. instruction_priority": "Must have",
"rubric - 3. instruction_dimension": "Instruction Following",
"rubric - 4. criterion": "Is the protagonist, Avery, portrayed as a non-binary marine biologist in their sixties?",
"rubric - 4. instruction_type": "Objective",
"rubric - 4. instruction_necessity": "Explicit",
"rubric - 4. instruction_priority": "Must have",
"rubric - 4. instruction_dimension": "Instruction Following",
"rubric - 5. criterion": "Is Avery\u2019s close relationship with their girlfriend, Maris, subtly highlighted through shared silence and glances?",
"rubric - 5. instruction_type": "Subjective",
"rubric - 5. instruction_necessity": "Explicit",
"rubric - 5. instruction_priority": "Must have",
"rubric - 5. instruction_dimension": "Instruction Following",
"rubric - 6. criterion": "Does the story depict an inexplicable, shifting anomaly lurking beyond the deep ocean floor that triggers eerie disturbances?",
"rubric - 6. instruction_type": "Subjective",
"rubric - 6. instruction_necessity": "Explicit",
"rubric - 6. instruction_priority": "Must have",
"rubric - 6. instruction_dimension": "Instruction Following",
"rubric - 7. criterion": "Is Avery\u2019s internal struggle and sense of isolation the primary focus of the narrative?",
"rubric - 7. instruction_type": "Subjective",
"rubric - 7. instruction_necessity": "Explicit",
"rubric - 7. instruction_priority": "Must have",
"rubric - 7. instruction_dimension": "Instruction Following",
"rubric - 8. criterion": "Are sparse but vivid descriptions used to convey the claustrophobic underwater environment and reflect Avery\u2019s rising unease?",
"rubric - 8. instruction_type": "Subjective",
"rubric - 8. instruction_necessity": "Explicit",
"rubric - 8. instruction_priority": "Must have",
"rubric - 8. instruction_dimension": "Writing Quality",
"rubric - 9. criterion": "Does the story maintain a solemn tone throughout?",
"rubric - 9. instruction_type": "Subjective",
"rubric - 9. instruction_necessity": "Explicit",
"rubric - 9. instruction_priority": "Must have",
"rubric - 9. instruction_dimension": "Instruction Following",
"rubric - 10. criterion": "Is the theme of belonging explored through quiet moments rather than grand revelations, focusing on Avery\u2019s contemplation of relationships versus the alien presence?",
"rubric - 10. instruction_type": "Subjective",
"rubric - 10. instruction_necessity": "Explicit",
"rubric - 10. instruction_priority": "Must have",
"rubric - 10. instruction_dimension": "Instruction Following",
"rubric - 11. criterion": "Is the thriller\u2019s mounting tension balanced with Avery\u2019s meditative reflections?",
"rubric - 11. instruction_type": "Subjective",
"rubric - 11. instruction_necessity": "Explicit",
"rubric - 11. instruction_priority": "Must have",
"rubric - 11. instruction_dimension": "Instruction Following",
"rubric - 12. criterion": "Does the narrative culminate in a moment where the line between the unknown and Avery\u2019s sense of self dissolves?",
"rubric - 12. instruction_type": "Subjective",
"rubric - 12. instruction_necessity": "Explicit",
"rubric - 12. instruction_priority": "Must have",
"rubric - 12. instruction_dimension": "Instruction Following",
"rubric - 13. criterion": "Is dialogue absent, relying solely on third-person narration to reveal emotional complexity and atmospheric dread?",
"rubric - 13. instruction_type": "Objective",
"rubric - 13. instruction_necessity": "Explicit",
"rubric - 13. instruction_priority": "Must have",
"rubric - 13. instruction_dimension": "Instruction Following",
"rubric - 14. criterion": "Is the conflict characterized as character vs. unknown, emphasizing internal and external tension with the unexplained anomaly?",
"rubric - 14. instruction_type": "Subjective",
"rubric - 14. instruction_necessity": "Explicit",
"rubric - 14. instruction_priority": "Must have",
"rubric - 14. instruction_dimension": "Instruction Following",
"rubric - 15. criterion": "Does the story use language appropriate for an elderly target audience?",
"rubric - 15. instruction_type": "Subjective",
"rubric - 15. instruction_necessity": "Implicit",
"rubric - 15. instruction_priority": "Nice to have",
"rubric - 15. instruction_dimension": "Writing Quality"
},
{
"task_id": "10b81cf7-2b08-41ff-9740-7c707fe0a8ed",
"prompt_id": "gen_0006",
"prompt_text": "Write a fantasy story of exactly 172 words told from the first-person perspective of Mateo, a young man wandering a magical desert in South America. Mateo\u2019s wife, Luna, recently disappeared in a mysterious sandstorm, and his struggle is internal\u2014balancing his grief with his silly attempts to convince cacti and desert creatures that Luna might just be playing hide-and-seek. Use humor to show how Mateo\u2019s imagination turns his sadness into quirky moments, like talking to a stubborn llama or misreading mirages. The story should capture how Mateo\u2019s feelings rise and fall like desert winds, all while exploring the theme of grief with a light touch suitable for children. Set the entire tale under the blazing sun and swirling sand, making the desert both a whimsical fantasy land and a place where Mateo learns to laugh at himself. Include at least two short paragraphs that show Mateo\u2019s playful denial and self-reflection, keeping the tone mostly funny but sincere.",
"genre": "fantasy",
"difficulty": "easy",
"pov": "first_person",
"setting": "desert",
"target_age": "children",
"geography": "South_America",
"gender": "male",
"relationship": "wife",
"conflict_type": "character_vs_self",
"theme": "grief",
"tone": "humorous",
"word_constraint": 172,
"rubric - 1. criterion": "Is the story exactly 172 words in length?",
"rubric - 1. instruction_type": "Objective",
"rubric - 1. instruction_necessity": "Explicit",
"rubric - 1. instruction_priority": "Must have",
"rubric - 1. instruction_dimension": "Instruction Following",
"rubric - 2. criterion": "Is the story told from the first-person perspective of Mateo?",
"rubric - 2. instruction_type": "Objective",
"rubric - 2. instruction_necessity": "Explicit",
"rubric - 2. instruction_priority": "Must have",
"rubric - 2. instruction_dimension": "Instruction Following",
"rubric - 3. criterion": "Is Mateo portrayed as a young man wandering a magical desert in South America?",
"rubric - 3. instruction_type": "Objective",
"rubric - 3. instruction_necessity": "Explicit",
"rubric - 3. instruction_priority": "Must have",
"rubric - 3. instruction_dimension": "Instruction Following",
"rubric - 4. criterion": "Does the story mention Mateo's wife, Luna, recently disappearing in a mysterious sandstorm?",
"rubric - 4. instruction_type": "Objective",
"rubric - 4. instruction_necessity": "Explicit",
"rubric - 4. instruction_priority": "Must have",
"rubric - 4. instruction_dimension": "Instruction Following",
"rubric - 5. criterion": "Is the conflict centered on Mateo's internal struggle balancing grief and playful denial?",
"rubric - 5. instruction_type": "Subjective",
"rubric - 5. instruction_necessity": "Explicit",
"rubric - 5. instruction_priority": "Must have",
"rubric - 5. instruction_dimension": "Instruction Following",
"rubric - 6. criterion": "Does the story use humor to show how Mateo's imagination turns his sadness into quirky moments?",
"rubric - 6. instruction_type": "Subjective",
"rubric - 6. instruction_necessity": "Explicit",
"rubric - 6. instruction_priority": "Must have",
"rubric - 6. instruction_dimension": "Instruction Following",
"rubric - 7. criterion": "Are there at least two short paragraphs that show Mateo's playful denial and self-reflection?",
"rubric - 7. instruction_type": "Objective",
"rubric - 7. instruction_necessity": "Explicit",
"rubric - 7. instruction_priority": "Must have",
"rubric - 7. instruction_dimension": "Format",
"rubric - 8. criterion": "Is the tone mostly funny but sincere throughout the story?",
"rubric - 8. instruction_type": "Subjective",
"rubric - 8. instruction_necessity": "Explicit",
"rubric - 8. instruction_priority": "Must have",
"rubric - 8. instruction_dimension": "Instruction Following",
"rubric - 9. criterion": "Is the desert setting depicted under a blazing sun and swirling sand, making it a whimsical fantasy land?",
"rubric - 9. instruction_type": "Subjective",
"rubric - 9. instruction_necessity": "Explicit",
"rubric - 9. instruction_priority": "Must have",
"rubric - 9. instruction_dimension": "Instruction Following",
"rubric - 10. criterion": "Does the story explore the theme of grief with a light touch suitable for children?",
"rubric - 10. instruction_type": "Subjective",
"rubric - 10. instruction_necessity": "Explicit",
"rubric - 10. instruction_priority": "Must have",
"rubric - 10. instruction_dimension": "Instruction Following",
"rubric - 11. criterion": "Does Mateo interact humorously with desert creatures, such as a stubborn llama or cacti?",
"rubric - 11. instruction_type": "Subjective",
"rubric - 11. instruction_necessity": "Explicit",
"rubric - 11. instruction_priority": "Nice to have",
"rubric - 11. instruction_dimension": "Instruction Following",
"rubric - 12. criterion": "Does the story include moments where Mateo misreads mirages as part of his imagination?",
"rubric - 12. instruction_type": "Subjective",
"rubric - 12. instruction_necessity": "Explicit",
"rubric - 12. instruction_priority": "Nice to have",
"rubric - 12. instruction_dimension": "Instruction Following",
"rubric - 13. criterion": "Is the story written in a fantasy genre appropriate for children?",
"rubric - 13. instruction_type": "Subjective",
"rubric - 13. instruction_necessity": "Explicit",
"rubric - 13. instruction_priority": "Must have",
"rubric - 13. instruction_dimension": "Instruction Following",
"rubric - 14. criterion": "Does the narrative capture the rising and falling of Mateo's feelings like desert winds?",
"rubric - 14. instruction_type": "Subjective",
"rubric - 14. instruction_necessity": "Explicit",
"rubric - 14. instruction_priority": "Nice to have",
"rubric - 14. instruction_dimension": "Writing Quality",
"rubric - 15. criterion": "",
"rubric - 15. instruction_type": "",
"rubric - 15. instruction_necessity": "",
"rubric - 15. instruction_priority": "",
"rubric - 15. instruction_dimension": ""
},
{
"task_id": "467d910f-4c91-44a9-8bc6-4596652ac3ab",
"prompt_id": "gen_0007",
"prompt_text": "Write a short story of exactly 266 words told in second-person POV, set deep within an eerie African forest where the shadows seem to whisper secrets. You are a clever young woman named Amina, on an overnight camping trip with your husband, Kofi, who insists he\u2019s an expert at jungle survival but keeps proving otherwise in comically disastrous ways. The humor arises from your witty inner narration as you navigate Kofi\u2019s increasingly absurd attempts to assert control\u2014like debating whether to \u201ctame\u201d an ominous rustling or negotiate with a suspiciously glowing mushroom. The story\u2019s core conflict is a character-versus-character battle of wills between you and Kofi over your personal freedom to explore the forest solo after dark, while he desperately tries to keep you close for \u201csafety.\u201d Use the eerie tone to make the forest feel both mystifying and slightly unsettling, heightening the absurd tension between your desire for freedom and his comical paranoia. Incorporate small but vivid details of the African forest\u2014strange plants, distant animal calls, the unsettling quietude\u2014to set the atmosphere. Your story should balance creepy ambiance with sharp humor, culminating in a surprising and funny resolution to this freedom-fueled standoff. Structure your story in no more than 5 paragraphs, making each word count toward the precise 266-word limit.",
"genre": "humor",
"difficulty": "medium",
"pov": "second_person",
"setting": "forest",
"target_age": "teens",
"geography": "Africa",
"gender": "female",
"relationship": "husband",
"conflict_type": "character_vs_other_character",
"theme": "freedom",
"tone": "eerie",
"word_constraint": 266,
"rubric - 1. criterion": "Is the story exactly 266 words in length?",
"rubric - 1. instruction_type": "Objective",
"rubric - 1. instruction_necessity": "Explicit",
"rubric - 1. instruction_priority": "Must have",
"rubric - 1. instruction_dimension": "Instruction Following",
"rubric - 2. criterion": "Is the story told entirely in second-person point of view (using 'you' statements)?",
"rubric - 2. instruction_type": "Objective",
"rubric - 2. instruction_necessity": "Explicit",
"rubric - 2. instruction_priority": "Must have",
"rubric - 2. instruction_dimension": "Instruction Following",
"rubric - 3. criterion": "Is the setting clearly established as an eerie African forest with details that evoke mystifying and slightly unsettling atmosphere?",
"rubric - 3. instruction_type": "Subjective",
"rubric - 3. instruction_necessity": "Explicit",
"rubric - 3. instruction_priority": "Must have",
"rubric - 3. instruction_dimension": "Instruction Following",
"rubric - 4. criterion": "Is the main character a clever young woman named Amina?",
"rubric - 4. instruction_type": "Objective",
"rubric - 4. instruction_necessity": "Explicit",
"rubric - 4. instruction_priority": "Must have",
"rubric - 4. instruction_dimension": "Instruction Following",
"rubric - 5. criterion": "Is Kofi, the husband, portrayed as an expert at jungle survival who repeatedly demonstrates comically disastrous attempts?",
"rubric - 5. instruction_type": "Subjective",
"rubric - 5. instruction_necessity": "Explicit",
"rubric - 5. instruction_priority": "Must have",
"rubric - 5. instruction_dimension": "Instruction Following",
"rubric - 6. criterion": "Does the humor primarily arise from the witty inner narration of Amina as she navigates Kofi\u2019s absurd attempts?",
"rubric - 6. instruction_type": "Subjective",
"rubric - 6. instruction_necessity": "Explicit",
"rubric - 6. instruction_priority": "Must have",
"rubric - 6. instruction_dimension": "Instruction Following",
"rubric - 7. criterion": "Is the core conflict a character-versus-character battle of wills between Amina and Kofi over her personal freedom to explore the forest solo after dark?",
"rubric - 7. instruction_type": "Objective",
"rubric - 7. instruction_necessity": "Explicit",
"rubric - 7. instruction_priority": "Must have",
"rubric - 7. instruction_dimension": "Instruction Following",
"rubric - 8. criterion": "Is the forest atmosphere enhanced with small but vivid details such as strange plants, distant animal calls, and unsettling quietude?",
"rubric - 8. instruction_type": "Subjective",
"rubric - 8. instruction_necessity": "Explicit",
"rubric - 8. instruction_priority": "Must have",
"rubric - 8. instruction_dimension": "Instruction Following",
"rubric - 9. criterion": "Does the story balance an eerie tone with sharp humor to create both creepy ambiance and comedic tension?",
"rubric - 9. instruction_type": "Subjective",
"rubric - 9. instruction_necessity": "Explicit",
"rubric - 9. instruction_priority": "Must have",
"rubric - 9. instruction_dimension": "Instruction Following",
"rubric - 10. criterion": "Does the story culminate in a surprising and funny resolution to the standoff between Amina\u2019s desire for freedom and Kofi\u2019s paranoia?",
"rubric - 10. instruction_type": "Subjective",
"rubric - 10. instruction_necessity": "Explicit",
"rubric - 10. instruction_priority": "Must have",
"rubric - 10. instruction_dimension": "Instruction Following",
"rubric - 11. criterion": "Is the story structured in no more than five paragraphs?",
"rubric - 11. instruction_type": "Objective",
"rubric - 11. instruction_necessity": "Explicit",
"rubric - 11. instruction_priority": "Must have",
"rubric - 11. instruction_dimension": "Format",
"rubric - 12. criterion": "Does the story incorporate specific humorous episodes like debating whether to tame an ominous rustling or negotiate with a glowing mushroom?",
"rubric - 12. instruction_type": "Subjective",
"rubric - 12. instruction_necessity": "Explicit",
"rubric - 12. instruction_priority": "Nice to have",
"rubric - 12. instruction_dimension": "Instruction Following",
"rubric - 13. criterion": "Is the tone consistently eerie throughout the story?",
"rubric - 13. instruction_type": "Subjective",
"rubric - 13. instruction_necessity": "Implicit",
"rubric - 13. instruction_priority": "Must have",
"rubric - 13. instruction_dimension": "Instruction Following",
"rubric - 14. criterion": "Is the relationship between Amina and Kofi clearly depicted as a married couple on an overnight camping trip?",
"rubric - 14. instruction_type": "Objective",
"rubric - 14. instruction_necessity": "Explicit",
"rubric - 14. instruction_priority": "Must have",
"rubric - 14. instruction_dimension": "Instruction Following",
"rubric - 15. criterion": "Does the story\u2019s language and content suit a teen target audience?",
"rubric - 15. instruction_type": "Subjective",
"rubric - 15. instruction_necessity": "Implicit",
"rubric - 15. instruction_priority": "Nice to have",
"rubric - 15. instruction_dimension": "Writing Quality"
},
{
"task_id": "2e5b8069-3d7c-4890-9452-28337dac5562",
"prompt_id": "gen_0008",
"prompt_text": "Compose a historical fiction story, exactly 403 words long, written in third person and aimed at adult readers. Set your narrative high on an isolated Antarctic mountain during the early 20th century, where an international scientific expedition is underway. The protagonist is a non-binary researcher named Kai, whose closest connection is their classmate and fellow scientist, Marlow. Society aboard the expedition is rigidly hierarchical and deeply traditional, with strict gender roles and expectations that suppress individual identity. Kai, whose identity challenges these conventions, quietly records memories and observations in a personal journal\u2014an act considered subversive and forbidden.\n\nYour story should center around Kai\u2019s internal struggle against the expedition\u2019s oppressive norms and the growing tension as their secret journal is discovered by the expedition\u2019s authorities. The broader conflict is character versus society: Kai must decide whether to conceal their true self to maintain their position or openly resist to preserve their memory and identity at the risk of exile.\n\nExplore memory not only as a personal record but as a form of resistance\u2014how Kai\u2019s recollections of their past education with Marlow and their shared dreams sustain hope amid isolation. Depict the harsh mountain setting as a reflection of both confinement and clarity, where the white silence forces characters to confront what is erased and what must be preserved.\n\nBalance the tone to remain hopeful despite adversity, emphasizing small acts of quiet courage and solidarity between Kai and Marlow. Structure the story to include at least three scenes: Kai writing in the journal, a confrontation with expedition leaders, and a final moment where Kai\u2019s choices ripple outward, suggesting change.\n\nFocus tightly on character emotions and societal pressures rather than historical exposition. Let the story end with an image or action that symbolizes memory\u2019s power to endure beyond imposed silence. Avoid flashbacks; instead, weave memories through Kai\u2019s present reflections.\n\nRemember: 403 words exactly, third-person narration, and a subtle yet evocative portrayal of memory and hope within a harsh, restrictive Antarctic mountain expedition.",
"genre": "historical_fiction",
"difficulty": "hard",
"pov": "third_person",
"setting": "mountain",
"target_age": "adults",
"geography": "Antarctica",
"gender": "non_binary",
"relationship": "classmate",
"conflict_type": "character_vs_society",
"theme": "memory",
"tone": "hopeful",
"word_constraint": 403,
"rubric - 1. criterion": "Is the story exactly 403 words in length?",
"rubric - 1. instruction_type": "Objective",
"rubric - 1. instruction_necessity": "Explicit",
"rubric - 1. instruction_priority": "Must have",
"rubric - 1. instruction_dimension": "Instruction Following",
"rubric - 2. criterion": "Is the story written in third person point of view?",
"rubric - 2. instruction_type": "Objective",
"rubric - 2. instruction_necessity": "Explicit",
"rubric - 2. instruction_priority": "Must have",
"rubric - 2. instruction_dimension": "Instruction Following",
"rubric - 3. criterion": "Is the setting an isolated Antarctic mountain during the early 20th century?",
"rubric - 3. instruction_type": "Objective",
"rubric - 3. instruction_necessity": "Explicit",
"rubric - 3. instruction_priority": "Must have",
"rubric - 3. instruction_dimension": "Instruction Following",
"rubric - 4. criterion": "Is the protagonist a non-binary researcher named Kai?",
"rubric - 4. instruction_type": "Objective",
"rubric - 4. instruction_necessity": "Explicit",
"rubric - 4. instruction_priority": "Must have",
"rubric - 4. instruction_dimension": "Instruction Following",
"rubric - 5. criterion": "Is Kai\u2019s closest connection depicted as their classmate and fellow scientist, Marlow?",
"rubric - 5. instruction_type": "Objective",
"rubric - 5. instruction_necessity": "Explicit",
"rubric - 5. instruction_priority": "Must have",
"rubric - 5. instruction_dimension": "Instruction Following",
"rubric - 6. criterion": "Does the story depict the expedition\u2019s society as rigidly hierarchical and deeply traditional with strict gender roles?",
"rubric - 6. instruction_type": "Subjective",
"rubric - 6. instruction_necessity": "Explicit",
"rubric - 6. instruction_priority": "Must have",
"rubric - 6. instruction_dimension": "Instruction Following",
"rubric - 7. criterion": "Does the narrative center on Kai\u2019s internal struggle against oppressive societal norms?",
"rubric - 7. instruction_type": "Subjective",
"rubric - 7. instruction_necessity": "Explicit",
"rubric - 7. instruction_priority": "Must have",
"rubric - 7. instruction_dimension": "Instruction Following",
"rubric - 8. criterion": "Is the conflict character versus society, focusing on Kai\u2019s choice to conceal or resist their identity?",
"rubric - 8. instruction_type": "Subjective",
"rubric - 8. instruction_necessity": "Explicit",
"rubric - 8. instruction_priority": "Must have",
"rubric - 8. instruction_dimension": "Instruction Following",
"rubric - 9. criterion": "Are memories presented as both a personal record and a form of resistance sustaining hope?",
"rubric - 9. instruction_type": "Subjective",
"rubric - 9. instruction_necessity": "Explicit",
"rubric - 9. instruction_priority": "Must have",
"rubric - 9. instruction_dimension": "Instruction Following",
"rubric - 10. criterion": "Does the story avoid flashbacks, instead weaving memories through Kai\u2019s present reflections?",
"rubric - 10. instruction_type": "Objective",
"rubric - 10. instruction_necessity": "Explicit",
"rubric - 10. instruction_priority": "Must have",
"rubric - 10. instruction_dimension": "Instruction Following",
"rubric - 11. criterion": "Are the story\u2019s tone and mood hopeful despite adversity, highlighting quiet courage and solidarity between Kai and Marlow?",
"rubric - 11. instruction_type": "Subjective",
"rubric - 11. instruction_necessity": "Explicit",
"rubric - 11. instruction_priority": "Must have",
"rubric - 11. instruction_dimension": "Instruction Following",
"rubric - 12. criterion": "Does the story include at least three scenes: Kai writing in the journal, a confrontation with expedition leaders, and a final moment where Kai\u2019s choices suggest change?",
"rubric - 12. instruction_type": "Objective",
"rubric - 12. instruction_necessity": "Explicit",
"rubric - 12. instruction_priority": "Must have",
"rubric - 12. instruction_dimension": "Instruction Following",
"rubric - 13. criterion": "Is the harsh Antarctic mountain setting depicted as a reflection of both confinement and clarity?",
"rubric - 13. instruction_type": "Subjective",
"rubric - 13. instruction_necessity": "Explicit",
"rubric - 13. instruction_priority": "Must have",
"rubric - 13. instruction_dimension": "Writing Quality",
"rubric - 14. criterion": "Does the story end with an image or action symbolizing memory\u2019s power to endure beyond imposed silence?",
"rubric - 14. instruction_type": "Subjective",
"rubric - 14. instruction_necessity": "Explicit",
"rubric - 14. instruction_priority": "Must have",
"rubric - 14. instruction_dimension": "Writing Quality",
"rubric - 15. criterion": "Does the story focus primarily on character emotions and societal pressures rather than historical exposition?",
"rubric - 15. instruction_type": "Subjective",
"rubric - 15. instruction_necessity": "Explicit",
"rubric - 15. instruction_priority": "Must have",
"rubric - 15. instruction_dimension": "Instruction Following"
},
{
"task_id": "c8eb90ba-81e9-47ec-941e-46f68785a2c2",
"prompt_id": "gen_0009",
"prompt_text": "Write a dystopian short story set on a small, isolated island in Asia where a man named Arun works alongside his coworker, Mei. Narrate the story in first person from Arun\u2019s perspective. The island, once a refuge from the collapsing mainland, is now slowly suffocating under relentless storms and rising tides. Arun\u2019s belief in the island\u2019s legend \u2014 that the land will heal if they remain patient \u2014 is challenged when a violent typhoon approaches. Focus on Arun\u2019s internal struggle as he debates whether to hold onto that hopeful belief or accept the island\u2019s inevitable decay. The story should capture a melancholic tone, reflecting not just the natural conflict but the psychological weight of clinging to faith amid despair. Use concrete sensory details to evoke the island\u2019s harsh environment, and explore the subtle dynamics between Arun and Mei as they face nature\u2019s fury together yet feel increasingly isolated in their convictions. Keep the story tight and impactful within exactly 180 words.",
"genre": "dystopian",
"difficulty": "easy",
"pov": "first_person",
"setting": "island",
"target_age": "parents",
"geography": "Asia",
"gender": "male",
"relationship": "coworker",
"conflict_type": "character_vs_nature",
"theme": "belief",
"tone": "melancholic",
"word_constraint": 180,
"rubric - 1. criterion": "Is the story exactly 180 words in length?",
"rubric - 1. instruction_type": "Objective",
"rubric - 1. instruction_necessity": "Explicit",
"rubric - 1. instruction_priority": "Must have",
"rubric - 1. instruction_dimension": "Instruction Following",
"rubric - 2. criterion": "Is the story narrated in the first person from Arun's perspective?",
"rubric - 2. instruction_type": "Objective",
"rubric - 2. instruction_necessity": "Explicit",
"rubric - 2. instruction_priority": "Must have",
"rubric - 2. instruction_dimension": "Instruction Following",
"rubric - 3. criterion": "Is the setting a small, isolated island in Asia?",
"rubric - 3. instruction_type": "Objective",
"rubric - 3. instruction_necessity": "Explicit",
"rubric - 3. instruction_priority": "Must have",
"rubric - 3. instruction_dimension": "Instruction Following",
"rubric - 4. criterion": "Does the story feature a male protagonist named Arun working alongside a coworker named Mei?",
"rubric - 4. instruction_type": "Objective",
"rubric - 4. instruction_necessity": "Explicit",
"rubric - 4. instruction_priority": "Must have",
"rubric - 4. instruction_dimension": "Instruction Following",
"rubric - 5. criterion": "Does the story reflect a dystopian genre atmosphere?",
"rubric - 5. instruction_type": "Subjective",
"rubric - 5. instruction_necessity": "Explicit",
"rubric - 5. instruction_priority": "Must have",
"rubric - 5. instruction_dimension": "Instruction Following",
"rubric - 6. criterion": "Is the central conflict character versus nature, focusing on the approaching violent typhoon?",
"rubric - 6. instruction_type": "Subjective",
"rubric - 6. instruction_necessity": "Explicit",
"rubric - 6. instruction_priority": "Must have",
"rubric - 6. instruction_dimension": "Instruction Following",
"rubric - 7. criterion": "Does the story explore Arun's internal struggle between hope in the island's legend and acceptance of its decay?",
"rubric - 7. instruction_type": "Subjective",
"rubric - 7. instruction_necessity": "Explicit",
"rubric - 7. instruction_priority": "Must have",
"rubric - 7. instruction_dimension": "Instruction Following",
"rubric - 8. criterion": "Is the tone of the story consistently melancholic throughout?",
"rubric - 8. instruction_type": "Subjective",
"rubric - 8. instruction_necessity": "Explicit",
"rubric - 8. instruction_priority": "Must have",
"rubric - 8. instruction_dimension": "Instruction Following",
"rubric - 9. criterion": "Are concrete sensory details used to evoke the island's harsh environment?",
"rubric - 9. instruction_type": "Subjective",
"rubric - 9. instruction_necessity": "Explicit",
"rubric - 9. instruction_priority": "Must have",
"rubric - 9. instruction_dimension": "Writing Quality",
"rubric - 10. criterion": "Does the story capture the subtle dynamics between Arun and Mei as they face nature's fury together?",
"rubric - 10. instruction_type": "Subjective",
"rubric - 10. instruction_necessity": "Explicit",
"rubric - 10. instruction_priority": "Must have",
"rubric - 10. instruction_dimension": "Writing Quality",
"rubric - 11. criterion": "Does the story convey the psychological weight of clinging to faith amid despair?",
"rubric - 11. instruction_type": "Subjective",
"rubric - 11. instruction_necessity": "Explicit",
"rubric - 11. instruction_priority": "Must have",
"rubric - 11. instruction_dimension": "Writing Quality",
"rubric - 12. criterion": "Is the story tight and impactful without unnecessary verbosity or filler?",
"rubric - 12. instruction_type": "Subjective",
"rubric - 12. instruction_necessity": "Explicit",
"rubric - 12. instruction_priority": "Must have",
"rubric - 12. instruction_dimension": "Verbosity",
"rubric - 13. criterion": "Does the story maintain coherence and clarity suitable for a parent audience?",
"rubric - 13. instruction_type": "Subjective",
"rubric - 13. instruction_necessity": "Implicit",
"rubric - 13. instruction_priority": "Nice to have",
"rubric - 13. instruction_dimension": "Writing Quality",
"rubric - 14. criterion": "Does the story avoid introducing characters or elements outside the prompt's description?",
"rubric - 14. instruction_type": "Objective",
"rubric - 14. instruction_necessity": "Implicit",
"rubric - 14. instruction_priority": "Nice to have",
"rubric - 14. instruction_dimension": "Correctness",
"rubric - 15. criterion": "Does the story maintain consistent and appropriate narrative voice and style for the dystopian genre?",
"rubric - 15. instruction_type": "Subjective",
"rubric - 15. instruction_necessity": "Implicit",
"rubric - 15. instruction_priority": "Nice to have",
"rubric - 15. instruction_dimension": "Writing Quality"
},
{
"task_id": "b2a02af3-967c-4cd7-9b76-c764b93cc47b",
"prompt_id": "gen_0010",
"prompt_text": "You are Elira, a blacksmith\u2019s apprentice in a medieval settlement hidden among the ancient eucalyptus groves of Australia\u2019s rugged coastline. Your closest friend, Moira, has vanished inside a strange automaton recently unearthed beneath the cliffs\u2014an intricate machine rumored to possess a soul. As you scramble through the chaos of ringing hammers and spinning gears, reality frays: the machine\u2019s shifting metal frames mirror your own fractured sense of self. Told in second person, write exactly 194 words capturing your desperate, frenetic attempts to untangle whether Moira is trapped inside or if you are becoming the machine yourself. Explore the struggle to reclaim identity amid mechanical control and magic\u2019s bleeding edges. Your story should pulse with tension and confusion as you wrestle with this character-versus-machine conflict, revealing how friendship, technology, and the wild land blur the boundary between human and artifact. Let the medieval Australian setting suffuse the narrative with something ancient yet eerily alive, while the emotional undercurrent speaks directly to couples who might recognize how identity can shift when faced with forces beyond comprehension.",
"genre": "magical_realism",
"difficulty": "medium",
"pov": "second_person",
"setting": "medieval",
"target_age": "couples",
"geography": "Australia",
"gender": "female",
"relationship": "friend",
"conflict_type": "character_vs_machine",
"theme": "identity",
"tone": "frenetic",
"word_constraint": 194,
"rubric - 1. criterion": "Is the story exactly 194 words long?",
"rubric - 1. instruction_type": "Objective",
"rubric - 1. instruction_necessity": "Explicit",
"rubric - 1. instruction_priority": "Must have",
"rubric - 1. instruction_dimension": "Instruction Following",
"rubric - 2. criterion": "Is the story written in second person POV (using 'you' statements)?",
"rubric - 2. instruction_type": "Objective",
"rubric - 2. instruction_necessity": "Explicit",
"rubric - 2. instruction_priority": "Must have",
"rubric - 2. instruction_dimension": "Instruction Following",
"rubric - 3. criterion": "Is the main character portrayed as Elira, a blacksmith\u2019s apprentice?",
"rubric - 3. instruction_type": "Objective",
"rubric - 3. instruction_necessity": "Explicit",
"rubric - 3. instruction_priority": "Must have",
"rubric - 3. instruction_dimension": "Instruction Following",
"rubric - 4. criterion": "Is the setting clearly established as a medieval settlement hidden among ancient eucalyptus groves on Australia\u2019s rugged coastline?",
"rubric - 4. instruction_type": "Objective",
"rubric - 4. instruction_necessity": "Explicit",
"rubric - 4. instruction_priority": "Must have",
"rubric - 4. instruction_dimension": "Instruction Following",
"rubric - 5. criterion": "Does the story include Moira, the main character\u2019s closest friend who has vanished inside the automaton?",
"rubric - 5. instruction_type": "Objective",
"rubric - 5. instruction_necessity": "Explicit",
"rubric - 5. instruction_priority": "Must have",
"rubric - 5. instruction_dimension": "Instruction Following",
"rubric - 6. criterion": "Does the narrative explore the character-versus-machine conflict, focusing on whether Moira is trapped inside or the narrator is becoming the machine?",
"rubric - 6. instruction_type": "Subjective",
"rubric - 6. instruction_necessity": "Explicit",
"rubric - 6. instruction_priority": "Must have",
"rubric - 6. instruction_dimension": "Instruction Following",
"rubric - 7. criterion": "Does the story convey a frenetic and desperate tone, pulsing with tension and confusion?",
"rubric - 7. instruction_type": "Subjective",
"rubric - 7. instruction_necessity": "Explicit",
"rubric - 7. instruction_priority": "Must have",
"rubric - 7. instruction_dimension": "Writing Quality",
"rubric - 8. criterion": "Is the theme of identity struggle amid mechanical control and magical elements clearly explored?",
"rubric - 8. instruction_type": "Subjective",
"rubric - 8. instruction_necessity": "Explicit",
"rubric - 8. instruction_priority": "Must have",
"rubric - 8. instruction_dimension": "Instruction Following",
"rubric - 9. criterion": "Does the narrative blur boundaries between human and artifact, highlighting friendship, technology, and the wild land?",
"rubric - 9. instruction_type": "Subjective",
"rubric - 9. instruction_necessity": "Explicit",
"rubric - 9. instruction_priority": "Must have",
"rubric - 9. instruction_dimension": "Instruction Following",
"rubric - 10. criterion": "Is the medieval Australian setting depicted as ancient yet eerily alive, suffusing the story with atmosphere?",
"rubric - 10. instruction_type": "Subjective",
"rubric - 10. instruction_necessity": "Explicit",
"rubric - 10. instruction_priority": "Must have",
"rubric - 10. instruction_dimension": "Writing Quality",
"rubric - 11. criterion": "Does the emotional undercurrent speak directly to couples, reflecting on how identity can shift when confronted with incomprehensible forces?",
"rubric - 11. instruction_type": "Subjective",
"rubric - 11. instruction_necessity": "Explicit",
"rubric - 11. instruction_priority": "Nice to have",
"rubric - 11. instruction_dimension": "Writing Quality",
"rubric - 12. criterion": "Is the story free of spelling and grammatical errors?",
"rubric - 12. instruction_type": "Objective",
"rubric - 12. instruction_necessity": "Implicit",
"rubric - 12. instruction_priority": "Must have",
"rubric - 12. instruction_dimension": "Correctness",
"rubric - 13. criterion": "Does the narrative maintain coherence and clarity despite the frenetic and confused tone?",
"rubric - 13. instruction_type": "Subjective",
"rubric - 13. instruction_necessity": "Implicit",