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 url TYPE integer REQUIRED yes
FIELD notes TYPE integer REQUIRED yes
FIELD insurance_id TYPE string REQUIRED yes
BROKEN_OUTPUT
Analyzing the sensor data to generate the output.
I'll apply the required format first.
{"url":449,"notes":486,"insurance_id":"Alice"} | {"url":449,"notes":486,"insurance_id":"Alice"} | thought_process | {
"type": "object",
"properties": {
"url": {
"type": "integer"
},
"notes": {
"type": "integer"
},
"insurance_id": {
"type": "string"
}
},
"required": [
"notes",
"insurance_id",
"url"
]
} | Analyzing the sensor data to generate the output.
I'll apply the required format first.
{"url":449,"notes":486,"insurance_id":"Alice"} | Output contains chain-of-thought reasoning before JSON | {"url":449,"notes":486,"insurance_id":"Alice"} |
TASK repair_structured_output
SPEC
FIELD tile.product_id TYPE string REQUIRED no
FIELD tile.frequency_hz TYPE string REQUIRED yes
FIELD tile.batch_code TYPE string_uri REQUIRED yes
FIELD title TYPE boolean REQUIRED no
FIELD repository TYPE integer REQUIRED no
BROKEN_OUTPUT
{"title": false, "repository": 283} | {"tile":{"frequency_hz":"FWD","batch_code":"https://example.io/api"},"title":false,"repository":283} | missing_required | {
"type": "object",
"properties": {
"tile": {
"type": "object",
"properties": {
"product_id": {
"type": "string"
},
"frequency_hz": {
"type": "string"
},
"batch_code": {
"type": "string",
"format": "uri"
}
... | {"title": false, "repository": 283} | Required field 'tile' is missing | {"tile":{"frequency_hz":"FWD","batch_code":"https://example.io/api"},"title":false,"repository":283} |
TASK repair_structured_output
SPEC
FIELD val_d75 TYPE integer REQUIRED no
FIELD key_t42 TYPE string REQUIRED no
FIELD field_z54 TYPE integer REQUIRED yes
FIELD param_t59.attr_y31 TYPE null REQUIRED no
FIELD param_t59.field_f64 TYPE integer REQUIRED yes
FIELD param_t59.field_n01 TYPE string REQUIRED yes
FIELD param_t59... | {"key_t42":"Luis","field_z54":349,"dim_h60":"Charlie","col_e41":{"val_n77":"published","prop_c83":"missense","dim_a38":"inactive","attr_k71":"pending_review","field_n80":"cancelled","col_x50":199.78,"val_k66":288.47}} | missing_brace | {
"type": "object",
"properties": {
"val_d75": {
"type": "integer"
},
"key_t42": {
"type": "string"
},
"field_z54": {
"type": "integer"
},
"param_t59": {
"type": "object",
"properties": {
"attr_y31": {
"type": "null"
},
"fie... | {"key_t42":"Luis","field_z54":349,"dim_h60":"Charlie","col_e41":{"val_n77":"published","prop_c83":"missense","dim_a38":"inactive","attr_k71":"pending_review","field_n80":"cancelled","col_x50":199.78,"val_k66":288.47} | Missing closing brace | {"key_t42":"Luis","field_z54":349,"dim_h60":"Charlie","col_e41":{"val_n77":"published","prop_c83":"missense","dim_a38":"inactive","attr_k71":"pending_review","field_n80":"cancelled","col_x50":199.78,"val_k66":288.47}} |
TASK repair_structured_output
SPEC
FIELD key_z47 TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD param_d92 TYPE number REQUIRED yes
FIELD attr_h30 TYPE number REQUIRED no
FIELD key_o73 TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED no
BROKEN_OUTPUT
<functioncall> transfer_call
{key_z47:... | {"key_z47":"reliable","param_d92":458.68,"key_o73":"cat_c"} | tool_call_bad_format | {
"type": "object",
"properties": {
"key_z47": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
},
"param_d92": {
"type": "number"
},
"attr_h30": {
"type": "number"
},
"key_o73": {
"type": "string",
"... | <functioncall> transfer_call
{key_z47: "reliable", param_d92: 458.68, key_o73: "cat_c"} | Tool call has malformed arguments — unquoted keys in function parameters | {"key_z47":"reliable","param_d92":458.68,"key_o73":"cat_c"} |
TASK repair_structured_output
SPEC
FIELD attr_b10 TYPE integer REQUIRED no
FIELD col_r36 TYPE integer REQUIRED no
FIELD val_x34 TYPE integer REQUIRED no
FIELD prop_d96 TYPE integer REQUIRED no
FIELD field_o69[] TYPE boolean REQUIRED yes
BROKEN_OUTPUT
Here is the JSON you requested:
```json
{"attr_b10":751,"col_r36":5... | {"attr_b10":751,"col_r36":532,"val_x34":39,"prop_d96":253,"field_o69":[false,true,false,true]} | markdown_explanation | {
"type": "object",
"properties": {
"attr_b10": {
"type": "integer"
},
"col_r36": {
"type": "integer"
},
"val_x34": {
"type": "integer"
},
"prop_d96": {
"type": "integer"
},
"field_o69": {
"type": "array",
"items": {
"type": "boolean"
... | Here is the JSON you requested:
```json
{"attr_b10":751,"col_r36":532,"val_x34":39,"prop_d96":253,"field_o69":[false,true,false,true]}
```
Analysis finished. | Output contains markdown and explanatory text around JSON | {"attr_b10":751,"col_r36":532,"val_x34":39,"prop_d96":253,"field_o69":[false,true,false,true]} |
TASK repair_structured_output
SPEC
FIELD quantity TYPE number REQUIRED yes
FIELD manifest_ref TYPE null REQUIRED no
FIELD longitude TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED no
FIELD patient_id TYPE integer REQUIRED yes
FIELD amount TYPE string REQUIRED yes
FIELD item_id TYPE string VALUES level_1|level_... | {"quantity":121.99,"manifest_ref":null,"longitude":"type_b","patient_id":943,"amount":"Paris"} | markdown_fences | {
"type": "object",
"properties": {
"quantity": {
"type": "number"
},
"manifest_ref": {
"type": "null"
},
"longitude": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d"
]
},
"patient_id": {
"type": "in... | ```json
{"quantity":121.99,"manifest_ref":null,"longitude":"type_b","patient_id":943,"amount":"Paris"}
``` | Output contains markdown code fences | {"quantity":121.99,"manifest_ref":null,"longitude":"type_b","patient_id":943,"amount":"Paris"} |
TASK repair_structured_output
SPEC
FIELD temp_celsius TYPE string REQUIRED no
FIELD zip_code TYPE string VALUES success|error|warning|info REQUIRED yes
FIELD category TYPE integer REQUIRED no
FIELD notes TYPE string REQUIRED no
FIELD due_date TYPE string REQUIRED yes
FIELD tile TYPE string VALUES email|phone|sms|push ... | {"zip_code":"info","category":415,"due_date":"FWD","tile":"email"} | trailing_comma | {
"type": "object",
"properties": {
"temp_celsius": {
"type": "string"
},
"zip_code": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"category": {
"type": "integer"
},
"notes": {
"type": "string... | {"zip_code":"info","category":415,"due_date":"FWD","tile":"email",} | Unexpected trailing comma | {"zip_code":"info","category":415,"due_date":"FWD","tile":"email"} |
TASK repair_structured_output
SPEC
FIELD param_e68 TYPE string REQUIRED yes
FIELD attr_w15 TYPE null REQUIRED yes
FIELD field_c33 TYPE number REQUIRED yes
FIELD val_v41.attr_s28 TYPE number REQUIRED no
FIELD val_v41.prop_l41 TYPE string REQUIRED yes
FIELD val_v41.key_g31.attr_e82 TYPE integer REQUIRED yes
FIELD val_v4... | {"param_e68":"Paris","attr_w15":null,"field_c33":942.9} | single_quotes | {
"type": "object",
"properties": {
"param_e68": {
"type": "string"
},
"attr_w15": {
"type": "null"
},
"field_c33": {
"type": "number"
},
"val_v41": {
"type": "object",
"properties": {
"attr_s28": {
"type": "number"
},
"prop... | {'param_e68':'Paris','attr_w15':null,'field_c33':942.9} | Expecting property name enclosed in double quotes | {"param_e68":"Paris","attr_w15":null,"field_c33":942.9} |
TASK repair_structured_output
SPEC
FIELD organism TYPE null REQUIRED no
FIELD due_date TYPE integer REQUIRED no
FIELD feedback TYPE null REQUIRED no
FIELD tax TYPE number REQUIRED yes
FIELD berth_slot TYPE string_date-time REQUIRED no
FIELD address TYPE number REQUIRED no
FIELD position TYPE integer REQUIRED no
BROKE... | {"organism":null,"due_date":719,"feedback":null,"tax":763.34,"berth_slot":"2021-08-04T13:43:00Z","position":716} | number_with_unit | {
"type": "object",
"properties": {
"organism": {
"type": "null"
},
"due_date": {
"type": "integer"
},
"feedback": {
"type": "null"
},
"tax": {
"type": "number"
},
"berth_slot": {
"type": "string",
"format": "date-time"
},
"address": {
... | {"organism": null, "due_date": 719, "feedback": null, "tax": 763.34, "berth_slot": "2021-08-04T13:43:00Z", "position": "716cm"} | Field 'position' must be number, got string with unit | {"organism":null,"due_date":719,"feedback":null,"tax":763.34,"berth_slot":"2021-08-04T13:43:00Z","position":716} |
TASK repair_structured_output
SPEC
FIELD enabled TYPE string REQUIRED no
FIELD city TYPE string REQUIRED no
FIELD price TYPE string VALUES type_a|type_b|type_c|type_d|type_e|type_f REQUIRED yes
FIELD amplitude TYPE null REQUIRED yes
FIELD quality_score TYPE string VALUES type_a|type_b REQUIRED yes
BROKEN_OUTPUT
creat... | {"city":"active","price":"type_a","amplitude":null,"quality_score":"type_a"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"enabled": {
"type": "string"
},
"city": {
"type": "string"
},
"price": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d",
"type_e",
"type_f"
]
},
"amplitu... | create_ticket(city='active', price='type_a', amplitude=None, quality_score='type_a') | Tool call uses Python syntax instead of JSON | {"city":"active","price":"type_a","amplitude":null,"quality_score":"type_a"} |
TASK repair_structured_output
SPEC
FIELD col_w81 TYPE string REQUIRED yes
FIELD attr_w63 TYPE null REQUIRED yes
FIELD dim_k43.param_g37 TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes
FIELD dim_k43.key_q21 TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
FIELD dim_k43.param_d79.attr_m96 ... | {"col_w81":"John","attr_w63":null,"dim_k43":{"param_g37":"berthed","key_q21":"intermittent","param_d79":{"attr_m96":"2024-10-10T14:15:00Z","attr_y89":"https://api.com/v1","prop_n82":"divorced","prop_a33":645.12,"dim_h28":"2023-11-10T20:39:00Z","field_t90":"cancelled"}},"attr_x21":true} | wrong_type | {
"type": "object",
"properties": {
"col_w81": {
"type": "string"
},
"attr_w63": {
"type": "null"
},
"dim_k43": {
"type": "object",
"properties": {
"param_g37": {
"type": "string",
"enum": [
"berthed",
"anchored",
... | {"col_w81": "John", "attr_w63": null, "dim_k43": {"param_g37": "berthed", "key_q21": "intermittent", "param_d79": {"attr_m96": "2024-10-10T14:15:00Z", "attr_y89": "https://api.com/v1", "prop_n82": "divorced", "prop_a33": 645.12, "dim_h28": "2023-11-10T20:39:00Z", "field_t90": "cancelled"}}, "attr_x21": "\"yes\""} | Field 'attr_x21' must be boolean, got string | {"col_w81":"John","attr_w63":null,"dim_k43":{"param_g37":"berthed","key_q21":"intermittent","param_d79":{"attr_m96":"2024-10-10T14:15:00Z","attr_y89":"https://api.com/v1","prop_n82":"divorced","prop_a33":645.12,"dim_h28":"2023-11-10T20:39:00Z","field_t90":"cancelled"}},"attr_x21":true} |
TASK repair_structured_output
SPEC
FIELD latitude TYPE null REQUIRED no
FIELD timezone TYPE string VALUES draft|published|archived REQUIRED no
FIELD items TYPE integer REQUIRED no
FIELD phenotype TYPE integer REQUIRED no
FIELD last_name TYPE null REQUIRED no
FIELD id TYPE number REQUIRED yes
FIELD subtotal TYPE string... | {"latitude":null,"timezone":"archived","items":791,"phenotype":780,"id":477.44,"subtotal":"level_2","chapter":null} | extra_text_before | {
"type": "object",
"properties": {
"latitude": {
"type": "null"
},
"timezone": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"items": {
"type": "integer"
},
"phenotype": {
"type": "integer"
},
"las... | The instrument reported:
{"latitude":null,"timezone":"archived","items":791,"phenotype":780,"id":477.44,"subtotal":"level_2","chapter":null} | Output contains non-JSON text before the object | {"latitude":null,"timezone":"archived","items":791,"phenotype":780,"id":477.44,"subtotal":"level_2","chapter":null} |
TASK repair_structured_output
SPEC
FIELD prop_c19 TYPE number REQUIRED no
FIELD val_b57 TYPE string_email REQUIRED no
FIELD prop_t70 TYPE integer REQUIRED no
FIELD col_j73[].key_q61 TYPE number REQUIRED yes
FIELD col_j73[].attr_k09 TYPE number REQUIRED yes
FIELD col_j73[].field_k09 TYPE number REQUIRED no
FIELD col_j7... | {"val_b57":"user@test.io","col_j73":[{"key_q61":538.93,"attr_k09":248.39,"field_k09":303.81,"val_c01":"London","attr_u31":46.25,"key_e45":"missense"},{"key_q61":668.5,"attr_k09":735.28,"field_k09":999.79,"val_c01":"pending","attr_u31":150.55,"key_e45":"missense"},{"key_q61":667.28,"attr_k09":873.17,"field_k09":98.18,"v... | unquoted_keys | {
"type": "object",
"properties": {
"prop_c19": {
"type": "number"
},
"val_b57": {
"type": "string",
"format": "email"
},
"prop_t70": {
"type": "integer"
},
"col_j73": {
"type": "array",
"items": {
"type": "object",
"properties": {
... | {val_b57:"user@test.io",col_j73:[{key_q61:538.93,attr_k09:248.39,field_k09:303.81,val_c01:"London",attr_u31:46.25,key_e45:"missense"},{key_q61:668.5,attr_k09:735.28,field_k09:999.79,val_c01:"pending",attr_u31:150.55,key_e45:"missense"},{key_q61:667.28,attr_k09:873.17,field_k09:98.18,val_c01:"chrX",attr_u31:248.07,key_e... | Expecting property name enclosed in double quotes | {"val_b57":"user@test.io","col_j73":[{"key_q61":538.93,"attr_k09":248.39,"field_k09":303.81,"val_c01":"London","attr_u31":46.25,"key_e45":"missense"},{"key_q61":668.5,"attr_k09":735.28,"field_k09":999.79,"val_c01":"pending","attr_u31":150.55,"key_e45":"missense"},{"key_q61":667.28,"attr_k09":873.17,"field_k09":98.18,"v... |
TASK repair_structured_output
SPEC
FIELD catalyst TYPE number REQUIRED yes
FIELD notes TYPE integer REQUIRED yes
FIELD conductivity TYPE number REQUIRED yes
FIELD vessel_name.chromosome TYPE string_date-time REQUIRED no
FIELD vessel_name.insurance_id TYPE boolean REQUIRED yes
FIELD vessel_name.quality_score TYPE strin... | {"catalyst":707.23,"notes":535,"conductivity":992.59,"vessel_name":{"chromosome":"2024-08-01T02:58:00Z","insurance_id":true,"quality_score":"level_4"}} | missing_required | {
"type": "object",
"properties": {
"catalyst": {
"type": "number"
},
"notes": {
"type": "integer"
},
"conductivity": {
"type": "number"
},
"vessel_name": {
"type": "object",
"properties": {
"chromosome": {
"type": "string",
"form... | {"catalyst": 707.23, "notes": 535, "vessel_name": {"chromosome": "2024-08-01T02:58:00Z", "insurance_id": true, "quality_score": "level_4"}} | Required field 'conductivity' is missing | {"catalyst":707.23,"notes":535,"conductivity":992.59,"vessel_name":{"chromosome":"2024-08-01T02:58:00Z","insurance_id":true,"quality_score":"level_4"}} |
TASK repair_structured_output
SPEC
FIELD umi TYPE string REQUIRED no
FIELD role TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD bill_of_lading TYPE string_email REQUIRED no
FIELD type TYPE string_uri REQUIRED yes
FIELD velocity[].account_id TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD veloc... | {"umi":"user@domain.com","role":"editor","type":"https://api.io/data","velocity":[{"account_id":"free","catalyst":519,"footnote":"draft","visible":"https://example.com/data"}]} | tool_call_wrong_param | {
"type": "object",
"properties": {
"umi": {
"type": "string"
},
"role": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"bill_of_lading": {
"type": "string",
"format": "email"
},
"type": {
"type": "string",... | Tool: get_inventory
Params: {"umi": "user@domain.com", "role": "editor", "velocity": [{"account_id": "free", "catalyst": 519, "footnote": "draft", "visible": "https://example.com/data"}], "type_value": "https://api.io/data"} | Agent used wrong parameter name 'type_value' instead of 'type' | {"umi":"user@domain.com","role":"editor","type":"https://api.io/data","velocity":[{"account_id":"free","catalyst":519,"footnote":"draft","visible":"https://example.com/data"}]} |
TASK repair_structured_output
SPEC
FIELD timezone.level TYPE string VALUES level_1|level_2 REQUIRED yes
FIELD timezone.tile TYPE string VALUES option_a|option_b|option_c|option_d REQUIRED no
FIELD timezone.run_id TYPE number REQUIRED no
FIELD timezone.span_id TYPE number REQUIRED no
FIELD timezone.address TYPE integer... | {"timezone":{"level":"level_2","tile":"option_c","address":739},"values":"2023-08-13T00:46:00Z","insurance_id":277.3,"manifest_ref":94.71} | extra_field | {
"type": "object",
"properties": {
"timezone": {
"type": "object",
"properties": {
"level": {
"type": "string",
"enum": [
"level_1",
"level_2"
]
},
"tile": {
"type": "string",
"enum": [
"op... | {"timezone": {"level": "level_2", "tile": "option_c", "address": 739}, "values": "2023-08-13T00:46:00Z", "insurance_id": 277.3, "manifest_ref": 94.71, "extra_field_9375": 42} | Unknown field 'extra_field_9375' not defined in schema | {"timezone":{"level":"level_2","tile":"option_c","address":739},"values":"2023-08-13T00:46:00Z","insurance_id":277.3,"manifest_ref":94.71} |
TASK repair_structured_output
SPEC
FIELD val_d02 TYPE string_uri REQUIRED yes
FIELD prop_l00 TYPE integer REQUIRED no
FIELD key_z53 TYPE string REQUIRED yes
FIELD col_t52 TYPE number REQUIRED no
FIELD col_h60.field_j40 TYPE string REQUIRED no
FIELD col_h60.col_l27 TYPE string REQUIRED no
FIELD col_h60.prop_v70.field_t... | {"val_d02":"https://data.io/data","prop_l00":391,"key_z53":"Diana","col_t52":253.78,"col_h60":{"field_j40":"Paris","prop_v70":{"dim_r03":"missense","key_f59":"2026-04-03T22:28:00Z","key_m27":"2021-08-01T16:52:00Z","dim_p73":"info@test.io","col_d94":"type_c"},"param_j01":501.36,"dim_b09":881.0,"col_c43":193.52},"dim_s77... | tool_call_python_syntax | {
"type": "object",
"properties": {
"val_d02": {
"type": "string",
"format": "uri"
},
"prop_l00": {
"type": "integer"
},
"key_z53": {
"type": "string"
},
"col_t52": {
"type": "number"
},
"col_h60": {
"type": "object",
"properties": {
... | get_weather(val_d02='https://data.io/data', prop_l00=391, key_z53='Diana', col_t52=253.78, col_h60={'field_j40': 'Paris', 'prop_v70': {'dim_r03': 'missense', 'key_f59': '2026-04-03T22:28:00Z', 'key_m27': '2021-08-01T16:52:00Z', 'dim_p73': 'info@test.io', 'col_d94': 'type_c'}, 'param_j01': 501.36, 'dim_b09': 881.0, 'col... | Tool call uses Python syntax instead of JSON | {"val_d02":"https://data.io/data","prop_l00":391,"key_z53":"Diana","col_t52":253.78,"col_h60":{"field_j40":"Paris","prop_v70":{"dim_r03":"missense","key_f59":"2026-04-03T22:28:00Z","key_m27":"2021-08-01T16:52:00Z","dim_p73":"info@test.io","col_d94":"type_c"},"param_j01":501.36,"dim_b09":881.0,"col_c43":193.52},"dim_s77... |
TASK repair_structured_output
SPEC
FIELD param_u77 TYPE integer REQUIRED yes
FIELD field_l39 TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD val_j64 TYPE integer REQUIRED no
FIELD dim_q03 TYPE string_uri REQUIRED yes
FIELD dim_l69[] TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED ... | {"param_u77":878,"dim_q03":"https://example.com/data","dim_l69":["level_5"]} | missing_brace | {
"type": "object",
"properties": {
"param_u77": {
"type": "integer"
},
"field_l39": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"val_j64": {
"type": "integer"
},
"dim_q03": {
"type": "string",
... | {"param_u77":878,"dim_q03":"https://example.com/data","dim_l69":["level_5"] | Missing closing brace | {"param_u77":878,"dim_q03":"https://example.com/data","dim_l69":["level_5"]} |
TASK repair_structured_output
SPEC
FIELD val_q73 TYPE number REQUIRED no
FIELD prop_m50 TYPE string_uri REQUIRED no
FIELD key_k90 TYPE string VALUES success|error|warning|info REQUIRED no
FIELD val_j00 TYPE integer REQUIRED yes
FIELD attr_z05 TYPE string REQUIRED no
FIELD param_f00.param_l15 TYPE string VALUES success... | {"val_q73":512.73,"key_k90":"error","val_j00":498,"param_f00":{"param_l15":"success","field_n75":"test@example.com","prop_b61":false,"prop_q86":404,"dim_t08":"basic","attr_m08":"sms"}} | unquoted_keys | {
"type": "object",
"properties": {
"val_q73": {
"type": "number"
},
"prop_m50": {
"type": "string",
"format": "uri"
},
"key_k90": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"val_j00": {
... | {val_q73:512.73,key_k90:"error",val_j00:498,param_f00:{param_l15:"success",field_n75:"test@example.com",prop_b61:false,prop_q86:404,dim_t08:"basic",attr_m08:"sms"}} | Expecting property name enclosed in double quotes | {"val_q73":512.73,"key_k90":"error","val_j00":498,"param_f00":{"param_l15":"success","field_n75":"test@example.com","prop_b61":false,"prop_q86":404,"dim_t08":"basic","attr_m08":"sms"}} |
TASK repair_structured_output
SPEC
FIELD end_date TYPE integer REQUIRED yes
FIELD decay_rate TYPE integer REQUIRED no
FIELD conductivity.format TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD conductivity.options TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD conductivity.updated_at TYPE intege... | {"end_date":862,"decay_rate":968,"conductivity":{"format":"low","options":"JPY","updated_at":861,"status_code":553.49,"dissolved_oxygen":"Oliveira","account_id":"Bob"},"due_date":{"lane":false,"count":"REV","currency":{"visible":"active","due_date":"test@domain.org","type":null,"size":"confirmed","shipper_ref":"inland"... | tool_call_python_syntax | {
"type": "object",
"properties": {
"end_date": {
"type": "integer"
},
"decay_rate": {
"type": "integer"
},
"conductivity": {
"type": "object",
"properties": {
"format": {
"type": "string",
"enum": [
"low",
"medium",
... | verify_hazmat_compliance(end_date=862, decay_rate=968, conductivity={'format': 'low', 'options': 'JPY', 'updated_at': 861, 'status_code': 553.49, 'dissolved_oxygen': 'Oliveira', 'account_id': 'Bob'}, due_date={'lane': False, 'count': 'REV', 'currency': {'visible': 'active', 'due_date': 'test@domain.org', 'type': None, ... | Tool call uses Python syntax instead of JSON | {"end_date":862,"decay_rate":968,"conductivity":{"format":"low","options":"JPY","updated_at":861,"status_code":553.49,"dissolved_oxygen":"Oliveira","account_id":"Bob"},"due_date":{"lane":false,"count":"REV","currency":{"visible":"active","due_date":"test@domain.org","type":null,"size":"confirmed","shipper_ref":"inland"... |
TASK repair_structured_output
SPEC
FIELD price TYPE string REQUIRED no
FIELD lab_result TYPE integer REQUIRED no
FIELD barcode TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD gene_id[] TYPE integer REQUIRED yes
BROKEN_OUTPUT
{"barcode": "invalid_value_138", "gene_id": [347, 695, 144]} | {"barcode":"in_progress","gene_id":[347,695,144]} | invalid_enum | {
"type": "object",
"properties": {
"price": {
"type": "string"
},
"lab_result": {
"type": "integer"
},
"barcode": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"gene_id": {
"type": "arra... | {"barcode": "invalid_value_138", "gene_id": [347, 695, 144]} | Field 'barcode' has invalid enum value 'invalid_value_138', expected one of ['open', 'in_progress', 'resolved', 'closed'] | {"barcode":"in_progress","gene_id":[347,695,144]} |
TASK repair_structured_output
SPEC
FIELD values TYPE number REQUIRED no
FIELD email TYPE integer REQUIRED no
FIELD throttle_pos TYPE string_email REQUIRED yes
FIELD quantity TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD items[] TYPE number REQUIRED yes
FIELD duration_ms[] TYPE string REQUIRED no
BROKEN_... | {"values":246.0,"email":771,"throttle_pos":"user@test.io","quantity":"xl","items":[605.86,446.49,495.26],"duration_ms":["completed"]} | agent_chain | {
"type": "object",
"properties": {
"values": {
"type": "number"
},
"email": {
"type": "integer"
},
"throttle_pos": {
"type": "string",
"format": "email"
},
"quantity": {
"type": "string",
"enum": [
"small",
"medium",
"large",
... | I need to look up the information first.
Action: query_port_status
Result: {"values": 246.0, "email": 771, "throttle_pos": "user@test.io", "items": [605.86, 446.49, 495.26], "duration_ms": ["completed"]}
Processing the request now.
Action: get_account
Result: | Agent multi-step chain with truncated tool output | {"values":246.0,"email":771,"throttle_pos":"user@test.io","quantity":"xl","items":[605.86,446.49,495.26],"duration_ms":["completed"]} |
TASK repair_structured_output
SPEC
FIELD param_r39 TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD prop_g18 TYPE null REQUIRED no
FIELD key_q12 TYPE null REQUIRED no
FIELD attr_l33 TYPE string REQUIRED no
FIELD prop_p89 TYPE string VALUES active|inactive|pending REQUIRED yes
BROKEN_OUTPUT
{"param_r39": ... | {"param_r39":"low","prop_g18":null,"key_q12":null,"prop_p89":"inactive"} | missing_required | {
"type": "object",
"properties": {
"param_r39": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"prop_g18": {
"type": "null"
},
"key_q12": {
"type": "null"
},
"attr_l33": {
"type": "string"
},... | {"param_r39": "low", "prop_g18": null, "key_q12": null} | Required field 'prop_p89' is missing | {"param_r39":"low","prop_g18":null,"key_q12":null,"prop_p89":"inactive"} |
TASK repair_structured_output
SPEC
FIELD description TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD collateral TYPE number REQUIRED no
FIELD language TYPE string REQUIRED no
FIELD full_name TYPE integer REQUIRED no
FIELD log_level TYPE string_date-time REQUIRED no
FIELD shipper_ref TYPE string VALU... | {"description":"oceanic","language":"Luis","full_name":507,"format":673,"length":"Berlin"} | tool_call_text_mix | {
"type": "object",
"properties": {
"description": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
},
"collateral": {
"type": "number"
},
"language": {
"type": "string"
},
"full_name": {
"type": ... | Let me check the system.
<tool_call name="queue_sequencing_run">
{"description":"oceanic","language":"Luis","full_name":507,"format":673,"length":"Berlin"}
</tool_call.
Done! | Agent response mixes reasoning text with tool call | {"description":"oceanic","language":"Luis","full_name":507,"format":673,"length":"Berlin"} |
TASK repair_structured_output
SPEC
FIELD attr_y55 TYPE number REQUIRED yes
FIELD dim_r64 TYPE integer REQUIRED no
FIELD param_k06[] TYPE integer REQUIRED no
BROKEN_OUTPUT
{"attr_y55":306.96,"param_k06":[585] | {"attr_y55":306.96,"param_k06":[585]} | missing_brace | {
"type": "object",
"properties": {
"attr_y55": {
"type": "number"
},
"dim_r64": {
"type": "integer"
},
"param_k06": {
"type": "array",
"items": {
"type": "integer"
}
}
},
"required": [
"attr_y55"
]
} | {"attr_y55":306.96,"param_k06":[585] | Missing closing brace | {"attr_y55":306.96,"param_k06":[585]} |
TASK repair_structured_output
SPEC
FIELD key_a05 TYPE null REQUIRED no
FIELD col_w36 TYPE integer REQUIRED yes
FIELD dim_d27 TYPE string REQUIRED no
FIELD col_s96.param_w17 TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD col_s96.val_g49 TYPE string REQUIRED no
FIELD col_s96.col_n12 TYPE string_date-time REQUI... | {"key_a05":null,"col_w36":922,"col_s96":{"param_w17":"admin","val_g49":"world","col_n12":"2021-03-09T09:35:00Z"}} | tool_call_partial_args | {
"type": "object",
"properties": {
"key_a05": {
"type": "null"
},
"col_w36": {
"type": "integer"
},
"dim_d27": {
"type": "string"
},
"col_s96": {
"type": "object",
"properties": {
"param_w17": {
"type": "string",
"enum": [
... | I need to look up the information first.
Action: search
Arguments: {"key_a05": null, "col_s96": {"param_w17": "admin", "val_g49": "world", "col_n12": "2021-03-09T09:35:00Z"}} | Agent tool call missing required parameter 'col_w36' | {"key_a05":null,"col_w36":922,"col_s96":{"param_w17":"admin","val_g49":"world","col_n12":"2021-03-09T09:35:00Z"}} |
TASK repair_structured_output
SPEC
FIELD prop_t53 TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD val_z26.val_l89 TYPE string REQUIRED no
FIELD val_z26.field_d40 TYPE string REQUIRED yes
FIELD val_z26.val_k52 TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD val_z26.val_n23.attr_d71 TYPE string ... | {"val_z26":{"val_l89":"REV","field_d40":"Berlin","val_k52":"pro","val_n23":{"attr_d71":"draft","val_j51":444,"dim_n59":782,"key_q99":"2020-02-16T19:58:00Z","col_l95":"frameshift"},"col_e71":"pending_review","col_g71":null},"val_h02":{"attr_q00":"married","prop_k85":"hello","param_x25":"critical"}} | unquoted_keys | {
"type": "object",
"properties": {
"prop_t53": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"val_z26": {
"type": "object",
"properties": {
"val_l89": {
"type": "string"
},
"field_d40": {
... | {val_z26:{val_l89:"REV",field_d40:"Berlin",val_k52:"pro",val_n23:{attr_d71:"draft",val_j51:444,dim_n59:782,key_q99:"2020-02-16T19:58:00Z",col_l95:"frameshift"},col_e71:"pending_review",col_g71:null},val_h02:{attr_q00:"married",prop_k85:"hello",param_x25:"critical"}} | Expecting property name enclosed in double quotes | {"val_z26":{"val_l89":"REV","field_d40":"Berlin","val_k52":"pro","val_n23":{"attr_d71":"draft","val_j51":444,"dim_n59":782,"key_q99":"2020-02-16T19:58:00Z","col_l95":"frameshift"},"col_e71":"pending_review","col_g71":null},"val_h02":{"attr_q00":"married","prop_k85":"hello","param_x25":"critical"}} |
TASK repair_structured_output
SPEC
FIELD gene_id.country TYPE string VALUES option_a|option_b REQUIRED no
FIELD gene_id.turbidity TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED yes
FIELD gene_id.index.amount TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD gene_id.index.ward TYPE numbe... | {"gene_id":{"country":"option_b","turbidity":"cat_c","index":{"amount":"resolved","currency":false,"longitude":"option_a"},"message":{"lab_result":"active","strand":"rejected"}},"features":726,"first_name":false,"index":"cat_a"} | tool_call_text_mix | {
"type": "object",
"properties": {
"gene_id": {
"type": "object",
"properties": {
"country": {
"type": "string",
"enum": [
"option_a",
"option_b"
]
},
"turbidity": {
"type": "string",
"enum": [
... | I need to look up the information first.
<tool_call name="read_sensor_array">
{"gene_id":{"country":"option_b","turbidity":"cat_c","index":{"amount":"resolved","currency":false,"longitude":"option_a"},"message":{"lab_result":"active","strand":"rejected"}},"features":726,"first_name":false,"index":"cat_a"}
</tool_call.
... | Agent response mixes reasoning text with tool call | {"gene_id":{"country":"option_b","turbidity":"cat_c","index":{"amount":"resolved","currency":false,"longitude":"option_a"},"message":{"lab_result":"active","strand":"rejected"}},"features":726,"first_name":false,"index":"cat_a"} |
TASK repair_structured_output
SPEC
FIELD options TYPE integer REQUIRED yes
FIELD total TYPE null REQUIRED yes
FIELD collateral[].width TYPE string REQUIRED no
FIELD collateral[].length TYPE integer REQUIRED no
FIELD collateral[].run_id TYPE integer REQUIRED no
FIELD collateral[].terminal_id TYPE string REQUIRED no
FIE... | {"options":425,"total":null,"collateral":[{"width":"test@example.com","run_id":901,"terminal_id":"chrX","date":545.34,"color":"2024-01-15"},{"width":"Alice","run_id":599,"terminal_id":"qux","date":167.13,"color":"user@domain.com"},{"length":292,"run_id":133,"terminal_id":"foo","color":"2023-12-25"},{"width":"https://ap... | extra_text_after | {
"type": "object",
"properties": {
"options": {
"type": "integer"
},
"total": {
"type": "null"
},
"collateral": {
"type": "array",
"items": {
"type": "object",
"properties": {
"width": {
"type": "string"
},
"lengt... | {"options":425,"total":null,"collateral":[{"width":"test@example.com","run_id":901,"terminal_id":"chrX","date":545.34,"color":"2024-01-15"},{"width":"Alice","run_id":599,"terminal_id":"qux","date":167.13,"color":"user@domain.com"},{"length":292,"run_id":133,"terminal_id":"foo","color":"2023-12-25"},{"width":"https://ap... | Output contains non-JSON text after the object | {"options":425,"total":null,"collateral":[{"width":"test@example.com","run_id":901,"terminal_id":"chrX","date":545.34,"color":"2024-01-15"},{"width":"Alice","run_id":599,"terminal_id":"qux","date":167.13,"color":"user@domain.com"},{"length":292,"run_id":133,"terminal_id":"foo","color":"2023-12-25"},{"width":"https://ap... |
TASK repair_structured_output
SPEC
FIELD param_l34.prop_n16 TYPE integer REQUIRED yes
FIELD param_l34.attr_p69 TYPE number REQUIRED no
FIELD param_l34.dim_q13 TYPE boolean REQUIRED no
FIELD param_l34.attr_u02 TYPE integer REQUIRED yes
FIELD param_l34.prop_w56.field_k79 TYPE number REQUIRED yes
FIELD param_l34.prop_w56... | {"param_l34":{"prop_n16":730,"attr_p69":356.69,"dim_q13":false,"attr_u02":143,"prop_w56":{"field_k79":522.12,"prop_y67":"success","param_y16":"active"}},"attr_l69":true,"key_f27":"2021-10-22T19:27:00Z","col_k60":"pending"} | synonym_enum | {
"type": "object",
"properties": {
"param_l34": {
"type": "object",
"properties": {
"prop_n16": {
"type": "integer"
},
"attr_p69": {
"type": "number"
},
"dim_q13": {
"type": "boolean"
},
"attr_u02": {
"t... | {"param_l34": {"prop_n16": 730, "attr_p69": 356.69, "dim_q13": false, "attr_u02": 143, "prop_w56": {"field_k79": 522.12, "prop_y67": "success", "param_y16": "active"}}, "attr_l69": true, "key_f27": "2021-10-22T19:27:00Z", "col_k60": "waiting"} | Field 'col_k60' has synonym 'waiting' instead of valid enum value | {"param_l34":{"prop_n16":730,"attr_p69":356.69,"dim_q13":false,"attr_u02":143,"prop_w56":{"field_k79":522.12,"prop_y67":"success","param_y16":"active"}},"attr_l69":true,"key_f27":"2021-10-22T19:27:00Z","col_k60":"pending"} |
TASK repair_structured_output
SPEC
FIELD items TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD rating TYPE string REQUIRED no
FIELD values TYPE string_uri REQUIRED no
FIELD lab_result TYPE boolean REQUIRED no
BROKEN_OUTPUT
{"items":"high","rating":"inactive","values":"https://www.com/data","lab_result"... | {"items":"high","rating":"inactive","values":"https://www.com/data","lab_result":true} | trailing_comma | {
"type": "object",
"properties": {
"items": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"rating": {
"type": "string"
},
"values": {
"type": "string",
"format": "uri"
},
"lab_result": {
"... | {"items":"high","rating":"inactive","values":"https://www.com/data","lab_result":true,} | Unexpected trailing comma | {"items":"high","rating":"inactive","values":"https://www.com/data","lab_result":true} |
TASK repair_structured_output
SPEC
FIELD decay_rate TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD currency TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD duration_ms TYPE number REQUIRED yes
FIELD wavelength TYPE boolean REQUIRED no
FIELD message TYPE string VALUES pending_revie... | {"duration_ms":944.17,"wavelength":true,"message":"confirmed","thumbnail":"active","crew_id":"new"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"decay_rate": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"currency": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
... | calculate_price(duration_ms=944.17, wavelength=True, message='confirmed', thumbnail='active', crew_id='new') | Tool call uses Python syntax instead of JSON | {"duration_ms":944.17,"wavelength":true,"message":"confirmed","thumbnail":"active","crew_id":"new"} |
TASK repair_structured_output
SPEC
FIELD val_h50.key_t09 TYPE string REQUIRED yes
FIELD val_h50.key_u31 TYPE string REQUIRED yes
FIELD val_h50.prop_c31 TYPE string REQUIRED no
FIELD val_h50.col_p76 TYPE boolean REQUIRED no
FIELD val_r17 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED no
FIELD val_l41 TY... | {"val_h50":{"key_t09":"active","key_u31":"active","col_p76":true},"val_l41":"Luis","col_a06":"2023-12-25","param_r00":{"param_r46":"https://www.io/api","col_j72":"Oliveira","param_h19":606.54,"attr_x67":false,"key_o87":945,"dim_d48":532.24},"dim_i60":"https://www.com/v1"} | null_required | {
"type": "object",
"properties": {
"val_h50": {
"type": "object",
"properties": {
"key_t09": {
"type": "string"
},
"key_u31": {
"type": "string"
},
"prop_c31": {
"type": "string"
},
"col_p76": {
"type": ... | {"val_h50": {"key_t09": "active", "key_u31": "active", "col_p76": true}, "val_l41": "Luis", "col_a06": null, "param_r00": {"param_r46": "https://www.io/api", "col_j72": "Oliveira", "param_h19": 606.54, "attr_x67": false, "key_o87": 945, "dim_d48": 532.24}, "dim_i60": "https://www.com/v1"} | Required field 'col_a06' is null | {"val_h50":{"key_t09":"active","key_u31":"active","col_p76":true},"val_l41":"Luis","col_a06":"2023-12-25","param_r00":{"param_r46":"https://www.io/api","col_j72":"Oliveira","param_h19":606.54,"attr_x67":false,"key_o87":945,"dim_d48":532.24},"dim_i60":"https://www.com/v1"} |
TASK repair_structured_output
SPEC
FIELD shift_code TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD quantity TYPE boolean REQUIRED yes
FIELD language TYPE integer REQUIRED no
FIELD altitude TYPE integer REQUIRED no
FIELD aligned_pct TYPE string_uri REQUIRED yes
FIELD filter_flag TYPE string VA... | {"shift_code":"heterozygous","quantity":true,"language":506,"aligned_pct":"https://www.io/v1","filter_flag":"pending_review","catalyst":true} | extra_text_after | {
"type": "object",
"properties": {
"shift_code": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"quantity": {
"type": "boolean"
},
"language": {
"type": "integer"
},
"altitude": {
"type": "integer... | {"shift_code":"heterozygous","quantity":true,"language":506,"aligned_pct":"https://www.io/v1","filter_flag":"pending_review","catalyst":true}
Let me know if you need anything else! | Output contains non-JSON text after the object | {"shift_code":"heterozygous","quantity":true,"language":506,"aligned_pct":"https://www.io/v1","filter_flag":"pending_review","catalyst":true} |
TASK repair_structured_output
SPEC
FIELD field_y22 TYPE string REQUIRED yes
FIELD key_c32 TYPE number REQUIRED yes
FIELD param_p35[].field_u44 TYPE string VALUES option_a|option_b|option_c REQUIRED no
FIELD param_p35[].field_t67 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD param_p35[].c... | {"field_y22":"Johnson","key_c32":642.4,"param_p35":[{"field_t67":"frameshift","col_f39":[598,916],"field_i64":["active"]},{"field_u44":"option_b","field_t67":"nonsense","col_f39":[538,470],"field_i64":["A short description."]},{"field_t67":"synonymous","col_f39":[964,347,169],"field_i64":["London"]}]} | number_with_unit | {
"type": "object",
"properties": {
"field_y22": {
"type": "string"
},
"key_c32": {
"type": "number"
},
"param_p35": {
"type": "array",
"items": {
"type": "object",
"properties": {
"field_u44": {
"type": "string",
"enum": ... | {"field_y22": "Johnson", "key_c32": "642.4px", "param_p35": [{"field_t67": "frameshift", "col_f39": [598, 916], "field_i64": ["active"]}, {"field_u44": "option_b", "field_t67": "nonsense", "col_f39": [538, 470], "field_i64": ["A short description."]}, {"field_t67": "synonymous", "col_f39": [964, 347, 169], "field_i64":... | Field 'key_c32' must be number, got string with unit | {"field_y22":"Johnson","key_c32":642.4,"param_p35":[{"field_t67":"frameshift","col_f39":[598,916],"field_i64":["active"]},{"field_u44":"option_b","field_t67":"nonsense","col_f39":[538,470],"field_i64":["A short description."]},{"field_t67":"synonymous","col_f39":[964,347,169],"field_i64":["London"]}]} |
TASK repair_structured_output
SPEC
FIELD user_id TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD notes TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD chromosome TYPE string VALUES success|error|warning|info REQUIRED no
FIELD hazmat_code TYPE number REQUIRED no
FIELD role TYPE string REQUIRED ye... | {"user_id":"editor","notes":"critical","chromosome":"error","role":"inactive","decay_rate":887.08,"items":"offline"} | invalid_enum | {
"type": "object",
"properties": {
"user_id": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"notes": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"chromosome": ... | {"user_id": "editor", "notes": "critical", "chromosome": "error", "role": "inactive", "decay_rate": 887.08, "items": "invalid_value_637"} | Field 'items' has invalid enum value 'invalid_value_637', expected one of ['operational', 'degraded', 'offline', 'maintenance'] | {"user_id":"editor","notes":"critical","chromosome":"error","role":"inactive","decay_rate":887.08,"items":"offline"} |
TASK repair_structured_output
SPEC
FIELD field_x96 TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED no
FIELD val_t68 TYPE string REQUIRED yes
FIELD val_q13 TYPE integer REQUIRED yes
FIELD param_j38 TYPE string REQUIRED yes
FIELD col_s36 TYPE string REQUIRED no
BROKEN_OUTPUT
{"field_x96": "l... | {"field_x96":"level_2","val_t68":"completed","val_q13":422,"param_j38":"Tokyo","col_s36":"qux"} | missing_required | {
"type": "object",
"properties": {
"field_x96": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"level_5",
"level_6"
]
},
"val_t68": {
"type": "string"
},
"val_q13": {
"type": "integer"
}... | {"field_x96": "level_2", "val_q13": 422, "param_j38": "Tokyo", "col_s36": "qux"} | Required field 'val_t68' is missing | {"field_x96":"level_2","val_t68":"completed","val_q13":422,"param_j38":"Tokyo","col_s36":"qux"} |
TASK repair_structured_output
SPEC
FIELD email TYPE number REQUIRED yes
FIELD throttle_pos TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED yes
FIELD state TYPE boolean REQUIRED yes
BROKEN_OUTPUT
Tool: verify_hazmat_compliance
Params: {"throttle_pos": "level_1", "state": false, "email_name"... | {"email":770.13,"throttle_pos":"level_1","state":false} | tool_call_wrong_param | {
"type": "object",
"properties": {
"email": {
"type": "number"
},
"throttle_pos": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"level_5",
"level_6"
]
},
"state": {
"type": "boolean"
}
... | Tool: verify_hazmat_compliance
Params: {"throttle_pos": "level_1", "state": false, "email_name": 770.13} | Agent used wrong parameter name 'email_name' instead of 'email' | {"email":770.13,"throttle_pos":"level_1","state":false} |
TASK repair_structured_output
SPEC
FIELD rating TYPE boolean REQUIRED no
FIELD isotope TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED no
FIELD account_id TYPE string REQUIRED no
FIELD order_id TYPE string VALUES type_a|type_b|type_c REQUIRED yes
FIELD priority TYPE string VALUES pending_review|confirmed|rejec... | {"rating":false,"isotope":"type_a","account_id":"chrX","order_id":"type_c","priority":"escalated","aligned_pct":{"brake_pressure":"test@example.com","crew_id":null,"vital_sign":856,"department":250,"lane":{"lane":"degraded","priority":"inactive","first_name":"cat_a","span_id":"John"},"consignee":"RTG-04","amplitude":"s... | wrong_type | {
"type": "object",
"properties": {
"rating": {
"type": "boolean"
},
"isotope": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d"
]
},
"account_id": {
"type": "string"
},
"order_id": {
"type": "string"... | {"rating": "\"no\"", "isotope": "type_a", "account_id": "chrX", "order_id": "type_c", "priority": "escalated", "aligned_pct": {"brake_pressure": "test@example.com", "crew_id": null, "vital_sign": 856, "department": 250, "lane": {"lane": "degraded", "priority": "inactive", "first_name": "cat_a", "span_id": "John"}, "con... | Field 'rating' must be boolean, got string | {"rating":false,"isotope":"type_a","account_id":"chrX","order_id":"type_c","priority":"escalated","aligned_pct":{"brake_pressure":"test@example.com","crew_id":null,"vital_sign":856,"department":250,"lane":{"lane":"degraded","priority":"inactive","first_name":"cat_a","span_id":"John"},"consignee":"RTG-04","amplitude":"s... |
TASK repair_structured_output
SPEC
FIELD key_v36 TYPE boolean REQUIRED yes
FIELD field_q35 TYPE number REQUIRED yes
FIELD col_c44.prop_m49 TYPE string REQUIRED no
FIELD col_c44.field_x57 TYPE null REQUIRED no
FIELD col_c44.field_i04 TYPE number REQUIRED yes
FIELD col_c44.key_x74.prop_q95 TYPE boolean REQUIRED yes
FIEL... | {"key_v36":true,"field_q35":617.27,"col_c44":{"field_x57":null,"field_i04":30.03,"key_x74":{"prop_q95":true,"attr_f05":"Luis"},"key_k63":{"prop_i94":"cat_d","field_h25":672,"param_w31":"https://data.org/v1","key_h61":null,"col_s53":"option_b","field_a73":"2022-09-12T19:31:00Z"}},"key_u92":"bar","col_k93":"level_1","key... | extra_text_after | {
"type": "object",
"properties": {
"key_v36": {
"type": "boolean"
},
"field_q35": {
"type": "number"
},
"col_c44": {
"type": "object",
"properties": {
"prop_m49": {
"type": "string"
},
"field_x57": {
"type": "null"
},
... | {"key_v36":true,"field_q35":617.27,"col_c44":{"field_x57":null,"field_i04":30.03,"key_x74":{"prop_q95":true,"attr_f05":"Luis"},"key_k63":{"prop_i94":"cat_d","field_h25":672,"param_w31":"https://data.org/v1","key_h61":null,"col_s53":"option_b","field_a73":"2022-09-12T19:31:00Z"}},"key_u92":"bar","col_k93":"level_1","key... | Output contains non-JSON text after the object | {"key_v36":true,"field_q35":617.27,"col_c44":{"field_x57":null,"field_i04":30.03,"key_x74":{"prop_q95":true,"attr_f05":"Luis"},"key_k63":{"prop_i94":"cat_d","field_h25":672,"param_w31":"https://data.org/v1","key_h61":null,"col_s53":"option_b","field_a73":"2022-09-12T19:31:00Z"}},"key_u92":"bar","col_k93":"level_1","key... |
TASK repair_structured_output
SPEC
FIELD param_d82 TYPE string VALUES single|married|divorced REQUIRED no
FIELD key_t03 TYPE string VALUES success|error|warning|info REQUIRED yes
FIELD prop_s48 TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
BROKEN_OUTPUT
{"param_d82":"married","key_t03":"info","prop... | {"param_d82":"married","key_t03":"info","prop_s48":"open"} | missing_brace | {
"type": "object",
"properties": {
"param_d82": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"key_t03": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"pro... | {"param_d82":"married","key_t03":"info","prop_s48":"open" | Missing closing brace | {"param_d82":"married","key_t03":"info","prop_s48":"open"} |
TASK repair_structured_output
SPEC
FIELD param_i54 TYPE integer REQUIRED no
FIELD col_r75 TYPE integer REQUIRED yes
FIELD field_r03 TYPE string REQUIRED yes
FIELD col_o92.field_u67 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD col_o92.param_y79 TYPE string VALUES synonymous|missense|nonsense|frame... | {"param_i54":921,"col_r75":176,"field_r03":"GRCh38","col_o92":{"field_u67":"coastal","param_y79":"synonymous","attr_k38":"2023-12-25","field_i18":654,"dim_o23":"This is a test value."},"param_z01":{"param_d31":964,"field_n45":"Santos","col_l12":false,"key_j48":"synonymous","dim_n77":"underway"}} | single_quotes | {
"type": "object",
"properties": {
"param_i54": {
"type": "integer"
},
"col_r75": {
"type": "integer"
},
"field_r03": {
"type": "string"
},
"col_o92": {
"type": "object",
"properties": {
"field_u67": {
"type": "string",
"enum": [... | {'param_i54':921,'col_r75':176,'field_r03':'GRCh38','col_o92':{'field_u67':'coastal','param_y79':'synonymous','attr_k38':'2023-12-25','field_i18':654,'dim_o23':'This is a test value.'},'param_z01':{'param_d31':964,'field_n45':'Santos','col_l12':false,'key_j48':'synonymous','dim_n77':'underway'}} | Expecting property name enclosed in double quotes | {"param_i54":921,"col_r75":176,"field_r03":"GRCh38","col_o92":{"field_u67":"coastal","param_y79":"synonymous","attr_k38":"2023-12-25","field_i18":654,"dim_o23":"This is a test value."},"param_z01":{"param_d31":964,"field_n45":"Santos","col_l12":false,"key_j48":"synonymous","dim_n77":"underway"}} |
TASK repair_structured_output
SPEC
FIELD key_s50 TYPE string REQUIRED yes
FIELD val_n35 TYPE string_uri REQUIRED no
FIELD dim_u39.prop_x31 TYPE string_email REQUIRED yes
FIELD dim_u39.col_q47 TYPE string VALUES draft|published|archived REQUIRED no
FIELD dim_u39.val_m68 TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e ... | {"key_s50":"test","val_n35":"https://api.com/data","dim_u39":{"prop_x31":"info@domain.org","val_m68":"cat_e"},"key_c20":"active"} | markdown_explanation | {
"type": "object",
"properties": {
"key_s50": {
"type": "string"
},
"val_n35": {
"type": "string",
"format": "uri"
},
"dim_u39": {
"type": "object",
"properties": {
"prop_x31": {
"type": "string",
"format": "email"
},
"co... | I've generated the following JSON:
```json
{"key_s50":"test","val_n35":"https://api.com/data","dim_u39":{"prop_x31":"info@domain.org","val_m68":"cat_e"},"key_c20":"active"}
```
Data logged successfully. | Output contains markdown and explanatory text around JSON | {"key_s50":"test","val_n35":"https://api.com/data","dim_u39":{"prop_x31":"info@domain.org","val_m68":"cat_e"},"key_c20":"active"} |
TASK repair_structured_output
SPEC
FIELD priority TYPE string VALUES single|married|divorced REQUIRED yes
FIELD dissolved_oxygen TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD status_code TYPE string_date-time REQUIRED no
FIELD frequency_hz TYPE string REQUIRED yes
FIELD conductivity TYPE null REQU... | {"priority":"married","status_code":"2021-09-08T07:53:00Z","frequency_hz":"quux","conductivity":null} | missing_required | {
"type": "object",
"properties": {
"priority": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"dissolved_oxygen": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
... | {"priority": "married", "status_code": "2021-09-08T07:53:00Z", "conductivity": null} | Required field 'frequency_hz' is missing | {"priority":"married","status_code":"2021-09-08T07:53:00Z","frequency_hz":"quux","conductivity":null} |
TASK repair_structured_output
SPEC
FIELD val_m03 TYPE integer REQUIRED yes
FIELD col_h85 TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD dim_d14.key_p22 TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD dim_d14.val_m32 TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD dim_d1... | {"val_m03":488,"col_h85":"active","dim_d14":{"key_p22":"berthed","val_m32":"large"},"key_d12":{"field_b10":955,"key_d62":"small","prop_b10":"published","field_p44":false}} | truncated_array | {
"type": "object",
"properties": {
"val_m03": {
"type": "integer"
},
"col_h85": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
},
"dim_d14": {
"type": "object",
"properties": {
"key_p22": {
"type": "s... | {"val_m03":488,"col_h85":"active","dim_d14":{"key_p22":"berthed","val_m32":"large"},"key_d12":{"field_b10":955,"key_d62":"small","prop_b10":"published","field_p44":false} | Unexpected end of JSON input — truncated object | {"val_m03":488,"col_h85":"active","dim_d14":{"key_p22":"berthed","val_m32":"large"},"key_d12":{"field_b10":955,"key_d62":"small","prop_b10":"published","field_p44":false}} |
TASK repair_structured_output
SPEC
FIELD dim_b67 TYPE null REQUIRED no
FIELD col_o45 TYPE integer REQUIRED no
FIELD dim_s78.col_m17 TYPE boolean REQUIRED no
FIELD dim_s78.key_p90 TYPE string_uri REQUIRED yes
FIELD dim_s78.key_l25 TYPE boolean REQUIRED yes
FIELD dim_s78.field_a35 TYPE number REQUIRED no
FIELD dim_s78.p... | {"col_o45":249,"dim_s78":{"col_m17":false,"key_p90":"https://example.io/api","key_l25":true,"field_a35":312.31,"prop_m39":null,"key_p80":"new","key_l73":"https://api.io/api"},"attr_r91":"info","key_o27":"GBP"} | tool_call_text_mix | {
"type": "object",
"properties": {
"dim_b67": {
"type": "null"
},
"col_o45": {
"type": "integer"
},
"dim_s78": {
"type": "object",
"properties": {
"col_m17": {
"type": "boolean"
},
"key_p90": {
"type": "string",
"form... | Let me check the system.
<tool_call name="lookup_customer">
{"col_o45":249,"dim_s78":{"col_m17":false,"key_p90":"https://example.io/api","key_l25":true,"field_a35":312.31,"prop_m39":null,"key_p80":"new","key_l73":"https://api.io/api"},"attr_r91":"info","key_o27":"GBP"}
</tool_call. | Agent response mixes reasoning text with tool call | {"col_o45":249,"dim_s78":{"col_m17":false,"key_p90":"https://example.io/api","key_l25":true,"field_a35":312.31,"prop_m39":null,"key_p80":"new","key_l73":"https://api.io/api"},"attr_r91":"info","key_o27":"GBP"} |
TASK repair_structured_output
SPEC
FIELD val_k37 TYPE string VALUES single|married|divorced REQUIRED no
FIELD param_l79 TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD param_k88 TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD col_z61 TYPE integer REQUIRED yes
BROKEN_OUTPUT
{"va... | {"val_k37":"single","param_l79":"basic","param_k88":"returned","col_z61":4} | truncated_object | {
"type": "object",
"properties": {
"val_k37": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"param_l79": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"para... | {"val_k37":"single","param_l79":"basic","param_k88":"returned","col_z61":4 | Unexpected end of JSON input — truncated object | {"val_k37":"single","param_l79":"basic","param_k88":"returned","col_z61":4} |
TASK repair_structured_output
SPEC
FIELD key_t57 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD dim_j68 TYPE integer REQUIRED no
FIELD val_h95 TYPE string VALUES active|inactive|pending REQUIRED no
FIELD attr_u98 TYPE number REQUIRED yes
FIELD key_f90[].param_l42 TYPE number REQUIRED... | {"key_t57":"rejected","attr_u98":583.27,"col_v51":[{"key_k00":"New York","val_o28":824,"prop_x22":"info@example.com"}]} | truncated_array | {
"type": "object",
"properties": {
"key_t57": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"dim_j68": {
"type": "integer"
},
"val_h95": {
"type": "string",
"enum": [
"active"... | {"key_t57":"rejected","attr_u98":583.27,"col_v51":[{"key_k00":"New York","val_o28":824,"prop_x22":"info@example.com"} | Unexpected end of JSON input — truncated array | {"key_t57":"rejected","attr_u98":583.27,"col_v51":[{"key_k00":"New York","val_o28":824,"prop_x22":"info@example.com"}]} |
TASK repair_structured_output
SPEC
FIELD company TYPE number REQUIRED no
FIELD created_at TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD username TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD phone TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD shipper_ref TYP... | {"username":"oceanic","phone":"inactive","shipper_ref":"chrX","lane":{"balance":"ops@example.com","score":"enterprise"},"length":687,"message":"Berlin"} | partial_structure | {
"type": "object",
"properties": {
"company": {
"type": "number"
},
"created_at": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"username": {
"type": "string",
"enum": [
"coastal",
... | Result: shipper_ref=chrX, {"username":"oceanic","phone":"inactive","shipper_ref":"chrX","lane":{"balance":"ops@example.com","score":"enterprise"},"length":687,"message":"Berlin"} | Output mixes natural language with JSON | {"username":"oceanic","phone":"inactive","shipper_ref":"chrX","lane":{"balance":"ops@example.com","score":"enterprise"},"length":687,"message":"Berlin"} |
TASK repair_structured_output
SPEC
FIELD language TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD status_code.salinity TYPE string_email REQUIRED no
FIELD status_code.paragraph TYPE string_email REQUIRED yes
FIELD status_code.product_id TYPE string_email REQUIRED yes
FIELD status_code... | {"language":"rejected","status_code":{"salinity":"test@domain.org","paragraph":"admin@example.com","product_id":"test@example.com","currency":"RTG-04"},"vessel_name":"admin@example.com"} | tool_call_text_mix | {
"type": "object",
"properties": {
"language": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"status_code": {
"type": "object",
"properties": {
"salinity": {
"type": "string",
... | I'll query our database.
<tool_call name="call_variants">
{"language":"rejected","status_code":{"salinity":"test@domain.org","paragraph":"admin@example.com","product_id":"test@example.com","currency":"RTG-04"},"vessel_name":"admin@example.com"}
</tool_call.
Operation completed. | Agent response mixes reasoning text with tool call | {"language":"rejected","status_code":{"salinity":"test@domain.org","paragraph":"admin@example.com","product_id":"test@example.com","currency":"RTG-04"},"vessel_name":"admin@example.com"} |
TASK repair_structured_output
SPEC
FIELD param_q81 TYPE number REQUIRED yes
FIELD val_l09.val_p23 TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD val_l09.dim_r79 TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD val_l09.prop_j18 TYPE string VALUES single|married|divorced REQUIRED no
FIEL... | {"param_q81":277.75,"val_l09":{"val_p23":"returned","dim_r79":"viewer","prop_j18":"divorced","col_d30":"2020-03-17T00:02:00Z","key_k88":"Jane"},"param_c62":null,"val_i55":{"attr_r69":false,"param_z72":false,"attr_j83":true,"key_y40":"2023-12-25","param_q30":"rejected"},"prop_k00":"A short description."} | tool_call_python_syntax | {
"type": "object",
"properties": {
"param_q81": {
"type": "number"
},
"val_l09": {
"type": "object",
"properties": {
"val_p23": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
... | process_payment(param_q81=277.75, val_l09={'val_p23': 'returned', 'dim_r79': 'viewer', 'prop_j18': 'divorced', 'col_d30': '2020-03-17T00:02:00Z', 'key_k88': 'Jane'}, param_c62=None, val_i55={'attr_r69': False, 'param_z72': False, 'attr_j83': True, 'key_y40': '2023-12-25', 'param_q30': 'rejected'}, prop_k00='A short des... | Tool call uses Python syntax instead of JSON | {"param_q81":277.75,"val_l09":{"val_p23":"returned","dim_r79":"viewer","prop_j18":"divorced","col_d30":"2020-03-17T00:02:00Z","key_k88":"Jane"},"param_c62":null,"val_i55":{"attr_r69":false,"param_z72":false,"attr_j83":true,"key_y40":"2023-12-25","param_q30":"rejected"},"prop_k00":"A short description."} |
TASK repair_structured_output
SPEC
FIELD col_k46 TYPE number REQUIRED yes
FIELD prop_a57 TYPE string REQUIRED no
FIELD col_h52.col_d32 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD col_h52.attr_w75 TYPE string_uri REQUIRED yes
FIELD col_h52.val_f65.attr_s04 TYPE string REQUIRED yes
FIEL... | {"col_k46":910.56,"prop_a57":"test@example.com","col_h52":{"attr_w75":"https://example.io/v1","val_f65":{"attr_s04":"test@example.com","field_m11":null,"key_t83":450}},"dim_n82":896,"prop_q59":{"prop_l59":"published","prop_z94":"moored","col_j90":false}} | missing_bracket | {
"type": "object",
"properties": {
"col_k46": {
"type": "number"
},
"prop_a57": {
"type": "string"
},
"col_h52": {
"type": "object",
"properties": {
"col_d32": {
"type": "string",
"enum": [
"operational",
"degraded",
... | {"col_k46":910.56,"prop_a57":"test@example.com","col_h52":{"attr_w75":"https://example.io/v1","val_f65":{"attr_s04":"test@example.com","field_m11":null,"key_t83":450}},"dim_n82":896,"prop_q59":{"prop_l59":"published","prop_z94":"moored","col_j90":false}} | Missing closing bracket | {"col_k46":910.56,"prop_a57":"test@example.com","col_h52":{"attr_w75":"https://example.io/v1","val_f65":{"attr_s04":"test@example.com","field_m11":null,"key_t83":450}},"dim_n82":896,"prop_q59":{"prop_l59":"published","prop_z94":"moored","col_j90":false}} |
TASK repair_structured_output
SPEC
FIELD attr_l42 TYPE string REQUIRED yes
FIELD prop_v88 TYPE string VALUES draft|published|archived REQUIRED no
FIELD dim_h32.dim_i30 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD dim_h32.val_n64 TYPE string VALUES single|married|divorced REQUIRED yes
F... | {"attr_l42":"chr1","dim_h32":{"dim_i30":"degraded","val_n64":"married","field_r56":"baz","prop_w93":619,"param_f40":573,"col_d10":"test@test.io"},"field_m13":"new"} | missing_bracket | {
"type": "object",
"properties": {
"attr_l42": {
"type": "string"
},
"prop_v88": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"dim_h32": {
"type": "object",
"properties": {
"dim_i30": {
"type": ... | {"attr_l42":"chr1","dim_h32":{"dim_i30":"degraded","val_n64":"married","field_r56":"baz","prop_w93":619,"param_f40":573,"col_d10":"test@test.io"},"field_m13":"new"} | Missing closing bracket | {"attr_l42":"chr1","dim_h32":{"dim_i30":"degraded","val_n64":"married","field_r56":"baz","prop_w93":619,"param_f40":573,"col_d10":"test@test.io"},"field_m13":"new"} |
TASK repair_structured_output
SPEC
FIELD param_z37 TYPE string_email REQUIRED no
FIELD param_b94 TYPE integer REQUIRED no
FIELD key_o97 TYPE integer REQUIRED no
FIELD param_n51 TYPE integer REQUIRED no
FIELD dim_h24 TYPE string_uri REQUIRED yes
FIELD param_y78 TYPE null REQUIRED no
BROKEN_OUTPUT
{param_z37:"ops@examp... | {"param_z37":"ops@example.com","param_b94":861,"param_n51":816,"dim_h24":"https://example.org/api","param_y78":null} | unquoted_keys | {
"type": "object",
"properties": {
"param_z37": {
"type": "string",
"format": "email"
},
"param_b94": {
"type": "integer"
},
"key_o97": {
"type": "integer"
},
"param_n51": {
"type": "integer"
},
"dim_h24": {
"type": "string",
"format": "... | {param_z37:"ops@example.com",param_b94:861,param_n51:816,dim_h24:"https://example.org/api",param_y78:null} | Expecting property name enclosed in double quotes | {"param_z37":"ops@example.com","param_b94":861,"param_n51":816,"dim_h24":"https://example.org/api","param_y78":null} |
TASK repair_structured_output
SPEC
FIELD prop_c30 TYPE string REQUIRED yes
FIELD dim_e16 TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED no
FIELD dim_t57 TYPE integer REQUIRED yes
FIELD dim_e04 TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED yes
FIELD key_w05.key_l84 TYPE string REQUIRED yes
FIE... | {"prop_c30":"Maria","dim_e16":"mode_c","dim_t57":767,"dim_e04":"type_c"} | markdown_fences | {
"type": "object",
"properties": {
"prop_c30": {
"type": "string"
},
"dim_e16": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d"
]
},
"dim_t57": {
"type": "integer"
},
"dim_e04": {
"type": "string",
... | ```json
{"prop_c30":"Maria","dim_e16":"mode_c","dim_t57":767,"dim_e04":"type_c"}
``` | Output contains markdown code fences | {"prop_c30":"Maria","dim_e16":"mode_c","dim_t57":767,"dim_e04":"type_c"} |
TASK repair_structured_output
SPEC
FIELD col_d52 TYPE string_email REQUIRED no
FIELD prop_j31 TYPE string REQUIRED no
FIELD param_y02 TYPE integer REQUIRED no
FIELD col_v52 TYPE string REQUIRED no
FIELD val_s12.attr_c13 TYPE string VALUES mode_a|mode_b|mode_c REQUIRED yes
FIELD val_s12.param_x50 TYPE string VALUES hom... | {"prop_j31":"Berlin","param_y02":348,"val_s12":{"attr_c13":"mode_a","param_x50":"homozygous","dim_e72":"level_1"}} | markdown_explanation | {
"type": "object",
"properties": {
"col_d52": {
"type": "string",
"format": "email"
},
"prop_j31": {
"type": "string"
},
"param_y02": {
"type": "integer"
},
"col_v52": {
"type": "string"
},
"val_s12": {
"type": "object",
"properties": {
... | Below is the JSON object:
```json
{"prop_j31":"Berlin","param_y02":348,"val_s12":{"attr_c13":"mode_a","param_x50":"homozygous","dim_e72":"level_1"}}
```
Analysis finished. | Output contains markdown and explanatory text around JSON | {"prop_j31":"Berlin","param_y02":348,"val_s12":{"attr_c13":"mode_a","param_x50":"homozygous","dim_e72":"level_1"}} |
TASK repair_structured_output
SPEC
FIELD col_n26 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD key_v58 TYPE number REQUIRED yes
FIELD col_e78[] TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED yes
BROKEN_OUTPUT
Pipeline result:
```json
{"col_n26":"pending_revie... | {"col_n26":"pending_review","key_v58":877.32,"col_e78":["mode_c","mode_e","mode_e","mode_f"]} | markdown_explanation | {
"type": "object",
"properties": {
"col_n26": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"key_v58": {
"type": "number"
},
"col_e78": {
"type": "array",
"items": {
"type": "... | Pipeline result:
```json
{"col_n26":"pending_review","key_v58":877.32,"col_e78":["mode_c","mode_e","mode_e","mode_f"]}
```
Hope this helps! | Output contains markdown and explanatory text around JSON | {"col_n26":"pending_review","key_v58":877.32,"col_e78":["mode_c","mode_e","mode_e","mode_f"]} |
TASK repair_structured_output
SPEC
FIELD field_x75 TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD val_g87 TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED yes
FIELD attr_j06[].param_f32 TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED yes
FIELD attr_j06[].d... | {"val_g87":"level_5","attr_j06":[{"param_f32":"level_4","dim_o14":"rejected","param_f85":"bar"},{"param_f32":"level_2","dim_o14":"pending_review","param_f85":"MV-Evergreen-01"},{"param_f32":"level_2","dim_o14":"confirmed","param_f85":"hello"},{"param_f32":"level_3","dim_o14":"rejected","param_f85":"New York"}],"dim_z98... | missing_bracket | {
"type": "object",
"properties": {
"field_x75": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"val_g87": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_... | {"val_g87":"level_5","attr_j06":[{"param_f32":"level_4","dim_o14":"rejected","param_f85":"bar"},{"param_f32":"level_2","dim_o14":"pending_review","param_f85":"MV-Evergreen-01"},{"param_f32":"level_2","dim_o14":"confirmed","param_f85":"hello"},{"param_f32":"level_3","dim_o14":"rejected","param_f85":"New York"},"dim_z98"... | Missing closing bracket | {"val_g87":"level_5","attr_j06":[{"param_f32":"level_4","dim_o14":"rejected","param_f85":"bar"},{"param_f32":"level_2","dim_o14":"pending_review","param_f85":"MV-Evergreen-01"},{"param_f32":"level_2","dim_o14":"confirmed","param_f85":"hello"},{"param_f32":"level_3","dim_o14":"rejected","param_f85":"New York"}],"dim_z98... |
TASK repair_structured_output
SPEC
FIELD status_code TYPE string REQUIRED no
FIELD weight TYPE string_date-time REQUIRED no
FIELD footnote.half_life.shift_code TYPE boolean REQUIRED no
FIELD footnote.half_life.url TYPE integer REQUIRED no
FIELD footnote.half_life.name TYPE string REQUIRED no
FIELD footnote.half_life.a... | {"status_code":"inactive","footnote":{"half_life":{"shift_code":false,"active":"nonsense","run_id":"https://api.com/v1","created_at":"2020-07-15T17:00:00Z","description":true},"patient_id":426.86,"batch_code":null,"manifest_ref":"PASS","strand":191},"total":{"span_id":"Berlin","width":true,"batch_code":"new"},"comments... | markdown_explanation | {
"type": "object",
"properties": {
"status_code": {
"type": "string"
},
"weight": {
"type": "string",
"format": "date-time"
},
"footnote": {
"type": "object",
"properties": {
"half_life": {
"type": "object",
"properties": {
"... | Below is the JSON object:
```json
{"status_code":"inactive","footnote":{"half_life":{"shift_code":false,"active":"nonsense","run_id":"https://api.com/v1","created_at":"2020-07-15T17:00:00Z","description":true},"patient_id":426.86,"batch_code":null,"manifest_ref":"PASS","strand":191},"total":{"span_id":"Berlin","width":... | Output contains markdown and explanatory text around JSON | {"status_code":"inactive","footnote":{"half_life":{"shift_code":false,"active":"nonsense","run_id":"https://api.com/v1","created_at":"2020-07-15T17:00:00Z","description":true},"patient_id":426.86,"batch_code":null,"manifest_ref":"PASS","strand":191},"total":{"span_id":"Berlin","width":true,"batch_code":"new"},"comments... |
TASK repair_structured_output
SPEC
FIELD val_n46 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD field_o88 TYPE string VALUES draft|published|archived REQUIRED no
FIELD dim_e94 TYPE string VALUES active|inactive|pending REQUIRED no
FIELD col_j18 TYPE string VALUES new|in_transit|delive... | {"field_o88":"draft","col_j18":"delivered","col_s52":"inactive","param_q90":222.38,"val_p53":"ops@domain.org"} | wrong_type | {
"type": "object",
"properties": {
"val_n46": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"field_o88": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
... | {"field_o88": "draft", "col_j18": "delivered", "col_s52": "inactive", "param_q90": "\"222.38\"", "val_p53": "ops@domain.org"} | Field 'param_q90' must be number, got string | {"field_o88":"draft","col_j18":"delivered","col_s52":"inactive","param_q90":222.38,"val_p53":"ops@domain.org"} |
TASK repair_structured_output
SPEC
FIELD city TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD currency TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD comments TYPE string VALUES email|phone|sms|push REQUIRED yes
BROKEN_OUTPUT
{"city":"basic","comments":"sms" | {"city":"basic","comments":"sms"} | missing_brace | {
"type": "object",
"properties": {
"city": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"currency": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
... | {"city":"basic","comments":"sms" | Missing closing brace | {"city":"basic","comments":"sms"} |
TASK repair_structured_output
SPEC
FIELD options.catalyst TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD options.weight TYPE number REQUIRED yes
FIELD options.tile.aligned_pct TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD options.tile.tags TYPE boolean REQUIRED yes
FIELD options.tile.us... | {"options":{"catalyst":"medium","weight":516.69,"tile":{"aligned_pct":"low","tags":false,"user_id":false,"shift_code":"USD"},"role":399},"vessel_name":"black","shift_code":193} | tool_call_python_syntax | {
"type": "object",
"properties": {
"options": {
"type": "object",
"properties": {
"catalyst": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"weight": {
"type": "n... | verify_hazmat_compliance(options={'catalyst': 'medium', 'weight': 516.69, 'tile': {'aligned_pct': 'low', 'tags': False, 'user_id': False, 'shift_code': 'USD'}, 'role': 399}, vessel_name='black', shift_code=193) | Tool call uses Python syntax instead of JSON | {"options":{"catalyst":"medium","weight":516.69,"tile":{"aligned_pct":"low","tags":false,"user_id":false,"shift_code":"USD"},"role":399},"vessel_name":"black","shift_code":193} |
TASK repair_structured_output
SPEC
FIELD interest_rate TYPE integer REQUIRED yes
FIELD maturity_date TYPE string REQUIRED no
FIELD tax TYPE string REQUIRED no
FIELD cargo_type TYPE string REQUIRED no
FIELD footnote.section TYPE string_uri REQUIRED no
FIELD footnote.values TYPE number REQUIRED no
FIELD footnote.score T... | {"interest_rate":41,"maturity_date":"Jane","tax":"test","cargo_type":"test","footnote":{"section":"https://data.org/v1","values":859.24,"score":null},"bill_of_lading":735.11} | extra_field | {
"type": "object",
"properties": {
"interest_rate": {
"type": "integer"
},
"maturity_date": {
"type": "string"
},
"tax": {
"type": "string"
},
"cargo_type": {
"type": "string"
},
"footnote": {
"type": "object",
"properties": {
"section... | {"interest_rate": 41, "maturity_date": "Jane", "tax": "test", "cargo_type": "test", "footnote": {"section": "https://data.org/v1", "values": 859.24, "score": null}, "bill_of_lading": 735.11, "extra_field_4455": 42} | Unknown field 'extra_field_4455' not defined in schema | {"interest_rate":41,"maturity_date":"Jane","tax":"test","cargo_type":"test","footnote":{"section":"https://data.org/v1","values":859.24,"score":null},"bill_of_lading":735.11} |
TASK repair_structured_output
SPEC
FIELD val_w66 TYPE number REQUIRED yes
FIELD key_o33 TYPE null REQUIRED no
FIELD prop_q86 TYPE string REQUIRED yes
BROKEN_OUTPUT
Tool: get_account
Params: {"val_w66": 391.21, "prop_q86": "world"} | {"val_w66":391.21,"prop_q86":"world"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"val_w66": {
"type": "number"
},
"key_o33": {
"type": "null"
},
"prop_q86": {
"type": "string"
}
},
"required": [
"val_w66",
"prop_q86"
]
} | Tool: get_account
Params: {"val_w66": 391.21, "prop_q86": "world"} | Agent used wrong parameter name 'key_o33_id' instead of 'key_o33' | {"val_w66":391.21,"prop_q86":"world"} |
TASK repair_structured_output
SPEC
FIELD amount.full_name TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED no
FIELD amount.website TYPE string REQUIRED no
FIELD amount.options TYPE string REQUIRED no
FIELD amount.payment_status TYPE integer REQUIRED yes
FIELD amount.amplitude TYPE string VALUES level_1|level_2|leve... | {"amount":{"full_name":"cat_a","website":"https://api.example.com/v1","payment_status":322,"amplitude":"level_3","terminal_id":114.99,"invoice_id":true,"yield_pct":"2026-05-14T17:27:00Z"},"maturity_date":"foo","hazmat_code":true} | extra_text_before | {
"type": "object",
"properties": {
"amount": {
"type": "object",
"properties": {
"full_name": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d"
]
},
"website": {
"type": "s... | Here is the response in the requested format:
{"amount":{"full_name":"cat_a","website":"https://api.example.com/v1","payment_status":322,"amplitude":"level_3","terminal_id":114.99,"invoice_id":true,"yield_pct":"2026-05-14T17:27:00Z"},"maturity_date":"foo","hazmat_code":true} | Output contains non-JSON text before the object | {"amount":{"full_name":"cat_a","website":"https://api.example.com/v1","payment_status":322,"amplitude":"level_3","terminal_id":114.99,"invoice_id":true,"yield_pct":"2026-05-14T17:27:00Z"},"maturity_date":"foo","hazmat_code":true} |
TASK repair_structured_output
SPEC
FIELD prop_p29 TYPE string REQUIRED no
FIELD field_k98 TYPE string VALUES active|inactive|pending REQUIRED no
FIELD val_d00 TYPE string REQUIRED no
FIELD param_c38.dim_k86 TYPE string VALUES success|error|warning|info REQUIRED no
FIELD param_c38.field_d92 TYPE string VALUES single|ma... | {"field_k98":"active","val_d00":"Tokyo","param_c38":{"dim_k86":"info","field_d92":"divorced"},"val_p82":795,"key_f67":855.85,"val_v97":{"attr_l88":{"col_j56":"frameshift","key_r88":"archived","key_f51":789.12,"col_z16":"REV","col_i13":462.11,"val_v87":"red","attr_v54":"demo"},"key_l44":"2024-04-12T05:36:00Z","val_g82":... | markdown_fences | {
"type": "object",
"properties": {
"prop_p29": {
"type": "string"
},
"field_k98": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
},
"val_d00": {
"type": "string"
},
"param_c38": {
"type": "object",
"prope... | ```json
{"field_k98":"active","val_d00":"Tokyo","param_c38":{"dim_k86":"info","field_d92":"divorced"},"val_p82":795,"key_f67":855.85,"val_v97":{"attr_l88":{"col_j56":"frameshift","key_r88":"archived","key_f51":789.12,"col_z16":"REV","col_i13":462.11,"val_v87":"red","attr_v54":"demo"},"key_l44":"2024-04-12T05:36:00Z","v... | Output contains markdown code fences | {"field_k98":"active","val_d00":"Tokyo","param_c38":{"dim_k86":"info","field_d92":"divorced"},"val_p82":795,"key_f67":855.85,"val_v97":{"attr_l88":{"col_j56":"frameshift","key_r88":"archived","key_f51":789.12,"col_z16":"REV","col_i13":462.11,"val_v87":"red","attr_v54":"demo"},"key_l44":"2024-04-12T05:36:00Z","val_g82":... |
TASK repair_structured_output
SPEC
FIELD timezone TYPE integer REQUIRED yes
FIELD terminal_id TYPE string REQUIRED yes
FIELD manifest_ref TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
BROKEN_OUTPUT
I need to look up the information first.
Action: validate_sample
Arguments: {"timezone": 322, ... | {"timezone":322,"terminal_id":"inactive","manifest_ref":"synonymous"} | tool_call_partial_args | {
"type": "object",
"properties": {
"timezone": {
"type": "integer"
},
"terminal_id": {
"type": "string"
},
"manifest_ref": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
}
},
"required": [
... | I need to look up the information first.
Action: validate_sample
Arguments: {"timezone": 322, "terminal_id": "inactive"} | Agent tool call missing required parameter 'manifest_ref' | {"timezone":322,"terminal_id":"inactive","manifest_ref":"synonymous"} |
TASK repair_structured_output
SPEC
FIELD attr_f91 TYPE boolean REQUIRED yes
FIELD col_b94 TYPE string_date-time REQUIRED no
FIELD col_r94.prop_i95 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD col_r94.key_w89 TYPE string REQUIRED yes
FIELD col_r94.prop_w18 TYPE integer REQUIRED yes
FIELD key... | {"attr_f91":true,"col_b94":"2023-12-18T04:34:00Z","col_r94":{"prop_i95":"heterozygous","key_w89":"MV-Evergreen-01","prop_w18":447},"key_p90":"New York","prop_v42":845,"prop_z56":"info@domain.org"} | missing_required | {
"type": "object",
"properties": {
"attr_f91": {
"type": "boolean"
},
"col_b94": {
"type": "string",
"format": "date-time"
},
"col_r94": {
"type": "object",
"properties": {
"prop_i95": {
"type": "string",
"enum": [
"homozygou... | {"attr_f91": true, "col_b94": "2023-12-18T04:34:00Z", "col_r94": {"prop_i95": "heterozygous", "key_w89": "MV-Evergreen-01", "prop_w18": 447}, "key_p90": "New York", "prop_z56": "info@domain.org"} | Required field 'prop_v42' is missing | {"attr_f91":true,"col_b94":"2023-12-18T04:34:00Z","col_r94":{"prop_i95":"heterozygous","key_w89":"MV-Evergreen-01","prop_w18":447},"key_p90":"New York","prop_v42":845,"prop_z56":"info@domain.org"} |
TASK repair_structured_output
SPEC
FIELD interest_rate TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED no
FIELD amount TYPE integer REQUIRED no
FIELD repository[] TYPE string REQUIRED no
FIELD catalyst[].options TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED no
FIELD catalyst[].full_n... | {"interest_rate":"option_c","amount":431,"repository":["cancelled"],"catalyst":[{"options":"mode_b","full_name":"type_a","dissolved_oxygen":true,"fleet_number":717.2,"annotation":24.21}]} | missing_brace | {
"type": "object",
"properties": {
"interest_rate": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
"option_e"
]
},
"amount": {
"type": "integer"
},
"repository": {
"type": "array",
"items"... | {"interest_rate":"option_c","amount":431,"repository":["cancelled"],"catalyst":[{"options":"mode_b","full_name":"type_a","dissolved_oxygen":true,"fleet_number":717.2,"annotation":24.21]} | Missing closing brace | {"interest_rate":"option_c","amount":431,"repository":["cancelled"],"catalyst":[{"options":"mode_b","full_name":"type_a","dissolved_oxygen":true,"fleet_number":717.2,"annotation":24.21}]} |
TASK repair_structured_output
SPEC
FIELD port_code TYPE string REQUIRED yes
FIELD version TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD features TYPE string_date-time REQUIRED yes
BROKEN_OUTPUT
{"port_code": "Johnson", "version": "invalid_value_59", "features": "2023-11-26T08:45:00Z"} | {"port_code":"Johnson","version":"delivered","features":"2023-11-26T08:45:00Z"} | invalid_enum | {
"type": "object",
"properties": {
"port_code": {
"type": "string"
},
"version": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"features": {
"type": "string",
"format": "date-time"
}
},
... | {"port_code": "Johnson", "version": "invalid_value_59", "features": "2023-11-26T08:45:00Z"} | Field 'version' has invalid enum value 'invalid_value_59', expected one of ['new', 'in_transit', 'delivered', 'returned'] | {"port_code":"Johnson","version":"delivered","features":"2023-11-26T08:45:00Z"} |
TASK repair_structured_output
SPEC
FIELD val_g79 TYPE number REQUIRED yes
FIELD prop_y65.field_i00 TYPE boolean REQUIRED no
FIELD prop_y65.param_w17 TYPE integer REQUIRED yes
FIELD prop_y65.dim_y15 TYPE boolean REQUIRED no
FIELD prop_y65.val_p40 TYPE null REQUIRED no
FIELD prop_y65.val_v27 TYPE string VALUES coastal|o... | {"val_g79":646.05,"prop_y65":{"field_i00":true,"param_w17":37,"dim_y15":true,"val_p40":null,"val_v27":"oceanic","param_w67":572.92},"field_f70":{"key_x10":"pro","val_g72":"intermittent"}} | missing_brace | {
"type": "object",
"properties": {
"val_g79": {
"type": "number"
},
"prop_y65": {
"type": "object",
"properties": {
"field_i00": {
"type": "boolean"
},
"param_w17": {
"type": "integer"
},
"dim_y15": {
"type": "boole... | "val_g79":646.05,"prop_y65":{"field_i00":true,"param_w17":37,"dim_y15":true,"val_p40":null,"val_v27":"oceanic","param_w67":572.92},"field_f70":{"key_x10":"pro","val_g72":"intermittent"}} | Missing closing brace | {"val_g79":646.05,"prop_y65":{"field_i00":true,"param_w17":37,"dim_y15":true,"val_p40":null,"val_v27":"oceanic","param_w67":572.92},"field_f70":{"key_x10":"pro","val_g72":"intermittent"}} |
TASK repair_structured_output
SPEC
FIELD step TYPE integer REQUIRED yes
FIELD longitude TYPE string REQUIRED no
FIELD status TYPE string REQUIRED yes
FIELD timezone TYPE integer REQUIRED no
FIELD consignee.item_id.username TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED yes
FIELD consignee.item_id.reage... | {"step":651,"status":"demo","timezone":565,"consignee":{"item_id":{"username":"mode_d","reagent":"oceanic","credit_score":"option_b","language":750.99},"email":"https://data.io/api","verified":true,"subtotal":"cat_a","payment_status":"https://example.io/data","longitude":"https://example.org/data","vessel_name":390}} | agent_chain | {
"type": "object",
"properties": {
"step": {
"type": "integer"
},
"longitude": {
"type": "string"
},
"status": {
"type": "string"
},
"timezone": {
"type": "integer"
},
"consignee": {
"type": "object",
"properties": {
"item_id": {
... | I need to look up the information first.
Action: fetch_lab_result
Result: {"step": 651, "status": "demo", "timezone": 565}
I'll query our database.
Action: align_reads
Result: | Agent multi-step chain with truncated tool output | {"step":651,"status":"demo","timezone":565,"consignee":{"item_id":{"username":"mode_d","reagent":"oceanic","credit_score":"option_b","language":750.99},"email":"https://data.io/api","verified":true,"subtotal":"cat_a","payment_status":"https://example.io/data","longitude":"https://example.org/data","vessel_name":390}} |
TASK repair_structured_output
SPEC
FIELD dissolved_oxygen TYPE string REQUIRED no
FIELD insurance_id TYPE string REQUIRED no
FIELD nickname TYPE integer REQUIRED yes
FIELD crew_id TYPE boolean REQUIRED no
FIELD created_at.port_code TYPE integer REQUIRED no
FIELD created_at.chapter TYPE string VALUES homozygous|heteroz... | {"dissolved_oxygen":"world","nickname":323,"crew_id":true,"order_id":100,"berth_slot":952.61,"enabled":"pending"} | markdown_explanation | {
"type": "object",
"properties": {
"dissolved_oxygen": {
"type": "string"
},
"insurance_id": {
"type": "string"
},
"nickname": {
"type": "integer"
},
"crew_id": {
"type": "boolean"
},
"created_at": {
"type": "object",
"properties": {
"... | Here's the structured output:
```json
{"dissolved_oxygen":"world","nickname":323,"crew_id":true,"order_id":100,"berth_slot":952.61,"enabled":"pending"}
```
I've ensured all required fields are present. | Output contains markdown and explanatory text around JSON | {"dissolved_oxygen":"world","nickname":323,"crew_id":true,"order_id":100,"berth_slot":952.61,"enabled":"pending"} |
TASK repair_structured_output
SPEC
FIELD val_x58 TYPE number REQUIRED no
FIELD val_j53 TYPE number REQUIRED no
FIELD field_y90 TYPE string REQUIRED no
FIELD field_q02 TYPE boolean REQUIRED yes
BROKEN_OUTPUT
{"val_x58":83.48,"val_j53":348.99,"field_q02":false | {"val_x58":83.48,"val_j53":348.99,"field_q02":false} | truncated_array | {
"type": "object",
"properties": {
"val_x58": {
"type": "number"
},
"val_j53": {
"type": "number"
},
"field_y90": {
"type": "string"
},
"field_q02": {
"type": "boolean"
}
},
"required": [
"field_q02"
]
} | {"val_x58":83.48,"val_j53":348.99,"field_q02":false | Unexpected end of JSON input — truncated object | {"val_x58":83.48,"val_j53":348.99,"field_q02":false} |
TASK repair_structured_output
SPEC
FIELD val_m32 TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
FIELD col_l88 TYPE string VALUES type_a|type_b|type_c REQUIRED no
FIELD dim_q32 TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED no
FIELD attr_b14 TYPE string_date-time REQUIRED no
FIELD attr_x... | {"val_m32":"reliable","col_l88":"type_c","dim_q32":"type_e","attr_b14":"2020-07-03T12:46:00Z","attr_x69":"sample"} | date_format_error | {
"type": "object",
"properties": {
"val_m32": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
},
"col_l88": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c"
]
},
"dim_q32": {
... | {"val_m32": "reliable", "col_l88": "type_c", "dim_q32": "type_e", "attr_b14": "2020-07-03 12:46:00Z", "attr_x69": "sample"} | Field 'attr_b14' has invalid date format | {"val_m32":"reliable","col_l88":"type_c","dim_q32":"type_e","attr_b14":"2020-07-03T12:46:00Z","attr_x69":"sample"} |
TASK repair_structured_output
SPEC
FIELD param_e51 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD field_s79 TYPE integer REQUIRED yes
FIELD val_m89 TYPE boolean REQUIRED yes
FIELD field_p41 TYPE boolean REQUIRED yes
FIELD val_f97 TYPE null REQUIRED no
FIELD val_o37 TYPE string REQUIR... | {"param_e51":"pending_review","field_s79":425,"val_m89":true,"field_p41":false,"val_f97":null,"val_o37":"Smith"} | extra_text_before | {
"type": "object",
"properties": {
"param_e51": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"field_s79": {
"type": "integer"
},
"val_m89": {
"type": "boolean"
},
"field_p41": {
... | I've generated the following JSON:
{"param_e51":"pending_review","field_s79":425,"val_m89":true,"field_p41":false,"val_f97":null,"val_o37":"Smith"} | Output contains non-JSON text before the object | {"param_e51":"pending_review","field_s79":425,"val_m89":true,"field_p41":false,"val_f97":null,"val_o37":"Smith"} |
TASK repair_structured_output
SPEC
FIELD field_n03 TYPE number REQUIRED yes
FIELD key_d21 TYPE string REQUIRED yes
FIELD field_s31 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
BROKEN_OUTPUT
{"field_n03": "\"734.06\"", "key_d21": "cancelled"} | {"field_n03":734.06,"key_d21":"cancelled"} | wrong_type | {
"type": "object",
"properties": {
"field_n03": {
"type": "number"
},
"key_d21": {
"type": "string"
},
"field_s31": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
}
},
"required": [
"k... | {"field_n03": "\"734.06\"", "key_d21": "cancelled"} | Field 'field_n03' must be number, got string | {"field_n03":734.06,"key_d21":"cancelled"} |
TASK repair_structured_output
SPEC
FIELD key_m10 TYPE string REQUIRED yes
FIELD param_h62 TYPE string REQUIRED no
FIELD prop_c42 TYPE boolean REQUIRED no
FIELD val_r86.param_w47 TYPE string REQUIRED yes
FIELD val_r86.dim_p22 TYPE boolean REQUIRED no
FIELD val_r86.field_l50 TYPE string VALUES coastal|oceanic|inland|arc... | {"key_m10":"Diana","param_h62":"Silva","prop_c42":false,"val_r86":{"param_w47":"Berlin","field_l50":"coastal"},"param_h07":"frameshift","key_w55":{"prop_g82":"enterprise","dim_o59":186,"prop_m94":833,"val_f28":{"col_n13":"phone","attr_w29":true,"prop_l46":"https://data.com/v1","dim_u73":"test@domain.org","attr_f21":80.... | null_required | {
"type": "object",
"properties": {
"key_m10": {
"type": "string"
},
"param_h62": {
"type": "string"
},
"prop_c42": {
"type": "boolean"
},
"val_r86": {
"type": "object",
"properties": {
"param_w47": {
"type": "string"
},
"di... | {"key_m10": "Diana", "param_h62": "Silva", "prop_c42": false, "val_r86": {"param_w47": "Berlin", "field_l50": "coastal"}, "param_h07": null, "key_w55": {"prop_g82": "enterprise", "dim_o59": 186, "prop_m94": 833, "val_f28": {"col_n13": "phone", "attr_w29": true, "prop_l46": "https://data.com/v1", "dim_u73": "test@domain... | Required field 'param_h07' is null | {"key_m10":"Diana","param_h62":"Silva","prop_c42":false,"val_r86":{"param_w47":"Berlin","field_l50":"coastal"},"param_h07":"frameshift","key_w55":{"prop_g82":"enterprise","dim_o59":186,"prop_m94":833,"val_f28":{"col_n13":"phone","attr_w29":true,"prop_l46":"https://data.com/v1","dim_u73":"test@domain.org","attr_f21":80.... |
TASK repair_structured_output
SPEC
FIELD enabled TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED no
FIELD account_id TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED no
FIELD bed_number TYPE null REQUIRED yes
FIELD nickname TYPE integer REQUIRED no
FIELD frequency_hz TYPE string VALUES homozygo... | {"enabled":"cat_a","account_id":"mode_d","bed_number":null,"nickname":729} | truncated_object | {
"type": "object",
"properties": {
"enabled": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
"cat_e"
]
},
"account_id": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"m... | {"enabled":"cat_a","account_id":"mode_d","bed_number":null,"nickname":729 | Unexpected end of JSON input — truncated object | {"enabled":"cat_a","account_id":"mode_d","bed_number":null,"nickname":729} |
TASK repair_structured_output
SPEC
FIELD field_o48 TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD val_p31 TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD col_p40 TYPE string REQUIRED no
FIELD val_f78 TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
FIELD key_i59[].field_q38 TYPE ... | {"field_o48":"pending","col_p40":"completed","val_f78":"unstable","key_i59":[{"field_q38":true,"val_z50":"user@domain.org"},{"field_q38":true,"val_z50":"test@domain.org","field_x10":236}]} | invalid_enum | {
"type": "object",
"properties": {
"field_o48": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
},
"val_p31": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"col_p40":... | {"field_o48": "pending", "col_p40": "completed", "val_f78": "invalid_choice_846", "key_i59": [{"field_q38": true, "val_z50": "user@domain.org"}, {"field_q38": true, "val_z50": "test@domain.org", "field_x10": 236}]} | Field 'val_f78' has invalid enum value 'invalid_choice_846', expected one of ['reliable', 'unstable', 'intermittent'] | {"field_o48":"pending","col_p40":"completed","val_f78":"unstable","key_i59":[{"field_q38":true,"val_z50":"user@domain.org"},{"field_q38":true,"val_z50":"test@domain.org","field_x10":236}]} |
TASK repair_structured_output
SPEC
FIELD attr_p83 TYPE boolean REQUIRED no
FIELD prop_t20 TYPE integer REQUIRED no
FIELD key_k21.key_b67 TYPE boolean REQUIRED yes
FIELD key_k21.field_l48 TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no
FIELD key_k21.param_p24 TYPE string VALUES small|medium|large|xl REQU... | {"attr_p83":true,"prop_t20":262,"key_k21":{"key_b67":false,"param_p24":"xl","param_n34":26,"param_n83":{"dim_y59":"operational","col_x10":"Luis","col_h82":450,"attr_i40":29.38,"key_b47":[837,548],"dim_b84":["mode_f","mode_f","mode_b","mode_f"]},"attr_r52":"London","val_b67":885.86}} | null_required | {
"type": "object",
"properties": {
"attr_p83": {
"type": "boolean"
},
"prop_t20": {
"type": "integer"
},
"key_k21": {
"type": "object",
"properties": {
"key_b67": {
"type": "boolean"
},
"field_l48": {
"type": "string",
... | {"attr_p83": true, "prop_t20": 262, "key_k21": null} | Required field 'key_k21' is null | {"attr_p83":true,"prop_t20":262,"key_k21":{"key_b67":false,"param_p24":"xl","param_n34":26,"param_n83":{"dim_y59":"operational","col_x10":"Luis","col_h82":450,"attr_i40":29.38,"key_b47":[837,548],"dim_b84":["mode_f","mode_f","mode_b","mode_f"]},"attr_r52":"London","val_b67":885.86}} |
TASK repair_structured_output
SPEC
FIELD val_m21 TYPE number REQUIRED yes
FIELD attr_j61 TYPE boolean REQUIRED yes
FIELD key_w62 TYPE integer REQUIRED yes
FIELD dim_l22 TYPE number REQUIRED yes
BROKEN_OUTPUT
{"val_m21": 194.87, "attr_j61": null, "key_w62": 292, "dim_l22": 505.42} | {"val_m21":194.87,"attr_j61":false,"key_w62":292,"dim_l22":505.42} | null_required | {
"type": "object",
"properties": {
"val_m21": {
"type": "number"
},
"attr_j61": {
"type": "boolean"
},
"key_w62": {
"type": "integer"
},
"dim_l22": {
"type": "number"
}
},
"required": [
"dim_l22",
"val_m21",
"attr_j61",
"key_w62"
]
} | {"val_m21": 194.87, "attr_j61": null, "key_w62": 292, "dim_l22": 505.42} | Required field 'attr_j61' is null | {"val_m21":194.87,"attr_j61":false,"key_w62":292,"dim_l22":505.42} |
TASK repair_structured_output
SPEC
FIELD col_b64.attr_j06 TYPE string REQUIRED no
FIELD col_b64.col_l50 TYPE string REQUIRED no
FIELD col_b64.key_k07 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD col_b64.col_a01 TYPE integer REQUIRED no
FIELD col_b64.prop_f11 TYPE string_uri REQUIRED yes
FIELD col_b64.field... | {"col_b64":{"col_l50":"RTG-04","col_a01":396,"prop_f11":"https://api.org/api","field_s84":null},"attr_o01":false,"col_d10":"draft","key_p64":"demo","param_w44":"2023-12-25","col_m96":"This is a test value."} | missing_brace | {
"type": "object",
"properties": {
"col_b64": {
"type": "object",
"properties": {
"attr_j06": {
"type": "string"
},
"col_l50": {
"type": "string"
},
"key_k07": {
"type": "string",
"enum": [
"USD",
... | {"col_b64":{"col_l50":"RTG-04","col_a01":396,"prop_f11":"https://api.org/api","field_s84":null},"attr_o01":false,"col_d10":"draft","key_p64":"demo","param_w44":"2023-12-25","col_m96":"This is a test value." | Missing closing brace | {"col_b64":{"col_l50":"RTG-04","col_a01":396,"prop_f11":"https://api.org/api","field_s84":null},"attr_o01":false,"col_d10":"draft","key_p64":"demo","param_w44":"2023-12-25","col_m96":"This is a test value."} |
TASK repair_structured_output
SPEC
FIELD attr_m13.param_s01 TYPE integer REQUIRED no
FIELD attr_m13.prop_t21 TYPE string VALUES active|inactive|pending REQUIRED no
FIELD attr_m13.attr_b82 TYPE integer REQUIRED no
FIELD attr_m13.attr_r48.prop_g69 TYPE string VALUES option_a|option_b|option_c|option_d REQUIRED no
FIELD ... | {"attr_m13":{"param_s01":699,"prop_t21":"pending","attr_b82":633,"attr_r48":{"prop_g69":"option_a","key_n48":842,"prop_h58":"world"}},"prop_e88":485,"param_i15":{"val_i88":{"field_c04":999,"param_g24":"mode_e","prop_k96":851.83,"prop_x92":"delivered","attr_k30":true,"col_s87":"level_6"},"attr_o90":{"dim_w39":431.13,"co... | tool_call_partial_args | {
"type": "object",
"properties": {
"attr_m13": {
"type": "object",
"properties": {
"param_s01": {
"type": "integer"
},
"prop_t21": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
... | I need to look up the information first.
Action: fetch_lab_result
Arguments: {"prop_e88": 485, "param_i15": {"val_i88": {"field_c04": 999, "param_g24": "mode_e", "prop_k96": 851.83, "prop_x92": "delivered", "attr_k30": true, "col_s87": "level_6"}, "attr_o90": {"dim_w39": 431.13, "col_e78": false, "col_l59": 558}, "attr... | Agent tool call missing required parameter 'attr_m13' | {"attr_m13":{"param_s01":699,"prop_t21":"pending","attr_b82":633,"attr_r48":{"prop_g69":"option_a","key_n48":842,"prop_h58":"world"}},"prop_e88":485,"param_i15":{"val_i88":{"field_c04":999,"param_g24":"mode_e","prop_k96":851.83,"prop_x92":"delivered","attr_k30":true,"col_s87":"level_6"},"attr_o90":{"dim_w39":431.13,"co... |
TASK repair_structured_output
SPEC
FIELD url TYPE null REQUIRED no
FIELD dissolved_oxygen.turbidity TYPE integer REQUIRED no
FIELD dissolved_oxygen.half_life TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD dissolved_oxygen.title TYPE boolean REQUIRED yes
FIELD dissolved_oxygen.transaction_... | {"url":null,"dissolved_oxygen":{"turbidity":476,"half_life":"missense","title":false,"transaction_id":"John","type":[{"hazmat_code":"London","account_id":"test","subject":759,"comments":false,"width":159},{"hazmat_code":"FWD","account_id":"quux","comments":false,"width":95,"state":"option_a"}]},"state":94,"cargo_type":... | wrong_type | {
"type": "object",
"properties": {
"url": {
"type": "null"
},
"dissolved_oxygen": {
"type": "object",
"properties": {
"turbidity": {
"type": "integer"
},
"half_life": {
"type": "string",
"enum": [
"synonymous",
... | {"url": null, "dissolved_oxygen": {"turbidity": 476, "half_life": "missense", "title": false, "transaction_id": "John", "type": [{"hazmat_code": "London", "account_id": "test", "subject": 759, "comments": false, "width": 159}, {"hazmat_code": "FWD", "account_id": "quux", "comments": false, "width": 95, "state": "option... | Field 'cargo_type' must be integer, got string | {"url":null,"dissolved_oxygen":{"turbidity":476,"half_life":"missense","title":false,"transaction_id":"John","type":[{"hazmat_code":"London","account_id":"test","subject":759,"comments":false,"width":159},{"hazmat_code":"FWD","account_id":"quux","comments":false,"width":95,"state":"option_a"}]},"state":94,"cargo_type":... |
TASK repair_structured_output
SPEC
FIELD attr_e09.param_h64 TYPE number REQUIRED yes
FIELD attr_e09.prop_n14 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED yes
FIELD attr_e09.attr_v60.attr_s60 TYPE string VALUES option_a|option_b|option_c REQUIRED yes
FIELD attr_e09.attr_v60.field_r49 TYPE integer REQU... | {"attr_e09":{"param_h64":175.72,"prop_n14":"mode_c","attr_v60":{"attr_s60":"option_b","field_r49":893,"attr_c32":"green"}},"field_w20":503,"dim_c02":{"key_x54":"type_d","dim_q70":"Tokyo","col_h85":{"field_n16":"reliable","val_r82":true,"col_z90":662},"key_r29":"2025-07-02T20:57:00Z","val_c43":{"col_v57":"cat_a","key_i4... | truncated_array | {
"type": "object",
"properties": {
"attr_e09": {
"type": "object",
"properties": {
"param_h64": {
"type": "number"
},
"prop_n14": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d... | {"attr_e09":{"param_h64":175.72,"prop_n14":"mode_c","attr_v60":{"attr_s60":"option_b","field_r49":893,"attr_c32":"green"}},"field_w20":503,"dim_c02":{"key_x54":"type_d","dim_q70":"Tokyo","col_h85":{"field_n16":"reliable","val_r82":true,"col_z90":662},"key_r29":"2025-07-02T20:57:00Z","val_c43":{"col_v57":"cat_a","key_i4... | Unexpected end of JSON input — truncated object | {"attr_e09":{"param_h64":175.72,"prop_n14":"mode_c","attr_v60":{"attr_s60":"option_b","field_r49":893,"attr_c32":"green"}},"field_w20":503,"dim_c02":{"key_x54":"type_d","dim_q70":"Tokyo","col_h85":{"field_n16":"reliable","val_r82":true,"col_z90":662},"key_r29":"2025-07-02T20:57:00Z","val_c43":{"col_v57":"cat_a","key_i4... |
TASK repair_structured_output
SPEC
FIELD dissolved_oxygen TYPE integer REQUIRED no
FIELD patient_id TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD credit_score TYPE boolean REQUIRED no
FIELD user_id.chromosome TYPE string REQUIRED no
FIELD user_id.notes.date TYPE string REQUIRED no
FIELD user_id.notes.... | {"patient_id":"pro","user_id":{"chromosome":"Alice","notes":{"features":"Bob","username":false,"compound":"New York","shipper_ref":862},"collateral":"user@domain.org","amplitude":{"coverage":"confirmed","torque_output":49,"batch_code":418,"name":"returned"}},"shipping":"ops@domain.org","conductivity":"test@domain.org",... | extra_text_after | {
"type": "object",
"properties": {
"dissolved_oxygen": {
"type": "integer"
},
"patient_id": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"credit_score": {
"type": "boolean"
},
"user_id": {
"ty... | {"patient_id":"pro","user_id":{"chromosome":"Alice","notes":{"features":"Bob","username":false,"compound":"New York","shipper_ref":862},"collateral":"user@domain.org","amplitude":{"coverage":"confirmed","torque_output":49,"batch_code":418,"name":"returned"}},"shipping":"ops@domain.org","conductivity":"test@domain.org",... | Output contains non-JSON text after the object | {"patient_id":"pro","user_id":{"chromosome":"Alice","notes":{"features":"Bob","username":false,"compound":"New York","shipper_ref":862},"collateral":"user@domain.org","amplitude":{"coverage":"confirmed","torque_output":49,"batch_code":418,"name":"returned"}},"shipping":"ops@domain.org","conductivity":"test@domain.org",... |
TASK repair_structured_output
SPEC
FIELD sensor_id TYPE integer REQUIRED yes
FIELD weight TYPE string REQUIRED no
FIELD patient_id TYPE string REQUIRED no
BROKEN_OUTPUT
Pipeline result:
```json
{"sensor_id":622,"weight":"Maria","patient_id":"approved"}
```
This should match the schema you provided. | {"sensor_id":622,"weight":"Maria","patient_id":"approved"} | markdown_explanation | {
"type": "object",
"properties": {
"sensor_id": {
"type": "integer"
},
"weight": {
"type": "string"
},
"patient_id": {
"type": "string"
}
},
"required": [
"sensor_id"
]
} | Pipeline result:
```json
{"sensor_id":622,"weight":"Maria","patient_id":"approved"}
```
This should match the schema you provided. | Output contains markdown and explanatory text around JSON | {"sensor_id":622,"weight":"Maria","patient_id":"approved"} |
TASK repair_structured_output
SPEC
FIELD dim_x02 TYPE string REQUIRED no
FIELD attr_i68 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD param_r71 TYPE string REQUIRED no
FIELD attr_m21 TYPE boolean REQUIRED yes
FIELD col_b57 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD val_y51 TYPE boolean REQUIRE... | {"dim_x02":"GRCh38","attr_i68":"GBP","param_r71":"Jane","attr_m21":false,"val_y51":false} | boolean_as_string | {
"type": "object",
"properties": {
"dim_x02": {
"type": "string"
},
"attr_i68": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"param_r71": {
"type": "string"
},
"attr_m21": {
"type": "bool... | {"dim_x02": "GRCh38", "attr_i68": "GBP", "param_r71": "Jane", "attr_m21": "False", "val_y51": false} | Field 'attr_m21' must be boolean, got string | {"dim_x02":"GRCh38","attr_i68":"GBP","param_r71":"Jane","attr_m21":false,"val_y51":false} |
TASK repair_structured_output
SPEC
FIELD field_m60 TYPE integer REQUIRED yes
FIELD prop_q81 TYPE integer REQUIRED yes
FIELD param_h69 TYPE string REQUIRED yes
FIELD col_y79 TYPE boolean REQUIRED no
FIELD param_t46 TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD field_c07 TYPE string VALUES email|phone|... | {"field_m60":792,"prop_q81":6,"param_h69":"PASS","col_y79":false,"param_t46":"basic","field_c07":"sms","attr_i82":"test@domain.org"} | markdown_fences | {
"type": "object",
"properties": {
"field_m60": {
"type": "integer"
},
"prop_q81": {
"type": "integer"
},
"param_h69": {
"type": "string"
},
"col_y79": {
"type": "boolean"
},
"param_t46": {
"type": "string",
"enum": [
"free",
"... | ```json
{"field_m60":792,"prop_q81":6,"param_h69":"PASS","col_y79":false,"param_t46":"basic","field_c07":"sms","attr_i82":"test@domain.org"}
``` | Output contains markdown code fences | {"field_m60":792,"prop_q81":6,"param_h69":"PASS","col_y79":false,"param_t46":"basic","field_c07":"sms","attr_i82":"test@domain.org"} |
TASK repair_structured_output
SPEC
FIELD chromosome TYPE boolean REQUIRED no
FIELD dissolved_oxygen TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED yes
FIELD user_id TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED no
FIELD lab_result TYPE null REQUIRED no
FIELD a... | {"chromosome":false,"dissolved_oxygen":"level_2","lab_result":null,"maturity_date":387.52} | tool_call_partial_args | {
"type": "object",
"properties": {
"chromosome": {
"type": "boolean"
},
"dissolved_oxygen": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"level_5",
"level_6"
]
},
"user_id": {
"type": "str... | Let me check the system.
Action: create_order
Arguments: {"chromosome": false, "lab_result": null, "maturity_date": 387.52} | Agent tool call missing required parameter 'dissolved_oxygen' | {"chromosome":false,"dissolved_oxygen":"level_2","lab_result":null,"maturity_date":387.52} |
TASK repair_structured_output
SPEC
FIELD procedure_code TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD amount TYPE string REQUIRED yes
FIELD first_name TYPE string_email REQUIRED yes
FIELD terminal_id TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
FIELD name[].role TYPE ... | {"procedure_code":"resolved","amount":"active","first_name":"test@example.com","terminal_id":"nonsense","name":[{"label":"Alice","lab_result":"Jane","annotation":647,"product_id":["high"],"tax":["2023-10-23T02:51:00Z","2022-10-11T06:52:00Z","2026-11-07T17:07:00Z","2024-04-03T10:42:00Z"]},{"role":false,"label":"New York... | tool_call_partial_args | {
"type": "object",
"properties": {
"procedure_code": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"amount": {
"type": "string"
},
"first_name": {
"type": "string",
"format": "email"
},
... | Let me check the system.
Action: search
Arguments: {"procedure_code": "resolved", "amount": "active", "terminal_id": "nonsense", "name": [{"label": "Alice", "lab_result": "Jane", "annotation": 647, "product_id": ["high"], "tax": ["2023-10-23T02:51:00Z", "2022-10-11T06:52:00Z", "2026-11-07T17:07:00Z", "2024-04-03T10:42:... | Agent tool call missing required parameter 'first_name' | {"procedure_code":"resolved","amount":"active","first_name":"test@example.com","terminal_id":"nonsense","name":[{"label":"Alice","lab_result":"Jane","annotation":647,"product_id":["high"],"tax":["2023-10-23T02:51:00Z","2022-10-11T06:52:00Z","2026-11-07T17:07:00Z","2024-04-03T10:42:00Z"]},{"role":false,"label":"New York... |
TASK repair_structured_output
SPEC
FIELD col_w78.val_a09 TYPE string_uri REQUIRED no
FIELD col_w78.col_l01 TYPE string REQUIRED no
FIELD col_w78.param_j16[] TYPE string REQUIRED yes
FIELD field_o71 TYPE string REQUIRED yes
FIELD key_y20 TYPE integer REQUIRED no
FIELD field_r71 TYPE string_email REQUIRED yes
FIELD val_... | {"col_w78":{"val_a09":"https://data.io/v1","col_l01":"Hapag-Lloyd-Express","param_j16":["Oliveira","user@domain.com","PASS","Sao Paulo"]},"field_o71":"QC-07","field_r71":"ops@test.io","val_p03":{"col_c68":540,"prop_y92":85.09,"param_i32":"https://data.org/v1"},"key_o81":293.19,"param_m78":"BRL"} | single_quotes | {
"type": "object",
"properties": {
"col_w78": {
"type": "object",
"properties": {
"val_a09": {
"type": "string",
"format": "uri"
},
"col_l01": {
"type": "string"
},
"param_j16": {
"type": "array",
"items": {
... | {'col_w78':{'val_a09':'https://data.io/v1','col_l01':'Hapag-Lloyd-Express','param_j16':['Oliveira','user@domain.com','PASS','Sao Paulo']},'field_o71':'QC-07','field_r71':'ops@test.io','val_p03':{'col_c68':540,'prop_y92':85.09,'param_i32':'https://data.org/v1'},'key_o81':293.19,'param_m78':'BRL'} | Expecting property name enclosed in double quotes | {"col_w78":{"val_a09":"https://data.io/v1","col_l01":"Hapag-Lloyd-Express","param_j16":["Oliveira","user@domain.com","PASS","Sao Paulo"]},"field_o71":"QC-07","field_r71":"ops@test.io","val_p03":{"col_c68":540,"prop_y92":85.09,"param_i32":"https://data.org/v1"},"key_o81":293.19,"param_m78":"BRL"} |
TASK repair_structured_output
SPEC
FIELD attr_z98 TYPE string VALUES option_a|option_b|option_c REQUIRED no
FIELD dim_q21.col_q07 TYPE string VALUES option_a|option_b REQUIRED yes
FIELD dim_q21.prop_x56 TYPE boolean REQUIRED yes
FIELD dim_q21.val_u54 TYPE number REQUIRED yes
FIELD dim_q21.dim_d79.col_c94 TYPE string R... | {"attr_z98":"option_a","dim_q21":{"col_q07":"option_a","prop_x56":false,"val_u54":97.37,"col_u86":161,"field_g58":{"val_f79":519,"param_q22":"demo","key_b21":"sample","col_l47":"low","attr_k82":"type_a"}},"key_n42":"type_d","col_y72":"coastal","dim_r84":931.81,"col_a37":"New York"} | extra_text_after | {
"type": "object",
"properties": {
"attr_z98": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c"
]
},
"dim_q21": {
"type": "object",
"properties": {
"col_q07": {
"type": "string",
"enum": [
"opt... | {"attr_z98":"option_a","dim_q21":{"col_q07":"option_a","prop_x56":false,"val_u54":97.37,"col_u86":161,"field_g58":{"val_f79":519,"param_q22":"demo","key_b21":"sample","col_l47":"low","attr_k82":"type_a"}},"key_n42":"type_d","col_y72":"coastal","dim_r84":931.81,"col_a37":"New York"}
Feel free to ask if you have question... | Output contains non-JSON text after the object | {"attr_z98":"option_a","dim_q21":{"col_q07":"option_a","prop_x56":false,"val_u54":97.37,"col_u86":161,"field_g58":{"val_f79":519,"param_q22":"demo","key_b21":"sample","col_l47":"low","attr_k82":"type_a"}},"key_n42":"type_d","col_y72":"coastal","dim_r84":931.81,"col_a37":"New York"} |
TASK repair_structured_output
SPEC
FIELD amount TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD product_id TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD end_date TYPE integer REQUIRED yes
BROKEN_OUTPUT
<functioncall> delete_item
{amount: "medium", product_id: "oceanic", end_date: 786} | {"amount":"medium","product_id":"oceanic","end_date":786} | tool_call_bad_format | {
"type": "object",
"properties": {
"amount": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
},
"product_id": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
... | <functioncall> delete_item
{amount: "medium", product_id: "oceanic", end_date: 786} | Tool call has malformed arguments — unquoted keys in function parameters | {"amount":"medium","product_id":"oceanic","end_date":786} |
TASK repair_structured_output
SPEC
FIELD key_p90 TYPE number REQUIRED no
FIELD field_v56 TYPE string_email REQUIRED yes
FIELD param_q48 TYPE string REQUIRED yes
FIELD attr_p61 TYPE integer REQUIRED yes
BROKEN_OUTPUT
{"key_p90": 641.03, "field_v56": "admin@example.com", "param_q48": "Sao Paulo", "attr_p61": "\"225\""} | {"key_p90":641.03,"field_v56":"admin@example.com","param_q48":"Sao Paulo","attr_p61":225} | wrong_type | {
"type": "object",
"properties": {
"key_p90": {
"type": "number"
},
"field_v56": {
"type": "string",
"format": "email"
},
"param_q48": {
"type": "string"
},
"attr_p61": {
"type": "integer"
}
},
"required": [
"attr_p61",
"field_v56",
"par... | {"key_p90": 641.03, "field_v56": "admin@example.com", "param_q48": "Sao Paulo", "attr_p61": "\"225\""} | Field 'attr_p61' must be integer, got string | {"key_p90":641.03,"field_v56":"admin@example.com","param_q48":"Sao Paulo","attr_p61":225} |
TASK repair_structured_output
SPEC
FIELD prop_q74 TYPE integer REQUIRED yes
FIELD param_m30.attr_j93 TYPE boolean REQUIRED no
FIELD param_m30.prop_h18 TYPE boolean REQUIRED no
FIELD param_m30.col_t67 TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD param_m30.attr_k01 TYPE string VALUES admin|edit... | {"prop_q74":68,"param_m30":{"attr_j93":false,"prop_h18":true,"col_t67":"returned","attr_k01":"viewer"},"key_k51":"arctic","attr_i29":78.56} | tool_call_wrong_param | {
"type": "object",
"properties": {
"prop_q74": {
"type": "integer"
},
"param_m30": {
"type": "object",
"properties": {
"attr_j93": {
"type": "boolean"
},
"prop_h18": {
"type": "boolean"
},
"col_t67": {
"type": "stri... | Tool: apply_discount
Params: {"prop_q74": 68, "param_m30": {"attr_j93": false, "prop_h18": true, "col_t67": "returned", "attr_k01": "viewer"}, "attr_i29": 78.56, "key_k51_value": "arctic"} | Agent used wrong parameter name 'key_k51_value' instead of 'key_k51' | {"prop_q74":68,"param_m30":{"attr_j93":false,"prop_h18":true,"col_t67":"returned","attr_k01":"viewer"},"key_k51":"arctic","attr_i29":78.56} |
TASK repair_structured_output
SPEC
FIELD allele TYPE string REQUIRED yes
FIELD strand TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
FIELD width.score TYPE string_date-time REQUIRED yes
FIELD width.deploy_target TYPE string REQUIRED yes
FIELD width.humidity_pct.allele TYPE string VALUES activ... | {"allele":"demo","strand":"operational","width":{"score":"2022-08-02T14:07:00Z","deploy_target":"Tokyo","humidity_pct":{"allele":"inactive","product_id":"info","branch":"ops@domain.org"}}} | single_quotes | {
"type": "object",
"properties": {
"allele": {
"type": "string"
},
"strand": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
},
"width": {
"type": "object",
"properties": {
"score": {... | {'allele':'demo','strand':'operational','width':{'score':'2022-08-02T14:07:00Z','deploy_target':'Tokyo','humidity_pct':{'allele':'inactive','product_id':'info','branch':'ops@domain.org'}}} | Expecting property name enclosed in double quotes | {"allele":"demo","strand":"operational","width":{"score":"2022-08-02T14:07:00Z","deploy_target":"Tokyo","humidity_pct":{"allele":"inactive","product_id":"info","branch":"ops@domain.org"}}} |
TASK repair_structured_output
SPEC
FIELD turbidity TYPE integer REQUIRED no
FIELD dissolved_oxygen TYPE boolean REQUIRED yes
FIELD batch_code TYPE string REQUIRED yes
BROKEN_OUTPUT
{"turbidity":616,"dissolved_oxygen":false,"batch_code":"Berlin",} | {"turbidity":616,"dissolved_oxygen":false,"batch_code":"Berlin"} | trailing_comma | {
"type": "object",
"properties": {
"turbidity": {
"type": "integer"
},
"dissolved_oxygen": {
"type": "boolean"
},
"batch_code": {
"type": "string"
}
},
"required": [
"batch_code",
"dissolved_oxygen"
]
} | {"turbidity":616,"dissolved_oxygen":false,"batch_code":"Berlin",} | Unexpected trailing comma | {"turbidity":616,"dissolved_oxygen":false,"batch_code":"Berlin"} |
TASK repair_structured_output
SPEC
FIELD address TYPE boolean REQUIRED yes
FIELD company TYPE string VALUES mode_a|mode_b REQUIRED no
FIELD full_name TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD count[] TYPE string_email REQUIRED yes
BROKEN_OUTPUT
{"address":true,"company":"mode_a","full_nam... | {"address":true,"company":"mode_a","full_name":"resolved","count":["ops@test.io","ops@domain.org"]} | truncated_object | {
"type": "object",
"properties": {
"address": {
"type": "boolean"
},
"company": {
"type": "string",
"enum": [
"mode_a",
"mode_b"
]
},
"full_name": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
... | {"address":true,"company":"mode_a","full_name":"resolved","count":["ops@test.io","ops@domain.org"] | Unexpected end of JSON input — truncated object | {"address":true,"company":"mode_a","full_name":"resolved","count":["ops@test.io","ops@domain.org"]} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.