diff --git a/src/main/java/app/mealsmadeeasy/api/recipe/job/RecipeSummaryJobHandler.java b/src/main/java/app/mealsmadeeasy/api/recipe/job/RecipeSummaryJobHandler.java index 63892b1..d26a331 100644 --- a/src/main/java/app/mealsmadeeasy/api/recipe/job/RecipeSummaryJobHandler.java +++ b/src/main/java/app/mealsmadeeasy/api/recipe/job/RecipeSummaryJobHandler.java @@ -50,7 +50,11 @@ public class RecipeSummaryJobHandler implements JobHandler new NoSuchEntityWithIdException(Recipe.class, payload.recipeId())); final @Nullable String summary = this.inferenceService.infer(List.of( SystemMessage.builder() - .text("Summarize the given recipe in three sentences or less. Output your summary as plain text.") + .text( + "Summarize the given recipe in three sentences or less. " + + "Output your summary as plain text. " + + "Make sure to include the title of the recipe in your summary." + ) .build(), UserMessage.builder().text( "" + recipe.getTitle() + "\n" + recipe.getRawText()