input stringlengths 170 4.38k | target stringlengths 11 500 | corruption_type stringclasses 28
values | schema dict | invalid_json stringlengths 2 1.02k | error stringlengths 21 156 | target_json stringlengths 11 500 |
|---|---|---|---|---|---|---|
TASK repair_structured_output
SPEC
FIELD credit_score TYPE string VALUES success|error|warning|info REQUIRED no
FIELD payment_status TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD vessel_name TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD compound TYPE string REQUIRED yes
FIELD total TYPE in... | {"credit_score":"success","payment_status":"medium","compound":"test@example.com","total":964,"values":"in_transit","tax":648} | invalid_enum | {
"type": "object",
"properties": {
"credit_score": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"payment_status": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
... | {"credit_score": "success", "payment_status": "invalid_value_392", "compound": "test@example.com", "total": 964, "values": "in_transit", "tax": 648} | Field 'payment_status' has invalid enum value 'invalid_value_392', expected one of ['low', 'medium', 'high', 'critical'] | {"credit_score":"success","payment_status":"medium","compound":"test@example.com","total":964,"values":"in_transit","tax":648} |
TASK repair_structured_output
SPEC
FIELD col_h32 TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD param_g07 TYPE string VALUES single|married|divorced REQUIRED yes
FIELD col_o50 TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD dim_x96 TYPE number REQUIRED no
FIELD val_p56 TYPE string REQUIRED yes
... | {"col_h32":"sms","param_g07":"single","col_o50":"large","dim_x96":850.96,"val_p56":"qux"} | wrong_type | {
"type": "object",
"properties": {
"col_h32": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"param_g07": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"col_o50":... | {"col_h32": "sms", "param_g07": "single", "col_o50": "large", "dim_x96": "\"850.96\"", "val_p56": "qux"} | Field 'dim_x96' must be number, got string | {"col_h32":"sms","param_g07":"single","col_o50":"large","dim_x96":850.96,"val_p56":"qux"} |
TASK repair_structured_output
SPEC
FIELD description TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD country TYPE string VALUES single|married|divorced REQUIRED no
FIELD notes TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD options TYPE string VALUES synonymous|missense|nonsense|fram... | {"description":"xl","country":"single","notes":"new","options":"synonymous","end_date":"enterprise"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"description": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
},
"country": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"notes"... | update_preferences(description='xl', country='single', notes='new', options='synonymous', end_date='enterprise') | Tool call uses Python syntax instead of JSON | {"description":"xl","country":"single","notes":"new","options":"synonymous","end_date":"enterprise"} |
TASK repair_structured_output
SPEC
FIELD batch_code TYPE null REQUIRED no
FIELD tags TYPE string REQUIRED yes
FIELD total TYPE string VALUES cat_a|cat_b REQUIRED yes
BROKEN_OUTPUT
The output is as follows:
{"batch_code":null,"tags":"Smith","total":"cat_a"} | {"batch_code":null,"tags":"Smith","total":"cat_a"} | extra_text_before | {
"type": "object",
"properties": {
"batch_code": {
"type": "null"
},
"tags": {
"type": "string"
},
"total": {
"type": "string",
"enum": [
"cat_a",
"cat_b"
]
}
},
"required": [
"tags",
"total"
]
} | The output is as follows:
{"batch_code":null,"tags":"Smith","total":"cat_a"} | Output contains non-JSON text before the object | {"batch_code":null,"tags":"Smith","total":"cat_a"} |
TASK repair_structured_output
SPEC
FIELD col_m49 TYPE string REQUIRED yes
FIELD key_r76 TYPE string VALUES draft|published|archived REQUIRED yes
FIELD field_q52 TYPE string REQUIRED yes
BROKEN_OUTPUT
{"col_m49":"https://example.com","key_r76":"draft","field_q52":"Jane"} | {"col_m49":"https://example.com","key_r76":"draft","field_q52":"Jane"} | missing_bracket | {
"type": "object",
"properties": {
"col_m49": {
"type": "string"
},
"key_r76": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"field_q52": {
"type": "string"
}
},
"required": [
"field_q52",
"col_m49",
... | {"col_m49":"https://example.com","key_r76":"draft","field_q52":"Jane"} | Missing closing bracket | {"col_m49":"https://example.com","key_r76":"draft","field_q52":"Jane"} |
TASK repair_structured_output
SPEC
FIELD salinity TYPE boolean REQUIRED yes
FIELD build_status TYPE integer REQUIRED no
FIELD footnote TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD branch TYPE boolean REQUIRED yes
BROKEN_OUTPUT
{"build_status": 396, "footnote": "email", "branch": true} | {"salinity":true,"build_status":396,"footnote":"email","branch":true} | missing_required | {
"type": "object",
"properties": {
"salinity": {
"type": "boolean"
},
"build_status": {
"type": "integer"
},
"footnote": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"branch": {
"type": "boolean"
... | {"build_status": 396, "footnote": "email", "branch": true} | Required field 'salinity' is missing | {"salinity":true,"build_status":396,"footnote":"email","branch":true} |
TASK repair_structured_output
SPEC
FIELD comments TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
FIELD age TYPE boolean REQUIRED yes
FIELD tags TYPE string_date-time REQUIRED no
FIELD half_life TYPE string REQUIRED yes
FIELD section TYPE string VALUES active|inactive|pending REQUIRED yes
FIEL... | {"comments":"operational","age":true,"tags":"2023-11-23T20:21:00Z","half_life":"active","section":"inactive","tax":830.64,"full_name":"married"} | invalid_enum | {
"type": "object",
"properties": {
"comments": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
},
"age": {
"type": "boolean"
},
"tags": {
"type": "string",
"format": "date-time"
},
"h... | {"comments": "operational", "age": true, "tags": "2023-11-23T20:21:00Z", "half_life": "active", "section": "inactive", "tax": 830.64, "full_name": "invalid_choice_60"} | Field 'full_name' has invalid enum value 'invalid_choice_60', expected one of ['single', 'married', 'divorced'] | {"comments":"operational","age":true,"tags":"2023-11-23T20:21:00Z","half_life":"active","section":"inactive","tax":830.64,"full_name":"married"} |
TASK repair_structured_output
SPEC
FIELD param_y00 TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD col_w79 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD col_u67 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
BROKEN_OUTPUT
Tool: fetch_lab_resul... | {"param_y00":"unstable","col_u67":"pending_review"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"param_y00": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
},
"col_w79": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
... | Tool: fetch_lab_result
Params: {"param_y00": "unstable", "col_u67_new": "pending_review"} | Agent used wrong parameter name 'col_u67_new' instead of 'col_u67' | {"param_y00":"unstable","col_u67":"pending_review"} |
TASK repair_structured_output
SPEC
FIELD priority TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes
FIELD trace_id TYPE string REQUIRED yes
FIELD compound TYPE integer REQUIRED no
FIELD feedback TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD status_code TYPE string REQUIRED yes
FIELD allele T... | {"priority":"underway","trace_id":"completed","compound":311,"feedback":"JPY","status_code":"chrX"} | wrong_type | {
"type": "object",
"properties": {
"priority": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"trace_id": {
"type": "string"
},
"compound": {
"type": "integer"
},
"feedback": {
"type": "s... | {"priority": "underway", "trace_id": "completed", "compound": "\"311\"", "feedback": "JPY", "status_code": "chrX"} | Field 'compound' must be integer, got string | {"priority":"underway","trace_id":"completed","compound":311,"feedback":"JPY","status_code":"chrX"} |
TASK repair_structured_output
SPEC
FIELD notes.altitude TYPE boolean REQUIRED yes
FIELD notes.torque_output TYPE string_date-time REQUIRED yes
FIELD notes.branch TYPE string REQUIRED no
FIELD notes.vessel_name[].credit_score TYPE string_email REQUIRED yes
FIELD notes.vessel_name[].product_id TYPE integer REQUIRED yes
... | {"created_at":"2024-01-15","patient_id":948} | extra_text_after | {
"type": "object",
"properties": {
"notes": {
"type": "object",
"properties": {
"altitude": {
"type": "boolean"
},
"torque_output": {
"type": "string",
"format": "date-time"
},
"branch": {
"type": "string"
},
... | {"created_at":"2024-01-15","patient_id":948}
I've ensured all required fields are present. | Output contains non-JSON text after the object | {"created_at":"2024-01-15","patient_id":948} |
TASK repair_structured_output
SPEC
FIELD val_r51 TYPE string REQUIRED yes
FIELD field_a17 TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes
FIELD field_x15 TYPE string VALUES option_a|option_b|option_c|option_d REQUIRED yes
BROKEN_OUTPUT
{"val_r51": "https://api.example.com/v1", "field_a17": "anchored"... | {"val_r51":"https://api.example.com/v1","field_a17":"anchored","field_x15":"option_d"} | extra_field | {
"type": "object",
"properties": {
"val_r51": {
"type": "string"
},
"field_a17": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"field_x15": {
"type": "string",
"enum": [
"option_a",
... | {"val_r51": "https://api.example.com/v1", "field_a17": "anchored", "field_x15": "option_d", "extra_field_9174": true} | Unknown field 'extra_field_9174' not defined in schema | {"val_r51":"https://api.example.com/v1","field_a17":"anchored","field_x15":"option_d"} |
TASK repair_structured_output
SPEC
FIELD col_a97 TYPE integer REQUIRED no
FIELD field_z87 TYPE integer REQUIRED yes
FIELD dim_m84 TYPE string REQUIRED no
FIELD prop_z12 TYPE number REQUIRED no
FIELD attr_c58 TYPE boolean REQUIRED no
FIELD prop_n08 TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD key_n73 ... | {"col_a97":458,"field_z87":511,"dim_m84":"GRCh38","prop_z12":739.95,"prop_n08":"low","attr_j48":"inactive"} | trailing_comma | {
"type": "object",
"properties": {
"col_a97": {
"type": "integer"
},
"field_z87": {
"type": "integer"
},
"dim_m84": {
"type": "string"
},
"prop_z12": {
"type": "number"
},
"attr_c58": {
"type": "boolean"
},
"prop_n08": {
"type": "strin... | {"col_a97":458,"field_z87":511,"dim_m84":"GRCh38","prop_z12":739.95,"prop_n08":"low","attr_j48":"inactive",} | Unexpected trailing comma | {"col_a97":458,"field_z87":511,"dim_m84":"GRCh38","prop_z12":739.95,"prop_n08":"low","attr_j48":"inactive"} |
TASK repair_structured_output
SPEC
FIELD email TYPE integer REQUIRED no
FIELD allele TYPE integer REQUIRED yes
FIELD last_name.age TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD last_name.altitude TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD last_name.url TYPE string VALUES admin|editor... | {"email":251,"allele":642,"last_name":{"age":"active","altitude":"active","total":910,"log_level":7},"due_date":195,"features":{"amplitude":"pending","catalyst":469.42,"name":"Oliveira"},"enabled":"GRCh38"} | agent_chain | {
"type": "object",
"properties": {
"email": {
"type": "integer"
},
"allele": {
"type": "integer"
},
"last_name": {
"type": "object",
"properties": {
"age": {
"type": "string",
"enum": [
"active",
"inactive",
... | I need to look up the information first.
Action: get_account
Result: {"email": 251, "last_name": {"age": "active", "altitude": "active", "total": 910, "log_level": 7}, "due_date": 195, "features": {"amplitude": "pending", "catalyst": 469.42, "name": "Oliveira"}, "enabled": "GRCh38"}
I'll query our database.
Action: va... | Agent multi-step chain with truncated tool output | {"email":251,"allele":642,"last_name":{"age":"active","altitude":"active","total":910,"log_level":7},"due_date":195,"features":{"amplitude":"pending","catalyst":469.42,"name":"Oliveira"},"enabled":"GRCh38"} |
TASK repair_structured_output
SPEC
FIELD key_k94 TYPE boolean REQUIRED no
FIELD field_k57 TYPE integer REQUIRED no
FIELD val_w74 TYPE string REQUIRED no
FIELD param_j29 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD dim_j69 TYPE integer REQUIRED yes
FIELD param_k44 TYPE string VALUES homozygous|heterozygous|... | {"val_w74":"cancelled","param_j29":"USD","dim_j69":426,"param_k44":"homozygous"} | extra_field | {
"type": "object",
"properties": {
"key_k94": {
"type": "boolean"
},
"field_k57": {
"type": "integer"
},
"val_w74": {
"type": "string"
},
"param_j29": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
... | {"val_w74": "cancelled", "param_j29": "USD", "dim_j69": 426, "param_k44": "homozygous", "extra_info_7674": true} | Unknown field 'extra_info_7674' not defined in schema | {"val_w74":"cancelled","param_j29":"USD","dim_j69":426,"param_k44":"homozygous"} |
TASK repair_structured_output
SPEC
FIELD dim_h50 TYPE null REQUIRED yes
FIELD attr_n85 TYPE string REQUIRED no
FIELD prop_r57 TYPE string VALUES option_a|option_b|option_c|option_d|option_e|option_f REQUIRED yes
BROKEN_OUTPUT
{"dim_h50":null,"attr_n85":"foo","prop_r57":"option_f"}
Feel free to ask if you have questio... | {"dim_h50":null,"attr_n85":"foo","prop_r57":"option_f"} | extra_text_after | {
"type": "object",
"properties": {
"dim_h50": {
"type": "null"
},
"attr_n85": {
"type": "string"
},
"prop_r57": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
"option_e",
"option_f"
]
... | {"dim_h50":null,"attr_n85":"foo","prop_r57":"option_f"}
Feel free to ask if you have questions. | Output contains non-JSON text after the object | {"dim_h50":null,"attr_n85":"foo","prop_r57":"option_f"} |
TASK repair_structured_output
SPEC
FIELD attr_d38 TYPE string REQUIRED no
FIELD prop_p00 TYPE string REQUIRED yes
FIELD dim_u96[].prop_f60 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD dim_u96[].val_d22 TYPE string REQUIRED no
FIELD dim_u96[].attr_r17 TYPE string VALUES type_a|type_b|ty... | {"attr_d38":"baz","prop_p00":"Alice","dim_u96":[{"prop_f60":"maintenance","val_d22":"REV","attr_r17":"type_a"}]} | missing_required | {
"type": "object",
"properties": {
"attr_d38": {
"type": "string"
},
"prop_p00": {
"type": "string"
},
"dim_u96": {
"type": "array",
"items": {
"type": "object",
"properties": {
"prop_f60": {
"type": "string",
"enum": [
... | {"attr_d38": "baz", "dim_u96": [{"prop_f60": "maintenance", "val_d22": "REV", "attr_r17": "type_a"}]} | Required field 'prop_p00' is missing | {"attr_d38":"baz","prop_p00":"Alice","dim_u96":[{"prop_f60":"maintenance","val_d22":"REV","attr_r17":"type_a"}]} |
TASK repair_structured_output
SPEC
FIELD prop_c16 TYPE boolean REQUIRED no
FIELD dim_c96 TYPE string VALUES draft|published|archived REQUIRED yes
FIELD field_c10 TYPE integer REQUIRED yes
FIELD prop_i79 TYPE number REQUIRED yes
FIELD field_t37 TYPE string REQUIRED no
FIELD param_c97 TYPE string VALUES mode_a|mode_b|mo... | {"prop_c16":false,"dim_c96":"draft","field_c10":521,"prop_i79":918.87,"field_t37":"pending","param_c97":"mode_d"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"prop_c16": {
"type": "boolean"
},
"dim_c96": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"field_c10": {
"type": "integer"
},
"prop_i79": {
"type": "number"
},
... | book_appointment(prop_c16=False, dim_c96='draft', field_c10=521, prop_i79=918.87, field_t37='pending', param_c97='mode_d') | Tool call uses Python syntax instead of JSON | {"prop_c16":false,"dim_c96":"draft","field_c10":521,"prop_i79":918.87,"field_t37":"pending","param_c97":"mode_d"} |
TASK repair_structured_output
SPEC
FIELD field_d45.col_l83.field_d48 TYPE string REQUIRED no
FIELD field_d45.col_l83.param_g25 TYPE integer REQUIRED no
FIELD field_d45.col_l83.dim_e29 TYPE string REQUIRED yes
FIELD field_d45.col_l83.attr_u12[] TYPE string VALUES single|married|divorced REQUIRED no
FIELD field_d45.val_... | {"field_d45":{"col_l83":{"field_d48":"https://api.example.com/v1","param_g25":347,"dim_e29":"foo","attr_u12":["married","single"]},"val_f43":"heterozygous","key_u21":{"dim_j37":"inactive","dim_m54":"green","val_q73":686,"field_v44":true}},"dim_b07":"2023-12-25","field_d16":"https://www.org/v1"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"field_d45": {
"type": "object",
"properties": {
"col_l83": {
"type": "object",
"properties": {
"field_d48": {
"type": "string"
},
"param_g25": {
"type": "integer"
... | Tool: process_payment
Params: {"field_d45": {"col_l83": {"field_d48": "https://api.example.com/v1", "param_g25": 347, "dim_e29": "foo", "attr_u12": ["married", "single"]}, "val_f43": "heterozygous", "key_u21": {"dim_j37": "inactive", "dim_m54": "green", "val_q73": 686, "field_v44": true}}, "field_d16": "https://www.org... | Agent used wrong parameter name 'dim_b07_id' instead of 'dim_b07' | {"field_d45":{"col_l83":{"field_d48":"https://api.example.com/v1","param_g25":347,"dim_e29":"foo","attr_u12":["married","single"]},"val_f43":"heterozygous","key_u21":{"dim_j37":"inactive","dim_m54":"green","val_q73":686,"field_v44":true}},"dim_b07":"2023-12-25","field_d16":"https://www.org/v1"} |
TASK repair_structured_output
SPEC
FIELD dim_k38 TYPE integer REQUIRED yes
FIELD col_t74 TYPE string REQUIRED yes
FIELD key_g56.prop_b71 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD key_g56.key_h41 TYPE string REQUIRED no
FIELD key_g56.field_r79 TYPE boolean REQUIRED yes
FIELD key_g56.val_g8... | {"dim_k38":682,"col_t74":"user@domain.com","key_g56":{"prop_b71":"homozygous","key_h41":"Johnson","field_r79":true,"val_g83":105,"key_l50":"qux","field_t09":"Jane"}} | tool_call_text_mix | {
"type": "object",
"properties": {
"dim_k38": {
"type": "integer"
},
"col_t74": {
"type": "string"
},
"key_g56": {
"type": "object",
"properties": {
"prop_b71": {
"type": "string",
"enum": [
"homozygous",
"heterozygous"... | Processing the request now.
<tool_call name="track_vessel">
{"dim_k38":682,"col_t74":"user@domain.com","key_g56":{"prop_b71":"homozygous","key_h41":"Johnson","field_r79":true,"val_g83":105,"key_l50":"qux","field_t09":"Jane"}}
</tool_call. | Agent response mixes reasoning text with tool call | {"dim_k38":682,"col_t74":"user@domain.com","key_g56":{"prop_b71":"homozygous","key_h41":"Johnson","field_r79":true,"val_g83":105,"key_l50":"qux","field_t09":"Jane"}} |
TASK repair_structured_output
SPEC
FIELD col_n21 TYPE boolean REQUIRED yes
FIELD dim_v06.val_h19 TYPE number REQUIRED yes
FIELD dim_v06.param_l75 TYPE integer REQUIRED yes
FIELD dim_v06.field_b04 TYPE string REQUIRED yes
FIELD key_f17 TYPE integer REQUIRED yes
FIELD attr_p86 TYPE string VALUES email|phone|sms|push REQ... | {"col_n21":false,"dim_v06":{"val_h19":562.62,"param_l75":256,"field_b04":"active"},"key_f17":602,"attr_p86":"push","val_x51":"2023-12-25","field_w88":"New York"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"col_n21": {
"type": "boolean"
},
"dim_v06": {
"type": "object",
"properties": {
"val_h19": {
"type": "number"
},
"param_l75": {
"type": "integer"
},
"field_b04": {
"type": "string... | Tool: generate_report
Params: {"col_n21": false, "dim_v06": {"val_h19": 562.62, "param_l75": 256, "field_b04": "active"}, "attr_p86": "push", "val_x51": "2023-12-25", "field_w88": "New York", "key_f17_name": 602} | Agent used wrong parameter name 'key_f17_name' instead of 'key_f17' | {"col_n21":false,"dim_v06":{"val_h19":562.62,"param_l75":256,"field_b04":"active"},"key_f17":602,"attr_p86":"push","val_x51":"2023-12-25","field_w88":"New York"} |
TASK repair_structured_output
SPEC
FIELD col_p95 TYPE integer REQUIRED yes
FIELD col_g65.dim_b61.prop_k71 TYPE string REQUIRED no
FIELD col_g65.dim_b61.attr_e39 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD col_g65.dim_b61.key_b89[] TYPE string VALUES pending_review|confirmed|rejected|escalated R... | {"col_p95":119,"col_g65":{"dim_b61":{"prop_k71":"GRCh38","attr_e39":"inland","key_b89":["rejected","escalated","rejected"]},"col_v24":117,"field_n49":"heterozygous","dim_g96":"London"},"attr_o82":814} | thought_process | {
"type": "object",
"properties": {
"col_p95": {
"type": "integer"
},
"col_g65": {
"type": "object",
"properties": {
"dim_b61": {
"type": "object",
"properties": {
"prop_k71": {
"type": "string"
},
"attr_e39"... | Let me analyze the request and generate the appropriate JSON.
The user wants a structured object with specific fields.
{"col_p95":119,"col_g65":{"dim_b61":{"prop_k71":"GRCh38","attr_e39":"inland","key_b89":["rejected","escalated","rejected"]},"col_v24":117,"field_n49":"heterozygous","dim_g96":"London"},"attr_o82":814} | Output contains chain-of-thought reasoning before JSON | {"col_p95":119,"col_g65":{"dim_b61":{"prop_k71":"GRCh38","attr_e39":"inland","key_b89":["rejected","escalated","rejected"]},"col_v24":117,"field_n49":"heterozygous","dim_g96":"London"},"attr_o82":814} |
TASK repair_structured_output
SPEC
FIELD field_b50 TYPE string REQUIRED yes
FIELD dim_u19 TYPE string VALUES single|married|divorced REQUIRED yes
FIELD param_e29 TYPE integer REQUIRED yes
FIELD val_u64.param_c85 TYPE number REQUIRED no
FIELD val_u64.val_h03 TYPE boolean REQUIRED no
FIELD val_u64.prop_t85 TYPE string R... | {"field_b50":"PASS","dim_u19":"divorced","param_e29":961,"val_u64":{"prop_t85":"https://api.example.com/v1","dim_v31":"test@example.com","col_p03":{"param_d69":552,"prop_l56":379.2}},"col_q86":340} | thought_process | {
"type": "object",
"properties": {
"field_b50": {
"type": "string"
},
"dim_u19": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"param_e29": {
"type": "integer"
},
"val_u64": {
"type": "object",
"prope... | Analyzing the schema to generate valid JSON...
Checking required fields and types...
{"field_b50":"PASS","dim_u19":"divorced","param_e29":961,"val_u64":{"prop_t85":"https://api.example.com/v1","dim_v31":"test@example.com","col_p03":{"param_d69":552,"prop_l56":379.2}},"col_q86":340} | Output contains chain-of-thought reasoning before JSON | {"field_b50":"PASS","dim_u19":"divorced","param_e29":961,"val_u64":{"prop_t85":"https://api.example.com/v1","dim_v31":"test@example.com","col_p03":{"param_d69":552,"prop_l56":379.2}},"col_q86":340} |
TASK repair_structured_output
SPEC
FIELD val_c41 TYPE string REQUIRED yes
FIELD param_u09 TYPE string_date-time REQUIRED yes
FIELD field_b32 TYPE string_date-time REQUIRED yes
FIELD key_n43 TYPE string REQUIRED no
FIELD key_p38 TYPE integer REQUIRED no
BROKEN_OUTPUT
Tool: generate_report
Params: {"param_u09": "2026-0... | {"val_c41":"Diana","param_u09":"2026-09-02T11:04:00Z","field_b32":"2024-04-05T06:41:00Z","key_n43":"completed"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"val_c41": {
"type": "string"
},
"param_u09": {
"type": "string",
"format": "date-time"
},
"field_b32": {
"type": "string",
"format": "date-time"
},
"key_n43": {
"type": "string"
},
"key_p38": {
"type":... | Tool: generate_report
Params: {"param_u09": "2026-09-02T11:04:00Z", "field_b32": "2024-04-05T06:41:00Z", "key_n43": "completed", "val_c41_value": "Diana"} | Agent used wrong parameter name 'val_c41_value' instead of 'val_c41' | {"val_c41":"Diana","param_u09":"2026-09-02T11:04:00Z","field_b32":"2024-04-05T06:41:00Z","key_n43":"completed"} |
TASK repair_structured_output
SPEC
FIELD col_l82 TYPE boolean REQUIRED no
FIELD key_g22 TYPE integer REQUIRED no
FIELD prop_l41 TYPE number REQUIRED no
FIELD dim_c09 TYPE boolean REQUIRED yes
FIELD dim_d38 TYPE integer REQUIRED no
BROKEN_OUTPUT
{"col_l82": false, "key_g22": 972, "dim_c09": null, "dim_d38": 433} | {"col_l82":false,"key_g22":972,"dim_c09":false,"dim_d38":433} | null_required | {
"type": "object",
"properties": {
"col_l82": {
"type": "boolean"
},
"key_g22": {
"type": "integer"
},
"prop_l41": {
"type": "number"
},
"dim_c09": {
"type": "boolean"
},
"dim_d38": {
"type": "integer"
}
},
"required": [
"dim_c09"
]
} | {"col_l82": false, "key_g22": 972, "dim_c09": null, "dim_d38": 433} | Required field 'dim_c09' is null | {"col_l82":false,"key_g22":972,"dim_c09":false,"dim_d38":433} |
TASK repair_structured_output
SPEC
FIELD filter_flag TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD step TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD color TYPE string VALUES success|error|warning|info REQUIRED yes
FIELD footnote TYPE string_date-time ... | {"color":"info","footnote":"2025-04-06T20:23:00Z","consignee":[{"zip_code":true,"published":true,"dissolved_oxygen":"active","length":"GRCh38","count":"new"}]} | tool_call_wrong_param | {
"type": "object",
"properties": {
"filter_flag": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"step": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
... | Tool: get_weather
Params: {"color": "info", "consignee": [{"zip_code": true, "published": true, "dissolved_oxygen": "active", "length": "GRCh38", "count": "new"}], "footnote_id": "2025-04-06T20:23:00Z"} | Agent used wrong parameter name 'footnote_id' instead of 'footnote' | {"color":"info","footnote":"2025-04-06T20:23:00Z","consignee":[{"zip_code":true,"published":true,"dissolved_oxygen":"active","length":"GRCh38","count":"new"}]} |
TASK repair_structured_output
SPEC
FIELD prop_y19 TYPE string_email REQUIRED yes
FIELD prop_b13 TYPE string_uri REQUIRED yes
FIELD key_w19 TYPE string VALUES cat_a|cat_b REQUIRED yes
BROKEN_OUTPUT
Here is the response in the requested format:
```json
{"prop_y19":"user@domain.org","prop_b13":"https://data.org/data","k... | {"prop_y19":"user@domain.org","prop_b13":"https://data.org/data","key_w19":"cat_b"} | markdown_explanation | {
"type": "object",
"properties": {
"prop_y19": {
"type": "string",
"format": "email"
},
"prop_b13": {
"type": "string",
"format": "uri"
},
"key_w19": {
"type": "string",
"enum": [
"cat_a",
"cat_b"
]
}
},
"required": [
"prop_y... | Here is the response in the requested format:
```json
{"prop_y19":"user@domain.org","prop_b13":"https://data.org/data","key_w19":"cat_b"}
```
Analysis finished. | Output contains markdown and explanatory text around JSON | {"prop_y19":"user@domain.org","prop_b13":"https://data.org/data","key_w19":"cat_b"} |
TASK repair_structured_output
SPEC
FIELD key_z46 TYPE string REQUIRED yes
FIELD dim_m35 TYPE integer REQUIRED yes
FIELD attr_e14 TYPE integer REQUIRED yes
FIELD field_f78 TYPE string REQUIRED no
FIELD val_e69 TYPE string REQUIRED no
FIELD param_q69.field_k29 TYPE integer REQUIRED no
FIELD param_q69.col_o95 TYPE string... | {"key_z46":"Charlie","dim_m35":821,"attr_e14":915,"field_f78":"London","field_h90":null} | unquoted_keys | {
"type": "object",
"properties": {
"key_z46": {
"type": "string"
},
"dim_m35": {
"type": "integer"
},
"attr_e14": {
"type": "integer"
},
"field_f78": {
"type": "string"
},
"val_e69": {
"type": "string"
},
"param_q69": {
"type": "object... | {key_z46:"Charlie",dim_m35:821,attr_e14:915,field_f78:"London",field_h90:null} | Expecting property name enclosed in double quotes | {"key_z46":"Charlie","dim_m35":821,"attr_e14":915,"field_f78":"London","field_h90":null} |
TASK repair_structured_output
SPEC
FIELD lane TYPE boolean REQUIRED yes
FIELD score TYPE string REQUIRED yes
FIELD email TYPE null REQUIRED yes
BROKEN_OUTPUT
{"lane": true, "score": null, "email": null} | {"lane":true,"score":"MV-Evergreen-01","email":null} | null_required | {
"type": "object",
"properties": {
"lane": {
"type": "boolean"
},
"score": {
"type": "string"
},
"email": {
"type": "null"
}
},
"required": [
"score",
"email",
"lane"
]
} | {"lane": true, "score": null, "email": null} | Required field 'score' is null | {"lane":true,"score":"MV-Evergreen-01","email":null} |
TASK repair_structured_output
SPEC
FIELD log_level TYPE string VALUES single|married|divorced REQUIRED yes
FIELD comments TYPE string_email REQUIRED no
FIELD created_at TYPE integer REQUIRED yes
FIELD full_name TYPE string REQUIRED no
BROKEN_OUTPUT
<functioncall> fetch_lab_result
{log_level: "divorced", comments: "te... | {"log_level":"divorced","comments":"test@domain.org","created_at":230,"full_name":"Hapag-Lloyd-Express"} | tool_call_bad_format | {
"type": "object",
"properties": {
"log_level": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"comments": {
"type": "string",
"format": "email"
},
"created_at": {
"type": "integer"
},
"full_name": {
"... | <functioncall> fetch_lab_result
{log_level: "divorced", comments: "test@domain.org", created_at: 230, full_name: "Hapag-Lloyd-Express"} | Tool call has malformed arguments — unquoted keys in function parameters | {"log_level":"divorced","comments":"test@domain.org","created_at":230,"full_name":"Hapag-Lloyd-Express"} |
TASK repair_structured_output
SPEC
FIELD attr_i26 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
FIELD attr_a11 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD field_q49 TYPE string VALUES small|medium|large|xl REQUIRED yes
BROKEN_OUTPUT
I need to look up the... | {"attr_i26":"operational","field_q49":"medium"} | tool_call_partial_args | {
"type": "object",
"properties": {
"attr_i26": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
},
"attr_a11": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected"... | I need to look up the information first.
Action: update_record
Arguments: {"field_q49": "medium"} | Agent tool call missing required parameter 'attr_i26' | {"attr_i26":"operational","field_q49":"medium"} |
TASK repair_structured_output
SPEC
FIELD rating.status TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED no
FIELD rating.user_id TYPE string REQUIRED no
FIELD rating.berth_slot.bed_number TYPE integer REQUIRED no
FIELD rating.berth_slot.salinity TYPE string VALUES option_a|option_b REQUIRED yes
... | {"rating":{"status":"option_c","berth_slot":{"bed_number":592,"salinity":"option_b","amplitude":410.07,"first_name":false,"state":"Silva"},"build_status":{"user_id":549,"enabled":true,"index":"option_d"}},"shift_code":"Smith","start_date":{"paragraph":578.27,"score":"baz","feedback":758,"section":"mode_a","index":false... | boolean_as_string | {
"type": "object",
"properties": {
"rating": {
"type": "object",
"properties": {
"status": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
"option_e"
]
},
... | {"rating": {"status": "option_c", "berth_slot": {"bed_number": 592, "salinity": "option_b", "amplitude": 410.07, "first_name": false, "state": "Silva"}, "build_status": {"user_id": 549, "enabled": true, "index": "option_d"}}, "shift_code": "Smith", "start_date": {"paragraph": 578.27, "score": "baz", "feedback": 758, "s... | Field 'frequency_hz' must be boolean, got string | {"rating":{"status":"option_c","berth_slot":{"bed_number":592,"salinity":"option_b","amplitude":410.07,"first_name":false,"state":"Silva"},"build_status":{"user_id":549,"enabled":true,"index":"option_d"}},"shift_code":"Smith","start_date":{"paragraph":578.27,"score":"baz","feedback":758,"section":"mode_a","index":false... |
TASK repair_structured_output
SPEC
FIELD tile TYPE integer REQUIRED yes
FIELD currency TYPE boolean REQUIRED yes
FIELD features TYPE number REQUIRED yes
FIELD role.order_id TYPE string_uri REQUIRED no
FIELD role.loan_amount TYPE string REQUIRED yes
FIELD role.fleet_number TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat... | {"tile":286,"currency":true,"features":860.66,"role":{"order_id":"https://example.io/v1","loan_amount":"Sao Paulo","fleet_number":"cat_a"},"payment_status":{"priority":275.79,"height":{"brake_pressure":"cancelled","title":"sample","batch_code":"Alice","conductivity":"New York","chromosome":"nonsense"}}} | thought_process | {
"type": "object",
"properties": {
"tile": {
"type": "integer"
},
"currency": {
"type": "boolean"
},
"features": {
"type": "number"
},
"role": {
"type": "object",
"properties": {
"order_id": {
"type": "string",
"format": "uri"
... | Analyzing the sensor data to generate the output.
I'll apply the required format first.
{"tile":286,"currency":true,"features":860.66,"role":{"order_id":"https://example.io/v1","loan_amount":"Sao Paulo","fleet_number":"cat_a"},"payment_status":{"priority":275.79,"height":{"brake_pressure":"cancelled","title":"sample",... | Output contains chain-of-thought reasoning before JSON | {"tile":286,"currency":true,"features":860.66,"role":{"order_id":"https://example.io/v1","loan_amount":"Sao Paulo","fleet_number":"cat_a"},"payment_status":{"priority":275.79,"height":{"brake_pressure":"cancelled","title":"sample","batch_code":"Alice","conductivity":"New York","chromosome":"nonsense"}}} |
TASK repair_structured_output
SPEC
FIELD col_z21 TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD attr_c99 TYPE string REQUIRED yes
FIELD field_y10[] TYPE string_uri REQUIRED yes
BROKEN_OUTPUT
Let me check the system.
<tool_call name="validate_sample">
{"col_z21":"pending","attr_c99":"Johnson","field_y10... | {"col_z21":"pending","attr_c99":"Johnson","field_y10":["https://www.com/api","https://api.io/v1"]} | tool_call_text_mix | {
"type": "object",
"properties": {
"col_z21": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
},
"attr_c99": {
"type": "string"
},
"field_y10": {
"type": "array",
"items": {
"type": "string",
"format": "... | Let me check the system.
<tool_call name="validate_sample">
{"col_z21":"pending","attr_c99":"Johnson","field_y10":["https://www.com/api","https://api.io/v1"]}
</tool_call.
Operation completed. | Agent response mixes reasoning text with tool call | {"col_z21":"pending","attr_c99":"Johnson","field_y10":["https://www.com/api","https://api.io/v1"]} |
TASK repair_structured_output
SPEC
FIELD attr_g88 TYPE integer REQUIRED yes
FIELD attr_c08 TYPE string REQUIRED yes
FIELD key_s91 TYPE string REQUIRED no
FIELD dim_r51 TYPE string REQUIRED yes
FIELD val_n61 TYPE number REQUIRED yes
BROKEN_OUTPUT
{"attr_g88": "222ms", "attr_c08": "Charlie", "key_s91": "Alice", "dim_r5... | {"attr_g88":222,"attr_c08":"Charlie","key_s91":"Alice","dim_r51":"Charlie","val_n61":112.44} | number_with_unit | {
"type": "object",
"properties": {
"attr_g88": {
"type": "integer"
},
"attr_c08": {
"type": "string"
},
"key_s91": {
"type": "string"
},
"dim_r51": {
"type": "string"
},
"val_n61": {
"type": "number"
}
},
"required": [
"val_n61",
"di... | {"attr_g88": "222ms", "attr_c08": "Charlie", "key_s91": "Alice", "dim_r51": "Charlie", "val_n61": 112.44} | Field 'attr_g88' must be number, got string with unit | {"attr_g88":222,"attr_c08":"Charlie","key_s91":"Alice","dim_r51":"Charlie","val_n61":112.44} |
TASK repair_structured_output
SPEC
FIELD key_p14 TYPE string VALUES success|error|warning|info REQUIRED no
FIELD attr_d56 TYPE string VALUES single|married|divorced REQUIRED no
FIELD val_w31[].field_h28 TYPE boolean REQUIRED yes
FIELD val_w31[].attr_l87 TYPE string REQUIRED no
FIELD val_w31[].col_k55 TYPE integer REQU... | {"key_p14":"error","attr_d56":"divorced","val_w31":[{"field_h28":false,"attr_l87":"Paris","dim_a28":"JPY","col_m39":29,"field_q79":true,"field_k22":"QC-07"},{"field_h28":true,"attr_l87":"Smith","col_k55":548,"field_a98":true,"dim_a28":"JPY","col_m39":953,"field_q79":false},{"field_h28":false,"col_k55":561,"field_a98":f... | single_quotes | {
"type": "object",
"properties": {
"key_p14": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"attr_d56": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"val_... | {'key_p14':'error','attr_d56':'divorced','val_w31':[{'field_h28':false,'attr_l87':'Paris','dim_a28':'JPY','col_m39':29,'field_q79':true,'field_k22':'QC-07'},{'field_h28':true,'attr_l87':'Smith','col_k55':548,'field_a98':true,'dim_a28':'JPY','col_m39':953,'field_q79':false},{'field_h28':false,'col_k55':561,'field_a98':f... | Expecting property name enclosed in double quotes | {"key_p14":"error","attr_d56":"divorced","val_w31":[{"field_h28":false,"attr_l87":"Paris","dim_a28":"JPY","col_m39":29,"field_q79":true,"field_k22":"QC-07"},{"field_h28":true,"attr_l87":"Smith","col_k55":548,"field_a98":true,"dim_a28":"JPY","col_m39":953,"field_q79":false},{"field_h28":false,"col_k55":561,"field_a98":f... |
TASK repair_structured_output
SPEC
FIELD key_i18 TYPE integer REQUIRED no
FIELD param_x37 TYPE string REQUIRED no
FIELD field_i74 TYPE string_uri REQUIRED no
FIELD col_b48 TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED no
FIELD val_b57.prop_i76 TYPE string VALUES option_a|option_b|option_c... | {"param_x37":"Maria","field_i74":"https://api.io/v1","val_b57":{"dim_t32":null,"key_i43":"option_a","prop_v37":{"prop_c06":"2023-12-25","key_y06":"user@domain.com","field_o26":485.27,"attr_w71":538,"param_a80":"https://example.com/data","val_k69":"demo","dim_h64":526},"prop_x26":"Tokyo","key_g01":"delivered"},"param_c3... | extra_field | {
"type": "object",
"properties": {
"key_i18": {
"type": "integer"
},
"param_x37": {
"type": "string"
},
"field_i74": {
"type": "string",
"format": "uri"
},
"col_b48": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3... | {"param_x37": "Maria", "field_i74": "https://api.io/v1", "val_b57": {"dim_t32": null, "key_i43": "option_a", "prop_v37": {"prop_c06": "2023-12-25", "key_y06": "user@domain.com", "field_o26": 485.27, "attr_w71": 538, "param_a80": "https://example.com/data", "val_k69": "demo", "dim_h64": 526}, "prop_x26": "Tokyo", "key_g... | Unknown field 'extra_value_7795' not defined in schema | {"param_x37":"Maria","field_i74":"https://api.io/v1","val_b57":{"dim_t32":null,"key_i43":"option_a","prop_v37":{"prop_c06":"2023-12-25","key_y06":"user@domain.com","field_o26":485.27,"attr_w71":538,"param_a80":"https://example.com/data","val_k69":"demo","dim_h64":526},"prop_x26":"Tokyo","key_g01":"delivered"},"param_c3... |
TASK repair_structured_output
SPEC
FIELD val_p23.col_k94 TYPE string REQUIRED yes
FIELD val_p23.dim_a98 TYPE string REQUIRED yes
FIELD val_p23.val_e44 TYPE string VALUES single|married|divorced REQUIRED yes
FIELD val_p23.field_o41 TYPE integer REQUIRED no
FIELD val_p23.key_j57 TYPE string VALUES reliable|unstable|inte... | {"prop_n66":"John","field_y26":454,"prop_a84":734.36} | missing_bracket | {
"type": "object",
"properties": {
"val_p23": {
"type": "object",
"properties": {
"col_k94": {
"type": "string"
},
"dim_a98": {
"type": "string"
},
"val_e44": {
"type": "string",
"enum": [
"single",
... | {"prop_n66":"John","field_y26":454,"prop_a84":734.36} | Missing closing bracket | {"prop_n66":"John","field_y26":454,"prop_a84":734.36} |
TASK repair_structured_output
SPEC
FIELD val_n28 TYPE string VALUES success|error|warning|info REQUIRED yes
FIELD attr_i84 TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD col_f67 TYPE number REQUIRED yes
BROKEN_OUTPUT
"val_n28":"success","col_f67":921.45} | {"val_n28":"success","col_f67":921.45} | missing_brace | {
"type": "object",
"properties": {
"val_n28": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"attr_i84": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"col_f67"... | "val_n28":"success","col_f67":921.45} | Missing closing brace | {"val_n28":"success","col_f67":921.45} |
TASK repair_structured_output
SPEC
FIELD transaction_id TYPE null REQUIRED no
FIELD berth_slot TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD item_id TYPE string REQUIRED yes
FIELD url.umi TYPE integer REQUIRED yes
FIELD url.total TYPE string REQUIRED no
FIELD url.length TYPE integer REQUIRED n... | {"berth_slot":"in_progress","item_id":"2024-06-30","url":{"umi":45,"total":"pending","frequency_hz":"heterozygous","order_id":67.62}} | partial_structure | {
"type": "object",
"properties": {
"transaction_id": {
"type": "null"
},
"berth_slot": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"item_id": {
"type": "string"
},
"url": {
"type": "ob... | The url is {'umi': 45, 'total': 'pending', 'frequency_hz': 'heterozygous', 'order_id': 67.62} and {"berth_slot":"in_progress","item_id":"2024-06-30","url":{"umi":45,"total":"pending","frequency_hz":"heterozygous","order_id":67.62}} | Output mixes natural language with JSON | {"berth_slot":"in_progress","item_id":"2024-06-30","url":{"umi":45,"total":"pending","frequency_hz":"heterozygous","order_id":67.62}} |
TASK repair_structured_output
SPEC
FIELD prop_k01 TYPE null REQUIRED yes
FIELD key_k94 TYPE null REQUIRED no
FIELD dim_u50 TYPE string_uri REQUIRED yes
FIELD prop_w74.field_o17 TYPE string VALUES type_a|type_b|type_c REQUIRED yes
FIELD prop_w74.field_c12 TYPE string VALUES level_1|level_2|level_3 REQUIRED no
FIELD pro... | {"prop_k01":null,"key_k94":null,"dim_u50":"https://example.org/data","prop_w74":{"field_o17":"type_b","field_c12":"level_2","prop_n56":"Alice"}} | missing_brace | {
"type": "object",
"properties": {
"prop_k01": {
"type": "null"
},
"key_k94": {
"type": "null"
},
"dim_u50": {
"type": "string",
"format": "uri"
},
"prop_w74": {
"type": "object",
"properties": {
"field_o17": {
"type": "string",
... | "prop_k01":null,"key_k94":null,"dim_u50":"https://example.org/data","prop_w74":{"field_o17":"type_b","field_c12":"level_2","prop_n56":"Alice"}} | Missing closing brace | {"prop_k01":null,"key_k94":null,"dim_u50":"https://example.org/data","prop_w74":{"field_o17":"type_b","field_c12":"level_2","prop_n56":"Alice"}} |
TASK repair_structured_output
SPEC
FIELD length TYPE string VALUES type_a|type_b|type_c REQUIRED no
FIELD diagnosis_code TYPE string REQUIRED no
FIELD country TYPE integer REQUIRED yes
FIELD first_name TYPE integer REQUIRED yes
FIELD color TYPE string VALUES cat_a|cat_b REQUIRED yes
FIELD allele TYPE number REQUIRED y... | {"diagnosis_code":"test@example.com","country":860,"first_name":443,"color":"cat_b","allele":677.0} | extra_text_before | {
"type": "object",
"properties": {
"length": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c"
]
},
"diagnosis_code": {
"type": "string"
},
"country": {
"type": "integer"
},
"first_name": {
"type": "integer"
},
... | The parsed result is:
{"diagnosis_code":"test@example.com","country":860,"first_name":443,"color":"cat_b","allele":677.0} | Output contains non-JSON text before the object | {"diagnosis_code":"test@example.com","country":860,"first_name":443,"color":"cat_b","allele":677.0} |
TASK repair_structured_output
SPEC
FIELD dim_i72 TYPE boolean REQUIRED yes
FIELD val_g78 TYPE integer REQUIRED yes
FIELD param_b70 TYPE string REQUIRED yes
FIELD field_f19 TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED yes
BROKEN_OUTPUT
I found that dim_i72 should be True. {"dim_i72":true... | {"dim_i72":true,"val_g78":473,"param_b70":"Jane","field_f19":"level_4"} | partial_structure | {
"type": "object",
"properties": {
"dim_i72": {
"type": "boolean"
},
"val_g78": {
"type": "integer"
},
"param_b70": {
"type": "string"
},
"field_f19": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
... | I found that dim_i72 should be True. {"dim_i72":true,"val_g78":473,"param_b70":"Jane","field_f19":"level_4"} | Output mixes natural language with JSON | {"dim_i72":true,"val_g78":473,"param_b70":"Jane","field_f19":"level_4"} |
TASK repair_structured_output
SPEC
FIELD field_b52.prop_j20 TYPE integer REQUIRED yes
FIELD field_b52.col_z19 TYPE string REQUIRED yes
FIELD field_b52.attr_u36 TYPE integer REQUIRED yes
FIELD field_b52.key_f18 TYPE string REQUIRED no
FIELD field_b52.field_t12 TYPE boolean REQUIRED yes
FIELD key_w69 TYPE integer REQUIR... | {"field_b52":{"prop_j20":137,"col_z19":"Johnson","attr_u36":639,"key_f18":"bar","field_t12":false},"attr_j88":null,"dim_e29":130.83,"key_k53":"level_3","col_e50":"Silva"} | markdown_fences | {
"type": "object",
"properties": {
"field_b52": {
"type": "object",
"properties": {
"prop_j20": {
"type": "integer"
},
"col_z19": {
"type": "string"
},
"attr_u36": {
"type": "integer"
},
"key_f18": {
"ty... | ```json
{"field_b52":{"prop_j20":137,"col_z19":"Johnson","attr_u36":639,"key_f18":"bar","field_t12":false},"attr_j88":null,"dim_e29":130.83,"key_k53":"level_3","col_e50":"Silva"}
``` | Output contains markdown code fences | {"field_b52":{"prop_j20":137,"col_z19":"Johnson","attr_u36":639,"key_f18":"bar","field_t12":false},"attr_j88":null,"dim_e29":130.83,"key_k53":"level_3","col_e50":"Silva"} |
TASK repair_structured_output
SPEC
FIELD comments TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD updated_at TYPE string REQUIRED no
FIELD name TYPE integer REQUIRED no
FIELD amplitude TYPE integer REQUIRED no
FIELD position TYPE integer REQUIRED no
FIELD diagnosis_code.length TYPE integer REQUIRED yes... | {"comments":"blue","amplitude":680,"diagnosis_code":{"length":784,"log_level":"Bob","format":"level_3","shipping":[738.2]},"annotation":"cat_c","invoice_id":true} | missing_required | {
"type": "object",
"properties": {
"comments": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"updated_at": {
"type": "string"
},
"name": {
"type": "integer"
},
"amplitude": {
"type"... | {"comments": "blue", "amplitude": 680, "diagnosis_code": {"length": 784, "log_level": "Bob", "format": "level_3", "shipping": [738.2]}, "invoice_id": true} | Required field 'annotation' is missing | {"comments":"blue","amplitude":680,"diagnosis_code":{"length":784,"log_level":"Bob","format":"level_3","shipping":[738.2]},"annotation":"cat_c","invoice_id":true} |
TASK repair_structured_output
SPEC
FIELD paragraph TYPE boolean REQUIRED yes
FIELD start_date TYPE integer REQUIRED no
FIELD build_status TYPE string REQUIRED yes
FIELD branch TYPE number REQUIRED no
FIELD tile[] TYPE integer REQUIRED yes
FIELD product_id[].format TYPE string REQUIRED no
FIELD product_id[].frequency_h... | {"paragraph":true,"start_date":648,"build_status":"hello","branch":11.94,"tile":[738],"product_id":[{"format":"chr1","frequency_hz":"unstable"},{"format":"A short description.","frequency_hz":"reliable"}]} | markdown_fences | {
"type": "object",
"properties": {
"paragraph": {
"type": "boolean"
},
"start_date": {
"type": "integer"
},
"build_status": {
"type": "string"
},
"branch": {
"type": "number"
},
"tile": {
"type": "array",
"items": {
"type": "integer"
... | ```json
{"paragraph":true,"start_date":648,"build_status":"hello","branch":11.94,"tile":[738],"product_id":[{"format":"chr1","frequency_hz":"unstable"},{"format":"A short description.","frequency_hz":"reliable"}]}
``` | Output contains markdown code fences | {"paragraph":true,"start_date":648,"build_status":"hello","branch":11.94,"tile":[738],"product_id":[{"format":"chr1","frequency_hz":"unstable"},{"format":"A short description.","frequency_hz":"reliable"}]} |
TASK repair_structured_output
SPEC
FIELD field_u66 TYPE string REQUIRED yes
FIELD key_a22 TYPE boolean REQUIRED no
FIELD dim_x80 TYPE integer REQUIRED yes
FIELD col_y54 TYPE string REQUIRED no
BROKEN_OUTPUT
I need to look up the information first.
Action: align_reads
Result: {"field_u66": "PASS", "key_a22": false, "d... | {"field_u66":"PASS","key_a22":false,"dim_x80":949,"col_y54":"Oliveira"} | agent_chain | {
"type": "object",
"properties": {
"field_u66": {
"type": "string"
},
"key_a22": {
"type": "boolean"
},
"dim_x80": {
"type": "integer"
},
"col_y54": {
"type": "string"
}
},
"required": [
"field_u66",
"dim_x80"
]
} | I need to look up the information first.
Action: align_reads
Result: {"field_u66": "PASS", "key_a22": false, "dim_x80": 949}
I'll query our database.
Action: apply_discount
Result: | Agent multi-step chain with truncated tool output | {"field_u66":"PASS","key_a22":false,"dim_x80":949,"col_y54":"Oliveira"} |
TASK repair_structured_output
SPEC
FIELD attr_f22 TYPE integer REQUIRED no
FIELD field_x34 TYPE integer REQUIRED yes
FIELD param_r14[].dim_z76 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD param_r14[].param_q16 TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes
FIELD param_... | {"attr_f22":310,"field_x34":820,"key_o76":[468,325]} | tool_call_text_mix | {
"type": "object",
"properties": {
"attr_f22": {
"type": "integer"
},
"field_x34": {
"type": "integer"
},
"param_r14": {
"type": "array",
"items": {
"type": "object",
"properties": {
"dim_z76": {
"type": "string",
"enum":... | I'll query our database.
<tool_call name="check_availability">
{"attr_f22":310,"field_x34":820,"key_o76":[468,325]}
</tool_call.
The result is ready. | Agent response mixes reasoning text with tool call | {"attr_f22":310,"field_x34":820,"key_o76":[468,325]} |
TASK repair_structured_output
SPEC
FIELD dim_r76 TYPE string REQUIRED yes
FIELD prop_l29 TYPE number REQUIRED yes
FIELD key_s72 TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD prop_l57[] TYPE integer REQUIRED no
BROKEN_OUTPUT
Tool: run_diagnostics
Params: {"dim_r76": "Sao Paulo", "prop_l29": 55.07, "prop_... | {"dim_r76":"Sao Paulo","prop_l29":55.07,"key_s72":"medium","prop_l57":[341,10,461]} | tool_call_wrong_param | {
"type": "object",
"properties": {
"dim_r76": {
"type": "string"
},
"prop_l29": {
"type": "number"
},
"key_s72": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
},
"prop_l57": {
"type": "array",
"... | Tool: run_diagnostics
Params: {"dim_r76": "Sao Paulo", "prop_l29": 55.07, "prop_l57": [341, 10, 461], "key_s72_value": "medium"} | Agent used wrong parameter name 'key_s72_value' instead of 'key_s72' | {"dim_r76":"Sao Paulo","prop_l29":55.07,"key_s72":"medium","prop_l57":[341,10,461]} |
TASK repair_structured_output
SPEC
FIELD index TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD vital_sign TYPE integer REQUIRED no
FIELD sensor_id TYPE string_date-time REQUIRED yes
FIELD visible TYPE string REQUIRED yes
FIELD section.transaction_id TYPE integer REQUIRED no
FIELD secti... | {"index":"rejected","vital_sign":458,"sensor_id":"2020-01-11T22:38:00Z","visible":"cancelled","section":{"transaction_id":531,"torque_output":"PASS","active":{"first_name":680,"phenotype":"2024-01-15","comments":"viewer","annotation":136.01,"state":192.9,"vessel_name":"London"}}} | tool_call_wrong_param | {
"type": "object",
"properties": {
"index": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"vital_sign": {
"type": "integer"
},
"sensor_id": {
"type": "string",
"format": "date-time"
... | Tool: get_inventory
Params: {"index": "rejected", "sensor_id": "2020-01-11T22:38:00Z", "visible": "cancelled", "section": {"transaction_id": 531, "torque_output": "PASS", "active": {"first_name": 680, "phenotype": "2024-01-15", "comments": "viewer", "annotation": 136.01, "state": 192.9, "vessel_name": "London"}}, "vita... | Agent used wrong parameter name 'vital_sign_new' instead of 'vital_sign' | {"index":"rejected","vital_sign":458,"sensor_id":"2020-01-11T22:38:00Z","visible":"cancelled","section":{"transaction_id":531,"torque_output":"PASS","active":{"first_name":680,"phenotype":"2024-01-15","comments":"viewer","annotation":136.01,"state":192.9,"vessel_name":"London"}}} |
TASK repair_structured_output
SPEC
FIELD medication TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD loan_amount TYPE string VALUES level_1|level_2 REQUIRED no
FIELD deploy_target TYPE string VALUES option_a|option_b|option_c REQUIRED yes
FIELD age TYPE string REQUIRED yes
FIELD order_i... | {"medication":"confirmed","loan_amount":"level_2","deploy_target":"option_b","age":"Alice","order_id":"Bob","chapter":"A short description."} | invalid_enum | {
"type": "object",
"properties": {
"medication": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"loan_amount": {
"type": "string",
"enum": [
"level_1",
"level_2"
]
},
"... | {"medication": "confirmed", "loan_amount": "invalid_choice_891", "deploy_target": "option_b", "age": "Alice", "order_id": "Bob", "chapter": "A short description."} | Field 'loan_amount' has invalid enum value 'invalid_choice_891', expected one of ['level_1', 'level_2'] | {"medication":"confirmed","loan_amount":"level_2","deploy_target":"option_b","age":"Alice","order_id":"Bob","chapter":"A short description."} |
TASK repair_structured_output
SPEC
FIELD batch_code TYPE string REQUIRED no
FIELD start_date TYPE integer REQUIRED yes
FIELD pressure_kpa[].balance TYPE string REQUIRED yes
FIELD pressure_kpa[].vessel_name TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD pressure_kpa[].longitude TYPE string REQUIRED... | {"batch_code":"user@domain.com","start_date":14,"pressure_kpa":[{"balance":"test","vessel_name":"arctic","longitude":"Johnson","diagnosis_code":"info","product_id":[false,true],"crew_id":["inland"]},{"balance":"Berlin","vessel_name":"oceanic","longitude":"sample","diagnosis_code":"warning","crew_id":["oceanic","coastal... | truncated_object | {
"type": "object",
"properties": {
"batch_code": {
"type": "string"
},
"start_date": {
"type": "integer"
},
"pressure_kpa": {
"type": "array",
"items": {
"type": "object",
"properties": {
"balance": {
"type": "string"
},
... | {"batch_code":"user@domain.com","start_date":14,"pressure_kpa":[{"balance":"test","vessel_name":"arctic","longitude":"Johnson","diagnosis_code":"info","product_id":[false,true],"crew_id":["inland"]},{"balance":"Berlin","vessel_name":"oceanic","longitude":"sample","diagnosis_code":"warning","crew_id":["oceanic","coastal... | Unexpected end of JSON input — truncated object | {"batch_code":"user@domain.com","start_date":14,"pressure_kpa":[{"balance":"test","vessel_name":"arctic","longitude":"Johnson","diagnosis_code":"info","product_id":[false,true],"crew_id":["inland"]},{"balance":"Berlin","vessel_name":"oceanic","longitude":"sample","diagnosis_code":"warning","crew_id":["oceanic","coastal... |
TASK repair_structured_output
SPEC
FIELD dim_b37 TYPE number REQUIRED no
FIELD prop_h95 TYPE string REQUIRED no
FIELD prop_r05.val_y63.field_q76 TYPE boolean REQUIRED yes
FIELD prop_r05.val_y63.val_s44 TYPE integer REQUIRED yes
FIELD prop_r05.val_y63.attr_h44 TYPE string REQUIRED no
FIELD prop_r05.val_y63.col_v76 TYPE... | {"dim_b37":579.04,"prop_h95":"Hapag-Lloyd-Express","param_x70":true,"dim_r41":"Oliveira","dim_q34":730.81,"attr_d91":"test@example.com","col_v82":321} | missing_required | {
"type": "object",
"properties": {
"dim_b37": {
"type": "number"
},
"prop_h95": {
"type": "string"
},
"prop_r05": {
"type": "object",
"properties": {
"val_y63": {
"type": "object",
"properties": {
"field_q76": {
"type... | {"dim_b37": 579.04, "prop_h95": "Hapag-Lloyd-Express", "param_x70": true, "dim_r41": "Oliveira", "dim_q34": 730.81, "col_v82": 321} | Required field 'attr_d91' is missing | {"dim_b37":579.04,"prop_h95":"Hapag-Lloyd-Express","param_x70":true,"dim_r41":"Oliveira","dim_q34":730.81,"attr_d91":"test@example.com","col_v82":321} |
TASK repair_structured_output
SPEC
FIELD col_h17 TYPE integer REQUIRED no
FIELD key_v56 TYPE number REQUIRED no
FIELD param_v33 TYPE string_date-time REQUIRED yes
FIELD dim_s69 TYPE integer REQUIRED yes
BROKEN_OUTPUT
{"col_h17":369,"key_v56":135.45,"param_v33":"2026-07-04T13:26:00Z","dim_s69":986 | {"col_h17":369,"key_v56":135.45,"param_v33":"2026-07-04T13:26:00Z","dim_s69":986} | truncated_object | {
"type": "object",
"properties": {
"col_h17": {
"type": "integer"
},
"key_v56": {
"type": "number"
},
"param_v33": {
"type": "string",
"format": "date-time"
},
"dim_s69": {
"type": "integer"
}
},
"required": [
"param_v33",
"dim_s69"
]
} | {"col_h17":369,"key_v56":135.45,"param_v33":"2026-07-04T13:26:00Z","dim_s69":986 | Unexpected end of JSON input — truncated object | {"col_h17":369,"key_v56":135.45,"param_v33":"2026-07-04T13:26:00Z","dim_s69":986} |
TASK repair_structured_output
SPEC
FIELD phone TYPE string REQUIRED no
FIELD amount.section.date TYPE string VALUES draft|published|archived REQUIRED no
FIELD amount.section.torque_output TYPE string REQUIRED no
FIELD amount.section.wavelength TYPE string_email REQUIRED no
FIELD amount.section.balance TYPE boolean REQ... | {"phone":"demo","amount":{"section":{"date":"draft","torque_output":"Johnson","balance":true,"quantity":"JPY","bill_of_lading":false,"priority":74},"umi":"https://api.example.com/v1","currency":"mode_b"},"collateral":"Paris","terminal_id":true,"ward":"ops@example.com","quantity":"type_b","feedback":829.54,"full_name":{... | single_quotes | {
"type": "object",
"properties": {
"phone": {
"type": "string"
},
"amount": {
"type": "object",
"properties": {
"section": {
"type": "object",
"properties": {
"date": {
"type": "string",
"enum": [
"dra... | {'phone':'demo','amount':{'section':{'date':'draft','torque_output':'Johnson','balance':true,'quantity':'JPY','bill_of_lading':false,'priority':74},'umi':'https://api.example.com/v1','currency':'mode_b'},'collateral':'Paris','terminal_id':true,'ward':'ops@example.com','quantity':'type_b','feedback':829.54,'full_name':{... | Expecting property name enclosed in double quotes | {"phone":"demo","amount":{"section":{"date":"draft","torque_output":"Johnson","balance":true,"quantity":"JPY","bill_of_lading":false,"priority":74},"umi":"https://api.example.com/v1","currency":"mode_b"},"collateral":"Paris","terminal_id":true,"ward":"ops@example.com","quantity":"type_b","feedback":829.54,"full_name":{... |
TASK repair_structured_output
SPEC
FIELD lab_result TYPE boolean REQUIRED yes
FIELD maturity_date.category TYPE string_uri REQUIRED no
FIELD maturity_date.order_id TYPE string_uri REQUIRED no
FIELD maturity_date.width TYPE string_date-time REQUIRED yes
FIELD maturity_date.comments TYPE string_date-time REQUIRED yes
FI... | {"lab_result":true,"position":669,"filter_flag":930.08,"quality_score":"FWD"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"lab_result": {
"type": "boolean"
},
"maturity_date": {
"type": "object",
"properties": {
"category": {
"type": "string",
"format": "uri"
},
"order_id": {
"type": "string",
"format": "ur... | Tool: search
Params: {"lab_result": true, "filter_flag": 930.08, "quality_score": "FWD", "position_id": 669} | Agent used wrong parameter name 'position_id' instead of 'position' | {"lab_result":true,"position":669,"filter_flag":930.08,"quality_score":"FWD"} |
TASK repair_structured_output
SPEC
FIELD torque_output TYPE integer REQUIRED no
FIELD start_date TYPE integer REQUIRED no
FIELD width TYPE string REQUIRED yes
FIELD email TYPE string REQUIRED no
FIELD category TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD pressure_kpa TYPE string REQUIRED no
FIELD fo... | {"start_date":274,"width":"chr1","category":"pro","pressure_kpa":"GRCh38","footnote":"GRCh38","paragraph":"synonymous"} | markdown_explanation | {
"type": "object",
"properties": {
"torque_output": {
"type": "integer"
},
"start_date": {
"type": "integer"
},
"width": {
"type": "string"
},
"email": {
"type": "string"
},
"category": {
"type": "string",
"enum": [
"free",
"ba... | Sure, here's the result:
```json
{"start_date":274,"width":"chr1","category":"pro","pressure_kpa":"GRCh38","footnote":"GRCh38","paragraph":"synonymous"}
```
Analysis finished. | Output contains markdown and explanatory text around JSON | {"start_date":274,"width":"chr1","category":"pro","pressure_kpa":"GRCh38","footnote":"GRCh38","paragraph":"synonymous"} |
TASK repair_structured_output
SPEC
FIELD attr_h04 TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
FIELD dim_r87 TYPE integer REQUIRED yes
FIELD param_j33.prop_d55.col_u52 TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD param_j33.prop_d55.prop_o85 TYPE integer REQUIRED no
FIELD param_j33.prop_... | {"attr_h04":"unstable","dim_r87":287,"param_j33":{"prop_d55":{"prop_o85":694,"val_c31":"John","field_c36":false,"dim_r55":"rejected","dim_h30":834},"attr_s85":"Silva","attr_z88":9,"attr_l86":{"col_a81":"confirmed","dim_n72":"JPY","attr_c79":"London","field_v26":"intermittent","dim_o63":"quux"},"dim_z90":"https://exampl... | wrong_type | {
"type": "object",
"properties": {
"attr_h04": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
},
"dim_r87": {
"type": "integer"
},
"param_j33": {
"type": "object",
"properties": {
"prop_d55": {
... | {"attr_h04": "unstable", "dim_r87": "\"287\"", "param_j33": {"prop_d55": {"prop_o85": 694, "val_c31": "John", "field_c36": false, "dim_r55": "rejected", "dim_h30": 834}, "attr_s85": "Silva", "attr_z88": 9, "attr_l86": {"col_a81": "confirmed", "dim_n72": "JPY", "attr_c79": "London", "field_v26": "intermittent", "dim_o63... | Field 'dim_r87' must be integer, got string | {"attr_h04":"unstable","dim_r87":287,"param_j33":{"prop_d55":{"prop_o85":694,"val_c31":"John","field_c36":false,"dim_r55":"rejected","dim_h30":834},"attr_s85":"Silva","attr_z88":9,"attr_l86":{"col_a81":"confirmed","dim_n72":"JPY","attr_c79":"London","field_v26":"intermittent","dim_o63":"quux"},"dim_z90":"https://exampl... |
TASK repair_structured_output
SPEC
FIELD param_g49 TYPE string VALUES type_a|type_b REQUIRED no
FIELD attr_u58 TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED yes
FIELD col_l31 TYPE integer REQUIRED no
FIELD param_m69 TYPE string VALUES small|medium|large|xl REQUIRED no
BROKEN_OUTPUT
{"param_g49":"type_a","at... | {"param_g49":"type_a","attr_u58":"type_c","col_l31":153} | truncated_array | {
"type": "object",
"properties": {
"param_g49": {
"type": "string",
"enum": [
"type_a",
"type_b"
]
},
"attr_u58": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d"
]
},
"col_l31": {
"typ... | {"param_g49":"type_a","attr_u58":"type_c","col_l31":153 | Unexpected end of JSON input — truncated object | {"param_g49":"type_a","attr_u58":"type_c","col_l31":153} |
TASK repair_structured_output
SPEC
FIELD transaction_id TYPE null REQUIRED yes
FIELD shipping TYPE integer REQUIRED no
FIELD weight TYPE integer REQUIRED no
FIELD tax TYPE null REQUIRED yes
FIELD brake_pressure[] TYPE string REQUIRED yes
FIELD price[].currency TYPE integer REQUIRED no
FIELD price[].age TYPE string VAL... | {"transaction_id":null,"shipping":545,"tax":null,"brake_pressure":["Hapag-Lloyd-Express","2023-12-25","https://api.example.com/v1","Oliveira"]} | tool_call_python_syntax | {
"type": "object",
"properties": {
"transaction_id": {
"type": "null"
},
"shipping": {
"type": "integer"
},
"weight": {
"type": "integer"
},
"tax": {
"type": "null"
},
"brake_pressure": {
"type": "array",
"items": {
"type": "string"
... | book_appointment(transaction_id=None, shipping=545, tax=None, brake_pressure=['Hapag-Lloyd-Express', '2023-12-25', 'https://api.example.com/v1', 'Oliveira']) | Tool call uses Python syntax instead of JSON | {"transaction_id":null,"shipping":545,"tax":null,"brake_pressure":["Hapag-Lloyd-Express","2023-12-25","https://api.example.com/v1","Oliveira"]} |
TASK repair_structured_output
SPEC
FIELD date TYPE string REQUIRED no
FIELD decay_rate TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD values TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD maturity_date TYPE integer REQUIRED no
FIELD age.message TYPE string_email REQUIRED no
... | {"decay_rate":"hemizygous","values":"black","maturity_date":224,"age":{"span_id":36,"product_id":"test@example.com","diagnosis_code":{"email":"test@domain.org","due_date":"Bob","organism":"hello","phone":"open"}}} | tool_call_text_mix | {
"type": "object",
"properties": {
"date": {
"type": "string"
},
"decay_rate": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"values": {
"type": "string",
"enum": [
"red",
"blue",
... | Processing the request now.
<tool_call name="read_sensor_array">
{"decay_rate":"hemizygous","values":"black","maturity_date":224,"age":{"span_id":36,"product_id":"test@example.com","diagnosis_code":{"email":"test@domain.org","due_date":"Bob","organism":"hello","phone":"open"}}}
</tool_call.
The result is ready. | Agent response mixes reasoning text with tool call | {"decay_rate":"hemizygous","values":"black","maturity_date":224,"age":{"span_id":36,"product_id":"test@example.com","diagnosis_code":{"email":"test@domain.org","due_date":"Bob","organism":"hello","phone":"open"}}} |
TASK repair_structured_output
SPEC
FIELD name TYPE string REQUIRED no
FIELD fleet_number TYPE number REQUIRED no
FIELD filter_flag TYPE integer REQUIRED yes
FIELD humidity_pct TYPE integer REQUIRED yes
FIELD values.weight TYPE string_uri REQUIRED yes
FIELD values.collateral TYPE string_uri REQUIRED no
FIELD values.hal... | {"name":"Sao Paulo","filter_flag":261,"humidity_pct":302,"values":{"weight":"https://data.org/api","collateral":"https://example.org/api","half_life":"Smith","decay_rate":"high","status":"https://api.com/api"},"date":742} | missing_brace | {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"fleet_number": {
"type": "number"
},
"filter_flag": {
"type": "integer"
},
"humidity_pct": {
"type": "integer"
},
"values": {
"type": "object",
"properties": {
"weight":... | {"name":"Sao Paulo","filter_flag":261,"humidity_pct":302,"values":{"weight":"https://data.org/api","collateral":"https://example.org/api","half_life":"Smith","decay_rate":"high","status":"https://api.com/api"},"date":742 | Missing closing brace | {"name":"Sao Paulo","filter_flag":261,"humidity_pct":302,"values":{"weight":"https://data.org/api","collateral":"https://example.org/api","half_life":"Smith","decay_rate":"high","status":"https://api.com/api"},"date":742} |
TASK repair_structured_output
SPEC
FIELD dim_m94 TYPE boolean REQUIRED no
FIELD field_k74 TYPE integer REQUIRED yes
FIELD prop_s72 TYPE number REQUIRED no
FIELD param_y69 TYPE string VALUES option_a|option_b REQUIRED yes
FIELD param_x04[].col_t88 TYPE boolean REQUIRED yes
FIELD param_x04[].field_k33 TYPE boolean REQUI... | {"field_k74":468,"prop_s72":934.2,"param_y69":"option_a","param_x04":[{"col_t88":true,"field_k33":false,"attr_o08":"test","prop_a23":"white","val_o64":"intermittent","val_t89":15.89,"key_e86":"test@domain.org"},{"col_t88":false,"field_k33":true,"attr_o08":"approved","prop_a23":"green","col_r86":"level_2","val_o64":"int... | tool_call_python_syntax | {
"type": "object",
"properties": {
"dim_m94": {
"type": "boolean"
},
"field_k74": {
"type": "integer"
},
"prop_s72": {
"type": "number"
},
"param_y69": {
"type": "string",
"enum": [
"option_a",
"option_b"
]
},
"param_x04": {
... | apply_discount(field_k74=468, prop_s72=934.2, param_y69='option_a', param_x04=[{'col_t88': True, 'field_k33': False, 'attr_o08': 'test', 'prop_a23': 'white', 'val_o64': 'intermittent', 'val_t89': 15.89, 'key_e86': 'test@domain.org'}, {'col_t88': False, 'field_k33': True, 'attr_o08': 'approved', 'prop_a23': 'green', 'co... | Tool call uses Python syntax instead of JSON | {"field_k74":468,"prop_s72":934.2,"param_y69":"option_a","param_x04":[{"col_t88":true,"field_k33":false,"attr_o08":"test","prop_a23":"white","val_o64":"intermittent","val_t89":15.89,"key_e86":"test@domain.org"},{"col_t88":false,"field_k33":true,"attr_o08":"approved","prop_a23":"green","col_r86":"level_2","val_o64":"int... |
TASK repair_structured_output
SPEC
FIELD chapter TYPE string REQUIRED yes
FIELD trace_id TYPE string_uri REQUIRED no
FIELD allele TYPE string REQUIRED yes
FIELD loan_amount TYPE string REQUIRED no
FIELD thumbnail TYPE string REQUIRED no
FIELD date TYPE null REQUIRED yes
FIELD width.half_life TYPE string_email REQUIRED... | {"chapter":"Maria","allele":"https://api.example.com/v1","loan_amount":"quux","thumbnail":"This is a test value.","date":null,"width":{"half_life":"ops@domain.org","updated_at":{"title":825,"barcode":null,"role":"2023-02-27T18:53:00Z"},"strand":8,"salinity":"type_e"},"shipper_ref":{"bill_of_lading":745,"half_life":"opt... | tool_call_wrong_param | {
"type": "object",
"properties": {
"chapter": {
"type": "string"
},
"trace_id": {
"type": "string",
"format": "uri"
},
"allele": {
"type": "string"
},
"loan_amount": {
"type": "string"
},
"thumbnail": {
"type": "string"
},
"date": {
... | Tool: book_appointment
Params: {"chapter": "Maria", "allele": "https://api.example.com/v1", "loan_amount": "quux", "thumbnail": "This is a test value.", "date": null, "shipper_ref": {"bill_of_lading": 745, "half_life": "option_a", "compound": null, "discount": {"quantity": 218, "annotation": "chr1"}}, "width_value": {"... | Agent used wrong parameter name 'width_value' instead of 'width' | {"chapter":"Maria","allele":"https://api.example.com/v1","loan_amount":"quux","thumbnail":"This is a test value.","date":null,"width":{"half_life":"ops@domain.org","updated_at":{"title":825,"barcode":null,"role":"2023-02-27T18:53:00Z"},"strand":8,"salinity":"type_e"},"shipper_ref":{"bill_of_lading":745,"half_life":"opt... |
TASK repair_structured_output
SPEC
FIELD collateral TYPE integer REQUIRED no
FIELD count TYPE string REQUIRED yes
FIELD humidity_pct TYPE null REQUIRED yes
FIELD length TYPE null REQUIRED yes
BROKEN_OUTPUT
{"count": "Tokyo", "humidity_pct": null, "length": null} | {"count":"Tokyo","humidity_pct":null,"length":null} | null_required | {
"type": "object",
"properties": {
"collateral": {
"type": "integer"
},
"count": {
"type": "string"
},
"humidity_pct": {
"type": "null"
},
"length": {
"type": "null"
}
},
"required": [
"length",
"count",
"humidity_pct"
]
} | {"count": "Tokyo", "humidity_pct": null, "length": null} | Required field 'length' is null | {"count":"Tokyo","humidity_pct":null,"length":null} |
TASK repair_structured_output
SPEC
FIELD gene_id TYPE boolean REQUIRED yes
FIELD due_date TYPE string VALUES draft|published|archived REQUIRED no
FIELD features.longitude TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD features.pressure_kpa TYPE string REQUIRED no
FIELD features.bill_of_lading TY... | {"gene_id":true,"due_date":"draft","bearing":{"format":"Johnson","label":400.97,"role":{"vessel_name":"BRL","category":"moored","gene_id":"free","velocity":"open","span_id":"2026-08-21T17:49:00Z"},"email":{"height":27,"verified":"pending","gene_id":105,"annotation":true}}} | tool_call_partial_args | {
"type": "object",
"properties": {
"gene_id": {
"type": "boolean"
},
"due_date": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"features": {
"type": "object",
"properties": {
"longitude": {
"type... | Let me check the system.
Action: queue_sequencing_run
Arguments: {"due_date": "draft", "bearing": {"format": "Johnson", "label": 400.97, "role": {"vessel_name": "BRL", "category": "moored", "gene_id": "free", "velocity": "open", "span_id": "2026-08-21T17:49:00Z"}, "email": {"height": 27, "verified": "pending", "gene_id... | Agent tool call missing required parameter 'gene_id' | {"gene_id":true,"due_date":"draft","bearing":{"format":"Johnson","label":400.97,"role":{"vessel_name":"BRL","category":"moored","gene_id":"free","velocity":"open","span_id":"2026-08-21T17:49:00Z"},"email":{"height":27,"verified":"pending","gene_id":105,"annotation":true}}} |
TASK repair_structured_output
SPEC
FIELD param_o31 TYPE string REQUIRED no
FIELD param_s36.col_i42 TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD param_s36.field_b88 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD param_s36.dim_y23 TYPE string VALUES admin|editor|viewer R... | {"param_o31":"RTG-04","param_s36":{"col_i42":"berthed","dim_y23":"editor"},"col_n52":"Maria","field_p75":254,"key_q31":470,"prop_h04":"https://example.org/data","key_k32":"https://www.com/data"} | markdown_fences | {
"type": "object",
"properties": {
"param_o31": {
"type": "string"
},
"param_s36": {
"type": "object",
"properties": {
"col_i42": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
... | ```json
{"param_o31":"RTG-04","param_s36":{"col_i42":"berthed","dim_y23":"editor"},"col_n52":"Maria","field_p75":254,"key_q31":470,"prop_h04":"https://example.org/data","key_k32":"https://www.com/data"}
``` | Output contains markdown code fences | {"param_o31":"RTG-04","param_s36":{"col_i42":"berthed","dim_y23":"editor"},"col_n52":"Maria","field_p75":254,"key_q31":470,"prop_h04":"https://example.org/data","key_k32":"https://www.com/data"} |
TASK repair_structured_output
SPEC
FIELD param_m40 TYPE integer REQUIRED yes
FIELD field_k87 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD key_e10 TYPE integer REQUIRED no
FIELD val_j61 TYPE string VALUES level_1|level_2|level_3 REQUIRED no
BROKEN_OUTPUT
{"param_m40": "510px", "field_k87": "... | {"param_m40":510,"field_k87":"homozygous","val_j61":"level_2"} | number_with_unit | {
"type": "object",
"properties": {
"param_m40": {
"type": "integer"
},
"field_k87": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"key_e10": {
"type": "integer"
},
"val_j61": {
"type": "string",
... | {"param_m40": "510px", "field_k87": "homozygous", "val_j61": "level_2"} | Field 'param_m40' must be number, got string with unit | {"param_m40":510,"field_k87":"homozygous","val_j61":"level_2"} |
TASK repair_structured_output
SPEC
FIELD repository TYPE string VALUES success|error|warning|info REQUIRED no
FIELD enabled TYPE boolean REQUIRED no
FIELD tax TYPE string_uri REQUIRED no
FIELD build_status[] TYPE boolean REQUIRED yes
BROKEN_OUTPUT
Let me analyze the request and generate the appropriate JSON.
The user... | {"repository":"warning","enabled":true,"tax":"https://data.io/api","build_status":[false,true,true,false]} | thought_process | {
"type": "object",
"properties": {
"repository": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"enabled": {
"type": "boolean"
},
"tax": {
"type": "string",
"format": "uri"
},
"build_status": {... | Let me analyze the request and generate the appropriate JSON.
The user wants a structured object with specific fields.
{"repository":"warning","enabled":true,"tax":"https://data.io/api","build_status":[false,true,true,false]} | Output contains chain-of-thought reasoning before JSON | {"repository":"warning","enabled":true,"tax":"https://data.io/api","build_status":[false,true,true,false]} |
TASK repair_structured_output
SPEC
FIELD level TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
FIELD filter_flag TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD bed_number TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD role TYPE string VALUE... | {"level":"synonymous","filter_flag":"homozygous","bed_number":"synonymous","role":"arctic","span_id":"2024-01-15"} | single_quotes | {
"type": "object",
"properties": {
"level": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"filter_flag": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"... | {'level':'synonymous','filter_flag':'homozygous','bed_number':'synonymous','role':'arctic','span_id':'2024-01-15'} | Expecting property name enclosed in double quotes | {"level":"synonymous","filter_flag":"homozygous","bed_number":"synonymous","role":"arctic","span_id":"2024-01-15"} |
TASK repair_structured_output
SPEC
FIELD prop_e62 TYPE number REQUIRED no
FIELD field_l29 TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD val_x18 TYPE string REQUIRED yes
BROKEN_OUTPUT
{"prop_e62":535.67,"val_x18":"baz"} | {"prop_e62":535.67,"val_x18":"baz"} | missing_bracket | {
"type": "object",
"properties": {
"prop_e62": {
"type": "number"
},
"field_l29": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"val_x18": {
"type": "string"
}
},
"required": [
"val_x18"
]
} | {"prop_e62":535.67,"val_x18":"baz"} | Missing closing bracket | {"prop_e62":535.67,"val_x18":"baz"} |
TASK repair_structured_output
SPEC
FIELD current_draw TYPE string VALUES mode_a|mode_b|mode_c REQUIRED no
FIELD span_id TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED yes
FIELD torque_output TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD start_date TYPE string REQUIRED yes
FIELD fleet_num... | {"current_draw":"mode_a","span_id":"cat_b","torque_output":"xl","start_date":"test@example.com"} | invalid_enum | {
"type": "object",
"properties": {
"current_draw": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c"
]
},
"span_id": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
"cat_e",
... | {"current_draw": "mode_a", "span_id": "invalid_value_776", "torque_output": "xl", "start_date": "test@example.com"} | Field 'span_id' has invalid enum value 'invalid_value_776', expected one of ['cat_a', 'cat_b', 'cat_c', 'cat_d', 'cat_e', 'cat_f'] | {"current_draw":"mode_a","span_id":"cat_b","torque_output":"xl","start_date":"test@example.com"} |
TASK repair_structured_output
SPEC
FIELD key_w10 TYPE string_email REQUIRED yes
FIELD dim_m91 TYPE number REQUIRED no
FIELD param_l77 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD attr_z42 TYPE number REQUIRED yes
FIELD prop_g22.attr_t83.param_o04 TYPE string VALUES success|error|warning|inf... | {"key_w10":"ops@test.io","dim_m91":144.47,"param_l77":"heterozygous","attr_z42":950.51,"prop_g22":{"attr_t83":{"param_o04":"info","dim_i64":"user@domain.com","prop_o49":"foo","key_k00":false,"field_c67":861},"attr_u44":80,"val_o87":"active","dim_z07":"GBP"}} | agent_chain | {
"type": "object",
"properties": {
"key_w10": {
"type": "string",
"format": "email"
},
"dim_m91": {
"type": "number"
},
"param_l77": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"attr_z42": {
... | Let me check the system.
Action: update_record
Result: {"dim_m91": 144.47, "param_l77": "heterozygous", "attr_z42": 950.51, "prop_g22": {"attr_t83": {"param_o04": "info", "dim_i64": "user@domain.com", "prop_o49": "foo", "key_k00": false, "field_c67": 861}, "attr_u44": 80, "val_o87": "active", "dim_z07": "GBP"}}
Proces... | Agent multi-step chain with truncated tool output | {"key_w10":"ops@test.io","dim_m91":144.47,"param_l77":"heterozygous","attr_z42":950.51,"prop_g22":{"attr_t83":{"param_o04":"info","dim_i64":"user@domain.com","prop_o49":"foo","key_k00":false,"field_c67":861},"attr_u44":80,"val_o87":"active","dim_z07":"GBP"}} |
TASK repair_structured_output
SPEC
FIELD phone TYPE string VALUES option_a|option_b REQUIRED yes
FIELD rating TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED yes
FIELD first_name[].message TYPE string VALUES level_1|level_2|level_3 REQUIRED yes
FIELD first_name[].transaction_id TYPE string VALUES... | {"phone":"option_a","rating":"mode_d","first_name":[{"message":"level_3","transaction_id":"mode_b","width":"cat_b","freight_class":"approved","quality_score":520},{"message":"level_2","transaction_id":"mode_c","width":"cat_a"},{"message":"level_3","transaction_id":"mode_a","width":"cat_b","freight_class":"Maria","quali... | invalid_enum | {
"type": "object",
"properties": {
"phone": {
"type": "string",
"enum": [
"option_a",
"option_b"
]
},
"rating": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
"mode_e",
"mode_f"
]
... | {"phone": "invalid_choice_518", "rating": "mode_d", "first_name": [{"message": "level_3", "transaction_id": "mode_b", "width": "cat_b", "freight_class": "approved", "quality_score": 520}, {"message": "level_2", "transaction_id": "mode_c", "width": "cat_a"}, {"message": "level_3", "transaction_id": "mode_a", "width": "c... | Field 'phone' has invalid enum value 'invalid_choice_518', expected one of ['option_a', 'option_b'] | {"phone":"option_a","rating":"mode_d","first_name":[{"message":"level_3","transaction_id":"mode_b","width":"cat_b","freight_class":"approved","quality_score":520},{"message":"level_2","transaction_id":"mode_c","width":"cat_a"},{"message":"level_3","transaction_id":"mode_a","width":"cat_b","freight_class":"Maria","quali... |
TASK repair_structured_output
SPEC
FIELD prop_g68 TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD key_q12 TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED no
FIELD field_p41 TYPE string REQUIRED no
FIELD prop_x24 TYPE integer REQUIRED no
FIELD val_b25 TYPE string VALUES cat_a|cat_... | {"prop_g68":"phone","key_q12":"level_4","field_p41":"Johnson","val_b25":"cat_a","attr_d96":287,"attr_t80":"2021-07-11T21:36:00Z"} | markdown_explanation | {
"type": "object",
"properties": {
"prop_g68": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"key_q12": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"l... | The instrument reported:
```json
{"prop_g68":"phone","key_q12":"level_4","field_p41":"Johnson","val_b25":"cat_a","attr_d96":287,"attr_t80":"2021-07-11T21:36:00Z"}
```
I've ensured all required fields are present. | Output contains markdown and explanatory text around JSON | {"prop_g68":"phone","key_q12":"level_4","field_p41":"Johnson","val_b25":"cat_a","attr_d96":287,"attr_t80":"2021-07-11T21:36:00Z"} |
TASK repair_structured_output
SPEC
FIELD col_c45 TYPE number REQUIRED yes
FIELD val_i60 TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD key_u84 TYPE string REQUIRED yes
BROKEN_OUTPUT
{"col_c45":304.15,"val_i60":"push","key_u84":"Maria"} | {"col_c45":304.15,"val_i60":"push","key_u84":"Maria"} | missing_bracket | {
"type": "object",
"properties": {
"col_c45": {
"type": "number"
},
"val_i60": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"key_u84": {
"type": "string"
}
},
"required": [
"key_u84",
"val_i60",
... | {"col_c45":304.15,"val_i60":"push","key_u84":"Maria"} | Missing closing bracket | {"col_c45":304.15,"val_i60":"push","key_u84":"Maria"} |
TASK repair_structured_output
SPEC
FIELD zip_code TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD strand TYPE integer REQUIRED no
FIELD ward TYPE integer REQUIRED no
FIELD medication TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD aligned_pct TYPE string REQUIRED no
FIELD count TYPE string VALU... | {"zip_code":"BRL","medication":"medium","aligned_pct":"test","count":"admin","score":true} | extra_field | {
"type": "object",
"properties": {
"zip_code": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"strand": {
"type": "integer"
},
"ward": {
"type": "integer"
},
"medication": {
"type": "string... | {"zip_code": "BRL", "medication": "medium", "aligned_pct": "test", "count": "admin", "score": true, "extra_data_2604": "unexpected"} | Unknown field 'extra_data_2604' not defined in schema | {"zip_code":"BRL","medication":"medium","aligned_pct":"test","count":"admin","score":true} |
TASK repair_structured_output
SPEC
FIELD prop_m67 TYPE string_email REQUIRED no
FIELD val_d00 TYPE integer REQUIRED no
FIELD val_c52.field_c61 TYPE integer REQUIRED no
FIELD val_c52.attr_w82 TYPE integer REQUIRED yes
FIELD val_c52.col_n68 TYPE boolean REQUIRED no
FIELD field_t69 TYPE integer REQUIRED no
FIELD col_c07.... | {"prop_m67":"test@example.com","val_d00":148,"field_t69":906,"col_c07":{"attr_v22":"white","key_j30":{"param_h76":"option_b","col_z32":"user@domain.com","col_h16":"offline","attr_f04":"quux","val_s83":779.08,"val_u63":638.66}},"dim_q52":"test@example.com"} | missing_brace | {
"type": "object",
"properties": {
"prop_m67": {
"type": "string",
"format": "email"
},
"val_d00": {
"type": "integer"
},
"val_c52": {
"type": "object",
"properties": {
"field_c61": {
"type": "integer"
},
"attr_w82": {
"t... | {"prop_m67":"test@example.com","val_d00":148,"field_t69":906,"col_c07":"attr_v22":"white","key_j30":{"param_h76":"option_b","col_z32":"user@domain.com","col_h16":"offline","attr_f04":"quux","val_s83":779.08,"val_u63":638.66}},"dim_q52":"test@example.com"} | Missing closing brace | {"prop_m67":"test@example.com","val_d00":148,"field_t69":906,"col_c07":{"attr_v22":"white","key_j30":{"param_h76":"option_b","col_z32":"user@domain.com","col_h16":"offline","attr_f04":"quux","val_s83":779.08,"val_u63":638.66}},"dim_q52":"test@example.com"} |
TASK repair_structured_output
SPEC
FIELD gene_id TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD account_id TYPE string REQUIRED yes
FIELD cargo_type TYPE boolean REQUIRED no
BROKEN_OUTPUT
Based on the data, account_id is REV. {"account_id":"REV","cargo_type":true} | {"account_id":"REV","cargo_type":true} | partial_structure | {
"type": "object",
"properties": {
"gene_id": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"account_id": {
"type": "string"
},
"cargo_type": {
"type": "boolean"
}
},
"required": [
"account_id"
... | Based on the data, account_id is REV. {"account_id":"REV","cargo_type":true} | Output mixes natural language with JSON | {"account_id":"REV","cargo_type":true} |
TASK repair_structured_output
SPEC
FIELD dim_f80 TYPE integer REQUIRED no
FIELD field_z49 TYPE string_email REQUIRED no
FIELD field_a74 TYPE integer REQUIRED no
FIELD prop_b85 TYPE string REQUIRED no
FIELD col_m19 TYPE number REQUIRED no
FIELD col_b42 TYPE boolean REQUIRED yes
BROKEN_OUTPUT
Tool: filter_variants
Para... | {"field_z49":"admin@example.com","field_a74":76,"prop_b85":"Sao Paulo","col_m19":855.48,"col_b42":false} | tool_call_wrong_param | {
"type": "object",
"properties": {
"dim_f80": {
"type": "integer"
},
"field_z49": {
"type": "string",
"format": "email"
},
"field_a74": {
"type": "integer"
},
"prop_b85": {
"type": "string"
},
"col_m19": {
"type": "number"
},
"col_b42"... | Tool: filter_variants
Params: {"field_z49": "admin@example.com", "field_a74": 76, "prop_b85": "Sao Paulo", "col_b42": false, "col_m19_new": 855.48} | Agent used wrong parameter name 'col_m19_new' instead of 'col_m19' | {"field_z49":"admin@example.com","field_a74":76,"prop_b85":"Sao Paulo","col_m19":855.48,"col_b42":false} |
TASK repair_structured_output
SPEC
FIELD chapter TYPE integer REQUIRED no
FIELD yield_pct TYPE string REQUIRED no
FIELD transaction_id TYPE number REQUIRED no
FIELD aligned_pct[] TYPE string VALUES success|error|warning|info REQUIRED yes
BROKEN_OUTPUT
The parsed result is:
```json
{"chapter":459,"yield_pct":"Maria","... | {"chapter":459,"yield_pct":"Maria","transaction_id":97.25,"aligned_pct":["success","success"]} | markdown_explanation | {
"type": "object",
"properties": {
"chapter": {
"type": "integer"
},
"yield_pct": {
"type": "string"
},
"transaction_id": {
"type": "number"
},
"aligned_pct": {
"type": "array",
"items": {
"type": "string",
"enum": [
"success",
... | The parsed result is:
```json
{"chapter":459,"yield_pct":"Maria","transaction_id":97.25,"aligned_pct":["success","success"]}
```
Analysis finished. | Output contains markdown and explanatory text around JSON | {"chapter":459,"yield_pct":"Maria","transaction_id":97.25,"aligned_pct":["success","success"]} |
TASK repair_structured_output
SPEC
FIELD dim_e69.val_h02 TYPE boolean REQUIRED yes
FIELD dim_e69.key_d53 TYPE integer REQUIRED yes
FIELD dim_e69.field_a29 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD dim_r27 TYPE number REQUIRED no
FIELD key_d41 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD key... | {"dim_e69":{"val_h02":false,"key_d53":64,"field_a29":"USD"},"dim_r27":293.36,"key_d41":"USD","key_w69":"active"} | invalid_enum | {
"type": "object",
"properties": {
"dim_e69": {
"type": "object",
"properties": {
"val_h02": {
"type": "boolean"
},
"key_d53": {
"type": "integer"
},
"field_a29": {
"type": "string",
"enum": [
"USD",
... | {"dim_e69": {"val_h02": false, "key_d53": 64, "field_a29": "USD"}, "dim_r27": 293.36, "key_d41": "USD", "key_w69": "invalid_option_641"} | Field 'key_w69' has invalid enum value 'invalid_option_641', expected one of ['active', 'inactive', 'pending'] | {"dim_e69":{"val_h02":false,"key_d53":64,"field_a29":"USD"},"dim_r27":293.36,"key_d41":"USD","key_w69":"active"} |
TASK repair_structured_output
SPEC
FIELD key_b98 TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED yes
FIELD val_y74 TYPE boolean REQUIRED no
FIELD val_h79.key_f34 TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED no
FIELD val_h79.val_w92 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FI... | {"key_b98":"level_1","prop_p49":{"val_z61":243.46,"col_n78":{"field_s27":"error","dim_a03":784,"field_d47":true},"col_v62":"cat_b","col_h08":"active","attr_o70":"type_a"},"col_o13":616} | tool_call_partial_args | {
"type": "object",
"properties": {
"key_b98": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4"
]
},
"val_y74": {
"type": "boolean"
},
"val_h79": {
"type": "object",
"properties": {
"key_f34": {
... | I need to look up the information first.
Action: process_payment
Arguments: {"prop_p49": {"val_z61": 243.46, "col_n78": {"field_s27": "error", "dim_a03": 784, "field_d47": true}, "col_v62": "cat_b", "col_h08": "active", "attr_o70": "type_a"}, "col_o13": 616} | Agent tool call missing required parameter 'key_b98' | {"key_b98":"level_1","prop_p49":{"val_z61":243.46,"col_n78":{"field_s27":"error","dim_a03":784,"field_d47":true},"col_v62":"cat_b","col_h08":"active","attr_o70":"type_a"},"col_o13":616} |
TASK repair_structured_output
SPEC
FIELD val_s58 TYPE string_uri REQUIRED yes
FIELD key_c13 TYPE string_email REQUIRED no
FIELD param_n94 TYPE string REQUIRED no
FIELD key_m89.attr_c20 TYPE string REQUIRED no
FIELD key_m89.attr_x27 TYPE string REQUIRED no
FIELD key_m89.field_s52 TYPE string REQUIRED yes
FIELD prop_k98... | {"val_s58":"https://example.io/data","param_n94":"user@domain.com","prop_k98":{"col_s58":"https://data.org/v1","prop_f61":[720.49,638.43,594.52,62.89]}} | thought_process | {
"type": "object",
"properties": {
"val_s58": {
"type": "string",
"format": "uri"
},
"key_c13": {
"type": "string",
"format": "email"
},
"param_n94": {
"type": "string"
},
"key_m89": {
"type": "object",
"properties": {
"attr_c20": {
... | Breaking down the requirements:
- Must include all required fields
- Types must match the schema
- Values should be realistic
{"val_s58":"https://example.io/data","param_n94":"user@domain.com","prop_k98":{"col_s58":"https://data.org/v1","prop_f61":[720.49,638.43,594.52,62.89]}} | Output contains chain-of-thought reasoning before JSON | {"val_s58":"https://example.io/data","param_n94":"user@domain.com","prop_k98":{"col_s58":"https://data.org/v1","prop_f61":[720.49,638.43,594.52,62.89]}} |
TASK repair_structured_output
SPEC
FIELD prop_e93 TYPE integer REQUIRED yes
FIELD dim_u57 TYPE integer REQUIRED yes
FIELD field_y22 TYPE boolean REQUIRED yes
FIELD dim_k11 TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED no
FIELD dim_q69[] TYPE string REQUIRED no
BROKEN_OUTPUT
{"prop_e93": 519, "field_y22": fa... | {"prop_e93":519,"dim_u57":59,"field_y22":false,"dim_k11":"mode_b"} | missing_required | {
"type": "object",
"properties": {
"prop_e93": {
"type": "integer"
},
"dim_u57": {
"type": "integer"
},
"field_y22": {
"type": "boolean"
},
"dim_k11": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d"
... | {"prop_e93": 519, "field_y22": false, "dim_k11": "mode_b"} | Required field 'dim_u57' is missing | {"prop_e93":519,"dim_u57":59,"field_y22":false,"dim_k11":"mode_b"} |
TASK repair_structured_output
SPEC
FIELD format TYPE integer REQUIRED yes
FIELD verified TYPE string REQUIRED no
FIELD maturity_date TYPE string_uri REQUIRED no
FIELD subject TYPE boolean REQUIRED no
BROKEN_OUTPUT
{"format":480,"verified":"Oliveira","maturity_date":"https://www.com/api","subject":false,} | {"format":480,"verified":"Oliveira","maturity_date":"https://www.com/api","subject":false} | trailing_comma | {
"type": "object",
"properties": {
"format": {
"type": "integer"
},
"verified": {
"type": "string"
},
"maturity_date": {
"type": "string",
"format": "uri"
},
"subject": {
"type": "boolean"
}
},
"required": [
"format"
]
} | {"format":480,"verified":"Oliveira","maturity_date":"https://www.com/api","subject":false,} | Unexpected trailing comma | {"format":480,"verified":"Oliveira","maturity_date":"https://www.com/api","subject":false} |
TASK repair_structured_output
SPEC
FIELD col_p44 TYPE string VALUES draft|published|archived REQUIRED yes
FIELD col_n29.col_e81 TYPE string VALUES mode_a|mode_b REQUIRED yes
FIELD col_n29.val_b05 TYPE string VALUES active|inactive|pending REQUIRED no
FIELD col_n29.val_z72 TYPE string VALUES single|married|divorced REQ... | {"col_p44":"published","field_q70":"https://example.org/data"} | extra_text_before | {
"type": "object",
"properties": {
"col_p44": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"col_n29": {
"type": "object",
"properties": {
"col_e81": {
"type": "string",
"enum": [
"mode_a... | The output is as follows:
{"col_p44":"published","field_q70":"https://example.org/data"} | Output contains non-JSON text before the object | {"col_p44":"published","field_q70":"https://example.org/data"} |
TASK repair_structured_output
SPEC
FIELD param_j85 TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD val_d12 TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD dim_b17 TYPE string VALUES single|married|divorced REQUIRED yes
FIELD field_t88 TYPE number REQUIRED no
FIELD param_k67 TYPE string RE... | {"param_j85":"pro","dim_b17":"divorced","field_t88":409.33,"param_k67":"GRCh38","col_n47":"confirmed","col_k27":null} | partial_structure | {
"type": "object",
"properties": {
"param_j85": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"val_d12": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
... | The dim_b17 is divorced and {"param_j85":"pro","dim_b17":"divorced","field_t88":409.33,"param_k67":"GRCh38","col_n47":"confirmed","col_k27":null} | Output mixes natural language with JSON | {"param_j85":"pro","dim_b17":"divorced","field_t88":409.33,"param_k67":"GRCh38","col_n47":"confirmed","col_k27":null} |
TASK repair_structured_output
SPEC
FIELD param_l65 TYPE null REQUIRED no
FIELD attr_x67 TYPE string_uri REQUIRED yes
FIELD key_h32 TYPE string_uri REQUIRED no
FIELD col_s17 TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD prop_o85[].col_k94 TYPE boolean REQUIRED no
FIELD prop_o85[].val_e64 TYPE boolean... | {"attr_x67":"https://api.com/api","key_h32":"https://example.org/data","col_s17":"blue","prop_o85":[{"col_k94":false,"field_u16":"New York","key_j21":"white","attr_j60":false,"attr_k87":"type_a"},{"col_k94":false,"val_e64":false,"field_u16":"FWD","key_j21":"red","attr_j60":false},{"col_k94":true,"field_u16":"FWD","attr... | invalid_enum | {
"type": "object",
"properties": {
"param_l65": {
"type": "null"
},
"attr_x67": {
"type": "string",
"format": "uri"
},
"key_h32": {
"type": "string",
"format": "uri"
},
"col_s17": {
"type": "string",
"enum": [
"red",
"blue",
... | {"attr_x67": "https://api.com/api", "key_h32": "https://example.org/data", "col_s17": "invalid_choice_690", "prop_o85": [{"col_k94": false, "field_u16": "New York", "key_j21": "white", "attr_j60": false, "attr_k87": "type_a"}, {"col_k94": false, "val_e64": false, "field_u16": "FWD", "key_j21": "red", "attr_j60": false}... | Field 'col_s17' has invalid enum value 'invalid_choice_690', expected one of ['red', 'blue', 'green', 'black', 'white'] | {"attr_x67":"https://api.com/api","key_h32":"https://example.org/data","col_s17":"blue","prop_o85":[{"col_k94":false,"field_u16":"New York","key_j21":"white","attr_j60":false,"attr_k87":"type_a"},{"col_k94":false,"val_e64":false,"field_u16":"FWD","key_j21":"red","attr_j60":false},{"col_k94":true,"field_u16":"FWD","attr... |
TASK repair_structured_output
SPEC
FIELD attr_m20 TYPE string_email REQUIRED no
FIELD val_g02 TYPE integer REQUIRED no
FIELD field_t25 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
FIELD key_l45[].key_l01 TYPE string_uri REQUIRED yes
FIELD key_l45[].key_u78 TYPE string VALUES berthed|anchore... | {"attr_m20":"admin@test.io","field_t25":"operational","key_l45":[{"key_l01":"https://example.org/v1","key_u78":"underway","val_h39":null}]} | extra_text_before | {
"type": "object",
"properties": {
"attr_m20": {
"type": "string",
"format": "email"
},
"val_g02": {
"type": "integer"
},
"field_t25": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
},
... | Here's the structured output:
{"attr_m20":"admin@test.io","field_t25":"operational","key_l45":[{"key_l01":"https://example.org/v1","key_u78":"underway","val_h39":null}]} | Output contains non-JSON text before the object | {"attr_m20":"admin@test.io","field_t25":"operational","key_l45":[{"key_l01":"https://example.org/v1","key_u78":"underway","val_h39":null}]} |
TASK repair_structured_output
SPEC
FIELD prop_c20 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD prop_n04 TYPE null REQUIRED yes
FIELD key_o17.field_m69.attr_e21 TYPE string REQUIRED no
FIELD key_o17.field_m69.param_g42 TYPE number REQUIRED no
FIELD key_o17.field_m69.field_s93 TYPE string REQUIRED yes
FIELD... | {"prop_c20":"USD","prop_n04":null,"key_o17":{"field_m69":{"param_g42":178.79,"field_s93":"Sao Paulo","field_d41":null},"field_k22":716.75,"dim_j69":329.87,"val_p43":false},"val_g56":"unstable","key_v94":"maintenance"} | agent_chain | {
"type": "object",
"properties": {
"prop_c20": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"prop_n04": {
"type": "null"
},
"key_o17": {
"type": "object",
"properties": {
"field_m69": {
... | I need to look up the information first.
Action: search
Result: {"prop_c20": "USD", "prop_n04": null, "val_g56": "unstable", "key_v94": "maintenance"}
Processing the request now.
Action: schedule_meeting
Result: | Agent multi-step chain with truncated tool output | {"prop_c20":"USD","prop_n04":null,"key_o17":{"field_m69":{"param_g42":178.79,"field_s93":"Sao Paulo","field_d41":null},"field_k22":716.75,"dim_j69":329.87,"val_p43":false},"val_g56":"unstable","key_v94":"maintenance"} |
TASK repair_structured_output
SPEC
FIELD berth_slot TYPE number REQUIRED no
FIELD name TYPE string REQUIRED no
FIELD medication TYPE number REQUIRED yes
BROKEN_OUTPUT
{"berth_slot": 186.54, "name": "Luis", "medication": null} | {"berth_slot":186.54,"name":"Luis","medication":990.59} | null_required | {
"type": "object",
"properties": {
"berth_slot": {
"type": "number"
},
"name": {
"type": "string"
},
"medication": {
"type": "number"
}
},
"required": [
"medication"
]
} | {"berth_slot": 186.54, "name": "Luis", "medication": null} | Required field 'medication' is null | {"berth_slot":186.54,"name":"Luis","medication":990.59} |
TASK repair_structured_output
SPEC
FIELD dim_o19 TYPE string REQUIRED no
FIELD col_j78 TYPE boolean REQUIRED no
FIELD col_s01 TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD attr_m06 TYPE integer REQUIRED no
FIELD col_c38 TYPE string REQUIRED no
BROKEN_OUTPUT
The parsed result is:
```json
{"dim_o19":"Maria... | {"dim_o19":"Maria","col_j78":false,"col_s01":"sms","col_c38":"qux"} | markdown_explanation | {
"type": "object",
"properties": {
"dim_o19": {
"type": "string"
},
"col_j78": {
"type": "boolean"
},
"col_s01": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"attr_m06": {
"type": "integer"
},
... | The parsed result is:
```json
{"dim_o19":"Maria","col_j78":false,"col_s01":"sms","col_c38":"qux"}
```
Hope this helps! | Output contains markdown and explanatory text around JSON | {"dim_o19":"Maria","col_j78":false,"col_s01":"sms","col_c38":"qux"} |
TASK repair_structured_output
SPEC
FIELD umi TYPE integer REQUIRED yes
FIELD date TYPE string VALUES success|error|warning|info REQUIRED yes
FIELD consignee TYPE integer REQUIRED yes
FIELD items TYPE boolean REQUIRED yes
BROKEN_OUTPUT
I found that items should be False. {"umi":62,"date":"warning","consignee":416,"ite... | {"umi":62,"date":"warning","consignee":416,"items":false} | partial_structure | {
"type": "object",
"properties": {
"umi": {
"type": "integer"
},
"date": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"consignee": {
"type": "integer"
},
"items": {
"type": "boolean"
}
... | I found that items should be False. {"umi":62,"date":"warning","consignee":416,"items":false} | Output mixes natural language with JSON | {"umi":62,"date":"warning","consignee":416,"items":false} |
TASK repair_structured_output
SPEC
FIELD address TYPE number REQUIRED no
FIELD size TYPE string REQUIRED yes
FIELD berth_slot TYPE number REQUIRED no
FIELD turbidity TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED no
FIELD tax[] TYPE string REQUIRED yes
FIELD amount[].date TYPE number REQUIRED no
FIELD... | {"address":292.89,"size":"inactive","berth_slot":55.99,"turbidity":"cat_a","tax":["Luis","Paris","Oliveira"]} | agent_chain | {
"type": "object",
"properties": {
"address": {
"type": "number"
},
"size": {
"type": "string"
},
"berth_slot": {
"type": "number"
},
"turbidity": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
"cat... | Let me check the system.
Action: apply_discount
Result: {"address": 292.89, "berth_slot": 55.99, "turbidity": "cat_a", "tax": ["Luis", "Paris", "Oliveira"]}
I'll query our database.
Action: process_payment
Result: | Agent multi-step chain with truncated tool output | {"address":292.89,"size":"inactive","berth_slot":55.99,"turbidity":"cat_a","tax":["Luis","Paris","Oliveira"]} |
TASK repair_structured_output
SPEC
FIELD dim_h23 TYPE string VALUES level_1|level_2 REQUIRED no
FIELD col_r81 TYPE boolean REQUIRED yes
FIELD field_q00 TYPE integer REQUIRED no
FIELD field_s03 TYPE string VALUES level_1|level_2 REQUIRED no
FIELD key_g72[].attr_c78 TYPE boolean REQUIRED no
FIELD key_g72[].col_b42 TYPE ... | {"dim_h23":"level_1","col_r81":false,"key_g72":[{"col_b42":"cat_b","field_b80":"pro","key_d34":813.76,"key_r06":"type_a","prop_o27":"low","attr_h94":true},{"attr_c78":false,"col_b42":"cat_a","field_b80":"basic","key_d34":742.12,"key_r06":"type_c","prop_o27":"medium","attr_h94":false}]} | extra_text_before | {
"type": "object",
"properties": {
"dim_h23": {
"type": "string",
"enum": [
"level_1",
"level_2"
]
},
"col_r81": {
"type": "boolean"
},
"field_q00": {
"type": "integer"
},
"field_s03": {
"type": "string",
"enum": [
"level... | Let me provide the data in JSON format:
{"dim_h23":"level_1","col_r81":false,"key_g72":[{"col_b42":"cat_b","field_b80":"pro","key_d34":813.76,"key_r06":"type_a","prop_o27":"low","attr_h94":true},{"attr_c78":false,"col_b42":"cat_a","field_b80":"basic","key_d34":742.12,"key_r06":"type_c","prop_o27":"medium","attr_h94":fa... | Output contains non-JSON text before the object | {"dim_h23":"level_1","col_r81":false,"key_g72":[{"col_b42":"cat_b","field_b80":"pro","key_d34":813.76,"key_r06":"type_a","prop_o27":"low","attr_h94":true},{"attr_c78":false,"col_b42":"cat_a","field_b80":"basic","key_d34":742.12,"key_r06":"type_c","prop_o27":"medium","attr_h94":false}]} |
TASK repair_structured_output
SPEC
FIELD description TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED yes
FIELD phone TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD gene_id TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED no
FIELD quantity TYPE string REQUIRED no
FIELD ... | {"description":"cat_e","phone":"unstable","gene_id":"level_1","quantity":"hello","brake_pressure":"London","insurance_id":"option_a"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"description": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
"cat_e"
]
},
"phone": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
... | Tool: assign_berth
Params: {"description": "cat_e", "phone": "unstable", "gene_id": "level_1", "quantity": "hello", "insurance_id": "option_a", "brake_pressure_name": "London"} | Agent used wrong parameter name 'brake_pressure_name' instead of 'brake_pressure' | {"description":"cat_e","phone":"unstable","gene_id":"level_1","quantity":"hello","brake_pressure":"London","insurance_id":"option_a"} |
TASK repair_structured_output
SPEC
FIELD val_f08 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD key_u81 TYPE integer REQUIRED no
FIELD attr_a20.prop_m56 TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD attr_a20.dim_z71 TYPE integer REQUIRED no
FIELD attr_a20.field_q12 TYPE string REQU... | {"val_f08":"BRL","key_u81":136,"attr_a20":{"prop_m56":"in_transit","field_q12":"inactive"}} | trailing_comma | {
"type": "object",
"properties": {
"val_f08": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"key_u81": {
"type": "integer"
},
"attr_a20": {
"type": "object",
"properties": {
"prop_m56": {
... | {"val_f08":"BRL","key_u81":136,"attr_a20":{"prop_m56":"in_transit","field_q12":"inactive",}} | Unexpected trailing comma | {"val_f08":"BRL","key_u81":136,"attr_a20":{"prop_m56":"in_transit","field_q12":"inactive"}} |
TASK repair_structured_output
SPEC
FIELD dim_m20 TYPE string REQUIRED yes
FIELD val_q76 TYPE string REQUIRED no
FIELD attr_r61 TYPE string REQUIRED no
FIELD attr_k97 TYPE number REQUIRED no
BROKEN_OUTPUT
{'dim_m20':'Smith','val_q76':'John'} | {"dim_m20":"Smith","val_q76":"John"} | single_quotes | {
"type": "object",
"properties": {
"dim_m20": {
"type": "string"
},
"val_q76": {
"type": "string"
},
"attr_r61": {
"type": "string"
},
"attr_k97": {
"type": "number"
}
},
"required": [
"dim_m20"
]
} | {'dim_m20':'Smith','val_q76':'John'} | Expecting property name enclosed in double quotes | {"dim_m20":"Smith","val_q76":"John"} |
TASK repair_structured_output
SPEC
FIELD col_x30 TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED yes
FIELD field_n86 TYPE string REQUIRED no
FIELD dim_l12 TYPE boolean REQUIRED no
BROKEN_OUTPUT
Based on your request, here is the data:
```json
{"col_x30":"mode_b","field_n86":"Jane"}
```
Data logged successfull... | {"col_x30":"mode_b","field_n86":"Jane"} | markdown_explanation | {
"type": "object",
"properties": {
"col_x30": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d"
]
},
"field_n86": {
"type": "string"
},
"dim_l12": {
"type": "boolean"
}
},
"required": [
"col_x30"
]
} | Based on your request, here is the data:
```json
{"col_x30":"mode_b","field_n86":"Jane"}
```
Data logged successfully. | Output contains markdown and explanatory text around JSON | {"col_x30":"mode_b","field_n86":"Jane"} |
TASK repair_structured_output
SPEC
FIELD items TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD shipper_ref TYPE string_email REQUIRED yes
FIELD timezone[].yield_pct TYPE boolean REQUIRED yes
FIELD timezone[].chapter TYPE null REQUIRED yes
FIELD timezone[].items TYPE integer REQUIRED no
FIELD timezo... | {"items":"reliable","shipper_ref":"ops@example.com","timezone":[{"yield_pct":true,"chapter":null,"items":362,"created_at":"https://www.com/v1","last_name":false,"language":"Johnson"}]} | thought_process | {
"type": "object",
"properties": {
"items": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
},
"shipper_ref": {
"type": "string",
"format": "email"
},
"timezone": {
"type": "array",
"items": {
"type... | Analyzing the schema to generate valid JSON...
Checking required fields and types...
{"items":"reliable","shipper_ref":"ops@example.com","timezone":[{"yield_pct":true,"chapter":null,"items":362,"created_at":"https://www.com/v1","last_name":false,"language":"Johnson"}]} | Output contains chain-of-thought reasoning before JSON | {"items":"reliable","shipper_ref":"ops@example.com","timezone":[{"yield_pct":true,"chapter":null,"items":362,"created_at":"https://www.com/v1","last_name":false,"language":"Johnson"}]} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.