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 col_k25 TYPE string REQUIRED yes
FIELD param_d15.prop_m26 TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD param_d15.key_z56 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD param_d15.val_c29 TYPE number REQUIRED no
FIELD param_d15.key_q96 ... | {"col_k25":"FWD","param_d15":{"prop_m26":"phone","key_z56":"offline","key_q96":"example"},"val_h83":{"prop_e96":"viewer","dim_g72":"hemizygous","field_y20":261},"field_a87":"2021-02-18T01:17:00Z","key_q43":"archived","val_b77":"Jane"} | date_format_error | {
"type": "object",
"properties": {
"col_k25": {
"type": "string"
},
"param_d15": {
"type": "object",
"properties": {
"prop_m26": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
... | {"col_k25": "FWD", "param_d15": {"prop_m26": "phone", "key_z56": "offline", "key_q96": "example"}, "val_h83": {"prop_e96": "viewer", "dim_g72": "hemizygous", "field_y20": 261}, "field_a87": "2021-02-18 01:17:00Z", "key_q43": "archived", "val_b77": "Jane"} | Field 'field_a87' has invalid date format | {"col_k25":"FWD","param_d15":{"prop_m26":"phone","key_z56":"offline","key_q96":"example"},"val_h83":{"prop_e96":"viewer","dim_g72":"hemizygous","field_y20":261},"field_a87":"2021-02-18T01:17:00Z","key_q43":"archived","val_b77":"Jane"} |
TASK repair_structured_output
SPEC
FIELD throttle_pos TYPE string REQUIRED yes
FIELD visible TYPE string REQUIRED yes
FIELD company TYPE integer REQUIRED no
FIELD voltage TYPE null REQUIRED no
FIELD count TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD frequency_hz TYPE string VALUES berthed|an... | {"throttle_pos":"inactive","visible":"completed","company":177,"count":"delivered","frequency_hz":"moored","quality_score":452} | missing_required | {
"type": "object",
"properties": {
"throttle_pos": {
"type": "string"
},
"visible": {
"type": "string"
},
"company": {
"type": "integer"
},
"voltage": {
"type": "null"
},
"count": {
"type": "string",
"enum": [
"new",
"in_transi... | {"throttle_pos": "inactive", "visible": "completed", "company": 177, "count": "delivered", "frequency_hz": "moored"} | Required field 'quality_score' is missing | {"throttle_pos":"inactive","visible":"completed","company":177,"count":"delivered","frequency_hz":"moored","quality_score":452} |
TASK repair_structured_output
SPEC
FIELD param_l05.key_w84 TYPE string VALUES single|married|divorced REQUIRED yes
FIELD param_l05.val_p10 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
FIELD param_l05.param_b12 TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD key_y33.val... | {"param_l05":{"key_w84":"divorced","val_p10":"offline","param_b12":"resolved"},"key_y33":{"val_s83":"medium","attr_r20":false,"attr_v34":null,"key_r81":864.31,"field_l76":null,"param_f89":"sample"},"field_r57":"A short description.","param_h75":786.98,"param_z76":972,"attr_w18":"in_transit","dim_r55":"London"} | partial_structure | {
"type": "object",
"properties": {
"param_l05": {
"type": "object",
"properties": {
"key_w84": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"val_p10": {
"type": "string",
... | I found that field_r57 should be A short description.. {"param_l05":{"key_w84":"divorced","val_p10":"offline","param_b12":"resolved"},"key_y33":{"val_s83":"medium","attr_r20":false,"attr_v34":null,"key_r81":864.31,"field_l76":null,"param_f89":"sample"},"field_r57":"A short description.","param_h75":786.98,"param_z76":9... | Output mixes natural language with JSON | {"param_l05":{"key_w84":"divorced","val_p10":"offline","param_b12":"resolved"},"key_y33":{"val_s83":"medium","attr_r20":false,"attr_v34":null,"key_r81":864.31,"field_l76":null,"param_f89":"sample"},"field_r57":"A short description.","param_h75":786.98,"param_z76":972,"attr_w18":"in_transit","dim_r55":"London"} |
TASK repair_structured_output
SPEC
FIELD full_name TYPE null REQUIRED yes
FIELD age TYPE string REQUIRED no
FIELD longitude TYPE string REQUIRED yes
FIELD organism TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD address TYPE integer REQUIRED no
FIELD color TYPE string REQUIRED yes
FIELD trace_id.thumbnail ... | {"full_name":null,"longitude":"2024-06-30","organism":"xl","address":642,"color":"https://api.example.com/v1","trace_id":{"thumbnail":true,"run_id":"admin@domain.org","payment_status":[{"role":"Smith","size":"https://data.com/v1"},{"role":"world","size":"https://www.org/data"},{"address":"hemizygous","role":"Bob","size... | missing_bracket | {
"type": "object",
"properties": {
"full_name": {
"type": "null"
},
"age": {
"type": "string"
},
"longitude": {
"type": "string"
},
"organism": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
},
... | {"full_name":null,"longitude":"2024-06-30","organism":"xl","address":642,"color":"https://api.example.com/v1","trace_id":{"thumbnail":true,"run_id":"admin@domain.org","payment_status":[{"role":"Smith","size":"https://data.com/v1"},{"role":"world","size":"https://www.org/data"},{"address":"hemizygous","role":"Bob","size... | Missing closing bracket | {"full_name":null,"longitude":"2024-06-30","organism":"xl","address":642,"color":"https://api.example.com/v1","trace_id":{"thumbnail":true,"run_id":"admin@domain.org","payment_status":[{"role":"Smith","size":"https://data.com/v1"},{"role":"world","size":"https://www.org/data"},{"address":"hemizygous","role":"Bob","size... |
TASK repair_structured_output
SPEC
FIELD dim_i90.key_b50 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
FIELD dim_i90.key_e53 TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD dim_i90.dim_j34 TYPE string_uri REQUIRED no
FIELD dim_i90.prop_l37 TYPE boolean REQUIRED no
FIELD dim_i90.... | {"dim_i90":{"key_b50":"nonsense","key_e53":"critical","prop_l37":true,"param_o80":343,"val_z77":314,"prop_b38":577.02},"col_a30":"heterozygous","field_z98":735.77,"attr_v01":"email","dim_y67":"large","prop_c92":{"field_g76":314,"param_l13":"Sao Paulo","val_l16":"Sao Paulo","col_i17":728.01},"field_x03":855.35,"param_n9... | missing_bracket | {
"type": "object",
"properties": {
"dim_i90": {
"type": "object",
"properties": {
"key_b50": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"key_e53": {
... | {"dim_i90":{"key_b50":"nonsense","key_e53":"critical","prop_l37":true,"param_o80":343,"val_z77":314,"prop_b38":577.02},"col_a30":"heterozygous","field_z98":735.77,"attr_v01":"email","dim_y67":"large","prop_c92":{"field_g76":314,"param_l13":"Sao Paulo","val_l16":"Sao Paulo","col_i17":728.01},"field_x03":855.35,"param_n9... | Missing closing bracket | {"dim_i90":{"key_b50":"nonsense","key_e53":"critical","prop_l37":true,"param_o80":343,"val_z77":314,"prop_b38":577.02},"col_a30":"heterozygous","field_z98":735.77,"attr_v01":"email","dim_y67":"large","prop_c92":{"field_g76":314,"param_l13":"Sao Paulo","val_l16":"Sao Paulo","col_i17":728.01},"field_x03":855.35,"param_n9... |
TASK repair_structured_output
SPEC
FIELD attr_m45 TYPE string REQUIRED yes
FIELD param_r40 TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD prop_s78 TYPE string REQUIRED no
FIELD key_w13 TYPE integer REQUIRED no
BROKEN_OUTPUT
I need to look up the information first.
Action: call_variants
Result: {"param_r40":... | {"attr_m45":"New York","param_r40":"editor"} | agent_chain | {
"type": "object",
"properties": {
"attr_m45": {
"type": "string"
},
"param_r40": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"prop_s78": {
"type": "string"
},
"key_w13": {
"type": "integer"
}
},
"req... | I need to look up the information first.
Action: call_variants
Result: {"param_r40": "editor"}
Processing the request now.
Action: fetch_lab_result
Result: | Agent multi-step chain with truncated tool output | {"attr_m45":"New York","param_r40":"editor"} |
TASK repair_structured_output
SPEC
FIELD param_u97 TYPE boolean REQUIRED no
FIELD prop_r83 TYPE string_email REQUIRED yes
FIELD dim_m79 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
FIELD attr_u29 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD val_w81.param_x01.field_h42 TYPE intege... | {"param_u97":true,"prop_r83":"info@example.com","dim_m79":"synonymous","attr_u29":"EUR","val_w81":{"param_x01":{"field_h42":214,"param_o40":"resolved","key_c87":878.86,"val_t05":608,"dim_x17":325,"dim_u25":"PASS"},"val_a09":"info@example.com","val_z23":"https://example.com"}} | unquoted_keys | {
"type": "object",
"properties": {
"param_u97": {
"type": "boolean"
},
"prop_r83": {
"type": "string",
"format": "email"
},
"dim_m79": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
... | {param_u97:true,prop_r83:"info@example.com",dim_m79:"synonymous",attr_u29:"EUR",val_w81:{param_x01:{field_h42:214,param_o40:"resolved",key_c87:878.86,val_t05:608,dim_x17:325,dim_u25:"PASS"},val_a09:"info@example.com",val_z23:"https://example.com"}} | Expecting property name enclosed in double quotes | {"param_u97":true,"prop_r83":"info@example.com","dim_m79":"synonymous","attr_u29":"EUR","val_w81":{"param_x01":{"field_h42":214,"param_o40":"resolved","key_c87":878.86,"val_t05":608,"dim_x17":325,"dim_u25":"PASS"},"val_a09":"info@example.com","val_z23":"https://example.com"}} |
TASK repair_structured_output
SPEC
FIELD field_x34 TYPE integer REQUIRED no
FIELD field_j01 TYPE integer REQUIRED yes
FIELD dim_s36 TYPE string VALUES low|medium|high|critical REQUIRED yes
BROKEN_OUTPUT
{"field_x34":746,"field_j01":47,"dim_s36":"high" | {"field_x34":746,"field_j01":47,"dim_s36":"high"} | truncated_object | {
"type": "object",
"properties": {
"field_x34": {
"type": "integer"
},
"field_j01": {
"type": "integer"
},
"dim_s36": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
}
},
"required": [
"dim_s36",
"... | {"field_x34":746,"field_j01":47,"dim_s36":"high" | Unexpected end of JSON input — truncated object | {"field_x34":746,"field_j01":47,"dim_s36":"high"} |
TASK repair_structured_output
SPEC
FIELD key_q44 TYPE number REQUIRED yes
FIELD val_m93 TYPE boolean REQUIRED yes
FIELD col_v03.field_s74 TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD col_v03.prop_g15 TYPE string REQUIRED no
FIELD col_v03.field_t10 TYPE string VALUES homozygous|heterozygous|hemizygous... | {"key_q44":791.66,"val_m93":false,"col_v03":{"field_s74":"basic","field_t10":"hemizygous","param_e04":"London","key_o46":null}} | tool_call_wrong_param | {
"type": "object",
"properties": {
"key_q44": {
"type": "number"
},
"val_m93": {
"type": "boolean"
},
"col_v03": {
"type": "object",
"properties": {
"field_s74": {
"type": "string",
"enum": [
"free",
"basic",
... | Tool: create_ticket
Params: {"key_q44": 791.66, "col_v03": {"field_s74": "basic", "field_t10": "hemizygous", "param_e04": "London", "key_o46": null}, "val_m932": false} | Agent used wrong parameter name 'val_m932' instead of 'val_m93' | {"key_q44":791.66,"val_m93":false,"col_v03":{"field_s74":"basic","field_t10":"hemizygous","param_e04":"London","key_o46":null}} |
TASK repair_structured_output
SPEC
FIELD attr_l73 TYPE string REQUIRED no
FIELD prop_w66 TYPE string VALUES single|married|divorced REQUIRED yes
FIELD key_j61 TYPE string REQUIRED no
FIELD attr_p51 TYPE string REQUIRED no
FIELD val_g81 TYPE string REQUIRED no
FIELD dim_n61 TYPE string REQUIRED no
FIELD key_b41 TYPE nu... | {"prop_w66":"married","key_j61":"test","attr_p51":"2023-12-25","dim_n61":"GRCh38"} | missing_bracket | {
"type": "object",
"properties": {
"attr_l73": {
"type": "string"
},
"prop_w66": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"key_j61": {
"type": "string"
},
"attr_p51": {
"type": "string"
},
"val... | {"prop_w66":"married","key_j61":"test","attr_p51":"2023-12-25","dim_n61":"GRCh38"} | Missing closing bracket | {"prop_w66":"married","key_j61":"test","attr_p51":"2023-12-25","dim_n61":"GRCh38"} |
TASK repair_structured_output
SPEC
FIELD key_x51 TYPE integer REQUIRED yes
FIELD key_k88 TYPE boolean REQUIRED yes
FIELD prop_w01 TYPE integer REQUIRED no
BROKEN_OUTPUT
{"key_x51": 250, "prop_w01": 851} | {"key_x51":250,"key_k88":true,"prop_w01":851} | missing_required | {
"type": "object",
"properties": {
"key_x51": {
"type": "integer"
},
"key_k88": {
"type": "boolean"
},
"prop_w01": {
"type": "integer"
}
},
"required": [
"key_k88",
"key_x51"
]
} | {"key_x51": 250, "prop_w01": 851} | Required field 'key_k88' is missing | {"key_x51":250,"key_k88":true,"prop_w01":851} |
TASK repair_structured_output
SPEC
FIELD phenotype.age TYPE number REQUIRED no
FIELD phenotype.medication TYPE number REQUIRED no
FIELD phenotype.maturity_date.bed_number TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD phenotype.maturity_date.label TYPE string VALUES mode_a|mode_b REQUIRED yes
FIELD ph... | {"phenotype":{"age":389.5,"medication":481.0,"maturity_date":{"label":"mode_b","ward":877},"bed_number":"example","company":"QC-07","title":"mode_c"},"yield_pct":355.47,"batch_code":"https://data.io/v1","priority":"archived","freight_class":"confirmed","transaction_id":"level_1"} | tool_call_partial_args | {
"type": "object",
"properties": {
"phenotype": {
"type": "object",
"properties": {
"age": {
"type": "number"
},
"medication": {
"type": "number"
},
"maturity_date": {
"type": "object",
"properties": {
"bed_... | Let me check the system.
Action: check_cargo_manifest
Arguments: {"phenotype": {"age": 389.5, "medication": 481.0, "maturity_date": {"label": "mode_b", "ward": 877}, "bed_number": "example", "company": "QC-07", "title": "mode_c"}, "yield_pct": 355.47, "priority": "archived", "freight_class": "confirmed", "transaction_i... | Agent tool call missing required parameter 'batch_code' | {"phenotype":{"age":389.5,"medication":481.0,"maturity_date":{"label":"mode_b","ward":877},"bed_number":"example","company":"QC-07","title":"mode_c"},"yield_pct":355.47,"batch_code":"https://data.io/v1","priority":"archived","freight_class":"confirmed","transaction_id":"level_1"} |
TASK repair_structured_output
SPEC
FIELD feedback TYPE integer REQUIRED yes
FIELD salinity TYPE string VALUES type_a|type_b|type_c REQUIRED no
FIELD website TYPE string_uri REQUIRED yes
FIELD notes TYPE integer REQUIRED no
FIELD dissolved_oxygen TYPE null REQUIRED no
FIELD port_code TYPE null REQUIRED no
FIELD reagent... | {"feedback":736,"salinity":"type_b","website":"https://api.com/data","notes":335,"dissolved_oxygen":null,"port_code":null} | tool_call_wrong_param | {
"type": "object",
"properties": {
"feedback": {
"type": "integer"
},
"salinity": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c"
]
},
"website": {
"type": "string",
"format": "uri"
},
"notes": {
"type": "integ... | Tool: send_email
Params: {"feedback": 736, "salinity": "type_b", "notes": 335, "dissolved_oxygen": null, "port_code": null, "website_id": "https://api.com/data"} | Agent used wrong parameter name 'website_id' instead of 'website' | {"feedback":736,"salinity":"type_b","website":"https://api.com/data","notes":335,"dissolved_oxygen":null,"port_code":null} |
TASK repair_structured_output
SPEC
FIELD score TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD barcode TYPE string REQUIRED no
FIELD title TYPE number REQUIRED no
FIELD pressure_kpa TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD rating TYPE string_uri REQUIRED n... | {"score":"pending_review","title":657.03,"pressure_kpa":"closed","rating":"https://www.io/v1"} | missing_bracket | {
"type": "object",
"properties": {
"score": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"barcode": {
"type": "string"
},
"title": {
"type": "number"
},
"pressure_kpa": {
"ty... | {"score":"pending_review","title":657.03,"pressure_kpa":"closed","rating":"https://www.io/v1"} | Missing closing bracket | {"score":"pending_review","title":657.03,"pressure_kpa":"closed","rating":"https://www.io/v1"} |
TASK repair_structured_output
SPEC
FIELD col_x70 TYPE string REQUIRED yes
FIELD val_q31.field_j20 TYPE string VALUES option_a|option_b REQUIRED no
FIELD val_q31.col_s43 TYPE string REQUIRED no
FIELD val_q31.dim_u96 TYPE string REQUIRED no
FIELD val_q31.attr_j45 TYPE integer REQUIRED yes
FIELD val_q31.col_d22.field_i65... | {"col_x70":"New York","val_q31":{"field_j20":"option_a","col_s43":"Berlin","dim_u96":"REV","attr_j45":175,"key_u66":"test@test.io","attr_y23":"https://data.com/api","key_k91":"sample"},"field_x70":371,"attr_b02":false,"dim_q58":{"field_h14":"test@test.io","attr_p88":"2026-08-22T03:23:00Z","col_t65":305}} | tool_call_python_syntax | {
"type": "object",
"properties": {
"col_x70": {
"type": "string"
},
"val_q31": {
"type": "object",
"properties": {
"field_j20": {
"type": "string",
"enum": [
"option_a",
"option_b"
]
},
"col_s43": {
... | track_vessel(col_x70='New York', val_q31={'field_j20': 'option_a', 'col_s43': 'Berlin', 'dim_u96': 'REV', 'attr_j45': 175, 'key_u66': 'test@test.io', 'attr_y23': 'https://data.com/api', 'key_k91': 'sample'}, field_x70=371, attr_b02=False, dim_q58={'field_h14': 'test@test.io', 'attr_p88': '2026-08-22T03:23:00Z', 'col_t6... | Tool call uses Python syntax instead of JSON | {"col_x70":"New York","val_q31":{"field_j20":"option_a","col_s43":"Berlin","dim_u96":"REV","attr_j45":175,"key_u66":"test@test.io","attr_y23":"https://data.com/api","key_k91":"sample"},"field_x70":371,"attr_b02":false,"dim_q58":{"field_h14":"test@test.io","attr_p88":"2026-08-22T03:23:00Z","col_t65":305}} |
TASK repair_structured_output
SPEC
FIELD index TYPE number REQUIRED yes
FIELD quality_score TYPE string_date-time REQUIRED yes
FIELD start_date TYPE boolean REQUIRED no
FIELD date TYPE string VALUES admin|editor|viewer REQUIRED no
BROKEN_OUTPUT
I need to look up the information first.
Action: update_record
Arguments:... | {"index":898.26,"quality_score":"2021-01-12T17:57:00Z"} | tool_call_partial_args | {
"type": "object",
"properties": {
"index": {
"type": "number"
},
"quality_score": {
"type": "string",
"format": "date-time"
},
"start_date": {
"type": "boolean"
},
"date": {
"type": "string",
"enum": [
"admin",
"editor",
"view... | I need to look up the information first.
Action: update_record
Arguments: {"index": 898.26} | Agent tool call missing required parameter 'quality_score' | {"index":898.26,"quality_score":"2021-01-12T17:57:00Z"} |
TASK repair_structured_output
SPEC
FIELD prop_e66 TYPE string VALUES success|error|warning|info REQUIRED yes
FIELD key_p22 TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD param_y56 TYPE string_email REQUIRED yes
BROKEN_OUTPUT
{"prop_e66":"info","key_p22":"blue","param_y56":"user@test.io" | {"prop_e66":"info","key_p22":"blue","param_y56":"user@test.io"} | truncated_array | {
"type": "object",
"properties": {
"prop_e66": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"key_p22": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"... | {"prop_e66":"info","key_p22":"blue","param_y56":"user@test.io" | Unexpected end of JSON input — truncated object | {"prop_e66":"info","key_p22":"blue","param_y56":"user@test.io"} |
TASK repair_structured_output
SPEC
FIELD prop_r99 TYPE string REQUIRED no
FIELD val_f55 TYPE boolean REQUIRED no
FIELD val_z51 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
FIELD field_e94.col_e34 TYPE integer REQUIRED no
FIELD field_e94.prop_j07 TYPE string_email REQUIRED no
FIELD field_e94... | {"val_z51":"operational","field_e94":{"param_u12":{"param_y49":"type_c","prop_g44":"level_1","key_z82":null,"attr_y57":900,"col_q09":"2023-10-09T11:00:00Z","attr_a28":"Hapag-Lloyd-Express"},"field_m49":937,"key_e90":false,"val_i44":{"dim_o85":"option_d","attr_z25":948,"key_v98":"2020-04-23T13:08:00Z","val_p13":"rejecte... | invalid_enum | {
"type": "object",
"properties": {
"prop_r99": {
"type": "string"
},
"val_f55": {
"type": "boolean"
},
"val_z51": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
},
"field_e94": {
"ty... | {"val_z51": "invalid_value_723", "field_e94": {"param_u12": {"param_y49": "type_c", "prop_g44": "level_1", "key_z82": null, "attr_y57": 900, "col_q09": "2023-10-09T11:00:00Z", "attr_a28": "Hapag-Lloyd-Express"}, "field_m49": 937, "key_e90": false, "val_i44": {"dim_o85": "option_d", "attr_z25": 948, "key_v98": "2020-04-... | Field 'val_z51' has invalid enum value 'invalid_value_723', expected one of ['operational', 'degraded', 'offline', 'maintenance'] | {"val_z51":"operational","field_e94":{"param_u12":{"param_y49":"type_c","prop_g44":"level_1","key_z82":null,"attr_y57":900,"col_q09":"2023-10-09T11:00:00Z","attr_a28":"Hapag-Lloyd-Express"},"field_m49":937,"key_e90":false,"val_i44":{"dim_o85":"option_d","attr_z25":948,"key_v98":"2020-04-23T13:08:00Z","val_p13":"rejecte... |
TASK repair_structured_output
SPEC
FIELD interest_rate TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD conductivity TYPE integer REQUIRED no
FIELD lane TYPE integer REQUIRED yes
FIELD items.order_id.annotation TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD items.order_i... | {"interest_rate":"heterozygous","conductivity":432,"lane":222,"items":{"order_id":{"status":"maintenance","vital_sign":"oceanic","balance":false,"format":"returned"},"yield_pct":"Oliveira","title":{"bill_of_lading":815.99,"enabled":"homozygous","footnote":"inactive"},"footnote":918},"insurance_id":"2025-05-19T18:21:00Z... | markdown_explanation | {
"type": "object",
"properties": {
"interest_rate": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"conductivity": {
"type": "integer"
},
"lane": {
"type": "integer"
},
"items": {
"type": "object"... | Based on your request, here is the data:
```json
{"interest_rate":"heterozygous","conductivity":432,"lane":222,"items":{"order_id":{"status":"maintenance","vital_sign":"oceanic","balance":false,"format":"returned"},"yield_pct":"Oliveira","title":{"bill_of_lading":815.99,"enabled":"homozygous","footnote":"inactive"},"fo... | Output contains markdown and explanatory text around JSON | {"interest_rate":"heterozygous","conductivity":432,"lane":222,"items":{"order_id":{"status":"maintenance","vital_sign":"oceanic","balance":false,"format":"returned"},"yield_pct":"Oliveira","title":{"bill_of_lading":815.99,"enabled":"homozygous","footnote":"inactive"},"footnote":918},"insurance_id":"2025-05-19T18:21:00Z... |
TASK repair_structured_output
SPEC
FIELD duration_ms TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD visible TYPE number REQUIRED yes
FIELD active TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD voltage TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD username TYPE boolean REQUI... | {"visible":974.83,"voltage":"email","username":true,"sensor_id":null,"version":"USD"} | missing_required | {
"type": "object",
"properties": {
"duration_ms": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"visible": {
"type": "number"
},
"active": {
"type": "string",
"enum": [
"admin",
... | {"visible": 974.83, "voltage": "email", "username": true, "sensor_id": null} | Required field 'version' is missing | {"visible":974.83,"voltage":"email","username":true,"sensor_id":null,"version":"USD"} |
TASK repair_structured_output
SPEC
FIELD status_code TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD user_id TYPE string REQUIRED no
FIELD due_date TYPE string REQUIRED yes
FIELD product_id TYPE integer REQUIRED yes
FIELD latitude[].freight_class TYPE string REQUIRED no
FIELD latitude[].d... | {"user_id":"quux","due_date":"pending","product_id":528,"latitude":[{"freight_class":"chr1","description":"PASS","yield_pct":true,"brake_pressure":["small","medium","small"],"salinity":["REV","sample","example","Sao Paulo"]},{"freight_class":"Jane","description":"REV","yield_pct":false,"brake_pressure":["xl","medium","... | single_quotes | {
"type": "object",
"properties": {
"status_code": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
},
"user_id": {
"type": "string"
},
"due_date": {
"type": "string"
},
"product_id": {
... | {'user_id':'quux','due_date':'pending','product_id':528,'latitude':[{'freight_class':'chr1','description':'PASS','yield_pct':true,'brake_pressure':['small','medium','small'],'salinity':['REV','sample','example','Sao Paulo']},{'freight_class':'Jane','description':'REV','yield_pct':false,'brake_pressure':['xl','medium','... | Expecting property name enclosed in double quotes | {"user_id":"quux","due_date":"pending","product_id":528,"latitude":[{"freight_class":"chr1","description":"PASS","yield_pct":true,"brake_pressure":["small","medium","small"],"salinity":["REV","sample","example","Sao Paulo"]},{"freight_class":"Jane","description":"REV","yield_pct":false,"brake_pressure":["xl","medium","... |
TASK repair_structured_output
SPEC
FIELD phone TYPE string VALUES type_a|type_b|type_c REQUIRED yes
FIELD compound TYPE number REQUIRED yes
FIELD freight_class[] TYPE boolean REQUIRED yes
BROKEN_OUTPUT
The output is as follows:
{"phone":"type_a","compound":969.07,"freight_class":[true,true,false]} | {"phone":"type_a","compound":969.07,"freight_class":[true,true,false]} | extra_text_before | {
"type": "object",
"properties": {
"phone": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c"
]
},
"compound": {
"type": "number"
},
"freight_class": {
"type": "array",
"items": {
"type": "boolean"
}
}
},
... | The output is as follows:
{"phone":"type_a","compound":969.07,"freight_class":[true,true,false]} | Output contains non-JSON text before the object | {"phone":"type_a","compound":969.07,"freight_class":[true,true,false]} |
TASK repair_structured_output
SPEC
FIELD dim_e53 TYPE string REQUIRED no
FIELD dim_j25 TYPE string REQUIRED yes
FIELD prop_m55 TYPE string REQUIRED yes
FIELD key_w10.col_l58 TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD key_w10.param_j99 TYPE string REQUIRED yes
FIELD key_w10.val_c49.prop_y79 TYPE str... | {"dim_j25":"REV","prop_m55":"Jane","key_k28":{"key_w61":"2024-10-01T22:17:00Z","attr_i18":"baz","val_i82":{"prop_e08":"https://www.org/v1","col_n74":582,"param_f26":false,"dim_b58":"inactive","field_r17":"2021-08-26T08:08:00Z"},"key_f19":19},"dim_z32":true} | extra_text_after | {
"type": "object",
"properties": {
"dim_e53": {
"type": "string"
},
"dim_j25": {
"type": "string"
},
"prop_m55": {
"type": "string"
},
"key_w10": {
"type": "object",
"properties": {
"col_l58": {
"type": "string",
"enum": [
... | {"dim_j25":"REV","prop_m55":"Jane","key_k28":{"key_w61":"2024-10-01T22:17:00Z","attr_i18":"baz","val_i82":{"prop_e08":"https://www.org/v1","col_n74":582,"param_f26":false,"dim_b58":"inactive","field_r17":"2021-08-26T08:08:00Z"},"key_f19":19},"dim_z32":true}
This should match the schema you provided. | Output contains non-JSON text after the object | {"dim_j25":"REV","prop_m55":"Jane","key_k28":{"key_w61":"2024-10-01T22:17:00Z","attr_i18":"baz","val_i82":{"prop_e08":"https://www.org/v1","col_n74":582,"param_f26":false,"dim_b58":"inactive","field_r17":"2021-08-26T08:08:00Z"},"key_f19":19},"dim_z32":true} |
TASK repair_structured_output
SPEC
FIELD credit_score TYPE integer REQUIRED no
FIELD address TYPE number REQUIRED no
FIELD name TYPE string REQUIRED yes
FIELD amplitude.trace_id TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD amplitude.image_url TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED y... | {"credit_score":376,"address":209.18,"name":"cancelled","amplitude":{"trace_id":"delivered","image_url":"USD","decay_rate":"example","end_date":340.47},"fleet_number":"Sao Paulo"} | tool_call_bad_format | {
"type": "object",
"properties": {
"credit_score": {
"type": "integer"
},
"address": {
"type": "number"
},
"name": {
"type": "string"
},
"amplitude": {
"type": "object",
"properties": {
"trace_id": {
"type": "string",
"enum": [
... | <functioncall> call_variants
{credit_score: 376, address: 209.18, name: "cancelled", amplitude: {trace_id: "delivered", image_url: "USD", decay_rate: "example", end_date: 340.47}, fleet_number: "Sao Paulo"} | Tool call has malformed arguments — unquoted keys in function parameters | {"credit_score":376,"address":209.18,"name":"cancelled","amplitude":{"trace_id":"delivered","image_url":"USD","decay_rate":"example","end_date":340.47},"fleet_number":"Sao Paulo"} |
TASK repair_structured_output
SPEC
FIELD val_c32 TYPE string VALUES success|error|warning|info REQUIRED no
FIELD attr_e56 TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD dim_y50 TYPE string VALUES single|married|divorced REQUIRED no
FIELD dim_n21 TYPE string REQUIRED no
FIELD val_m71 TYPE string REQUIR... | {"val_c32":"success","attr_e56":"basic","dim_n21":"cancelled","val_m71":"qux","col_a31":"divorced"} | truncated_object | {
"type": "object",
"properties": {
"val_c32": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"attr_e56": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
... | {"val_c32":"success","attr_e56":"basic","dim_n21":"cancelled","val_m71":"qux","col_a31":"divorced" | Unexpected end of JSON input — truncated object | {"val_c32":"success","attr_e56":"basic","dim_n21":"cancelled","val_m71":"qux","col_a31":"divorced"} |
TASK repair_structured_output
SPEC
FIELD tax TYPE string VALUES mode_a|mode_b|mode_c REQUIRED yes
FIELD phenotype TYPE number REQUIRED no
FIELD current_draw TYPE integer REQUIRED no
FIELD loan_amount TYPE integer REQUIRED yes
FIELD options TYPE string REQUIRED yes
FIELD shift_code TYPE string VALUES email|phone|sms|pu... | {"tax":"mode_a","loan_amount":517,"options":"PASS","shift_code":"push"} | missing_required | {
"type": "object",
"properties": {
"tax": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c"
]
},
"phenotype": {
"type": "number"
},
"current_draw": {
"type": "integer"
},
"loan_amount": {
"type": "integer"
},
"... | {"tax": "mode_a", "loan_amount": 517, "shift_code": "push"} | Required field 'options' is missing | {"tax":"mode_a","loan_amount":517,"options":"PASS","shift_code":"push"} |
TASK repair_structured_output
SPEC
FIELD footnote TYPE string_email REQUIRED yes
FIELD filter_flag TYPE string REQUIRED no
FIELD nickname TYPE integer REQUIRED yes
BROKEN_OUTPUT
Based on the data, filter_flag is https://api.example.com/v1. {"footnote":"ops@example.com","filter_flag":"https://api.example.com/v1","nick... | {"footnote":"ops@example.com","filter_flag":"https://api.example.com/v1","nickname":770} | partial_structure | {
"type": "object",
"properties": {
"footnote": {
"type": "string",
"format": "email"
},
"filter_flag": {
"type": "string"
},
"nickname": {
"type": "integer"
}
},
"required": [
"footnote",
"nickname"
]
} | Based on the data, filter_flag is https://api.example.com/v1. {"footnote":"ops@example.com","filter_flag":"https://api.example.com/v1","nickname":770} | Output mixes natural language with JSON | {"footnote":"ops@example.com","filter_flag":"https://api.example.com/v1","nickname":770} |
TASK repair_structured_output
SPEC
FIELD val_r49.dim_g65 TYPE number REQUIRED yes
FIELD val_r49.col_g75 TYPE string_uri REQUIRED yes
FIELD val_r49.col_o91 TYPE null REQUIRED yes
FIELD val_u45 TYPE string REQUIRED no
FIELD attr_a03 TYPE string REQUIRED yes
FIELD dim_p59 TYPE string VALUES admin|editor|viewer REQUIRED n... | {"val_r49":{"dim_g65":242.0,"col_g75":"https://data.com/api","col_o91":null},"attr_a03":"foo","dim_p59":"admin","val_o62":381,"dim_t89":{"dim_d30":"mode_a","key_y03":null,"field_w48":[{"key_j02":"example","field_y76":652,"key_w71":"active","key_l87":"user@domain.org"},{"dim_t13":"level_2","key_j02":"world","field_y76":... | invalid_enum | {
"type": "object",
"properties": {
"val_r49": {
"type": "object",
"properties": {
"dim_g65": {
"type": "number"
},
"col_g75": {
"type": "string",
"format": "uri"
},
"col_o91": {
"type": "null"
}
},
"... | {"val_r49": {"dim_g65": 242.0, "col_g75": "https://data.com/api", "col_o91": null}, "attr_a03": "foo", "dim_p59": "invalid_option_899", "val_o62": 381, "dim_t89": {"dim_d30": "mode_a", "key_y03": null, "field_w48": [{"key_j02": "example", "field_y76": 652, "key_w71": "active", "key_l87": "user@domain.org"}, {"dim_t13":... | Field 'dim_p59' has invalid enum value 'invalid_option_899', expected one of ['admin', 'editor', 'viewer'] | {"val_r49":{"dim_g65":242.0,"col_g75":"https://data.com/api","col_o91":null},"attr_a03":"foo","dim_p59":"admin","val_o62":381,"dim_t89":{"dim_d30":"mode_a","key_y03":null,"field_w48":[{"key_j02":"example","field_y76":652,"key_w71":"active","key_l87":"user@domain.org"},{"dim_t13":"level_2","key_j02":"world","field_y76":... |
TASK repair_structured_output
SPEC
FIELD field_s78 TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED no
FIELD col_n24 TYPE integer REQUIRED no
FIELD key_o50 TYPE string REQUIRED yes
BROKEN_OUTPUT
Let me check the system.
Action: create_ticket
Result: {"field_s78": "cat_e", "key_o50": "inactive"}
Processing t... | {"field_s78":"cat_e","col_n24":895,"key_o50":"inactive"} | agent_chain | {
"type": "object",
"properties": {
"field_s78": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
"cat_e"
]
},
"col_n24": {
"type": "integer"
},
"key_o50": {
"type": "string"
}
},
"required": [
"ke... | Let me check the system.
Action: create_ticket
Result: {"field_s78": "cat_e", "key_o50": "inactive"}
Processing the request now.
Action: schedule_meeting
Result: | Agent multi-step chain with truncated tool output | {"field_s78":"cat_e","col_n24":895,"key_o50":"inactive"} |
TASK repair_structured_output
SPEC
FIELD full_name TYPE number REQUIRED yes
FIELD comments TYPE string_date-time REQUIRED no
FIELD nickname TYPE number REQUIRED yes
FIELD tags TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD filter_flag.last_name TYPE string REQUIRED yes
FIELD filter_flag.updated... | {"full_name":687.26,"comments":"2022-01-26T10:37:00Z","nickname":129.99,"tags":"delivered","filter_flag":{"last_name":"MV-Evergreen-01","payment_status":"approved","build_status":"green","version":"Johnson","format":"2025-04-10T23:09:00Z","subject":{"gene_id":"oceanic","coverage":980,"bed_number":"large","discount":tru... | single_quotes | {
"type": "object",
"properties": {
"full_name": {
"type": "number"
},
"comments": {
"type": "string",
"format": "date-time"
},
"nickname": {
"type": "number"
},
"tags": {
"type": "string",
"enum": [
"new",
"in_transit",
"delive... | {'full_name':687.26,'comments':'2022-01-26T10:37:00Z','nickname':129.99,'tags':'delivered','filter_flag':{'last_name':'MV-Evergreen-01','payment_status':'approved','build_status':'green','version':'Johnson','format':'2025-04-10T23:09:00Z','subject':{'gene_id':'oceanic','coverage':980,'bed_number':'large','discount':tru... | Expecting property name enclosed in double quotes | {"full_name":687.26,"comments":"2022-01-26T10:37:00Z","nickname":129.99,"tags":"delivered","filter_flag":{"last_name":"MV-Evergreen-01","payment_status":"approved","build_status":"green","version":"Johnson","format":"2025-04-10T23:09:00Z","subject":{"gene_id":"oceanic","coverage":980,"bed_number":"large","discount":tru... |
TASK repair_structured_output
SPEC
FIELD prop_g01 TYPE null REQUIRED no
FIELD prop_n22 TYPE integer REQUIRED no
FIELD param_o26 TYPE boolean REQUIRED no
FIELD param_e70 TYPE string REQUIRED no
FIELD attr_p79.prop_x21 TYPE string REQUIRED yes
FIELD attr_p79.attr_d53 TYPE boolean REQUIRED no
FIELD attr_p79.val_q10 TYPE ... | {"prop_g01":null,"param_e70":"https://api.example.com/v1","col_r55":527,"attr_t14":{"param_u48":"sms","field_o56":"Silva","dim_v32":{"attr_y98":true,"prop_r25":"2025-10-14T06:42:00Z","dim_v13":542,"param_z02":true,"param_l19":["resolved","resolved","open","in_progress"]}}} | tool_call_partial_args | {
"type": "object",
"properties": {
"prop_g01": {
"type": "null"
},
"prop_n22": {
"type": "integer"
},
"param_o26": {
"type": "boolean"
},
"param_e70": {
"type": "string"
},
"attr_p79": {
"type": "object",
"properties": {
"prop_x21": {
... | Let me check the system.
Action: call_variants
Arguments: {"prop_g01": null, "param_e70": "https://api.example.com/v1", "col_r55": 527} | Agent tool call missing required parameter 'attr_t14' | {"prop_g01":null,"param_e70":"https://api.example.com/v1","col_r55":527,"attr_t14":{"param_u48":"sms","field_o56":"Silva","dim_v32":{"attr_y98":true,"prop_r25":"2025-10-14T06:42:00Z","dim_v13":542,"param_z02":true,"param_l19":["resolved","resolved","open","in_progress"]}}} |
TASK repair_structured_output
SPEC
FIELD score TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD run_id TYPE boolean REQUIRED no
FIELD url TYPE string_email REQUIRED no
FIELD phone TYPE string_uri REQUIRED no
FIELD visible TYPE integer REQUIRED no
FIELD manifest_ref TYPE string REQUIRED yes
... | {"score":"synonymous","run_id":false,"url":"test@test.io","phone":"https://data.org/api","visible":95,"manifest_ref":"Johnson"} | wrong_type | {
"type": "object",
"properties": {
"score": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"run_id": {
"type": "boolean"
},
"url": {
"type": "string",
"format": "email"
},
"phone":... | {"score": "synonymous", "run_id": "\"no\"", "url": "test@test.io", "phone": "https://data.org/api", "visible": 95, "manifest_ref": "Johnson"} | Field 'run_id' must be boolean, got string | {"score":"synonymous","run_id":false,"url":"test@test.io","phone":"https://data.org/api","visible":95,"manifest_ref":"Johnson"} |
TASK repair_structured_output
SPEC
FIELD prop_r33 TYPE string VALUES cat_a|cat_b REQUIRED no
FIELD param_r96.prop_l66 TYPE string REQUIRED no
FIELD param_r96.attr_t75 TYPE string REQUIRED no
FIELD param_r96.key_v55 TYPE string REQUIRED no
FIELD param_r96.val_a14 TYPE string REQUIRED no
FIELD param_r96.key_w90.prop_t16... | {"prop_r33":"cat_b","param_r96":{"prop_l66":"active","attr_t75":"Johnson","val_a14":"Hapag-Lloyd-Express","key_w90":{"prop_t16":"option_b","prop_a55":"pro","field_e68":"published","field_s60":776},"prop_d40":408,"prop_l08":"user@domain.org"},"prop_o80":"rejected","val_x64":"https://www.com/v1","param_b22":"Sao Paulo","... | agent_chain | {
"type": "object",
"properties": {
"prop_r33": {
"type": "string",
"enum": [
"cat_a",
"cat_b"
]
},
"param_r96": {
"type": "object",
"properties": {
"prop_l66": {
"type": "string"
},
"attr_t75": {
"type": "string"
... | Let me check the system.
Action: apply_discount
Result: {"param_r96": {"prop_l66": "active", "attr_t75": "Johnson", "val_a14": "Hapag-Lloyd-Express", "key_w90": {"prop_t16": "option_b", "prop_a55": "pro", "field_e68": "published", "field_s60": 776}, "prop_d40": 408, "prop_l08": "user@domain.org"}, "prop_o80": "rejected... | Agent multi-step chain with truncated tool output | {"prop_r33":"cat_b","param_r96":{"prop_l66":"active","attr_t75":"Johnson","val_a14":"Hapag-Lloyd-Express","key_w90":{"prop_t16":"option_b","prop_a55":"pro","field_e68":"published","field_s60":776},"prop_d40":408,"prop_l08":"user@domain.org"},"prop_o80":"rejected","val_x64":"https://www.com/v1","param_b22":"Sao Paulo","... |
TASK repair_structured_output
SPEC
FIELD attr_t15 TYPE integer REQUIRED yes
FIELD key_y83 TYPE string VALUES single|married|divorced REQUIRED no
FIELD dim_u33 TYPE integer REQUIRED no
FIELD field_x68 TYPE null REQUIRED yes
BROKEN_OUTPUT
delete_item(attr_t15=546, dim_u33=946, field_x68=None) | {"attr_t15":546,"dim_u33":946,"field_x68":null} | tool_call_python_syntax | {
"type": "object",
"properties": {
"attr_t15": {
"type": "integer"
},
"key_y83": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"dim_u33": {
"type": "integer"
},
"field_x68": {
"type": "null"
}
},
"r... | delete_item(attr_t15=546, dim_u33=946, field_x68=None) | Tool call uses Python syntax instead of JSON | {"attr_t15":546,"dim_u33":946,"field_x68":null} |
TASK repair_structured_output
SPEC
FIELD dim_t03 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
FIELD key_c76 TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD param_t83 TYPE string REQUIRED no
FIELD col_m04.field_w12.param_u62 TYPE null REQUIRED no
FIELD col_m04.field_w12.field_u69 ... | {"dim_t03":"missense","key_c76":"large","param_t83":"chr1","col_m04":{"field_w12":{"param_u62":null,"field_u69":"https://data.org/v1","param_i19":475.97,"val_l44":609,"val_f13":65.46,"field_h38":150,"attr_c09":856},"col_i03":{"dim_o72":"closed","param_o99":"homozygous","dim_s41":141.12,"dim_v24":940.9,"dim_g23":true,"c... | agent_chain | {
"type": "object",
"properties": {
"dim_t03": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"key_c76": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
... | Let me check the system.
Action: send_email
Result: {"dim_t03": "missense", "key_c76": "large", "param_t83": "chr1", "col_m04": {"field_w12": {"param_u62": null, "field_u69": "https://data.org/v1", "param_i19": 475.97, "val_l44": 609, "val_f13": 65.46, "field_h38": 150, "attr_c09": 856}, "col_i03": {"dim_o72": "closed"... | Agent multi-step chain with truncated tool output | {"dim_t03":"missense","key_c76":"large","param_t83":"chr1","col_m04":{"field_w12":{"param_u62":null,"field_u69":"https://data.org/v1","param_i19":475.97,"val_l44":609,"val_f13":65.46,"field_h38":150,"attr_c09":856},"col_i03":{"dim_o72":"closed","param_o99":"homozygous","dim_s41":141.12,"dim_v24":940.9,"dim_g23":true,"c... |
TASK repair_structured_output
SPEC
FIELD col_t93.val_d83 TYPE string VALUES single|married|divorced REQUIRED no
FIELD col_t93.param_k26 TYPE string VALUES active|inactive|pending REQUIRED no
FIELD col_t93.key_u37 TYPE string VALUES single|married|divorced REQUIRED no
FIELD col_t93.dim_s27 TYPE string VALUES synonymous... | {"col_t93":{"val_d83":"divorced","dim_s27":"nonsense","col_b33":"https://example.com","prop_w94":"https://data.com/v1","key_h16":"2024-02-06T09:38:00Z"},"prop_u71":"Santos","prop_n13":"bar"} | null_required | {
"type": "object",
"properties": {
"col_t93": {
"type": "object",
"properties": {
"val_d83": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"param_k26": {
"type": "string",
... | {"col_t93": {"val_d83": "divorced", "dim_s27": "nonsense", "col_b33": "https://example.com", "prop_w94": "https://data.com/v1", "key_h16": "2024-02-06T09:38:00Z"}, "prop_u71": "Santos", "prop_n13": null} | Required field 'prop_n13' is null | {"col_t93":{"val_d83":"divorced","dim_s27":"nonsense","col_b33":"https://example.com","prop_w94":"https://data.com/v1","key_h16":"2024-02-06T09:38:00Z"},"prop_u71":"Santos","prop_n13":"bar"} |
TASK repair_structured_output
SPEC
FIELD procedure_code TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED no
FIELD catalyst TYPE integer REQUIRED no
FIELD trace_id TYPE string REQUIRED no
FIELD amount TYPE string_email REQUIRED yes
BROKEN_OUTPUT
<functioncall> transfer_call
{procedure_code: "mode_... | {"procedure_code":"mode_a","trace_id":"Silva","amount":"test@example.com"} | tool_call_bad_format | {
"type": "object",
"properties": {
"procedure_code": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
"mode_e",
"mode_f"
]
},
"catalyst": {
"type": "integer"
},
"trace_id": {
"type": "string"
... | <functioncall> transfer_call
{procedure_code: "mode_a", trace_id: "Silva", amount: "test@example.com"} | Tool call has malformed arguments — unquoted keys in function parameters | {"procedure_code":"mode_a","trace_id":"Silva","amount":"test@example.com"} |
TASK repair_structured_output
SPEC
FIELD val_r69 TYPE boolean REQUIRED yes
FIELD val_v70 TYPE boolean REQUIRED no
FIELD param_p90 TYPE boolean REQUIRED no
FIELD key_i77 TYPE string REQUIRED no
FIELD col_l17 TYPE string_uri REQUIRED yes
FIELD key_l13 TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD val_k13... | {"val_r69":true,"val_v70":true,"param_p90":false,"col_l17":"https://example.com/v1","key_l13":"high","val_k13":"2025-03-17T06:22:00Z","attr_b51":{"prop_g73":false,"dim_z05":"admin","key_g18":false,"col_v76":646}} | tool_call_partial_args | {
"type": "object",
"properties": {
"val_r69": {
"type": "boolean"
},
"val_v70": {
"type": "boolean"
},
"param_p90": {
"type": "boolean"
},
"key_i77": {
"type": "string"
},
"col_l17": {
"type": "string",
"format": "uri"
},
"key_l13": {
... | I need to look up the information first.
Action: query_port_status
Arguments: {"val_v70": true, "param_p90": false, "col_l17": "https://example.com/v1", "key_l13": "high", "val_k13": "2025-03-17T06:22:00Z", "attr_b51": {"prop_g73": false, "dim_z05": "admin", "key_g18": false, "col_v76": 646}} | Agent tool call missing required parameter 'val_r69' | {"val_r69":true,"val_v70":true,"param_p90":false,"col_l17":"https://example.com/v1","key_l13":"high","val_k13":"2025-03-17T06:22:00Z","attr_b51":{"prop_g73":false,"dim_z05":"admin","key_g18":false,"col_v76":646}} |
TASK repair_structured_output
SPEC
FIELD prop_b85 TYPE integer REQUIRED no
FIELD key_g47 TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
FIELD dim_u69 TYPE integer REQUIRED no
FIELD col_v95 TYPE integer REQUIRED yes
FIELD attr_x83.val_o69 TYPE string REQUIRED yes
FIELD attr_x83.prop_i43 TYPE integer REQ... | {"prop_b85":250,"key_g47":"reliable","col_v95":45,"attr_x83":{"val_o69":"qux","prop_i43":3,"field_h31":"type_a","dim_d20":982},"prop_r78":206,"prop_j27":"2023-12-25"} | invalid_enum | {
"type": "object",
"properties": {
"prop_b85": {
"type": "integer"
},
"key_g47": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
},
"dim_u69": {
"type": "integer"
},
"col_v95": {
"type": "integer"
},
... | {"prop_b85": 250, "key_g47": "invalid_option_169", "col_v95": 45, "attr_x83": {"val_o69": "qux", "prop_i43": 3, "field_h31": "type_a", "dim_d20": 982}, "prop_r78": 206, "prop_j27": "2023-12-25"} | Field 'key_g47' has invalid enum value 'invalid_option_169', expected one of ['reliable', 'unstable', 'intermittent'] | {"prop_b85":250,"key_g47":"reliable","col_v95":45,"attr_x83":{"val_o69":"qux","prop_i43":3,"field_h31":"type_a","dim_d20":982},"prop_r78":206,"prop_j27":"2023-12-25"} |
TASK repair_structured_output
SPEC
FIELD footnote.diagnosis_code.umi TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD footnote.diagnosis_code.manifest_ref TYPE string VALUES draft|published|archived REQUIRED no
FIELD footnote.diagnosis_code.credit_score TYPE string REQUIRED yes
FIELD footnote.diagnosis_code.ph... | {"footnote":{"enabled":"2022-12-28T06:38:00Z","created_at":"nonsense","bed_number":false,"vital_sign":"push","count":{"website":"hemizygous","bed_number":1,"amplitude":"missense","order_id":false,"current_draw":"RTG-04","section":false}},"url":753,"visible":"inactive"} | extra_text_before | {
"type": "object",
"properties": {
"footnote": {
"type": "object",
"properties": {
"diagnosis_code": {
"type": "object",
"properties": {
"umi": {
"type": "string",
"enum": [
"admin",
"editor",
... | The instrument reported:
{"footnote":{"enabled":"2022-12-28T06:38:00Z","created_at":"nonsense","bed_number":false,"vital_sign":"push","count":{"website":"hemizygous","bed_number":1,"amplitude":"missense","order_id":false,"current_draw":"RTG-04","section":false}},"url":753,"visible":"inactive"} | Output contains non-JSON text before the object | {"footnote":{"enabled":"2022-12-28T06:38:00Z","created_at":"nonsense","bed_number":false,"vital_sign":"push","count":{"website":"hemizygous","bed_number":1,"amplitude":"missense","order_id":false,"current_draw":"RTG-04","section":false}},"url":753,"visible":"inactive"} |
TASK repair_structured_output
SPEC
FIELD subject TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED yes
FIELD span_id TYPE number REQUIRED no
FIELD isotope TYPE string REQUIRED no
FIELD umi[].weight TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD umi[].title TYPE string REQUIRED yes
FIELD umi[]... | {"subject":"cat_e","span_id":9.24,"isotope":"world","umi":[{"weight":"push","title":"Maria","trace_id":737,"temp_celsius":["Maria","Sao Paulo","pending"]},{"weight":"sms","title":"Maria","trace_id":675},{"weight":"email","title":"Bob","trace_id":853,"patient_id":["confirmed","escalated","pending_review","rejected"],"te... | missing_brace | {
"type": "object",
"properties": {
"subject": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
"cat_e",
"cat_f"
]
},
"span_id": {
"type": "number"
},
"isotope": {
"type": "string"
},
"umi": {
... | {"subject":"cat_e","span_id":9.24,"isotope":"world","umi":[{"weight":"push","title":"Maria","trace_id":737,"temp_celsius":["Maria","Sao Paulo","pending"]},{"weight":"sms","title":"Maria","trace_id":675},{"weight":"email","title":"Bob","trace_id":853,"patient_id":["confirmed","escalated","pending_review","rejected"],"te... | Missing closing brace | {"subject":"cat_e","span_id":9.24,"isotope":"world","umi":[{"weight":"push","title":"Maria","trace_id":737,"temp_celsius":["Maria","Sao Paulo","pending"]},{"weight":"sms","title":"Maria","trace_id":675},{"weight":"email","title":"Bob","trace_id":853,"patient_id":["confirmed","escalated","pending_review","rejected"],"te... |
TASK repair_structured_output
SPEC
FIELD duration_ms TYPE string REQUIRED no
FIELD discount TYPE string REQUIRED yes
FIELD price TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD nickname TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
BROKEN_OUTPUT
<functioncall> call_variants
{dur... | {"duration_ms":"demo","discount":"Santos","nickname":"unstable"} | tool_call_bad_format | {
"type": "object",
"properties": {
"duration_ms": {
"type": "string"
},
"discount": {
"type": "string"
},
"price": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"nickname": {
"type": "st... | <functioncall> call_variants
{duration_ms: "demo", discount: "Santos", nickname: "unstable"} | Tool call has malformed arguments — unquoted keys in function parameters | {"duration_ms":"demo","discount":"Santos","nickname":"unstable"} |
TASK repair_structured_output
SPEC
FIELD shift_code TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED no
FIELD brake_pressure TYPE string VALUES type_a|type_b|type_c REQUIRED yes
FIELD duration_ms TYPE string VALUES type_a|type_b REQUIRED no
FIELD span_id TYPE integer REQUIRED no
FIELD ph_level TYPE string REQ... | {"shift_code":"cat_c","brake_pressure":"type_c","span_id":967,"ph_level":"world"} | trailing_comma | {
"type": "object",
"properties": {
"shift_code": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
"cat_e"
]
},
"brake_pressure": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c"
... | {"shift_code":"cat_c","brake_pressure":"type_c","span_id":967,"ph_level":"world",} | Unexpected trailing comma | {"shift_code":"cat_c","brake_pressure":"type_c","span_id":967,"ph_level":"world"} |
TASK repair_structured_output
SPEC
FIELD field_n57 TYPE string_date-time REQUIRED no
FIELD param_p73 TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD param_q95 TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED no
FIELD key_n02 TYPE integer REQUIRED yes
FIELD prop_e87 TYPE number REQU... | {"field_n57":"2020-03-12T23:10:00Z","param_p73":"email","key_n02":798,"prop_e87":329.56} | missing_required | {
"type": "object",
"properties": {
"field_n57": {
"type": "string",
"format": "date-time"
},
"param_p73": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"param_q95": {
"type": "string",
"enum": [
... | {"field_n57": "2020-03-12T23:10:00Z", "param_p73": "email", "prop_e87": 329.56} | Required field 'key_n02' is missing | {"field_n57":"2020-03-12T23:10:00Z","param_p73":"email","key_n02":798,"prop_e87":329.56} |
TASK repair_structured_output
SPEC
FIELD col_r04 TYPE integer REQUIRED yes
FIELD col_m87 TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD prop_f97[] TYPE boolean REQUIRED yes
BROKEN_OUTPUT
The instrument reported:
```json
{"col_r04":295,"col_m87":"medium","prop_f97":[true,true]}
```
Data logged successfull... | {"col_r04":295,"col_m87":"medium","prop_f97":[true,true]} | markdown_explanation | {
"type": "object",
"properties": {
"col_r04": {
"type": "integer"
},
"col_m87": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
},
"prop_f97": {
"type": "array",
"items": {
"type": "boolean"
}
... | The instrument reported:
```json
{"col_r04":295,"col_m87":"medium","prop_f97":[true,true]}
```
Data logged successfully. | Output contains markdown and explanatory text around JSON | {"col_r04":295,"col_m87":"medium","prop_f97":[true,true]} |
TASK repair_structured_output
SPEC
FIELD torque_output TYPE string VALUES option_a|option_b REQUIRED yes
FIELD deploy_target.coverage TYPE string REQUIRED no
FIELD deploy_target.build_status TYPE string VALUES option_a|option_b REQUIRED no
FIELD deploy_target.title TYPE string REQUIRED yes
FIELD deploy_target.state TY... | {"torque_output":"option_b","deploy_target":{"coverage":"PASS","build_status":"option_b","title":"chr1","state":905}} | missing_bracket | {
"type": "object",
"properties": {
"torque_output": {
"type": "string",
"enum": [
"option_a",
"option_b"
]
},
"deploy_target": {
"type": "object",
"properties": {
"coverage": {
"type": "string"
},
"build_status": {
... | {"torque_output":"option_b","deploy_target":{"coverage":"PASS","build_status":"option_b","title":"chr1","state":905}} | Missing closing bracket | {"torque_output":"option_b","deploy_target":{"coverage":"PASS","build_status":"option_b","title":"chr1","state":905}} |
TASK repair_structured_output
SPEC
FIELD status TYPE integer REQUIRED no
FIELD chromosome TYPE string VALUES option_a|option_b REQUIRED no
FIELD branch TYPE number REQUIRED no
FIELD enabled TYPE number REQUIRED no
FIELD url.organism.items TYPE number REQUIRED yes
FIELD url.organism.run_id TYPE integer REQUIRED yes
FIE... | {"status":884,"branch":943.93,"enabled":38.51,"url":{"organism":{"items":904.43,"run_id":632,"status_code":"cat_c","patient_id":"level_1"},"updated_at":485,"full_name":"inactive","verified":{"tax":"intermittent","score":"option_b","visible":"underway","zip_code":true}}} | tool_call_wrong_param | {
"type": "object",
"properties": {
"status": {
"type": "integer"
},
"chromosome": {
"type": "string",
"enum": [
"option_a",
"option_b"
]
},
"branch": {
"type": "number"
},
"enabled": {
"type": "number"
},
"url": {
"type":... | Tool: check_availability
Params: {"status": 884, "branch": 943.93, "enabled": 38.51, "url": {"organism": {"items": 904.43, "run_id": 632, "status_code": "cat_c", "patient_id": "level_1"}, "updated_at": 485, "full_name": "inactive", "verified": {"tax": "intermittent", "score": "option_b", "visible": "underway", "zip_cod... | Agent used wrong parameter name 'chromosome_id' instead of 'chromosome' | {"status":884,"branch":943.93,"enabled":38.51,"url":{"organism":{"items":904.43,"run_id":632,"status_code":"cat_c","patient_id":"level_1"},"updated_at":485,"full_name":"inactive","verified":{"tax":"intermittent","score":"option_b","visible":"underway","zip_code":true}}} |
TASK repair_structured_output
SPEC
FIELD state TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD ph_level TYPE string VALUES option_a|option_b REQUIRED no
FIELD amount TYPE number REQUIRED yes
FIELD dosage TYPE integer REQUIRED no
FIELD quantity TYPE string REQUIRED no
FIELD payment_status TYPE str... | {"ph_level":"option_b","amount":989.77,"dosage":928,"payment_status":"ops@test.io"} | truncated_array | {
"type": "object",
"properties": {
"state": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"ph_level": {
"type": "string",
"enum": [
"option_a",
"option_b"
]
},
"amount": {
... | {"ph_level":"option_b","amount":989.77,"dosage":928,"payment_status":"ops@test.io" | Unexpected end of JSON input — truncated object | {"ph_level":"option_b","amount":989.77,"dosage":928,"payment_status":"ops@test.io"} |
TASK repair_structured_output
SPEC
FIELD subject TYPE number REQUIRED no
FIELD payment_status TYPE string REQUIRED yes
FIELD filter_flag TYPE number REQUIRED yes
FIELD score[] TYPE string REQUIRED no
BROKEN_OUTPUT
Breaking down the requirements:
- Must include all required fields
- Types must match the schema
- Value... | {"subject":79.76,"payment_status":"Santos","filter_flag":440.02,"score":["chr1"]} | thought_process | {
"type": "object",
"properties": {
"subject": {
"type": "number"
},
"payment_status": {
"type": "string"
},
"filter_flag": {
"type": "number"
},
"score": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"payment_... | Breaking down the requirements:
- Must include all required fields
- Types must match the schema
- Values should be realistic
{"subject":79.76,"payment_status":"Santos","filter_flag":440.02,"score":["chr1"]} | Output contains chain-of-thought reasoning before JSON | {"subject":79.76,"payment_status":"Santos","filter_flag":440.02,"score":["chr1"]} |
TASK repair_structured_output
SPEC
FIELD start_date TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD bed_number TYPE string REQUIRED no
FIELD half_life TYPE string VALUES single|married|divorced REQUIRED no
FIELD vessel_name TYPE null REQUIRED no
FIELD medication[] TYPE string REQUIRED... | {"start_date":"pending_review","half_life":"divorced"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"start_date": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"bed_number": {
"type": "string"
},
"half_life": {
"type": "string",
"enum": [
"... | get_account(start_date='pending_review', half_life='divorced') | Tool call uses Python syntax instead of JSON | {"start_date":"pending_review","half_life":"divorced"} |
TASK repair_structured_output
SPEC
FIELD dim_i58 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
FIELD key_e53 TYPE string REQUIRED no
FIELD col_l64 TYPE null REQUIRED no
FIELD field_e48 TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD attr_g06 TYPE string VALUES active|inactive|pendi... | {"dim_i58":"missense","key_e53":"Jane","col_l64":null,"field_e48":"medium","attr_g06":"inactive","field_y91":"2021-12-04T07:43:00Z","dim_z17":"type_b"} | extra_text_before | {
"type": "object",
"properties": {
"dim_i58": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"key_e53": {
"type": "string"
},
"col_l64": {
"type": "null"
},
"field_e48": {
"type": ... | I've generated the following JSON:
{"dim_i58":"missense","key_e53":"Jane","col_l64":null,"field_e48":"medium","attr_g06":"inactive","field_y91":"2021-12-04T07:43:00Z","dim_z17":"type_b"} | Output contains non-JSON text before the object | {"dim_i58":"missense","key_e53":"Jane","col_l64":null,"field_e48":"medium","attr_g06":"inactive","field_y91":"2021-12-04T07:43:00Z","dim_z17":"type_b"} |
TASK repair_structured_output
SPEC
FIELD sensor_id.values TYPE integer REQUIRED no
FIELD sensor_id.features TYPE string REQUIRED yes
FIELD sensor_id.voltage TYPE string VALUES active|inactive|pending REQUIRED no
FIELD sensor_id.throttle_pos TYPE string REQUIRED no
FIELD sensor_id.frequency_hz TYPE string REQUIRED no
F... | {"sensor_id":{"values":477,"features":"cancelled","voltage":"active","throttle_pos":"Diana","frequency_hz":"Tokyo","level":"chrX","insurance_id":"level_2"},"department":779.45,"branch":776,"umi":{"count":600.33,"user_id":"test","department":"This is a test value."},"updated_at":"FWD","first_name":"admin@domain.org"} | markdown_explanation | {
"type": "object",
"properties": {
"sensor_id": {
"type": "object",
"properties": {
"values": {
"type": "integer"
},
"features": {
"type": "string"
},
"voltage": {
"type": "string",
"enum": [
"active",
... | Here's the structured output:
```json
{"sensor_id":{"values":477,"features":"cancelled","voltage":"active","throttle_pos":"Diana","frequency_hz":"Tokyo","level":"chrX","insurance_id":"level_2"},"department":779.45,"branch":776,"umi":{"count":600.33,"user_id":"test","department":"This is a test value."},"updated_at":"FW... | Output contains markdown and explanatory text around JSON | {"sensor_id":{"values":477,"features":"cancelled","voltage":"active","throttle_pos":"Diana","frequency_hz":"Tokyo","level":"chrX","insurance_id":"level_2"},"department":779.45,"branch":776,"umi":{"count":600.33,"user_id":"test","department":"This is a test value."},"updated_at":"FWD","first_name":"admin@domain.org"} |
TASK repair_structured_output
SPEC
FIELD country TYPE string REQUIRED yes
FIELD account_id TYPE string REQUIRED no
FIELD bed_number TYPE boolean REQUIRED no
FIELD branch TYPE integer REQUIRED no
FIELD procedure_code TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD image_url TYPE string REQUIRED no
FIELD curr... | {"country":"test@example.com","account_id":"demo","bed_number":true,"branch":995,"image_url":"active","currency":"https://example.com/v1","price":80} | single_quotes | {
"type": "object",
"properties": {
"country": {
"type": "string"
},
"account_id": {
"type": "string"
},
"bed_number": {
"type": "boolean"
},
"branch": {
"type": "integer"
},
"procedure_code": {
"type": "string",
"enum": [
"small",
... | {'country':'test@example.com','account_id':'demo','bed_number':true,'branch':995,'image_url':'active','currency':'https://example.com/v1','price':80} | Expecting property name enclosed in double quotes | {"country":"test@example.com","account_id":"demo","bed_number":true,"branch":995,"image_url":"active","currency":"https://example.com/v1","price":80} |
TASK repair_structured_output
SPEC
FIELD options TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED no
FIELD paragraph TYPE string_email REQUIRED no
FIELD half_life TYPE string REQUIRED no
FIELD credit_score TYPE string REQUIRED yes
BROKEN_OUTPUT
Based on your request, here is the data:
{"opt... | {"options":"level_3","credit_score":"approved"} | extra_text_before | {
"type": "object",
"properties": {
"options": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"level_5",
"level_6"
]
},
"paragraph": {
"type": "string",
"format": "email"
},
"half_life": {
... | Based on your request, here is the data:
{"options":"level_3","credit_score":"approved"} | Output contains non-JSON text before the object | {"options":"level_3","credit_score":"approved"} |
TASK repair_structured_output
SPEC
FIELD prop_f89 TYPE string REQUIRED yes
FIELD prop_m32.dim_m10 TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD prop_m32.val_r53 TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD prop_m32.field_g61 TYPE integer REQUIRED no
FIELD prop_m32.val_j12 TYP... | {"prop_f89":"Silva","prop_m32":{"dim_m10":"pending","val_r53":"returned","field_g61":793,"val_j12":"Smith","prop_i62":663},"field_s86":{"val_h37":"hemizygous","prop_o40":"baz","val_p88":"A short description.","dim_d42":"intermittent","prop_w55":474},"key_y80":true} | boolean_as_string | {
"type": "object",
"properties": {
"prop_f89": {
"type": "string"
},
"prop_m32": {
"type": "object",
"properties": {
"dim_m10": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
},
... | {"prop_f89": "Silva", "prop_m32": {"dim_m10": "pending", "val_r53": "returned", "field_g61": 793, "val_j12": "Smith", "prop_i62": 663}, "field_s86": {"val_h37": "hemizygous", "prop_o40": "baz", "val_p88": "A short description.", "dim_d42": "intermittent", "prop_w55": 474}, "key_y80": "true"} | Field 'key_y80' must be boolean, got string | {"prop_f89":"Silva","prop_m32":{"dim_m10":"pending","val_r53":"returned","field_g61":793,"val_j12":"Smith","prop_i62":663},"field_s86":{"val_h37":"hemizygous","prop_o40":"baz","val_p88":"A short description.","dim_d42":"intermittent","prop_w55":474},"key_y80":true} |
TASK repair_structured_output
SPEC
FIELD param_x24 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD col_c91 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED no
FIELD val_n10 TYPE integer REQUIRED no
FIELD field_l41 TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED ye... | {"param_x24":"homozygous","col_c91":"mode_c","val_n10":39,"field_l41":"cat_d","param_s56":899.05} | tool_call_wrong_param | {
"type": "object",
"properties": {
"param_x24": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"col_c91": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
"m... | Tool: run_diagnostics
Params: {"param_x24": "homozygous", "col_c91": "mode_c", "field_l41": "cat_d", "param_s56": 899.05, "val_n10_id": 39} | Agent used wrong parameter name 'val_n10_id' instead of 'val_n10' | {"param_x24":"homozygous","col_c91":"mode_c","val_n10":39,"field_l41":"cat_d","param_s56":899.05} |
TASK repair_structured_output
SPEC
FIELD dim_w96 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED no
FIELD param_n17 TYPE string_date-time REQUIRED yes
FIELD col_b09[].param_u22 TYPE boolean REQUIRED no
FIELD col_b09[].key_t60 TYPE integer REQUIRED no
FIELD col_b09[].col_b86 TYPE string REQUIRED n... | {"dim_w96":"mode_b","param_n17":"2024-10-10T10:18:00Z","col_b09":[{"val_m78":"REV","dim_u31":"qux","param_k68":"Oliveira","key_n73":"coastal"},{"param_u22":true,"key_t60":561,"col_b86":"Bob","dim_u31":"Luis","param_k68":"Maria","key_n73":"coastal"},{"param_u22":true,"col_b86":"Santos","dim_u31":"approved","param_k68":"... | trailing_comma | {
"type": "object",
"properties": {
"dim_w96": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
"mode_e",
"mode_f"
]
},
"param_n17": {
"type": "string",
"format": "date-time"
},
"col_b09": {
... | {"dim_w96":"mode_b","param_n17":"2024-10-10T10:18:00Z","col_b09":[{"val_m78":"REV","dim_u31":"qux","param_k68":"Oliveira","key_n73":"coastal",},{"param_u22":true,"key_t60":561,"col_b86":"Bob","dim_u31":"Luis","param_k68":"Maria","key_n73":"coastal"},{"param_u22":true,"col_b86":"Santos","dim_u31":"approved","param_k68":... | Unexpected trailing comma | {"dim_w96":"mode_b","param_n17":"2024-10-10T10:18:00Z","col_b09":[{"val_m78":"REV","dim_u31":"qux","param_k68":"Oliveira","key_n73":"coastal"},{"param_u22":true,"key_t60":561,"col_b86":"Bob","dim_u31":"Luis","param_k68":"Maria","key_n73":"coastal"},{"param_u22":true,"col_b86":"Santos","dim_u31":"approved","param_k68":"... |
TASK repair_structured_output
SPEC
FIELD discount TYPE number REQUIRED no
FIELD bearing TYPE number REQUIRED yes
FIELD full_name[] TYPE null REQUIRED no
FIELD product_id[].company TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
FIELD product_id[].tax TYPE string VALUES homozygous|heterozygous|... | {"bearing":572.31,"product_id":[{"company":"maintenance","tax":"heterozygous","hazmat_code":"Smith","enabled":"New York","frequency_hz":[881,437,993]},{"company":"degraded","tax":"heterozygous","hazmat_code":"user@domain.com","enabled":"hello","frequency_hz":[457,875,922]},{"company":"offline","tax":"hemizygous","hazma... | tool_call_partial_args | {
"type": "object",
"properties": {
"discount": {
"type": "number"
},
"bearing": {
"type": "number"
},
"full_name": {
"type": "array",
"items": {
"type": "null"
}
},
"product_id": {
"type": "array",
"items": {
"type": "object",
... | I need to look up the information first.
Action: read_sensor_array
Arguments: {"bearing": 572.31} | Agent tool call missing required parameter 'product_id' | {"bearing":572.31,"product_id":[{"company":"maintenance","tax":"heterozygous","hazmat_code":"Smith","enabled":"New York","frequency_hz":[881,437,993]},{"company":"degraded","tax":"heterozygous","hazmat_code":"user@domain.com","enabled":"hello","frequency_hz":[457,875,922]},{"company":"offline","tax":"hemizygous","hazma... |
TASK repair_structured_output
SPEC
FIELD val_x72 TYPE integer REQUIRED yes
FIELD field_n87 TYPE boolean REQUIRED yes
FIELD val_x06 TYPE string_email REQUIRED no
FIELD field_g19.key_h79 TYPE integer REQUIRED yes
FIELD field_g19.col_w30 TYPE string VALUES single|married|divorced REQUIRED no
FIELD field_g19.prop_b21 TYPE... | {"val_x72":988,"field_n87":false,"val_x06":"info@test.io","field_g19":{"key_h79":73,"prop_b21":"closed","col_x43":315},"attr_s72":"Berlin"} | truncated_array | {
"type": "object",
"properties": {
"val_x72": {
"type": "integer"
},
"field_n87": {
"type": "boolean"
},
"val_x06": {
"type": "string",
"format": "email"
},
"field_g19": {
"type": "object",
"properties": {
"key_h79": {
"type": "integ... | {"val_x72":988,"field_n87":false,"val_x06":"info@test.io","field_g19":{"key_h79":73,"prop_b21":"closed","col_x43":315},"attr_s72":"Berlin" | Unexpected end of JSON input — truncated object | {"val_x72":988,"field_n87":false,"val_x06":"info@test.io","field_g19":{"key_h79":73,"prop_b21":"closed","col_x43":315},"attr_s72":"Berlin"} |
TASK repair_structured_output
SPEC
FIELD count.credit_score TYPE boolean REQUIRED no
FIELD count.velocity TYPE integer REQUIRED no
FIELD count.humidity_pct TYPE integer REQUIRED yes
FIELD count.procedure_code TYPE number REQUIRED no
FIELD count.city.current_draw TYPE string VALUES berthed|anchored|underway|moored REQU... | {"department":855.41,"total":null,"insurance_id":"world","lab_result":"example","website":"approved"} | extra_field | {
"type": "object",
"properties": {
"count": {
"type": "object",
"properties": {
"credit_score": {
"type": "boolean"
},
"velocity": {
"type": "integer"
},
"humidity_pct": {
"type": "integer"
},
"procedure_code": {
... | {"department": 855.41, "total": null, "insurance_id": "world", "lab_result": "example", "website": "approved", "extra_data_6181": 42} | Unknown field 'extra_data_6181' not defined in schema | {"department":855.41,"total":null,"insurance_id":"world","lab_result":"example","website":"approved"} |
TASK repair_structured_output
SPEC
FIELD position.city TYPE string_date-time REQUIRED no
FIELD position.longitude TYPE number REQUIRED no
FIELD position.tax TYPE integer REQUIRED yes
FIELD position.strand TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
FIELD address TYPE null REQUIRED no
FIELD... | {"position":{"city":"2022-02-24T22:29:00Z","longitude":580.81,"tax":531,"strand":"offline"},"address":null,"email":191,"invoice_id":"pending","timezone":"example"} | partial_structure | {
"type": "object",
"properties": {
"position": {
"type": "object",
"properties": {
"city": {
"type": "string",
"format": "date-time"
},
"longitude": {
"type": "number"
},
"tax": {
"type": "integer"
},
"s... | Based on the data, timezone is example. {"position":{"city":"2022-02-24T22:29:00Z","longitude":580.81,"tax":531,"strand":"offline"},"address":null,"email":191,"invoice_id":"pending","timezone":"example"} | Output mixes natural language with JSON | {"position":{"city":"2022-02-24T22:29:00Z","longitude":580.81,"tax":531,"strand":"offline"},"address":null,"email":191,"invoice_id":"pending","timezone":"example"} |
TASK repair_structured_output
SPEC
FIELD feedback TYPE integer REQUIRED yes
FIELD description TYPE string VALUES type_a|type_b|type_c REQUIRED no
FIELD torque_output[] TYPE string REQUIRED yes
BROKEN_OUTPUT
{"feedback": "88ms", "description": "type_b", "torque_output": ["FWD", "QC-07"]} | {"feedback":88,"description":"type_b","torque_output":["FWD","QC-07"]} | number_with_unit | {
"type": "object",
"properties": {
"feedback": {
"type": "integer"
},
"description": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c"
]
},
"torque_output": {
"type": "array",
"items": {
"type": "string"
}
}
... | {"feedback": "88ms", "description": "type_b", "torque_output": ["FWD", "QC-07"]} | Field 'feedback' must be number, got string with unit | {"feedback":88,"description":"type_b","torque_output":["FWD","QC-07"]} |
TASK repair_structured_output
SPEC
FIELD gene_id TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD aligned_pct TYPE integer REQUIRED no
FIELD fleet_number TYPE number REQUIRED no
FIELD enabled TYPE integer REQUIRED no
FIELD visible TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD state TYPE n... | {"gene_id":"JPY","aligned_pct":873,"enabled":479,"visible":"intermittent","state":91.03,"velocity":true} | unquoted_keys | {
"type": "object",
"properties": {
"gene_id": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"aligned_pct": {
"type": "integer"
},
"fleet_number": {
"type": "number"
},
"enabled": {
"type":... | {gene_id:"JPY",aligned_pct:873,enabled:479,visible:"intermittent",state:91.03,velocity:true} | Expecting property name enclosed in double quotes | {"gene_id":"JPY","aligned_pct":873,"enabled":479,"visible":"intermittent","state":91.03,"velocity":true} |
TASK repair_structured_output
SPEC
FIELD bearing TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD cargo_type TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED no
FIELD crew_id TYPE string REQUIRED no
FIELD throttle_pos TYPE string VALUES cat_a|cat_b|cat_c REQUIRED yes
FIELD name TYP... | {"bearing":"heterozygous","cargo_type":"mode_c","throttle_pos":"cat_c","version":785} | tool_call_bad_format | {
"type": "object",
"properties": {
"bearing": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"cargo_type": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
"... | <functioncall> annotate_mutation
{bearing: "heterozygous", cargo_type: "mode_c", throttle_pos: "cat_c", version: 785} | Tool call has malformed arguments — unquoted keys in function parameters | {"bearing":"heterozygous","cargo_type":"mode_c","throttle_pos":"cat_c","version":785} |
TASK repair_structured_output
SPEC
FIELD attr_z68 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD prop_e42 TYPE string_uri REQUIRED yes
FIELD key_j80 TYPE boolean REQUIRED yes
FIELD attr_x08 TYPE number REQUIRED yes
BROKEN_OUTPUT
<functioncall> read_sensor_array
{attr_z68: "inland", prop_e42: "htt... | {"attr_z68":"inland","prop_e42":"https://www.org/data","key_j80":true,"attr_x08":301.08} | tool_call_bad_format | {
"type": "object",
"properties": {
"attr_z68": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
},
"prop_e42": {
"type": "string",
"format": "uri"
},
"key_j80": {
"type": "boolean"
},
"attr_x08":... | <functioncall> read_sensor_array
{attr_z68: "inland", prop_e42: "https://www.org/data", key_j80: true, attr_x08: 301.08} | Tool call has malformed arguments — unquoted keys in function parameters | {"attr_z68":"inland","prop_e42":"https://www.org/data","key_j80":true,"attr_x08":301.08} |
TASK repair_structured_output
SPEC
FIELD prop_m03 TYPE integer REQUIRED no
FIELD val_o89 TYPE boolean REQUIRED yes
FIELD key_c99 TYPE number REQUIRED no
FIELD field_x12.val_k36 TYPE null REQUIRED no
FIELD field_x12.dim_y63 TYPE string REQUIRED no
FIELD field_x12.prop_o82 TYPE boolean REQUIRED no
FIELD field_x12.prop_v... | {"prop_m03":26,"val_o89":true,"field_x12":{"dim_y63":"user@domain.com","prop_o82":false,"param_p55":"chr1","dim_x15":528.56,"key_v25":187,"prop_d49":null}} | unquoted_keys | {
"type": "object",
"properties": {
"prop_m03": {
"type": "integer"
},
"val_o89": {
"type": "boolean"
},
"key_c99": {
"type": "number"
},
"field_x12": {
"type": "object",
"properties": {
"val_k36": {
"type": "null"
},
"dim_y... | {prop_m03:26,val_o89:true,field_x12:{dim_y63:"user@domain.com",prop_o82:false,param_p55:"chr1",dim_x15:528.56,key_v25:187,prop_d49:null}} | Expecting property name enclosed in double quotes | {"prop_m03":26,"val_o89":true,"field_x12":{"dim_y63":"user@domain.com","prop_o82":false,"param_p55":"chr1","dim_x15":528.56,"key_v25":187,"prop_d49":null}} |
TASK repair_structured_output
SPEC
FIELD prop_a67 TYPE string_email REQUIRED no
FIELD key_f69 TYPE string REQUIRED no
FIELD val_n83 TYPE string VALUES type_a|type_b REQUIRED no
FIELD key_v00 TYPE string REQUIRED yes
FIELD dim_h79 TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED yes
FIELD val_m82 TYP... | {"prop_a67":"info@test.io","key_f69":"qux","val_n83":"type_a","key_v00":"New York","dim_h79":"level_1","val_m82":"type_d"} | markdown_fences | {
"type": "object",
"properties": {
"prop_a67": {
"type": "string",
"format": "email"
},
"key_f69": {
"type": "string"
},
"val_n83": {
"type": "string",
"enum": [
"type_a",
"type_b"
]
},
"key_v00": {
"type": "string"
},
"d... | ```json
{"prop_a67":"info@test.io","key_f69":"qux","val_n83":"type_a","key_v00":"New York","dim_h79":"level_1","val_m82":"type_d"}
``` | Output contains markdown code fences | {"prop_a67":"info@test.io","key_f69":"qux","val_n83":"type_a","key_v00":"New York","dim_h79":"level_1","val_m82":"type_d"} |
TASK repair_structured_output
SPEC
FIELD prop_k44 TYPE string VALUES draft|published|archived REQUIRED yes
FIELD field_w55 TYPE integer REQUIRED yes
FIELD attr_a58 TYPE string REQUIRED yes
FIELD attr_c09.val_t45 TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD attr_c09.val_l52 TYPE boolean REQUIR... | {"prop_k44":"published","field_w55":972,"attr_a58":"RTG-04"} | single_quotes | {
"type": "object",
"properties": {
"prop_k44": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"field_w55": {
"type": "integer"
},
"attr_a58": {
"type": "string"
},
"attr_c09": {
"type": "object",
"pro... | {'prop_k44':'published','field_w55':972,'attr_a58':'RTG-04'} | Expecting property name enclosed in double quotes | {"prop_k44":"published","field_w55":972,"attr_a58":"RTG-04"} |
TASK repair_structured_output
SPEC
FIELD size TYPE string REQUIRED yes
FIELD trace_id TYPE integer REQUIRED no
FIELD first_name TYPE string REQUIRED yes
FIELD fleet_number TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED yes
FIELD full_name TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRE... | {"size":"test@example.com","trace_id":221,"first_name":"cancelled","fleet_number":"mode_b","full_name":"option_e"} | tool_call_bad_format | {
"type": "object",
"properties": {
"size": {
"type": "string"
},
"trace_id": {
"type": "integer"
},
"first_name": {
"type": "string"
},
"fleet_number": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d"
... | <functioncall> calibrate_instrument
{size: "test@example.com", trace_id: 221, first_name: "cancelled", fleet_number: "mode_b", full_name: "option_e"} | Tool call has malformed arguments — unquoted keys in function parameters | {"size":"test@example.com","trace_id":221,"first_name":"cancelled","fleet_number":"mode_b","full_name":"option_e"} |
TASK repair_structured_output
SPEC
FIELD tags TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD department.status_code TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD department.allele TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD department.amplitud... | {"tags":"new","department":{"status_code":"homozygous","amplitude":"2024-09-09T03:26:00Z","ph_level":487.83,"ward":"completed"},"build_status":"2024-06-30","discount":"hemizygous"} | truncated_object | {
"type": "object",
"properties": {
"tags": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"department": {
"type": "object",
"properties": {
"status_code": {
"type": "string",
"enum... | {"tags":"new","department":{"status_code":"homozygous","amplitude":"2024-09-09T03:26:00Z","ph_level":487.83,"ward":"completed"},"build_status":"2024-06-30","discount":"hemizygous" | Unexpected end of JSON input — truncated object | {"tags":"new","department":{"status_code":"homozygous","amplitude":"2024-09-09T03:26:00Z","ph_level":487.83,"ward":"completed"},"build_status":"2024-06-30","discount":"hemizygous"} |
TASK repair_structured_output
SPEC
FIELD port_code TYPE string REQUIRED yes
FIELD trace_id TYPE number REQUIRED yes
FIELD insurance_id TYPE number REQUIRED no
FIELD index TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED yes
FIELD end_date TYPE string REQUIRED yes
FIELD user_id TYPE string REQUIRED no
BR... | {"port_code":"sample","trace_id":515.34,"insurance_id":298.0,"index":"type_d","end_date":"Luis"} | agent_chain | {
"type": "object",
"properties": {
"port_code": {
"type": "string"
},
"trace_id": {
"type": "number"
},
"insurance_id": {
"type": "number"
},
"index": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d",
... | Let me check the system.
Action: validate_address
Result: {"port_code": "sample", "trace_id": 515.34, "insurance_id": 298.0, "index": "type_d"}
Processing the request now.
Action: fetch_lab_result
Result: | Agent multi-step chain with truncated tool output | {"port_code":"sample","trace_id":515.34,"insurance_id":298.0,"index":"type_d","end_date":"Luis"} |
TASK repair_structured_output
SPEC
FIELD col_k72 TYPE integer REQUIRED yes
FIELD prop_j29.attr_r19 TYPE integer REQUIRED no
FIELD prop_j29.prop_e43 TYPE string REQUIRED yes
FIELD prop_j29.field_f65 TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED no
FIELD prop_j29.field_x51[] TYPE number REQ... | {"col_k72":230,"prop_j29":{"prop_e43":"John","field_f65":"level_4","field_x51":[12.68,831.87,269.37],"col_y27":[394.34]},"col_l99":9,"col_p03":869,"prop_x88":"Jane","key_b00":223.27} | wrong_type | {
"type": "object",
"properties": {
"col_k72": {
"type": "integer"
},
"prop_j29": {
"type": "object",
"properties": {
"attr_r19": {
"type": "integer"
},
"prop_e43": {
"type": "string"
},
"field_f65": {
"type": "strin... | {"col_k72": "\"230\"", "prop_j29": {"prop_e43": "John", "field_f65": "level_4", "field_x51": [12.68, 831.87, 269.37], "col_y27": [394.34]}, "col_l99": 9, "col_p03": 869, "prop_x88": "Jane", "key_b00": 223.27} | Field 'col_k72' must be integer, got string | {"col_k72":230,"prop_j29":{"prop_e43":"John","field_f65":"level_4","field_x51":[12.68,831.87,269.37],"col_y27":[394.34]},"col_l99":9,"col_p03":869,"prop_x88":"Jane","key_b00":223.27} |
TASK repair_structured_output
SPEC
FIELD state TYPE integer REQUIRED no
FIELD umi TYPE string REQUIRED no
FIELD repository TYPE number REQUIRED no
FIELD medication TYPE string_uri REQUIRED yes
FIELD catalyst TYPE string REQUIRED no
FIELD wavelength TYPE number REQUIRED no
BROKEN_OUTPUT
<functioncall> read_sensor_arra... | {"state":907,"medication":"https://api.org/data","catalyst":"approved","wavelength":173.55} | tool_call_bad_format | {
"type": "object",
"properties": {
"state": {
"type": "integer"
},
"umi": {
"type": "string"
},
"repository": {
"type": "number"
},
"medication": {
"type": "string",
"format": "uri"
},
"catalyst": {
"type": "string"
},
"wavelength": {
... | <functioncall> read_sensor_array
{state: 907, medication: "https://api.org/data", catalyst: "approved", wavelength: 173.55} | Tool call has malformed arguments — unquoted keys in function parameters | {"state":907,"medication":"https://api.org/data","catalyst":"approved","wavelength":173.55} |
TASK repair_structured_output
SPEC
FIELD price TYPE boolean REQUIRED yes
FIELD pressure_kpa TYPE string_date-time REQUIRED no
FIELD conductivity TYPE integer REQUIRED yes
FIELD color TYPE integer REQUIRED yes
BROKEN_OUTPUT
Tool: check_availability
Params: {"price": false, "color": 456, "conductivity_new": 24} | {"price":false,"conductivity":24,"color":456} | tool_call_wrong_param | {
"type": "object",
"properties": {
"price": {
"type": "boolean"
},
"pressure_kpa": {
"type": "string",
"format": "date-time"
},
"conductivity": {
"type": "integer"
},
"color": {
"type": "integer"
}
},
"required": [
"conductivity",
"price",
... | Tool: check_availability
Params: {"price": false, "color": 456, "conductivity_new": 24} | Agent used wrong parameter name 'conductivity_new' instead of 'conductivity' | {"price":false,"conductivity":24,"color":456} |
TASK repair_structured_output
SPEC
FIELD phenotype TYPE string REQUIRED yes
FIELD allele TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD subject.tile TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD subject.url TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes
F... | {"phenotype":"Oliveira","allele":"BRL","subject":{"url":"moored","city":"moored","weight":"Diana","phone":522}} | tool_call_text_mix | {
"type": "object",
"properties": {
"phenotype": {
"type": "string"
},
"allele": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"subject": {
"type": "object",
"properties": {
"tile": {
... | I need to look up the information first.
<tool_call name="get_account">
{"phenotype":"Oliveira","allele":"BRL","subject":{"url":"moored","city":"moored","weight":"Diana","phone":522}}
</tool_call.
Operation completed. | Agent response mixes reasoning text with tool call | {"phenotype":"Oliveira","allele":"BRL","subject":{"url":"moored","city":"moored","weight":"Diana","phone":522}} |
TASK repair_structured_output
SPEC
FIELD subject TYPE number REQUIRED no
FIELD active TYPE number REQUIRED no
FIELD consignee TYPE string REQUIRED yes
FIELD loan_amount TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD repository.status_code TYPE number REQUIRED no
FIELD repository.half_life... | {"subject":250.27,"active":264.54,"consignee":"Luis","loan_amount":"synonymous","repository":{"status_code":262.19,"half_life":"GRCh38","age":"active"},"width":{"credit_score":{"insurance_id":"low","notes":"FWD"},"section":"https://data.io/api","catalyst":441.91}} | extra_text_before | {
"type": "object",
"properties": {
"subject": {
"type": "number"
},
"active": {
"type": "number"
},
"consignee": {
"type": "string"
},
"loan_amount": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frames... | Based on your request, here is the data:
{"subject":250.27,"active":264.54,"consignee":"Luis","loan_amount":"synonymous","repository":{"status_code":262.19,"half_life":"GRCh38","age":"active"},"width":{"credit_score":{"insurance_id":"low","notes":"FWD"},"section":"https://data.io/api","catalyst":441.91}} | Output contains non-JSON text before the object | {"subject":250.27,"active":264.54,"consignee":"Luis","loan_amount":"synonymous","repository":{"status_code":262.19,"half_life":"GRCh38","age":"active"},"width":{"credit_score":{"insurance_id":"low","notes":"FWD"},"section":"https://data.io/api","catalyst":441.91}} |
TASK repair_structured_output
SPEC
FIELD dim_k05 TYPE integer REQUIRED yes
FIELD field_x63 TYPE boolean REQUIRED no
FIELD field_m40.col_g32 TYPE string REQUIRED no
FIELD field_m40.attr_e11 TYPE integer REQUIRED yes
FIELD field_m40.param_c13 TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED no
FIELD field_m40.a... | {"dim_k05":477,"field_x63":true,"field_m40":{"col_g32":"bar","attr_e11":281,"attr_l71":"London","dim_i10":null,"col_w97":"Santos","attr_q22":"2026-11-14T07:39:00Z"},"field_a53":"example","prop_i90":619,"field_y29":"user@domain.com","val_l50":"A short description."} | unquoted_keys | {
"type": "object",
"properties": {
"dim_k05": {
"type": "integer"
},
"field_x63": {
"type": "boolean"
},
"field_m40": {
"type": "object",
"properties": {
"col_g32": {
"type": "string"
},
"attr_e11": {
"type": "integer"
... | {dim_k05:477,field_x63:true,field_m40:{col_g32:"bar",attr_e11:281,attr_l71:"London",dim_i10:null,col_w97:"Santos",attr_q22:"2026-11-14T07:39:00Z"},field_a53:"example",prop_i90:619,field_y29:"user@domain.com",val_l50:"A short description."} | Expecting property name enclosed in double quotes | {"dim_k05":477,"field_x63":true,"field_m40":{"col_g32":"bar","attr_e11":281,"attr_l71":"London","dim_i10":null,"col_w97":"Santos","attr_q22":"2026-11-14T07:39:00Z"},"field_a53":"example","prop_i90":619,"field_y29":"user@domain.com","val_l50":"A short description."} |
TASK repair_structured_output
SPEC
FIELD ward.quantity TYPE string_email REQUIRED yes
FIELD ward.aligned_pct TYPE string REQUIRED no
FIELD ward.step TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD ward.color TYPE string REQUIRED yes
FIELD ward.features TYPE string VALUES single|married|divorced REQUIRED ... | {"ward":{"quantity":"admin@domain.org","step":"high","color":"demo","features":"married","patient_id":{"currency":false,"terminal_id":711,"sensor_id":"Alice","cargo_type":"hemizygous"},"consignee":"JPY"},"enabled":231,"velocity":813} | tool_call_wrong_param | {
"type": "object",
"properties": {
"ward": {
"type": "object",
"properties": {
"quantity": {
"type": "string",
"format": "email"
},
"aligned_pct": {
"type": "string"
},
"step": {
"type": "string",
"enum": [
... | Tool: create_ticket
Params: {"ward": {"quantity": "admin@domain.org", "step": "high", "color": "demo", "features": "married", "patient_id": {"currency": false, "terminal_id": 711, "sensor_id": "Alice", "cargo_type": "hemizygous"}, "consignee": "JPY"}, "enabled": 231, "velocity_value": 813} | Agent used wrong parameter name 'velocity_value' instead of 'velocity' | {"ward":{"quantity":"admin@domain.org","step":"high","color":"demo","features":"married","patient_id":{"currency":false,"terminal_id":711,"sensor_id":"Alice","cargo_type":"hemizygous"},"consignee":"JPY"},"enabled":231,"velocity":813} |
TASK repair_structured_output
SPEC
FIELD prop_x56 TYPE string REQUIRED no
FIELD prop_n99 TYPE boolean REQUIRED yes
FIELD attr_s40[].val_o14 TYPE string_uri REQUIRED no
FIELD attr_s40[].field_l02 TYPE boolean REQUIRED yes
FIELD attr_s40[].field_k04 TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD attr_s40[... | {"prop_x56":"Paris","prop_n99":true,"attr_s40":[{"val_o14":"https://www.org/data","field_l02":true,"field_k04":"active","dim_p10":"degraded","col_w43":577,"key_q62":"2024-01-15","param_t61":"inactive"},{"val_o14":"https://data.io/api","field_l02":true,"field_k04":"pending","dim_p10":"operational","key_q62":"Diana","par... | tool_call_wrong_param | {
"type": "object",
"properties": {
"prop_x56": {
"type": "string"
},
"prop_n99": {
"type": "boolean"
},
"attr_s40": {
"type": "array",
"items": {
"type": "object",
"properties": {
"val_o14": {
"type": "string",
"format": ... | Tool: call_variants
Params: {"prop_n99": true, "attr_s40": [{"val_o14": "https://www.org/data", "field_l02": true, "field_k04": "active", "dim_p10": "degraded", "col_w43": 577, "key_q62": "2024-01-15", "param_t61": "inactive"}, {"val_o14": "https://data.io/api", "field_l02": true, "field_k04": "pending", "dim_p10": "op... | Agent used wrong parameter name 'prop_x56_new' instead of 'prop_x56' | {"prop_x56":"Paris","prop_n99":true,"attr_s40":[{"val_o14":"https://www.org/data","field_l02":true,"field_k04":"active","dim_p10":"degraded","col_w43":577,"key_q62":"2024-01-15","param_t61":"inactive"},{"val_o14":"https://data.io/api","field_l02":true,"field_k04":"pending","dim_p10":"operational","key_q62":"Diana","par... |
TASK repair_structured_output
SPEC
FIELD prop_z26.prop_h68 TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD prop_z26.key_l31 TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD prop_z26.attr_b34 TYPE boolean REQUIRED yes
FIELD prop_z26.val_m25 TYPE string VALUES active|inactive|pending REQUIR... | {"field_e90":"https://example.com","attr_x00":{"attr_p22":"Luis","col_w98":818,"field_h87":"Diana"},"key_j32":"Bob","param_v33":false,"prop_f95":542} | tool_call_text_mix | {
"type": "object",
"properties": {
"prop_z26": {
"type": "object",
"properties": {
"prop_h68": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"key_l31": {
... | I need to look up the information first.
<tool_call name="send_email">
{"field_e90":"https://example.com","attr_x00":{"attr_p22":"Luis","col_w98":818,"field_h87":"Diana"},"key_j32":"Bob","param_v33":false,"prop_f95":542}
</tool_call. | Agent response mixes reasoning text with tool call | {"field_e90":"https://example.com","attr_x00":{"attr_p22":"Luis","col_w98":818,"field_h87":"Diana"},"key_j32":"Bob","param_v33":false,"prop_f95":542} |
TASK repair_structured_output
SPEC
FIELD col_t25.prop_j39 TYPE string REQUIRED no
FIELD col_t25.dim_b65 TYPE null REQUIRED no
FIELD col_t25.dim_u88[] TYPE string REQUIRED yes
FIELD param_b80 TYPE string REQUIRED yes
FIELD key_u20 TYPE string_date-time REQUIRED no
FIELD key_j06 TYPE string_uri REQUIRED no
FIELD key_v42... | {"col_t25":{"prop_j39":"Diana","dim_b65":null,"dim_u88":["Diana","inactive","REV"]},"param_b80":"Oliveira","key_u20":"2021-12-19T21:22:00Z","key_o93":"info@example.com"} | extra_text_after | {
"type": "object",
"properties": {
"col_t25": {
"type": "object",
"properties": {
"prop_j39": {
"type": "string"
},
"dim_b65": {
"type": "null"
},
"dim_u88": {
"type": "array",
"items": {
"type": "string"
... | {"col_t25":{"prop_j39":"Diana","dim_b65":null,"dim_u88":["Diana","inactive","REV"]},"param_b80":"Oliveira","key_u20":"2021-12-19T21:22:00Z","key_o93":"info@example.com"}
Feel free to ask if you have questions. | Output contains non-JSON text after the object | {"col_t25":{"prop_j39":"Diana","dim_b65":null,"dim_u88":["Diana","inactive","REV"]},"param_b80":"Oliveira","key_u20":"2021-12-19T21:22:00Z","key_o93":"info@example.com"} |
TASK repair_structured_output
SPEC
FIELD dosage TYPE boolean REQUIRED yes
FIELD amplitude TYPE string REQUIRED yes
FIELD address TYPE number REQUIRED no
FIELD organism[] TYPE boolean REQUIRED no
FIELD due_date[].account_id TYPE string REQUIRED yes
FIELD due_date[].temp_celsius TYPE string VALUES active|inactive|pendin... | {"dosage":false,"amplitude":"test","address":834.53,"due_date":[{"account_id":"RTG-04","temp_celsius":"pending","medication":"RTG-04","vessel_name":null,"url":990},{"account_id":"qux","temp_celsius":"inactive","medication":"hello","vessel_name":null},{"account_id":"Charlie","temp_celsius":"pending","medication":"RTG-04... | null_required | {
"type": "object",
"properties": {
"dosage": {
"type": "boolean"
},
"amplitude": {
"type": "string"
},
"address": {
"type": "number"
},
"organism": {
"type": "array",
"items": {
"type": "boolean"
}
},
"due_date": {
"type": "array... | {"dosage": false, "amplitude": "test", "address": 834.53, "due_date": null} | Required field 'due_date' is null | {"dosage":false,"amplitude":"test","address":834.53,"due_date":[{"account_id":"RTG-04","temp_celsius":"pending","medication":"RTG-04","vessel_name":null,"url":990},{"account_id":"qux","temp_celsius":"inactive","medication":"hello","vessel_name":null},{"account_id":"Charlie","temp_celsius":"pending","medication":"RTG-04... |
TASK repair_structured_output
SPEC
FIELD key_u07 TYPE string VALUES mode_a|mode_b|mode_c REQUIRED yes
FIELD param_y87 TYPE string REQUIRED no
FIELD dim_i79 TYPE boolean REQUIRED yes
FIELD key_u46 TYPE null REQUIRED yes
FIELD field_o13 TYPE number REQUIRED no
BROKEN_OUTPUT
{"key_u07": "mode_b", "param_y87": "completed... | {"key_u07":"mode_b","param_y87":"completed","dim_i79":false,"key_u46":null,"field_o13":548.73} | extra_field | {
"type": "object",
"properties": {
"key_u07": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c"
]
},
"param_y87": {
"type": "string"
},
"dim_i79": {
"type": "boolean"
},
"key_u46": {
"type": "null"
},
"field_o1... | {"key_u07": "mode_b", "param_y87": "completed", "dim_i79": false, "key_u46": null, "field_o13": 548.73, "extra_data_6277": true} | Unknown field 'extra_data_6277' not defined in schema | {"key_u07":"mode_b","param_y87":"completed","dim_i79":false,"key_u46":null,"field_o13":548.73} |
TASK repair_structured_output
SPEC
FIELD prop_x74 TYPE string REQUIRED no
FIELD key_l78 TYPE string_email REQUIRED no
FIELD param_e60.param_l63 TYPE integer REQUIRED yes
FIELD param_e60.dim_j40 TYPE integer REQUIRED no
FIELD param_e60.val_z15 TYPE number REQUIRED no
FIELD param_e60.prop_z32 TYPE integer REQUIRED yes
F... | {"key_l78":"admin@example.com","field_s89":"hemizygous","val_g51":309,"attr_n49":false} | single_quotes | {
"type": "object",
"properties": {
"prop_x74": {
"type": "string"
},
"key_l78": {
"type": "string",
"format": "email"
},
"param_e60": {
"type": "object",
"properties": {
"param_l63": {
"type": "integer"
},
"dim_j40": {
"t... | {'key_l78':'admin@example.com','field_s89':'hemizygous','val_g51':309,'attr_n49':false} | Expecting property name enclosed in double quotes | {"key_l78":"admin@example.com","field_s89":"hemizygous","val_g51":309,"attr_n49":false} |
TASK repair_structured_output
SPEC
FIELD col_l96 TYPE string_uri REQUIRED yes
FIELD prop_c52 TYPE boolean REQUIRED no
FIELD param_y64.dim_b57 TYPE string REQUIRED no
FIELD param_y64.attr_x63 TYPE string REQUIRED no
FIELD param_y64.prop_j15 TYPE number REQUIRED no
FIELD param_y64.attr_h96 TYPE string REQUIRED no
FIELD ... | {"col_l96":"https://example.com/data","prop_c52":false,"param_y64":{"dim_b57":"2024-06-30","prop_j15":867.48,"attr_h96":"Oliveira","dim_n31":false,"field_e07":"test"},"attr_p40":{"attr_a89":"GRCh38","col_u25":{"dim_e51":"https://data.org/api","field_h09":"pro","col_s58":"single","prop_z92":275.22},"field_f88":"https://... | single_quotes | {
"type": "object",
"properties": {
"col_l96": {
"type": "string",
"format": "uri"
},
"prop_c52": {
"type": "boolean"
},
"param_y64": {
"type": "object",
"properties": {
"dim_b57": {
"type": "string"
},
"attr_x63": {
"type... | {'col_l96':'https://example.com/data','prop_c52':false,'param_y64':{'dim_b57':'2024-06-30','prop_j15':867.48,'attr_h96':'Oliveira','dim_n31':false,'field_e07':'test'},'attr_p40':{'attr_a89':'GRCh38','col_u25':{'dim_e51':'https://data.org/api','field_h09':'pro','col_s58':'single','prop_z92':275.22},'field_f88':'https://... | Expecting property name enclosed in double quotes | {"col_l96":"https://example.com/data","prop_c52":false,"param_y64":{"dim_b57":"2024-06-30","prop_j15":867.48,"attr_h96":"Oliveira","dim_n31":false,"field_e07":"test"},"attr_p40":{"attr_a89":"GRCh38","col_u25":{"dim_e51":"https://data.org/api","field_h09":"pro","col_s58":"single","prop_z92":275.22},"field_f88":"https://... |
TASK repair_structured_output
SPEC
FIELD field_y17 TYPE boolean REQUIRED yes
FIELD param_m53 TYPE integer REQUIRED yes
FIELD col_v57 TYPE null REQUIRED no
FIELD field_s82.dim_b61 TYPE integer REQUIRED yes
FIELD field_s82.field_f64 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD field_s82.attr_o33 TYPE number ... | {"field_y17":false,"param_m53":816,"col_v57":null,"field_s82":{"dim_b61":232,"field_f64":"JPY","attr_o33":7.68,"field_y75":"baz","dim_y10":["hello","example"]}} | agent_chain | {
"type": "object",
"properties": {
"field_y17": {
"type": "boolean"
},
"param_m53": {
"type": "integer"
},
"col_v57": {
"type": "null"
},
"field_s82": {
"type": "object",
"properties": {
"dim_b61": {
"type": "integer"
},
"f... | I need to look up the information first.
Action: run_diagnostics
Result: {"field_y17": false, "param_m53": 816, "field_s82": {"dim_b61": 232, "field_f64": "JPY", "attr_o33": 7.68, "field_y75": "baz", "dim_y10": ["hello", "example"]}}
I'll query our database.
Action: get_account
Result: | Agent multi-step chain with truncated tool output | {"field_y17":false,"param_m53":816,"col_v57":null,"field_s82":{"dim_b61":232,"field_f64":"JPY","attr_o33":7.68,"field_y75":"baz","dim_y10":["hello","example"]}} |
TASK repair_structured_output
SPEC
FIELD updated_at TYPE integer REQUIRED no
FIELD url TYPE boolean REQUIRED no
FIELD published TYPE string REQUIRED no
FIELD cargo_type TYPE integer REQUIRED yes
FIELD lane.diagnosis_code TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD lane.subject TYPE string VALUES... | {"updated_at":966,"url":true,"published":"REV","cargo_type":335,"lane":{"diagnosis_code":"coastal","subject":"intermittent","height":"red","maturity_date":"baz"}} | unquoted_keys | {
"type": "object",
"properties": {
"updated_at": {
"type": "integer"
},
"url": {
"type": "boolean"
},
"published": {
"type": "string"
},
"cargo_type": {
"type": "integer"
},
"lane": {
"type": "object",
"properties": {
"diagnosis_code":... | {updated_at:966,url:true,published:"REV",cargo_type:335,lane:{diagnosis_code:"coastal",subject:"intermittent",height:"red",maturity_date:"baz"}} | Expecting property name enclosed in double quotes | {"updated_at":966,"url":true,"published":"REV","cargo_type":335,"lane":{"diagnosis_code":"coastal","subject":"intermittent","height":"red","maturity_date":"baz"}} |
TASK repair_structured_output
SPEC
FIELD span_id TYPE null REQUIRED no
FIELD dissolved_oxygen TYPE string REQUIRED no
FIELD footnote TYPE string REQUIRED no
FIELD brake_pressure TYPE integer REQUIRED no
FIELD url TYPE boolean REQUIRED no
FIELD organism TYPE string REQUIRED yes
BROKEN_OUTPUT
{"span_id": null, "dissolv... | {"span_id":null,"dissolved_oxygen":"approved","footnote":"Johnson","brake_pressure":900,"url":true,"organism":"test"} | extra_field | {
"type": "object",
"properties": {
"span_id": {
"type": "null"
},
"dissolved_oxygen": {
"type": "string"
},
"footnote": {
"type": "string"
},
"brake_pressure": {
"type": "integer"
},
"url": {
"type": "boolean"
},
"organism": {
"type": ... | {"span_id": null, "dissolved_oxygen": "approved", "footnote": "Johnson", "brake_pressure": 900, "url": true, "organism": "test", "extra_info_3573": "unexpected"} | Unknown field 'extra_info_3573' not defined in schema | {"span_id":null,"dissolved_oxygen":"approved","footnote":"Johnson","brake_pressure":900,"url":true,"organism":"test"} |
TASK repair_structured_output
SPEC
FIELD col_a47 TYPE string VALUES draft|published|archived REQUIRED no
FIELD key_z62 TYPE boolean REQUIRED no
FIELD attr_u10 TYPE string_uri REQUIRED yes
FIELD dim_p79 TYPE string REQUIRED no
FIELD prop_h93 TYPE string REQUIRED no
FIELD col_j56.dim_z45 TYPE string VALUES cat_a|cat_b|c... | {"key_z62":true,"attr_u10":"https://example.org/v1","prop_h93":"completed","col_j56":{"dim_z45":"cat_d","prop_f01":473.33,"prop_o18":{"col_s09":"Oliveira","dim_r71":843.66,"param_b10":"Johnson"}},"attr_y98":"world"} | partial_structure | {
"type": "object",
"properties": {
"col_a47": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"key_z62": {
"type": "boolean"
},
"attr_u10": {
"type": "string",
"format": "uri"
},
"dim_p79": {
"type": "... | Result: key_z62=True, {"key_z62":true,"attr_u10":"https://example.org/v1","prop_h93":"completed","col_j56":{"dim_z45":"cat_d","prop_f01":473.33,"prop_o18":{"col_s09":"Oliveira","dim_r71":843.66,"param_b10":"Johnson"}},"attr_y98":"world"} | Output mixes natural language with JSON | {"key_z62":true,"attr_u10":"https://example.org/v1","prop_h93":"completed","col_j56":{"dim_z45":"cat_d","prop_f01":473.33,"prop_o18":{"col_s09":"Oliveira","dim_r71":843.66,"param_b10":"Johnson"}},"attr_y98":"world"} |
TASK repair_structured_output
SPEC
FIELD dim_f39 TYPE integer REQUIRED yes
FIELD key_t68 TYPE string VALUES draft|published|archived REQUIRED no
FIELD val_a37 TYPE string_date-time REQUIRED no
FIELD key_h53.val_z13.key_v59 TYPE boolean REQUIRED yes
FIELD key_h53.val_z13.field_s42 TYPE string VALUES admin|editor|viewer... | {"dim_f39":364,"key_t68":"published","key_h53":{"val_z13":{"key_v59":true,"field_s42":"admin","col_n32":"pending_review"},"field_j91":"confirmed","param_b04":"returned","col_u16":"RTG-04","val_j95":"operational","val_j11":247},"col_t83":"anchored","param_r60":"https://example.com/v1"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"dim_f39": {
"type": "integer"
},
"key_t68": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"val_a37": {
"type": "string",
"format": "date-time"
},
"key_h53": {
"typ... | Tool: delete_item
Params: {"dim_f39": 364, "key_t68": "published", "key_h53": {"val_z13": {"key_v59": true, "field_s42": "admin", "col_n32": "pending_review"}, "field_j91": "confirmed", "param_b04": "returned", "col_u16": "RTG-04", "val_j95": "operational", "val_j11": 247}, "col_t83": "anchored", "param_r60_name": "htt... | Agent used wrong parameter name 'param_r60_name' instead of 'param_r60' | {"dim_f39":364,"key_t68":"published","key_h53":{"val_z13":{"key_v59":true,"field_s42":"admin","col_n32":"pending_review"},"field_j91":"confirmed","param_b04":"returned","col_u16":"RTG-04","val_j95":"operational","val_j11":247},"col_t83":"anchored","param_r60":"https://example.com/v1"} |
TASK repair_structured_output
SPEC
FIELD diagnosis_code TYPE boolean REQUIRED no
FIELD chromosome TYPE string_date-time REQUIRED yes
FIELD span_id TYPE boolean REQUIRED no
FIELD user_id TYPE integer REQUIRED no
FIELD currency.state TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD currency.aligned_pct TYP... | {"diagnosis_code":false,"chromosome":"2023-04-23T23:44:00Z","span_id":false,"currency":{"state":"free","aligned_pct":"cat_b","duration_ms":513,"diagnosis_code":"type_b","notes":"https://www.org/v1","log_level":"mode_f","trace_id":"https://api.example.com/v1"}} | tool_call_python_syntax | {
"type": "object",
"properties": {
"diagnosis_code": {
"type": "boolean"
},
"chromosome": {
"type": "string",
"format": "date-time"
},
"span_id": {
"type": "boolean"
},
"user_id": {
"type": "integer"
},
"currency": {
"type": "object",
"p... | query_port_status(diagnosis_code=False, chromosome='2023-04-23T23:44:00Z', span_id=False, currency={'state': 'free', 'aligned_pct': 'cat_b', 'duration_ms': 513, 'diagnosis_code': 'type_b', 'notes': 'https://www.org/v1', 'log_level': 'mode_f', 'trace_id': 'https://api.example.com/v1'}) | Tool call uses Python syntax instead of JSON | {"diagnosis_code":false,"chromosome":"2023-04-23T23:44:00Z","span_id":false,"currency":{"state":"free","aligned_pct":"cat_b","duration_ms":513,"diagnosis_code":"type_b","notes":"https://www.org/v1","log_level":"mode_f","trace_id":"https://api.example.com/v1"}} |
TASK repair_structured_output
SPEC
FIELD param_h47 TYPE integer REQUIRED yes
FIELD prop_v94 TYPE string_email REQUIRED no
FIELD val_x45 TYPE integer REQUIRED no
FIELD param_h90 TYPE string REQUIRED no
FIELD param_n69 TYPE string_date-time REQUIRED no
FIELD field_p55 TYPE integer REQUIRED no
FIELD attr_h46 TYPE number ... | {"param_h47":192,"val_x45":423,"param_h90":"Bob","field_p55":60,"attr_h46":796.45,"dim_z18":"https://data.io/v1"} | truncated_object | {
"type": "object",
"properties": {
"param_h47": {
"type": "integer"
},
"prop_v94": {
"type": "string",
"format": "email"
},
"val_x45": {
"type": "integer"
},
"param_h90": {
"type": "string"
},
"param_n69": {
"type": "string",
"format": "... | {"param_h47":192,"val_x45":423,"param_h90":"Bob","field_p55":60,"attr_h46":796.45,"dim_z18":"https://data.io/v1" | Unexpected end of JSON input — truncated object | {"param_h47":192,"val_x45":423,"param_h90":"Bob","field_p55":60,"attr_h46":796.45,"dim_z18":"https://data.io/v1"} |
TASK repair_structured_output
SPEC
FIELD decay_rate TYPE string REQUIRED yes
FIELD velocity TYPE string REQUIRED no
FIELD catalyst TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD reagent TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD isotope TYPE string VALUES mode_a|mode... | {"decay_rate":"example","velocity":"https://api.example.com/v1","catalyst":"free","isotope":"mode_b","organism":486} | partial_structure | {
"type": "object",
"properties": {
"decay_rate": {
"type": "string"
},
"velocity": {
"type": "string"
},
"catalyst": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"reagent": {
"type": "string",... | The isotope is mode_b and {"decay_rate":"example","velocity":"https://api.example.com/v1","catalyst":"free","isotope":"mode_b","organism":486} | Output mixes natural language with JSON | {"decay_rate":"example","velocity":"https://api.example.com/v1","catalyst":"free","isotope":"mode_b","organism":486} |
TASK repair_structured_output
SPEC
FIELD annotation TYPE string VALUES level_1|level_2|level_3 REQUIRED no
FIELD length TYPE number REQUIRED no
FIELD hazmat_code TYPE string REQUIRED no
FIELD bearing TYPE string REQUIRED no
FIELD country TYPE number REQUIRED yes
FIELD current_draw TYPE string REQUIRED no
FIELD dosage ... | {"annotation":"level_1","length":878.21,"hazmat_code":"A short description.","bearing":"QC-07","country":252.62,"current_draw":"cancelled","dosage":871} | agent_chain | {
"type": "object",
"properties": {
"annotation": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3"
]
},
"length": {
"type": "number"
},
"hazmat_code": {
"type": "string"
},
"bearing": {
"type": "string"
},
"... | I need to look up the information first.
Action: transfer_call
Result: {"length": 878.21, "hazmat_code": "A short description.", "bearing": "QC-07", "country": 252.62, "current_draw": "cancelled", "dosage": 871}
I'll query our database.
Action: process_payment
Result: | Agent multi-step chain with truncated tool output | {"annotation":"level_1","length":878.21,"hazmat_code":"A short description.","bearing":"QC-07","country":252.62,"current_draw":"cancelled","dosage":871} |
TASK repair_structured_output
SPEC
FIELD version.torque_output TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
FIELD version.procedure_code TYPE boolean REQUIRED no
FIELD version.longitude TYPE string REQUIRED no
FIELD version.amount.cargo_type TYPE integer REQUIRED no
FIELD version.amount.dis... | {"version":{"torque_output":"maintenance","longitude":"MV-Evergreen-01","amount":{"cargo_type":381,"score":"John","feedback":"level_2","voltage":false,"state":true,"enabled":"A short description."},"chromosome":{"repository":"basic","velocity":989,"freight_class":"https://example.com/v1","humidity_pct":"mode_a","compan... | number_with_unit | {
"type": "object",
"properties": {
"version": {
"type": "object",
"properties": {
"torque_output": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
},
"procedure_... | {"version": {"torque_output": "maintenance", "longitude": "MV-Evergreen-01", "amount": {"cargo_type": 381, "score": "John", "feedback": "level_2", "voltage": false, "state": true, "enabled": "A short description."}, "chromosome": {"repository": "basic", "velocity": 989, "freight_class": "https://example.com/v1", "humid... | Field 'user_id' must be number, got string with unit | {"version":{"torque_output":"maintenance","longitude":"MV-Evergreen-01","amount":{"cargo_type":381,"score":"John","feedback":"level_2","voltage":false,"state":true,"enabled":"A short description."},"chromosome":{"repository":"basic","velocity":989,"freight_class":"https://example.com/v1","humidity_pct":"mode_a","compan... |
TASK repair_structured_output
SPEC
FIELD length TYPE string REQUIRED no
FIELD filter_flag TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD maturity_date TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD ward TYPE string REQUIRED no
FIELD quality_score TYPE integer REQUIRED... | {"length":"sample","filter_flag":"escalated","maturity_date":"free","ward":"demo","quality_score":218,"company":398} | null_required | {
"type": "object",
"properties": {
"length": {
"type": "string"
},
"filter_flag": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"maturity_date": {
"type": "string",
"enum": [
... | {"length": "sample", "filter_flag": "escalated", "maturity_date": "free", "ward": "demo", "quality_score": 218, "company": null} | Required field 'company' is null | {"length":"sample","filter_flag":"escalated","maturity_date":"free","ward":"demo","quality_score":218,"company":398} |
TASK repair_structured_output
SPEC
FIELD param_y11 TYPE string VALUES single|married|divorced REQUIRED no
FIELD prop_j31 TYPE string VALUES option_a|option_b|option_c REQUIRED yes
FIELD key_b17 TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD val_r24 TYPE string VALUES new|in_transit|delivered|returned REQUI... | {"param_y11":"married","prop_j31":"option_a","key_b17":"xl","val_r24":"in_transit","param_q12":800,"val_r39":true} | wrong_type | {
"type": "object",
"properties": {
"param_y11": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"prop_j31": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c"
]
},
"key_b17": {
... | {"param_y11": "married", "prop_j31": "option_a", "key_b17": "xl", "val_r24": "in_transit", "param_q12": "\"800\"", "val_r39": true} | Field 'param_q12' must be integer, got string | {"param_y11":"married","prop_j31":"option_a","key_b17":"xl","val_r24":"in_transit","param_q12":800,"val_r39":true} |
TASK repair_structured_output
SPEC
FIELD salinity TYPE string_email REQUIRED no
FIELD active.insurance_id TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED yes
FIELD active.description TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD active.collateral TYPE string REQUIRED yes
FIELD id.run_id TY... | {"salinity":"admin@example.com","active":{"insurance_id":"cat_a","description":"open","collateral":"Sao Paulo"},"id":{"run_id":"underway","step":"critical","color":5,"berth_slot":"USD","shipping":false},"total":"Sao Paulo","notes":{"coverage":"closed","age":201.63,"amount":{"age":"https://data.com/v1","bed_number":"Ber... | extra_text_after | {
"type": "object",
"properties": {
"salinity": {
"type": "string",
"format": "email"
},
"active": {
"type": "object",
"properties": {
"insurance_id": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
... | {"salinity":"admin@example.com","active":{"insurance_id":"cat_a","description":"open","collateral":"Sao Paulo"},"id":{"run_id":"underway","step":"critical","color":5,"berth_slot":"USD","shipping":false},"total":"Sao Paulo","notes":{"coverage":"closed","age":201.63,"amount":{"age":"https://data.com/v1","bed_number":"Ber... | Output contains non-JSON text after the object | {"salinity":"admin@example.com","active":{"insurance_id":"cat_a","description":"open","collateral":"Sao Paulo"},"id":{"run_id":"underway","step":"critical","color":5,"berth_slot":"USD","shipping":false},"total":"Sao Paulo","notes":{"coverage":"closed","age":201.63,"amount":{"age":"https://data.com/v1","bed_number":"Ber... |
TASK repair_structured_output
SPEC
FIELD dim_e38 TYPE string REQUIRED no
FIELD field_o19 TYPE string REQUIRED yes
FIELD col_q92 TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD col_b52.dim_x84 TYPE string REQUIRED no
FIELD col_b52.val_u76 TYPE string_uri REQUIRED no
FIELD col_b52.prop_w57 TYPE number REQ... | {"dim_e38":"Hapag-Lloyd-Express","field_o19":"A short description.","col_q92":"critical","col_b52":{"dim_x84":"test","val_u76":"https://example.org/data","attr_x28":"2024-08-22T16:02:00Z","attr_o26":{"col_o16":"critical","param_s12":"viewer","field_w94":"https://example.org/api","param_e80":686,"val_u97":"heterozygous"... | missing_brace | {
"type": "object",
"properties": {
"dim_e38": {
"type": "string"
},
"field_o19": {
"type": "string"
},
"col_q92": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"col_b52": {
"type": "object",
... | {"dim_e38":"Hapag-Lloyd-Express","field_o19":"A short description.","col_q92":"critical","col_b52":{"dim_x84":"test","val_u76":"https://example.org/data","attr_x28":"2024-08-22T16:02:00Z","attr_o26":{"col_o16":"critical","param_s12":"viewer","field_w94":"https://example.org/api","param_e80":686,"val_u97":"heterozygous"... | Missing closing brace | {"dim_e38":"Hapag-Lloyd-Express","field_o19":"A short description.","col_q92":"critical","col_b52":{"dim_x84":"test","val_u76":"https://example.org/data","attr_x28":"2024-08-22T16:02:00Z","attr_o26":{"col_o16":"critical","param_s12":"viewer","field_w94":"https://example.org/api","param_e80":686,"val_u97":"heterozygous"... |
TASK repair_structured_output
SPEC
FIELD param_o46 TYPE number REQUIRED no
FIELD param_m15 TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD prop_o84 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD field_m80 TYPE string VALUES red|blue|green|black|white REQUIRED no
BROKEN_OUTPUT
{'param_o46... | {"param_o46":272.89,"param_m15":"admin","field_m80":"green"} | single_quotes | {
"type": "object",
"properties": {
"param_o46": {
"type": "number"
},
"param_m15": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"prop_o84": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"... | {'param_o46':272.89,'param_m15':'admin','field_m80':'green'} | Expecting property name enclosed in double quotes | {"param_o46":272.89,"param_m15":"admin","field_m80":"green"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.