-
Notifications
You must be signed in to change notification settings - Fork 0
/
prompts.json
3721 lines (3721 loc) · 239 KB
/
prompts.json
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
[
{
"title": "Lesson 1 Basic Hebrew Structure",
"prompt": "Introduce the fundamental structure of Hebrew sentences, focusing on Subject-Verb-Object order. Use transliterated examples to show basic sentence construction."
},
{
"title": "Lesson 2 Basic Vocabulary and Phonetics",
"prompt": "Teach basic vocabulary including greetings and essential verbs. Focus on phonetics using transliteration, providing pronunciation guides and audio examples."
},
{
"title": "Lesson 3 Nouns and Gender",
"prompt": "Explain the concept of gender in Hebrew nouns and provide examples of masculine and feminine nouns. Use transliteration and include rules for gender-based adjective agreement."
},
{
"title": "Lesson 4 Numbers and Counting",
"prompt": "Teach numbers from 1 to 100, focusing on the unique forms of Hebrew numbers for masculine and feminine nouns. Include practical exercises like counting objects."
},
{
"title": "Lesson 5 Everyday Phrases",
"prompt": "Introduce common phrases used in daily conversations, such as polite requests and responses. Use transliteration and contextual examples."
},
{
"title": "Lesson 6 The Verb System - Present Tense",
"prompt": "Introduce the Hebrew present tense, focusing on common verbs and their conjugations. Provide transliterated examples and usage contexts."
},
{
"title": "Lesson 7 Asking Questions",
"prompt": "Teach common question forms in Hebrew, including who, what, where, when, and why. Use transliteration and provide examples of how to form questions."
},
{
"title": "Lesson 8 Directions and Locations",
"prompt": "Provide vocabulary and phrases for directions and locations. Use transliteration and contextual dialogues, such as asking for and giving directions."
},
{
"title": "Lesson 9 Food and Dining",
"prompt": "Teach vocabulary related to food items, ordering in a restaurant, and dietary preferences. Include dialogues for ordering food and expressing likes/dislikes."
},
{
"title": "Lesson 10 Family and Relationships",
"prompt": "Introduce vocabulary related to family members and relationships. Discuss cultural nuances and provide phrases to talk about family relationships."
},
{
"title": "Lesson 11 Describing People and Objects",
"prompt": "Teach adjectives and their usage in Hebrew for describing people and objects. Focus on gender and number agreement, using transliterated examples."
},
{
"title": "Lesson 12 The Verb System - Past Tense",
"prompt": "Introduce the past tense in Hebrew, focusing on conjugation and usage. Provide transliterated examples of verbs in sentences to show time concepts."
},
{
"title": "Lesson 13 The Verb System - Future Tense",
"prompt": "Teach the future tense, explaining the conjugation patterns and providing examples. Use transliteration for all examples and exercises."
},
{
"title": "Lesson 14 Shopping and Transactions",
"prompt": "Provide vocabulary and phrases for shopping and conducting transactions. Include terms for bargaining, payment methods, and common store items."
},
{
"title": "Lesson 15 Health and Medical",
"prompt": "Introduce vocabulary related to health, medical situations, and visiting the doctor. Provide role-play scenarios to practice medical discussions."
},
{
"title": "Lesson 16 Travel and Tourism",
"prompt": "Teach phrases and vocabulary useful for travel and tourism. Discuss cultural tips for visitors to Israel and provide dialogues for typical travel interactions."
},
{
"title": "Lesson 17 Business and Professional Hebrew",
"prompt": "Introduce vocabulary and phrases used in business and professional settings. Focus on formal speech and writing, including email and meeting vocabulary."
},
{
"title": "Lesson 18 Education and School",
"prompt": "Discuss vocabulary related to education and school life. Include phrases for classroom interaction and discuss the educational system in Israel."
},
{
"title": "Lesson 19 Weather and Environment",
"prompt": "Teach vocabulary related to weather and environmental conditions. Include phrases to discuss the weather and environmental issues in Israel."
},
{
"title": "Lesson 20 Technology and Communication",
"prompt": "Provide vocabulary for modern technology and communication tools. Include terms for computers, internet, social media, and mobile technology."
},
{
"title": "Lesson 21 Sports and Leisure",
"prompt": "Introduce terms and phrases related to sports and leisure activities. Discuss popular sports in Israel and phrases for discussing sports events."
},
{
"title": "Lesson 22 Celebrations and Festivities",
"prompt": "Teach vocabulary for holidays and celebrations, focusing on Israeli and Jewish holidays. Discuss customs, traditions, and related vocabulary."
},
{
"title": "Lesson 23 Advanced Adjectives and Descriptions",
"prompt": "Deepen knowledge of adjectives, focusing on advanced descriptions and their applications. Use exercises to practice adjective-noun agreements in complex sentences."
},
{
"title": "Lesson 24 Political and Legal Terms",
"prompt": "Introduce vocabulary related to politics and law. Discuss the Israeli political system and common legal terms, providing context and examples."
},
{
"title": "Lesson 25 Historical and Cultural Context",
"prompt": "Provide an overview of significant historical events in Israel and their impact on the language and culture. Discuss key figures and terms related to Israeli history."
},
{
"title": "Lesson 26 Media and News",
"prompt": "Teach vocabulary and phrases to understand and discuss media and news. Include examples from Israeli news sources and discuss the format of news reporting in Israel."
},
{
"title": "Lesson 27 Idioms and Expressions",
"prompt": "Introduce common Hebrew idioms and expressions, explaining their meanings and origins. Provide examples and encourage usage in sentences."
},
{
"title": "Lesson 28 Handling Conflict and Disagreement",
"prompt": "Discuss phrases and vocabulary for handling conflicts and disagreements in Hebrew. Include cultural tips on conflict resolution in Israel."
},
{
"title": "Lesson 29 Review and Reinforcement",
"prompt": "Conduct a comprehensive review of all the topics covered so far, using quizzes and interactive exercises to reinforce learning and retention."
},
{
"title": "Lesson 30 Practical Conversations and Scenarios",
"prompt": "Focus on practical conversational skills by engaging in various scenarios. Include dialogues for social interactions, professional meetings, and casual conversations."
},
{
"title": "Lesson 31 Complex Sentences",
"prompt": "Introduce the structure of complex sentences in Hebrew, focusing on subordination and coordination. Provide examples and exercises to practice linking sentences using conjunctions."
},
{
"title": "Lesson 32 Describing Places",
"prompt": "Teach vocabulary and phrases used to describe places, such as cities, neighborhoods, and homes. Discuss adjectives and prepositions that help in detailed descriptions. Include a practice exercise describing a famous Israeli location."
},
{
"title": "Lesson 33 Discussing Hobbies",
"prompt": "Introduce vocabulary related to hobbies and free time activities. Engage students in a discussion about their hobbies and teach them how to ask and answer questions about hobbies in Hebrew."
},
{
"title": "Lesson 34 Restaurant and Food Ordering",
"prompt": "Deepen knowledge on food vocabulary and introduce phrases useful for ordering food in a restaurant. Role-play a dining experience, focusing on ordering, asking about ingredients, and paying the bill."
},
{
"title": "Lesson 35 Handling Emergencies",
"prompt": "Teach phrases and vocabulary necessary for handling emergency situations in Hebrew. Include dialogues for medical emergencies, police assistance, and lost items."
},
{
"title": "Lesson 36 Travel and Navigation",
"prompt": "Discuss vocabulary and phrases useful for travel and navigation. Teach how to ask for directions, buy travel tickets, and check into hotels. Provide a scenario practice at an airport or train station."
},
{
"title": "Lesson 37 Employment and Workplace",
"prompt": "Introduce vocabulary related to the workplace and employment. Discuss how to write a CV in Hebrew, how to conduct a job interview, and common phrases used in the workplace."
},
{
"title": "Lesson 38 Formal vs. Informal Speech",
"prompt": "Explain the differences between formal and informal speech in Hebrew. Provide examples of when to use each and include exercises converting informal sentences to formal ones and vice versa."
},
{
"title": "Lesson 39 Hebrew Slang and Informal Expressions",
"prompt": "Introduce students to common slang expressions and informal speech used in everyday Hebrew conversations. Discuss the appropriate contexts to use them."
},
{
"title": "Lesson 40 Israeli Culture and Etiquette",
"prompt": "Discuss aspects of Israeli culture and etiquette that are essential for understanding the language context. Cover topics like social gatherings, public holidays, and business etiquette."
},
{
"title": "Lesson 41 Sports and Fitness",
"prompt": "Teach vocabulary related to sports and fitness. Include phrases used at the gym, sports games, and discussions about physical health."
},
{
"title": "Lesson 42 Making Appointments",
"prompt": "Discuss how to make various appointments in Hebrew, such as doctor's visits, salon appointments, and business meetings. Include vocabulary for scheduling, cancelling, and rescheduling."
},
{
"title": "Lesson 43 Renting and Real Estate",
"prompt": "Provide vocabulary and phrases related to renting or buying property. Discuss terms used in housing advertisements, negotiating rent, and signing a lease."
},
{
"title": "Lesson 44 Public Transportation",
"prompt": "Expand on transportation vocabulary and discuss different aspects of using public transportation in Israel. Include buying tickets, types of transportation, and etiquette on public transit."
},
{
"title": "Lesson 45 Weather Patterns and Climate",
"prompt": "Discuss the different weather patterns and climate zones in Israel. Teach vocabulary related to weather phenomena and seasons, and practice discussing weather forecasts."
},
{
"title": "Lesson 46 Discussing News and Current Events",
"prompt": "Teach vocabulary necessary for understanding and discussing news and current events. Include phrases for expressing opinions, agreement, and disagreement."
},
{
"title": "Lesson 47 Art and Culture",
"prompt": "Introduce vocabulary related to art and cultural activities. Discuss attending concerts, museums, and theater performances in Hebrew."
},
{
"title": "Lesson 48 Holidays and Religious Practices",
"prompt": "Deepen knowledge on Jewish and Israeli holidays and religious practices. Discuss the vocabulary related to celebrations, rituals, and the foods associated with them."
},
{
"title": "Lesson 49 Negotiating and Persuading",
"prompt": "Teach phrases and strategies for negotiating and persuading in Hebrew. Include role-play scenarios such as bargaining in a market or negotiating a business deal."
},
{
"title": "Lesson 50 Health and Wellness",
"prompt": "Discuss vocabulary related to health and wellness. Include phrases for discussing symptoms with a doctor, talking about mental health, and expressing feelings of well-being."
},
{
"title": "Lesson 51 Environmental Issues",
"prompt": "Teach vocabulary and phrases related to environmental issues. Discuss topics like recycling, conservation, and sustainability in Israel."
},
{
"title": "Lesson 52 Reviewing Grammar Concepts",
"prompt": "Provide a comprehensive review of major grammar concepts covered in previous lessons. Include exercises to reinforce verb tenses, prepositions, and adjective-noun agreement."
},
{
"title": "Lesson 53 Advanced Reading Comprehension",
"prompt": "Introduce more complex texts for reading comprehension. Include news articles, short stories, and essays to practice advanced vocabulary and grammar."
},
{
"title": "Lesson 54 Writing in Hebrew",
"prompt": "Teach basic composition skills for writing in Hebrew. Discuss formal and informal writing styles and provide exercises for writing emails, letters, and short essays."
},
{
"title": "Lesson 55 Listening Skills",
"prompt": "Enhance listening skills by introducing audio materials spoken in Hebrew. Include dialogues, news clips, and songs to practice comprehension and dictation."
},
{
"title": "Lesson 56 Advanced Conversation Practice",
"prompt": "Focus on improving conversational skills through advanced dialogue exercises. Include scenarios for debates, presentations, and storytelling."
},
{
"title": "Lesson 57 Technology in Israel",
"prompt": "Discuss the role of technology in modern Israel. Teach vocabulary related to computers, the internet, and new technological trends."
},
{
"title": "Lesson 58 Hebrew Literature",
"prompt": "Introduce classic and modern Hebrew literature. Discuss authors, their works, and the historical and cultural context of their literature."
},
{
"title": "Lesson 59 Hebrew in Business",
"prompt": "Teach vocabulary and phrases used in business settings. Discuss how to conduct meetings, presentations, and negotiations in Hebrew."
},
{
"title": "Lesson 60 Final Review and Practical Applications",
"prompt": "Conduct a final review of all the topics covered. Encourage students to engage in practical applications such as participating in Hebrew-speaking events or joining language clubs."
},
{
"title": "Lesson 31 Introduction to Basic Hebrew Vocabulary",
"prompt": "Create a dataset of basic Hebrew vocabulary including nouns, verbs, and adjectives. Ensure each word is accompanied by its English translation, phonetic transcription, and an example sentence in both Hebrew and English."
},
{
"title": "Lesson 32 Hebrew Pronouns and Their Usage",
"prompt": "Compile a list of Hebrew pronouns, including personal, possessive, and demonstrative pronouns. Provide examples of their usage in sentences, highlighting different cases and genders."
},
{
"title": "Lesson 33 Everyday Hebrew Phrases",
"prompt": "Gather phrases commonly used in everyday Hebrew conversations. Include greetings, common questions, and polite expressions, providing transliteration and cultural notes on when and how to use them."
},
{
"title": "Lesson 34 Numbers and Counting in Hebrew",
"prompt": "Develop a dataset focusing on numbers and counting in Hebrew. Include cardinal and ordinal numbers, with examples showing their use in shopping, telling time, and discussing quantities."
},
{
"title": "Lesson 35 Hebrew Family and Relationship Vocabulary",
"prompt": "Assemble vocabulary related to family and relationships. Include terms for family members, marital status, and relationship dynamics, accompanied by example dialogues."
},
{
"title": "Lesson 36 Describing Weather in Hebrew",
"prompt": "Create entries describing various weather conditions in Hebrew. Include vocabulary for different types of weather, seasons, and temperature, along with phrases typically used to discuss the weather."
},
{
"title": "Lesson 37 Hebrew Verbs - Present Tense",
"prompt": "Provide a comprehensive list of common Hebrew verbs in the present tense. Include their root form, conjugation, and an example sentence for each verb, highlighting its use in everyday language."
},
{
"title": "Lesson 38 Common Adjectives and Their Agreement",
"prompt": "Collect adjectives commonly used in Hebrew, showing how they agree with nouns in gender, number, and definiteness. Provide examples to illustrate these agreements in sentences."
},
{
"title": "Lesson 39 Prepositions and Their Usage",
"prompt": "Document the use of prepositions in Hebrew. Include examples of common prepositions, their usage in sentences, and notes on any special cases or exceptions."
},
{
"title": "Lesson 40 Hebrew Food and Dining Vocabulary",
"prompt": "Create a dataset centered around food and dining. Include terms for various foods, dishes, and utensils, as well as phrases used in ordering and eating out."
},
{
"title": "Lesson 41 Directions and Locations",
"prompt": "Compile vocabulary and phrases related to directions and locations. Provide examples of how to ask for and give directions, including terms for locations like 'above', 'below', 'near', and 'far'."
},
{
"title": "Lesson 42 Hebrew Clothing and Fashion",
"prompt": "Assemble a list of vocabulary related to clothing and fashion. Include terms for types of clothing, accessories, and verbs related to getting dressed or shopping for clothes."
},
{
"title": "Lesson 43 Hebrew in the Workplace",
"prompt": "Develop a dataset of vocabulary and phrases used in a professional setting. Include terms for professions, office equipment, and common business expressions."
},
{
"title": "Lesson 44 Hebrew Travel Vocabulary",
"prompt": "Gather terms and phrases related to travel, including types of transportation, tickets, and phrases useful for navigating airports, stations, and new cities."
},
{
"title": "Lesson 45 Educational Vocabulary in Hebrew",
"prompt": "Create a list of terms related to education, including types of schools, areas of study, and classroom equipment. Provide examples of how these terms are used in context."
},
{
"title": "Lesson 46 Health and Medical Hebrew Vocabulary",
"prompt": "Compile terms and phrases used in health and medical contexts. Include names of ailments, parts of the body, and phrases commonly used in medical settings."
},
{
"title": "Lesson 47 Hebrew Sports and Recreation",
"prompt": "Develop vocabulary lists related to sports and recreation. Include terms for popular sports, equipment, and phrases used during games and physical activities."
},
{
"title": "Lesson 48 Hebrew Verbs - Past Tense",
"prompt": "Provide a detailed list of Hebrew verbs in the past tense. Include their root form and conjugation, and provide example sentences to illustrate their use."
},
{
"title": "Lesson 49 Hebrew Verbs - Future Tense",
"prompt": "Assemble a list of Hebrew verbs in the future tense. Detail their conjugation patterns and use in sentences to help illustrate future actions or plans."
},
{
"title": "Lesson 50 Holidays and Festivities in Hebrew",
"prompt": "Create entries related to Israeli and Jewish holidays. Include vocabulary for holiday names, key phrases related to celebrations, and typical greetings exchanged."
},
{
"title": "Lesson 51 Hebrew Idioms and Cultural Expressions",
"prompt": "Gather a list of idioms and cultural expressions unique to Hebrew. Provide translations, explanations, and context for when and how these expressions are used."
},
{
"title": "Lesson 52 Advanced Hebrew Vocabulary Building",
"prompt": "Focus on expanding vocabulary in specific areas such as technology, politics, and arts. Provide terms along with their usage in context to aid understanding."
},
{
"title": "Lesson 53 Conversational Hebrew",
"prompt": "Compile dialogues and conversational phrases that illustrate common conversational patterns in Hebrew. Include greetings, small talk, and typical conversational exchanges."
},
{
"title": "Lesson 54 Writing and Grammar Practice",
"prompt": "Develop exercises focused on writing and grammar. Include tasks for sentence construction, correct use of tenses, and verb conjugations."
},
{
"title": "Lesson 55 Listening Comprehension Exercises",
"prompt": "Provide audio recordings of native Hebrew speakers with corresponding transcripts and comprehension questions to improve listening skills."
},
{
"title": "Lesson 56 Hebrew for Special Situations",
"prompt": "Create scenarios and vocabulary for special situations such as weddings, funerals, and religious ceremonies, explaining the language and customs involved."
},
{
"title": "Lesson 57 Technical and Scientific Hebrew",
"prompt": "Assemble vocabulary lists and phrases used in technical and scientific fields. Include examples of how these terms are used in professional and academic writings."
},
{
"title": "Lesson 58 Nature and Environment",
"prompt": "Develop a dataset of terms related to nature and the environment. Include names of animals, plants, and phrases used to discuss weather and geographical features."
},
{
"title": "Lesson 59 Hebrew Poetry and Literature",
"prompt": "Compile excerpts from Hebrew poetry and literature. Provide vocabulary explanations, themes, and cultural significance of selected works."
},
{
"title": "Lesson 60 Review and Practice Tests",
"prompt": "Create comprehensive review materials and practice tests to consolidate learning. Include exercises covering vocabulary, grammar, and reading comprehension."
}, {
"title": "Lesson 61 Formal and Informal Speech",
"prompt": "Create examples that showcase the differences between formal and informal Hebrew speech. Include dialogues and explanations on where and when each form is appropriate."
},
{
"title": "Lesson 62 Hebrew Slang and Colloquialisms",
"prompt": "Collect examples of Hebrew slang and colloquial expressions. Provide contexts and translations, explaining the nuances of each expression and its usage in everyday speech."
},
{
"title": "Lesson 63 Compound Words in Hebrew",
"prompt": "Develop a list of compound words in Hebrew, showing how smaller words combine to form new meanings. Provide usage examples in sentences to illustrate context."
},
{
"title": "Lesson 64 Expressing Emotions and Feelings",
"prompt": "Assemble phrases and vocabulary used to express emotions and feelings in Hebrew. Include varying intensities of emotion and expressions suitable for different social contexts."
},
{
"title": "Lesson 65 Israeli Music and Lyrics",
"prompt": "Create a dataset from popular Israeli songs, providing lyrics and translations. Discuss the cultural themes and vocabulary found in the music."
},
{
"title": "Lesson 66 Hebrew Proverbs and Sayings",
"prompt": "Compile a list of traditional Hebrew proverbs and sayings. Provide explanations, translations, and use cases for each, highlighting the wisdom and cultural values they convey."
},
{
"title": "Lesson 67 Navigating Public Services",
"prompt": "Develop scenarios and dialogues for interacting with public services in Israel, such as post offices, government offices, and healthcare facilities. Include relevant vocabulary and formal phrases."
},
{
"title": "Lesson 68 Academic Hebrew",
"prompt": "Gather vocabulary and phrases used in academic settings, including higher education and scholarly discussions. Provide examples of academic discourse and typical expressions."
},
{
"title": "Lesson 69 Legal Hebrew Vocabulary",
"prompt": "Create a list of legal terms and phrases used in the Israeli legal system. Include examples of their usage in contracts, laws, and court proceedings."
},
{
"title": "Lesson 70 Hebrew in Technology and Innovation",
"prompt": "Compile terms and phrases related to technology and innovation, particularly those relevant to Israel’s tech scene. Discuss the Hebrew vocabulary for startups, tech products, and internet services."
},
{
"title": "Lesson 71Describing Art and Culture",
"prompt": "Provide vocabulary and phrases for discussing art and cultural artifacts. Include examples from museums, art galleries, and cultural reviews."
},
{
"title": "Lesson 72 Military and Defense Terminology",
"prompt": "Assemble a dataset of terminology related to the military and defense, a significant aspect of Israeli society. Include rank titles, common phrases, and equipment used."
},
{
"title": "Lesson 73 Conversational Turn-Taking",
"prompt": "Develop examples illustrating conversational turn-taking in Hebrew. Include phrases that signal agreement, interruption, clarification, and conclusion."
},
{
"title": "Lesson 74 Hebrew for Event Planning",
"prompt": "Create vocabulary and scenarios for planning events in Hebrew, from weddings to conferences. Discuss terms for logistics, invitations, and scheduling."
},
{
"title": "Lesson 75 Environmental Conservation",
"prompt": "Develop vocabulary and dialogues about environmental conservation in Hebrew. Include terms for recycling, sustainability, and climate change discussions in Israel."
},
{
"title": "Lesson 76 Folklore and Mythology",
"prompt": "Compile stories, vocabulary, and phrases from Israeli folklore and mythology. Provide background information and moral or cultural significance of each story."
},
{
"title": "Lesson 77 Hebrew for Tourism",
"prompt": "Create dialogues and vocabulary lists useful for tourists in Israel. Include interactions at tourist sites, restaurants, and emergency situations."
},
{
"title": "Lesson 78 Real Estate and Housing",
"prompt": "Develop a dataset covering terms and phrases used in real estate and housing in Israel. Include dialogues for renting or buying property, discussing features, and negotiating prices."
},
{
"title": "Lesson 79 Media Literacy",
"prompt": "Provide vocabulary and scenarios for understanding and discussing media in Hebrew, including newspapers, television, and online content. Discuss critical viewing and reading skills."
},
{
"title": "Lesson 80 Cooking and Recipes",
"prompt": "Compile terms and phrases used in cooking, along with popular Israeli recipes. Provide step-by-step instructions and culinary vocabulary."
},
{
"title": "Lesson 81 Childcare and Education",
"prompt": "Develop vocabulary and scenarios related to childcare and education. Discuss terms used in schools, daycare, and parenting in Israel."
},
{
"title": "Lesson 82 Business Negotiations",
"prompt": "Create dialogues and vocabulary for conducting business negotiations in Hebrew. Include terms for making offers, discussing terms, and closing deals."
},
{
"title": "Lesson 83 Advanced Scientific Vocabulary",
"prompt": "Assemble a list of advanced scientific terms used in Hebrew. Provide context and examples from research, technology, and medicine."
},
{
"title": "Lesson 84 Exploring Cities and Geography",
"prompt": "Provide vocabulary for discussing Israeli cities, geographical features, and navigating urban and rural landscapes. Include cultural and historical significance."
},
{
"title": "Lesson 85 Banking and Finance",
"prompt": "Develop terms and phrases for banking and financial transactions in Hebrew. Include dialogues for opening accounts, discussing loans, and investment strategies."
},
{
"title": "Lesson 86 Politics and Government",
"prompt": "Create a dataset covering vocabulary and phrases related to Israeli politics and government. Discuss the political system, elections, and common governmental terms."
},
{
"title": "Lesson 87 Social Media and Communication",
"prompt": "Compile terms and phrases used in social media and digital communication. Include dialogues for discussing social media posts, internet safety, and digital etiquette in Hebrew."
},
{
"title": "Lesson 88 Health and Fitness",
"prompt": "Develop vocabulary related to health and fitness, including gym terms, workout routines, and discussions about diet and wellness."
},
{
"title": "Lesson 89 Psychology and Emotions",
"prompt": "Provide terms and phrases related to psychology and emotional expressions. Discuss how to talk about mental health, feelings, and psychological support in Hebrew."
},
{
"title": "Lesson 90 Advanced Idiomatic Expressions",
"prompt": "Gather a collection of advanced idiomatic expressions used in Hebrew. Provide explanations, examples, and appropriate contexts for their use."
},
{
"title": "Lesson 91 Narratives and Storytelling",
"prompt": "Create examples of narratives and storytelling in Hebrew. Include folk tales, personal anecdotes, and modern stories, highlighting narrative structure and storytelling phrases."
},
{
"title": "Lesson 92 Ceremonies and Traditions",
"prompt": "Compile vocabulary and phrases related to Israeli ceremonies and traditions. Discuss religious, national, and family ceremonies, including appropriate greetings and customs."
},
{
"title": "Lesson 93 Advanced Conversational Hebrew",
"prompt": "Develop dialogues that showcase advanced conversational Hebrew. Focus on fluency and the use of complex sentence structures in social, academic, and professional contexts."
},
{
"title": "Lesson 94 Writing Skills in Hebrew",
"prompt": "Provide exercises and tips for improving writing skills in Hebrew. Include tasks for writing letters, essays, and reports, discussing format, style, and grammar."
},
{
"title": "Lesson 95 Humor and Jokes",
"prompt": "Gather examples of humor and jokes in Hebrew. Explain cultural references, puns, and wordplay, and discuss how humor varies across different segments of Israeli society."
},
{
"title": "Lesson 96 Historical Texts and Interpretation",
"prompt": "Create a dataset of historical Hebrew texts with modern translations. Discuss the importance of these texts in cultural and historical context and their interpretations."
},
{
"title": "Lesson 97 Technical Manuals and Instructions",
"prompt": "Compile Hebrew vocabulary and phrases found in technical manuals and instructions. Provide examples of common instructions for appliances, electronics, and machinery."
},
{
"title": "Lesson 98 Advanced Medical Hebrew",
"prompt": "Develop a list of advanced medical terms used in Hebrew. Include dialogues between doctors and patients, and discuss terms for symptoms, diagnoses, and treatments."
},
{
"title": "Lesson 99 Agricultural and Ecological Terms",
"prompt": "Assemble terms related to agriculture and ecology in Hebrew. Discuss vocabulary for farming, sustainable practices, and ecological phenomena specific to Israel."
},
{
"title": "Lesson 100 Review and Advanced Practice",
"prompt": "Provide comprehensive review materials covering all the topics introduced. Include advanced practice exercises to reinforce vocabulary, grammar, and conversational skills."
},
{
"title": "Lesson 101 Understanding and Responding to Basic Queries",
"prompt": "Develop a dataset featuring basic questions in Hebrew such as 'What is your name?' or 'How are you?'. Provide instructions on recognizing these questions and structuring appropriate responses."
},
{
"title": "Lesson 102 Following Simple Commands",
"prompt": "Create examples of simple commands in Hebrew, such as 'Please sit down' or 'Open the book'. Include instructions on how to identify action verbs and respond to commands either verbally or through actions."
},
{
"title": "Lesson 103 Interpreting Instructional Steps",
"prompt": "Compile a list of step-by-step instructions, like recipes or assembly instructions. Provide guidance on how to sequence actions and confirm understanding of each step in Hebrew."
},
{
"title": "Lesson 104 Answering Complex Questions",
"prompt": "Develop complex questions in Hebrew that require more than a yes or no answer, such as 'What do you think about this issue?' Include instructions on analyzing the question for key information and forming a detailed response."
},
{
"title": "Lesson 105 Responding to Opinions and Statements",
"prompt": "Create scenarios where opinions or statements are expressed, such as in a debate or discussion. Teach the model how to recognize opinion indicators and respond with agreement, disagreement, or neutral stances."
},
{
"title": "Lesson 106 Interpreting Hypothetical Scenarios",
"prompt": "Include examples of hypothetical scenarios and questions, such as 'What would you do if...?' Provide instructions on recognizing hypotheticals and crafting thoughtful, imaginative responses."
},
{
"title": "Lesson 107 Handling Ambiguous Queries",
"prompt": "Provide examples of ambiguous or unclear questions in Hebrew and teach strategies for seeking clarification or providing a best-guess response based on the context."
},
{
"title": "Lesson 108 Processing and Fulfilling Requests",
"prompt": "Compile examples of requests for information or action, like 'Can you tell me where this is?' or 'Could you help me with this?'. Teach how to process these requests and outline steps to fulfill them."
},
{
"title": "Lesson 109 Identifying Urgency and Prioritizing Responses",
"prompt": "Include examples where urgency or priority is implicit, and teach the model to identify cues that indicate a need for an immediate response or action."
},
{
"title": "Lesson 110 Responding to Invitations and Offers",
"prompt": "Create examples of invitations and offers in Hebrew, such as 'Would you like to join us?' or 'Do you want some?'. Provide guidance on polite responses and expressing acceptance or refusal."
},
{
"title": "Lesson 111 Confirming and Denying in Hebrew",
"prompt": "Provide phrases and contexts for confirming or denying information clearly in Hebrew. Include nuances like partial agreement or conditions."
},
{
"title": "Lesson 112 Navigating Follow-up Questions",
"prompt": "Teach how to handle follow-up questions that expand on initial inquiries, providing strategies for maintaining context and continuity in responses."
},
{
"title": "Lesson 113 Understanding and Explaining Processes",
"prompt": "Include descriptions of various processes, from natural phenomena to bureaucratic procedures. Teach how to explain these processes logically and coherently."
},
{
"title": "Lesson 114 Interacting in Social Situations",
"prompt": "Develop scenarios that mimic social interactions, teaching the model to recognize social cues and respond appropriately in Hebrew to invitations, greetings, and casual conversation."
},
{
"title": "Lesson 115 Providing Descriptions and Details",
"prompt": "Create tasks that require providing detailed descriptions, such as describing a place, event, or person. Teach the model how to structure detailed and coherent descriptions."
},
{
"title": "Lesson 116 Synthesizing Information from Multiple Sources",
"prompt": "Include exercises where the model must synthesize information from multiple inputs or texts, teaching it to consolidate information into a unified response."
},
{
"title": "Lesson 117 Handling Conditional Language",
"prompt": "Provide examples and instructions on understanding and using conditional phrases, like 'If you go..., then please...'. Teach how to recognize and respond to conditions."
},
{
"title": "Lesson 118 Interpreting Figurative Language",
"prompt": "Include examples of figurative language and idioms in Hebrew. Provide strategies for interpreting these expressions and using them appropriately in response."
},
{
"title": "Lesson 119 Constructing Arguments and Explanations",
"prompt": "Teach how to construct arguments or explanations in response to questions or discussions in Hebrew, focusing on logic, sequence, and supporting details."
},
{
"title": "Lesson 120 Managing Disagreements and Conflicts",
"prompt": "Develop scenarios involving disagreements or conflicts, teaching the model strategies for diplomatic responses and conflict resolution in Hebrew."
},
{
"title": "Lesson 121 Analyzing News Articles",
"prompt": "Create tasks involving reading Hebrew news articles and summarizing their main points. Teach the model to identify key information and respond to questions about the articles."
},
{
"title": "Lesson 122 Understanding and Using Technical Jargon",
"prompt": "Develop a dataset with technical jargon from fields like medicine, engineering, and IT. Include definitions and use cases, teaching the model how to understand and appropriately use these terms in context."
},
{
"title": "Lesson 123 Role-playing Customer Service Interactions",
"prompt": "Create role-play scenarios for customer service, including handling complaints, providing product information, and guiding users through troubleshooting steps in Hebrew."
},
{
"title": "Lesson 124 Discussing Historical Events",
"prompt": "Provide summaries of significant historical events in Israel’s history. Teach the model to discuss these events and their impacts in a coherent and informed manner."
},
{
"title": "Lesson 125 Explaining Scientific Concepts",
"prompt": "Include tasks that require explaining complex scientific concepts and discoveries in Hebrew. Focus on clarity, accuracy, and the ability to simplify explanations for non-experts."
},
{
"title": "Lesson 126 Interpreting Literature and Poetry",
"prompt": "Develop exercises involving the interpretation of Hebrew literature and poetry. Teach the model to analyze themes, motifs, and the use of language, providing insightful discussions."
},
{
"title": "Lesson 127 Engaging in Political Debates",
"prompt": "Create scenarios for engaging in debates on various political topics relevant to Israeli society. Include vocabulary and phrases for constructing arguments, expressing opinions, and responding to counterarguments."
},
{
"title": "Lesson 128 Writing Reviews and Recommendations",
"prompt": "Teach the model to write reviews for products, services, or cultural events in Hebrew. Focus on expressing opinions, detailing experiences, and making recommendations."
},
{
"title": "Lesson 129 Discussing Ethics and Philosophy",
"prompt": "Provide content on ethical dilemmas and philosophical questions. Teach the model to discuss these topics in Hebrew, showing how to form and express complex thoughts."
},
{
"title": "Lesson 130 Conducting Interviews",
"prompt": "Develop tasks that simulate conducting interviews in Hebrew. Include different types of interviews, such as job interviews, journalistic inquiries, and research interviews."
},
{
"title": "Lesson 131 Guiding Tours in Hebrew",
"prompt": "Create scenarios where the model acts as a tour guide. Teach it vocabulary and phrases for describing historical sites, cultural practices, and natural landmarks in Israel."
},
{
"title": "Lesson 132 Explaining Rules and Regulations",
"prompt": "Develop content that requires explaining rules, laws, and regulations in Hebrew. Focus on clarity and precision in language use."
},
{
"title": "Lesson 133 Crafting Narratives and Stories",
"prompt": "Teach the model to craft engaging narratives and stories in Hebrew. Focus on elements of storytelling like character development, setting, plot, and climax."
},
{
"title": "Lesson 134 Creating Educational Content",
"prompt": "Develop educational materials in Hebrew. Include lessons, quizzes, and explanations on a variety of subjects, tailored to different age groups and learning levels."
},
{
"title": "Lesson 135 Negotiating in Business Settings",
"prompt": "Create scenarios for business negotiations in Hebrew. Teach the model negotiation tactics, and the appropriate language to use for making offers, concessions, and closing deals."
},
{
"title": "Lesson 136 Handling Sensitive Topics",
"prompt": "Provide content that involves discussing sensitive topics like religion, politics, and personal issues. Teach the model to handle these discussions with tact and cultural sensitivity."
},
{
"title": "Lesson 137 Advanced Problem Solving",
"prompt": "Include complex problem-solving scenarios that require logical reasoning and detailed explanation of the processes involved in finding a solution."
},
{
"title": "Lesson 138 Expressing Humor and Wit",
"prompt": "Teach the model to understand and express humor and wit in Hebrew, including puns, jokes, and comedic timing, while being mindful of cultural sensitivities."
},
{
"title": "Lesson 139 Understanding and Creating Contracts",
"prompt": "Develop examples of contracts and legal agreements in Hebrew. Teach the model to understand the structure and key components of contracts, and how to draft them."
},
{
"title": "Lesson 140 Advanced Healthcare Communication",
"prompt": "Create healthcare scenarios that involve discussing medical conditions, treatments, and patient care in Hebrew, ensuring the model can communicate effectively with healthcare professionals and patients."
},
{
"title": "Lesson 141 Writing Formal Correspondence",
"prompt": "Teach the model to write formal letters and emails in Hebrew, focusing on professional and courteous language, formatting, and the conventions of formal correspondence."
},
{
"title": "Lesson 142 Performing Arts and Theater",
"prompt": "Include vocabulary and scenarios related to the performing arts and theater. Teach the model to discuss plays, performances, and theatrical concepts."
},
{
"title": "Lesson 143 Advanced Environmental Discussions",
"prompt": "Develop content related to environmental science and conservation. Include technical terms and discussions on sustainability practices in Hebrew."
},
{
"title": "Lesson 144 Architectural and Engineering Terms",
"prompt": "Provide terminology and discussions related to architecture and engineering. Include descriptions of projects, tools, and materials used in the field."
},
{
"title": "Lesson 145 Sports Commentary",
"prompt": "Create scenarios for providing live sports commentary in Hebrew. Include vocabulary for describing actions, rules, and player performances."
},
{
"title": "Lesson 146 Discussing Global Issues",
"prompt": "Teach the model to discuss global issues like climate change, economic crises, and political conflicts in Hebrew, providing nuanced and informed perspectives."
},
{
"title": "Lesson 147 Advanced Financial Discussions",
"prompt": "Develop content for discussing complex financial topics like investments, stock market trends, and economic policies in Hebrew."
},
{
"title": "Lesson 148 Cultural Critiques",
"prompt": "Teach the model to critique films, books, music, and art in Hebrew, focusing on critical analysis and evaluation techniques."
},
{
"title": "Lesson 149 Advanced Culinary Vocabulary",
"prompt": "Provide terms and phrases related to advanced culinary skills, including descriptions of cooking techniques, ingredients, and presentation styles."
},
{
"title": "Lesson 150 Mastering Public Speaking",
"prompt": "Develop tasks that improve public speaking skills in Hebrew, including constructing speeches, engaging audiences, and using persuasive language effectively."
},
{
"title": "Lesson 151 Understanding Formal Speech",
"prompt": "Develop tasks involving formal Hebrew speech used in ceremonies or formal announcements. Teach the model to recognize formal language structures and respond appropriately."
},
{
"title": "Lesson 152 Writing Academic Papers",
"prompt": "Create examples and guidelines for writing academic papers in Hebrew. Include instruction on proper academic style, citations, and structuring arguments."
},
{
"title": "Lesson 153 Technical Writing Skills",
"prompt": "Develop content for technical writing in Hebrew, such as user manuals, product descriptions, and technical reports. Focus on clarity, precision, and the appropriate use of technical terms."
},
{
"title": "Lesson 154 Crisis Management Communication",
"prompt": "Teach the model to handle crisis communication in Hebrew. Include vocabulary and phrases necessary for urgent communications, public safety announcements, and calming concerned parties."
},
{
"title": "Lesson 155 Negotiating and Making Deals",
"prompt": "Create scenarios that require negotiation skills in Hebrew, such as purchasing real estate, settling disputes, or business negotiations, with emphasis on persuasive language and strategic concessions."
},
{
"title": "Lesson 156 Understanding Hebrew Poetry",
"prompt": "Develop tasks that involve interpreting Hebrew poetry, focusing on metaphorical language, rhymes, and cultural references."
},
{
"title": "Lesson 157 Legal Dispute Scenarios",
"prompt": "Create examples of legal disputes and courtroom exchanges in Hebrew. Teach the model legal terminology and the dynamics of courtroom interaction."
},
{
"title": "Lesson 158 Public Relations and Media Releases",
"prompt": "Provide examples and templates for writing press releases and managing public relations in Hebrew. Include instruction on tone, style, and the structuring of public announcements."
},
{
"title": "Lesson 159 Advanced Marketing and Advertising",
"prompt": "Teach the model to create and understand marketing content in Hebrew, including advertising copy, digital marketing content, and brand messaging strategies."
},
{
"title": "Lesson 160 Healthcare and Patient Interactions",
"prompt": "Develop scenarios for healthcare settings, teaching the model to handle patient interactions, explain treatments, and understand medical histories in Hebrew."
},
{
"title": "Lesson 161 Writing for the Web",
"prompt": "Create tasks focused on web content creation in Hebrew, including blogs, SEO articles, and social media posts. Teach the model about engaging and web-friendly language."
},
{
"title": "Lesson 162 Understanding and Writing Reports",
"prompt": "Teach the model to understand and generate different types of reports in Hebrew, such as business reports, research reports, and progress reports."
},
{
"title": "Lesson 163 Advanced Conversational Hebrew for Social Settings",
"prompt": "Develop tasks that require advanced conversational Hebrew, focusing on idiomatic expressions, nuanced questions, and culturally appropriate responses in social settings."
},
{
"title": "Lesson 164 Preparing Speeches and Presentations",
"prompt": "Provide guidelines and examples for preparing and delivering speeches and presentations in Hebrew. Focus on persuasive language, engaging storytelling, and clear articulation."
},
{
"title": "Lesson 165 Responding to Feedback and Criticism",
"prompt": "Create scenarios where the model must respond to feedback and criticism in Hebrew. Teach strategies for constructive responses and maintaining professionalism."
},
{
"title": "Lesson 166 Project Management and Coordination",
"prompt": "Develop content related to project management and coordination in Hebrew. Include terms and phrases for planning, executing, and reviewing projects."
},
{
"title": "Lesson 167 Interpreting Graphs and Data",
"prompt": "Teach the model to interpret and discuss data presented in graphs and charts in Hebrew. Include vocabulary for describing trends, comparisons, and data analysis."
},
{
"title": "Lesson 168 Advanced Email Correspondence",
"prompt": "Develop tasks for writing various types of professional emails in Hebrew. Include instruction on formal greetings, request formulation, and concise language."
},
{
"title": "Lesson 169 Role-Playing Sales Scenarios",
"prompt": "Create role-playing scenarios for sales and customer service in Hebrew. Teach the model sales techniques, product explanations, and handling objections."
},
{
"title": "Lesson 170 Explaining Technological Innovations",
"prompt": "Provide content on explaining technological innovations and tech-related topics in Hebrew. Include current trends in technology and terms for new inventions."
},
{
"title": "Lesson 171 Environmental Advocacy",
"prompt": "Develop content for discussing and advocating for environmental issues in Hebrew. Include vocabulary for sustainability, conservation, and environmental policy."
},
{
"title": "Lesson 172 Discussing Film and Television",
"prompt": "Create tasks for discussing films and television shows in Hebrew. Include vocabulary for plot, genre, directing, acting, and critical review."
},
{
"title": "Lesson 173 Understanding and Discussing Economics",
"prompt": "Teach the model to discuss economic concepts, market trends, and financial policies in Hebrew. Provide vocabulary for economic analysis and discussion."
},
{
"title": "Lesson 174 Writing Proposals and Grants",
"prompt": "Develop examples of writing proposals and grants in Hebrew. Teach the model about persuasive writing, clarity, and the structure of proposals."
},
{
"title": "Lesson 175 Hosting and Moderating Events",
"prompt": "Provide scenarios for hosting and moderating events in Hebrew, including vocabulary for introductions, transitions, and audience engagement."
},
{
"title": "Lesson 176 Advanced Retail and Commerce",
"prompt": "Create content related to advanced retail and commerce scenarios in Hebrew. Include terms for e-commerce, customer retention strategies, and sales optimization."
},
{
"title": "Lesson 177 Negotiating Leases and Contracts",
"prompt": "Develop tasks for negotiating leases and contracts in Hebrew, including vocabulary for terms, conditions, and legal implications."
},
{
"title": "Lesson 178 Advanced Networking Skills",
"prompt": "Teach the model to engage in networking in professional settings in Hebrew. Include phrases for making connections, introducing oneself, and following up on contacts."
},
{
"title": "Lesson 179 Understanding and Applying for Loans",
"prompt": "Create content about the process of applying for and understanding loans in Hebrew. Include terms for interest rates, repayment terms, and financial assessment."
},
{
"title": "Lesson 180 Writing and Understanding Poetry",
"prompt": "Develop tasks that involve writing and understanding poetry in Hebrew. Focus on poetic forms, figurative language, and thematic expression."
},
{
"title": "Lesson 181 Language Context - When to Use English vs. Hebrew",
"prompt": "Develop content that teaches the model to identify the context in which a response should be in English or Hebrew. Include scenarios where the language of the question, the cultural context, and the subject matter influence the choice of language for the response."
},
{
"title": "Lesson 182 Understanding Cultural References in Humor",
"prompt": "Create examples where humor is based on cultural references specific to English or Hebrew. Teach the model to recognize these references and explain why a direct translation might not preserve the humor or meaning in the other language."
},
{
"title": "Lesson 183 Translating Idioms and Phrases",
"prompt": "Provide a list of idioms and phrases from both English and Hebrew. Include explanations on how these are used in each language and discuss why some idioms cannot be directly translated without losing their essence or meaning."
},
{
"title": "Lesson 184 Handling Jokes and Puns",
"prompt": "Teach the model about the structure of jokes and puns in both English and Hebrew. Include examples of jokes that rely on wordplay and explain how to determine if the humor can be translated or needs to be adapted."
},
{
"title": "Lesson 185 Double Entendre Differences",
"prompt": "Discuss the concept of double entendres in both languages. Provide examples where a double entendre works in one language but not in the other, explaining the linguistic and cultural reasons behind this."
},
{
"title": "Lesson 186 Slang and Colloquial Language",
"prompt": "Compile lists of slang and colloquial expressions from both English and Hebrew. Explain their meanings and usage, and discuss how slang needs to be culturally adapted rather than directly translated."
},
{
"title": "Lesson 187 Responding to Mixed Language Content",
"prompt": "Create tasks that involve content mixed between English and Hebrew. Teach the model strategies for responding appropriately, including when to switch languages and how to maintain coherence."
},
{
"title": "Lesson 188 Language-Specific Expressions",
"prompt": "Provide examples of expressions that are unique to English or Hebrew. Discuss why these expressions are particularly tied to their language of origin and the cultural context that gives them meaning."
},
{
"title": "Lesson 189 Subtext and Implication in Language",
"prompt": "Develop content that teaches the model to understand subtext and implications in both English and Hebrew. Include examples where the implied meaning differs significantly from the literal meaning."
},
{
"title": "Lesson 190 Metaphors and Analogies",
"prompt": "Explain how metaphors and analogies work in both languages. Include examples where a metaphor in one language does not carry the same weight or meaning in the other, and provide guidelines on how to adapt them."
},
{
"title": "Lesson 191 Navigating Proverbs",
"prompt": "Teach the model about popular proverbs in English and Hebrew. Discuss the cultural and historical origins of these proverbs and explain why they might not be interchangeable between languages."
},
{
"title": "Lesson 192 Understanding Contextual Language Usage",
"prompt": "Create scenarios where the model must decide the appropriate language based on the context of the conversation. Include factors such as the participants, setting, and topic of discussion."
},
{
"title": "Lesson 193 Adapting Language for Different Audiences",
"prompt": "Provide tasks that require adapting language and content for different audiences, focusing on the distinctions between English and Hebrew speakers. Include considerations for cultural sensitivity and appropriateness."
},
{
"title": "Lesson 194 Language Adaptation for Media",
"prompt": "Teach the model about the different uses of English and Hebrew in various media forms, including news, literature, and online platforms. Discuss how language needs to be adapted for different media contexts."
},
{
"title": "Lesson 195 Using Language to Convey Tone",
"prompt": "Develop examples that show how tone is conveyed differently in English and Hebrew. Teach the model to recognize and replicate appropriate tones for formal, casual, humorous, and solemn contexts."
},
{
"title": "Lesson 196 Translating Song Lyrics",
"prompt": "Provide examples of song lyrics in both languages. Discuss the challenges of translating lyrics while maintaining rhyme, rhythm, and the original message or mood."
},
{
"title": "Lesson 197 Effective Communication in Multilingual Environments",
"prompt": "Create scenarios typical of multilingual environments where switching between English and Hebrew is common. Teach the model strategies for effective communication in these settings."
},
{
"title": "Lesson 198 Cultural Nuances in Business Language",
"prompt": "Develop content focused on the nuances of business language in both English and Hebrew. Discuss how cultural differences affect business communication and negotiations."
},
{
"title": "Lesson 199 Expressing Sympathy and Empathy",
"prompt": "Teach the model to express sympathy and empathy in both English and Hebrew, providing phrases and expressions that are culturally appropriate in sensitive situations."
},
{
"title": "Lesson 200 Understanding and Using Humorous Language",
"prompt": "Focus on the use of humorous language in both English and Hebrew. Provide examples of culturally specific humor and teach the model how to create humor that is appropriate and effective in each language."
},
{
"title": "Lesson 201 Understanding Verb Conjugation Patterns",
"prompt": "Develop a comprehensive guide to Hebrew verb conjugation patterns, focusing on binyanim (verb structures). Include exercises that allow the model to practice forming verbs in different tenses and persons."
},
{
"title": "Lesson 202 The Subtleties of Hebrew Prepositions",
"prompt": "Create content that explores the use of prepositions in Hebrew, which often differ significantly from their English counterparts. Provide examples that show correct usage in various contexts."
},
{
"title": "Lesson 203 Hebrew Pronunciation Nuances",
"prompt": "Develop exercises focused on the subtleties of Hebrew pronunciation, such as the sounds of 'chet' and 'ayin', which do not have direct equivalents in English. Include audio examples and phonetic descriptions."
},
{
"title": "Lesson 204 The Role of Gender in Hebrew Grammar",
"prompt": "Create lessons that explain the impact of gender on Hebrew grammar, including noun and adjective agreement, and verb conjugation. Provide clear examples to illustrate these rules."
},
{
"title": "Lesson 205 Mastering Hebrew Syntax",
"prompt": "Develop tasks that help the model understand the typical syntax structure of Hebrew sentences. Include complex sentences with multiple clauses and explain how to correctly order words."
},
{
"title": "Lesson 206 Hebrew Idiomatic Expressions and Their Origins",
"prompt": "Compile a list of common Hebrew idiomatic expressions, provide their literal translations, explanations of their meanings, and historical or cultural origins."
},
{
"title": "Lesson 207 Hebrew Slang and Its Evolution",
"prompt": "Discuss the evolution of Hebrew slang over time, including modern internet slang. Provide examples of popular slang expressions, their meanings, and appropriate contexts for their use."
},
{
"title": "Lesson 208 Hebrew Loanwords and Their Integration",
"prompt": "Examine Hebrew loanwords from English, Arabic, and other languages. Discuss how these words have been integrated into modern Hebrew, including any changes in pronunciation or meaning."
},
{
"title": "Lesson 209 Hebrew Names and Their Significance",
"prompt": "Create a guide to Hebrew names, explaining common biblical and modern names, their meanings, and cultural significance. Include a section on how names are chosen in Jewish traditions."
},
{
"title": "Lesson 210 Navigating Hebrew Literature",
"prompt": "Provide summaries and analyses of major works of Hebrew literature, from biblical texts to modern novels. Discuss themes, language style, and cultural impact."
},
{
"title": "Lesson 211 Understanding Hebrew Poetry",
"prompt": "Teach the model to analyze Hebrew poetry, focusing on rhyme schemes, meter, and imagery. Include classic and contemporary examples."
},
{
"title": "Lesson 212 Religious Texts in Hebrew",
"prompt": "Develop content that helps the model understand key religious texts written in Hebrew, such as the Torah and Talmud. Discuss the language, structure, and theological implications."
},
{
"title": "Lesson 213 Hebrew Media Consumption",
"prompt": "Create tasks that involve analyzing content from Hebrew media sources, such as newspapers, television, and online platforms. Discuss differences in language use across these media."
},
{
"title": "Lesson 214 Business and Economic Terminology in Hebrew",
"prompt": "Compile a list of terms and phrases used in Hebrew-speaking business and economic contexts. Provide examples of how these terms are used in real-life business situations."
},
{
"title": "Lesson 215 Technical and Scientific Hebrew",
"prompt": "Provide an overview of Hebrew terminology used in technical and scientific fields. Include examples of texts and how terms are applied in research and industry contexts."
},
{
"title": "Lesson 216 Hebrew in Technology and Cybersecurity",
"prompt": "Discuss the use of Hebrew in the fields of technology and cybersecurity. Include common terminology and phrases, as well as examples of their use in tech-related communications."
},
{
"title": "Lesson 217 Healthcare Communication in Hebrew",
"prompt": "Develop scenarios and vocabulary lists for healthcare communication in Hebrew. Include dialogues between doctors and patients, and discuss terms for symptoms, procedures, and advice."
},
{
"title": "Lesson 218 Legal Hebrew Language",
"prompt": "Teach the model about the language used in the Israeli legal system. Provide examples of legal documents, court proceedings, and common legal terms."
},
{
"title": "Lesson 219 Educational Terminology in Hebrew",
"prompt": "Create content around Hebrew terminology used in educational settings. Discuss terms related to classroom activities, educational policies, and academic disciplines."
},
{
"title": "Lesson 220 The Language of Israeli Politics",
"prompt": "Provide an overview of the language used in Israeli politics. Include vocabulary related to political processes, government structure, and key issues in contemporary Israeli politics."
},