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
You are an expert form layout analysis AI. Your task is to extract all visual input fields (text blanks, checkboxes) from the provided image of a document.
316
+
Return ONLY valid JSON. The JSON should be a list of objects with the following keys:
317
+
- "label": A descriptive semantic name for the field (e.g. "patient_name", "date_of_incident"). Use snake_case.
318
+
- "x": The X coordinate of the top-left corner of the blank space (as a percentage of the image width, 0.0 to 100.0).
319
+
- "y": The Y coordinate of the top-left corner of the blank space (as a percentage of the image height, 0.0 to 100.0).
320
+
- "w": The width of the blank space (as a percentage of the image width, 0.0 to 100.0).
321
+
- "h": The height of the blank space (as a percentage of the image height).
322
+
- "type": "text" or "checkbox".
323
+
Do not include markdown blocks, just the JSON list.
0 commit comments