only_ever_generator 0.2.8 → 0.3.0
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.
- package/dist/bootstrap/app.js +3 -3
- package/dist/card_gen/generate_cards.js +1 -1
- package/dist/constants/prompts/card_gen_prompt.js +201 -196
- package/dist/constants/prompts/typology_prompt.js +1 -7
- package/dist/constants/source_data.js +883 -7
- package/dist/index.js +1 -1
- package/dist/parse/parse_source_content.js +0 -7
- package/dist/utils/parse_openai_response.js +1 -0
- package/package.json +1 -1
- package/src/bootstrap/app.ts +3 -3
- package/src/card_gen/generate_cards.ts +1 -1
- package/src/constants/prompts/card_gen_prompt.ts +208 -208
- package/src/constants/prompts/typology_prompt.ts +1 -7
- package/src/constants/source_data.ts +886 -18
- package/src/index.ts +1 -1
- package/src/parse/parse_source_content.ts +0 -6
- package/src/utils/parse_openai_response.ts +1 -0
|
@@ -193,11 +193,5 @@ Format your output in JSON as follows:
|
|
|
193
193
|
}
|
|
194
194
|
|
|
195
195
|
export function returnTypologyPrompt(typologyPrompt: any){
|
|
196
|
-
|
|
197
|
-
for (let key in typologyPrompt) {
|
|
198
|
-
if (typologyPrompt.hasOwnProperty(key)) {
|
|
199
|
-
concatenatedString += typologyPrompt[key];
|
|
200
|
-
}
|
|
201
|
-
}
|
|
202
|
-
return concatenatedString;
|
|
196
|
+
return typologyPrompt;
|
|
203
197
|
}
|