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 id TYPE string_uri REQUIRED no
FIELD category TYPE integer REQUIRED no
FIELD bill_of_lading TYPE string REQUIRED no
FIELD phone TYPE null REQUIRED no
FIELD quality_score TYPE boolean REQUIRED no
FIELD payment_status.gene_id.order_id TYPE string REQUIRED no
FIELD payment_status.... | {"id":"https://api.com/api","bill_of_lading":"chrX","phone":null,"quality_score":true,"payment_status":{"title":"chrX","duration_ms":false,"latitude":{"enabled":"Alice","values":"REV","user_id":"confirmed","state":351.33,"batch_code":"chrX"}}} | single_quotes | {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uri"
},
"category": {
"type": "integer"
},
"bill_of_lading": {
"type": "string"
},
"phone": {
"type": "null"
},
"quality_score": {
"type": "boolean"
},
"payment_st... | {'id':'https://api.com/api','bill_of_lading':'chrX','phone':null,'quality_score':true,'payment_status':{'title':'chrX','duration_ms':false,'latitude':{'enabled':'Alice','values':'REV','user_id':'confirmed','state':351.33,'batch_code':'chrX'}}} | Expecting property name enclosed in double quotes | {"id":"https://api.com/api","bill_of_lading":"chrX","phone":null,"quality_score":true,"payment_status":{"title":"chrX","duration_ms":false,"latitude":{"enabled":"Alice","values":"REV","user_id":"confirmed","state":351.33,"batch_code":"chrX"}}} |
TASK repair_structured_output
SPEC
FIELD date TYPE null REQUIRED yes
FIELD enabled TYPE string REQUIRED no
FIELD trace_id TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD discount TYPE integer REQUIRED no
FIELD feedback.rating TYPE string VALUES active|inactive|pending REQUIRED no
FIELD feedback... | {"date":null,"enabled":"A short description.","trace_id":"returned","discount":322,"feedback":{"username":true,"format":{"score":"user@domain.com","allele":955,"isotope":"https://api.example.com/v1","tile":"This is a test value.","index":"mode_b"},"ph_level":{"insurance_id":"bar","nickname":false,"index":"baz","city":[... | extra_field | {
"type": "object",
"properties": {
"date": {
"type": "null"
},
"enabled": {
"type": "string"
},
"trace_id": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"discount": {
"type": "integer"... | {"date": null, "enabled": "A short description.", "trace_id": "returned", "discount": 322, "feedback": {"username": true, "format": {"score": "user@domain.com", "allele": 955, "isotope": "https://api.example.com/v1", "tile": "This is a test value.", "index": "mode_b"}, "ph_level": {"insurance_id": "bar", "nickname": fa... | Unknown field 'extra_value_5869' not defined in schema | {"date":null,"enabled":"A short description.","trace_id":"returned","discount":322,"feedback":{"username":true,"format":{"score":"user@domain.com","allele":955,"isotope":"https://api.example.com/v1","tile":"This is a test value.","index":"mode_b"},"ph_level":{"insurance_id":"bar","nickname":false,"index":"baz","city":[... |
TASK repair_structured_output
SPEC
FIELD balance TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD lab_result TYPE string REQUIRED no
FIELD vessel_name TYPE string REQUIRED no
FIELD features TYPE string REQUIRED no
FIELD quantity TYPE string REQUIRED no
FIELD bed_number TYPE boolean REQUIRED yes
BROKEN_OUTPUT
... | {"vessel_name":"test@example.com","quantity":"cancelled","bed_number":true} | partial_structure | {
"type": "object",
"properties": {
"balance": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"lab_result": {
"type": "string"
},
"vessel_name": {
"type": "string"
},
"features": {
"type": "string"
},
"qu... | The quantity is cancelled and {"vessel_name":"test@example.com","quantity":"cancelled","bed_number":true} | Output mixes natural language with JSON | {"vessel_name":"test@example.com","quantity":"cancelled","bed_number":true} |
TASK repair_structured_output
SPEC
FIELD version TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD collateral TYPE boolean REQUIRED yes
FIELD umi.torque_output TYPE integer REQUIRED yes
FIELD umi.description TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD umi.pressure_kpa TYPE integer REQUIRED yes... | {"version":"GBP","collateral":false,"umi":{"torque_output":990,"description":"active","pressure_kpa":502},"coverage":"inactive","payment_status":null,"half_life":{"age":true,"cargo_type":"baz","latitude":"Smith","start_date":726,"velocity":645,"lane":"free"},"decay_rate":"world"} | wrong_type | {
"type": "object",
"properties": {
"version": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"collateral": {
"type": "boolean"
},
"umi": {
"type": "object",
"properties": {
"torque_output":... | {"version": "GBP", "collateral": "\"no\"", "umi": {"torque_output": 990, "description": "active", "pressure_kpa": 502}, "coverage": "inactive", "payment_status": null, "half_life": {"age": true, "cargo_type": "baz", "latitude": "Smith", "start_date": 726, "velocity": 645, "lane": "free"}, "decay_rate": "world"} | Field 'collateral' must be boolean, got string | {"version":"GBP","collateral":false,"umi":{"torque_output":990,"description":"active","pressure_kpa":502},"coverage":"inactive","payment_status":null,"half_life":{"age":true,"cargo_type":"baz","latitude":"Smith","start_date":726,"velocity":645,"lane":"free"},"decay_rate":"world"} |
TASK repair_structured_output
SPEC
FIELD name TYPE integer REQUIRED yes
FIELD options TYPE null REQUIRED no
FIELD email TYPE string_uri REQUIRED yes
FIELD vital_sign TYPE string VALUES mode_a|mode_b|mode_c REQUIRED no
BROKEN_OUTPUT
{"options": null, "email": "https://www.org/data"} | {"name":729,"options":null,"email":"https://www.org/data"} | missing_required | {
"type": "object",
"properties": {
"name": {
"type": "integer"
},
"options": {
"type": "null"
},
"email": {
"type": "string",
"format": "uri"
},
"vital_sign": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c"
]
... | {"options": null, "email": "https://www.org/data"} | Required field 'name' is missing | {"name":729,"options":null,"email":"https://www.org/data"} |
TASK repair_structured_output
SPEC
FIELD field_m34 TYPE string VALUES single|married|divorced REQUIRED no
FIELD val_k80 TYPE integer REQUIRED no
FIELD val_u38 TYPE string_date-time REQUIRED yes
FIELD col_s28 TYPE string VALUES draft|published|archived REQUIRED no
FIELD val_j45 TYPE string_date-time REQUIRED no
BROKEN... | {"field_m34":"single","val_k80":271,"val_u38":"2023-01-13T00:54:00Z"} | tool_call_text_mix | {
"type": "object",
"properties": {
"field_m34": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"val_k80": {
"type": "integer"
},
"val_u38": {
"type": "string",
"format": "date-time"
},
"col_s28": {
"ty... | I need to look up the information first.
<tool_call name="align_reads">
{"field_m34":"single","val_k80":271,"val_u38":"2023-01-13T00:54:00Z"}
</tool_call.
Operation completed. | Agent response mixes reasoning text with tool call | {"field_m34":"single","val_k80":271,"val_u38":"2023-01-13T00:54:00Z"} |
TASK repair_structured_output
SPEC
FIELD param_y31 TYPE boolean REQUIRED no
FIELD field_z13 TYPE string REQUIRED no
FIELD attr_k38 TYPE integer REQUIRED yes
FIELD val_b81 TYPE boolean REQUIRED no
FIELD col_g27 TYPE boolean REQUIRED no
FIELD attr_r49 TYPE number REQUIRED yes
BROKEN_OUTPUT
Based on the data, attr_k38 i... | {"param_y31":false,"attr_k38":988,"val_b81":false,"col_g27":false,"attr_r49":174.56} | partial_structure | {
"type": "object",
"properties": {
"param_y31": {
"type": "boolean"
},
"field_z13": {
"type": "string"
},
"attr_k38": {
"type": "integer"
},
"val_b81": {
"type": "boolean"
},
"col_g27": {
"type": "boolean"
},
"attr_r49": {
"type": "num... | Based on the data, attr_k38 is 988. {"param_y31":false,"attr_k38":988,"val_b81":false,"col_g27":false,"attr_r49":174.56} | Output mixes natural language with JSON | {"param_y31":false,"attr_k38":988,"val_b81":false,"col_g27":false,"attr_r49":174.56} |
TASK repair_structured_output
SPEC
FIELD sensor_id TYPE string_date-time REQUIRED no
FIELD verified TYPE integer REQUIRED no
FIELD freight_class[].url TYPE string REQUIRED no
FIELD freight_class[].vessel_name TYPE integer REQUIRED no
FIELD freight_class[].berth_slot TYPE string REQUIRED no
FIELD freight_class[].name T... | {"sensor_id":"2026-11-16T13:17:00Z","verified":822,"freight_class":[{"url":"demo","vessel_name":51,"berth_slot":"REV","name":"FWD","yield_pct":"test","notes":"baz"},{"url":"completed","vessel_name":658,"berth_slot":"Santos","yield_pct":"QC-07","notes":"Jane"},{"url":"hello","vessel_name":725,"berth_slot":"2023-12-25","... | extra_text_before | {
"type": "object",
"properties": {
"sensor_id": {
"type": "string",
"format": "date-time"
},
"verified": {
"type": "integer"
},
"freight_class": {
"type": "array",
"items": {
"type": "object",
"properties": {
"url": {
"type": "... | Pipeline result:
{"sensor_id":"2026-11-16T13:17:00Z","verified":822,"freight_class":[{"url":"demo","vessel_name":51,"berth_slot":"REV","name":"FWD","yield_pct":"test","notes":"baz"},{"url":"completed","vessel_name":658,"berth_slot":"Santos","yield_pct":"QC-07","notes":"Jane"},{"url":"hello","vessel_name":725,"berth_slo... | Output contains non-JSON text before the object | {"sensor_id":"2026-11-16T13:17:00Z","verified":822,"freight_class":[{"url":"demo","vessel_name":51,"berth_slot":"REV","name":"FWD","yield_pct":"test","notes":"baz"},{"url":"completed","vessel_name":658,"berth_slot":"Santos","yield_pct":"QC-07","notes":"Jane"},{"url":"hello","vessel_name":725,"berth_slot":"2023-12-25","... |
TASK repair_structured_output
SPEC
FIELD fleet_number TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD nickname TYPE null REQUIRED no
FIELD compound TYPE boolean REQUIRED no
FIELD version TYPE number REQUIRED no
FIELD company[].strand TYPE boolean REQUIRED no
FIELD company[].longitude TYPE integer REQUIR... | {"fleet_number":"pro","company":[{"zip_code":"warning","log_level":"Alice","duration_ms":"This is a test value.","address":"error"}],"state":[{"allele":"returned","conductivity":819,"umi":"New York"},{"allele":"returned","conductivity":351,"umi":"2023-12-25"}]} | tool_call_python_syntax | {
"type": "object",
"properties": {
"fleet_number": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"nickname": {
"type": "null"
},
"compound": {
"type": "boolean"
},
"version": {
"type": "number"... | send_email(fleet_number='pro', company=[{'zip_code': 'warning', 'log_level': 'Alice', 'duration_ms': 'This is a test value.', 'address': 'error'}], state=[{'allele': 'returned', 'conductivity': 819, 'umi': 'New York'}, {'allele': 'returned', 'conductivity': 351, 'umi': '2023-12-25'}]) | Tool call uses Python syntax instead of JSON | {"fleet_number":"pro","company":[{"zip_code":"warning","log_level":"Alice","duration_ms":"This is a test value.","address":"error"}],"state":[{"allele":"returned","conductivity":819,"umi":"New York"},{"allele":"returned","conductivity":351,"umi":"2023-12-25"}]} |
TASK repair_structured_output
SPEC
FIELD prop_l91 TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD key_s98 TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD val_h99 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD col_m00.key_q70.prop_n38 TYPE string_email REQUIRE... | {"prop_l91":"in_transit","key_s98":"white","param_p08":617,"attr_m65":null} | extra_field | {
"type": "object",
"properties": {
"prop_l91": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"key_s98": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
... | {"prop_l91": "in_transit", "key_s98": "white", "param_p08": 617, "attr_m65": null, "extra_value_7912": true} | Unknown field 'extra_value_7912' not defined in schema | {"prop_l91":"in_transit","key_s98":"white","param_p08":617,"attr_m65":null} |
TASK repair_structured_output
SPEC
FIELD age TYPE number REQUIRED no
FIELD user_id TYPE string REQUIRED yes
FIELD amplitude.temp_celsius TYPE string REQUIRED yes
FIELD amplitude.items TYPE number REQUIRED no
FIELD amplitude.vessel_name TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD amplitude.em... | {"user_id":"user@domain.com","amplitude":{"temp_celsius":"demo","vessel_name":"new","email":null,"country":422,"total":411.07,"interest_rate":{"credit_score":false,"reagent":475,"name":"maintenance","build_status":"completed","trace_id":952.94}},"consignee":"intermittent","manifest_ref":"rejected"} | extra_text_after | {
"type": "object",
"properties": {
"age": {
"type": "number"
},
"user_id": {
"type": "string"
},
"amplitude": {
"type": "object",
"properties": {
"temp_celsius": {
"type": "string"
},
"items": {
"type": "number"
},
... | {"user_id":"user@domain.com","amplitude":{"temp_celsius":"demo","vessel_name":"new","email":null,"country":422,"total":411.07,"interest_rate":{"credit_score":false,"reagent":475,"name":"maintenance","build_status":"completed","trace_id":952.94}},"consignee":"intermittent","manifest_ref":"rejected"}
Hope this helps! | Output contains non-JSON text after the object | {"user_id":"user@domain.com","amplitude":{"temp_celsius":"demo","vessel_name":"new","email":null,"country":422,"total":411.07,"interest_rate":{"credit_score":false,"reagent":475,"name":"maintenance","build_status":"completed","trace_id":952.94}},"consignee":"intermittent","manifest_ref":"rejected"} |
TASK repair_structured_output
SPEC
FIELD dim_m34 TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD field_j01 TYPE boolean REQUIRED no
FIELD field_q54 TYPE string VALUES success|error|warning|info REQUIRED yes
FIELD val_z13 TYPE string REQUIRED no
FIELD key_a82 TYPE string REQUIRED yes
FIELD field_o37 TYPE null... | {"field_j01":true,"field_q54":"success","val_z13":"REV","key_a82":"Charlie","field_o37":null,"prop_f23":"email"} | wrong_type | {
"type": "object",
"properties": {
"dim_m34": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"field_j01": {
"type": "boolean"
},
"field_q54": {
"type": "string",
"enum": [
"success",
"error",... | {"field_j01": "\"yes\"", "field_q54": "success", "val_z13": "REV", "key_a82": "Charlie", "field_o37": null, "prop_f23": "email"} | Field 'field_j01' must be boolean, got string | {"field_j01":true,"field_q54":"success","val_z13":"REV","key_a82":"Charlie","field_o37":null,"prop_f23":"email"} |
TASK repair_structured_output
SPEC
FIELD field_w99 TYPE string REQUIRED yes
FIELD attr_h50 TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes
FIELD val_s67 TYPE null REQUIRED no
FIELD param_u89 TYPE string REQUIRED no
FIELD attr_h80.prop_a83 TYPE string VALUES pending_review|confirmed|rejected|escalated ... | {"field_w99":"cancelled","attr_h50":"berthed","param_u89":"approved","attr_h80":{"prop_a83":"escalated","param_w79":"ops@example.com","val_a79":"berthed","key_q53":null,"dim_e12":426}} | thought_process | {
"type": "object",
"properties": {
"field_w99": {
"type": "string"
},
"attr_h50": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"val_s67": {
"type": "null"
},
"param_u89": {
"type": "str... | Let me construct this step by step.
First, I'll identify the required fields, then fill in the values.
{"field_w99":"cancelled","attr_h50":"berthed","param_u89":"approved","attr_h80":{"prop_a83":"escalated","param_w79":"ops@example.com","val_a79":"berthed","key_q53":null,"dim_e12":426}} | Output contains chain-of-thought reasoning before JSON | {"field_w99":"cancelled","attr_h50":"berthed","param_u89":"approved","attr_h80":{"prop_a83":"escalated","param_w79":"ops@example.com","val_a79":"berthed","key_q53":null,"dim_e12":426}} |
TASK repair_structured_output
SPEC
FIELD language TYPE string_uri REQUIRED yes
FIELD verified TYPE number REQUIRED yes
FIELD lab_result TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD length TYPE string REQUIRED no
BROKEN_OUTPUT
"language":"https://data.org/api","verified":398.53,"lab_result":"u... | {"language":"https://data.org/api","verified":398.53,"lab_result":"underway","length":"foo"} | missing_brace | {
"type": "object",
"properties": {
"language": {
"type": "string",
"format": "uri"
},
"verified": {
"type": "number"
},
"lab_result": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"lengt... | "language":"https://data.org/api","verified":398.53,"lab_result":"underway","length":"foo"} | Missing closing brace | {"language":"https://data.org/api","verified":398.53,"lab_result":"underway","length":"foo"} |
TASK repair_structured_output
SPEC
FIELD phenotype TYPE string VALUES option_a|option_b|option_c REQUIRED no
FIELD footnote TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no
FIELD tags TYPE string REQUIRED yes
FIELD created_at TYPE string_uri REQUIRED yes
FIELD insurance_id TYPE string REQUIRED no
FIELD o... | {"phenotype":"option_b","footnote":"level_1","tags":"Luis","created_at":"https://www.org/data","organism":771,"currency":true} | unquoted_keys | {
"type": "object",
"properties": {
"phenotype": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c"
]
},
"footnote": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4"
]
},... | {phenotype:"option_b",footnote:"level_1",tags:"Luis",created_at:"https://www.org/data",organism:771,currency:true} | Expecting property name enclosed in double quotes | {"phenotype":"option_b","footnote":"level_1","tags":"Luis","created_at":"https://www.org/data","organism":771,"currency":true} |
TASK repair_structured_output
SPEC
FIELD loan_amount TYPE boolean REQUIRED no
FIELD product_id TYPE string_email REQUIRED yes
FIELD freight_class TYPE integer REQUIRED yes
FIELD language.annotation.item_id TYPE integer REQUIRED no
FIELD language.annotation.subtotal TYPE integer REQUIRED no
FIELD language.annotation.pr... | {"loan_amount":true,"product_id":"ops@domain.org","freight_class":820,"rating":{"length":"USD","account_id":null,"priority":"user@domain.org"}} | missing_required | {
"type": "object",
"properties": {
"loan_amount": {
"type": "boolean"
},
"product_id": {
"type": "string",
"format": "email"
},
"freight_class": {
"type": "integer"
},
"language": {
"type": "object",
"properties": {
"annotation": {
"... | {"loan_amount": true, "product_id": "ops@domain.org", "rating": {"length": "USD", "account_id": null, "priority": "user@domain.org"}} | Required field 'freight_class' is missing | {"loan_amount":true,"product_id":"ops@domain.org","freight_class":820,"rating":{"length":"USD","account_id":null,"priority":"user@domain.org"}} |
TASK repair_structured_output
SPEC
FIELD col_n28 TYPE integer REQUIRED yes
FIELD field_b42.dim_v11 TYPE integer REQUIRED yes
FIELD field_b42.col_l61.col_l11 TYPE integer REQUIRED no
FIELD field_b42.col_l61.field_l19 TYPE integer REQUIRED yes
FIELD field_b42.col_l61.key_y82 TYPE string_uri REQUIRED no
FIELD field_b42.c... | {"col_n28":962,"field_b42":{"dim_v11":493,"col_l61":{"col_l11":703,"field_l19":897,"key_y82":"https://api.org/data","col_z16":83.1,"val_p56":"Oliveira"},"col_u44":36,"dim_l17":"baz","col_x35":737,"dim_m01":"Sao Paulo","key_v18":{"dim_y08":"type_a","key_g94":"REV","field_n34":"GRCh38","field_o79":486,"col_a05":"QC-07","... | extra_field | {
"type": "object",
"properties": {
"col_n28": {
"type": "integer"
},
"field_b42": {
"type": "object",
"properties": {
"dim_v11": {
"type": "integer"
},
"col_l61": {
"type": "object",
"properties": {
"col_l11": {
... | {"col_n28": 962, "field_b42": {"dim_v11": 493, "col_l61": {"col_l11": 703, "field_l19": 897, "key_y82": "https://api.org/data", "col_z16": 83.1, "val_p56": "Oliveira"}, "col_u44": 36, "dim_l17": "baz", "col_x35": 737, "dim_m01": "Sao Paulo", "key_v18": {"dim_y08": "type_a", "key_g94": "REV", "field_n34": "GRCh38", "fie... | Unknown field 'extra_field_2184' not defined in schema | {"col_n28":962,"field_b42":{"dim_v11":493,"col_l61":{"col_l11":703,"field_l19":897,"key_y82":"https://api.org/data","col_z16":83.1,"val_p56":"Oliveira"},"col_u44":36,"dim_l17":"baz","col_x35":737,"dim_m01":"Sao Paulo","key_v18":{"dim_y08":"type_a","key_g94":"REV","field_n34":"GRCh38","field_o79":486,"col_a05":"QC-07","... |
TASK repair_structured_output
SPEC
FIELD col_y53 TYPE string VALUES cat_a|cat_b REQUIRED yes
FIELD val_x60 TYPE number REQUIRED no
FIELD val_m13[] TYPE integer REQUIRED yes
FIELD dim_f22[].val_i51 TYPE string VALUES cat_a|cat_b|cat_c REQUIRED no
FIELD dim_f22[].dim_x09 TYPE string VALUES level_1|level_2|level_3|level_... | {"col_y53":"cat_a","val_x60":933.37,"val_m13":[180],"dim_f22":[{"dim_x09":"level_3","param_i38":800,"param_u71":"cancelled","key_c03":"https://api.example.com/v1"},{"val_i51":"cat_c","dim_x09":"level_2","key_d86":846,"param_i38":87,"param_u71":"RTG-04","key_c03":"Silva"},{"val_i51":"cat_b","dim_x09":"level_1","key_d86"... | agent_chain | {
"type": "object",
"properties": {
"col_y53": {
"type": "string",
"enum": [
"cat_a",
"cat_b"
]
},
"val_x60": {
"type": "number"
},
"val_m13": {
"type": "array",
"items": {
"type": "integer"
}
},
"dim_f22": {
"type":... | Let me check the system.
Action: search
Result: {"val_x60": 933.37, "val_m13": [180], "dim_f22": [{"dim_x09": "level_3", "param_i38": 800, "param_u71": "cancelled", "key_c03": "https://api.example.com/v1"}, {"val_i51": "cat_c", "dim_x09": "level_2", "key_d86": 846, "param_i38": 87, "param_u71": "RTG-04", "key_c03": "Si... | Agent multi-step chain with truncated tool output | {"col_y53":"cat_a","val_x60":933.37,"val_m13":[180],"dim_f22":[{"dim_x09":"level_3","param_i38":800,"param_u71":"cancelled","key_c03":"https://api.example.com/v1"},{"val_i51":"cat_c","dim_x09":"level_2","key_d86":846,"param_i38":87,"param_u71":"RTG-04","key_c03":"Silva"},{"val_i51":"cat_b","dim_x09":"level_1","key_d86"... |
TASK repair_structured_output
SPEC
FIELD val_c11 TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED yes
FIELD val_c97 TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED no
FIELD field_v07 TYPE integer REQUIRED no
FIELD col_o92 TYPE integer REQUIRED no
FIELD val_z64 TYPE string REQUIRED no
FIEL... | {"val_c11":"type_b","val_c97":"cat_c","field_v07":792,"col_o92":215,"val_z64":"pending","col_k40":"option_d"} | markdown_explanation | {
"type": "object",
"properties": {
"val_c11": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d",
"type_e"
]
},
"val_c97": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"ca... | Here's the structured output:
```json
{"val_c11":"type_b","val_c97":"cat_c","field_v07":792,"col_o92":215,"val_z64":"pending","col_k40":"option_d"}
```
This should match the schema you provided. | Output contains markdown and explanatory text around JSON | {"val_c11":"type_b","val_c97":"cat_c","field_v07":792,"col_o92":215,"val_z64":"pending","col_k40":"option_d"} |
TASK repair_structured_output
SPEC
FIELD currency TYPE string REQUIRED no
FIELD status TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD section TYPE string_uri REQUIRED yes
FIELD diagnosis_code TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes
FIELD tax TYPE integer REQUIRED no
FIE... | {"status":"resolved","section":"https://api.org/v1","diagnosis_code":"moored","insurance_id":936,"bill_of_lading":"Jane"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"currency": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"section": {
"type": "string",
"format": "uri"
},
"diagnosis_... | Tool: check_availability
Params: {"section": "https://api.org/v1", "diagnosis_code": "moored", "insurance_id": 936, "bill_of_lading": "Jane", "status_id": "resolved"} | Agent used wrong parameter name 'status_id' instead of 'status' | {"status":"resolved","section":"https://api.org/v1","diagnosis_code":"moored","insurance_id":936,"bill_of_lading":"Jane"} |
TASK repair_structured_output
SPEC
FIELD val_q62 TYPE string VALUES single|married|divorced REQUIRED no
FIELD val_h64 TYPE string VALUES single|married|divorced REQUIRED no
FIELD field_o62 TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD attr_y79 TYPE integer REQUIRED no
FIELD field_x92 TYPE null REQUIR... | {"val_q62":"single","val_h64":"married","field_o62":"free","attr_y79":487,"field_x92":null,"key_u35":"This is a test value.","val_z40":34} | wrong_type | {
"type": "object",
"properties": {
"val_q62": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"val_h64": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"field_o62": {
... | {"val_q62": "single", "val_h64": "married", "field_o62": "free", "attr_y79": 487, "field_x92": null, "key_u35": "This is a test value.", "val_z40": "\"34\""} | Field 'val_z40' must be integer, got string | {"val_q62":"single","val_h64":"married","field_o62":"free","attr_y79":487,"field_x92":null,"key_u35":"This is a test value.","val_z40":34} |
TASK repair_structured_output
SPEC
FIELD key_y72 TYPE string VALUES option_a|option_b|option_c REQUIRED yes
FIELD param_s30 TYPE string VALUES active|inactive|pending REQUIRED no
FIELD col_h98 TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD dim_u95 TYPE string REQUIRED no
FIELD param_j15 TYPE integer REQUIRE... | {"key_y72":"option_a","param_s30":"pending","col_h98":"editor","dim_u95":"https://api.example.com/v1","param_j15":636} | invalid_enum | {
"type": "object",
"properties": {
"key_y72": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c"
]
},
"param_s30": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
},
"col_h98": {
... | {"key_y72": "option_a", "param_s30": "pending", "col_h98": "invalid_option_103", "dim_u95": "https://api.example.com/v1", "param_j15": 636} | Field 'col_h98' has invalid enum value 'invalid_option_103', expected one of ['admin', 'editor', 'viewer'] | {"key_y72":"option_a","param_s30":"pending","col_h98":"editor","dim_u95":"https://api.example.com/v1","param_j15":636} |
TASK repair_structured_output
SPEC
FIELD trace_id TYPE string REQUIRED no
FIELD end_date TYPE string VALUES draft|published|archived REQUIRED yes
FIELD feedback TYPE number REQUIRED yes
FIELD product_id TYPE boolean REQUIRED yes
FIELD yield_pct TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD chapter TYPE str... | {"trace_id":"RTG-04","end_date":"draft","feedback":666.02,"product_id":false,"yield_pct":"admin","chapter":"active"} | markdown_explanation | {
"type": "object",
"properties": {
"trace_id": {
"type": "string"
},
"end_date": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"feedback": {
"type": "number"
},
"product_id": {
"type": "boolean"
},
... | Here is the JSON you requested:
```json
{"trace_id":"RTG-04","end_date":"draft","feedback":666.02,"product_id":false,"yield_pct":"admin","chapter":"active"}
```
I've ensured all required fields are present. | Output contains markdown and explanatory text around JSON | {"trace_id":"RTG-04","end_date":"draft","feedback":666.02,"product_id":false,"yield_pct":"admin","chapter":"active"} |
TASK repair_structured_output
SPEC
FIELD key_t29 TYPE number REQUIRED no
FIELD val_b78.field_p32 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD val_b78.val_d06 TYPE string VALUES option_a|option_b|option_c|option_d|option_e|option_f REQUIRED no
FIELD val_b78.attr_f10 TYPE string VALUES reliab... | {"key_t29":831.28,"val_b78":{"field_p32":"homozygous","dim_j89":"cancelled"},"param_h50":28,"col_t07":"pending","key_q34":587,"col_s65":"2021-02-24T17:15:00Z","col_z09":82.3,"prop_c92":79.6} | trailing_comma | {
"type": "object",
"properties": {
"key_t29": {
"type": "number"
},
"val_b78": {
"type": "object",
"properties": {
"field_p32": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
... | {"key_t29":831.28,"val_b78":{"field_p32":"homozygous","dim_j89":"cancelled",},"param_h50":28,"col_t07":"pending","key_q34":587,"col_s65":"2021-02-24T17:15:00Z","col_z09":82.3,"prop_c92":79.6} | Unexpected trailing comma | {"key_t29":831.28,"val_b78":{"field_p32":"homozygous","dim_j89":"cancelled"},"param_h50":28,"col_t07":"pending","key_q34":587,"col_s65":"2021-02-24T17:15:00Z","col_z09":82.3,"prop_c92":79.6} |
TASK repair_structured_output
SPEC
FIELD param_g23 TYPE null REQUIRED no
FIELD val_z69 TYPE number REQUIRED yes
FIELD prop_m06 TYPE number REQUIRED yes
FIELD val_z54 TYPE string VALUES active|inactive|pending REQUIRED no
FIELD dim_a96 TYPE null REQUIRED no
FIELD attr_i45.val_k61 TYPE string VALUES cat_a|cat_b REQUIRED... | {"param_g23":null,"val_z69":463.36,"prop_m06":67.3,"val_z54":"inactive","dim_a96":null} | null_required | {
"type": "object",
"properties": {
"param_g23": {
"type": "null"
},
"val_z69": {
"type": "number"
},
"prop_m06": {
"type": "number"
},
"val_z54": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
},
"dim_a... | {"param_g23": null, "val_z69": 463.36, "prop_m06": null, "val_z54": "inactive", "dim_a96": null} | Required field 'prop_m06' is null | {"param_g23":null,"val_z69":463.36,"prop_m06":67.3,"val_z54":"inactive","dim_a96":null} |
TASK repair_structured_output
SPEC
FIELD attr_d67 TYPE number REQUIRED yes
FIELD param_i98 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD dim_i14[] TYPE string REQUIRED yes
BROKEN_OUTPUT
{"attr_d67": null, "param_i98": "EUR", "dim_i14": ["Maria", "example", "Oliveira"]} | {"attr_d67":340.27,"param_i98":"EUR","dim_i14":["Maria","example","Oliveira"]} | null_required | {
"type": "object",
"properties": {
"attr_d67": {
"type": "number"
},
"param_i98": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"dim_i14": {
"type": "array",
"items": {
"type": "string"
... | {"attr_d67": null, "param_i98": "EUR", "dim_i14": ["Maria", "example", "Oliveira"]} | Required field 'attr_d67' is null | {"attr_d67":340.27,"param_i98":"EUR","dim_i14":["Maria","example","Oliveira"]} |
TASK repair_structured_output
SPEC
FIELD col_n29 TYPE boolean REQUIRED yes
FIELD prop_t76 TYPE number REQUIRED yes
FIELD param_a09[].attr_r89 TYPE string REQUIRED no
FIELD param_a09[].prop_g97 TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD param_a09[].attr_x55 TYPE string VALUES draft|published|archive... | {"col_n29":false,"prop_t76":938.68,"param_a09":[{"attr_r89":"test","prop_g97":"high","attr_x55":"published","field_y32":"info@domain.org"},{"attr_r89":"hello","prop_g97":"medium","attr_x55":"published","field_y32":"ops@example.com"},{"attr_r89":"example","prop_g97":"critical","attr_x55":"draft","field_y32":"user@test.i... | extra_field | {
"type": "object",
"properties": {
"col_n29": {
"type": "boolean"
},
"prop_t76": {
"type": "number"
},
"param_a09": {
"type": "array",
"items": {
"type": "object",
"properties": {
"attr_r89": {
"type": "string"
},
... | {"col_n29": false, "prop_t76": 938.68, "param_a09": [{"attr_r89": "test", "prop_g97": "high", "attr_x55": "published", "field_y32": "info@domain.org"}, {"attr_r89": "hello", "prop_g97": "medium", "attr_x55": "published", "field_y32": "ops@example.com"}, {"attr_r89": "example", "prop_g97": "critical", "attr_x55": "draft... | Unknown field 'extra_data_5408' not defined in schema | {"col_n29":false,"prop_t76":938.68,"param_a09":[{"attr_r89":"test","prop_g97":"high","attr_x55":"published","field_y32":"info@domain.org"},{"attr_r89":"hello","prop_g97":"medium","attr_x55":"published","field_y32":"ops@example.com"},{"attr_r89":"example","prop_g97":"critical","attr_x55":"draft","field_y32":"user@test.i... |
TASK repair_structured_output
SPEC
FIELD prop_l42 TYPE string VALUES draft|published|archived REQUIRED yes
FIELD field_u76 TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD val_c02 TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD key_k79.attr_y40 TYPE string VALUES pending_review|con... | {"prop_l42":"archived","field_u76":"in_transit","val_c02":"medium","key_k79":{"attr_y40":"pending_review","val_x26":true,"prop_p91":"https://api.example.com/v1","field_y76":"foo"}} | missing_required | {
"type": "object",
"properties": {
"prop_l42": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"field_u76": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},... | {"prop_l42": "archived", "field_u76": "in_transit", "key_k79": {"attr_y40": "pending_review", "val_x26": true, "prop_p91": "https://api.example.com/v1", "field_y76": "foo"}} | Required field 'val_c02' is missing | {"prop_l42":"archived","field_u76":"in_transit","val_c02":"medium","key_k79":{"attr_y40":"pending_review","val_x26":true,"prop_p91":"https://api.example.com/v1","field_y76":"foo"}} |
TASK repair_structured_output
SPEC
FIELD key_s71 TYPE string REQUIRED yes
FIELD dim_i29.param_q57 TYPE string REQUIRED yes
FIELD dim_i29.prop_i99 TYPE string VALUES single|married|divorced REQUIRED no
FIELD dim_i29.param_m25 TYPE boolean REQUIRED yes
FIELD dim_i29.field_x26.val_m21 TYPE string VALUES success|error|war... | {"key_s71":"qux","dim_i29":{"param_q57":"Alice","prop_i99":"divorced","param_m25":false,"field_x26":{"val_m21":"info","field_k18":"2023-12-25","val_z39":false}},"param_d56":"2022-06-14T18:09:00Z","prop_o91":"blue"} | tool_call_bad_format | {
"type": "object",
"properties": {
"key_s71": {
"type": "string"
},
"dim_i29": {
"type": "object",
"properties": {
"param_q57": {
"type": "string"
},
"prop_i99": {
"type": "string",
"enum": [
"single",
"marr... | <functioncall> apply_discount
{key_s71: "qux", dim_i29: {param_q57: "Alice", prop_i99: "divorced", param_m25: false, field_x26: {val_m21: "info", field_k18: "2023-12-25", val_z39: false}}, param_d56: "2022-06-14T18:09:00Z", prop_o91: "blue"} | Tool call has malformed arguments — unquoted keys in function parameters | {"key_s71":"qux","dim_i29":{"param_q57":"Alice","prop_i99":"divorced","param_m25":false,"field_x26":{"val_m21":"info","field_k18":"2023-12-25","val_z39":false}},"param_d56":"2022-06-14T18:09:00Z","prop_o91":"blue"} |
TASK repair_structured_output
SPEC
FIELD active TYPE boolean REQUIRED no
FIELD lab_result TYPE number REQUIRED no
FIELD pressure_kpa TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD longitude TYPE string_date-time REQUIRED yes
FIELD turbidity TYPE string VALUES open|in_progress|resolved|cl... | {"active":true,"lab_result":195.22,"pressure_kpa":"maintenance","longitude":"2021-07-22T05:01:00Z","turbidity":"open","dosage":51.6,"fleet_number":"qux","transaction_id":"https://example.org/v1"} | invalid_enum | {
"type": "object",
"properties": {
"active": {
"type": "boolean"
},
"lab_result": {
"type": "number"
},
"pressure_kpa": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
},
"longitude": {
... | {"active": true, "lab_result": 195.22, "pressure_kpa": "invalid_option_141", "longitude": "2021-07-22T05:01:00Z", "turbidity": "open", "dosage": 51.6, "fleet_number": "qux", "transaction_id": "https://example.org/v1"} | Field 'pressure_kpa' has invalid enum value 'invalid_option_141', expected one of ['operational', 'degraded', 'offline', 'maintenance'] | {"active":true,"lab_result":195.22,"pressure_kpa":"maintenance","longitude":"2021-07-22T05:01:00Z","turbidity":"open","dosage":51.6,"fleet_number":"qux","transaction_id":"https://example.org/v1"} |
TASK repair_structured_output
SPEC
FIELD color TYPE integer REQUIRED no
FIELD amplitude TYPE boolean REQUIRED no
FIELD longitude TYPE string_date-time REQUIRED no
FIELD weight TYPE string REQUIRED yes
BROKEN_OUTPUT
{"color":931,"amplitude":true,"longitude":"2020-08-19T04:52:00Z","weight":"cancelled"} | {"color":931,"amplitude":true,"longitude":"2020-08-19T04:52:00Z","weight":"cancelled"} | missing_bracket | {
"type": "object",
"properties": {
"color": {
"type": "integer"
},
"amplitude": {
"type": "boolean"
},
"longitude": {
"type": "string",
"format": "date-time"
},
"weight": {
"type": "string"
}
},
"required": [
"weight"
]
} | {"color":931,"amplitude":true,"longitude":"2020-08-19T04:52:00Z","weight":"cancelled"} | Missing closing bracket | {"color":931,"amplitude":true,"longitude":"2020-08-19T04:52:00Z","weight":"cancelled"} |
TASK repair_structured_output
SPEC
FIELD active TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD department TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED no
FIELD visible TYPE string REQUIRED yes
FIELD quality_score TYPE string VALUES mode_a|mode_b REQUIRED no
BROKEN_OUTPUT
```json
{"ac... | {"active":"resolved","department":"type_d","visible":"https://api.example.com/v1","quality_score":"mode_a"} | markdown_fences | {
"type": "object",
"properties": {
"active": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"department": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d"
... | ```json
{"active":"resolved","department":"type_d","visible":"https://api.example.com/v1","quality_score":"mode_a"}
``` | Output contains markdown code fences | {"active":"resolved","department":"type_d","visible":"https://api.example.com/v1","quality_score":"mode_a"} |
TASK repair_structured_output
SPEC
FIELD param_x01 TYPE string VALUES type_a|type_b REQUIRED no
FIELD val_c04 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD key_c70 TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED yes
FIELD key_m50 TYPE null REQUIRED no
FIELD prop_c79 TYPE integer REQUIRED no
FIELD fi... | {"param_x01":"type_a","val_c04":"JPY","key_c70":"mode_a","prop_c79":992} | tool_call_python_syntax | {
"type": "object",
"properties": {
"param_x01": {
"type": "string",
"enum": [
"type_a",
"type_b"
]
},
"val_c04": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"key_c70": {
"t... | run_diagnostics(param_x01='type_a', val_c04='JPY', key_c70='mode_a', prop_c79=992) | Tool call uses Python syntax instead of JSON | {"param_x01":"type_a","val_c04":"JPY","key_c70":"mode_a","prop_c79":992} |
TASK repair_structured_output
SPEC
FIELD verified TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD visible TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD loan_amount TYPE integer REQUIRED yes
FIELD published TYPE boolean REQUIRED no
FIELD width TYPE string REQUIRED yes
FIEL... | {"visible":"in_transit","loan_amount":332,"published":false,"width":"Charlie","options":"hemizygous","maturity_date":null} | thought_process | {
"type": "object",
"properties": {
"verified": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"visible": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returne... | I need to check the port status before assigning the berth.
Let me verify the cargo manifest.
{"visible":"in_transit","loan_amount":332,"published":false,"width":"Charlie","options":"hemizygous","maturity_date":null} | Output contains chain-of-thought reasoning before JSON | {"visible":"in_transit","loan_amount":332,"published":false,"width":"Charlie","options":"hemizygous","maturity_date":null} |
TASK repair_structured_output
SPEC
FIELD col_s88 TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD key_l25 TYPE string VALUES cat_a|cat_b REQUIRED no
FIELD key_z89 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD field_o87 TYPE string VALUES email|phone|sms|push REQUIRED no
BROKEN_OUTPUT
<functioncall... | {"key_l25":"cat_b","key_z89":"EUR","field_o87":"sms"} | tool_call_bad_format | {
"type": "object",
"properties": {
"col_s88": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"key_l25": {
"type": "string",
"enum": [
"cat_a",
"cat_b"
]
},
"key_z89": {
"type": "string",
"enu... | <functioncall> lookup_customer
{key_l25: "cat_b", key_z89: "EUR", field_o87: "sms"} | Tool call has malformed arguments — unquoted keys in function parameters | {"key_l25":"cat_b","key_z89":"EUR","field_o87":"sms"} |
TASK repair_structured_output
SPEC
FIELD department TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD address TYPE boolean REQUIRED yes
FIELD build_status.description TYPE integer REQUIRED yes
FIELD build_status.bearing TYPE integer REQUIRED no
FIELD build_status.state TYPE string_email ... | {"department":"rejected","address":false,"build_status":{"description":496,"bearing":308,"state":"admin@domain.org","email":"critical","collateral":{"department":"approved","yield_pct":254.88,"language":"chr1","phenotype":"This is a test value.","step":true}},"comments":{"cargo_type":"open","quality_score":"demo","buil... | tool_call_wrong_param | {
"type": "object",
"properties": {
"department": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"address": {
"type": "boolean"
},
"build_status": {
"type": "object",
"properties": {
... | Tool: assign_berth
Params: {"address": false, "build_status": {"description": 496, "bearing": 308, "state": "admin@domain.org", "email": "critical", "collateral": {"department": "approved", "yield_pct": 254.88, "language": "chr1", "phenotype": "This is a test value.", "step": true}}, "comments": {"cargo_type": "open", ... | Agent used wrong parameter name 'department_name' instead of 'department' | {"department":"rejected","address":false,"build_status":{"description":496,"bearing":308,"state":"admin@domain.org","email":"critical","collateral":{"department":"approved","yield_pct":254.88,"language":"chr1","phenotype":"This is a test value.","step":true}},"comments":{"cargo_type":"open","quality_score":"demo","buil... |
TASK repair_structured_output
SPEC
FIELD length.color TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED no
FIELD length.created_at.message TYPE string VALUES option_a|option_b|option_c REQUIRED no
FIELD length.created_at.values TYPE number REQUIRED no
FIELD length.created_at.interest_rate TYPE string VAL... | {"length":{"created_at":{"message":"option_a","values":239.09,"interest_rate":"push","paragraph":"https://data.org/v1"},"trace_id":false,"width":false,"decay_rate":"closed","credit_score":"option_b","salinity":{"position":"This is a test value.","category":820,"lab_result":"mode_b","state":65,"credit_score":null}},"due... | thought_process | {
"type": "object",
"properties": {
"length": {
"type": "object",
"properties": {
"color": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
"cat_e",
"cat_f"
]
},
... | Analyzing the schema to generate valid JSON...
Checking required fields and types...
{"length":{"created_at":{"message":"option_a","values":239.09,"interest_rate":"push","paragraph":"https://data.org/v1"},"trace_id":false,"width":false,"decay_rate":"closed","credit_score":"option_b","salinity":{"position":"This is a t... | Output contains chain-of-thought reasoning before JSON | {"length":{"created_at":{"message":"option_a","values":239.09,"interest_rate":"push","paragraph":"https://data.org/v1"},"trace_id":false,"width":false,"decay_rate":"closed","credit_score":"option_b","salinity":{"position":"This is a test value.","category":820,"lab_result":"mode_b","state":65,"credit_score":null}},"due... |
TASK repair_structured_output
SPEC
FIELD col_v16 TYPE string VALUES type_a|type_b REQUIRED yes
FIELD key_v84.field_a25 TYPE boolean REQUIRED no
FIELD key_v84.prop_b56 TYPE string REQUIRED yes
FIELD key_v84.attr_n77 TYPE string REQUIRED yes
FIELD key_v84.val_x07 TYPE boolean REQUIRED no
FIELD key_v84.col_m01[].field_r0... | {"col_v16":"type_b","key_v84":{"field_a25":true,"prop_b56":"Alice","attr_n77":"baz","val_x07":true,"col_m01":[{"field_r07":"type_b","dim_c06":"test@test.io","field_j43":true,"prop_a98":54}],"attr_r44":[false]},"attr_u71":"qux","col_c84":"Alice","param_d82":581.61,"key_s13":false,"dim_q64":734.69,"key_q63":"2025-11-02T0... | agent_chain | {
"type": "object",
"properties": {
"col_v16": {
"type": "string",
"enum": [
"type_a",
"type_b"
]
},
"key_v84": {
"type": "object",
"properties": {
"field_a25": {
"type": "boolean"
},
"prop_b56": {
"type": "string"... | I need to look up the information first.
Action: get_inventory
Result: {"col_v16": "type_b", "key_v84": {"field_a25": true, "prop_b56": "Alice", "attr_n77": "baz", "val_x07": true, "col_m01": [{"field_r07": "type_b", "dim_c06": "test@test.io", "field_j43": true, "prop_a98": 54}], "attr_r44": [false]}, "attr_u71": "qux"... | Agent multi-step chain with truncated tool output | {"col_v16":"type_b","key_v84":{"field_a25":true,"prop_b56":"Alice","attr_n77":"baz","val_x07":true,"col_m01":[{"field_r07":"type_b","dim_c06":"test@test.io","field_j43":true,"prop_a98":54}],"attr_r44":[false]},"attr_u71":"qux","col_c84":"Alice","param_d82":581.61,"key_s13":false,"dim_q64":734.69,"key_q63":"2025-11-02T0... |
TASK repair_structured_output
SPEC
FIELD val_r69 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD field_f03 TYPE boolean REQUIRED no
FIELD param_h04 TYPE integer REQUIRED yes
FIELD field_c35[] TYPE string VALUES active|inactive|pending REQUIRED yes
BROKEN_OUTPUT
Here's the structured output:
{"val_... | {"val_r69":"coastal","field_f03":false,"param_h04":166,"field_c35":["active","inactive","inactive","inactive"]} | extra_text_before | {
"type": "object",
"properties": {
"val_r69": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
},
"field_f03": {
"type": "boolean"
},
"param_h04": {
"type": "integer"
},
"field_c35": {
"type": "a... | Here's the structured output:
{"val_r69":"coastal","field_f03":false,"param_h04":166,"field_c35":["active","inactive","inactive","inactive"]} | Output contains non-JSON text before the object | {"val_r69":"coastal","field_f03":false,"param_h04":166,"field_c35":["active","inactive","inactive","inactive"]} |
TASK repair_structured_output
SPEC
FIELD attr_i96 TYPE integer REQUIRED no
FIELD prop_a86 TYPE boolean REQUIRED no
FIELD val_e83 TYPE integer REQUIRED yes
FIELD field_c80 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD field_n93 TYPE string_email REQUIRED yes
FIELD val_b76.prop_w02 TYP... | {"attr_i96":404,"prop_a86":false,"val_e83":770,"field_c80":"rejected","field_n93":"test@test.io","val_b76":{"prop_w02":"2024-04-19T03:29:00Z","val_o68":"coastal","prop_k97":367,"attr_e18":{"dim_z53":"2023-06-08T14:33:00Z","field_u52":"red","val_b57":"Maria","key_j58":"editor","prop_p93":867.45,"key_q69":"A short descri... | unquoted_keys | {
"type": "object",
"properties": {
"attr_i96": {
"type": "integer"
},
"prop_a86": {
"type": "boolean"
},
"val_e83": {
"type": "integer"
},
"field_c80": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
... | {attr_i96:404,prop_a86:false,val_e83:770,field_c80:"rejected",field_n93:"test@test.io",val_b76:{prop_w02:"2024-04-19T03:29:00Z",val_o68:"coastal",prop_k97:367,attr_e18:{dim_z53:"2023-06-08T14:33:00Z",field_u52:"red",val_b57:"Maria",key_j58:"editor",prop_p93:867.45,key_q69:"A short description.",key_p81:"Bob"},val_n28:{... | Expecting property name enclosed in double quotes | {"attr_i96":404,"prop_a86":false,"val_e83":770,"field_c80":"rejected","field_n93":"test@test.io","val_b76":{"prop_w02":"2024-04-19T03:29:00Z","val_o68":"coastal","prop_k97":367,"attr_e18":{"dim_z53":"2023-06-08T14:33:00Z","field_u52":"red","val_b57":"Maria","key_j58":"editor","prop_p93":867.45,"key_q69":"A short descri... |
TASK repair_structured_output
SPEC
FIELD yield_pct TYPE string REQUIRED yes
FIELD isotope TYPE number REQUIRED no
FIELD amplitude.age TYPE string REQUIRED yes
FIELD amplitude.zip_code TYPE number REQUIRED yes
FIELD amplitude.company TYPE boolean REQUIRED no
FIELD amplitude.cargo_type.due_date TYPE string REQUIRED yes
... | {"yield_pct":"John","isotope":902.91,"amplitude":{"age":"bar","zip_code":621.68,"cargo_type":{"due_date":"MV-Evergreen-01","salinity":"mode_d","phenotype":null,"category":"hello","score":"open","vessel_name":"Johnson"},"options":{"strand":"Berlin","vital_sign":null,"visible":"mode_b","shipper_ref":[null,null,null]}},"i... | missing_bracket | {
"type": "object",
"properties": {
"yield_pct": {
"type": "string"
},
"isotope": {
"type": "number"
},
"amplitude": {
"type": "object",
"properties": {
"age": {
"type": "string"
},
"zip_code": {
"type": "number"
},
... | {"yield_pct":"John","isotope":902.91,"amplitude":{"age":"bar","zip_code":621.68,"cargo_type":{"due_date":"MV-Evergreen-01","salinity":"mode_d","phenotype":null,"category":"hello","score":"open","vessel_name":"Johnson"},"options":{"strand":"Berlin","vital_sign":null,"visible":"mode_b","shipper_ref":null,null,null]}},"in... | Missing closing bracket | {"yield_pct":"John","isotope":902.91,"amplitude":{"age":"bar","zip_code":621.68,"cargo_type":{"due_date":"MV-Evergreen-01","salinity":"mode_d","phenotype":null,"category":"hello","score":"open","vessel_name":"Johnson"},"options":{"strand":"Berlin","vital_sign":null,"visible":"mode_b","shipper_ref":[null,null,null]}},"i... |
TASK repair_structured_output
SPEC
FIELD invoice_id.items TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD invoice_id.fleet_number TYPE string REQUIRED no
FIELD invoice_id.length TYPE boolean REQUIRED yes
FIELD invoice_id.vessel_name TYPE integer REQUIRED no
FIELD invoice_id.visible TYPE string_email REQ... | {"invoice_id":{"items":"enterprise","fleet_number":"QC-07","length":false,"vessel_name":269,"visible":"test@test.io","published":889},"decay_rate":"arctic","catalyst":430,"department":"chrX"} | thought_process | {
"type": "object",
"properties": {
"invoice_id": {
"type": "object",
"properties": {
"items": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"fleet_number": {
"ty... | Breaking down the requirements:
- Must include all required fields
- Types must match the schema
- Values should be realistic
{"invoice_id":{"items":"enterprise","fleet_number":"QC-07","length":false,"vessel_name":269,"visible":"test@test.io","published":889},"decay_rate":"arctic","catalyst":430,"department":"chrX"} | Output contains chain-of-thought reasoning before JSON | {"invoice_id":{"items":"enterprise","fleet_number":"QC-07","length":false,"vessel_name":269,"visible":"test@test.io","published":889},"decay_rate":"arctic","catalyst":430,"department":"chrX"} |
TASK repair_structured_output
SPEC
FIELD attr_g30 TYPE string REQUIRED no
FIELD col_x27 TYPE string REQUIRED no
FIELD col_b01 TYPE integer REQUIRED yes
FIELD col_c27 TYPE string REQUIRED yes
FIELD prop_g98 TYPE string VALUES type_a|type_b|type_c REQUIRED no
FIELD param_j85 TYPE string REQUIRED yes
FIELD field_i10 TYPE... | {"col_x27":"demo","col_b01":774,"col_c27":"This is a test value.","prop_g98":"type_c","param_j85":"cancelled","field_i10":"hello","key_j34":{"dim_w70":"admin@example.com","param_b04":969,"col_c67":792,"key_m94":794.58,"prop_q53":"cat_b"}} | thought_process | {
"type": "object",
"properties": {
"attr_g30": {
"type": "string"
},
"col_x27": {
"type": "string"
},
"col_b01": {
"type": "integer"
},
"col_c27": {
"type": "string"
},
"prop_g98": {
"type": "string",
"enum": [
"type_a",
"type_... | I need to check the port status before assigning the berth.
Let me verify the cargo manifest.
{"col_x27":"demo","col_b01":774,"col_c27":"This is a test value.","prop_g98":"type_c","param_j85":"cancelled","field_i10":"hello","key_j34":{"dim_w70":"admin@example.com","param_b04":969,"col_c67":792,"key_m94":794.58,"prop_q... | Output contains chain-of-thought reasoning before JSON | {"col_x27":"demo","col_b01":774,"col_c27":"This is a test value.","prop_g98":"type_c","param_j85":"cancelled","field_i10":"hello","key_j34":{"dim_w70":"admin@example.com","param_b04":969,"col_c67":792,"key_m94":794.58,"prop_q53":"cat_b"}} |
TASK repair_structured_output
SPEC
FIELD company.width.product_id TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD company.width.compound TYPE integer REQUIRED yes
FIELD company.width.id TYPE integer REQUIRED no
FIELD company.width.gene_id TYPE number REQUIRED no
FIELD company.width.deploy_target TYPE ... | {"annotation":{"bed_number":"pro","span_id":"Charlie","subtotal":"married","conductivity":"Bob","item_id":true},"weight":"Sao Paulo","first_name":"GRCh38","priority":12,"end_date":null,"brake_pressure":"info@domain.org","trace_id":"anchored"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"company": {
"type": "object",
"properties": {
"width": {
"type": "object",
"properties": {
"product_id": {
"type": "string",
"enum": [
"red",
"blue",
... | run_diagnostics(annotation={'bed_number': 'pro', 'span_id': 'Charlie', 'subtotal': 'married', 'conductivity': 'Bob', 'item_id': True}, weight='Sao Paulo', first_name='GRCh38', priority=12, end_date=None, brake_pressure='info@domain.org', trace_id='anchored') | Tool call uses Python syntax instead of JSON | {"annotation":{"bed_number":"pro","span_id":"Charlie","subtotal":"married","conductivity":"Bob","item_id":true},"weight":"Sao Paulo","first_name":"GRCh38","priority":12,"end_date":null,"brake_pressure":"info@domain.org","trace_id":"anchored"} |
TASK repair_structured_output
SPEC
FIELD val_r67 TYPE integer REQUIRED no
FIELD param_p98 TYPE integer REQUIRED no
FIELD key_n87[] TYPE boolean REQUIRED no
FIELD val_v40[].prop_c02 TYPE string_date-time REQUIRED yes
FIELD val_v40[].prop_q94 TYPE string REQUIRED yes
FIELD val_v40[].col_h96 TYPE string VALUES homozygous... | {"val_r67":385,"param_p98":126,"key_n87":[true],"val_v40":[{"prop_c02":"2022-05-28T03:19:00Z","prop_q94":"demo","col_h96":"hemizygous","field_q50":"user@domain.com"},{"prop_c02":"2026-11-13T07:46:00Z","prop_q94":"foo","col_h96":"heterozygous","field_s91":"admin@test.io"}]} | unquoted_keys | {
"type": "object",
"properties": {
"val_r67": {
"type": "integer"
},
"param_p98": {
"type": "integer"
},
"key_n87": {
"type": "array",
"items": {
"type": "boolean"
}
},
"val_v40": {
"type": "array",
"items": {
"type": "object",
... | {val_r67:385,param_p98:126,key_n87:[true],val_v40:[{prop_c02:"2022-05-28T03:19:00Z",prop_q94:"demo",col_h96:"hemizygous",field_q50:"user@domain.com"},{prop_c02:"2026-11-13T07:46:00Z",prop_q94:"foo",col_h96:"heterozygous",field_s91:"admin@test.io"}]} | Expecting property name enclosed in double quotes | {"val_r67":385,"param_p98":126,"key_n87":[true],"val_v40":[{"prop_c02":"2022-05-28T03:19:00Z","prop_q94":"demo","col_h96":"hemizygous","field_q50":"user@domain.com"},{"prop_c02":"2026-11-13T07:46:00Z","prop_q94":"foo","col_h96":"heterozygous","field_s91":"admin@test.io"}]} |
TASK repair_structured_output
SPEC
FIELD brake_pressure TYPE string VALUES option_a|option_b|option_c REQUIRED yes
FIELD deploy_target TYPE boolean REQUIRED yes
FIELD format TYPE string REQUIRED yes
FIELD state TYPE integer REQUIRED no
FIELD country TYPE string VALUES mode_a|mode_b REQUIRED no
BROKEN_OUTPUT
{'brake_p... | {"brake_pressure":"option_b","deploy_target":true,"format":"completed","state":550} | single_quotes | {
"type": "object",
"properties": {
"brake_pressure": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c"
]
},
"deploy_target": {
"type": "boolean"
},
"format": {
"type": "string"
},
"state": {
"type": "integer"
... | {'brake_pressure':'option_b','deploy_target':true,'format':'completed','state':550} | Expecting property name enclosed in double quotes | {"brake_pressure":"option_b","deploy_target":true,"format":"completed","state":550} |
TASK repair_structured_output
SPEC
FIELD status TYPE boolean REQUIRED yes
FIELD tile TYPE string REQUIRED yes
FIELD lane TYPE integer REQUIRED yes
FIELD loan_amount TYPE boolean REQUIRED yes
FIELD bearing TYPE string VALUES mode_a|mode_b|mode_c REQUIRED no
BROKEN_OUTPUT
{"status":false,"tile":"Bob","lane":215,"loan_a... | {"status":false,"tile":"Bob","lane":215,"loan_amount":false,"bearing":"mode_b"} | missing_brace | {
"type": "object",
"properties": {
"status": {
"type": "boolean"
},
"tile": {
"type": "string"
},
"lane": {
"type": "integer"
},
"loan_amount": {
"type": "boolean"
},
"bearing": {
"type": "string",
"enum": [
"mode_a",
"mode_b",... | {"status":false,"tile":"Bob","lane":215,"loan_amount":false,"bearing":"mode_b" | Missing closing brace | {"status":false,"tile":"Bob","lane":215,"loan_amount":false,"bearing":"mode_b"} |
TASK repair_structured_output
SPEC
FIELD col_u93.param_f49 TYPE string VALUES type_a|type_b REQUIRED yes
FIELD col_u93.dim_k47 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED yes
FIELD col_u93.prop_q38 TYPE string VALUES option_a|option_b|option_c|option_d REQUIRED no
FIELD attr_f70 TYPE string VALUES o... | {"col_u93":{"param_f49":"type_b","dim_k47":"mode_e","prop_q38":"option_b"},"attr_f70":"option_a","attr_i11":{"prop_i32":826,"key_k97":"option_c","key_i74":"mode_b","key_n19":true,"dim_g95":{"param_f99":984,"val_x60":"cat_e","key_e22":"Paris","key_i24":"London","key_q56":[false]},"dim_d89":"PASS"}} | tool_call_text_mix | {
"type": "object",
"properties": {
"col_u93": {
"type": "object",
"properties": {
"param_f49": {
"type": "string",
"enum": [
"type_a",
"type_b"
]
},
"dim_k47": {
"type": "string",
"enum": [
... | I'll query our database.
<tool_call name="check_cargo_manifest">
{"col_u93":{"param_f49":"type_b","dim_k47":"mode_e","prop_q38":"option_b"},"attr_f70":"option_a","attr_i11":{"prop_i32":826,"key_k97":"option_c","key_i74":"mode_b","key_n19":true,"dim_g95":{"param_f99":984,"val_x60":"cat_e","key_e22":"Paris","key_i24":"Lo... | Agent response mixes reasoning text with tool call | {"col_u93":{"param_f49":"type_b","dim_k47":"mode_e","prop_q38":"option_b"},"attr_f70":"option_a","attr_i11":{"prop_i32":826,"key_k97":"option_c","key_i74":"mode_b","key_n19":true,"dim_g95":{"param_f99":984,"val_x60":"cat_e","key_e22":"Paris","key_i24":"London","key_q56":[false]},"dim_d89":"PASS"}} |
TASK repair_structured_output
SPEC
FIELD dim_l28 TYPE boolean REQUIRED yes
FIELD field_s23 TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD param_c46 TYPE number REQUIRED yes
BROKEN_OUTPUT
{"dim_l28":false,"field_s23":"white","param_c46":934.12 | {"dim_l28":false,"field_s23":"white","param_c46":934.12} | truncated_object | {
"type": "object",
"properties": {
"dim_l28": {
"type": "boolean"
},
"field_s23": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"param_c46": {
"type": "number"
}
},
"required": [
"par... | {"dim_l28":false,"field_s23":"white","param_c46":934.12 | Unexpected end of JSON input — truncated object | {"dim_l28":false,"field_s23":"white","param_c46":934.12} |
TASK repair_structured_output
SPEC
FIELD val_r20 TYPE string REQUIRED yes
FIELD attr_x69 TYPE string REQUIRED no
FIELD dim_f62 TYPE number REQUIRED no
FIELD val_g00 TYPE number REQUIRED no
FIELD attr_f69 TYPE string REQUIRED yes
BROKEN_OUTPUT
{"val_r20":"QC-07","attr_x69":"Diana","dim_f62":569.39,"val_g00":788.54,"at... | {"val_r20":"QC-07","attr_x69":"Diana","dim_f62":569.39,"val_g00":788.54,"attr_f69":"Santos"} | truncated_array | {
"type": "object",
"properties": {
"val_r20": {
"type": "string"
},
"attr_x69": {
"type": "string"
},
"dim_f62": {
"type": "number"
},
"val_g00": {
"type": "number"
},
"attr_f69": {
"type": "string"
}
},
"required": [
"val_r20",
"att... | {"val_r20":"QC-07","attr_x69":"Diana","dim_f62":569.39,"val_g00":788.54,"attr_f69":"Santos" | Unexpected end of JSON input — truncated object | {"val_r20":"QC-07","attr_x69":"Diana","dim_f62":569.39,"val_g00":788.54,"attr_f69":"Santos"} |
TASK repair_structured_output
SPEC
FIELD quality_score.id TYPE string REQUIRED yes
FIELD quality_score.position TYPE string REQUIRED yes
FIELD quality_score.features TYPE number REQUIRED no
FIELD quality_score.lane TYPE string_email REQUIRED yes
FIELD quality_score.pressure_kpa.date TYPE string VALUES draft|published|... | {"quality_score":{"id":"qux","position":"approved","features":832.52,"lane":"test@test.io","pressure_kpa":{"date":"archived","current_draw":"divorced","total":"user@domain.com","section":70,"bed_number":959.24,"umi":712}},"shipper_ref":"Tokyo","footnote":null} | extra_text_before | {
"type": "object",
"properties": {
"quality_score": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"position": {
"type": "string"
},
"features": {
"type": "number"
},
"lane": {
"type": "... | Pipeline result:
{"quality_score":{"id":"qux","position":"approved","features":832.52,"lane":"test@test.io","pressure_kpa":{"date":"archived","current_draw":"divorced","total":"user@domain.com","section":70,"bed_number":959.24,"umi":712}},"shipper_ref":"Tokyo","footnote":null} | Output contains non-JSON text before the object | {"quality_score":{"id":"qux","position":"approved","features":832.52,"lane":"test@test.io","pressure_kpa":{"date":"archived","current_draw":"divorced","total":"user@domain.com","section":70,"bed_number":959.24,"umi":712}},"shipper_ref":"Tokyo","footnote":null} |
TASK repair_structured_output
SPEC
FIELD bearing TYPE boolean REQUIRED yes
FIELD ph_level TYPE string REQUIRED no
FIELD ward.section.frequency_hz TYPE string REQUIRED no
FIELD ward.section.length TYPE null REQUIRED yes
FIELD ward.section.bed_number TYPE string REQUIRED no
FIELD ward.section.tags TYPE boolean REQUIRED ... | {"bearing":false,"ph_level":"Sao Paulo","half_life":true,"notes":"underway"} | extra_field | {
"type": "object",
"properties": {
"bearing": {
"type": "boolean"
},
"ph_level": {
"type": "string"
},
"ward": {
"type": "object",
"properties": {
"section": {
"type": "object",
"properties": {
"frequency_hz": {
"type... | {"bearing": false, "ph_level": "Sao Paulo", "half_life": true, "notes": "underway", "extra_value_3680": "unexpected"} | Unknown field 'extra_value_3680' not defined in schema | {"bearing":false,"ph_level":"Sao Paulo","half_life":true,"notes":"underway"} |
TASK repair_structured_output
SPEC
FIELD col_z55 TYPE string REQUIRED no
FIELD prop_i08 TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD val_n90 TYPE number REQUIRED yes
FIELD field_u23.prop_k34 TYPE string VALUES draft|published|archived REQUIRED yes
FIELD field_u23.prop_p08 TYPE string VALUES admin|edi... | {"prop_i08":"enterprise","val_n90":889.35,"field_u23":{"prop_k34":"archived","prop_t26":"GRCh38","prop_p44":581.77,"prop_g35":null},"prop_d44":{"attr_k45":975,"param_q39":"FWD","param_u44":"medium","prop_j80":"London","attr_v97":{"field_b17":"https://api.org/api","col_a40":415.75,"attr_t69":199.28,"attr_o30":"2026-12-1... | tool_call_wrong_param | {
"type": "object",
"properties": {
"col_z55": {
"type": "string"
},
"prop_i08": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"val_n90": {
"type": "number"
},
"field_u23": {
"type": "object",
... | Tool: get_account
Params: {"prop_i08": "enterprise", "val_n90": 889.35, "prop_d44": {"attr_k45": 975, "param_q39": "FWD", "param_u44": "medium", "prop_j80": "London", "attr_v97": {"field_b17": "https://api.org/api", "col_a40": 415.75, "attr_t69": 199.28, "attr_o30": "2026-12-16T16:50:00Z", "field_r07": "Hapag-Lloyd-Exp... | Agent used wrong parameter name 'field_u23_id' instead of 'field_u23' | {"prop_i08":"enterprise","val_n90":889.35,"field_u23":{"prop_k34":"archived","prop_t26":"GRCh38","prop_p44":581.77,"prop_g35":null},"prop_d44":{"attr_k45":975,"param_q39":"FWD","param_u44":"medium","prop_j80":"London","attr_v97":{"field_b17":"https://api.org/api","col_a40":415.75,"attr_t69":199.28,"attr_o30":"2026-12-1... |
TASK repair_structured_output
SPEC
FIELD val_i07 TYPE string REQUIRED yes
FIELD prop_i08 TYPE integer REQUIRED yes
FIELD param_i04 TYPE integer REQUIRED no
FIELD key_b59 TYPE boolean REQUIRED no
FIELD val_d18 TYPE null REQUIRED yes
BROKEN_OUTPUT
create_order(val_i07='world', prop_i08=143, param_i04=241, val_d18=None) | {"val_i07":"world","prop_i08":143,"param_i04":241,"val_d18":null} | tool_call_python_syntax | {
"type": "object",
"properties": {
"val_i07": {
"type": "string"
},
"prop_i08": {
"type": "integer"
},
"param_i04": {
"type": "integer"
},
"key_b59": {
"type": "boolean"
},
"val_d18": {
"type": "null"
}
},
"required": [
"val_i07",
"v... | create_order(val_i07='world', prop_i08=143, param_i04=241, val_d18=None) | Tool call uses Python syntax instead of JSON | {"val_i07":"world","prop_i08":143,"param_i04":241,"val_d18":null} |
TASK repair_structured_output
SPEC
FIELD procedure_code TYPE string_email REQUIRED yes
FIELD weight TYPE boolean REQUIRED yes
FIELD shipping TYPE string REQUIRED no
FIELD wavelength.end_date TYPE string REQUIRED yes
FIELD wavelength.last_name TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
F... | {"procedure_code":"ops@domain.org","weight":true,"wavelength":{"end_date":"Alice","last_name":"rejected","barcode":null,"span_id":408,"transaction_id":300.31,"created_at":341,"lane":906}} | boolean_as_string | {
"type": "object",
"properties": {
"procedure_code": {
"type": "string",
"format": "email"
},
"weight": {
"type": "boolean"
},
"shipping": {
"type": "string"
},
"wavelength": {
"type": "object",
"properties": {
"end_date": {
"type": ... | {"procedure_code": "ops@domain.org", "weight": "no", "wavelength": {"end_date": "Alice", "last_name": "rejected", "barcode": null, "span_id": 408, "transaction_id": 300.31, "created_at": 341, "lane": 906}} | Field 'weight' must be boolean, got string | {"procedure_code":"ops@domain.org","weight":true,"wavelength":{"end_date":"Alice","last_name":"rejected","barcode":null,"span_id":408,"transaction_id":300.31,"created_at":341,"lane":906}} |
TASK repair_structured_output
SPEC
FIELD attr_i32 TYPE string REQUIRED no
FIELD key_e58 TYPE number REQUIRED yes
FIELD val_h26 TYPE string REQUIRED no
FIELD dim_x90 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
BROKEN_OUTPUT
{"attr_i32": "active", "key_e58": 366.17, "val_h26": "Berlin", "dim... | {"attr_i32":"active","key_e58":366.17,"val_h26":"Berlin","dim_x90":"nonsense"} | null_required | {
"type": "object",
"properties": {
"attr_i32": {
"type": "string"
},
"key_e58": {
"type": "number"
},
"val_h26": {
"type": "string"
},
"dim_x90": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift... | {"attr_i32": "active", "key_e58": 366.17, "val_h26": "Berlin", "dim_x90": null} | Required field 'dim_x90' is null | {"attr_i32":"active","key_e58":366.17,"val_h26":"Berlin","dim_x90":"nonsense"} |
TASK repair_structured_output
SPEC
FIELD attr_i13 TYPE string VALUES cat_a|cat_b REQUIRED no
FIELD prop_b20 TYPE boolean REQUIRED yes
FIELD attr_p62 TYPE string REQUIRED no
FIELD dim_y87 TYPE null REQUIRED yes
BROKEN_OUTPUT
{"attr_i13": "cat_b", "prop_b20": null, "attr_p62": "Santos", "dim_y87": null} | {"attr_i13":"cat_b","prop_b20":true,"attr_p62":"Santos","dim_y87":null} | null_required | {
"type": "object",
"properties": {
"attr_i13": {
"type": "string",
"enum": [
"cat_a",
"cat_b"
]
},
"prop_b20": {
"type": "boolean"
},
"attr_p62": {
"type": "string"
},
"dim_y87": {
"type": "null"
}
},
"required": [
"dim_y87... | {"attr_i13": "cat_b", "prop_b20": null, "attr_p62": "Santos", "dim_y87": null} | Required field 'prop_b20' is null | {"attr_i13":"cat_b","prop_b20":true,"attr_p62":"Santos","dim_y87":null} |
TASK repair_structured_output
SPEC
FIELD vessel_name TYPE integer REQUIRED no
FIELD verified TYPE string_date-time REQUIRED yes
FIELD phone TYPE integer REQUIRED no
FIELD due_date TYPE string_date-time REQUIRED no
FIELD full_name[] TYPE string REQUIRED no
BROKEN_OUTPUT
I need to look up the information first.
Action:... | {"vessel_name":643,"verified":"2023-12-05T16:37:00Z","due_date":"2022-11-26T08:44:00Z","full_name":["2024-06-30"]} | tool_call_partial_args | {
"type": "object",
"properties": {
"vessel_name": {
"type": "integer"
},
"verified": {
"type": "string",
"format": "date-time"
},
"phone": {
"type": "integer"
},
"due_date": {
"type": "string",
"format": "date-time"
},
"full_name": {
"ty... | I need to look up the information first.
Action: run_diagnostics
Arguments: {"vessel_name": 643, "due_date": "2022-11-26T08:44:00Z", "full_name": ["2024-06-30"]} | Agent tool call missing required parameter 'verified' | {"vessel_name":643,"verified":"2023-12-05T16:37:00Z","due_date":"2022-11-26T08:44:00Z","full_name":["2024-06-30"]} |
TASK repair_structured_output
SPEC
FIELD bearing TYPE string VALUES option_a|option_b REQUIRED yes
FIELD tile TYPE string VALUES option_a|option_b REQUIRED yes
FIELD features TYPE string VALUES draft|published|archived REQUIRED no
FIELD section TYPE number REQUIRED yes
BROKEN_OUTPUT
{"bearing":"option_b","tile":"opti... | {"bearing":"option_b","tile":"option_b","features":"archived","section":275.95} | missing_brace | {
"type": "object",
"properties": {
"bearing": {
"type": "string",
"enum": [
"option_a",
"option_b"
]
},
"tile": {
"type": "string",
"enum": [
"option_a",
"option_b"
]
},
"features": {
"type": "string",
"enum": [
... | {"bearing":"option_b","tile":"option_b","features":"archived","section":275.95 | Missing closing brace | {"bearing":"option_b","tile":"option_b","features":"archived","section":275.95} |
TASK repair_structured_output
SPEC
FIELD key_j93 TYPE string REQUIRED yes
FIELD dim_f49 TYPE boolean REQUIRED yes
FIELD field_q40 TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD key_w12.attr_j27 TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD key_w12.dim_e20 TYPE number REQUIRED no
... | {"key_j93":"Charlie","dim_f49":true,"field_q40":"medium","key_w12":{"attr_j27":"in_transit","dim_e20":313.22,"prop_t30":{"dim_g92":681,"dim_m37":767,"attr_u04":null,"key_d93":"Santos","attr_m89":"test@test.io","attr_e26":null},"col_y44":210,"attr_u89":"heterozygous"}} | missing_brace | {
"type": "object",
"properties": {
"key_j93": {
"type": "string"
},
"dim_f49": {
"type": "boolean"
},
"field_q40": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
},
"key_w12": {
"type": "object",
... | {"key_j93":"Charlie","dim_f49":true,"field_q40":"medium","key_w12":{"attr_j27":"in_transit","dim_e20":313.22,"prop_t30":{"dim_g92":681,"dim_m37":767,"attr_u04":null,"key_d93":"Santos","attr_m89":"test@test.io","attr_e26":null},"col_y44":210,"attr_u89":"heterozygous"} | Missing closing brace | {"key_j93":"Charlie","dim_f49":true,"field_q40":"medium","key_w12":{"attr_j27":"in_transit","dim_e20":313.22,"prop_t30":{"dim_g92":681,"dim_m37":767,"attr_u04":null,"key_d93":"Santos","attr_m89":"test@test.io","attr_e26":null},"col_y44":210,"attr_u89":"heterozygous"}} |
TASK repair_structured_output
SPEC
FIELD level.end_date TYPE integer REQUIRED no
FIELD level.date TYPE string VALUES draft|published|archived REQUIRED no
FIELD level.price TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD level.hazmat_code TYPE string REQUIRED yes
FIELD level.quality_score TYPE string_email REQ... | {"level":{"hazmat_code":"QC-07","quality_score":"info@example.com","amount":503,"invoice_id":297.8},"count":null,"bill_of_lading":"Luis","umi":"2021-03-01T14:00:00Z","price":"foo"} | tool_call_text_mix | {
"type": "object",
"properties": {
"level": {
"type": "object",
"properties": {
"end_date": {
"type": "integer"
},
"date": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
... | Processing the request now.
<tool_call name="schedule_meeting">
{"level":{"hazmat_code":"QC-07","quality_score":"info@example.com","amount":503,"invoice_id":297.8},"count":null,"bill_of_lading":"Luis","umi":"2021-03-01T14:00:00Z","price":"foo"}
</tool_call.
Operation completed. | Agent response mixes reasoning text with tool call | {"level":{"hazmat_code":"QC-07","quality_score":"info@example.com","amount":503,"invoice_id":297.8},"count":null,"bill_of_lading":"Luis","umi":"2021-03-01T14:00:00Z","price":"foo"} |
TASK repair_structured_output
SPEC
FIELD altitude TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no
FIELD bearing.language.coverage TYPE string VALUES option_a|option_b REQUIRED yes
FIELD bearing.language.duration_ms TYPE integer REQUIRED yes
FIELD bearing.language.discount TYPE string REQUIRED yes
FIELD ... | {"altitude":"level_2","bearing":{"language":{"coverage":"option_b","duration_ms":638,"discount":"John","account_id":466.96},"interest_rate":"unstable","due_date":"medium"},"annotation":"user@domain.org"} | truncated_object | {
"type": "object",
"properties": {
"altitude": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4"
]
},
"bearing": {
"type": "object",
"properties": {
"language": {
"type": "object",
"properti... | {"altitude":"level_2","bearing":{"language":{"coverage":"option_b","duration_ms":638,"discount":"John","account_id":466.96},"interest_rate":"unstable","due_date":"medium"},"annotation":"user@domain.org" | Unexpected end of JSON input — truncated object | {"altitude":"level_2","bearing":{"language":{"coverage":"option_b","duration_ms":638,"discount":"John","account_id":466.96},"interest_rate":"unstable","due_date":"medium"},"annotation":"user@domain.org"} |
TASK repair_structured_output
SPEC
FIELD param_z29 TYPE string REQUIRED no
FIELD field_a43.field_j98 TYPE integer REQUIRED yes
FIELD field_a43.param_c14 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED yes
FIELD field_a43.field_l88 TYPE number REQUIRED no
FIELD col_a52 TYPE boolean REQUIRED yes
FI... | {"param_z29":"Sao Paulo","field_a43":{"field_j98":984,"param_c14":"mode_a","field_l88":900.57},"col_a52":true,"attr_c72":null} | missing_brace | {
"type": "object",
"properties": {
"param_z29": {
"type": "string"
},
"field_a43": {
"type": "object",
"properties": {
"field_j98": {
"type": "integer"
},
"param_c14": {
"type": "string",
"enum": [
"mode_a",
... | "param_z29":"Sao Paulo","field_a43":{"field_j98":984,"param_c14":"mode_a","field_l88":900.57},"col_a52":true,"attr_c72":null} | Missing closing brace | {"param_z29":"Sao Paulo","field_a43":{"field_j98":984,"param_c14":"mode_a","field_l88":900.57},"col_a52":true,"attr_c72":null} |
TASK repair_structured_output
SPEC
FIELD attr_l88.field_e24.prop_x92 TYPE string REQUIRED no
FIELD attr_l88.field_e24.param_r11 TYPE string REQUIRED no
FIELD attr_l88.field_e24.attr_n85 TYPE integer REQUIRED yes
FIELD attr_l88.field_e24.val_m23 TYPE boolean REQUIRED yes
FIELD attr_l88.field_e24.param_d63 TYPE string R... | {"attr_l88":{"field_e24":{"attr_n85":737,"val_m23":false,"param_d63":"London"},"dim_f25":"cat_a","prop_c97":"2024-12-27T19:33:00Z","key_d49":282,"param_s82":715.11,"param_q33":"cat_f"},"prop_l97":956,"col_x40":"2020-09-19T21:05:00Z"} | tool_call_partial_args | {
"type": "object",
"properties": {
"attr_l88": {
"type": "object",
"properties": {
"field_e24": {
"type": "object",
"properties": {
"prop_x92": {
"type": "string"
},
"param_r11": {
"type": "string"
... | I need to look up the information first.
Action: verify_hazmat_compliance
Arguments: {"attr_l88": {"field_e24": {"attr_n85": 737, "val_m23": false, "param_d63": "London"}, "dim_f25": "cat_a", "prop_c97": "2024-12-27T19:33:00Z", "key_d49": 282, "param_s82": 715.11, "param_q33": "cat_f"}, "prop_l97": 956} | Agent tool call missing required parameter 'col_x40' | {"attr_l88":{"field_e24":{"attr_n85":737,"val_m23":false,"param_d63":"London"},"dim_f25":"cat_a","prop_c97":"2024-12-27T19:33:00Z","key_d49":282,"param_s82":715.11,"param_q33":"cat_f"},"prop_l97":956,"col_x40":"2020-09-19T21:05:00Z"} |
TASK repair_structured_output
SPEC
FIELD index TYPE boolean REQUIRED yes
FIELD chapter TYPE string VALUES cat_a|cat_b REQUIRED yes
FIELD first_name TYPE null REQUIRED yes
FIELD amount TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no
FIELD age TYPE string REQUIRED yes
BROKEN_OUTPUT
{"index":true,"chapter... | {"index":true,"chapter":"cat_a","first_name":null,"amount":"level_4","age":"Paris"} | missing_bracket | {
"type": "object",
"properties": {
"index": {
"type": "boolean"
},
"chapter": {
"type": "string",
"enum": [
"cat_a",
"cat_b"
]
},
"first_name": {
"type": "null"
},
"amount": {
"type": "string",
"enum": [
"level_1",
... | {"index":true,"chapter":"cat_a","first_name":null,"amount":"level_4","age":"Paris"} | Missing closing bracket | {"index":true,"chapter":"cat_a","first_name":null,"amount":"level_4","age":"Paris"} |
TASK repair_structured_output
SPEC
FIELD field_p95 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD param_q12 TYPE string VALUES type_a|type_b REQUIRED no
FIELD val_s60 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD col_m92 TYPE boolean REQUIRED no
FIELD col_b37 TYPE boolean... | {"field_p95":"homozygous","param_q12":"type_b","val_s60":"oceanic","col_m92":true,"col_b37":true,"key_i04":null,"field_d36":null} | extra_text_after | {
"type": "object",
"properties": {
"field_p95": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"param_q12": {
"type": "string",
"enum": [
"type_a",
"type_b"
]
},
"val_s60": {
"type":... | {"field_p95":"homozygous","param_q12":"type_b","val_s60":"oceanic","col_m92":true,"col_b37":true,"key_i04":null,"field_d36":null}
I've ensured all required fields are present. | Output contains non-JSON text after the object | {"field_p95":"homozygous","param_q12":"type_b","val_s60":"oceanic","col_m92":true,"col_b37":true,"key_i04":null,"field_d36":null} |
TASK repair_structured_output
SPEC
FIELD aligned_pct.size TYPE number REQUIRED yes
FIELD aligned_pct.price TYPE string REQUIRED yes
FIELD aligned_pct.message[] TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED yes
FIELD trace_id TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD department.name... | {"aligned_pct":{"size":489.72,"price":"Tokyo","message":["level_3","level_4","level_2","level_2"]},"trace_id":"blue","department":{"name":109,"crew_id":null},"zip_code":"demo","image_url":"2022-01-07T04:24:00Z"} | partial_structure | {
"type": "object",
"properties": {
"aligned_pct": {
"type": "object",
"properties": {
"size": {
"type": "number"
},
"price": {
"type": "string"
},
"message": {
"type": "array",
"items": {
"type": "string",
... | Result: department={'name': 109, 'crew_id': None}, {"aligned_pct":{"size":489.72,"price":"Tokyo","message":["level_3","level_4","level_2","level_2"]},"trace_id":"blue","department":{"name":109,"crew_id":null},"zip_code":"demo","image_url":"2022-01-07T04:24:00Z"} | Output mixes natural language with JSON | {"aligned_pct":{"size":489.72,"price":"Tokyo","message":["level_3","level_4","level_2","level_2"]},"trace_id":"blue","department":{"name":109,"crew_id":null},"zip_code":"demo","image_url":"2022-01-07T04:24:00Z"} |
TASK repair_structured_output
SPEC
FIELD date TYPE string_date-time REQUIRED yes
FIELD published TYPE integer REQUIRED no
FIELD berth_slot TYPE integer REQUIRED yes
FIELD format TYPE string REQUIRED yes
FIELD nickname TYPE string REQUIRED no
FIELD filter_flag TYPE boolean REQUIRED yes
BROKEN_OUTPUT
{"date":"2025-02-0... | {"date":"2025-02-04T07:48:00Z","published":406,"berth_slot":683,"format":"sample","nickname":"Santos","filter_flag":false} | missing_bracket | {
"type": "object",
"properties": {
"date": {
"type": "string",
"format": "date-time"
},
"published": {
"type": "integer"
},
"berth_slot": {
"type": "integer"
},
"format": {
"type": "string"
},
"nickname": {
"type": "string"
},
"filter_... | {"date":"2025-02-04T07:48:00Z","published":406,"berth_slot":683,"format":"sample","nickname":"Santos","filter_flag":false} | Missing closing bracket | {"date":"2025-02-04T07:48:00Z","published":406,"berth_slot":683,"format":"sample","nickname":"Santos","filter_flag":false} |
TASK repair_structured_output
SPEC
FIELD ph_level TYPE boolean REQUIRED no
FIELD coverage TYPE boolean REQUIRED yes
FIELD duration_ms TYPE number REQUIRED no
FIELD label.size TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD label.due_date TYPE string REQUIRED yes
FIELD label.height TYPE string VALUES level_1... | {"coverage":true,"duration_ms":372.12} | single_quotes | {
"type": "object",
"properties": {
"ph_level": {
"type": "boolean"
},
"coverage": {
"type": "boolean"
},
"duration_ms": {
"type": "number"
},
"label": {
"type": "object",
"properties": {
"size": {
"type": "string",
"enum": [
... | {'coverage':true,'duration_ms':372.12} | Expecting property name enclosed in double quotes | {"coverage":true,"duration_ms":372.12} |
TASK repair_structured_output
SPEC
FIELD prop_n48 TYPE string VALUES option_a|option_b|option_c|option_d REQUIRED yes
FIELD param_d04 TYPE string REQUIRED no
FIELD val_n40 TYPE string REQUIRED no
FIELD attr_v06 TYPE boolean REQUIRED yes
FIELD col_b58 TYPE boolean REQUIRED yes
FIELD dim_p28.dim_d10 TYPE null REQUIRED n... | {"prop_n48":"option_b","param_d04":"This is a test value.","val_n40":"Alice","attr_v06":true,"col_b58":true,"dim_p28":{"dim_d10":null,"prop_z12":true,"val_e07":"Johnson","param_c23":851,"attr_j17":[{"col_e67":363.37,"attr_p85":"https://api.example.com/v1","param_e53":false},{"col_e67":992.61,"attr_p85":"example","param... | null_required | {
"type": "object",
"properties": {
"prop_n48": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d"
]
},
"param_d04": {
"type": "string"
},
"val_n40": {
"type": "string"
},
"attr_v06": {
"type": ... | {"prop_n48": "option_b", "param_d04": "This is a test value.", "val_n40": "Alice", "attr_v06": null, "col_b58": true, "dim_p28": {"dim_d10": null, "prop_z12": true, "val_e07": "Johnson", "param_c23": 851, "attr_j17": [{"col_e67": 363.37, "attr_p85": "https://api.example.com/v1", "param_e53": false}, {"col_e67": 992.61,... | Required field 'attr_v06' is null | {"prop_n48":"option_b","param_d04":"This is a test value.","val_n40":"Alice","attr_v06":true,"col_b58":true,"dim_p28":{"dim_d10":null,"prop_z12":true,"val_e07":"Johnson","param_c23":851,"attr_j17":[{"col_e67":363.37,"attr_p85":"https://api.example.com/v1","param_e53":false},{"col_e67":992.61,"attr_p85":"example","param... |
TASK repair_structured_output
SPEC
FIELD prop_z33 TYPE null REQUIRED no
FIELD field_r80 TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED yes
FIELD dim_n12[] TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
BROKEN_OUTPUT
```json
{"prop_z33":null,"field_r80":"cat_c","dim_n12":["inland","oceanic","coasta... | {"prop_z33":null,"field_r80":"cat_c","dim_n12":["inland","oceanic","coastal","inland"]} | markdown_fences | {
"type": "object",
"properties": {
"prop_z33": {
"type": "null"
},
"field_r80": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d"
]
},
"dim_n12": {
"type": "array",
"items": {
"type": "string",
"e... | ```json
{"prop_z33":null,"field_r80":"cat_c","dim_n12":["inland","oceanic","coastal","inland"]}
``` | Output contains markdown code fences | {"prop_z33":null,"field_r80":"cat_c","dim_n12":["inland","oceanic","coastal","inland"]} |
TASK repair_structured_output
SPEC
FIELD batch_code TYPE string VALUES mode_a|mode_b|mode_c REQUIRED no
FIELD order_id TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED no
FIELD pressure_kpa TYPE string VALUES mode_a|mode_b REQUIRED no
FIELD humidity_pct TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode... | {"batch_code":"mode_b","order_id":"mode_a","pressure_kpa":"mode_b","humidity_pct":"mode_d"} | partial_structure | {
"type": "object",
"properties": {
"batch_code": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c"
]
},
"order_id": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
"mode_e"
... | Result: humidity_pct=mode_d, {"batch_code":"mode_b","order_id":"mode_a","pressure_kpa":"mode_b","humidity_pct":"mode_d"} | Output mixes natural language with JSON | {"batch_code":"mode_b","order_id":"mode_a","pressure_kpa":"mode_b","humidity_pct":"mode_d"} |
TASK repair_structured_output
SPEC
FIELD prop_q14 TYPE integer REQUIRED yes
FIELD val_c44 TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED yes
FIELD val_x89.val_s37.attr_z61 TYPE string VALUES active|inactive|pending REQUIRED no
FIELD val_x89.val_s37.key_z38 TYPE string REQUIRED no
FIELD val_x8... | {"prop_q14":497,"val_c44":"option_a","val_x89":{"val_s37":{"attr_z61":"active","key_z38":"Jane","param_x22":"inland","attr_y68":"mode_c","key_s74":945.98,"prop_j53":false},"prop_z84":669,"key_q94":786,"dim_l78":{"col_v33":"test@test.io","val_x96":"PASS","col_b93":237},"key_j24":"option_a","col_d63":"approved"}} | unquoted_keys | {
"type": "object",
"properties": {
"prop_q14": {
"type": "integer"
},
"val_c44": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
"option_e"
]
},
"val_x89": {
"type": "object",
"properties":... | {prop_q14:497,val_c44:"option_a",val_x89:{val_s37:{attr_z61:"active",key_z38:"Jane",param_x22:"inland",attr_y68:"mode_c",key_s74:945.98,prop_j53:false},prop_z84:669,key_q94:786,dim_l78:{col_v33:"test@test.io",val_x96:"PASS",col_b93:237},key_j24:"option_a",col_d63:"approved"}} | Expecting property name enclosed in double quotes | {"prop_q14":497,"val_c44":"option_a","val_x89":{"val_s37":{"attr_z61":"active","key_z38":"Jane","param_x22":"inland","attr_y68":"mode_c","key_s74":945.98,"prop_j53":false},"prop_z84":669,"key_q94":786,"dim_l78":{"col_v33":"test@test.io","val_x96":"PASS","col_b93":237},"key_j24":"option_a","col_d63":"approved"}} |
TASK repair_structured_output
SPEC
FIELD attr_z98 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD attr_n21 TYPE number REQUIRED yes
FIELD param_u14 TYPE string VALUES type_a|type_b|type_c|type_d|type_e|type_f REQUIRED yes
FIELD col_a32[] TYPE string VALUES active|inactive|pending REQUIRED... | {"attr_z98":"operational","attr_n21":107.91,"param_u14":"type_f","col_a32":["active"]} | truncated_object | {
"type": "object",
"properties": {
"attr_z98": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
},
"attr_n21": {
"type": "number"
},
"param_u14": {
"type": "string",
"enum": [
"type_a"... | {"attr_z98":"operational","attr_n21":107.91,"param_u14":"type_f","col_a32":["active"] | Unexpected end of JSON input — truncated object | {"attr_z98":"operational","attr_n21":107.91,"param_u14":"type_f","col_a32":["active"]} |
TASK repair_structured_output
SPEC
FIELD param_h24 TYPE string REQUIRED yes
FIELD prop_e66 TYPE string REQUIRED yes
FIELD val_w08 TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD prop_s10 TYPE boolean REQUIRED no
BROKEN_OUTPUT
Let me check the system.
<tool_call name="search">
{"param_h24":"test@example.com"... | {"param_h24":"test@example.com","prop_e66":"chrX","val_w08":"viewer","prop_s10":false} | tool_call_text_mix | {
"type": "object",
"properties": {
"param_h24": {
"type": "string"
},
"prop_e66": {
"type": "string"
},
"val_w08": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"prop_s10": {
"type": "boolean"
}
},
"req... | Let me check the system.
<tool_call name="search">
{"param_h24":"test@example.com","prop_e66":"chrX","val_w08":"viewer","prop_s10":false}
</tool_call.
Done! | Agent response mixes reasoning text with tool call | {"param_h24":"test@example.com","prop_e66":"chrX","val_w08":"viewer","prop_s10":false} |
TASK repair_structured_output
SPEC
FIELD val_e83 TYPE null REQUIRED yes
FIELD key_y80 TYPE string REQUIRED yes
FIELD val_n31 TYPE boolean REQUIRED yes
FIELD field_f57 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD val_r75 TYPE string REQUIRED yes
FIELD val_z18 TYPE string REQUIRED no
BRO... | {"val_e83":null,"key_y80":"test@example.com","val_n31":false,"field_f57":"missense","val_r75":"chr1"} | boolean_as_string | {
"type": "object",
"properties": {
"val_e83": {
"type": "null"
},
"key_y80": {
"type": "string"
},
"val_n31": {
"type": "boolean"
},
"field_f57": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift... | {"val_e83": null, "key_y80": "test@example.com", "val_n31": "yes", "field_f57": "missense", "val_r75": "chr1"} | Field 'val_n31' must be boolean, got string | {"val_e83":null,"key_y80":"test@example.com","val_n31":false,"field_f57":"missense","val_r75":"chr1"} |
TASK repair_structured_output
SPEC
FIELD key_n99 TYPE number REQUIRED yes
FIELD attr_g95 TYPE boolean REQUIRED no
FIELD attr_p93 TYPE string REQUIRED no
FIELD field_i41.attr_q48 TYPE string REQUIRED no
FIELD field_i41.prop_o49 TYPE string_date-time REQUIRED no
FIELD field_i41.attr_t28 TYPE string REQUIRED yes
FIELD pa... | {"key_n99":639.57,"attr_g95":true,"attr_p93":"2024-06-30","field_i41":{"attr_q48":"user@domain.com","prop_o49":"2023-08-22T06:59:00Z","attr_t28":"This is a test value."},"param_k71":{"field_y92":14.24,"dim_x75":"RTG-04","col_f94":"https://api.example.com/v1","val_r88":{"field_x90":"FWD","prop_c41":"Silva","col_f55":"ac... | tool_call_python_syntax | {
"type": "object",
"properties": {
"key_n99": {
"type": "number"
},
"attr_g95": {
"type": "boolean"
},
"attr_p93": {
"type": "string"
},
"field_i41": {
"type": "object",
"properties": {
"attr_q48": {
"type": "string"
},
"pr... | query_port_status(key_n99=639.57, attr_g95=True, attr_p93='2024-06-30', field_i41={'attr_q48': 'user@domain.com', 'prop_o49': '2023-08-22T06:59:00Z', 'attr_t28': 'This is a test value.'}, param_k71={'field_y92': 14.24, 'dim_x75': 'RTG-04', 'col_f94': 'https://api.example.com/v1', 'val_r88': {'field_x90': 'FWD', 'prop_c... | Tool call uses Python syntax instead of JSON | {"key_n99":639.57,"attr_g95":true,"attr_p93":"2024-06-30","field_i41":{"attr_q48":"user@domain.com","prop_o49":"2023-08-22T06:59:00Z","attr_t28":"This is a test value."},"param_k71":{"field_y92":14.24,"dim_x75":"RTG-04","col_f94":"https://api.example.com/v1","val_r88":{"field_x90":"FWD","prop_c41":"Silva","col_f55":"ac... |
TASK repair_structured_output
SPEC
FIELD val_b30 TYPE integer REQUIRED no
FIELD attr_f65 TYPE string REQUIRED no
FIELD param_i54 TYPE string REQUIRED yes
FIELD param_a70.key_i82 TYPE string VALUES type_a|type_b|type_c REQUIRED yes
FIELD param_a70.field_b68 TYPE number REQUIRED no
FIELD param_a70.dim_m48 TYPE integer R... | {"val_b30":590,"param_i54":"pending","param_a70":{"key_i82":"type_a","dim_m48":565,"param_p43":"Silva","prop_p97":true},"field_p59":"2023-06-05T06:36:00Z","dim_h82":"Sao Paulo","col_f11":"type_b"} | agent_chain | {
"type": "object",
"properties": {
"val_b30": {
"type": "integer"
},
"attr_f65": {
"type": "string"
},
"param_i54": {
"type": "string"
},
"param_a70": {
"type": "object",
"properties": {
"key_i82": {
"type": "string",
"enum": [
... | Let me check the system.
Action: run_diagnostics
Result: {"param_i54": "pending", "param_a70": {"key_i82": "type_a", "dim_m48": 565, "param_p43": "Silva", "prop_p97": true}, "field_p59": "2023-06-05T06:36:00Z", "dim_h82": "Sao Paulo", "col_f11": "type_b"}
Processing the request now.
Action: read_sensor_array
Result: | Agent multi-step chain with truncated tool output | {"val_b30":590,"param_i54":"pending","param_a70":{"key_i82":"type_a","dim_m48":565,"param_p43":"Silva","prop_p97":true},"field_p59":"2023-06-05T06:36:00Z","dim_h82":"Sao Paulo","col_f11":"type_b"} |
TASK repair_structured_output
SPEC
FIELD field_x70 TYPE string REQUIRED yes
FIELD dim_q11 TYPE string_email REQUIRED yes
FIELD col_z63 TYPE string REQUIRED yes
BROKEN_OUTPUT
Based on your request, here is the data:
{"field_x70":"Paris","dim_q11":"info@test.io","col_z63":"A short description."} | {"field_x70":"Paris","dim_q11":"info@test.io","col_z63":"A short description."} | extra_text_before | {
"type": "object",
"properties": {
"field_x70": {
"type": "string"
},
"dim_q11": {
"type": "string",
"format": "email"
},
"col_z63": {
"type": "string"
}
},
"required": [
"col_z63",
"field_x70",
"dim_q11"
]
} | Based on your request, here is the data:
{"field_x70":"Paris","dim_q11":"info@test.io","col_z63":"A short description."} | Output contains non-JSON text before the object | {"field_x70":"Paris","dim_q11":"info@test.io","col_z63":"A short description."} |
TASK repair_structured_output
SPEC
FIELD position TYPE integer REQUIRED yes
FIELD username TYPE boolean REQUIRED no
FIELD lab_result TYPE string REQUIRED yes
FIELD paragraph TYPE string REQUIRED yes
FIELD amplitude TYPE integer REQUIRED no
BROKEN_OUTPUT
The instrument reported:
{"position":186,"lab_result":"Paris","p... | {"position":186,"lab_result":"Paris","paragraph":"Luis"} | extra_text_before | {
"type": "object",
"properties": {
"position": {
"type": "integer"
},
"username": {
"type": "boolean"
},
"lab_result": {
"type": "string"
},
"paragraph": {
"type": "string"
},
"amplitude": {
"type": "integer"
}
},
"required": [
"position... | The instrument reported:
{"position":186,"lab_result":"Paris","paragraph":"Luis"} | Output contains non-JSON text before the object | {"position":186,"lab_result":"Paris","paragraph":"Luis"} |
TASK repair_structured_output
SPEC
FIELD longitude TYPE boolean REQUIRED no
FIELD start_date TYPE string REQUIRED no
FIELD last_name TYPE string REQUIRED no
FIELD patient_id TYPE integer REQUIRED no
FIELD strand.footnote TYPE string_date-time REQUIRED yes
FIELD strand.width TYPE string REQUIRED yes
FIELD strand.catego... | {"last_name":"Santos","strand":{"footnote":"2024-09-24T01:46:00Z","width":"Charlie","category":"delivered"},"salinity":false,"interest_rate":false,"tile":false} | missing_required | {
"type": "object",
"properties": {
"longitude": {
"type": "boolean"
},
"start_date": {
"type": "string"
},
"last_name": {
"type": "string"
},
"patient_id": {
"type": "integer"
},
"strand": {
"type": "object",
"properties": {
"footnote"... | {"last_name": "Santos", "salinity": false, "interest_rate": false, "tile": false} | Required field 'strand' is missing | {"last_name":"Santos","strand":{"footnote":"2024-09-24T01:46:00Z","width":"Charlie","category":"delivered"},"salinity":false,"interest_rate":false,"tile":false} |
TASK repair_structured_output
SPEC
FIELD maturity_date TYPE boolean REQUIRED yes
FIELD pressure_kpa TYPE integer REQUIRED yes
FIELD humidity_pct TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD hazmat_code TYPE string VALUES mode_a|mode_b|mode_c REQUIRED no
FIELD bearing TYPE boolean REQUIRED no
FIELD reagent... | {"maturity_date":false,"pressure_kpa":872,"hazmat_code":"mode_b","bearing":false,"reagent":"hello","wavelength":{"lab_result":"chr1","color":998.93,"version":"https://example.com","shift_code":{"reagent":"Santos","language":"https://data.org/v1","bearing":"2024-10-28T22:49:00Z","torque_output":"Silva","message":"info@d... | extra_field | {
"type": "object",
"properties": {
"maturity_date": {
"type": "boolean"
},
"pressure_kpa": {
"type": "integer"
},
"humidity_pct": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"hazmat_code": {
"type... | {"maturity_date": false, "pressure_kpa": 872, "hazmat_code": "mode_b", "bearing": false, "reagent": "hello", "wavelength": {"lab_result": "chr1", "color": 998.93, "version": "https://example.com", "shift_code": {"reagent": "Santos", "language": "https://data.org/v1", "bearing": "2024-10-28T22:49:00Z", "torque_output": ... | Unknown field 'extra_field_9627' not defined in schema | {"maturity_date":false,"pressure_kpa":872,"hazmat_code":"mode_b","bearing":false,"reagent":"hello","wavelength":{"lab_result":"chr1","color":998.93,"version":"https://example.com","shift_code":{"reagent":"Santos","language":"https://data.org/v1","bearing":"2024-10-28T22:49:00Z","torque_output":"Silva","message":"info@d... |
TASK repair_structured_output
SPEC
FIELD duration_ms TYPE number REQUIRED yes
FIELD price TYPE string REQUIRED no
FIELD role.index TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD role.shipper_ref TYPE string VALUES cat_a|cat_b REQUIRED no
FIELD role.subtotal TYPE string VALUES cat_a|cat_b|cat_c REQUIRED yes
... | {"duration_ms":561.85,"price":"baz","role":{"index":"phone","shipper_ref":"cat_a","subtotal":"cat_a","quality_score":"info@example.com","priority":null,"items":"Santos","tax":124}} | missing_required | {
"type": "object",
"properties": {
"duration_ms": {
"type": "number"
},
"price": {
"type": "string"
},
"role": {
"type": "object",
"properties": {
"index": {
"type": "string",
"enum": [
"email",
"phone",
"sm... | {"price": "baz", "role": {"index": "phone", "shipper_ref": "cat_a", "subtotal": "cat_a", "quality_score": "info@example.com", "priority": null, "items": "Santos", "tax": 124}} | Required field 'duration_ms' is missing | {"duration_ms":561.85,"price":"baz","role":{"index":"phone","shipper_ref":"cat_a","subtotal":"cat_a","quality_score":"info@example.com","priority":null,"items":"Santos","tax":124}} |
TASK repair_structured_output
SPEC
FIELD id TYPE string VALUES level_1|level_2|level_3 REQUIRED no
FIELD full_name.allele TYPE integer REQUIRED no
FIELD full_name.hazmat_code TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD full_name.amplitude TYPE integer REQUIRED no
FIELD full_name.reagent TYP... | {"torque_output":true,"notes":"level_2","website":"2024-01-15"} | null_required | {
"type": "object",
"properties": {
"id": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3"
]
},
"full_name": {
"type": "object",
"properties": {
"allele": {
"type": "integer"
},
"hazmat_code": {
... | {"torque_output": true, "notes": null, "website": "2024-01-15"} | Required field 'notes' is null | {"torque_output":true,"notes":"level_2","website":"2024-01-15"} |
TASK repair_structured_output
SPEC
FIELD bed_number TYPE string REQUIRED no
FIELD port_code TYPE integer REQUIRED no
FIELD credit_score TYPE string_uri REQUIRED no
FIELD conductivity TYPE string_email REQUIRED yes
FIELD build_status.freight_class TYPE string VALUES draft|published|archived REQUIRED yes
FIELD build_sta... | {"bed_number":"GRCh38","port_code":355,"credit_score":"https://data.io/v1","conductivity":"admin@test.io","section":"white"} | unquoted_keys | {
"type": "object",
"properties": {
"bed_number": {
"type": "string"
},
"port_code": {
"type": "integer"
},
"credit_score": {
"type": "string",
"format": "uri"
},
"conductivity": {
"type": "string",
"format": "email"
},
"build_status": {
... | {bed_number:"GRCh38",port_code:355,credit_score:"https://data.io/v1",conductivity:"admin@test.io",section:"white"} | Expecting property name enclosed in double quotes | {"bed_number":"GRCh38","port_code":355,"credit_score":"https://data.io/v1","conductivity":"admin@test.io","section":"white"} |
TASK repair_structured_output
SPEC
FIELD credit_score TYPE number REQUIRED yes
FIELD ward TYPE integer REQUIRED no
FIELD half_life[].port_code TYPE number REQUIRED no
FIELD half_life[].ph_level TYPE null REQUIRED no
FIELD half_life[].reagent TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED no
FIELD half_life[... | {"credit_score":17.18,"ward":563,"half_life":[{"port_code":576.39,"reagent":"cat_a","batch_code":"REV","shipper_ref":false,"amplitude":"delivered","account_id":465},{"port_code":456.03,"ph_level":null,"reagent":"cat_d","batch_code":"This is a test value.","shipper_ref":true,"account_id":873}]} | extra_field | {
"type": "object",
"properties": {
"credit_score": {
"type": "number"
},
"ward": {
"type": "integer"
},
"half_life": {
"type": "array",
"items": {
"type": "object",
"properties": {
"port_code": {
"type": "number"
},
... | {"credit_score": 17.18, "ward": 563, "half_life": [{"port_code": 576.39, "reagent": "cat_a", "batch_code": "REV", "shipper_ref": false, "amplitude": "delivered", "account_id": 465}, {"port_code": 456.03, "ph_level": null, "reagent": "cat_d", "batch_code": "This is a test value.", "shipper_ref": true, "account_id": 873}... | Unknown field 'extra_field_8017' not defined in schema | {"credit_score":17.18,"ward":563,"half_life":[{"port_code":576.39,"reagent":"cat_a","batch_code":"REV","shipper_ref":false,"amplitude":"delivered","account_id":465},{"port_code":456.03,"ph_level":null,"reagent":"cat_d","batch_code":"This is a test value.","shipper_ref":true,"account_id":873}]} |
TASK repair_structured_output
SPEC
FIELD lab_result.transaction_id TYPE string REQUIRED no
FIELD lab_result.repository TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD lab_result.phone TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD lab_result.width TYPE integer REQUIRED no
FIELD lab_resu... | {"lab_result":{"repository":"coastal","phone":"medium","interest_rate":[557,868,54,672]},"total":"cancelled","currency":761,"altitude":"blue","transaction_id":"Luis","ward":"2023-10-02T10:03:00Z"} | tool_call_partial_args | {
"type": "object",
"properties": {
"lab_result": {
"type": "object",
"properties": {
"transaction_id": {
"type": "string"
},
"repository": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
... | Let me check the system.
Action: align_reads
Arguments: {"total": "cancelled", "currency": 761, "altitude": "blue", "transaction_id": "Luis", "ward": "2023-10-02T10:03:00Z"} | Agent tool call missing required parameter 'lab_result' | {"lab_result":{"repository":"coastal","phone":"medium","interest_rate":[557,868,54,672]},"total":"cancelled","currency":761,"altitude":"blue","transaction_id":"Luis","ward":"2023-10-02T10:03:00Z"} |
TASK repair_structured_output
SPEC
FIELD val_m16 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD dim_b91 TYPE integer REQUIRED yes
FIELD val_x63 TYPE integer REQUIRED no
FIELD col_c22 TYPE string REQUIRED no
FIELD col_l49 TYPE boolean REQUIRED no
FIELD val_z46 TYPE string VALUES open|in_progress|resolved|clos... | {"dim_b91":155,"val_x63":867,"col_c22":"GRCh38","val_z46":"resolved"} | null_required | {
"type": "object",
"properties": {
"val_m16": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"dim_b91": {
"type": "integer"
},
"val_x63": {
"type": "integer"
},
"col_c22": {
"type": "string... | {"dim_b91": 155, "val_x63": 867, "col_c22": "GRCh38", "val_z46": null} | Required field 'val_z46' is null | {"dim_b91":155,"val_x63":867,"col_c22":"GRCh38","val_z46":"resolved"} |
TASK repair_structured_output
SPEC
FIELD field_x62 TYPE null REQUIRED yes
FIELD key_n50 TYPE string_uri REQUIRED yes
FIELD key_z12 TYPE null REQUIRED yes
BROKEN_OUTPUT
{"field_x62":null,"key_n50":"https://data.org/api","key_z12":null}
Feel free to ask if you have questions. | {"field_x62":null,"key_n50":"https://data.org/api","key_z12":null} | extra_text_after | {
"type": "object",
"properties": {
"field_x62": {
"type": "null"
},
"key_n50": {
"type": "string",
"format": "uri"
},
"key_z12": {
"type": "null"
}
},
"required": [
"key_n50",
"field_x62",
"key_z12"
]
} | {"field_x62":null,"key_n50":"https://data.org/api","key_z12":null}
Feel free to ask if you have questions. | Output contains non-JSON text after the object | {"field_x62":null,"key_n50":"https://data.org/api","key_z12":null} |
TASK repair_structured_output
SPEC
FIELD conductivity TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD level.company.username TYPE string REQUIRED yes
FIELD level.company.image_url TYPE string_date-time REQUIRED yes
FIELD level.company.catalyst TYPE string VALUES draft|published|archived REQUIRED yes
FIE... | {"conductivity":"low","level":{"company":{"username":"London","image_url":"2020-08-24T09:21:00Z","catalyst":"draft"},"patient_id":67.98,"total":{"berth_slot":"delivered","last_name":"example","email":"rejected","terminal_id":"foo","items":669}},"position":"test@test.io","frequency_hz":78.31,"user_id":{"umi":551,"user_i... | extra_field | {
"type": "object",
"properties": {
"conductivity": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"level": {
"type": "object",
"properties": {
"company": {
"type": "object",
"properties": {... | {"conductivity": "low", "level": {"company": {"username": "London", "image_url": "2020-08-24T09:21:00Z", "catalyst": "draft"}, "patient_id": 67.98, "total": {"berth_slot": "delivered", "last_name": "example", "email": "rejected", "terminal_id": "foo", "items": 669}}, "position": "test@test.io", "frequency_hz": 78.31, "... | Unknown field 'extra_info_9337' not defined in schema | {"conductivity":"low","level":{"company":{"username":"London","image_url":"2020-08-24T09:21:00Z","catalyst":"draft"},"patient_id":67.98,"total":{"berth_slot":"delivered","last_name":"example","email":"rejected","terminal_id":"foo","items":669}},"position":"test@test.io","frequency_hz":78.31,"user_id":{"umi":551,"user_i... |
TASK repair_structured_output
SPEC
FIELD ph_level TYPE string REQUIRED yes
FIELD rating TYPE null REQUIRED no
FIELD wavelength TYPE integer REQUIRED no
FIELD log_level TYPE string VALUES cat_a|cat_b REQUIRED no
FIELD longitude TYPE string REQUIRED yes
BROKEN_OUTPUT
{"ph_level": "Smith", "rating": null, "wavelength": ... | {"ph_level":"Smith","rating":null,"wavelength":690,"log_level":"cat_a","longitude":"Tokyo"} | extra_field | {
"type": "object",
"properties": {
"ph_level": {
"type": "string"
},
"rating": {
"type": "null"
},
"wavelength": {
"type": "integer"
},
"log_level": {
"type": "string",
"enum": [
"cat_a",
"cat_b"
]
},
"longitude": {
"type... | {"ph_level": "Smith", "rating": null, "wavelength": 690, "log_level": "cat_a", "longitude": "Tokyo", "extra_field_5258": "unexpected"} | Unknown field 'extra_field_5258' not defined in schema | {"ph_level":"Smith","rating":null,"wavelength":690,"log_level":"cat_a","longitude":"Tokyo"} |
TASK repair_structured_output
SPEC
FIELD param_r49 TYPE string REQUIRED no
FIELD attr_d62 TYPE boolean REQUIRED no
FIELD field_r17 TYPE boolean REQUIRED no
FIELD field_m86 TYPE string_uri REQUIRED no
FIELD col_i82 TYPE string REQUIRED yes
BROKEN_OUTPUT
I need to look up the information first.
Action: update_preferenc... | {"param_r49":"baz","attr_d62":false,"field_r17":true,"field_m86":"https://data.com/api","col_i82":"bar"} | agent_chain | {
"type": "object",
"properties": {
"param_r49": {
"type": "string"
},
"attr_d62": {
"type": "boolean"
},
"field_r17": {
"type": "boolean"
},
"field_m86": {
"type": "string",
"format": "uri"
},
"col_i82": {
"type": "string"
}
},
"requir... | I need to look up the information first.
Action: update_preferences
Result: {"attr_d62": false, "field_r17": true, "field_m86": "https://data.com/api", "col_i82": "bar"}
I'll query our database.
Action: send_email
Result: | Agent multi-step chain with truncated tool output | {"param_r49":"baz","attr_d62":false,"field_r17":true,"field_m86":"https://data.com/api","col_i82":"bar"} |
TASK repair_structured_output
SPEC
FIELD col_k75 TYPE string REQUIRED no
FIELD key_h41 TYPE string VALUES draft|published|archived REQUIRED no
FIELD val_f10 TYPE string VALUES active|inactive|pending REQUIRED no
FIELD attr_k96 TYPE string_date-time REQUIRED yes
FIELD param_i73 TYPE number REQUIRED no
FIELD val_v71 TYP... | {"key_h41":"archived","attr_k96":"2022-03-09T09:09:00Z","val_v71":"basic","attr_g98":false} | thought_process | {
"type": "object",
"properties": {
"col_k75": {
"type": "string"
},
"key_h41": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"val_f10": {
"type": "string",
"enum": [
"active",
"inactive",
"... | Breaking down the requirements:
- Must include all required fields
- Types must match the schema
- Values should be realistic
{"key_h41":"archived","attr_k96":"2022-03-09T09:09:00Z","val_v71":"basic","attr_g98":false} | Output contains chain-of-thought reasoning before JSON | {"key_h41":"archived","attr_k96":"2022-03-09T09:09:00Z","val_v71":"basic","attr_g98":false} |
TASK repair_structured_output
SPEC
FIELD payment_status TYPE string_email REQUIRED yes
FIELD tags TYPE integer REQUIRED yes
FIELD filter_flag.nickname.verified TYPE string_uri REQUIRED yes
FIELD filter_flag.nickname.item_id TYPE string VALUES option_a|option_b|option_c REQUIRED yes
FIELD filter_flag.nickname.zip_code ... | {"payment_status":"ops@test.io","tags":420,"filter_flag":{"nickname":{"verified":"https://api.io/api","item_id":"option_a","zip_code":179,"filter_flag":"info@example.com","credit_score":"New York","coverage":false},"quality_score":{"credit_score":342.25,"timezone":"type_d","dosage":false},"turbidity":"test@example.com"... | tool_call_partial_args | {
"type": "object",
"properties": {
"payment_status": {
"type": "string",
"format": "email"
},
"tags": {
"type": "integer"
},
"filter_flag": {
"type": "object",
"properties": {
"nickname": {
"type": "object",
"properties": {
"... | I need to look up the information first.
Action: delete_item
Arguments: {"tags": 420, "filter_flag": {"nickname": {"verified": "https://api.io/api", "item_id": "option_a", "zip_code": 179, "filter_flag": "info@example.com", "credit_score": "New York", "coverage": false}, "quality_score": {"credit_score": 342.25, "timez... | Agent tool call missing required parameter 'payment_status' | {"payment_status":"ops@test.io","tags":420,"filter_flag":{"nickname":{"verified":"https://api.io/api","item_id":"option_a","zip_code":179,"filter_flag":"info@example.com","credit_score":"New York","coverage":false},"quality_score":{"credit_score":342.25,"timezone":"type_d","dosage":false},"turbidity":"test@example.com"... |
TASK repair_structured_output
SPEC
FIELD account_id.department TYPE string_email REQUIRED yes
FIELD account_id.annotation TYPE string VALUES success|error|warning|info REQUIRED no
FIELD account_id.weight TYPE string REQUIRED yes
FIELD dissolved_oxygen TYPE null REQUIRED yes
FIELD run_id TYPE null REQUIRED no
FIELD ph_... | {"account_id":{"department":"ops@domain.org","annotation":"error","weight":"Hapag-Lloyd-Express"},"dissolved_oxygen":null,"run_id":null,"ph_level":{"latitude":false,"interest_rate":"closed","first_name":null,"title":false,"quantity":"https://api.io/v1"},"span_id":"USD","crew_id":"sms"} | null_required | {
"type": "object",
"properties": {
"account_id": {
"type": "object",
"properties": {
"department": {
"type": "string",
"format": "email"
},
"annotation": {
"type": "string",
"enum": [
"success",
"error",
... | {"account_id": {"department": "ops@domain.org", "annotation": "error", "weight": "Hapag-Lloyd-Express"}, "dissolved_oxygen": null, "run_id": null, "ph_level": null, "span_id": "USD", "crew_id": "sms"} | Required field 'ph_level' is null | {"account_id":{"department":"ops@domain.org","annotation":"error","weight":"Hapag-Lloyd-Express"},"dissolved_oxygen":null,"run_id":null,"ph_level":{"latitude":false,"interest_rate":"closed","first_name":null,"title":false,"quantity":"https://api.io/v1"},"span_id":"USD","crew_id":"sms"} |
TASK repair_structured_output
SPEC
FIELD branch TYPE string VALUES option_a|option_b REQUIRED no
FIELD width TYPE string VALUES option_a|option_b|option_c|option_d|option_e|option_f REQUIRED no
FIELD annotation TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD payment_status TYPE boolean REQUIRED no
... | {"branch":"option_a","width":"option_c","annotation":"reliable","payment_status":false,"due_date":"sample","height":"2024-12-07T15:34:00Z","currency":true,"size":993} | extra_text_after | {
"type": "object",
"properties": {
"branch": {
"type": "string",
"enum": [
"option_a",
"option_b"
]
},
"width": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
"option_e",
"option... | {"branch":"option_a","width":"option_c","annotation":"reliable","payment_status":false,"due_date":"sample","height":"2024-12-07T15:34:00Z","currency":true,"size":993}
I've ensured all required fields are present. | Output contains non-JSON text after the object | {"branch":"option_a","width":"option_c","annotation":"reliable","payment_status":false,"due_date":"sample","height":"2024-12-07T15:34:00Z","currency":true,"size":993} |
TASK repair_structured_output
SPEC
FIELD width.username TYPE string REQUIRED yes
FIELD width.aligned_pct TYPE string_email REQUIRED yes
FIELD width.crew_id TYPE string VALUES type_a|type_b REQUIRED yes
FIELD conductivity TYPE boolean REQUIRED yes
FIELD message TYPE integer REQUIRED no
FIELD color TYPE integer REQUIRED... | {"width":{"username":"inactive","aligned_pct":"admin@test.io","crew_id":"type_b"},"conductivity":false,"message":709,"color":391,"frequency_hz":"active"} | missing_brace | {
"type": "object",
"properties": {
"width": {
"type": "object",
"properties": {
"username": {
"type": "string"
},
"aligned_pct": {
"type": "string",
"format": "email"
},
"crew_id": {
"type": "string",
"enum": ... | {"width":{"username":"inactive","aligned_pct":"admin@test.io","crew_id":"type_b"},"conductivity":false,"message":709,"color":391,"frequency_hz":"active" | Missing closing brace | {"width":{"username":"inactive","aligned_pct":"admin@test.io","crew_id":"type_b"},"conductivity":false,"message":709,"color":391,"frequency_hz":"active"} |
TASK repair_structured_output
SPEC
FIELD quality_score TYPE string REQUIRED no
FIELD dissolved_oxygen TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD barcode.visible TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD barcode.yield_pct TYPE null REQUIRED no
FIELD barcode.sensor_id TY... | {"quality_score":"https://example.com","dissolved_oxygen":"inactive","barcode":{"visible":"heterozygous","yield_pct":null,"start_date":"medium","features":"approved","updated_at":"Alice"},"cargo_type":"MV-Evergreen-01","title":"cancelled","transaction_id":false,"duration_ms":"demo","pressure_kpa":null} | tool_call_partial_args | {
"type": "object",
"properties": {
"quality_score": {
"type": "string"
},
"dissolved_oxygen": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
},
"barcode": {
"type": "object",
"properties": {
"visible": {
... | I need to look up the information first.
Action: calculate_docking_fee
Arguments: {"quality_score": "https://example.com", "barcode": {"visible": "heterozygous", "yield_pct": null, "start_date": "medium", "features": "approved", "updated_at": "Alice"}, "cargo_type": "MV-Evergreen-01", "title": "cancelled", "transaction... | Agent tool call missing required parameter 'dissolved_oxygen' | {"quality_score":"https://example.com","dissolved_oxygen":"inactive","barcode":{"visible":"heterozygous","yield_pct":null,"start_date":"medium","features":"approved","updated_at":"Alice"},"cargo_type":"MV-Evergreen-01","title":"cancelled","transaction_id":false,"duration_ms":"demo","pressure_kpa":null} |
TASK repair_structured_output
SPEC
FIELD insurance_id TYPE string VALUES single|married|divorced REQUIRED no
FIELD gene_id TYPE boolean REQUIRED no
FIELD decay_rate TYPE string REQUIRED yes
FIELD user_id TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
FIELD payment_status TYPE string VALUES operational|... | {"insurance_id":"married","gene_id":false,"decay_rate":"Hapag-Lloyd-Express","user_id":"unstable","payment_status":"operational","ph_level":"New York"} | single_quotes | {
"type": "object",
"properties": {
"insurance_id": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"gene_id": {
"type": "boolean"
},
"decay_rate": {
"type": "string"
},
"user_id": {
"type": "string",
"e... | {'insurance_id':'married','gene_id':false,'decay_rate':'Hapag-Lloyd-Express','user_id':'unstable','payment_status':'operational','ph_level':'New York'} | Expecting property name enclosed in double quotes | {"insurance_id":"married","gene_id":false,"decay_rate":"Hapag-Lloyd-Express","user_id":"unstable","payment_status":"operational","ph_level":"New York"} |
TASK repair_structured_output
SPEC
FIELD trace_id TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD subtotal TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD throttle_pos TYPE null REQUIRED no
BROKEN_OUTPUT
delete_item(trace_id='viewer', subtotal='pending', throttle_pos=None) | {"trace_id":"viewer","subtotal":"pending","throttle_pos":null} | tool_call_python_syntax | {
"type": "object",
"properties": {
"trace_id": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"subtotal": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
},
"throttle_pos": {
... | delete_item(trace_id='viewer', subtotal='pending', throttle_pos=None) | Tool call uses Python syntax instead of JSON | {"trace_id":"viewer","subtotal":"pending","throttle_pos":null} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.