← Back to document 485
AI review — page 24
claude-opus-4-8 · prompt v7 · 2026-09-02T12:47:35+00:00 · applied: yes · changed: yes
Screenshot sent to the model (reading-order tags burned on)
Instructions (system prompt)
The screenshot has annotations burned onto it that are NOT part of the document:
- a small red numbered tag at the top-left corner of each item, showing that item's position in the OCR-determined reading order (the same order the items appear in the json data);
- a red-and-white dotted outline around each item, showing the area the OCR detected for that content block.
Use the tags and outlines to see the detected reading order and item boundaries directly on the page, and judge that sequence against how a human would naturally read it. Ignore the annotations when checking text fidelity — they overlay the content, they are not content.
For the given screenshot of a PDF's page and the attached json data, I want you to perform the following tasks in order...
Review the reading order set out in the json data and compare to what a natural reading order for that of a human would be by looking at the screenshot. Decide on any changes and re-arrange the items for the most logical reading order.
Look at all text for each item and correct any extraction errors like missing words, spelling mistakes etc.
Look at each item in the JSON and ensure that the OCR process has identified the item as the correct type: text, list item etc.
Look for any text that duplicates: if two items next to each other contain the exact same text but the text only appears once on the screenshot, one of them is an extraction error — keep the item whose box matches where the text is visible and flag the other for removal.
Make amendments as you proceed through the items and list of instructions.
Reading Order Advice: If there is columns with headings and text, I wouldnt expect the reading order to jump from one heading straight to another if there is text associated with that heading.
Return format: Give me the json data back only, with the amendments you make.
Mechanical notes (so your answer can be applied automatically):
- Each item has an `id` — keep every item and its `id` exactly as given; never invent, drop or duplicate ids. Re-arranging means changing the position of items (and their nesting) in the arrays.
- Never move text (or a type) from one item to another: each item's coordinates travel with its id, so to change reading order you must move the whole item object, and text amendments must be in-place corrections of that item's own text.
- To flag a duplicate item, keep it in the array and add `"remove": "duplicate"` to it — never just delete it (deleted items are restored automatically).
- ids are opaque labels, not sequence numbers: never renumber them. After a removal or re-arrangement, every remaining item keeps the exact id it came with, even if the ids no longer look sequential.
- Text may contain `[pN.M…]` placeholders marking where an inline formula belongs — treat them as part of the text and leave them exactly where they are.
- `box` is [left, top, right, bottom] as percentages of the page from the top-left corner; return it unchanged.
- Respond with raw JSON only: no code fences, no commentary, same shape as the input (`{"items": [...]}`).
User message (json data sent)
Page 24 json data:
{"items":[{"id":"p24.1","type":"heading","box":[9,2,75,6],"text":"TIPS FOR GETTING COLLEGE AID"},{"id":"p24.2","type":"figure","box":[63,9,94,45],"text":""},{"id":"p24.3","type":"text","box":[24,10,41,14],"text":"Save for college."},{"id":"p24.4","type":"text","box":[13,16,53,22],"text":"Submit the FAFSA as soon as possible once it opens by going to StudentAid.gov.","children":[{"id":"p24.4.1","type":"link","box":[31,18,42,21],"text":"StudentAid.gov."}]},{"id":"p24.5","type":"text","box":[18,25,48,28],"text":"Apply for EVERY type of aid."},{"id":"p24.6","type":"text","box":[23,31,43,35],"text":"Make good grades."},{"id":"p24.7","type":"text","box":[16,38,50,43],"text":"Retake your ACT/entrance exams to improve your score."},{"id":"p24.8","type":"figure","box":[69,12,83,20],"text":""},{"id":"p24.9","type":"text","box":[66,22,88,43],"text":"Ask your parents if they have taken advantage of qualified state tuition programs. The Kentucky Education Savings Plan Trust lets parents save over several years for tuition and other education-related expenses. Visit kysaves.com or call 877.598.7878 for more information.","children":[{"id":"p24.9.1","type":"link","box":[78,36,87,38],"text":"kysaves.com"}]},{"id":"p24.10","type":"text","box":[1,79,4,95],"text":"Funding Your Future"},{"id":"p24.11","type":"text","box":[16,45,49,50],"text":"Talk with a college financial aid administrator."},{"id":"p24.12","type":"text","box":[17,52,49,57],"text":"Look for free information about financial aid."},{"id":"p24.13","type":"text","box":[20,60,46,64],"text":"Learn about student loans."},{"id":"p24.14","type":"text","box":[18,67,48,71],"text":"Talk with your school counselor."},{"id":"p24.15","type":"text","box":[24,75,42,78],"text":"Beware of scams."},{"id":"p24.16","type":"text","box":[66,51,89,68],"text":"Do as much community service as possible and keep track of everything! Colleges and scholarship committees love students who give back to their communities."},{"id":"p24.17","type":"figure","box":[55,72,62,76],"text":""},{"id":"p24.18","type":"text","box":[63,74,92,79],"text":"If you think you're being scammed, call the attorney general's office at 888.432.9257 or visit ag.ky.gov.","children":[{"id":"p24.18.1","type":"link","box":[82,76,90,79],"text":"ag.ky.gov."}]},{"id":"p24.19","type":"heading","box":[9,81,23,83],"text":"Service Learning"},{"id":"p24.20","type":"footer","box":[2,96,4,98],"text":"24"},{"id":"p24.21","type":"footer","box":[9,83,92,94],"text":"National service and volunteer programs provide opportunities to serve your country in a variety of areas including working with youth, protecting the environment, providing disaster relief, improving healthcare and more. Many programs may also offer scholarships, grants or educational awards to help pay for college. Check out the Corporation for National and Community Service at americorps.gov to learn about AmeriCorps and other opportunities, including the Kentucky College Coaches Program.","children":[{"id":"p24.21.1","type":"link","box":[69,89,80,91],"text":"americorps.gov"}]}]}
Model response
{"items":[{"id":"p24.1","type":"heading","box":[9,2,75,6],"text":"TIPS FOR GETTING COLLEGE AID"},{"id":"p24.3","type":"text","box":[24,10,41,14],"text":"Save for college."},{"id":"p24.4","type":"text","box":[13,16,53,22],"text":"Submit the FAFSA as soon as possible once it opens by going to StudentAid.gov.","children":[{"id":"p24.4.1","type":"link","box":[31,18,42,21],"text":"StudentAid.gov."}]},{"id":"p24.5","type":"text","box":[18,25,48,28],"text":"Apply for EVERY type of aid."},{"id":"p24.6","type":"text","box":[23,31,43,35],"text":"Make good grades."},{"id":"p24.7","type":"text","box":[16,38,50,43],"text":"Retake your ACT/entrance exams to improve your score."},{"id":"p24.11","type":"text","box":[16,45,49,50],"text":"Talk with a college financial aid administrator."},{"id":"p24.12","type":"text","box":[17,52,49,57],"text":"Look for free information about financial aid."},{"id":"p24.13","type":"text","box":[20,60,46,64],"text":"Learn about student loans."},{"id":"p24.14","type":"text","box":[18,67,48,71],"text":"Talk with your school counselor."},{"id":"p24.15","type":"text","box":[24,75,42,78],"text":"Beware of scams."},{"id":"p24.2","type":"figure","box":[63,9,94,45],"text":""},{"id":"p24.8","type":"figure","box":[69,12,83,20],"text":""},{"id":"p24.9","type":"text","box":[66,22,88,43],"text":"Ask your parents if they have taken advantage of qualified state tuition programs. The Kentucky Education Savings Plan Trust lets parents save over several years for tuition and other education-related expenses. Visit kysaves.com or call 877.598.7878 for more information.","children":[{"id":"p24.9.1","type":"link","box":[78,36,87,38],"text":"kysaves.com"}]},{"id":"p24.16","type":"text","box":[66,51,89,68],"text":"Do as much community service as possible and keep track of everything! Colleges and scholarship committees love students who give back to their communities."},{"id":"p24.17","type":"figure","box":[55,72,62,76],"text":""},{"id":"p24.18","type":"text","box":[63,74,92,79],"text":"If you think you're being scammed, call the attorney general's office at 888.432.9257 or visit ag.ky.gov.","children":[{"id":"p24.18.1","type":"link","box":[82,76,90,79],"text":"ag.ky.gov."}]},{"id":"p24.10","type":"text","box":[1,79,4,95],"text":"Funding Your Future"},{"id":"p24.19","type":"heading","box":[9,81,23,83],"text":"Service Learning"},{"id":"p24.21","type":"footer","box":[9,83,92,94],"text":"National service and volunteer programs provide opportunities to serve your country in a variety of areas including working with youth, protecting the environment, providing disaster relief, improving healthcare and more. Many programs may also offer scholarships, grants or educational awards to help pay for college. Check out the Corporation for National and Community Service at americorps.gov to learn about AmeriCorps and other opportunities, including the Kentucky College Coaches Program.","children":[{"id":"p24.21.1","type":"link","box":[69,89,80,91],"text":"americorps.gov"}]},{"id":"p24.20","type":"footer","box":[2,96,4,98],"text":"24"}]}