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 val_l34 TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED no
FIELD key_r63 TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD dim_t10 TYPE number REQUIRED no
FIELD prop_z18.param_v84 TYPE string REQUIRED yes
FIELD prop_z18.prop_a28.key_j13 TYPE string REQUIRE... | {"key_r63":"enterprise"} | null_required | {
"type": "object",
"properties": {
"val_l34": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d"
]
},
"key_r63": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
... | {"key_r63": null} | Required field 'key_r63' is null | {"key_r63":"enterprise"} |
TASK repair_structured_output
SPEC
FIELD prop_a18 TYPE null REQUIRED no
FIELD key_x65 TYPE boolean REQUIRED no
FIELD dim_p03 TYPE string REQUIRED yes
FIELD param_j57 TYPE string VALUES active|inactive|pending REQUIRED no
FIELD prop_y29 TYPE string REQUIRED no
FIELD attr_z29.val_a39 TYPE string REQUIRED no
FIELD attr_z... | {"prop_a18":null,"key_x65":true,"dim_p03":"active","dim_l34":{"prop_a21":"cat_a","val_a34":942,"dim_c20":271.23,"val_j21":816,"field_l02":"GRCh38","dim_n66":"approved"}} | single_quotes | {
"type": "object",
"properties": {
"prop_a18": {
"type": "null"
},
"key_x65": {
"type": "boolean"
},
"dim_p03": {
"type": "string"
},
"param_j57": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
},
"prop... | {'prop_a18':null,'key_x65':true,'dim_p03':'active','dim_l34':{'prop_a21':'cat_a','val_a34':942,'dim_c20':271.23,'val_j21':816,'field_l02':'GRCh38','dim_n66':'approved'}} | Expecting property name enclosed in double quotes | {"prop_a18":null,"key_x65":true,"dim_p03":"active","dim_l34":{"prop_a21":"cat_a","val_a34":942,"dim_c20":271.23,"val_j21":816,"field_l02":"GRCh38","dim_n66":"approved"}} |
TASK repair_structured_output
SPEC
FIELD shift_code TYPE number REQUIRED yes
FIELD state TYPE string_date-time REQUIRED yes
FIELD subject TYPE integer REQUIRED yes
BROKEN_OUTPUT
{"shift_code":922.24,"state":"2023-09-04T03:43:00Z","subject":232}
Analysis finished. | {"shift_code":922.24,"state":"2023-09-04T03:43:00Z","subject":232} | extra_text_after | {
"type": "object",
"properties": {
"shift_code": {
"type": "number"
},
"state": {
"type": "string",
"format": "date-time"
},
"subject": {
"type": "integer"
}
},
"required": [
"state",
"subject",
"shift_code"
]
} | {"shift_code":922.24,"state":"2023-09-04T03:43:00Z","subject":232}
Analysis finished. | Output contains non-JSON text after the object | {"shift_code":922.24,"state":"2023-09-04T03:43:00Z","subject":232} |
TASK repair_structured_output
SPEC
FIELD param_o22 TYPE integer REQUIRED yes
FIELD prop_h03 TYPE string REQUIRED no
FIELD prop_c98 TYPE string_email REQUIRED no
FIELD dim_j86 TYPE integer REQUIRED no
FIELD dim_f72 TYPE string REQUIRED no
FIELD field_f73.key_o40 TYPE string REQUIRED no
FIELD field_f73.field_i32 TYPE in... | {"param_o22":800,"prop_h03":"Jane","dim_j86":803,"field_f73":{"key_o40":"chr1","field_i32":687,"param_p17":497,"col_g00":"new","dim_s44":"free","field_g52":{"key_z93":false,"param_r39":"2023-11-03T19:15:00Z","key_t09":"coastal","prop_n88":"returned"},"dim_k81":{"param_i83":false,"key_n23":386,"prop_s24":"Alice"}}} | trailing_comma | {
"type": "object",
"properties": {
"param_o22": {
"type": "integer"
},
"prop_h03": {
"type": "string"
},
"prop_c98": {
"type": "string",
"format": "email"
},
"dim_j86": {
"type": "integer"
},
"dim_f72": {
"type": "string"
},
"field_f73... | {"param_o22":800,"prop_h03":"Jane","dim_j86":803,"field_f73":{"key_o40":"chr1","field_i32":687,"param_p17":497,"col_g00":"new","dim_s44":"free","field_g52":{"key_z93":false,"param_r39":"2023-11-03T19:15:00Z","key_t09":"coastal","prop_n88":"returned",},"dim_k81":{"param_i83":false,"key_n23":386,"prop_s24":"Alice"}}} | Unexpected trailing comma | {"param_o22":800,"prop_h03":"Jane","dim_j86":803,"field_f73":{"key_o40":"chr1","field_i32":687,"param_p17":497,"col_g00":"new","dim_s44":"free","field_g52":{"key_z93":false,"param_r39":"2023-11-03T19:15:00Z","key_t09":"coastal","prop_n88":"returned"},"dim_k81":{"param_i83":false,"key_n23":386,"prop_s24":"Alice"}}} |
TASK repair_structured_output
SPEC
FIELD country TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD vessel_name TYPE string REQUIRED yes
FIELD tax TYPE number REQUIRED yes
FIELD amount TYPE number REQUIRED yes
BROKEN_OUTPUT
Let me check the system.
<tool_call name="annotate_mutation">
{"country":"high","v... | {"country":"high","vessel_name":"example","tax":118.8,"amount":953.7} | tool_call_text_mix | {
"type": "object",
"properties": {
"country": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"vessel_name": {
"type": "string"
},
"tax": {
"type": "number"
},
"amount": {
"type": "number"
}
... | Let me check the system.
<tool_call name="annotate_mutation">
{"country":"high","vessel_name":"example","tax":118.8,"amount":953.7}
</tool_call. | Agent response mixes reasoning text with tool call | {"country":"high","vessel_name":"example","tax":118.8,"amount":953.7} |
TASK repair_structured_output
SPEC
FIELD footnote TYPE string REQUIRED yes
FIELD ward TYPE number REQUIRED no
FIELD bill_of_lading TYPE boolean REQUIRED no
FIELD compound TYPE string REQUIRED yes
BROKEN_OUTPUT
I found that ward should be 699.06. {"footnote":"GRCh38","ward":699.06,"bill_of_lading":false,"compound":"de... | {"footnote":"GRCh38","ward":699.06,"bill_of_lading":false,"compound":"demo"} | partial_structure | {
"type": "object",
"properties": {
"footnote": {
"type": "string"
},
"ward": {
"type": "number"
},
"bill_of_lading": {
"type": "boolean"
},
"compound": {
"type": "string"
}
},
"required": [
"compound",
"footnote"
]
} | I found that ward should be 699.06. {"footnote":"GRCh38","ward":699.06,"bill_of_lading":false,"compound":"demo"} | Output mixes natural language with JSON | {"footnote":"GRCh38","ward":699.06,"bill_of_lading":false,"compound":"demo"} |
TASK repair_structured_output
SPEC
FIELD param_d60 TYPE boolean REQUIRED yes
FIELD param_t55 TYPE string VALUES mode_a|mode_b|mode_c REQUIRED yes
FIELD dim_i90 TYPE number REQUIRED yes
FIELD attr_u79.col_m33 TYPE string REQUIRED no
FIELD attr_u79.dim_a29 TYPE integer REQUIRED no
FIELD attr_u79.col_b97 TYPE string VALU... | {"param_d60":true,"param_t55":"mode_c","dim_i90":153.08,"attr_u79":{"dim_a29":205,"col_b97":"new","prop_i60":"2023-12-25","prop_s27":null}} | missing_required | {
"type": "object",
"properties": {
"param_d60": {
"type": "boolean"
},
"param_t55": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c"
]
},
"dim_i90": {
"type": "number"
},
"attr_u79": {
"type": "object",
"propert... | {"param_t55": "mode_c", "dim_i90": 153.08, "attr_u79": {"dim_a29": 205, "col_b97": "new", "prop_i60": "2023-12-25", "prop_s27": null}} | Required field 'param_d60' is missing | {"param_d60":true,"param_t55":"mode_c","dim_i90":153.08,"attr_u79":{"dim_a29":205,"col_b97":"new","prop_i60":"2023-12-25","prop_s27":null}} |
TASK repair_structured_output
SPEC
FIELD col_v34.attr_b56 TYPE string_uri REQUIRED no
FIELD col_v34.key_w24 TYPE string REQUIRED no
FIELD col_v34.val_s63 TYPE string REQUIRED yes
FIELD col_v34.dim_f60[].param_o96 TYPE null REQUIRED yes
FIELD col_v34.dim_f60[].field_r05 TYPE number REQUIRED yes
FIELD col_v34.dim_f60[].... | {"col_v34":{"val_s63":"completed","dim_f60":[{"param_o96":null,"field_r05":941.57,"dim_f37":"QC-07","key_r59":"QC-07"},{"param_o96":null,"field_r05":201.87,"dim_f37":"qux","key_r59":"QC-07"},{"param_o96":null,"field_r05":247.44,"dim_f37":"Jane","key_r59":"bar"}]},"val_d90":true,"col_q31":"John","param_p27":"New York","... | tool_call_text_mix | {
"type": "object",
"properties": {
"col_v34": {
"type": "object",
"properties": {
"attr_b56": {
"type": "string",
"format": "uri"
},
"key_w24": {
"type": "string"
},
"val_s63": {
"type": "string"
},
"dim... | I'll query our database.
<tool_call name="annotate_mutation">
{"col_v34":{"val_s63":"completed","dim_f60":[{"param_o96":null,"field_r05":941.57,"dim_f37":"QC-07","key_r59":"QC-07"},{"param_o96":null,"field_r05":201.87,"dim_f37":"qux","key_r59":"QC-07"},{"param_o96":null,"field_r05":247.44,"dim_f37":"Jane","key_r59":"ba... | Agent response mixes reasoning text with tool call | {"col_v34":{"val_s63":"completed","dim_f60":[{"param_o96":null,"field_r05":941.57,"dim_f37":"QC-07","key_r59":"QC-07"},{"param_o96":null,"field_r05":201.87,"dim_f37":"qux","key_r59":"QC-07"},{"param_o96":null,"field_r05":247.44,"dim_f37":"Jane","key_r59":"bar"}]},"val_d90":true,"col_q31":"John","param_p27":"New York","... |
TASK repair_structured_output
SPEC
FIELD email TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD cargo_type TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD allele TYPE string REQUIRED yes
BROKEN_OUTPUT
I need to check the port status before assigning the berth.
Let me verify the cargo ... | {"email":"in_progress","cargo_type":"sms","allele":"GRCh38"} | thought_process | {
"type": "object",
"properties": {
"email": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"cargo_type": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
... | I need to check the port status before assigning the berth.
Let me verify the cargo manifest.
{"email":"in_progress","cargo_type":"sms","allele":"GRCh38"} | Output contains chain-of-thought reasoning before JSON | {"email":"in_progress","cargo_type":"sms","allele":"GRCh38"} |
TASK repair_structured_output
SPEC
FIELD prop_i78 TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD dim_e38 TYPE integer REQUIRED yes
FIELD key_m24 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD val_l08 TYPE integer REQUIRED no
FIELD field_w33 TYPE string REQUIRED yes
FIELD fiel... | {"dim_e38":178,"val_l08":217,"field_w33":"PASS","field_s04":{"col_s50":"hello","attr_g74":"ops@example.com","key_p86":131,"val_j71":"email","dim_o36":17},"prop_r89":"2020-05-20T05:32:00Z"} | single_quotes | {
"type": "object",
"properties": {
"prop_i78": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"dim_e38": {
"type": "integer"
},
"key_m24": {
"type": "string",
"enum": [
"coastal",
... | {'dim_e38':178,'val_l08':217,'field_w33':'PASS','field_s04':{'col_s50':'hello','attr_g74':'ops@example.com','key_p86':131,'val_j71':'email','dim_o36':17},'prop_r89':'2020-05-20T05:32:00Z'} | Expecting property name enclosed in double quotes | {"dim_e38":178,"val_l08":217,"field_w33":"PASS","field_s04":{"col_s50":"hello","attr_g74":"ops@example.com","key_p86":131,"val_j71":"email","dim_o36":17},"prop_r89":"2020-05-20T05:32:00Z"} |
TASK repair_structured_output
SPEC
FIELD col_f28 TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED no
FIELD attr_f94 TYPE string REQUIRED yes
FIELD dim_b20 TYPE integer REQUIRED yes
BROKEN_OUTPUT
"col_f28":"type_d","attr_f94":"foo","dim_b20":30} | {"col_f28":"type_d","attr_f94":"foo","dim_b20":30} | missing_brace | {
"type": "object",
"properties": {
"col_f28": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d",
"type_e"
]
},
"attr_f94": {
"type": "string"
},
"dim_b20": {
"type": "integer"
}
},
"required": [
... | "col_f28":"type_d","attr_f94":"foo","dim_b20":30} | Missing closing brace | {"col_f28":"type_d","attr_f94":"foo","dim_b20":30} |
TASK repair_structured_output
SPEC
FIELD dim_p52 TYPE string VALUES single|married|divorced REQUIRED yes
FIELD param_b75 TYPE integer REQUIRED yes
FIELD prop_j80 TYPE integer REQUIRED yes
BROKEN_OUTPUT
{"dim_p52": "divorced", "param_b75": 782, "prop_j80": 998, "extra_value_472": 42} | {"dim_p52":"divorced","param_b75":782,"prop_j80":998} | extra_field | {
"type": "object",
"properties": {
"dim_p52": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"param_b75": {
"type": "integer"
},
"prop_j80": {
"type": "integer"
}
},
"required": [
"dim_p52",
"param_b75",
... | {"dim_p52": "divorced", "param_b75": 782, "prop_j80": 998, "extra_value_472": 42} | Unknown field 'extra_value_472' not defined in schema | {"dim_p52":"divorced","param_b75":782,"prop_j80":998} |
TASK repair_structured_output
SPEC
FIELD thumbnail TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD vital_sign TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD longitude TYPE integer REQUIRED no
BROKEN_OUTPUT
{"thumbnail": "open", "vital_sign": "nonsense", "longitude"... | {"thumbnail":"open","vital_sign":"nonsense","longitude":991} | wrong_type | {
"type": "object",
"properties": {
"thumbnail": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"vital_sign": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
... | {"thumbnail": "open", "vital_sign": "nonsense", "longitude": "\"991\""} | Field 'longitude' must be integer, got string | {"thumbnail":"open","vital_sign":"nonsense","longitude":991} |
TASK repair_structured_output
SPEC
FIELD vessel_name TYPE null REQUIRED yes
FIELD organism TYPE number REQUIRED yes
FIELD width TYPE number REQUIRED no
FIELD voltage TYPE null REQUIRED no
FIELD amount TYPE null REQUIRED no
FIELD berth_slot TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
BROKEN_OUTPUT
transf... | {"vessel_name":null,"organism":386.94,"width":614.53,"voltage":null,"amount":null,"berth_slot":"free"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"vessel_name": {
"type": "null"
},
"organism": {
"type": "number"
},
"width": {
"type": "number"
},
"voltage": {
"type": "null"
},
"amount": {
"type": "null"
},
"berth_slot": {
"type": "string",
... | transfer_call(vessel_name=None, organism=386.94, width=614.53, voltage=None, amount=None, berth_slot='free') | Tool call uses Python syntax instead of JSON | {"vessel_name":null,"organism":386.94,"width":614.53,"voltage":null,"amount":null,"berth_slot":"free"} |
TASK repair_structured_output
SPEC
FIELD chapter TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD published TYPE string VALUES draft|published|archived REQUIRED yes
FIELD amplitude TYPE string REQUIRED yes
FIELD conductivity TYPE integer REQUIRED no
BROKEN_OUTPUT
process_payment(chapter='heter... | {"chapter":"heterozygous","published":"published","amplitude":"test@example.com","conductivity":189} | tool_call_python_syntax | {
"type": "object",
"properties": {
"chapter": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"published": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"ampli... | process_payment(chapter='heterozygous', published='published', amplitude='test@example.com', conductivity=189) | Tool call uses Python syntax instead of JSON | {"chapter":"heterozygous","published":"published","amplitude":"test@example.com","conductivity":189} |
TASK repair_structured_output
SPEC
FIELD key_q16 TYPE string_uri REQUIRED no
FIELD val_g76 TYPE number REQUIRED no
FIELD col_h51 TYPE integer REQUIRED no
FIELD param_x67 TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD field_b76 TYPE string REQUIRED yes
BROKEN_OUTPUT
I found that param_x67 should... | {"key_q16":"https://example.org/api","val_g76":654.95,"col_h51":79,"param_x67":"in_progress","field_b76":"New York"} | partial_structure | {
"type": "object",
"properties": {
"key_q16": {
"type": "string",
"format": "uri"
},
"val_g76": {
"type": "number"
},
"col_h51": {
"type": "integer"
},
"param_x67": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved... | I found that param_x67 should be in_progress. {"key_q16":"https://example.org/api","val_g76":654.95,"col_h51":79,"param_x67":"in_progress","field_b76":"New York"} | Output mixes natural language with JSON | {"key_q16":"https://example.org/api","val_g76":654.95,"col_h51":79,"param_x67":"in_progress","field_b76":"New York"} |
TASK repair_structured_output
SPEC
FIELD active.position TYPE null REQUIRED no
FIELD active.chromosome TYPE string REQUIRED yes
FIELD active.weight.frequency_hz TYPE string VALUES draft|published|archived REQUIRED yes
FIELD active.weight.format TYPE number REQUIRED no
FIELD active.weight.active TYPE string VALUES new|... | {"active":{"position":null,"chromosome":"sample","weight":{"frequency_hz":"archived","format":320.21}},"quantity":{"comments":false,"freight_class":"unstable","tax":{"section":"demo","color":"approved","berth_slot":765.55,"company":true,"run_id":"bar"}},"commit_hash":"baz","chapter":"editor","phone":"2021-02-24T01:43:0... | truncated_object | {
"type": "object",
"properties": {
"active": {
"type": "object",
"properties": {
"position": {
"type": "null"
},
"chromosome": {
"type": "string"
},
"weight": {
"type": "object",
"properties": {
"frequency_h... | {"active":{"position":null,"chromosome":"sample","weight":{"frequency_hz":"archived","format":320.21}},"quantity":{"comments":false,"freight_class":"unstable","tax":{"section":"demo","color":"approved","berth_slot":765.55,"company":true,"run_id":"bar"}},"commit_hash":"baz","chapter":"editor","phone":"2021-02-24T01:43:0... | Unexpected end of JSON input — truncated object | {"active":{"position":null,"chromosome":"sample","weight":{"frequency_hz":"archived","format":320.21}},"quantity":{"comments":false,"freight_class":"unstable","tax":{"section":"demo","color":"approved","berth_slot":765.55,"company":true,"run_id":"bar"}},"commit_hash":"baz","chapter":"editor","phone":"2021-02-24T01:43:0... |
TASK repair_structured_output
SPEC
FIELD patient_id TYPE string VALUES success|error|warning|info REQUIRED yes
FIELD first_name TYPE string VALUES success|error|warning|info REQUIRED no
FIELD shipping TYPE null REQUIRED yes
FIELD account_id.organism TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD account_id.... | {"patient_id":"warning","shipping":null,"account_id":{"organism":"GBP","ward":808,"batch_code":{"batch_code":"intermittent","turbidity":711,"span_id":"MV-Evergreen-01"},"commit_hash":{"username":"phone","zip_code":"https://example.io/v1"},"amplitude":"Johnson","payment_status":101},"cargo_type":{"throttle_pos":"open","... | agent_chain | {
"type": "object",
"properties": {
"patient_id": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"first_name": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
... | Let me check the system.
Action: transfer_call
Result: {"patient_id": "warning", "account_id": {"organism": "GBP", "ward": 808, "batch_code": {"batch_code": "intermittent", "turbidity": 711, "span_id": "MV-Evergreen-01"}, "commit_hash": {"username": "phone", "zip_code": "https://example.io/v1"}, "amplitude": "Johnson",... | Agent multi-step chain with truncated tool output | {"patient_id":"warning","shipping":null,"account_id":{"organism":"GBP","ward":808,"batch_code":{"batch_code":"intermittent","turbidity":711,"span_id":"MV-Evergreen-01"},"commit_hash":{"username":"phone","zip_code":"https://example.io/v1"},"amplitude":"Johnson","payment_status":101},"cargo_type":{"throttle_pos":"open","... |
TASK repair_structured_output
SPEC
FIELD account_id TYPE string REQUIRED no
FIELD role TYPE number REQUIRED yes
FIELD id TYPE string REQUIRED yes
FIELD span_id TYPE string REQUIRED yes
BROKEN_OUTPUT
{"account_id": "chr1", "role": "324.7%", "id": "Oliveira", "span_id": "MV-Evergreen-01"} | {"account_id":"chr1","role":324.7,"id":"Oliveira","span_id":"MV-Evergreen-01"} | number_with_unit | {
"type": "object",
"properties": {
"account_id": {
"type": "string"
},
"role": {
"type": "number"
},
"id": {
"type": "string"
},
"span_id": {
"type": "string"
}
},
"required": [
"span_id",
"id",
"role"
]
} | {"account_id": "chr1", "role": "324.7%", "id": "Oliveira", "span_id": "MV-Evergreen-01"} | Field 'role' must be number, got string with unit | {"account_id":"chr1","role":324.7,"id":"Oliveira","span_id":"MV-Evergreen-01"} |
TASK repair_structured_output
SPEC
FIELD prop_r15 TYPE string REQUIRED no
FIELD prop_u73 TYPE integer REQUIRED no
FIELD attr_s41 TYPE string REQUIRED no
FIELD param_f68 TYPE integer REQUIRED yes
FIELD field_x17.col_j44 TYPE string_uri REQUIRED no
FIELD field_x17.prop_g52 TYPE integer REQUIRED no
FIELD field_x17.col_i0... | {"prop_r15":"MV-Evergreen-01","prop_u73":65,"attr_s41":"Oliveira","param_f68":97,"field_x17":{"col_j44":"https://api.com/api","col_i01":603,"key_n76":{"field_f67":583,"prop_k31":248,"key_k11":14},"col_x43":{"field_r99":false,"col_k96":310,"col_n49":"https://www.com/data","val_j53":"inland"}},"val_u34":{"key_h86":"retur... | markdown_explanation | {
"type": "object",
"properties": {
"prop_r15": {
"type": "string"
},
"prop_u73": {
"type": "integer"
},
"attr_s41": {
"type": "string"
},
"param_f68": {
"type": "integer"
},
"field_x17": {
"type": "object",
"properties": {
"col_j44": {... | The parsed result is:
```json
{"prop_r15":"MV-Evergreen-01","prop_u73":65,"attr_s41":"Oliveira","param_f68":97,"field_x17":{"col_j44":"https://api.com/api","col_i01":603,"key_n76":{"field_f67":583,"prop_k31":248,"key_k11":14},"col_x43":{"field_r99":false,"col_k96":310,"col_n49":"https://www.com/data","val_j53":"inland"... | Output contains markdown and explanatory text around JSON | {"prop_r15":"MV-Evergreen-01","prop_u73":65,"attr_s41":"Oliveira","param_f68":97,"field_x17":{"col_j44":"https://api.com/api","col_i01":603,"key_n76":{"field_f67":583,"prop_k31":248,"key_k11":14},"col_x43":{"field_r99":false,"col_k96":310,"col_n49":"https://www.com/data","val_j53":"inland"}},"val_u34":{"key_h86":"retur... |
TASK repair_structured_output
SPEC
FIELD footnote TYPE number REQUIRED yes
FIELD phone TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED no
FIELD company TYPE string REQUIRED yes
BROKEN_OUTPUT
{"footnote": "\"515.16\"", "phone": "type_e", "company": "Smith"} | {"footnote":515.16,"phone":"type_e","company":"Smith"} | wrong_type | {
"type": "object",
"properties": {
"footnote": {
"type": "number"
},
"phone": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d",
"type_e"
]
},
"company": {
"type": "string"
}
},
"required": [
"c... | {"footnote": "\"515.16\"", "phone": "type_e", "company": "Smith"} | Field 'footnote' must be number, got string | {"footnote":515.16,"phone":"type_e","company":"Smith"} |
TASK repair_structured_output
SPEC
FIELD dim_m48 TYPE string REQUIRED yes
FIELD field_n33 TYPE integer REQUIRED yes
FIELD param_n75 TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD prop_c32 TYPE integer REQUIRED yes
FIELD col_i54 TYPE integer REQUIRED no
FIELD col_h58.dim_u87 TYPE null REQUIRED yes
FIELD... | {"dim_m48":"Tokyo","field_n33":635,"prop_c32":18,"col_i54":933,"col_h58":{"dim_u87":null,"dim_e70":"London"},"col_s62":322.68,"prop_i69":201} | missing_brace | {
"type": "object",
"properties": {
"dim_m48": {
"type": "string"
},
"field_n33": {
"type": "integer"
},
"param_n75": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"prop_c32": {
"type": "integer... | "dim_m48":"Tokyo","field_n33":635,"prop_c32":18,"col_i54":933,"col_h58":{"dim_u87":null,"dim_e70":"London"},"col_s62":322.68,"prop_i69":201} | Missing closing brace | {"dim_m48":"Tokyo","field_n33":635,"prop_c32":18,"col_i54":933,"col_h58":{"dim_u87":null,"dim_e70":"London"},"col_s62":322.68,"prop_i69":201} |
TASK repair_structured_output
SPEC
FIELD col_i11 TYPE integer REQUIRED yes
FIELD dim_s53 TYPE number REQUIRED yes
FIELD attr_r61 TYPE null REQUIRED no
FIELD field_f31 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
FIELD val_k88 TYPE string VALUES red|blue|green|black|white REQUIRED yes
BROKE... | {"col_i11":474,"dim_s53":320.95,"attr_r61":null,"field_f31":"offline","val_k88":"black"} | tool_call_partial_args | {
"type": "object",
"properties": {
"col_i11": {
"type": "integer"
},
"dim_s53": {
"type": "number"
},
"attr_r61": {
"type": "null"
},
"field_f31": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenan... | Let me check the system.
Action: calculate_docking_fee
Arguments: {"col_i11": 474, "dim_s53": 320.95, "attr_r61": null, "val_k88": "black"} | Agent tool call missing required parameter 'field_f31' | {"col_i11":474,"dim_s53":320.95,"attr_r61":null,"field_f31":"offline","val_k88":"black"} |
TASK repair_structured_output
SPEC
FIELD prop_y45 TYPE integer REQUIRED no
FIELD val_v56 TYPE null REQUIRED yes
FIELD attr_l10 TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED yes
FIELD field_z88 TYPE null REQUIRED no
FIELD dim_m55[].attr_i02 TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD dim_m55[].para... | {"prop_y45":927,"val_v56":null,"attr_l10":"cat_b","dim_m55":[{"attr_i02":"sms","param_t83":"completed","key_n94":814},{"attr_i02":"push","param_t83":"PASS"}]} | invalid_enum | {
"type": "object",
"properties": {
"prop_y45": {
"type": "integer"
},
"val_v56": {
"type": "null"
},
"attr_l10": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d"
]
},
"field_z88": {
"type": "null"
},... | {"prop_y45": 927, "val_v56": null, "attr_l10": "invalid_option_770", "dim_m55": [{"attr_i02": "sms", "param_t83": "completed", "key_n94": 814}, {"attr_i02": "push", "param_t83": "PASS"}]} | Field 'attr_l10' has invalid enum value 'invalid_option_770', expected one of ['cat_a', 'cat_b', 'cat_c', 'cat_d'] | {"prop_y45":927,"val_v56":null,"attr_l10":"cat_b","dim_m55":[{"attr_i02":"sms","param_t83":"completed","key_n94":814},{"attr_i02":"push","param_t83":"PASS"}]} |
TASK repair_structured_output
SPEC
FIELD attr_v92 TYPE string VALUES success|error|warning|info REQUIRED no
FIELD val_p18 TYPE integer REQUIRED no
FIELD key_g33 TYPE integer REQUIRED yes
FIELD val_s25 TYPE integer REQUIRED yes
BROKEN_OUTPUT
{attr_v92:"warning",val_p18:114,key_g33:335,val_s25:702} | {"attr_v92":"warning","val_p18":114,"key_g33":335,"val_s25":702} | unquoted_keys | {
"type": "object",
"properties": {
"attr_v92": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"val_p18": {
"type": "integer"
},
"key_g33": {
"type": "integer"
},
"val_s25": {
"type": "integer"
... | {attr_v92:"warning",val_p18:114,key_g33:335,val_s25:702} | Expecting property name enclosed in double quotes | {"attr_v92":"warning","val_p18":114,"key_g33":335,"val_s25":702} |
TASK repair_structured_output
SPEC
FIELD consignee TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD conductivity TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes
FIELD ward TYPE integer REQUIRED yes
FIELD quantity TYPE integer REQUIRED no
FIELD quality_score TYPE string VALUES draf... | {"conductivity":"berthed","ward":351,"quantity":665,"quality_score":"published"} | truncated_array | {
"type": "object",
"properties": {
"consignee": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"conductivity": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"... | {"conductivity":"berthed","ward":351,"quantity":665,"quality_score":"published" | Unexpected end of JSON input — truncated object | {"conductivity":"berthed","ward":351,"quantity":665,"quality_score":"published"} |
TASK repair_structured_output
SPEC
FIELD dim_f60.attr_e20.prop_i20 TYPE number REQUIRED no
FIELD dim_f60.attr_e20.col_c42 TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD dim_f60.attr_e20.dim_k43 TYPE null REQUIRED yes
FIELD dim_f60.attr_e20.prop_w98 TYPE integer REQUIRED no
FIELD dim_f60.attr_e2... | {"dim_f60":{"attr_e20":{"prop_i20":365.71,"col_c42":"open","dim_k43":null,"prop_w98":953,"key_v81":75,"col_n55":"Paris"},"field_q84":false,"field_c17":{"prop_d70":"Bob","val_m12":"nonsense","val_v05":"https://api.io/v1","key_b61":"blue"},"col_e18":833.38},"dim_b75":530.55,"dim_t84":"https://www.org/v1","val_e58":false} | wrong_type | {
"type": "object",
"properties": {
"dim_f60": {
"type": "object",
"properties": {
"attr_e20": {
"type": "object",
"properties": {
"prop_i20": {
"type": "number"
},
"col_c42": {
"type": "string",
... | {"dim_f60": {"attr_e20": {"prop_i20": 365.71, "col_c42": "open", "dim_k43": null, "prop_w98": 953, "key_v81": 75, "col_n55": "Paris"}, "field_q84": false, "field_c17": {"prop_d70": "Bob", "val_m12": "nonsense", "val_v05": "https://api.io/v1", "key_b61": "blue"}, "col_e18": 833.38}, "dim_b75": 530.55, "dim_t84": "https:... | Field 'val_e58' must be boolean, got string | {"dim_f60":{"attr_e20":{"prop_i20":365.71,"col_c42":"open","dim_k43":null,"prop_w98":953,"key_v81":75,"col_n55":"Paris"},"field_q84":false,"field_c17":{"prop_d70":"Bob","val_m12":"nonsense","val_v05":"https://api.io/v1","key_b61":"blue"},"col_e18":833.38},"dim_b75":530.55,"dim_t84":"https://www.org/v1","val_e58":false} |
TASK repair_structured_output
SPEC
FIELD item_id TYPE number REQUIRED yes
FIELD voltage TYPE null REQUIRED yes
FIELD cargo_type TYPE string REQUIRED yes
BROKEN_OUTPUT
apply_discount(item_id=477.02, voltage=None, cargo_type='Charlie') | {"item_id":477.02,"voltage":null,"cargo_type":"Charlie"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"item_id": {
"type": "number"
},
"voltage": {
"type": "null"
},
"cargo_type": {
"type": "string"
}
},
"required": [
"cargo_type",
"item_id",
"voltage"
]
} | apply_discount(item_id=477.02, voltage=None, cargo_type='Charlie') | Tool call uses Python syntax instead of JSON | {"item_id":477.02,"voltage":null,"cargo_type":"Charlie"} |
TASK repair_structured_output
SPEC
FIELD col_i96 TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD key_b94 TYPE integer REQUIRED no
FIELD param_i57 TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes
FIELD param_s73 TYPE string REQUIRED yes
FIELD prop_z52[] TYPE string VALUES red|blue... | {"param_i57":"berthed","param_s73":"pending","prop_z52":["red"]} | agent_chain | {
"type": "object",
"properties": {
"col_i96": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"key_b94": {
"type": "integer"
},
"param_i57": {
"type": "string",
"enum": [
"berthed",
... | Let me check the system.
Action: get_inventory
Result: {"param_s73": "pending", "prop_z52": ["red"]}
I'll query our database.
Action: run_diagnostics
Result: | Agent multi-step chain with truncated tool output | {"param_i57":"berthed","param_s73":"pending","prop_z52":["red"]} |
TASK repair_structured_output
SPEC
FIELD dim_r73 TYPE number REQUIRED no
FIELD val_c06.dim_x87 TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED no
FIELD val_c06.val_q89 TYPE boolean REQUIRED no
FIELD val_c06.field_c43 TYPE string VALUES draft|published|archived REQUIRED yes
FIELD val_c06.dim_o88 TYPE nul... | {"dim_r73":463.33,"val_c06":{"dim_x87":"type_e","val_q89":false,"field_c43":"archived","dim_o88":null},"attr_g40":"2023-12-25","param_j29":false,"param_l98":"admin@test.io","col_a62":200} | partial_structure | {
"type": "object",
"properties": {
"dim_r73": {
"type": "number"
},
"val_c06": {
"type": "object",
"properties": {
"dim_x87": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d",
"... | The attr_g40 is 2023-12-25 and {"dim_r73":463.33,"val_c06":{"dim_x87":"type_e","val_q89":false,"field_c43":"archived","dim_o88":null},"attr_g40":"2023-12-25","param_j29":false,"param_l98":"admin@test.io","col_a62":200} | Output mixes natural language with JSON | {"dim_r73":463.33,"val_c06":{"dim_x87":"type_e","val_q89":false,"field_c43":"archived","dim_o88":null},"attr_g40":"2023-12-25","param_j29":false,"param_l98":"admin@test.io","col_a62":200} |
TASK repair_structured_output
SPEC
FIELD size TYPE boolean REQUIRED yes
FIELD department TYPE string REQUIRED no
FIELD organism TYPE string_email REQUIRED no
FIELD company TYPE boolean REQUIRED no
FIELD price TYPE null REQUIRED no
FIELD step TYPE string REQUIRED no
FIELD ward TYPE string_email REQUIRED no
BROKEN_OUTP... | {"size":false,"organism":"admin@test.io","company":false,"step":"PASS","ward":"user@domain.org"} | unquoted_keys | {
"type": "object",
"properties": {
"size": {
"type": "boolean"
},
"department": {
"type": "string"
},
"organism": {
"type": "string",
"format": "email"
},
"company": {
"type": "boolean"
},
"price": {
"type": "null"
},
"step": {
"... | {size:false,organism:"admin@test.io",company:false,step:"PASS",ward:"user@domain.org"} | Expecting property name enclosed in double quotes | {"size":false,"organism":"admin@test.io","company":false,"step":"PASS","ward":"user@domain.org"} |
TASK repair_structured_output
SPEC
FIELD vessel_name TYPE string REQUIRED yes
FIELD isotope TYPE string_uri REQUIRED yes
FIELD role TYPE integer REQUIRED yes
FIELD salinity TYPE string REQUIRED yes
BROKEN_OUTPUT
{vessel_name:"qux",isotope:"https://example.org/v1",role:988,salinity:"RTG-04"} | {"vessel_name":"qux","isotope":"https://example.org/v1","role":988,"salinity":"RTG-04"} | unquoted_keys | {
"type": "object",
"properties": {
"vessel_name": {
"type": "string"
},
"isotope": {
"type": "string",
"format": "uri"
},
"role": {
"type": "integer"
},
"salinity": {
"type": "string"
}
},
"required": [
"isotope",
"salinity",
"role",
... | {vessel_name:"qux",isotope:"https://example.org/v1",role:988,salinity:"RTG-04"} | Expecting property name enclosed in double quotes | {"vessel_name":"qux","isotope":"https://example.org/v1","role":988,"salinity":"RTG-04"} |
TASK repair_structured_output
SPEC
FIELD visible TYPE string REQUIRED yes
FIELD message TYPE null REQUIRED no
FIELD patient_id TYPE string REQUIRED no
BROKEN_OUTPUT
{"visible":"London" | {"visible":"London"} | truncated_array | {
"type": "object",
"properties": {
"visible": {
"type": "string"
},
"message": {
"type": "null"
},
"patient_id": {
"type": "string"
}
},
"required": [
"visible"
]
} | {"visible":"London" | Unexpected end of JSON input — truncated object | {"visible":"London"} |
TASK repair_structured_output
SPEC
FIELD build_status TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD hazmat_code TYPE integer REQUIRED yes
FIELD size TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED yes
FIELD verified TYPE string_uri REQUIRED no
FIELD invoice_id.chapter.compound TYPE string VALUE... | {"build_status":"viewer","hazmat_code":589,"size":"level_2","verified":"https://www.io/api","invoice_id":{"chapter":{"compound":"published","organism":"type_b","longitude":"level_3"},"bearing":"free","message":968},"ward":{"fleet_number":"2026-09-18T13:17:00Z","crew_id":"PASS","brake_pressure":"info@example.com","publi... | missing_required | {
"type": "object",
"properties": {
"build_status": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"hazmat_code": {
"type": "integer"
},
"size": {
"type": "string",
"enum": [
"level_1",
"level_2",
... | {"build_status": "viewer", "hazmat_code": 589, "verified": "https://www.io/api", "invoice_id": {"chapter": {"compound": "published", "organism": "type_b", "longitude": "level_3"}, "bearing": "free", "message": 968}, "ward": {"fleet_number": "2026-09-18T13:17:00Z", "crew_id": "PASS", "brake_pressure": "info@example.com"... | Required field 'size' is missing | {"build_status":"viewer","hazmat_code":589,"size":"level_2","verified":"https://www.io/api","invoice_id":{"chapter":{"compound":"published","organism":"type_b","longitude":"level_3"},"bearing":"free","message":968},"ward":{"fleet_number":"2026-09-18T13:17:00Z","crew_id":"PASS","brake_pressure":"info@example.com","publi... |
TASK repair_structured_output
SPEC
FIELD quality_score TYPE null REQUIRED yes
FIELD full_name TYPE integer REQUIRED no
FIELD run_id.date TYPE string VALUES success|error|warning|info REQUIRED no
FIELD run_id.yield_pct TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
FIELD run_id.size TYPE strin... | {"quality_score":null,"run_id":{"yield_pct":"operational","size":"active","terminal_id":{"shipping":"oceanic","paragraph":"BRL","category":"delivered","terminal_id":406,"footnote":"Diana"}}} | unquoted_keys | {
"type": "object",
"properties": {
"quality_score": {
"type": "null"
},
"full_name": {
"type": "integer"
},
"run_id": {
"type": "object",
"properties": {
"date": {
"type": "string",
"enum": [
"success",
"error",
... | {quality_score:null,run_id:{yield_pct:"operational",size:"active",terminal_id:{shipping:"oceanic",paragraph:"BRL",category:"delivered",terminal_id:406,footnote:"Diana"}}} | Expecting property name enclosed in double quotes | {"quality_score":null,"run_id":{"yield_pct":"operational","size":"active","terminal_id":{"shipping":"oceanic","paragraph":"BRL","category":"delivered","terminal_id":406,"footnote":"Diana"}}} |
TASK repair_structured_output
SPEC
FIELD fleet_number TYPE string VALUES active|inactive|pending REQUIRED no
FIELD category TYPE boolean REQUIRED yes
FIELD quality_score TYPE string REQUIRED no
FIELD allele TYPE boolean REQUIRED no
FIELD shipping.url TYPE number REQUIRED no
FIELD shipping.pressure_kpa TYPE string VALU... | {"fleet_number":"pending","category":true,"quality_score":"2024-06-30","allele":false,"shipping":{"pressure_kpa":"pending","run_id":"nonsense","format":"xl"}} | partial_structure | {
"type": "object",
"properties": {
"fleet_number": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
},
"category": {
"type": "boolean"
},
"quality_score": {
"type": "string"
},
"allele": {
"type": "boolean"
}... | The fleet_number is pending and {"fleet_number":"pending","category":true,"quality_score":"2024-06-30","allele":false,"shipping":{"pressure_kpa":"pending","run_id":"nonsense","format":"xl"}} | Output mixes natural language with JSON | {"fleet_number":"pending","category":true,"quality_score":"2024-06-30","allele":false,"shipping":{"pressure_kpa":"pending","run_id":"nonsense","format":"xl"}} |
TASK repair_structured_output
SPEC
FIELD attr_g55 TYPE boolean REQUIRED no
FIELD val_k68 TYPE null REQUIRED yes
FIELD dim_v45 TYPE integer REQUIRED yes
FIELD val_p87.param_r23 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD val_p87.attr_e80 TYPE string VALUES draft|published|archived REQUIRED y... | {"attr_g55":false,"val_k68":null,"dim_v45":924,"val_p87":{"param_r23":"hemizygous","attr_e80":"archived","col_j43":"level_2","key_d75":929,"prop_n05":"Berlin"},"col_j39":{"param_f36":"2023-09-17T06:58:00Z","dim_a37":451,"col_c54":null,"dim_l90":"Paris","col_v80":"2022-05-21T19:39:00Z","key_o55":"type_c","val_q52":"mode... | truncated_object | {
"type": "object",
"properties": {
"attr_g55": {
"type": "boolean"
},
"val_k68": {
"type": "null"
},
"dim_v45": {
"type": "integer"
},
"val_p87": {
"type": "object",
"properties": {
"param_r23": {
"type": "string",
"enum": [
... | {"attr_g55":false,"val_k68":null,"dim_v45":924,"val_p87":{"param_r23":"hemizygous","attr_e80":"archived","col_j43":"level_2","key_d75":929,"prop_n05":"Berlin"},"col_j39":{"param_f36":"2023-09-17T06:58:00Z","dim_a37":451,"col_c54":null,"dim_l90":"Paris","col_v80":"2022-05-21T19:39:00Z","key_o55":"type_c","val_q52":"mode... | Unexpected end of JSON input — truncated object | {"attr_g55":false,"val_k68":null,"dim_v45":924,"val_p87":{"param_r23":"hemizygous","attr_e80":"archived","col_j43":"level_2","key_d75":929,"prop_n05":"Berlin"},"col_j39":{"param_f36":"2023-09-17T06:58:00Z","dim_a37":451,"col_c54":null,"dim_l90":"Paris","col_v80":"2022-05-21T19:39:00Z","key_o55":"type_c","val_q52":"mode... |
TASK repair_structured_output
SPEC
FIELD shift_code TYPE integer REQUIRED yes
FIELD email TYPE string REQUIRED no
FIELD lab_result TYPE string REQUIRED yes
FIELD product_id.medication TYPE integer REQUIRED no
FIELD product_id.amount TYPE integer REQUIRED no
FIELD product_id.sensor_id TYPE integer REQUIRED yes
BROKEN_... | {"shift_code":125,"email":"Santos","lab_result":"PASS","product_id":{"medication":303,"amount":694,"sensor_id":675}} | markdown_fences | {
"type": "object",
"properties": {
"shift_code": {
"type": "integer"
},
"email": {
"type": "string"
},
"lab_result": {
"type": "string"
},
"product_id": {
"type": "object",
"properties": {
"medication": {
"type": "integer"
},
... | ```json
{"shift_code":125,"email":"Santos","lab_result":"PASS","product_id":{"medication":303,"amount":694,"sensor_id":675}}
``` | Output contains markdown code fences | {"shift_code":125,"email":"Santos","lab_result":"PASS","product_id":{"medication":303,"amount":694,"sensor_id":675}} |
TASK repair_structured_output
SPEC
FIELD bearing TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD width TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED yes
FIELD version TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no
FIELD isotope TYPE string REQUIRED yes
FIELD filter_flag T... | {"width":"mode_b","version":"level_4","isotope":"user@domain.com","filter_flag":"degraded","vital_sign":809,"patient_id":908.22} | thought_process | {
"type": "object",
"properties": {
"bearing": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"width": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
"mode... | Processing the request now.
I'll validate against the schema.
{"width":"mode_b","version":"level_4","isotope":"user@domain.com","filter_flag":"degraded","vital_sign":809,"patient_id":908.22} | Output contains chain-of-thought reasoning before JSON | {"width":"mode_b","version":"level_4","isotope":"user@domain.com","filter_flag":"degraded","vital_sign":809,"patient_id":908.22} |
TASK repair_structured_output
SPEC
FIELD current_draw TYPE integer REQUIRED yes
FIELD type TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD yield_pct TYPE integer REQUIRED no
FIELD wavelength TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
BROKEN_OUTPUT
Tool: calibrate_instrum... | {"current_draw":51,"type":"hemizygous","yield_pct":946,"wavelength":"homozygous"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"current_draw": {
"type": "integer"
},
"type": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"yield_pct": {
"type": "integer"
},
"wavelength": {
"type": "string... | Tool: calibrate_instrument
Params: {"current_draw": 51, "yield_pct": 946, "wavelength": "homozygous", "type_new": "hemizygous"} | Agent used wrong parameter name 'type_new' instead of 'type' | {"current_draw":51,"type":"hemizygous","yield_pct":946,"wavelength":"homozygous"} |
TASK repair_structured_output
SPEC
FIELD prop_e59 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD key_p42 TYPE string VALUES single|married|divorced REQUIRED no
FIELD param_m99 TYPE integer REQUIRED no
BROKEN_OUTPUT
{"prop_e59": "hemizygous", "param_m99": "176%"} | {"prop_e59":"hemizygous","param_m99":176} | number_with_unit | {
"type": "object",
"properties": {
"prop_e59": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"key_p42": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"param_m... | {"prop_e59": "hemizygous", "param_m99": "176%"} | Field 'param_m99' must be number, got string with unit | {"prop_e59":"hemizygous","param_m99":176} |
TASK repair_structured_output
SPEC
FIELD dissolved_oxygen TYPE integer REQUIRED no
FIELD zip_code TYPE number REQUIRED no
FIELD amplitude TYPE string REQUIRED no
FIELD batch_code TYPE string REQUIRED yes
FIELD comments.currency TYPE string REQUIRED yes
FIELD comments.wavelength TYPE string_uri REQUIRED yes
FIELD comme... | {"dissolved_oxygen":601,"zip_code":556.49,"amplitude":"https://api.example.com/v1","batch_code":"https://example.com","comments":{"currency":"2024-01-15","wavelength":"https://example.org/api","image_url":"demo"},"address":{"color":"MV-Evergreen-01","aligned_pct":"Hapag-Lloyd-Express","port_code":false}} | truncated_array | {
"type": "object",
"properties": {
"dissolved_oxygen": {
"type": "integer"
},
"zip_code": {
"type": "number"
},
"amplitude": {
"type": "string"
},
"batch_code": {
"type": "string"
},
"comments": {
"type": "object",
"properties": {
"cur... | {"dissolved_oxygen":601,"zip_code":556.49,"amplitude":"https://api.example.com/v1","batch_code":"https://example.com","comments":{"currency":"2024-01-15","wavelength":"https://example.org/api","image_url":"demo"},"address":{"color":"MV-Evergreen-01","aligned_pct":"Hapag-Lloyd-Express","port_code":false} | Unexpected end of JSON input — truncated object | {"dissolved_oxygen":601,"zip_code":556.49,"amplitude":"https://api.example.com/v1","batch_code":"https://example.com","comments":{"currency":"2024-01-15","wavelength":"https://example.org/api","image_url":"demo"},"address":{"color":"MV-Evergreen-01","aligned_pct":"Hapag-Lloyd-Express","port_code":false}} |
TASK repair_structured_output
SPEC
FIELD message TYPE integer REQUIRED yes
FIELD count TYPE string REQUIRED no
FIELD collateral TYPE integer REQUIRED no
FIELD feedback.temp_celsius TYPE string REQUIRED yes
FIELD feedback.lane TYPE string_uri REQUIRED no
FIELD feedback.conductivity TYPE string REQUIRED yes
FIELD feedba... | {"message":854,"collateral":460,"feedback":{"temp_celsius":"test@example.com","lane":"https://data.io/v1","conductivity":"https://example.com","reagent":"user@test.io","timezone":[{"fleet_number":"small","bed_number":"PASS","branch":"Santos"}]},"end_date":686,"username":"Maria","gene_id":430} | null_required | {
"type": "object",
"properties": {
"message": {
"type": "integer"
},
"count": {
"type": "string"
},
"collateral": {
"type": "integer"
},
"feedback": {
"type": "object",
"properties": {
"temp_celsius": {
"type": "string"
},
... | {"message": 854, "collateral": 460, "feedback": null, "end_date": 686, "username": "Maria", "gene_id": 430} | Required field 'feedback' is null | {"message":854,"collateral":460,"feedback":{"temp_celsius":"test@example.com","lane":"https://data.io/v1","conductivity":"https://example.com","reagent":"user@test.io","timezone":[{"fleet_number":"small","bed_number":"PASS","branch":"Santos"}]},"end_date":686,"username":"Maria","gene_id":430} |
TASK repair_structured_output
SPEC
FIELD tax TYPE boolean REQUIRED yes
FIELD quantity TYPE string REQUIRED no
FIELD maturity_date TYPE string REQUIRED yes
FIELD position TYPE string_email REQUIRED yes
FIELD subtotal[] TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED no
BROKEN_OUTPUT
{"tax": "false", "maturity_... | {"tax":true,"maturity_date":"MV-Evergreen-01","position":"test@example.com","subtotal":["mode_a","mode_d","mode_d","mode_b"]} | boolean_as_string | {
"type": "object",
"properties": {
"tax": {
"type": "boolean"
},
"quantity": {
"type": "string"
},
"maturity_date": {
"type": "string"
},
"position": {
"type": "string",
"format": "email"
},
"subtotal": {
"type": "array",
"items": {
... | {"tax": "false", "maturity_date": "MV-Evergreen-01", "position": "test@example.com", "subtotal": ["mode_a", "mode_d", "mode_d", "mode_b"]} | Field 'tax' must be boolean, got string | {"tax":true,"maturity_date":"MV-Evergreen-01","position":"test@example.com","subtotal":["mode_a","mode_d","mode_d","mode_b"]} |
TASK repair_structured_output
SPEC
FIELD field_b52 TYPE string REQUIRED no
FIELD val_n27 TYPE integer REQUIRED yes
FIELD col_o46.key_d13 TYPE boolean REQUIRED no
FIELD col_o46.dim_f26 TYPE string_email REQUIRED yes
FIELD col_o46.col_q41 TYPE integer REQUIRED no
FIELD col_o46.attr_y78.attr_y53 TYPE string VALUES operat... | {"field_b52":"Alice","val_n27":346,"col_o46":{"dim_f26":"ops@test.io","attr_y78":{"attr_y53":"degraded","col_s26":"option_a","field_i30":"mode_a","key_m66":"Oliveira"}},"attr_z35":{"dim_q57":"test@example.com","key_g09":"coastal","val_p20":"demo","field_b76":"level_3","val_t30":{"field_c91":794,"attr_q97":"test@example... | missing_bracket | {
"type": "object",
"properties": {
"field_b52": {
"type": "string"
},
"val_n27": {
"type": "integer"
},
"col_o46": {
"type": "object",
"properties": {
"key_d13": {
"type": "boolean"
},
"dim_f26": {
"type": "string",
"... | {"field_b52":"Alice","val_n27":346,"col_o46":{"dim_f26":"ops@test.io","attr_y78":{"attr_y53":"degraded","col_s26":"option_a","field_i30":"mode_a","key_m66":"Oliveira"}},"attr_z35":{"dim_q57":"test@example.com","key_g09":"coastal","val_p20":"demo","field_b76":"level_3","val_t30":{"field_c91":794,"attr_q97":"test@example... | Missing closing bracket | {"field_b52":"Alice","val_n27":346,"col_o46":{"dim_f26":"ops@test.io","attr_y78":{"attr_y53":"degraded","col_s26":"option_a","field_i30":"mode_a","key_m66":"Oliveira"}},"attr_z35":{"dim_q57":"test@example.com","key_g09":"coastal","val_p20":"demo","field_b76":"level_3","val_t30":{"field_c91":794,"attr_q97":"test@example... |
TASK repair_structured_output
SPEC
FIELD sensor_id TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED no
FIELD medication TYPE string_date-time REQUIRED no
FIELD description TYPE string VALUES option_a|option_b|option_c|option_d REQUIRED yes
FIELD maturity_date.compound TYPE string REQUIRED yes
FIELD matur... | {"sensor_id":"type_b","description":"option_a","maturity_date":{"compound":"test","length":"option_b","procedure_code":754.81}} | unquoted_keys | {
"type": "object",
"properties": {
"sensor_id": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d",
"type_e"
]
},
"medication": {
"type": "string",
"format": "date-time"
},
"description": {
"type": "st... | {sensor_id:"type_b",description:"option_a",maturity_date:{compound:"test",length:"option_b",procedure_code:754.81}} | Expecting property name enclosed in double quotes | {"sensor_id":"type_b","description":"option_a","maturity_date":{"compound":"test","length":"option_b","procedure_code":754.81}} |
TASK repair_structured_output
SPEC
FIELD param_l49 TYPE boolean REQUIRED yes
FIELD key_h38 TYPE number REQUIRED no
FIELD attr_e20 TYPE integer REQUIRED no
FIELD val_o03 TYPE boolean REQUIRED no
FIELD val_i33 TYPE string REQUIRED no
FIELD val_e19 TYPE integer REQUIRED yes
FIELD field_a07 TYPE string VALUES admin|editor... | {"param_l49":true,"key_h38":438.09,"attr_e20":697,"val_o03":false,"val_i33":"pending","val_e19":994,"field_a07":"admin","param_g28":{"prop_k52":679,"param_z09":"married","field_z89":null}} | tool_call_python_syntax | {
"type": "object",
"properties": {
"param_l49": {
"type": "boolean"
},
"key_h38": {
"type": "number"
},
"attr_e20": {
"type": "integer"
},
"val_o03": {
"type": "boolean"
},
"val_i33": {
"type": "string"
},
"val_e19": {
"type": "integer... | read_sensor_array(param_l49=True, key_h38=438.09, attr_e20=697, val_o03=False, val_i33='pending', val_e19=994, field_a07='admin', param_g28={'prop_k52': 679, 'param_z09': 'married', 'field_z89': None}) | Tool call uses Python syntax instead of JSON | {"param_l49":true,"key_h38":438.09,"attr_e20":697,"val_o03":false,"val_i33":"pending","val_e19":994,"field_a07":"admin","param_g28":{"prop_k52":679,"param_z09":"married","field_z89":null}} |
TASK repair_structured_output
SPEC
FIELD product_id TYPE string VALUES option_a|option_b|option_c|option_d REQUIRED yes
FIELD title TYPE integer REQUIRED yes
FIELD tile TYPE integer REQUIRED no
FIELD discount.format TYPE string VALUES option_a|option_b|option_c|option_d REQUIRED no
FIELD discount.throttle_pos.position... | {"product_id":"option_a","title":272,"phenotype":400,"fleet_number":518} | trailing_comma | {
"type": "object",
"properties": {
"product_id": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d"
]
},
"title": {
"type": "integer"
},
"tile": {
"type": "integer"
},
"discount": {
"type": "ob... | {"product_id":"option_a","title":272,"phenotype":400,"fleet_number":518,} | Unexpected trailing comma | {"product_id":"option_a","title":272,"phenotype":400,"fleet_number":518} |
TASK repair_structured_output
SPEC
FIELD val_u25 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD param_y99 TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD prop_q95 TYPE string REQUIRED no
FIELD col_a70.val_u74 TYPE string REQUIRED no
FIELD col_a70.param_i72 TYPE string_emai... | {"val_u25":"operational","prop_q95":"chrX","col_a70":{"param_i72":"admin@domain.org","attr_d44":"nonsense","param_v15":"frameshift","attr_h26":257.97,"param_u37":"2020-07-17T00:43:00Z","param_r00":"This is a test value."},"prop_u11":false,"key_q99":"completed"} | missing_required | {
"type": "object",
"properties": {
"val_u25": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
},
"param_y99": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterpri... | {"val_u25": "operational", "prop_q95": "chrX", "col_a70": {"param_i72": "admin@domain.org", "attr_d44": "nonsense", "param_v15": "frameshift", "attr_h26": 257.97, "param_u37": "2020-07-17T00:43:00Z", "param_r00": "This is a test value."}, "prop_u11": false} | Required field 'key_q99' is missing | {"val_u25":"operational","prop_q95":"chrX","col_a70":{"param_i72":"admin@domain.org","attr_d44":"nonsense","param_v15":"frameshift","attr_h26":257.97,"param_u37":"2020-07-17T00:43:00Z","param_r00":"This is a test value."},"prop_u11":false,"key_q99":"completed"} |
TASK repair_structured_output
SPEC
FIELD dim_e95 TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED yes
FIELD attr_w67 TYPE string_uri REQUIRED no
FIELD field_a97 TYPE string REQUIRED no
BROKEN_OUTPUT
{dim_e95:"type_b",attr_w67:"https://data.org/api"} | {"dim_e95":"type_b","attr_w67":"https://data.org/api"} | unquoted_keys | {
"type": "object",
"properties": {
"dim_e95": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d",
"type_e"
]
},
"attr_w67": {
"type": "string",
"format": "uri"
},
"field_a97": {
"type": "string"
}
... | {dim_e95:"type_b",attr_w67:"https://data.org/api"} | Expecting property name enclosed in double quotes | {"dim_e95":"type_b","attr_w67":"https://data.org/api"} |
TASK repair_structured_output
SPEC
FIELD strand TYPE string REQUIRED yes
FIELD pressure_kpa TYPE string_uri REQUIRED no
FIELD balance TYPE integer REQUIRED no
FIELD item_id TYPE string_date-time REQUIRED yes
FIELD role TYPE integer REQUIRED yes
FIELD visible TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
B... | {"strand":"New York","pressure_kpa":"https://www.org/v1","balance":578,"item_id":"2023-08-14T07:07:00Z","role":201,"visible":"enterprise"} | number_with_unit | {
"type": "object",
"properties": {
"strand": {
"type": "string"
},
"pressure_kpa": {
"type": "string",
"format": "uri"
},
"balance": {
"type": "integer"
},
"item_id": {
"type": "string",
"format": "date-time"
},
"role": {
"type": "intege... | {"strand": "New York", "pressure_kpa": "https://www.org/v1", "balance": 578, "item_id": "2023-08-14T07:07:00Z", "role": "201kg", "visible": "enterprise"} | Field 'role' must be number, got string with unit | {"strand":"New York","pressure_kpa":"https://www.org/v1","balance":578,"item_id":"2023-08-14T07:07:00Z","role":201,"visible":"enterprise"} |
TASK repair_structured_output
SPEC
FIELD frequency_hz TYPE string VALUES single|married|divorced REQUIRED yes
FIELD aligned_pct TYPE string REQUIRED no
FIELD role TYPE string REQUIRED yes
FIELD product_id TYPE integer REQUIRED no
BROKEN_OUTPUT
{"frequency_hz":"single","aligned_pct":"MV-Evergreen-01","role":"Maria","p... | {"frequency_hz":"single","aligned_pct":"MV-Evergreen-01","role":"Maria","product_id":123} | truncated_array | {
"type": "object",
"properties": {
"frequency_hz": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"aligned_pct": {
"type": "string"
},
"role": {
"type": "string"
},
"product_id": {
"type": "integer"
}
... | {"frequency_hz":"single","aligned_pct":"MV-Evergreen-01","role":"Maria","product_id":123 | Unexpected end of JSON input — truncated object | {"frequency_hz":"single","aligned_pct":"MV-Evergreen-01","role":"Maria","product_id":123} |
TASK repair_structured_output
SPEC
FIELD param_s06 TYPE string REQUIRED yes
FIELD prop_g30 TYPE integer REQUIRED yes
FIELD param_k17 TYPE integer REQUIRED yes
FIELD field_x56 TYPE string VALUES draft|published|archived REQUIRED no
BROKEN_OUTPUT
Let me check the system.
Action: check_cargo_manifest
Result: {"param_s06... | {"param_s06":"2024-06-30","prop_g30":827,"param_k17":497,"field_x56":"archived"} | agent_chain | {
"type": "object",
"properties": {
"param_s06": {
"type": "string"
},
"prop_g30": {
"type": "integer"
},
"param_k17": {
"type": "integer"
},
"field_x56": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
}
... | Let me check the system.
Action: check_cargo_manifest
Result: {"param_s06": "2024-06-30", "prop_g30": 827, "param_k17": 497}
I'll query our database.
Action: track_vessel
Result: | Agent multi-step chain with truncated tool output | {"param_s06":"2024-06-30","prop_g30":827,"param_k17":497,"field_x56":"archived"} |
TASK repair_structured_output
SPEC
FIELD index TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD score TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD brake_pressure TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD lane TYPE string VALUES email|phone|sms|p... | {"index":"unstable","score":"in_transit","brake_pressure":"open","lane":"phone","bill_of_lading":"heterozygous"} | trailing_comma | {
"type": "object",
"properties": {
"index": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
},
"score": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
... | {"index":"unstable","score":"in_transit","brake_pressure":"open","lane":"phone","bill_of_lading":"heterozygous",} | Unexpected trailing comma | {"index":"unstable","score":"in_transit","brake_pressure":"open","lane":"phone","bill_of_lading":"heterozygous"} |
TASK repair_structured_output
SPEC
FIELD dim_u73.val_t35 TYPE string_uri REQUIRED no
FIELD dim_u73.prop_j90 TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD dim_u73.dim_j31 TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD dim_u73.param_r30 TYPE string VALUES homozygous|heterozygous|hemizygous ... | {"dim_u73":{"val_t35":"https://example.com/data","prop_j90":"enterprise","col_m31":{"prop_p92":"Berlin","col_s43":"nonsense","col_f27":492.42,"attr_e46":362,"val_p53":206,"attr_f85":false}},"param_a29":"user@domain.com","attr_v28":612.09,"attr_d52":"archived","col_q49":"test@domain.org","col_p94":true} | agent_chain | {
"type": "object",
"properties": {
"dim_u73": {
"type": "object",
"properties": {
"val_t35": {
"type": "string",
"format": "uri"
},
"prop_j90": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
... | Let me check the system.
Action: check_availability
Result: {"param_a29": "user@domain.com", "attr_v28": 612.09, "attr_d52": "archived", "col_q49": "test@domain.org", "col_p94": true}
Processing the request now.
Action: check_cargo_manifest
Result: | Agent multi-step chain with truncated tool output | {"dim_u73":{"val_t35":"https://example.com/data","prop_j90":"enterprise","col_m31":{"prop_p92":"Berlin","col_s43":"nonsense","col_f27":492.42,"attr_e46":362,"val_p53":206,"attr_f85":false}},"param_a29":"user@domain.com","attr_v28":612.09,"attr_d52":"archived","col_q49":"test@domain.org","col_p94":true} |
TASK repair_structured_output
SPEC
FIELD field_i14 TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD key_l21 TYPE string VALUES active|inactive|pending REQUIRED no
FIELD attr_o27 TYPE number REQUIRED no
FIELD val_l96 TYPE string_date-time REQUIRED no
FIELD key_i61 TYPE string VALUES operational|degraded|offlin... | {"field_i14":"email","key_l21":"active","val_l96":"2025-06-01T00:17:00Z","key_i61":"operational","col_s73":false} | wrong_type | {
"type": "object",
"properties": {
"field_i14": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"key_l21": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
},
"attr_o27"... | {"field_i14": "email", "key_l21": "active", "val_l96": "2025-06-01T00:17:00Z", "key_i61": "operational", "col_s73": "\"no\""} | Field 'col_s73' must be boolean, got string | {"field_i14":"email","key_l21":"active","val_l96":"2025-06-01T00:17:00Z","key_i61":"operational","col_s73":false} |
TASK repair_structured_output
SPEC
FIELD attr_d49 TYPE null REQUIRED yes
FIELD prop_t60 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD param_q55 TYPE integer REQUIRED no
FIELD val_w65 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
FIELD field_c28 TYPE string VALUES reliable|unstable... | {"attr_d49":null,"prop_t60":"JPY","param_q55":856,"val_w65":"frameshift","field_c28":"unstable"} | missing_brace | {
"type": "object",
"properties": {
"attr_d49": {
"type": "null"
},
"prop_t60": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"param_q55": {
"type": "integer"
},
"val_w65": {
"type": "strin... | {"attr_d49":null,"prop_t60":"JPY","param_q55":856,"val_w65":"frameshift","field_c28":"unstable" | Missing closing brace | {"attr_d49":null,"prop_t60":"JPY","param_q55":856,"val_w65":"frameshift","field_c28":"unstable"} |
TASK repair_structured_output
SPEC
FIELD aligned_pct TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD phone.phenotype TYPE number REQUIRED yes
FIELD phone.throttle_pos TYPE number REQUIRED no
FIELD phone.consignee TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD phone.gene_id TYPE string RE... | {"phone":{"phenotype":81.54,"throttle_pos":885.7,"consignee":"basic","gene_id":"active","features":"https://api.io/data","lab_result":"large","category":"admin@example.com"},"currency":"small","category":null,"torque_output":"intermittent","address":{"insurance_id":"RTG-04","shift_code":151,"pressure_kpa":"Santos","ves... | partial_structure | {
"type": "object",
"properties": {
"aligned_pct": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"phone": {
"type": "object",
"properties": {
"phenotype": {
"type": "number"
},
"thro... | Based on the data, currency is small. {"phone":{"phenotype":81.54,"throttle_pos":885.7,"consignee":"basic","gene_id":"active","features":"https://api.io/data","lab_result":"large","category":"admin@example.com"},"currency":"small","category":null,"torque_output":"intermittent","address":{"insurance_id":"RTG-04","shift_... | Output mixes natural language with JSON | {"phone":{"phenotype":81.54,"throttle_pos":885.7,"consignee":"basic","gene_id":"active","features":"https://api.io/data","lab_result":"large","category":"admin@example.com"},"currency":"small","category":null,"torque_output":"intermittent","address":{"insurance_id":"RTG-04","shift_code":151,"pressure_kpa":"Santos","ves... |
TASK repair_structured_output
SPEC
FIELD val_o05 TYPE boolean REQUIRED no
FIELD dim_t35 TYPE string REQUIRED yes
FIELD field_g46 TYPE string REQUIRED yes
FIELD dim_y28 TYPE string REQUIRED no
FIELD key_o11.prop_n20 TYPE string REQUIRED no
FIELD key_o11.param_o95 TYPE boolean REQUIRED yes
FIELD key_o11.param_b92 TYPE b... | {"val_o05":false,"dim_t35":"pending","field_g46":"Santos","dim_y28":"Smith","key_o11":{"prop_n20":"2024-01-15","param_o95":false,"prop_k27":{"col_x22":true,"val_o94":"world","val_j83":"Charlie","val_w19":true},"param_e30":"level_3","field_v08":"Silva"}} | tool_call_wrong_param | {
"type": "object",
"properties": {
"val_o05": {
"type": "boolean"
},
"dim_t35": {
"type": "string"
},
"field_g46": {
"type": "string"
},
"dim_y28": {
"type": "string"
},
"key_o11": {
"type": "object",
"properties": {
"prop_n20": {
... | Tool: schedule_meeting
Params: {"dim_t35": "pending", "field_g46": "Santos", "dim_y28": "Smith", "key_o11": {"prop_n20": "2024-01-15", "param_o95": false, "prop_k27": {"col_x22": true, "val_o94": "world", "val_j83": "Charlie", "val_w19": true}, "param_e30": "level_3", "field_v08": "Silva"}, "val_o05_new": false} | Agent used wrong parameter name 'val_o05_new' instead of 'val_o05' | {"val_o05":false,"dim_t35":"pending","field_g46":"Santos","dim_y28":"Smith","key_o11":{"prop_n20":"2024-01-15","param_o95":false,"prop_k27":{"col_x22":true,"val_o94":"world","val_j83":"Charlie","val_w19":true},"param_e30":"level_3","field_v08":"Silva"}} |
TASK repair_structured_output
SPEC
FIELD field_n67 TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD col_f67 TYPE string REQUIRED no
FIELD field_h97 TYPE null REQUIRED yes
FIELD val_n10 TYPE string REQUIRED yes
BROKEN_OUTPUT
The col_f67 is example and {"field_n67":"low","col_f67":"example","field_h97":nu... | {"field_n67":"low","col_f67":"example","field_h97":null,"val_n10":"Hapag-Lloyd-Express"} | partial_structure | {
"type": "object",
"properties": {
"field_n67": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"col_f67": {
"type": "string"
},
"field_h97": {
"type": "null"
},
"val_n10": {
"type": "string"
... | The col_f67 is example and {"field_n67":"low","col_f67":"example","field_h97":null,"val_n10":"Hapag-Lloyd-Express"} | Output mixes natural language with JSON | {"field_n67":"low","col_f67":"example","field_h97":null,"val_n10":"Hapag-Lloyd-Express"} |
TASK repair_structured_output
SPEC
FIELD param_i95 TYPE null REQUIRED no
FIELD prop_k54 TYPE string REQUIRED no
FIELD prop_p66 TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD attr_h04.key_j20 TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD attr_h04.col_y18 TYPE string VALUES operational|degrade... | {"prop_p66":"medium","attr_h04":{"key_j20":"admin","col_y18":"offline","param_e68":"inactive","val_l95":"Jane","attr_l09":"FWD"},"col_g32":"pro"} | tool_call_partial_args | {
"type": "object",
"properties": {
"param_i95": {
"type": "null"
},
"prop_k54": {
"type": "string"
},
"prop_p66": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"attr_h04": {
"type": "object",
... | I need to look up the information first.
Action: queue_sequencing_run
Arguments: {"prop_p66": "medium", "attr_h04": {"key_j20": "admin", "col_y18": "offline", "param_e68": "inactive", "val_l95": "Jane", "attr_l09": "FWD"}} | Agent tool call missing required parameter 'col_g32' | {"prop_p66":"medium","attr_h04":{"key_j20":"admin","col_y18":"offline","param_e68":"inactive","val_l95":"Jane","attr_l09":"FWD"},"col_g32":"pro"} |
TASK repair_structured_output
SPEC
FIELD organism TYPE boolean REQUIRED yes
FIELD due_date TYPE null REQUIRED no
FIELD currency TYPE string VALUES single|married|divorced REQUIRED no
FIELD title TYPE string REQUIRED yes
FIELD fleet_number TYPE integer REQUIRED no
FIELD last_name TYPE number REQUIRED yes
FIELD version.... | {"organism":false,"currency":"married","title":"https://example.com","last_name":206.7,"version":{"user_id":"operational","current_draw":"FWD","chromosome":"This is a test value.","conductivity":[{"section":false,"yield_pct":"REV","vessel_name":275,"barcode":false,"terminal_id":"Diana"},{"shipping":"ops@example.com","y... | truncated_object | {
"type": "object",
"properties": {
"organism": {
"type": "boolean"
},
"due_date": {
"type": "null"
},
"currency": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"title": {
"type": "string"
},
"fleet_... | {"organism":false,"currency":"married","title":"https://example.com","last_name":206.7,"version":{"user_id":"operational","current_draw":"FWD","chromosome":"This is a test value.","conductivity":[{"section":false,"yield_pct":"REV","vessel_name":275,"barcode":false,"terminal_id":"Diana"},{"shipping":"ops@example.com","y... | Unexpected end of JSON input — truncated object | {"organism":false,"currency":"married","title":"https://example.com","last_name":206.7,"version":{"user_id":"operational","current_draw":"FWD","chromosome":"This is a test value.","conductivity":[{"section":false,"yield_pct":"REV","vessel_name":275,"barcode":false,"terminal_id":"Diana"},{"shipping":"ops@example.com","y... |
TASK repair_structured_output
SPEC
FIELD col_v47 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD val_c05 TYPE string VALUES type_a|type_b REQUIRED yes
FIELD param_p93 TYPE null REQUIRED no
FIELD key_c13 TYPE number REQUIRED yes
BROKEN_OUTPUT
{col_v47:"escalated",val_c05:"type_b",para... | {"col_v47":"escalated","val_c05":"type_b","param_p93":null,"key_c13":551.15} | unquoted_keys | {
"type": "object",
"properties": {
"col_v47": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"val_c05": {
"type": "string",
"enum": [
"type_a",
"type_b"
]
},
"param_p93... | {col_v47:"escalated",val_c05:"type_b",param_p93:null,key_c13:551.15} | Expecting property name enclosed in double quotes | {"col_v47":"escalated","val_c05":"type_b","param_p93":null,"key_c13":551.15} |
TASK repair_structured_output
SPEC
FIELD state TYPE string REQUIRED no
FIELD run_id TYPE string REQUIRED yes
FIELD timezone.color TYPE string REQUIRED yes
FIELD timezone.verified TYPE string_email REQUIRED no
FIELD timezone.run_id TYPE string REQUIRED yes
FIELD timezone.bill_of_lading TYPE integer REQUIRED no
FIELD ti... | {"state":"Paris","run_id":"Charlie","timezone":{"color":"hello","verified":"user@domain.org","run_id":"GRCh38","bill_of_lading":881,"log_level":{"tags":"https://api.io/api","values":"small"}},"yield_pct":true,"address":585} | missing_required | {
"type": "object",
"properties": {
"state": {
"type": "string"
},
"run_id": {
"type": "string"
},
"timezone": {
"type": "object",
"properties": {
"color": {
"type": "string"
},
"verified": {
"type": "string",
"format"... | {"state": "Paris", "run_id": "Charlie", "timezone": {"color": "hello", "verified": "user@domain.org", "run_id": "GRCh38", "bill_of_lading": 881, "log_level": {"tags": "https://api.io/api", "values": "small"}}, "yield_pct": true} | Required field 'address' is missing | {"state":"Paris","run_id":"Charlie","timezone":{"color":"hello","verified":"user@domain.org","run_id":"GRCh38","bill_of_lading":881,"log_level":{"tags":"https://api.io/api","values":"small"}},"yield_pct":true,"address":585} |
TASK repair_structured_output
SPEC
FIELD val_q72 TYPE string VALUES draft|published|archived REQUIRED yes
FIELD key_m06 TYPE integer REQUIRED no
FIELD field_u66 TYPE boolean REQUIRED no
FIELD field_z73 TYPE boolean REQUIRED no
FIELD col_n93[].prop_o19 TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no
FIEL... | {"val_q72":"draft","field_z73":false} | agent_chain | {
"type": "object",
"properties": {
"val_q72": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"key_m06": {
"type": "integer"
},
"field_u66": {
"type": "boolean"
},
"field_z73": {
"type": "boolean"
},
... | I need to look up the information first.
Action: calculate_docking_fee
Result: {"val_q72": "draft"}
Processing the request now.
Action: align_reads
Result: | Agent multi-step chain with truncated tool output | {"val_q72":"draft","field_z73":false} |
TASK repair_structured_output
SPEC
FIELD enabled TYPE string REQUIRED yes
FIELD transaction_id TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD pressure_kpa TYPE string VALUES single|married|divorced REQUIRED yes
FIELD price TYPE integer REQUIRED no
FIELD quantity TYPE string REQUIRED no
FIELD footnote TYPE... | {"enabled":"Paris","transaction_id":"medium","pressure_kpa":"married","quantity":"completed","footnote":"pending","longitude":null} | extra_text_after | {
"type": "object",
"properties": {
"enabled": {
"type": "string"
},
"transaction_id": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
},
"pressure_kpa": {
"type": "string",
"enum": [
"single",
"... | {"enabled":"Paris","transaction_id":"medium","pressure_kpa":"married","quantity":"completed","footnote":"pending","longitude":null}
This should match the schema you provided. | Output contains non-JSON text after the object | {"enabled":"Paris","transaction_id":"medium","pressure_kpa":"married","quantity":"completed","footnote":"pending","longitude":null} |
TASK repair_structured_output
SPEC
FIELD version TYPE string REQUIRED no
FIELD height TYPE integer REQUIRED no
FIELD score TYPE string REQUIRED no
FIELD diagnosis_code TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED no
FIELD aligned_pct TYPE string REQUIRED yes
FIELD state TYPE string REQUIRED no
FIELD... | {"version":"Oliveira","height":532,"score":"https://api.example.com/v1","aligned_pct":"Alice","state":"chrX","image_url":"push"} | number_with_unit | {
"type": "object",
"properties": {
"version": {
"type": "string"
},
"height": {
"type": "integer"
},
"score": {
"type": "string"
},
"diagnosis_code": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
"... | {"version": "Oliveira", "height": "532kg", "score": "https://api.example.com/v1", "aligned_pct": "Alice", "state": "chrX", "image_url": "push"} | Field 'height' must be number, got string with unit | {"version":"Oliveira","height":532,"score":"https://api.example.com/v1","aligned_pct":"Alice","state":"chrX","image_url":"push"} |
TASK repair_structured_output
SPEC
FIELD attr_f09 TYPE string REQUIRED yes
FIELD dim_y15 TYPE string REQUIRED no
FIELD attr_q80 TYPE string REQUIRED no
FIELD attr_o04 TYPE integer REQUIRED yes
FIELD key_i63 TYPE string VALUES option_a|option_b REQUIRED yes
FIELD attr_k32.attr_b36 TYPE string VALUES homozygous|heterozy... | {"attr_f09":"pending","dim_y15":"sample","attr_q80":"foo","attr_o04":924,"key_i63":"option_b","attr_k32":{"attr_b36":"hemizygous","attr_d91":202,"key_c14":376,"param_r52":["https://example.io/v1","https://www.com/v1"],"attr_p20":[964,251,417,291]}} | thought_process | {
"type": "object",
"properties": {
"attr_f09": {
"type": "string"
},
"dim_y15": {
"type": "string"
},
"attr_q80": {
"type": "string"
},
"attr_o04": {
"type": "integer"
},
"key_i63": {
"type": "string",
"enum": [
"option_a",
"op... | Analyzing the schema to generate valid JSON...
Checking required fields and types...
{"attr_f09":"pending","dim_y15":"sample","attr_q80":"foo","attr_o04":924,"key_i63":"option_b","attr_k32":{"attr_b36":"hemizygous","attr_d91":202,"key_c14":376,"param_r52":["https://example.io/v1","https://www.com/v1"],"attr_p20":[964,... | Output contains chain-of-thought reasoning before JSON | {"attr_f09":"pending","dim_y15":"sample","attr_q80":"foo","attr_o04":924,"key_i63":"option_b","attr_k32":{"attr_b36":"hemizygous","attr_d91":202,"key_c14":376,"param_r52":["https://example.io/v1","https://www.com/v1"],"attr_p20":[964,251,417,291]}} |
TASK repair_structured_output
SPEC
FIELD param_h30.col_w49 TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD param_h30.key_t79 TYPE integer REQUIRED yes
FIELD param_h30.dim_k82 TYPE boolean REQUIRED yes
FIELD prop_x01.key_l43 TYPE integer REQUIRED no
FIELD prop_x01.param_n12 TYPE number REQUIRED no
FIELD... | {"param_h30":{"key_t79":213,"dim_k82":true},"val_v64":true,"col_p73":"critical","attr_q88":null} | tool_call_partial_args | {
"type": "object",
"properties": {
"param_h30": {
"type": "object",
"properties": {
"col_w49": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"key_t79": {
... | I need to look up the information first.
Action: get_weather
Arguments: {"param_h30": {"key_t79": 213, "dim_k82": true}, "val_v64": true, "attr_q88": null} | Agent tool call missing required parameter 'col_p73' | {"param_h30":{"key_t79":213,"dim_k82":true},"val_v64":true,"col_p73":"critical","attr_q88":null} |
TASK repair_structured_output
SPEC
FIELD start_date TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD decay_rate TYPE string VALUES option_a|option_b|option_c|option_d|option_e|option_f REQUIRED yes
FIELD humidity_pct TYPE string REQUIRED yes
BROKEN_OUTPUT
<functioncall> validate_sample
{start_date: "phone", ... | {"start_date":"phone","decay_rate":"option_d","humidity_pct":"user@domain.com"} | tool_call_bad_format | {
"type": "object",
"properties": {
"start_date": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"decay_rate": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
... | <functioncall> validate_sample
{start_date: "phone", decay_rate: "option_d", humidity_pct: "user@domain.com"} | Tool call has malformed arguments — unquoted keys in function parameters | {"start_date":"phone","decay_rate":"option_d","humidity_pct":"user@domain.com"} |
TASK repair_structured_output
SPEC
FIELD size TYPE string VALUES success|error|warning|info REQUIRED yes
FIELD username TYPE string REQUIRED no
FIELD vital_sign TYPE number REQUIRED yes
FIELD notes TYPE null REQUIRED yes
FIELD salinity TYPE string_email REQUIRED no
FIELD count TYPE string_email REQUIRED no
BROKEN_OUT... | {"size":"info","username":"Oliveira","vital_sign":500.02,"notes":null,"salinity":"admin@domain.org"} | thought_process | {
"type": "object",
"properties": {
"size": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"username": {
"type": "string"
},
"vital_sign": {
"type": "number"
},
"notes": {
"type": "null"
},
... | Let me construct this step by step.
First, I'll identify the required fields, then fill in the values.
{"size":"info","username":"Oliveira","vital_sign":500.02,"notes":null,"salinity":"admin@domain.org"} | Output contains chain-of-thought reasoning before JSON | {"size":"info","username":"Oliveira","vital_sign":500.02,"notes":null,"salinity":"admin@domain.org"} |
TASK repair_structured_output
SPEC
FIELD maturity_date TYPE integer REQUIRED yes
FIELD patient_id TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD lane TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED no
FIELD bearing TYPE null REQUIRED yes
FIELD brake_pressure TYPE string VAL... | {"maturity_date":322,"patient_id":"underway","lane":"mode_f","bearing":null,"brake_pressure":"mode_a","currency":{"umi":"2024-01-15","longitude":"level_2","humidity_pct":{"filter_flag":false,"weight":"editor","price":"low"}},"position":"basic"} | tool_call_partial_args | {
"type": "object",
"properties": {
"maturity_date": {
"type": "integer"
},
"patient_id": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"lane": {
"type": "string",
"enum": [
"mode_a",
... | Let me check the system.
Action: calibrate_instrument
Arguments: {"maturity_date": 322, "patient_id": "underway", "lane": "mode_f", "brake_pressure": "mode_a", "currency": {"umi": "2024-01-15", "longitude": "level_2", "humidity_pct": {"filter_flag": false, "weight": "editor", "price": "low"}}, "position": "basic"} | Agent tool call missing required parameter 'bearing' | {"maturity_date":322,"patient_id":"underway","lane":"mode_f","bearing":null,"brake_pressure":"mode_a","currency":{"umi":"2024-01-15","longitude":"level_2","humidity_pct":{"filter_flag":false,"weight":"editor","price":"low"}},"position":"basic"} |
TASK repair_structured_output
SPEC
FIELD param_j66 TYPE string REQUIRED yes
FIELD attr_p02 TYPE string VALUES type_a|type_b|type_c|type_d|type_e|type_f REQUIRED yes
FIELD field_t42 TYPE string REQUIRED yes
FIELD attr_e97 TYPE number REQUIRED yes
FIELD val_l44 TYPE integer REQUIRED no
BROKEN_OUTPUT
{param_j66:"demo",a... | {"param_j66":"demo","attr_p02":"type_f","field_t42":"RTG-04","attr_e97":55.64,"val_l44":600} | unquoted_keys | {
"type": "object",
"properties": {
"param_j66": {
"type": "string"
},
"attr_p02": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d",
"type_e",
"type_f"
]
},
"field_t42": {
"type": "string"
},
... | {param_j66:"demo",attr_p02:"type_f",field_t42:"RTG-04",attr_e97:55.64,val_l44:600} | Expecting property name enclosed in double quotes | {"param_j66":"demo","attr_p02":"type_f","field_t42":"RTG-04","attr_e97":55.64,"val_l44":600} |
TASK repair_structured_output
SPEC
FIELD height TYPE integer REQUIRED no
FIELD full_name TYPE integer REQUIRED no
FIELD total TYPE string REQUIRED yes
FIELD berth_slot.discount TYPE string REQUIRED no
FIELD berth_slot.torque_output TYPE null REQUIRED yes
FIELD berth_slot.filter_flag TYPE integer REQUIRED no
FIELD bert... | {"height":126,"total":"Luis","berth_slot":{"torque_output":null,"filter_flag":250,"bearing":"bar","conductivity":"https://example.org/api","dosage":"published"},"index":{"account_id":null,"rating":{"name":null,"humidity_pct":"pending","paragraph":"https://example.io/v1","image_url":false,"height":755.24,"payment_status... | tool_call_python_syntax | {
"type": "object",
"properties": {
"height": {
"type": "integer"
},
"full_name": {
"type": "integer"
},
"total": {
"type": "string"
},
"berth_slot": {
"type": "object",
"properties": {
"discount": {
"type": "string"
},
"tor... | get_account(height=126, total='Luis', berth_slot={'torque_output': None, 'filter_flag': 250, 'bearing': 'bar', 'conductivity': 'https://example.org/api', 'dosage': 'published'}, index={'account_id': None, 'rating': {'name': None, 'humidity_pct': 'pending', 'paragraph': 'https://example.io/v1', 'image_url': False, 'heig... | Tool call uses Python syntax instead of JSON | {"height":126,"total":"Luis","berth_slot":{"torque_output":null,"filter_flag":250,"bearing":"bar","conductivity":"https://example.org/api","dosage":"published"},"index":{"account_id":null,"rating":{"name":null,"humidity_pct":"pending","paragraph":"https://example.io/v1","image_url":false,"height":755.24,"payment_status... |
TASK repair_structured_output
SPEC
FIELD col_a14 TYPE integer REQUIRED no
FIELD key_z19 TYPE integer REQUIRED no
FIELD param_o88.param_g82 TYPE boolean REQUIRED no
FIELD param_o88.col_j12 TYPE integer REQUIRED yes
FIELD param_o88.attr_p80 TYPE string REQUIRED no
FIELD param_o88.key_r03.prop_t85 TYPE integer REQUIRED n... | {"col_a14":988,"val_i84":"2026-12-26T06:33:00Z","col_w78":"sms"} | date_format_error | {
"type": "object",
"properties": {
"col_a14": {
"type": "integer"
},
"key_z19": {
"type": "integer"
},
"param_o88": {
"type": "object",
"properties": {
"param_g82": {
"type": "boolean"
},
"col_j12": {
"type": "integer"
... | {"col_a14": 988, "val_i84": "2024/06/15 14:30:00", "col_w78": "sms"} | Field 'val_i84' has invalid date format | {"col_a14":988,"val_i84":"2026-12-26T06:33:00Z","col_w78":"sms"} |
TASK repair_structured_output
SPEC
FIELD dim_v77 TYPE number REQUIRED yes
FIELD dim_z85 TYPE string VALUES single|married|divorced REQUIRED no
FIELD attr_m84 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD param_a12 TYPE string_uri REQUIRED no
FIELD prop_f79 TYPE string REQUIRED no
FIELD field... | {"dim_v77":275.62,"attr_m84":"homozygous","prop_f79":"test","field_t47":false} | extra_field | {
"type": "object",
"properties": {
"dim_v77": {
"type": "number"
},
"dim_z85": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"attr_m84": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
... | {"dim_v77": 275.62, "attr_m84": "homozygous", "prop_f79": "test", "field_t47": false, "extra_value_2209": true} | Unknown field 'extra_value_2209' not defined in schema | {"dim_v77":275.62,"attr_m84":"homozygous","prop_f79":"test","field_t47":false} |
TASK repair_structured_output
SPEC
FIELD amplitude TYPE integer REQUIRED no
FIELD annotation TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED yes
FIELD payment_status TYPE string REQUIRED no
FIELD invoice_id TYPE string VALUES type_a|type_b|type_c|type_d|type_e|type_f REQUIRED no
FIELD section TYPE string VALUE... | {"annotation":"type_a","turbidity":"closed"} | truncated_object | {
"type": "object",
"properties": {
"amplitude": {
"type": "integer"
},
"annotation": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d"
]
},
"payment_status": {
"type": "string"
},
"invoice_id": {
"typ... | {"annotation":"type_a","turbidity":"closed" | Unexpected end of JSON input — truncated object | {"annotation":"type_a","turbidity":"closed"} |
TASK repair_structured_output
SPEC
FIELD crew_id TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD diagnosis_code TYPE string REQUIRED no
FIELD bill_of_lading TYPE string_email REQUIRED no
FIELD velocity TYPE string VALUES success|error|warning|info REQUIRED no
FIELD chapter TYPE string VALUES ad... | {"crew_id":"new","bill_of_lading":"user@example.com","chapter":"viewer","duration_ms":"hemizygous","priority":null} | unquoted_keys | {
"type": "object",
"properties": {
"crew_id": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"diagnosis_code": {
"type": "string"
},
"bill_of_lading": {
"type": "string",
"format": "email"
}... | {crew_id:"new",bill_of_lading:"user@example.com",chapter:"viewer",duration_ms:"hemizygous",priority:null} | Expecting property name enclosed in double quotes | {"crew_id":"new","bill_of_lading":"user@example.com","chapter":"viewer","duration_ms":"hemizygous","priority":null} |
TASK repair_structured_output
SPEC
FIELD subtotal.current_draw TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED yes
FIELD subtotal.frequency_hz TYPE string VALUES type_a|type_b|type_c REQUIRED yes
FIELD subtotal.shipping TYPE string VALUES option_a|option_b|option_c REQUIRED yes
FIELD subtotal.department TYPE... | {"subtotal":{"current_draw":"cat_e","frequency_hz":"type_b","shipping":"option_a","dissolved_oxygen":605,"currency":"quux"},"position":{"subtotal":"test","priority":false,"description":792},"manifest_ref":"mode_b","compound":"Jane"} | tool_call_bad_format | {
"type": "object",
"properties": {
"subtotal": {
"type": "object",
"properties": {
"current_draw": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
"cat_e"
]
},
"freque... | <functioncall> query_port_status
{subtotal: {current_draw: "cat_e", frequency_hz: "type_b", shipping: "option_a", dissolved_oxygen: 605, currency: "quux"}, position: {subtotal: "test", priority: false, description: 792}, manifest_ref: "mode_b", compound: "Jane"} | Tool call has malformed arguments — unquoted keys in function parameters | {"subtotal":{"current_draw":"cat_e","frequency_hz":"type_b","shipping":"option_a","dissolved_oxygen":605,"currency":"quux"},"position":{"subtotal":"test","priority":false,"description":792},"manifest_ref":"mode_b","compound":"Jane"} |
TASK repair_structured_output
SPEC
FIELD sensor_id TYPE string REQUIRED no
FIELD visible TYPE integer REQUIRED yes
FIELD company TYPE string REQUIRED yes
BROKEN_OUTPUT
Tool: search
Params: {"visible": 292, "company": "baz", "sensor_id_id": "2023-12-25"} | {"sensor_id":"2023-12-25","visible":292,"company":"baz"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"sensor_id": {
"type": "string"
},
"visible": {
"type": "integer"
},
"company": {
"type": "string"
}
},
"required": [
"visible",
"company"
]
} | Tool: search
Params: {"visible": 292, "company": "baz", "sensor_id_id": "2023-12-25"} | Agent used wrong parameter name 'sensor_id_id' instead of 'sensor_id' | {"sensor_id":"2023-12-25","visible":292,"company":"baz"} |
TASK repair_structured_output
SPEC
FIELD col_y17 TYPE integer REQUIRED yes
FIELD key_j28 TYPE integer REQUIRED yes
FIELD key_x11.field_m50 TYPE null REQUIRED no
FIELD key_x11.field_x58 TYPE string REQUIRED yes
FIELD key_x11.val_z68 TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED no
BROKEN_OUTPUT
call_varian... | {"col_y17":589,"key_j28":111,"key_x11":{"field_m50":null,"field_x58":"Bob","val_z68":"cat_a"}} | tool_call_python_syntax | {
"type": "object",
"properties": {
"col_y17": {
"type": "integer"
},
"key_j28": {
"type": "integer"
},
"key_x11": {
"type": "object",
"properties": {
"field_m50": {
"type": "null"
},
"field_x58": {
"type": "string"
},
... | call_variants(col_y17=589, key_j28=111, key_x11={'field_m50': None, 'field_x58': 'Bob', 'val_z68': 'cat_a'}) | Tool call uses Python syntax instead of JSON | {"col_y17":589,"key_j28":111,"key_x11":{"field_m50":null,"field_x58":"Bob","val_z68":"cat_a"}} |
TASK repair_structured_output
SPEC
FIELD filter_flag TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD maturity_date TYPE null REQUIRED no
FIELD paragraph TYPE string REQUIRED yes
FIELD patient_id TYPE string REQUIRED no
FIELD commit_hash.feedback TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD co... | {"filter_flag":"small","maturity_date":null,"paragraph":"active","commit_hash":{"feedback":"push","level":"user@domain.org","score":{"currency":"Jane","terminal_id":711,"category":490.54,"active":false}},"footnote":"example"} | tool_call_partial_args | {
"type": "object",
"properties": {
"filter_flag": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
},
"maturity_date": {
"type": "null"
},
"paragraph": {
"type": "string"
},
"patient_id": {
"type": "stri... | I need to look up the information first.
Action: query_port_status
Arguments: {"filter_flag": "small", "maturity_date": null, "commit_hash": {"feedback": "push", "level": "user@domain.org", "score": {"currency": "Jane", "terminal_id": 711, "category": 490.54, "active": false}}, "footnote": "example"} | Agent tool call missing required parameter 'paragraph' | {"filter_flag":"small","maturity_date":null,"paragraph":"active","commit_hash":{"feedback":"push","level":"user@domain.org","score":{"currency":"Jane","terminal_id":711,"category":490.54,"active":false}},"footnote":"example"} |
TASK repair_structured_output
SPEC
FIELD compound TYPE null REQUIRED yes
FIELD repository TYPE string REQUIRED no
FIELD annotation TYPE string VALUES option_a|option_b|option_c|option_d REQUIRED no
FIELD index TYPE integer REQUIRED no
FIELD shipper_ref TYPE string REQUIRED no
FIELD bed_number TYPE boolean REQUIRED no
... | {"compound":null,"repository":"Hapag-Lloyd-Express","annotation":"option_a","shipper_ref":"pending","run_id":"in_progress"} | thought_process | {
"type": "object",
"properties": {
"compound": {
"type": "null"
},
"repository": {
"type": "string"
},
"annotation": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d"
]
},
"index": {
"type": "... | Let me construct this step by step.
First, I'll identify the required fields, then fill in the values.
{"compound":null,"repository":"Hapag-Lloyd-Express","annotation":"option_a","shipper_ref":"pending","run_id":"in_progress"} | Output contains chain-of-thought reasoning before JSON | {"compound":null,"repository":"Hapag-Lloyd-Express","annotation":"option_a","shipper_ref":"pending","run_id":"in_progress"} |
TASK repair_structured_output
SPEC
FIELD dim_f20 TYPE number REQUIRED no
FIELD param_b29 TYPE null REQUIRED yes
FIELD field_z56 TYPE integer REQUIRED no
FIELD key_x67.param_f90 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD key_x67.prop_e84 TYPE string VALUES draft|published|archived ... | {"param_b29":null,"field_z56":585,"key_x67":{"param_f90":"escalated","prop_e84":"draft","key_d35":813,"param_s05":false,"val_r32":"Alice"},"key_b24":{"attr_c44":{"val_u74":"Smith","field_k35":null,"dim_j91":688,"field_n60":"test"},"field_t42":182,"prop_w99":"admin@test.io","prop_c57":"example"},"col_x25":"Hapag-Lloyd-E... | trailing_comma | {
"type": "object",
"properties": {
"dim_f20": {
"type": "number"
},
"param_b29": {
"type": "null"
},
"field_z56": {
"type": "integer"
},
"key_x67": {
"type": "object",
"properties": {
"param_f90": {
"type": "string",
"enum": [
... | {"param_b29":null,"field_z56":585,"key_x67":{"param_f90":"escalated","prop_e84":"draft","key_d35":813,"param_s05":false,"val_r32":"Alice",},"key_b24":{"attr_c44":{"val_u74":"Smith","field_k35":null,"dim_j91":688,"field_n60":"test"},"field_t42":182,"prop_w99":"admin@test.io","prop_c57":"example"},"col_x25":"Hapag-Lloyd-... | Unexpected trailing comma | {"param_b29":null,"field_z56":585,"key_x67":{"param_f90":"escalated","prop_e84":"draft","key_d35":813,"param_s05":false,"val_r32":"Alice"},"key_b24":{"attr_c44":{"val_u74":"Smith","field_k35":null,"dim_j91":688,"field_n60":"test"},"field_t42":182,"prop_w99":"admin@test.io","prop_c57":"example"},"col_x25":"Hapag-Lloyd-E... |
TASK repair_structured_output
SPEC
FIELD param_e47 TYPE integer REQUIRED yes
FIELD field_n24 TYPE null REQUIRED no
FIELD field_l85[].prop_e11 TYPE number REQUIRED yes
FIELD field_l85[].val_d23 TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD field_l85[].col_z81 TYPE string REQUIRED no
FIELD field_l85[].p... | {"param_e47":385} | tool_call_python_syntax | {
"type": "object",
"properties": {
"param_e47": {
"type": "integer"
},
"field_n24": {
"type": "null"
},
"field_l85": {
"type": "array",
"items": {
"type": "object",
"properties": {
"prop_e11": {
"type": "number"
},
... | send_email(param_e47=385) | Tool call uses Python syntax instead of JSON | {"param_e47":385} |
TASK repair_structured_output
SPEC
FIELD index TYPE string REQUIRED no
FIELD order_id TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED yes
FIELD cargo_type TYPE number REQUIRED yes
FIELD throttle_pos.organism.hazmat_code TYPE number REQUIRED yes
FIELD throttle_pos.organism.url TYPE string REQUIRED no
FIELD th... | {"order_id":"cat_c","cargo_type":617.74,"throttle_pos":{"organism":{"hazmat_code":805.74,"url":"Silva","quality_score":"divorced","created_at":false,"enabled":"cat_b","color":"https://api.io/data"},"maturity_date":true,"features":"level_1","format":"option_a","size":431.98,"shift_code":"2020-09-04T23:29:00Z","annotatio... | tool_call_python_syntax | {
"type": "object",
"properties": {
"index": {
"type": "string"
},
"order_id": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
"cat_e"
]
},
"cargo_type": {
"type": "number"
},
"throttle_pos": {
... | generate_report(order_id='cat_c', cargo_type=617.74, throttle_pos={'organism': {'hazmat_code': 805.74, 'url': 'Silva', 'quality_score': 'divorced', 'created_at': False, 'enabled': 'cat_b', 'color': 'https://api.io/data'}, 'maturity_date': True, 'features': 'level_1', 'format': 'option_a', 'size': 431.98, 'shift_code': ... | Tool call uses Python syntax instead of JSON | {"order_id":"cat_c","cargo_type":617.74,"throttle_pos":{"organism":{"hazmat_code":805.74,"url":"Silva","quality_score":"divorced","created_at":false,"enabled":"cat_b","color":"https://api.io/data"},"maturity_date":true,"features":"level_1","format":"option_a","size":431.98,"shift_code":"2020-09-04T23:29:00Z","annotatio... |
TASK repair_structured_output
SPEC
FIELD due_date TYPE string REQUIRED yes
FIELD country TYPE null REQUIRED yes
FIELD temp_celsius TYPE string_uri REQUIRED no
BROKEN_OUTPUT
{"due_date":"Maria","country":null,"temp_celsius":"https://example.com/data",} | {"due_date":"Maria","country":null,"temp_celsius":"https://example.com/data"} | trailing_comma | {
"type": "object",
"properties": {
"due_date": {
"type": "string"
},
"country": {
"type": "null"
},
"temp_celsius": {
"type": "string",
"format": "uri"
}
},
"required": [
"due_date",
"country"
]
} | {"due_date":"Maria","country":null,"temp_celsius":"https://example.com/data",} | Unexpected trailing comma | {"due_date":"Maria","country":null,"temp_celsius":"https://example.com/data"} |
TASK repair_structured_output
SPEC
FIELD prop_v75 TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD prop_j30 TYPE string VALUES level_1|level_2 REQUIRED no
FIELD col_x67 TYPE string REQUIRED no
FIELD dim_i11 TYPE null REQUIRED yes
FIELD val_p37 TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED yes
... | {"prop_v75":"white","prop_j30":"level_2","col_x67":"Alice","dim_i11":null,"val_p37":"type_b","attr_u28":"level_4"} | truncated_array | {
"type": "object",
"properties": {
"prop_v75": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"prop_j30": {
"type": "string",
"enum": [
"level_1",
"level_2"
]
},
"col_x67": {... | {"prop_v75":"white","prop_j30":"level_2","col_x67":"Alice","dim_i11":null,"val_p37":"type_b","attr_u28":"level_4" | Unexpected end of JSON input — truncated object | {"prop_v75":"white","prop_j30":"level_2","col_x67":"Alice","dim_i11":null,"val_p37":"type_b","attr_u28":"level_4"} |
TASK repair_structured_output
SPEC
FIELD prop_t72 TYPE boolean REQUIRED yes
FIELD param_u95 TYPE string VALUES type_a|type_b|type_c REQUIRED yes
FIELD param_q67 TYPE boolean REQUIRED no
FIELD param_h64 TYPE integer REQUIRED yes
FIELD col_h08 TYPE boolean REQUIRED yes
BROKEN_OUTPUT
Let me check the system.
Action: tra... | {"prop_t72":false,"param_u95":"type_b","param_q67":true,"param_h64":471,"col_h08":false} | tool_call_partial_args | {
"type": "object",
"properties": {
"prop_t72": {
"type": "boolean"
},
"param_u95": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c"
]
},
"param_q67": {
"type": "boolean"
},
"param_h64": {
"type": "integer"
},
... | Let me check the system.
Action: transfer_call
Arguments: {"prop_t72": false, "param_q67": true, "param_h64": 471, "col_h08": false} | Agent tool call missing required parameter 'param_u95' | {"prop_t72":false,"param_u95":"type_b","param_q67":true,"param_h64":471,"col_h08":false} |
TASK repair_structured_output
SPEC
FIELD run_id TYPE string REQUIRED yes
FIELD longitude TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD company.invoice_id TYPE string REQUIRED yes
FIELD company.voltage TYPE string REQUIRED no
FIELD company.barcode[] TYPE string REQUIRED yes
FIELD company.email[] TYPE st... | {"run_id":"quux","company":{"invoice_id":"test@example.com","voltage":"Paris","barcode":["GRCh38"]},"catalyst":null} | extra_field | {
"type": "object",
"properties": {
"run_id": {
"type": "string"
},
"longitude": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"company": {
"type": "object",
"properties": {
"invoice_id": {
... | {"run_id": "quux", "company": {"invoice_id": "test@example.com", "voltage": "Paris", "barcode": ["GRCh38"]}, "catalyst": null, "extra_field_6179": true} | Unknown field 'extra_field_6179' not defined in schema | {"run_id":"quux","company":{"invoice_id":"test@example.com","voltage":"Paris","barcode":["GRCh38"]},"catalyst":null} |
TASK repair_structured_output
SPEC
FIELD field_v91 TYPE integer REQUIRED no
FIELD col_b04 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD dim_i38.key_e98.attr_y61 TYPE string REQUIRED no
FIELD dim_i38.key_e98.field_q41 TYPE string REQUIRED yes
FIELD dim_i38.key_e98.field_u36 TYPE inte... | {"field_v91":452,"col_b04":"confirmed","dim_i38":{"key_e98":{"attr_y61":"Hapag-Lloyd-Express","field_q41":"Luis","field_u36":94,"dim_n16":"quux","prop_r17":"BRL","key_y28":"test@example.com","attr_w96":"admin@test.io","prop_h24":380},"key_e07":true,"val_q94":841,"param_x26":{"val_i15":"berthed","val_k14":"pending","pro... | invalid_enum | {
"type": "object",
"properties": {
"field_v91": {
"type": "integer"
},
"col_b04": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"dim_i38": {
"type": "object",
"properties": {
... | {"field_v91": 452, "col_b04": "invalid_option_472", "dim_i38": {"key_e98": {"attr_y61": "Hapag-Lloyd-Express", "field_q41": "Luis", "field_u36": 94, "dim_n16": "quux", "prop_r17": "BRL", "key_y28": "test@example.com", "attr_w96": "admin@test.io", "prop_h24": 380}, "key_e07": true, "val_q94": 841, "param_x26": {"val_i15... | Field 'col_b04' has invalid enum value 'invalid_option_472', expected one of ['pending_review', 'confirmed', 'rejected', 'escalated'] | {"field_v91":452,"col_b04":"confirmed","dim_i38":{"key_e98":{"attr_y61":"Hapag-Lloyd-Express","field_q41":"Luis","field_u36":94,"dim_n16":"quux","prop_r17":"BRL","key_y28":"test@example.com","attr_w96":"admin@test.io","prop_h24":380},"key_e07":true,"val_q94":841,"param_x26":{"val_i15":"berthed","val_k14":"pending","pro... |
TASK repair_structured_output
SPEC
FIELD department TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED no
FIELD phenotype.interest_rate TYPE string REQUIRED yes
FIELD phenotype.manifest_ref TYPE integer REQUIRED no
FIELD phenotype.country.collateral TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED yes
FIEL... | {"department":"type_d","paragraph":{"department":402.93,"start_date":"foo","height":"draft","barcode":"cat_b","decay_rate":{"items":"ops@example.com","count":934,"item_id":false,"company":"intermittent","filter_flag":"reliable","current_draw":636.53}},"price":"ops@example.com","turbidity":"quux"} | null_required | {
"type": "object",
"properties": {
"department": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d"
]
},
"phenotype": {
"type": "object",
"properties": {
"interest_rate": {
"type": "string"
},
... | {"department": "type_d", "paragraph": null, "price": "ops@example.com", "turbidity": "quux"} | Required field 'paragraph' is null | {"department":"type_d","paragraph":{"department":402.93,"start_date":"foo","height":"draft","barcode":"cat_b","decay_rate":{"items":"ops@example.com","count":934,"item_id":false,"company":"intermittent","filter_flag":"reliable","current_draw":636.53}},"price":"ops@example.com","turbidity":"quux"} |
TASK repair_structured_output
SPEC
FIELD attr_q28 TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD val_o83 TYPE string VALUES cat_a|cat_b|cat_c REQUIRED yes
FIELD prop_i96 TYPE null REQUIRED yes
FIELD field_b40 TYPE string VALUES type_a|type_b|type_c|type_d|type_e|type_f REQUIRED no
FIELD prop_h99 T... | {"attr_q28":"intermittent","val_o83":"cat_b","prop_i96":null,"field_b40":"type_d","prop_h99":"user@domain.org","val_f03":717} | tool_call_text_mix | {
"type": "object",
"properties": {
"attr_q28": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
},
"val_o83": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c"
]
},
"prop_i96": {
... | I'll query our database.
<tool_call name="apply_discount">
{"attr_q28":"intermittent","val_o83":"cat_b","prop_i96":null,"field_b40":"type_d","prop_h99":"user@domain.org","val_f03":717}
</tool_call. | Agent response mixes reasoning text with tool call | {"attr_q28":"intermittent","val_o83":"cat_b","prop_i96":null,"field_b40":"type_d","prop_h99":"user@domain.org","val_f03":717} |
TASK repair_structured_output
SPEC
FIELD cargo_type TYPE string_uri REQUIRED yes
FIELD latitude TYPE string REQUIRED yes
FIELD transaction_id TYPE null REQUIRED yes
FIELD yield_pct TYPE string_uri REQUIRED no
FIELD weight TYPE integer REQUIRED yes
BROKEN_OUTPUT
{"cargo_type":"https://www.io/api","latitude":"Sao Paulo... | {"cargo_type":"https://www.io/api","latitude":"Sao Paulo","transaction_id":null,"yield_pct":"https://api.io/data","weight":390} | extra_text_after | {
"type": "object",
"properties": {
"cargo_type": {
"type": "string",
"format": "uri"
},
"latitude": {
"type": "string"
},
"transaction_id": {
"type": "null"
},
"yield_pct": {
"type": "string",
"format": "uri"
},
"weight": {
"type": "inte... | {"cargo_type":"https://www.io/api","latitude":"Sao Paulo","transaction_id":null,"yield_pct":"https://api.io/data","weight":390}
I've ensured all required fields are present. | Output contains non-JSON text after the object | {"cargo_type":"https://www.io/api","latitude":"Sao Paulo","transaction_id":null,"yield_pct":"https://api.io/data","weight":390} |
TASK repair_structured_output
SPEC
FIELD val_i44 TYPE string_uri REQUIRED yes
FIELD val_k89 TYPE number REQUIRED no
FIELD field_w54 TYPE integer REQUIRED yes
FIELD dim_a34 TYPE string_email REQUIRED no
FIELD field_z85 TYPE boolean REQUIRED no
FIELD dim_k50 TYPE null REQUIRED no
BROKEN_OUTPUT
{"val_i44":"https://examp... | {"val_i44":"https://example.io/data","val_k89":603.6,"field_w54":274,"dim_a34":"test@example.com","field_z85":false,"dim_k50":null} | missing_brace | {
"type": "object",
"properties": {
"val_i44": {
"type": "string",
"format": "uri"
},
"val_k89": {
"type": "number"
},
"field_w54": {
"type": "integer"
},
"dim_a34": {
"type": "string",
"format": "email"
},
"field_z85": {
"type": "boolean... | {"val_i44":"https://example.io/data","val_k89":603.6,"field_w54":274,"dim_a34":"test@example.com","field_z85":false,"dim_k50":null | Missing closing brace | {"val_i44":"https://example.io/data","val_k89":603.6,"field_w54":274,"dim_a34":"test@example.com","field_z85":false,"dim_k50":null} |
TASK repair_structured_output
SPEC
FIELD umi TYPE number REQUIRED no
FIELD longitude TYPE number REQUIRED no
FIELD paragraph TYPE string VALUES mode_a|mode_b|mode_c REQUIRED no
FIELD language TYPE string REQUIRED yes
FIELD thumbnail.currency TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD thumbnail.vol... | {"umi":733.76,"longitude":62.96,"paragraph":"mode_a","language":"REV","thumbnail":{"currency":"basic","status":"MV-Evergreen-01","rating":"2023-12-25","insurance_id":null,"visible":"Hapag-Lloyd-Express"},"type":{"end_date":591.87,"notes":{"first_name":"2023-12-25","balance":"FWD","velocity":"2023-02-11T23:53:00Z","foot... | agent_chain | {
"type": "object",
"properties": {
"umi": {
"type": "number"
},
"longitude": {
"type": "number"
},
"paragraph": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c"
]
},
"language": {
"type": "string"
},
"thumbnai... | I need to look up the information first.
Action: create_order
Result: {"umi": 733.76, "longitude": 62.96, "paragraph": "mode_a", "language": "REV", "type": {"end_date": 591.87, "notes": {"first_name": "2023-12-25", "balance": "FWD", "velocity": "2023-02-11T23:53:00Z", "footnote": "Diana"}, "zip_code": "https://api.io/v... | Agent multi-step chain with truncated tool output | {"umi":733.76,"longitude":62.96,"paragraph":"mode_a","language":"REV","thumbnail":{"currency":"basic","status":"MV-Evergreen-01","rating":"2023-12-25","insurance_id":null,"visible":"Hapag-Lloyd-Express"},"type":{"end_date":591.87,"notes":{"first_name":"2023-12-25","balance":"FWD","velocity":"2023-02-11T23:53:00Z","foot... |
TASK repair_structured_output
SPEC
FIELD col_n51 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED no
FIELD dim_t29 TYPE string VALUES success|error|warning|info REQUIRED no
FIELD field_j88 TYPE string VALUES option_a|option_b|option_c|option_d|option_e|option_f REQUIRED no
FIELD col_l21 TYPE string REQUI... | {"col_n51":"mode_c","dim_t29":"warning","col_l21":"active","dim_k31":"https://api.io/v1","col_v07":"A short description.","field_c26":795,"col_s17":83} | invalid_enum | {
"type": "object",
"properties": {
"col_n51": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
"mode_e"
]
},
"dim_t29": {
"type": "string",
"enum": [
"success",
"error",
"warning",
... | {"col_n51": "mode_c", "dim_t29": "invalid_value_172", "col_l21": "active", "dim_k31": "https://api.io/v1", "col_v07": "A short description.", "field_c26": 795, "col_s17": 83} | Field 'dim_t29' has invalid enum value 'invalid_value_172', expected one of ['success', 'error', 'warning', 'info'] | {"col_n51":"mode_c","dim_t29":"warning","col_l21":"active","dim_k31":"https://api.io/v1","col_v07":"A short description.","field_c26":795,"col_s17":83} |
TASK repair_structured_output
SPEC
FIELD procedure_code TYPE boolean REQUIRED yes
FIELD berth_slot TYPE number REQUIRED yes
FIELD longitude TYPE boolean REQUIRED yes
FIELD latitude TYPE string REQUIRED yes
FIELD id TYPE integer REQUIRED no
BROKEN_OUTPUT
{"procedure_code": true, "berth_slot": "96.23px", "longitude": t... | {"procedure_code":true,"berth_slot":96.23,"longitude":true,"latitude":"demo","id":706} | number_with_unit | {
"type": "object",
"properties": {
"procedure_code": {
"type": "boolean"
},
"berth_slot": {
"type": "number"
},
"longitude": {
"type": "boolean"
},
"latitude": {
"type": "string"
},
"id": {
"type": "integer"
}
},
"required": [
"procedure... | {"procedure_code": true, "berth_slot": "96.23px", "longitude": true, "latitude": "demo", "id": 706} | Field 'berth_slot' must be number, got string with unit | {"procedure_code":true,"berth_slot":96.23,"longitude":true,"latitude":"demo","id":706} |
TASK repair_structured_output
SPEC
FIELD cargo_type TYPE string REQUIRED yes
FIELD quantity TYPE null REQUIRED yes
FIELD gene_id[].filter_flag TYPE string VALUES single|married|divorced REQUIRED yes
FIELD gene_id[].compound TYPE integer REQUIRED no
FIELD gene_id[].first_name TYPE string REQUIRED yes
FIELD gene_id[].co... | {"cargo_type":"GRCh38","quantity":null,"gene_id":[{"filter_flag":"single","compound":266,"first_name":"Charlie","conductivity":true,"dosage":"Santos"},{"filter_flag":"single","compound":26,"first_name":"hello","dosage":"Smith"},{"filter_flag":"divorced","compound":549,"first_name":"Santos","conductivity":false,"dosage"... | missing_required | {
"type": "object",
"properties": {
"cargo_type": {
"type": "string"
},
"quantity": {
"type": "null"
},
"gene_id": {
"type": "array",
"items": {
"type": "object",
"properties": {
"filter_flag": {
"type": "string",
"enum": ... | {"cargo_type": "GRCh38", "quantity": null} | Required field 'gene_id' is missing | {"cargo_type":"GRCh38","quantity":null,"gene_id":[{"filter_flag":"single","compound":266,"first_name":"Charlie","conductivity":true,"dosage":"Santos"},{"filter_flag":"single","compound":26,"first_name":"hello","dosage":"Smith"},{"filter_flag":"divorced","compound":549,"first_name":"Santos","conductivity":false,"dosage"... |
TASK repair_structured_output
SPEC
FIELD vital_sign TYPE boolean REQUIRED no
FIELD repository TYPE string REQUIRED no
FIELD last_name TYPE boolean REQUIRED yes
BROKEN_OUTPUT
I need to look up the information first.
Action: schedule_meeting
Arguments: {"repository": "user@domain.com"} | {"repository":"user@domain.com","last_name":true} | tool_call_partial_args | {
"type": "object",
"properties": {
"vital_sign": {
"type": "boolean"
},
"repository": {
"type": "string"
},
"last_name": {
"type": "boolean"
}
},
"required": [
"last_name"
]
} | I need to look up the information first.
Action: schedule_meeting
Arguments: {"repository": "user@domain.com"} | Agent tool call missing required parameter 'last_name' | {"repository":"user@domain.com","last_name":true} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.