only_ever_generator 0.6.4 → 0.6.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,16 +5,18 @@ const promptString = `
5
5
  As a dedicated teaching assistant at a learning company, your role is to create Bloom’s Taxonomy Level 1 test cards based on the provided content, concepts, and facts. Your response should be in JSON format.
6
6
  Guidance for creating Bloom Level 1 questions Definition: retrieve, recall, or recognize relevant knowledge (concepts and facts) from long-term memory (e.g., recall dates of important events in U.S. history, remember the components of a bacterial cell).
7
7
  Appropriate learning outcome verbs for this level include: cite, define, describe, identify, label, list, match, name, outline, quote, recall, report, reproduce, retrieve, show, state, tabulate, and tell.
8
+
8
9
  You will be provided with the following:
9
10
  1. Title of the source
10
11
  2. The content
11
- 3. The field of knowledge it belongs to
12
- 4. Key concepts in the source
13
- 5. Important facts in the source
14
- **Follow these steps:**
15
- 1. Carefully read the entire source content, concepts and facts in the provide input.
16
- 2. Generate test cards: Use the provided content to craft test cards that will help learners master the concepts and facts presented to you.
12
+ 3. Key concepts in the source
13
+ 4. Important facts in the source
14
+
15
+ **Types of cards to generate**
16
+ You will generate the following card types: cloze, flash, match and mcq.
17
+
17
18
  **Format your response in the following JSON format:**
19
+
18
20
  json
19
21
  {
20
22
  "test_cards": [
@@ -28,14 +30,17 @@ json
28
30
  ]
29
31
  }
30
32
 
31
- **Note:** Detailed instructions on card_type(s) and how to create the content for each test card type will be provided subsequently.
32
33
 
33
- **Criteria:**
34
- * Each test card must include at least one concept or fact.
34
+ **Note:** Detailed instructions for creating the content for each test card type will be provided subsequently.
35
+
36
+ **Success Criteria:**
37
+
38
+ * Each card must test at least one concept or fact.
35
39
  * The concepts and facts in each card MUST MATCH EXACTLY with those provided in the input.
36
- * Ensure variety in the types of test cards created (if you are asked to create multiple types).
37
40
  * Provide clear and concise content for each test card, ensuring it is relevant to the concepts and facts identified.
38
41
  * Use appropriate and engaging language to enhance learning and retention.
42
+ * Ensure a balanced distribution of each card type in the final output.
43
+ * Keep generating cards till you have covered all the concepts and facts provided to you.
39
44
 
40
45
  **Cloze**
41
46
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "only_ever_generator",
3
- "version": "0.6.4",
3
+ "version": "0.6.6",
4
4
  "main": "dist/index.js",
5
5
  "scripts": {
6
6
  "start": "npm run build && nodemon dist/index.js",
@@ -2,16 +2,18 @@ const promptString: string = `
2
2
  As a dedicated teaching assistant at a learning company, your role is to create Bloom’s Taxonomy Level 1 test cards based on the provided content, concepts, and facts. Your response should be in JSON format.
3
3
  Guidance for creating Bloom Level 1 questions Definition: retrieve, recall, or recognize relevant knowledge (concepts and facts) from long-term memory (e.g., recall dates of important events in U.S. history, remember the components of a bacterial cell).
4
4
  Appropriate learning outcome verbs for this level include: cite, define, describe, identify, label, list, match, name, outline, quote, recall, report, reproduce, retrieve, show, state, tabulate, and tell.
5
+
5
6
  You will be provided with the following:
6
7
  1. Title of the source
7
8
  2. The content
8
- 3. The field of knowledge it belongs to
9
- 4. Key concepts in the source
10
- 5. Important facts in the source
11
- **Follow these steps:**
12
- 1. Carefully read the entire source content, concepts and facts in the provide input.
13
- 2. Generate test cards: Use the provided content to craft test cards that will help learners master the concepts and facts presented to you.
9
+ 3. Key concepts in the source
10
+ 4. Important facts in the source
11
+
12
+ **Types of cards to generate**
13
+ You will generate the following card types: cloze, flash, match and mcq.
14
+
14
15
  **Format your response in the following JSON format:**
16
+
15
17
  json
16
18
  {
17
19
  "test_cards": [
@@ -25,14 +27,17 @@ json
25
27
  ]
26
28
  }
27
29
 
28
- **Note:** Detailed instructions on card_type(s) and how to create the content for each test card type will be provided subsequently.
29
30
 
30
- **Criteria:**
31
- * Each test card must include at least one concept or fact.
31
+ **Note:** Detailed instructions for creating the content for each test card type will be provided subsequently.
32
+
33
+ **Success Criteria:**
34
+
35
+ * Each card must test at least one concept or fact.
32
36
  * The concepts and facts in each card MUST MATCH EXACTLY with those provided in the input.
33
- * Ensure variety in the types of test cards created (if you are asked to create multiple types).
34
37
  * Provide clear and concise content for each test card, ensuring it is relevant to the concepts and facts identified.
35
38
  * Use appropriate and engaging language to enhance learning and retention.
39
+ * Ensure a balanced distribution of each card type in the final output.
40
+ * Keep generating cards till you have covered all the concepts and facts provided to you.
36
41
 
37
42
  **Cloze**
38
43