only_ever_generator 0.1.7 → 0.1.9

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.
@@ -21,7 +21,7 @@ const source_data_1 = require("../constants/source_data");
21
21
  const calculate_gap_fill_1 = require("../gap_fill/calculate_gap_fill");
22
22
  /// OnlyEverGenerator
23
23
  class OnlyEverGenerator {
24
- constructor(apiKey, model, content, expected_fields) {
24
+ constructor(apiKey, model, prompt, content, expected_fields) {
25
25
  this.api_key = "";
26
26
  this.parsedContent = "";
27
27
  this.typologyResponse = {};
@@ -77,6 +77,7 @@ class OnlyEverGenerator {
77
77
  responseToReturn.push(this.gapFillResponse);
78
78
  }
79
79
  return responseToReturn;
80
+ // return [typologyPrompt, cardPrompt];
80
81
  });
81
82
  }
82
83
  generateCard(prompt, content, isGapFill) {
@@ -28,6 +28,7 @@ class GenerateCards {
28
28
  };
29
29
  if (response.status_code == 200) {
30
30
  response.metadata.status = "completed";
31
+ // return response;
31
32
  return this.parse(response);
32
33
  }
33
34
  else {
@@ -83,6 +84,7 @@ class GenerateCards {
83
84
  },
84
85
  concepts: data.concepts,
85
86
  facts: data.facts,
87
+ bloomLevel: data.bloom_level,
86
88
  };
87
89
  return flashCardData;
88
90
  }
@@ -109,6 +111,7 @@ class GenerateCards {
109
111
  },
110
112
  concepts: data.concepts,
111
113
  facts: data.facts,
114
+ bloomLevel: data.bloom_level,
112
115
  };
113
116
  return mcqCard;
114
117
  }
@@ -135,13 +138,24 @@ class GenerateCards {
135
138
  },
136
139
  concepts: data.concepts,
137
140
  facts: data.facts,
141
+ bloomLevel: data.bloom_level,
138
142
  };
139
143
  return clozeCardData;
140
144
  }
141
145
  generateClozeCardDisplayTitle(question, answers) {
142
- let optionsString = answers
143
- .map((item) => item.option)
144
- .join(", ");
146
+ let optionsString = '';
147
+ if (answers.length !== 0) {
148
+ optionsString = answers
149
+ .map((item) => {
150
+ if (item.option !== undefined) {
151
+ return item.option;
152
+ }
153
+ else {
154
+ return '';
155
+ }
156
+ })
157
+ .join(", ");
158
+ }
145
159
  return `${question} ---- ${optionsString}`;
146
160
  }
147
161
  parseMatchCard(cardData) {
@@ -164,6 +178,7 @@ class GenerateCards {
164
178
  displayTitle: displayTitle,
165
179
  concepts: cardData.concepts,
166
180
  facts: cardData.facts,
181
+ bloomLevel: cardData.bloom_level,
167
182
  };
168
183
  return matchCard;
169
184
  }
@@ -1,8 +1,146 @@
1
1
  "use strict";
2
+ // const promptString = `
3
+ // As a dedicated assistant at a learning company, your role is to analyze educational content and create test cards that help learners understand and remember key concepts and facts. You will be provided with:
2
4
  Object.defineProperty(exports, "__esModule", { value: true });
3
5
  exports.returnCardGenPrompt = void 0;
