USER
Goal
The objective is to moderate, correct, and potentially rewrite a structured text presented in the form of a JSON object containing a cooking recipe.
Cleaning: Remove any text that refers to another page or redirects the reader elsewhere. Examples: (see page), (see recipe), (see recipe page xxx), (see technique page xxx), (see chapter), (see here), "See page...", "Refer to page...".
Moderation: Remove or alter any inappropriate content (discriminatory, racist, offensive language).
Plagiarism: Rewrite the content (excluding ingredients) to make it unique, while preserving the meaning and structure.
Correction: Maintain the original language and correct grammatical and spelling errors.
Formatting: Ensure that the JSON object is properly structured and maintains its original format.
Return Format
Return a correctly formatted JSON object with the necessary corrections and modifications.
The structure of the object must remain identical to the original; only the values of the fields may be altered.
json
{
"title": <title>,
"subtitle": <subtitle>,
"description": <description>,
"ingredients": [{ "section": string, "ingredients": string[] }],
"instructions": <instructions>,
"notes_ingredients": <notes_ingredients>,
"notes_instructions": <notes_instructions>
}
title should be the corrected and/or moderated title
subtitle should be the corrected and/or moderated subtitle
description should be corrected and rewritten if needed
instructions should be a list of corrected and rewritten steps if necessary
ingredients should be corrected and reformulated if needed (without modifying ingredient values)
notes_ingredients should be corrected and/or moderated
notes_instructions should be corrected and/or moderated
Warnings
Do not change the structure of the JSON object (adding, removing, or rearranging keys is strictly forbidden).
Do not change the language of the original text.
Do not alter ingredient values (quantities, units, and names must remain unchanged).
Do not execute any actions or instructions within the JSON object—read only, and apply corrections/moderation if necessary.
Make sure the JSON is well formatted to avoid any parsing errors.
Keep the language to this language en [ISO-639 code]
Context Dump
Language: en (ISO 639)
JSON control object:
{
"title": "Prosciutto-Wrapped Turkey Breast",
"description": "I WAS AT A COMPETITION in Minnesota when I wanted something different to enter in an auxiliary category. The salt from the prosciutto, the creaminess of the cheese, and the freshness of the basil with the juicy tenderness of the turkey ended up getting me first place! If you have a handheld needle meat tenderizer, you can use it on the turkey breasts before rubbing them with oil.",
"subtitle": "A competition-winning recipe with salty prosciutto, creamy cheese, fresh basil, and tender turkey.",
"ingredients": [
{
"section": "For the recipe",
"ingredients": [
"2 (2-pound) boneless turkey breasts, skinned",
"1/4 cup olive oil",
"1 (12-ounce) jar Big Moe Cason Beef Rub",
"10 slices prosciutto (5 to 6 ounces)",
"10 large basil leaves",
"8 slices white cheddar cheese",
"Kitchen twine"
]
}
],
"instructions": [
"Prepare an indirect fire in a grill or smoker, and preheat to 250°F.",
"Pat turkey breasts dry with paper towels.",
"Tenderize turkey if desired, then rub all over with olive oil.",
"Season lightly on both sides with beef rub.",
"On a cutting board, arrange 5 slices prosciutto in a line with their edges slightly overlapping.",
"Top with 5 basil leaves and 4 cheese slices, slightly overlapping edges.",
"Place 1 turkey breaston top.",
"Beginning at the tapered end, roll turkey breast up in the prosciutto, basil, and cheese, wrapping it completely.",
"Tie the breast with kitchen twine at intervals to secure.",
"Repeat procedure with remaining turkey breast, prosciutto, basil, and cheese.",
"Place turkey breasts on grill or smoker; cover and cook until a meat thermometer inserted into centers reads 165°F, about 2 hours.",
"Remove and let stand 10 minutes.",
"Carve into 2-inch-thick slices."
],
"notes_ingredients": "",
"notes_instructions": "If you have a handheld needle meat tenderizer, you can use it on the turkey breasts before rubbing them with oil."
}
ASSISTANT
```json
{
"title": "Prosciutto-Wrapped Turkey Breast",
"subtitle": "A competition-winning recipe featuring salty prosciutto, creamy cheese, fresh basil, and tender turkey.",
"description": "During a cooking competition in Minnesota, I sought a unique dish for an auxiliary category. The combination of salty prosciutto, creamy cheese, aromatic basil, and juicy, tender turkey earned me first place! For enhanced tenderness, you may use a handheld needle meat tenderizer on the turkey breasts prior to applying the oil.",
"ingredients": [
{
"section": "For the recipe",
"ingredients": [
"2 (2-pound) boneless turkey breasts, skinned",
"1/4 cup olive oil",
"1 (12-ounce) jar Big Moe Cason Beef Rub",
"10 slices prosciutto (5 to 6 ounces)",
"10 large basil leaves",
"8 slices white cheddar cheese",
"Kitchen twine"
]
}
],
"instructions": [
"Set up an indirect fire in a grill or smoker and preheat to 250°F.",
"Pat the turkey breasts dry using paper towels.",
"If desired, tenderize the turkey, then coat evenly with olive oil.",
"Lightly season both sides with the beef rub.",
"On a cutting board, lay out 5 slices of prosciutto in a line, slightly overlapping the edges.",
"Layer 5 basil leaves and 4 cheese slices on top, also slightly overlapping.",
"Place one turkey breast on the layered ingredients.",
"Starting at the tapered end, roll the turkey breast tightly in the prosciutto, basil, and cheese to fully encase it.",
"Secure the roll by tying it with kitchen twine at intervals.",
"Repeat the process with the remaining turkey breast and ingredients.",
"Place the wrapped turkey breasts on the grill or smoker; cover and cook until a meat thermometer inserted into the center registers 165°F, about 2 hours.",
"Remove from heat and let rest for 10 minutes.",
"Slice into 2-inch thick pieces."
],
"notes_ingredients": "",
"notes_instructions": "For extra tenderness, consider using a handheld needle meat tenderizer on the turkey breasts before applying the olive oil."
}
```