@zodic/shared 0.0.264 → 0.0.266
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/package.json
CHANGED
package/types/scopes/generic.ts
CHANGED
|
@@ -439,7 +439,8 @@ export interface AstroKVData {
|
|
|
439
439
|
description: string | null;
|
|
440
440
|
report: string | null;
|
|
441
441
|
};
|
|
442
|
-
hemisphere:
|
|
442
|
+
hemisphere: {
|
|
443
|
+
description: string | null;
|
|
443
444
|
east_west: HemisphereDetail & {
|
|
444
445
|
description: string | null;
|
|
445
446
|
report: string | null;
|
|
@@ -273,10 +273,7 @@ export const astroPrompts = {
|
|
|
273
273
|
.join(' ');
|
|
274
274
|
case 'hemisphere_east_west':
|
|
275
275
|
case 'hemisphere_north_south':
|
|
276
|
-
return
|
|
277
|
-
.split('_')
|
|
278
|
-
.map((word) => word.charAt(0).toUpperCase() + word.slice(1))
|
|
279
|
-
.join(' ');
|
|
276
|
+
return "Hemisphere"
|
|
280
277
|
default:
|
|
281
278
|
return name.charAt(0).toUpperCase() + name.slice(1);
|
|
282
279
|
}
|
|
@@ -286,6 +283,7 @@ export const astroPrompts = {
|
|
|
286
283
|
|
|
287
284
|
const baseFormat = `
|
|
288
285
|
The result must have an English version and a Portuguese version.
|
|
286
|
+
Avoid using the expression "In astrology" and equivalents. Consider people already know the subject is about astrology.
|
|
289
287
|
The result format must be exactly like the following:
|
|
290
288
|
-- EN
|
|
291
289
|
[Single block of plain text with English version]
|
|
@@ -295,7 +293,7 @@ export const astroPrompts = {
|
|
|
295
293
|
|
|
296
294
|
if (isGeneric) {
|
|
297
295
|
return `
|
|
298
|
-
Make me an introductory, explanatory description of
|
|
296
|
+
Make me an introductory, explanatory description of 70 to 80 words about the astrological concept of the ${formattedName}.
|
|
299
297
|
${baseFormat}
|
|
300
298
|
`.trim();
|
|
301
299
|
} else {
|
|
@@ -305,12 +303,12 @@ export const astroPrompts = {
|
|
|
305
303
|
case 'karmic_point':
|
|
306
304
|
case 'arabic_part':
|
|
307
305
|
return `
|
|
308
|
-
Make me an introductory, explanatory description of
|
|
306
|
+
Make me an introductory, explanatory description of 70 to 80 words about what astrological placement: ${formattedName}.
|
|
309
307
|
${baseFormat}
|
|
310
308
|
`.trim();
|
|
311
309
|
case 'house':
|
|
312
310
|
return `
|
|
313
|
-
Make me an introductory, explanatory description of
|
|
311
|
+
Make me an introductory, explanatory description of 70 to 80 words about the astrological placement: ${formattedName}.
|
|
314
312
|
${baseFormat}
|
|
315
313
|
`.trim();
|
|
316
314
|
default:
|