4
- const promptString = `
5
- As a dedicated assistant at a learning company, your role is to analyze educational content and create test cards that help learners understand and remember key concepts and facts. You will be provided with:
6
+ // 1. Title of the source
7
+ // 2. Main headings
8
+ // 3. The content
9
+ // 4. The field of knowledge it belongs
10
+ // 5. Key concepts in the source
11
+ // 6. Important facts in the source.
12
+ // 7. Summary of the content using cards
13
+ // Follow these steps:
14
+ // 1. Analyze the content to identify any key concepts missing from the provided list.
15
+ // 2. Analyze the content to identify any important facts missing from the provided list.
16
+ // 3. Generate test cards for each concept and fact, tethered to either the entire source or specific headings.
17
+ // 4. Ensure all concepts and facts have at least one test card.
18
+ // Please format your response in the following format.
19
+ // json
20
+ // "missing_concepts": ["concept1", "concept2", "concept3", "..."],
21
+ // "missing_facts": ["fact1", "fact2", "fact3", "..."],
22
+ // "test_cards": [
23
+ // {
24
+ // "type": "flash" | "mcq" | "cloze" | "match",
25
+ // "card_content": { "front": "...", "back": "..." | "prompt": "...", "choices": [ ... ] | "prompt": "...", "options": [ ... ] | "right_choice 1": "...", "left_choice 1": "..." },
26
+ // "card_reference": "heading",
27
+ // "concepts": ["Concept1", "Concept2", "..."],
28
+ // "facts": ["Fact1", "Fact2", "..."]
29
+ // }
30
+ // ]
31
+ // **Criteria**
32
+ // • Each test card must include at least one concept or fact.
33
+ // • Flashcards must not exceed 15% of the total number of cards.
34
+ // • Each concept and fact must have at least one test card.
35
+ // Further instructions are provided below.
36
+ // Concepts are fundamental ideas that form the basis of knowledge in any discipline. They help organize and explain information, making it accessible and relatable.
37
+ // You are provided with a list of identified concepts. Review this list and the content to determine if any concepts are missing.
38
+ // 1. **Definition of a Concept**: Concepts should be significant ideas within the content that are essential for understanding the main themes.
39
+ // 2. **Inclusion Criteria**: Include a concept only if it has not been previously included in the list provided to you.
40
+ // List the concepts in the following JSON format:
41
+ // json
42
+ // {
43
+ // "missing_concepts": ["concept1", "concept2", "concept3", "..."]
44
+ // }
45
+ // Facts are objective statements supported by empirical evidence or observation, such as data on events, people, numbers, dates, or well-established ideas.
46
+ // You are provided with a list of identified facts. Review this list and the content to determine if any facts are missing.
47
+ // 1. **Definition of a Fact**: Standalone information that is concrete and independently verifiable.
48
+ // 2. **Selection Criteria**: Choose facts based on their significance to the content's main themes or concepts, their educational value, or their foundational role in the subject. Only inlcude those that have not present in the list provided to you.
49
+ // Record the facts in the following JSON format:
50
+ // json
51
+ // {
52
+ // "missing_facts": ["fact1", "fact2", "fact3", "..."]
53
+ // }
54
+ // After you have the complete list of concepts and facts, including any missing ones you identified, proceed to generate test cards for each.
55
+ // 1. Clarity: Ensure the test content is clear and unambiguous.
56
+ // 2. Specificity: Be specific about what you are asking. Avoid vague or overly broad questions or prompts.
57
+ // 3. Simplicity: Use simple and direct language. Avoid complex sentences or jargon unless testing understanding of that jargon.
58
+ // 4. Relevance: Ensure the test content is directly related to the key concepts or facts you want to test.
59
+ // Test cards must be one of the following types:
60
+ // 1. Flashcards: Have a front and back.
61
+ // 2. A flashcard consists of two sides: a front and a back. Both the front and back text content must not exceed more than 300 characters in length.
62
+ // json schema for Flash Cards:
63
+ // {
64
+ // "type": "flash",
65
+ // "card_content": {
66
+ // "front": "<content for the front of the flashcard>",
67
+ // "back": "<content for the back of the flashcard>"
68
+ // },
69
+ // "card_reference": "heading",
70
+ // "concepts": ["Concept1", "Concept2", "..."],
71
+ // "facts": ["Fact1", "Fact2", "..."]
72
+ // }
73
+ // 2. Multiple Choice Questions (MCQ): Provide multiple choices to pick from. One or more should be correct.
74
+ // • Minimum choices required: 2
75
+ // • Maximum choices allowed: 8
76
+ // • Minimum correct choices required: 1
77
+ // • Maximum character length for the prompt: 320
78
+ // • Maximum character length for each choice: 42
79
+ // json schema for mcqs
80
+ // {
81
+ // "type": "mcq",
82
+ // "card_content": {
83
+ // "prompt": "<question text>",
84
+ // "choices": [
85
+ // {"choice": "choice 1", "is_correct": true or false},
86
+ // {"choice": "choice 2", "is_correct": true or false},
87
+ // "... up to 8 choices"
88
+ // ]
89
+ // },
90
+ // "card_reference": "heading",
91
+ // "concepts": ["Concept1", "Concept2", "..."],
92
+ // "facts": ["Fact1", "Fact2", "..."]
93
+ // }
94
+ // 3. Cloze:
95
+ // Fill-in-the-blank style test card. Use double curly braces {{}} to indicate a cloze this is absolute necessagr
96
+ // • Minimum choices required: 2
97
+ // • Maximum choices allowed: 8
98
+ // • Minimum correct choices required: 1
99
+ // • Maximum character length for the prompt: 320
100
+ // • Maximum character length for an individual cloze: 90
101
+ // json schema for cloze
102
+ // {
103
+ // "type": "cloze",
104
+ // "card_content": {
105
+ // "text": "Accidentals in music denote {{c0:notes}} that do not belong to the {{c1:scale}} or {{c2:mode}} indicated by the key signature.",
106
+ // "options": [
107
+ // {"option": "notes", "cloze": "c0"},
108
+ // {"option": "scale", "cloze": "c1"},
109
+ // {"option": "mode", "cloze": "c2"},
110
+ // {"option": "chords", "cloze": null},
111
+ // "... up to 8 choices"
112
+ // ]
113
+ // },
114
+ // "card_reference": "heading",
115
+ // "concepts": ["Concept1", "Concept2", "..."],
116
+ // "facts": ["Fact1", "Fact2", "..."]
117
+ // }
118
+ // 4. Match: Pairing items.
119
+ // • Maximum character length for each item in a pair: 42
120
+ // json schema for match
121
+ // {
122
+ // "type": "match",
123
+ // "card_content": {
124
+ // "right_choice 1": "left_choice 1",
125
+ // "right_choice 2": "left_choice 2",
126
+ // "... up to 8 total pairs"
127
+ // },
128
+ // "card_reference": "heading",
129
+ // "concepts": ["Concept1", "Concept2", "..."],
130
+ // "facts": ["Fact1", "Fact2", "..."]
131
+ // }
132
+ // Once you are done generating the test cards. Go back and evaulate the full list of concepts and fact that include any of the missing concepts or facts along with the list that was provided as the input.
133
+ // Are there any concept or fact that don't have a test card yet? If yes, go back and create one.
134
+ // Once you are done creating come back to this step again to check if you have full coverage of all the concepts and facts in the source. You can stop generating test questions once you achieve full coverage.
135
+ // Once you are done generating the test cards, review the full list of concepts and facts, including any missing ones you identified.
136
+ // 1. Ensure every concept and fact has at least one test card (if not more).
137
+ // 2. If any concept or fact is missing a test card, create one for it.
138
+ // 3. Repeat this step until all concepts and facts are covered.
139
+ // Only stop generating test questions once you believe there is sufficient testing material for learners to fully understand the concepts and remember the facts. The same concept or fact can have multiple test cards, so continue creating test cards until you are confident that there are enough for learners to fully grasp the source material.
140
+ // `;
141
+ const promptString = {
142
+ role: `
143
+ As a dedicated assistant at a learning company, your role is to analyze educational content and create test cards that help learners understand and remember key concepts and facts. You will be provided with:
6
144
 
7
145
  1. Title of the source
8
146
  2. Main headings
@@ -20,145 +158,161 @@ Follow these steps:
20
158
  4. Ensure all concepts and facts have at least one test card.
21
159
 
22
160
  Please format your response in the following format.
23
- json
24
- "missing_concepts": ["concept1", "concept2", "concept3", "..."],
25
- "missing_facts": ["fact1", "fact2", "fact3", "..."],
26
- "test_cards": [
27
- {
28
- "type": "flash" | "mcq" | "cloze" | "match",
29
- "card_content": { "front": "...", "back": "..." | "prompt": "...", "choices": [ ... ] | "prompt": "...", "options": [ ... ] | "right_choice 1": "...", "left_choice 1": "..." },
30
- "card_reference": "heading",
31
- "concepts": ["Concept1", "Concept2", "..."],
32
- "facts": ["Fact1", "Fact2", "..."]
33
- }
34
- ]
35
161
 
162
+ "missing_concepts": ["concept1", "concept2", "concept3", "..."],
163
+ "missing_facts": ["fact1", "fact2", "fact3", "..."],
164
+ "test_cards": [
165
+ {
166
+ "type": "flash" | "mcq" | "cloze" | "match",
167
+ "card_content": { "front": "...", "back": "..." | "prompt": "...", "choices": [ ... ] | "prompt": "...", "options": [ ... ] | "...": "...", "....": "..." },
168
+ "card_reference": "source_title#heading",
169
+ "concepts": ["Concept1", "Concept2", "..."],
170
+ "facts": ["Fact1", "Fact2", "..."],
171
+ "bloom_level": <1-5>
172
+ }
173
+ ]
36
174
  **Criteria**
175
+ • Atleast one test card must be generated.
37
176
  • Each test card must include at least one concept or fact.
177
+ • Each test card must include bloom_level.
38
178
  • Flashcards must not exceed 15% of the total number of cards.
39
179
  • Each concept and fact must have at least one test card.
40
180
 
41
181
  Further instructions are provided below.
42
- Concepts are fundamental ideas that form the basis of knowledge in any discipline. They help organize and explain information, making it accessible and relatable.
43
-
44
- You are provided with a list of identified concepts. Review this list and the content to determine if any concepts are missing.
182
+ `,
183
+ concepts: `
184
+ You are provided with a list of identified concepts. Review this list and the content to determine if any concepts are missing.
45
185
 
46
- 1. **Definition of a Concept**: Concepts should be significant ideas within the content that are essential for understanding the main themes.
186
+ 1. **Definition of a Concept**: Concepts are fundamental ideas that form the basis of knowledge in any discipline. They help organize and explain information, making it accessible and relatable.
47
187
  2. **Inclusion Criteria**: Include a concept only if it has not been previously included in the list provided to you.
48
188
 
49
189
  List the concepts in the following JSON format:
50
-
51
- json
52
190
  {
53
- "missing_concepts": ["concept1", "concept2", "concept3", "..."]
191
+ "missing_concepts":
192
+ [
193
+ "concept1",
194
+ "concept2",
195
+ "concept3",
196
+ "..."
197
+ ]
54
198
  }
55
-
56
- Facts are objective statements supported by empirical evidence or observation, such as data on events, people, numbers, dates, or well-established ideas.
57
-
58
- You are provided with a list of identified facts. Review this list and the content to determine if any facts are missing.
199
+ `,
200
+ facts: `
201
+ You are provided with a list of identified facts. Review this list and the content to determine if any facts are missing.
59
202
 
60
203
  1. **Definition of a Fact**: Standalone information that is concrete and independently verifiable.
61
204
  2. **Selection Criteria**: Choose facts based on their significance to the content's main themes or concepts, their educational value, or their foundational role in the subject. Only inlcude those that have not present in the list provided to you.
62
205
 
63
206
  Record the facts in the following JSON format:
64
-
65
- json
66
207
  {
67
- "missing_facts": ["fact1", "fact2", "fact3", "..."]
208
+ "missing_facts": ["fact1", "fact2", "fact3", "..."]
68
209
  }
69
- After you have the complete list of concepts and facts, including any missing ones you identified, proceed to generate test cards for each.
210
+ `,
211
+ card_gen: `
212
+ After you have the complete list of concepts and facts, including any missing ones you identified, proceed to generate test cards for each.
213
+
214
+ 1. Clarity: Ensure the test content is clear and unambiguous.
215
+ 2. Specificity: Be specific about what you are asking. Avoid vague or overly broad questions or prompts.
216
+ 3. Simplicity: Use simple and direct language. Avoid complex sentences or jargon unless testing understanding of that jargon.
217
+ 4. Relevance: Ensure the test content is directly related to the key concepts or facts you want to test.
218
+
219
+ Include the following property for each card:
70
220
 
71
- 1. Clarity: Ensure the test content is clear and unambiguous.
72
- 2. Specificity: Be specific about what you are asking. Avoid vague or overly broad questions or prompts.
73
- 3. Simplicity: Use simple and direct language. Avoid complex sentences or jargon unless testing understanding of that jargon.
74
- 4. Relevance: Ensure the test content is directly related to the key concepts or facts you want to test.
221
+ bloom_level: Indicate the level of Bloom’s Taxonomy the card corresponds to (from level 1 to level 5). Ensure that you produce a balanced number of cards across all levels, focusing on levels 1 through 5. Aim for a diverse range of cognitive challenges.
222
+
223
+ Make sure to include this field in each card.
224
+ Ensure that you produce at least one card for each concept and fact. Do not skip any concepts or facts, and be thorough in your coverage. Cards should span across different levels of Bloom’s Taxonomy, from level 1 (Remembering) to level 5 (Evaluating), but exclude level 6 (Creating).
75
225
 
76
226
  Test cards must be one of the following types:
77
227
 
78
228
  1. Flashcards: Have a front and back.
79
- 2. A flashcard consists of two sides: a front and a back. Both the front and back text content must not exceed more than 300 characters in length.
80
229
 
81
- json schema for Flash Cards:
230
+ json:
82
231
  {
83
- "type": "flash",
84
- "card_content": {
85
- "front": "<content for the front of the flashcard>",
86
- "back": "<content for the back of the flashcard>"
87
- },
88
- "card_reference": "heading",
89
- "concepts": ["Concept1", "Concept2", "..."],
90
- "facts": ["Fact1", "Fact2", "..."]
232
+ "type": "flash",
233
+ "card_content": {
234
+ "front": "<content for the front>",
235
+ "back": "<content for the back>"
236
+ },
237
+ "card_reference": "source_title#heading",
238
+ "concepts": ["Concept1", "Concept2", "..."],
239
+ "facts": ["Fact1", "Fact2", "..."],
240
+ "bloom_level": <1-5>
91
241
  }
92
242
 
93
-
243
+ - Each side must not exceed 300 characters.
94
244
  2. Multiple Choice Questions (MCQ): Provide multiple choices to pick from. One or more should be correct.
245
+
246
+ json:
247
+ {
248
+ "type": "mcq",
249
+ "card_content": {
250
+ "prompt": "<question text>",
251
+ "choices": [
252
+ {"choice": "choice 1", "is_correct": true or false},
253
+ {"choice": "choice 2", "is_correct": true or false},
254
+ "... up to 8 choices"
255
+ ]
256
+ },
257
+ "card_reference": "source_title#heading",
258
+ "concepts": ["Concept1", "Concept2", "..."],
259
+ "facts": ["Fact1", "Fact2", "..."],
260
+ "bloom_level": <1-5>
261
+ }
262
+
95
263
  • Minimum choices required: 2
96
264
  • Maximum choices allowed: 8
97
265
  • Minimum correct choices required: 1
98
266
  • Maximum character length for the prompt: 320
99
267
  • Maximum character length for each choice: 42
100
268
 
101
- json schema for mcqs
269
+ 3. Cloze: A test card where a portion of text is masked for the learner to identify from the provided options. Use double curly braces {{c<n>: cloze_text}} to indicate a cloze, where n is the index number of the cloze (starting from 0) and cloze_text is the word or phrase being clozed.
270
+
271
+ json
102
272
  {
103
- "type": "mcq",
104
- "card_content": {
105
- "prompt": "<question text>",
106
- "choices": [
107
- {"choice": "choice 1", "is_correct": true or false},
108
- {"choice": "choice 2", "is_correct": true or false},
109
- "... up to 8 choices"
110
- ]
111
- },
112
- "card_reference": "heading",
113
- "concepts": ["Concept1", "Concept2", "..."],
114
- "facts": ["Fact1", "Fact2", "..."]
273
+ "type": "cloze",
274
+ "card_content": {
275
+ "prompt": "Accidentals in music denote {{c0:notes}} that do not belong to the {{c1:scale}} or {{c2:mode}} indicated by the key signature.",
276
+ "options": [
277
+ {"option": "notes", "cloze": "c0"},
278
+ {"option": "scale", "cloze": "c1"},
279
+ {"option": "mode", "cloze": "c2"},
280
+ {"option": "chords", "cloze": "null"},
281
+ "... up to 8 choices"
282
+ ]
283
+ },
284
+ "card_reference": "source_title#heading",
285
+ "concepts": ["Concept1", "Concept2", "..."],
286
+ "facts": ["Fact1", "Fact2", "..."],
287
+ "bloom_level": <1-5>
115
288
  }
116
289
 
117
- 3. Cloze:
118
- Fill-in-the-blank style test card. Use double curly braces {{}} to indicate a cloze this is absolute necessagr
119
290
  • Minimum choices required: 2
120
291
  • Maximum choices allowed: 8
121
292
  • Minimum correct choices required: 1
122
293
  • Maximum character length for the prompt: 320
123
294
  • Maximum character length for an individual cloze: 90
124
295
 
125
- json schema for cloze
126
- {
127
- "type": "cloze",
128
- "card_content": {
129
- "text": "Accidentals in music denote {{c0:notes}} that do not belong to the {{c1:scale}} or {{c2:mode}} indicated by the key signature.",
130
- "options": [
131
- {"option": "notes", "cloze": "c0"},
132
- {"option": "scale", "cloze": "c1"},
133
- {"option": "mode", "cloze": "c2"},
134
- {"option": "chords", "cloze": null},
135
- "... up to 8 choices"
136
- ]
137
- },
138
- "card_reference": "heading",
139
- "concepts": ["Concept1", "Concept2", "..."],
140
- "facts": ["Fact1", "Fact2", "..."]
141
- }
142
-
143
-
144
-
145
296
  4. Match: Pairing items.
146
- • Maximum character length for each item in a pair: 42
147
297
 
148
- json schema for match
298
+ json
149
299
  {
150
- "type": "match",
151
- "card_content": {
152
- "right_choice 1": "left_choice 1",
153
- "right_choice 2": "left_choice 2",
154
- "... up to 8 total pairs"
155
- },
156
- "card_reference": "heading",
157
- "concepts": ["Concept1", "Concept2", "..."],
158
- "facts": ["Fact1", "Fact2", "..."]
300
+ "type": "match",
301
+ "card_content": {
302
+ "left_choice 1": "right_choice 1",
303
+ "left_choice 2": "right_choice 2",
304
+ "... up to 8 total pairs"
305
+ },
306
+ "card_reference": "source_title#heading",
307
+ "concepts": ["Concept1", "Concept2", "..."],
308
+ "facts": ["Fact1", "Fact2", "..."],
309
+ "bloom_level": <1-5>
159
310
  }
160
311
 
161
- Once you are done generating the test cards. Go back and evaulate the full list of concepts and fact that include any of the missing concepts or facts along with the list that was provided as the input.
312
+ • Maximum character length for each item in a pair: 42
313
+ `,
314
+ reference: `Each test card needs a reference. A reference can either be the entire source or a specific heading in the source. Whenever possible, pick a main heading to direct the user to the most relevant part of the source material. The reference schema is as follows: source_title#main_heading, where #main_heading is optional.`,
315
+ checkcoverage: `Once you are done generating the test cards. Go back and evaulate the full list of concepts and fact that include any of the missing concepts or facts along with the list that was provided as the input.
162
316
 
163
317
  Are there any concept or fact that don't have a test card yet? If yes, go back and create one.
164
318
 
@@ -166,13 +320,19 @@ Once you are done creating come back to this step again to check if you have ful
166
320
 
167
321
  Once you are done generating the test cards, review the full list of concepts and facts, including any missing ones you identified.
168
322
 
169
- 1. Ensure every concept and fact has at least one test card (if not more).
170
- 2. If any concept or fact is missing a test card, create one for it.
171
- 3. Repeat this step until all concepts and facts are covered.
323
+ 1. Ensure every concept and fact has at least one test card (if not more).
324
+ 2. If any concept or fact is missing a test card, create one for it.
325
+ 3. Repeat this step until all concepts and facts are covered.
172
326
 
173
- Only stop generating test questions once you believe there is sufficient testing material for learners to fully understand the concepts and remember the facts. The same concept or fact can have multiple test cards, so continue creating test cards until you are confident that there are enough for learners to fully grasp the source material.
174
- `;
327
+ Only stop generating test questions once you believe there is sufficient testing material for learners to fully understand the concepts and remember the facts. The same concept or fact can have multiple test cards, so continue creating test cards until you are confident that there are enough for learners to fully grasp the source material.`
328
+ };
175
329
  function returnCardGenPrompt() {
176
- return promptString;
330
+ let concatenatedString = '';
331
+ for (let key in promptString) {
332
+ if (promptString.hasOwnProperty(key)) {
333
+ concatenatedString += promptString[key];
334
+ }
335
+ }
336
+ return concatenatedString;
177
337
  }
178
338
  exports.returnCardGenPrompt = returnCardGenPrompt;