You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
returngenerateBasePrompt() + getDescriptionOfContent(flashcardType) + getFlashcardStructure(flashcardType) + "The word is " + targetWord + " and the target language is " + language.getName() + ".\n";
40
+
returngenerateBasePrompt() +
41
+
getDescriptionOfContent(flashcardType) +
42
+
getFlashcardStructure(flashcardType) +
43
+
"The word is \"" + targetWord + "\" and the target language is " + language.getName() + ".\n" +
44
+
getFormattingRules();
41
45
}
42
46
43
47
@Override
@@ -48,7 +52,8 @@ public String generatePromptForMultipleFlashcards(String targetWord, FlashcardTy
48
52
getFlashcardStructure(flashcardType) +
49
53
"The word is \"" + targetWord + "\" and the target language is " + language.getName() + ".\n" +
50
54
"Each flashcard should use different example sentences and translations while maintaining accuracy.\n" +
51
-
"Remember: Every flashcard MUST use the exact word \"" + targetWord + "\" - not synonyms, not related words.\n";
55
+
"Remember: Every flashcard MUST use the exact word \"" + targetWord + "\" - not synonyms, not related words.\n" +
0 commit comments