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 last_name TYPE string_date-time REQUIRED no
FIELD date TYPE string REQUIRED no
FIELD conductivity TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED no
FIELD total TYPE string_date-time REQUIRED yes
FIELD temp_celsius[].color TYPE string REQUIRED no
FIELD ... | {"last_name":"2025-05-13T08:42:00Z","conductivity":"option_c","total":"2021-04-20T02:50:00Z","temp_celsius":[{"color":"user@domain.com","aligned_pct":"synonymous","last_name":false,"commit_hash":466,"title":337.77}]} | extra_text_after | {
"type": "object",
"properties": {
"last_name": {
"type": "string",
"format": "date-time"
},
"date": {
"type": "string"
},
"conductivity": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
"option_... | {"last_name":"2025-05-13T08:42:00Z","conductivity":"option_c","total":"2021-04-20T02:50:00Z","temp_celsius":[{"color":"user@domain.com","aligned_pct":"synonymous","last_name":false,"commit_hash":466,"title":337.77}]}
Let me know if you need anything else! | Output contains non-JSON text after the object | {"last_name":"2025-05-13T08:42:00Z","conductivity":"option_c","total":"2021-04-20T02:50:00Z","temp_celsius":[{"color":"user@domain.com","aligned_pct":"synonymous","last_name":false,"commit_hash":466,"title":337.77}]} |
TASK repair_structured_output
SPEC
FIELD prop_l60 TYPE integer REQUIRED yes
FIELD key_h85 TYPE string REQUIRED yes
FIELD param_h54 TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD field_w72 TYPE string REQUIRED yes
BROKEN_OUTPUT
{"prop_l60":233,"key_h85":"London","param_h54":"editor","field_w72":"https://api... | {"prop_l60":233,"key_h85":"London","param_h54":"editor","field_w72":"https://api.example.com/v1"} | extra_text_after | {
"type": "object",
"properties": {
"prop_l60": {
"type": "integer"
},
"key_h85": {
"type": "string"
},
"param_h54": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"field_w72": {
"type": "string"
}
},
"re... | {"prop_l60":233,"key_h85":"London","param_h54":"editor","field_w72":"https://api.example.com/v1"}
This should match the schema you provided. | Output contains non-JSON text after the object | {"prop_l60":233,"key_h85":"London","param_h54":"editor","field_w72":"https://api.example.com/v1"} |
TASK repair_structured_output
SPEC
FIELD priority TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD values TYPE integer REQUIRED no
FIELD phenotype TYPE string REQUIRED no
FIELD status_code TYPE string_date-time REQUIRED no
FIELD paragraph TYPE string_date-time REQUIRED no
FIELD full_name TY... | {"values":920,"phenotype":"Maria","full_name":true,"reagent":"cancelled","annotation":"https://api.com/api"} | null_required | {
"type": "object",
"properties": {
"priority": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"values": {
"type": "integer"
},
"phenotype": {
"type": "string"
},
"status_code": {
"... | {"values": 920, "phenotype": "Maria", "full_name": null, "reagent": "cancelled", "annotation": "https://api.com/api"} | Required field 'full_name' is null | {"values":920,"phenotype":"Maria","full_name":true,"reagent":"cancelled","annotation":"https://api.com/api"} |
TASK repair_structured_output
SPEC
FIELD subtotal TYPE string_uri REQUIRED yes
FIELD country TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD commit_hash TYPE integer REQUIRED yes
FIELD phenotype.consignee TYPE string REQUIRED yes
FIELD phenotype.title TYPE number REQUIRED no
FIELD phenotype.diagnosis_c... | {"subtotal":"https://data.io/api","country":"free","commit_hash":428,"phenotype":{"consignee":"approved","title":859.31,"diagnosis_code":false,"user_id":{"bill_of_lading":"2024-01-15"}}} | trailing_comma | {
"type": "object",
"properties": {
"subtotal": {
"type": "string",
"format": "uri"
},
"country": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"commit_hash": {
"type": "integer"
},
"phenotype":... | {"subtotal":"https://data.io/api","country":"free","commit_hash":428,"phenotype":{"consignee":"approved","title":859.31,"diagnosis_code":false,"user_id":{"bill_of_lading":"2024-01-15",}}} | Unexpected trailing comma | {"subtotal":"https://data.io/api","country":"free","commit_hash":428,"phenotype":{"consignee":"approved","title":859.31,"diagnosis_code":false,"user_id":{"bill_of_lading":"2024-01-15"}}} |
TASK repair_structured_output
SPEC
FIELD param_r92 TYPE string VALUES option_a|option_b|option_c REQUIRED yes
FIELD col_k85.attr_n41 TYPE string REQUIRED yes
FIELD col_k85.param_n29 TYPE string VALUES type_a|type_b|type_c REQUIRED yes
FIELD col_k85.param_l22 TYPE string REQUIRED yes
FIELD col_k85.col_q53 TYPE integer ... | {"param_r92":"option_c","col_k85":{"attr_n41":"Smith","param_n29":"type_c","param_l22":"qux","col_q53":808},"attr_w25":"option_b"} | single_quotes | {
"type": "object",
"properties": {
"param_r92": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c"
]
},
"col_k85": {
"type": "object",
"properties": {
"attr_n41": {
"type": "string"
},
"param_n29": {
... | {'param_r92':'option_c','col_k85':{'attr_n41':'Smith','param_n29':'type_c','param_l22':'qux','col_q53':808},'attr_w25':'option_b'} | Expecting property name enclosed in double quotes | {"param_r92":"option_c","col_k85":{"attr_n41":"Smith","param_n29":"type_c","param_l22":"qux","col_q53":808},"attr_w25":"option_b"} |
TASK repair_structured_output
SPEC
FIELD ph_level TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD collateral.format TYPE null REQUIRED no
FIELD collateral.torque_output TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD collateral.due_date TYPE boolean REQUIRED yes
FIELD ... | {"collateral":{"format":null,"torque_output":"offline","due_date":true},"strand":445,"maturity_date":"2021-01-05T14:21:00Z","half_life":{"diagnosis_code":{"allele":"Luis","shipping":true,"enabled":583,"order_id":"2020-07-18T03:20:00Z","quantity":null,"latitude":"pending"},"ph_level":{"size":"ops@test.io","quantity":"re... | truncated_array | {
"type": "object",
"properties": {
"ph_level": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
},
"collateral": {
"type": "object",
"properties": {
"format": {
"type": "null"
},
"torque_output... | {"collateral":{"format":null,"torque_output":"offline","due_date":true},"strand":445,"maturity_date":"2021-01-05T14:21:00Z","half_life":{"diagnosis_code":{"allele":"Luis","shipping":true,"enabled":583,"order_id":"2020-07-18T03:20:00Z","quantity":null,"latitude":"pending"},"ph_level":{"size":"ops@test.io","quantity":"re... | Unexpected end of JSON input — truncated object | {"collateral":{"format":null,"torque_output":"offline","due_date":true},"strand":445,"maturity_date":"2021-01-05T14:21:00Z","half_life":{"diagnosis_code":{"allele":"Luis","shipping":true,"enabled":583,"order_id":"2020-07-18T03:20:00Z","quantity":null,"latitude":"pending"},"ph_level":{"size":"ops@test.io","quantity":"re... |
TASK repair_structured_output
SPEC
FIELD terminal_id TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
FIELD nickname.isotope TYPE boolean REQUIRED yes
FIELD nickname.altitude.deploy_target TYPE boolean REQUIRED no
FIELD nickname.altitude.payment_status TYPE number REQUIRED no
FIELD nickname.alti... | {"terminal_id":"missense","nickname":{"isotope":true,"altitude":{"deploy_target":false,"payment_status":583.64,"annotation":223,"url":"test@example.com"},"lane":"ops@test.io","freight_class":480,"category":true,"level":"Oliveira"},"ph_level":"anchored","loan_amount":"active","pressure_kpa":330} | missing_required | {
"type": "object",
"properties": {
"terminal_id": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"nickname": {
"type": "object",
"properties": {
"isotope": {
"type": "boolean"
... | {"terminal_id": "missense", "ph_level": "anchored", "loan_amount": "active", "pressure_kpa": 330} | Required field 'nickname' is missing | {"terminal_id":"missense","nickname":{"isotope":true,"altitude":{"deploy_target":false,"payment_status":583.64,"annotation":223,"url":"test@example.com"},"lane":"ops@test.io","freight_class":480,"category":true,"level":"Oliveira"},"ph_level":"anchored","loan_amount":"active","pressure_kpa":330} |
TASK repair_structured_output
SPEC
FIELD prop_x85 TYPE string REQUIRED no
FIELD field_y84 TYPE number REQUIRED no
FIELD prop_n94 TYPE integer REQUIRED yes
FIELD dim_n69.key_h68 TYPE number REQUIRED yes
FIELD dim_n69.val_g69 TYPE string REQUIRED no
FIELD dim_n69.val_w99 TYPE string_uri REQUIRED no
FIELD dim_n69.param_p... | {"prop_x85":"2023-12-25","field_y84":226.75,"prop_n94":158,"dim_n69":{"key_h68":217.49,"val_g69":"Charlie","val_w99":"https://www.org/v1","param_p71":823.55,"key_r66":{"param_g62":"small","prop_c25":"divorced","param_w44":290}},"prop_p71":{"field_x08":598,"val_m87":null}} | single_quotes | {
"type": "object",
"properties": {
"prop_x85": {
"type": "string"
},
"field_y84": {
"type": "number"
},
"prop_n94": {
"type": "integer"
},
"dim_n69": {
"type": "object",
"properties": {
"key_h68": {
"type": "number"
},
"val... | {'prop_x85':'2023-12-25','field_y84':226.75,'prop_n94':158,'dim_n69':{'key_h68':217.49,'val_g69':'Charlie','val_w99':'https://www.org/v1','param_p71':823.55,'key_r66':{'param_g62':'small','prop_c25':'divorced','param_w44':290}},'prop_p71':{'field_x08':598,'val_m87':null}} | Expecting property name enclosed in double quotes | {"prop_x85":"2023-12-25","field_y84":226.75,"prop_n94":158,"dim_n69":{"key_h68":217.49,"val_g69":"Charlie","val_w99":"https://www.org/v1","param_p71":823.55,"key_r66":{"param_g62":"small","prop_c25":"divorced","param_w44":290}},"prop_p71":{"field_x08":598,"val_m87":null}} |
TASK repair_structured_output
SPEC
FIELD id TYPE string REQUIRED no
FIELD turbidity TYPE string_email REQUIRED yes
FIELD chapter TYPE string_date-time REQUIRED no
FIELD ward.priority TYPE string REQUIRED yes
FIELD ward.width TYPE number REQUIRED yes
FIELD ward.city TYPE boolean REQUIRED yes
BROKEN_OUTPUT
{"id":"Berli... | {"id":"Berlin","turbidity":"user@example.com","chapter":"2022-08-27T17:06:00Z","ward":{"priority":"REV","width":995.68,"city":false}} | truncated_array | {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"turbidity": {
"type": "string",
"format": "email"
},
"chapter": {
"type": "string",
"format": "date-time"
},
"ward": {
"type": "object",
"properties": {
"priority": {
... | {"id":"Berlin","turbidity":"user@example.com","chapter":"2022-08-27T17:06:00Z","ward":{"priority":"REV","width":995.68,"city":false} | Unexpected end of JSON input — truncated object | {"id":"Berlin","turbidity":"user@example.com","chapter":"2022-08-27T17:06:00Z","ward":{"priority":"REV","width":995.68,"city":false}} |
TASK repair_structured_output
SPEC
FIELD attr_d55 TYPE boolean REQUIRED yes
FIELD attr_s02 TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD prop_d27 TYPE boolean REQUIRED yes
FIELD key_u57 TYPE string REQUIRED yes
FIELD field_w86 TYPE string REQUIRED no
BROKEN_OUTPUT
{"attr_d55":false,"attr_s02":"push","pro... | {"attr_d55":false,"attr_s02":"push","prop_d27":true,"key_u57":"PASS","field_w86":"world"} | truncated_array | {
"type": "object",
"properties": {
"attr_d55": {
"type": "boolean"
},
"attr_s02": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"prop_d27": {
"type": "boolean"
},
"key_u57": {
"type": "string"
}... | {"attr_d55":false,"attr_s02":"push","prop_d27":true,"key_u57":"PASS","field_w86":"world" | Unexpected end of JSON input — truncated object | {"attr_d55":false,"attr_s02":"push","prop_d27":true,"key_u57":"PASS","field_w86":"world"} |
TASK repair_structured_output
SPEC
FIELD attr_i94.field_l15 TYPE string_uri REQUIRED yes
FIELD attr_i94.val_p85 TYPE null REQUIRED no
FIELD attr_i94.attr_i88 TYPE integer REQUIRED no
FIELD attr_i94.prop_l45 TYPE null REQUIRED no
FIELD attr_i94.attr_u55 TYPE string_email REQUIRED no
FIELD attr_i94.prop_f89 TYPE string ... | {"attr_i94":{"field_l15":"https://example.io/api","val_p85":null,"attr_i88":319,"prop_l45":null,"attr_u55":"user@example.com","prop_f89":"operational","field_a65":568},"attr_v18":"2024-06-30","param_x35":true} | wrong_type | {
"type": "object",
"properties": {
"attr_i94": {
"type": "object",
"properties": {
"field_l15": {
"type": "string",
"format": "uri"
},
"val_p85": {
"type": "null"
},
"attr_i88": {
"type": "integer"
},
"p... | {"attr_i94": {"field_l15": "https://example.io/api", "val_p85": null, "attr_i88": 319, "prop_l45": null, "attr_u55": "user@example.com", "prop_f89": "operational", "field_a65": 568}, "attr_v18": "2024-06-30", "param_x35": "\"yes\""} | Field 'param_x35' must be boolean, got string | {"attr_i94":{"field_l15":"https://example.io/api","val_p85":null,"attr_i88":319,"prop_l45":null,"attr_u55":"user@example.com","prop_f89":"operational","field_a65":568},"attr_v18":"2024-06-30","param_x35":true} |
TASK repair_structured_output
SPEC
FIELD latitude TYPE string_date-time REQUIRED no
FIELD manifest_ref TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED no
FIELD temp_celsius TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED yes
FIELD repository.first_name TYPE integer REQUIRED yes
FIELD repo... | {"latitude":"2024-11-16T04:15:00Z","manifest_ref":"mode_d","temp_celsius":"type_b","repository":{"first_name":139,"label":"mode_d","gene_id":429.25,"lab_result":83},"description":{"currency":"MV-Evergreen-01","order_id":"Luis","company":"info","feedback":1.53,"run_id":{"torque_output":null,"subtotal":"option_b","amplit... | partial_structure | {
"type": "object",
"properties": {
"latitude": {
"type": "string",
"format": "date-time"
},
"manifest_ref": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
"mode_e"
]
},
"temp_celsius": {
"type": "... | The description is {'currency': 'MV-Evergreen-01', 'order_id': 'Luis', 'company': 'info', 'feedback': 1.53, 'run_id': {'torque_output': None, 'subtotal': 'option_b', 'amplitude': 'Johnson', 'product_id': 'PASS', 'aligned_pct': 763.21, 'sensor_id': 256}} and {"latitude":"2024-11-16T04:15:00Z","manifest_ref":"mode_d","te... | Output mixes natural language with JSON | {"latitude":"2024-11-16T04:15:00Z","manifest_ref":"mode_d","temp_celsius":"type_b","repository":{"first_name":139,"label":"mode_d","gene_id":429.25,"lab_result":83},"description":{"currency":"MV-Evergreen-01","order_id":"Luis","company":"info","feedback":1.53,"run_id":{"torque_output":null,"subtotal":"option_b","amplit... |
TASK repair_structured_output
SPEC
FIELD product_id.phone TYPE string REQUIRED no
FIELD product_id.company.first_name TYPE integer REQUIRED yes
FIELD product_id.company.strand TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD product_id.company.dosage TYPE string VALUES success|error|warning|info REQUIRED yes
... | {"product_id":{"phone":"Smith","company":{"first_name":716,"strand":"admin","dosage":"warning","notes":true,"last_name":489,"tags":522,"title":"demo"},"thumbnail":"FWD","balance":null,"features":391.56,"start_date":{"credit_score":null,"currency":453,"frequency_hz":"New York"},"trace_id":null},"color":"degraded","start... | markdown_fences | {
"type": "object",
"properties": {
"product_id": {
"type": "object",
"properties": {
"phone": {
"type": "string"
},
"company": {
"type": "object",
"properties": {
"first_name": {
"type": "integer"
},
... | ```json
{"product_id":{"phone":"Smith","company":{"first_name":716,"strand":"admin","dosage":"warning","notes":true,"last_name":489,"tags":522,"title":"demo"},"thumbnail":"FWD","balance":null,"features":391.56,"start_date":{"credit_score":null,"currency":453,"frequency_hz":"New York"},"trace_id":null},"color":"degraded... | Output contains markdown code fences | {"product_id":{"phone":"Smith","company":{"first_name":716,"strand":"admin","dosage":"warning","notes":true,"last_name":489,"tags":522,"title":"demo"},"thumbnail":"FWD","balance":null,"features":391.56,"start_date":{"credit_score":null,"currency":453,"frequency_hz":"New York"},"trace_id":null},"color":"degraded","start... |
TASK repair_structured_output
SPEC
FIELD key_m65 TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD attr_z10 TYPE string REQUIRED yes
FIELD field_q53 TYPE string_date-time REQUIRED yes
FIELD param_q79[] TYPE string_email REQUIRED no
BROKEN_OUTPUT
{"attr_z10":"Santos","field_q53":"2023-06-09T00:23:00Z","param_q7... | {"attr_z10":"Santos","field_q53":"2023-06-09T00:23:00Z","param_q79":["test@test.io"]} | truncated_object | {
"type": "object",
"properties": {
"key_m65": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"attr_z10": {
"type": "string"
},
"field_q53": {
"type": "string",
"format": "date-time"
},
"param_q79": {
"type... | {"attr_z10":"Santos","field_q53":"2023-06-09T00:23:00Z","param_q79":["test@test.io"] | Unexpected end of JSON input — truncated object | {"attr_z10":"Santos","field_q53":"2023-06-09T00:23:00Z","param_q79":["test@test.io"]} |
TASK repair_structured_output
SPEC
FIELD col_y96 TYPE string_date-time REQUIRED no
FIELD col_x66 TYPE integer REQUIRED no
FIELD dim_p60 TYPE integer REQUIRED yes
FIELD prop_r16 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED no
FIELD param_s09 TYPE string REQUIRED no
FIELD attr_u22.dim_a63 TYPE string V... | {"col_x66":979,"dim_p60":330,"param_s09":"example","field_o03":{"attr_m13":"Jane","param_h57":"world","key_q07":{"field_u32":454,"key_v22":true,"field_o03":false,"field_a61":[false]}}} | trailing_comma | {
"type": "object",
"properties": {
"col_y96": {
"type": "string",
"format": "date-time"
},
"col_x66": {
"type": "integer"
},
"dim_p60": {
"type": "integer"
},
"prop_r16": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_... | {"col_x66":979,"dim_p60":330,"param_s09":"example","field_o03":{"attr_m13":"Jane","param_h57":"world","key_q07":{"field_u32":454,"key_v22":true,"field_o03":false,"field_a61":[false,]}}} | Unexpected trailing comma | {"col_x66":979,"dim_p60":330,"param_s09":"example","field_o03":{"attr_m13":"Jane","param_h57":"world","key_q07":{"field_u32":454,"key_v22":true,"field_o03":false,"field_a61":[false]}}} |
TASK repair_structured_output
SPEC
FIELD amplitude.catalyst TYPE string REQUIRED no
FIELD amplitude.nickname TYPE integer REQUIRED no
FIELD amplitude.gene_id TYPE string REQUIRED no
FIELD amplitude.image_url TYPE string REQUIRED yes
FIELD amplitude.count TYPE string REQUIRED yes
FIELD email TYPE string REQUIRED no
FIE... | {"amplitude":{"catalyst":"example","nickname":217,"gene_id":"pending","image_url":"Paris","count":"Santos"},"email":"sample","step":null,"bed_number":{"payment_status":301,"latitude":159,"crew_id":false,"gene_id":"world","catalyst":null,"notes":160},"medication":"maintenance","credit_score":523,"duration_ms":{"catalyst... | tool_call_wrong_param | {
"type": "object",
"properties": {
"amplitude": {
"type": "object",
"properties": {
"catalyst": {
"type": "string"
},
"nickname": {
"type": "integer"
},
"gene_id": {
"type": "string"
},
"image_url": {
"t... | Tool: create_order
Params: {"amplitude": {"catalyst": "example", "nickname": 217, "gene_id": "pending", "image_url": "Paris", "count": "Santos"}, "email": "sample", "step": null, "bed_number": {"payment_status": 301, "latitude": 159, "crew_id": false, "gene_id": "world", "catalyst": null, "notes": 160}, "medication": "... | Agent used wrong parameter name 'duration_ms2' instead of 'duration_ms' | {"amplitude":{"catalyst":"example","nickname":217,"gene_id":"pending","image_url":"Paris","count":"Santos"},"email":"sample","step":null,"bed_number":{"payment_status":301,"latitude":159,"crew_id":false,"gene_id":"world","catalyst":null,"notes":160},"medication":"maintenance","credit_score":523,"duration_ms":{"catalyst... |
TASK repair_structured_output
SPEC
FIELD width TYPE number REQUIRED yes
FIELD published TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
FIELD compound TYPE boolean REQUIRED yes
BROKEN_OUTPUT
{"width":651.43,"published":"nonsense","compound":true}
Feel free to ask if you have questions. | {"width":651.43,"published":"nonsense","compound":true} | extra_text_after | {
"type": "object",
"properties": {
"width": {
"type": "number"
},
"published": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"compound": {
"type": "boolean"
}
},
"required": [
"publ... | {"width":651.43,"published":"nonsense","compound":true}
Feel free to ask if you have questions. | Output contains non-JSON text after the object | {"width":651.43,"published":"nonsense","compound":true} |
TASK repair_structured_output
SPEC
FIELD turbidity TYPE string REQUIRED yes
FIELD product_id TYPE string_email REQUIRED no
FIELD catalyst TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD annotation[] TYPE string REQUIRED no
BROKEN_OUTPUT
```json
{"turbidity":"qux","product_id":"info@test.io"}
``... | {"turbidity":"qux","product_id":"info@test.io"} | markdown_fences | {
"type": "object",
"properties": {
"turbidity": {
"type": "string"
},
"product_id": {
"type": "string",
"format": "email"
},
"catalyst": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"a... | ```json
{"turbidity":"qux","product_id":"info@test.io"}
``` | Output contains markdown code fences | {"turbidity":"qux","product_id":"info@test.io"} |
TASK repair_structured_output
SPEC
FIELD barcode TYPE integer REQUIRED yes
FIELD decay_rate TYPE null REQUIRED yes
FIELD department TYPE integer REQUIRED yes
BROKEN_OUTPUT
{"barcode": 155, "decay_rate": null, "department": null} | {"barcode":155,"decay_rate":null,"department":680} | null_required | {
"type": "object",
"properties": {
"barcode": {
"type": "integer"
},
"decay_rate": {
"type": "null"
},
"department": {
"type": "integer"
}
},
"required": [
"barcode",
"department",
"decay_rate"
]
} | {"barcode": 155, "decay_rate": null, "department": null} | Required field 'department' is null | {"barcode":155,"decay_rate":null,"department":680} |
TASK repair_structured_output
SPEC
FIELD collateral TYPE string_date-time REQUIRED no
FIELD turbidity TYPE string_uri REQUIRED no
FIELD company TYPE number REQUIRED yes
FIELD shift_code.barcode TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD shift_code.transaction_id TYPE string VALUES operational|... | {"collateral":"2020-06-05T12:33:00Z","turbidity":"https://www.org/data","company":713.38,"shift_code":{"barcode":"oceanic","transaction_id":"degraded","country":"success"}} | number_with_unit | {
"type": "object",
"properties": {
"collateral": {
"type": "string",
"format": "date-time"
},
"turbidity": {
"type": "string",
"format": "uri"
},
"company": {
"type": "number"
},
"shift_code": {
"type": "object",
"properties": {
"barcode... | {"collateral": "2020-06-05T12:33:00Z", "turbidity": "https://www.org/data", "company": "713.38MB", "shift_code": {"barcode": "oceanic", "transaction_id": "degraded", "country": "success"}} | Field 'company' must be number, got string with unit | {"collateral":"2020-06-05T12:33:00Z","turbidity":"https://www.org/data","company":713.38,"shift_code":{"barcode":"oceanic","transaction_id":"degraded","country":"success"}} |
TASK repair_structured_output
SPEC
FIELD param_u34.param_l96 TYPE null REQUIRED no
FIELD param_u34.param_q77 TYPE string REQUIRED yes
FIELD param_u34.val_p90 TYPE integer REQUIRED no
FIELD param_u34.col_u21 TYPE string_uri REQUIRED no
FIELD col_p22 TYPE integer REQUIRED yes
FIELD dim_y32 TYPE string VALUES mode_a|mode... | {"param_u34":{"param_l96":null,"param_q77":"Hapag-Lloyd-Express","val_p90":131},"col_p22":134,"dim_y32":"mode_a"} | single_quotes | {
"type": "object",
"properties": {
"param_u34": {
"type": "object",
"properties": {
"param_l96": {
"type": "null"
},
"param_q77": {
"type": "string"
},
"val_p90": {
"type": "integer"
},
"col_u21": {
"typ... | {'param_u34':{'param_l96':null,'param_q77':'Hapag-Lloyd-Express','val_p90':131},'col_p22':134,'dim_y32':'mode_a'} | Expecting property name enclosed in double quotes | {"param_u34":{"param_l96":null,"param_q77":"Hapag-Lloyd-Express","val_p90":131},"col_p22":134,"dim_y32":"mode_a"} |
TASK repair_structured_output
SPEC
FIELD lab_result TYPE string REQUIRED yes
FIELD dissolved_oxygen TYPE boolean REQUIRED no
FIELD end_date.brake_pressure TYPE string VALUES mode_a|mode_b|mode_c REQUIRED yes
FIELD end_date.dosage TYPE string REQUIRED no
FIELD end_date.country TYPE integer REQUIRED no
FIELD end_date.ph... | {"lab_result":"https://example.com","end_date":{"brake_pressure":"mode_c","country":950,"ph_level":20,"website":{"shipping":"completed","log_level":"open","end_date":480,"freight_class":"London"}},"type":{"quality_score":"world","message":556,"department":"https://data.com/api"}} | trailing_comma | {
"type": "object",
"properties": {
"lab_result": {
"type": "string"
},
"dissolved_oxygen": {
"type": "boolean"
},
"end_date": {
"type": "object",
"properties": {
"brake_pressure": {
"type": "string",
"enum": [
"mode_a",
... | {"lab_result":"https://example.com","end_date":{"brake_pressure":"mode_c","country":950,"ph_level":20,"website":{"shipping":"completed","log_level":"open","end_date":480,"freight_class":"London"}},"type":{"quality_score":"world","message":556,"department":"https://data.com/api"},} | Unexpected trailing comma | {"lab_result":"https://example.com","end_date":{"brake_pressure":"mode_c","country":950,"ph_level":20,"website":{"shipping":"completed","log_level":"open","end_date":480,"freight_class":"London"}},"type":{"quality_score":"world","message":556,"department":"https://data.com/api"}} |
TASK repair_structured_output
SPEC
FIELD quality_score TYPE boolean REQUIRED no
FIELD end_date TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD bearing TYPE string REQUIRED yes
FIELD collateral TYPE string_uri REQUIRED no
FIELD shipping.description TYPE string VALUES pending_review|confirmed|rej... | {"quality_score":true,"end_date":"returned","bearing":"GRCh38","shipping":{"description":"pending_review","type":"closed","catalyst":"blue","branch":"oceanic","due_date":"world"},"position":"London"} | agent_chain | {
"type": "object",
"properties": {
"quality_score": {
"type": "boolean"
},
"end_date": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"bearing": {
"type": "string"
},
"collateral": {
"ty... | I need to look up the information first.
Action: align_reads
Result: {"quality_score": true, "bearing": "GRCh38", "shipping": {"description": "pending_review", "type": "closed", "catalyst": "blue", "branch": "oceanic", "due_date": "world"}, "position": "London"}
Processing the request now.
Action: get_account
Result: | Agent multi-step chain with truncated tool output | {"quality_score":true,"end_date":"returned","bearing":"GRCh38","shipping":{"description":"pending_review","type":"closed","catalyst":"blue","branch":"oceanic","due_date":"world"},"position":"London"} |
TASK repair_structured_output
SPEC
FIELD val_t76.key_m06 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED yes
FIELD val_t76.val_o93 TYPE string REQUIRED no
FIELD val_t76.attr_k62 TYPE number REQUIRED no
FIELD val_t76.attr_m54 TYPE string REQUIRED yes
FIELD val_t76.attr_z57 TYPE string REQUIRED no
FIELD v... | {"val_t76":{"key_m06":"mode_b","val_o93":"New York","attr_k62":751.84,"attr_m54":"example","attr_z57":"hello","col_n01":true,"key_d57":"type_a"},"dim_u87":false,"dim_s12":"xl","val_o09":"A short description.","prop_l54":"https://data.org/data","field_z76":{"attr_v25":null,"val_i68":"type_d","key_c33":null,"col_v94":929... | tool_call_bad_format | {
"type": "object",
"properties": {
"val_t76": {
"type": "object",
"properties": {
"key_m06": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
"mode_e"
]
},
"val_o93... | <functioncall> read_sensor_array
{val_t76: {key_m06: "mode_b", val_o93: "New York", attr_k62: 751.84, attr_m54: "example", attr_z57: "hello", col_n01: true, key_d57: "type_a"}, dim_u87: false, dim_s12: "xl", val_o09: "A short description.", prop_l54: "https://data.org/data", field_z76: {attr_v25: null, val_i68: "type_d... | Tool call has malformed arguments — unquoted keys in function parameters | {"val_t76":{"key_m06":"mode_b","val_o93":"New York","attr_k62":751.84,"attr_m54":"example","attr_z57":"hello","col_n01":true,"key_d57":"type_a"},"dim_u87":false,"dim_s12":"xl","val_o09":"A short description.","prop_l54":"https://data.org/data","field_z76":{"attr_v25":null,"val_i68":"type_d","key_c33":null,"col_v94":929... |
TASK repair_structured_output
SPEC
FIELD field_a22 TYPE string VALUES cat_a|cat_b|cat_c REQUIRED yes
FIELD val_g39 TYPE string_email REQUIRED no
FIELD attr_i49.param_g80.key_v20 TYPE string REQUIRED yes
FIELD attr_i49.param_g80.val_v75 TYPE integer REQUIRED yes
FIELD attr_i49.param_g80.val_x64 TYPE number REQUIRED yes... | {"field_a22":"cat_c","val_g39":"admin@test.io","attr_i49":{"param_g80":{"key_v20":"Paris","val_v75":569,"val_x64":380.86},"col_l37":false,"param_i32":{"field_g91":60.2,"col_i74":false,"prop_y75":859,"key_p65":"chrX","param_g13":false,"param_z90":333,"col_q07":739.62,"attr_y31":281}},"val_m66":41,"prop_j75":false} | trailing_comma | {
"type": "object",
"properties": {
"field_a22": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c"
]
},
"val_g39": {
"type": "string",
"format": "email"
},
"attr_i49": {
"type": "object",
"properties": {
"param_g80":... | {"field_a22":"cat_c","val_g39":"admin@test.io","attr_i49":{"param_g80":{"key_v20":"Paris","val_v75":569,"val_x64":380.86,},"col_l37":false,"param_i32":{"field_g91":60.2,"col_i74":false,"prop_y75":859,"key_p65":"chrX","param_g13":false,"param_z90":333,"col_q07":739.62,"attr_y31":281}},"val_m66":41,"prop_j75":false} | Unexpected trailing comma | {"field_a22":"cat_c","val_g39":"admin@test.io","attr_i49":{"param_g80":{"key_v20":"Paris","val_v75":569,"val_x64":380.86},"col_l37":false,"param_i32":{"field_g91":60.2,"col_i74":false,"prop_y75":859,"key_p65":"chrX","param_g13":false,"param_z90":333,"col_q07":739.62,"attr_y31":281}},"val_m66":41,"prop_j75":false} |
TASK repair_structured_output
SPEC
FIELD val_g09 TYPE string REQUIRED no
FIELD dim_g19 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD col_f90 TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD attr_k08 TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD key_h55 TYPE null REQUIRED yes
FIELD dim_r... | {"dim_g19":"GBP","attr_k08":"viewer","key_h55":null,"attr_y55":{"prop_l24":{"dim_a72":"new","attr_k91":85,"param_x26":560,"col_o01":169},"col_y32":"maintenance","param_c16":{"val_f24":"synonymous","field_u15":"test","prop_l75":[229.56,748.08,549.84,909.55]},"attr_l83":447.8,"attr_n35":"Bob"},"key_x42":false} | boolean_as_string | {
"type": "object",
"properties": {
"val_g09": {
"type": "string"
},
"dim_g19": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"col_f90": {
"type": "string",
"enum": [
"email",
"phon... | {"dim_g19": "GBP", "attr_k08": "viewer", "key_h55": null, "attr_y55": {"prop_l24": {"dim_a72": "new", "attr_k91": 85, "param_x26": 560, "col_o01": 169}, "col_y32": "maintenance", "param_c16": {"val_f24": "synonymous", "field_u15": "test", "prop_l75": [229.56, 748.08, 549.84, 909.55]}, "attr_l83": 447.8, "attr_n35": "Bo... | Field 'key_x42' must be boolean, got string | {"dim_g19":"GBP","attr_k08":"viewer","key_h55":null,"attr_y55":{"prop_l24":{"dim_a72":"new","attr_k91":85,"param_x26":560,"col_o01":169},"col_y32":"maintenance","param_c16":{"val_f24":"synonymous","field_u15":"test","prop_l75":[229.56,748.08,549.84,909.55]},"attr_l83":447.8,"attr_n35":"Bob"},"key_x42":false} |
TASK repair_structured_output
SPEC
FIELD prop_p77 TYPE integer REQUIRED no
FIELD key_c88.key_o14 TYPE integer REQUIRED no
FIELD key_c88.field_y30 TYPE string REQUIRED yes
FIELD key_c88.param_t83 TYPE string_email REQUIRED no
FIELD key_c88.dim_l46 TYPE null REQUIRED no
FIELD param_h63 TYPE integer REQUIRED no
FIELD val... | {"key_c88":{"key_o14":163,"field_y30":"Tokyo"},"val_o25":"confirmed","dim_z45":"phone","key_x43":820,"field_o02":"pending","col_g15":"option_d"} | agent_chain | {
"type": "object",
"properties": {
"prop_p77": {
"type": "integer"
},
"key_c88": {
"type": "object",
"properties": {
"key_o14": {
"type": "integer"
},
"field_y30": {
"type": "string"
},
"param_t83": {
"type": "strin... | I need to look up the information first.
Action: check_availability
Result: {"val_o25": "confirmed", "dim_z45": "phone", "key_x43": 820, "field_o02": "pending", "col_g15": "option_d"}
I'll query our database.
Action: filter_variants
Result: | Agent multi-step chain with truncated tool output | {"key_c88":{"key_o14":163,"field_y30":"Tokyo"},"val_o25":"confirmed","dim_z45":"phone","key_x43":820,"field_o02":"pending","col_g15":"option_d"} |
TASK repair_structured_output
SPEC
FIELD trace_id.quality_score TYPE string REQUIRED no
FIELD trace_id.manifest_ref TYPE boolean REQUIRED yes
FIELD trace_id.duration_ms TYPE string REQUIRED no
FIELD image_url.email TYPE string_uri REQUIRED yes
FIELD image_url.tax TYPE boolean REQUIRED no
FIELD image_url.pressure_kpa T... | {"trace_id":{"quality_score":"Maria","manifest_ref":false},"image_url":{"email":"https://www.io/api","tax":false,"pressure_kpa":"Santos"},"chromosome":{"conductivity":"https://api.example.com/v1","priority":533,"visible":"Smith","status":[{"ph_level":"type_a","salinity":"London"}],"order_id":["mode_a","mode_a"]},"ward"... | tool_call_text_mix | {
"type": "object",
"properties": {
"trace_id": {
"type": "object",
"properties": {
"quality_score": {
"type": "string"
},
"manifest_ref": {
"type": "boolean"
},
"duration_ms": {
"type": "string"
}
},
"required... | Let me check the system.
<tool_call name="delete_item">
{"trace_id":{"quality_score":"Maria","manifest_ref":false},"image_url":{"email":"https://www.io/api","tax":false,"pressure_kpa":"Santos"},"chromosome":{"conductivity":"https://api.example.com/v1","priority":533,"visible":"Smith","status":[{"ph_level":"type_a","sal... | Agent response mixes reasoning text with tool call | {"trace_id":{"quality_score":"Maria","manifest_ref":false},"image_url":{"email":"https://www.io/api","tax":false,"pressure_kpa":"Santos"},"chromosome":{"conductivity":"https://api.example.com/v1","priority":533,"visible":"Smith","status":[{"ph_level":"type_a","salinity":"London"}],"order_id":["mode_a","mode_a"]},"ward"... |
TASK repair_structured_output
SPEC
FIELD field_x19 TYPE string_email REQUIRED yes
FIELD val_n94 TYPE string REQUIRED no
FIELD field_i69 TYPE integer REQUIRED no
FIELD field_r17 TYPE string REQUIRED yes
FIELD attr_o05 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD attr_k63 TYPE null REQUIR... | {"field_x19":"info@domain.org","field_r17":"user@domain.com","attr_o05":"frameshift","attr_k63":null,"prop_u82":"black","dim_d93":true} | truncated_object | {
"type": "object",
"properties": {
"field_x19": {
"type": "string",
"format": "email"
},
"val_n94": {
"type": "string"
},
"field_i69": {
"type": "integer"
},
"field_r17": {
"type": "string"
},
"attr_o05": {
"type": "string",
"enum": [
... | {"field_x19":"info@domain.org","field_r17":"user@domain.com","attr_o05":"frameshift","attr_k63":null,"prop_u82":"black","dim_d93":true | Unexpected end of JSON input — truncated object | {"field_x19":"info@domain.org","field_r17":"user@domain.com","attr_o05":"frameshift","attr_k63":null,"prop_u82":"black","dim_d93":true} |
TASK repair_structured_output
SPEC
FIELD shipper_ref TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD timezone TYPE string_date-time REQUIRED yes
FIELD status_code TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
BROKEN_OUTPUT
Let me analyze the request and generate the appropriate JSO... | {"shipper_ref":"viewer","timezone":"2020-06-24T18:20:00Z","status_code":"missense"} | thought_process | {
"type": "object",
"properties": {
"shipper_ref": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"timezone": {
"type": "string",
"format": "date-time"
},
"status_code": {
"type": "string",
"enum": [
"synon... | Let me analyze the request and generate the appropriate JSON.
The user wants a structured object with specific fields.
{"shipper_ref":"viewer","timezone":"2020-06-24T18:20:00Z","status_code":"missense"} | Output contains chain-of-thought reasoning before JSON | {"shipper_ref":"viewer","timezone":"2020-06-24T18:20:00Z","status_code":"missense"} |
TASK repair_structured_output
SPEC
FIELD quality_score TYPE boolean REQUIRED yes
FIELD category TYPE number REQUIRED yes
FIELD updated_at[] TYPE integer REQUIRED no
FIELD feedback[].weight TYPE string REQUIRED yes
FIELD feedback[].crew_id TYPE string REQUIRED yes
FIELD feedback[].pressure_kpa TYPE string VALUES type_a... | {"quality_score":true,"category":344.29,"feedback":[{"weight":"test@example.com","crew_id":"approved","pressure_kpa":"type_a","id":true,"language":"level_1"},{"weight":"Alice","crew_id":"world","pressure_kpa":"type_c","id":true,"language":"level_1"}]} | extra_field | {
"type": "object",
"properties": {
"quality_score": {
"type": "boolean"
},
"category": {
"type": "number"
},
"updated_at": {
"type": "array",
"items": {
"type": "integer"
}
},
"feedback": {
"type": "array",
"items": {
"type": "ob... | {"quality_score": true, "category": 344.29, "feedback": [{"weight": "test@example.com", "crew_id": "approved", "pressure_kpa": "type_a", "id": true, "language": "level_1"}, {"weight": "Alice", "crew_id": "world", "pressure_kpa": "type_c", "id": true, "language": "level_1"}], "extra_data_2883": "unexpected"} | Unknown field 'extra_data_2883' not defined in schema | {"quality_score":true,"category":344.29,"feedback":[{"weight":"test@example.com","crew_id":"approved","pressure_kpa":"type_a","id":true,"language":"level_1"},{"weight":"Alice","crew_id":"world","pressure_kpa":"type_c","id":true,"language":"level_1"}]} |
TASK repair_structured_output
SPEC
FIELD altitude TYPE number REQUIRED no
FIELD nickname TYPE string VALUES single|married|divorced REQUIRED yes
FIELD status.city.city TYPE string REQUIRED no
FIELD status.city.medication TYPE integer REQUIRED yes
FIELD status.city.website TYPE string_date-time REQUIRED no
FIELD status... | {"altitude":116.12,"nickname":"married","status":{"city":{"city":"Tokyo","medication":939,"section":"GRCh38","throttle_pos":["https://example.com","Smith","baz"]},"isotope":false,"collateral":285,"language":"USD","username":470,"altitude":null}} | tool_call_python_syntax | {
"type": "object",
"properties": {
"altitude": {
"type": "number"
},
"nickname": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"status": {
"type": "object",
"properties": {
"city": {
"type": "obje... | calculate_docking_fee(altitude=116.12, nickname='married', status={'city': {'city': 'Tokyo', 'medication': 939, 'section': 'GRCh38', 'throttle_pos': ['https://example.com', 'Smith', 'baz']}, 'isotope': False, 'collateral': 285, 'language': 'USD', 'username': 470, 'altitude': None}) | Tool call uses Python syntax instead of JSON | {"altitude":116.12,"nickname":"married","status":{"city":{"city":"Tokyo","medication":939,"section":"GRCh38","throttle_pos":["https://example.com","Smith","baz"]},"isotope":false,"collateral":285,"language":"USD","username":470,"altitude":null}} |
TASK repair_structured_output
SPEC
FIELD key_t63 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
FIELD key_p96 TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes
FIELD key_p11 TYPE string REQUIRED yes
BROKEN_OUTPUT
Here's the structured output:
{"key_t63":"operational","key_p96"... | {"key_t63":"operational","key_p96":"berthed","key_p11":"Maria"} | extra_text_before | {
"type": "object",
"properties": {
"key_t63": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
},
"key_p96": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
... | Here's the structured output:
{"key_t63":"operational","key_p96":"berthed","key_p11":"Maria"} | Output contains non-JSON text before the object | {"key_t63":"operational","key_p96":"berthed","key_p11":"Maria"} |
TASK repair_structured_output
SPEC
FIELD shift_code TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
FIELD lane TYPE string VALUES option_a|option_b|option_c|option_d REQUIRED yes
FIELD website TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED no
FIELD salinity TYPE boolean REQUIRED no
BR... | {"shift_code":"missense","lane":"option_c","website":"mode_a","salinity":true} | wrong_type | {
"type": "object",
"properties": {
"shift_code": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"lane": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
... | {"shift_code": "missense", "lane": "option_c", "website": "mode_a", "salinity": "\"yes\""} | Field 'salinity' must be boolean, got string | {"shift_code":"missense","lane":"option_c","website":"mode_a","salinity":true} |
TASK repair_structured_output
SPEC
FIELD prop_p62 TYPE string VALUES cat_a|cat_b REQUIRED yes
FIELD prop_x41 TYPE integer REQUIRED yes
FIELD field_b79 TYPE string REQUIRED yes
FIELD param_x62 TYPE null REQUIRED no
FIELD field_c62 TYPE number REQUIRED yes
BROKEN_OUTPUT
{"prop_p62":"cat_b","prop_x41":312,"field_b79":"e... | {"prop_p62":"cat_b","prop_x41":312,"field_b79":"example","param_x62":null,"field_c62":351.66} | trailing_comma | {
"type": "object",
"properties": {
"prop_p62": {
"type": "string",
"enum": [
"cat_a",
"cat_b"
]
},
"prop_x41": {
"type": "integer"
},
"field_b79": {
"type": "string"
},
"param_x62": {
"type": "null"
},
"field_c62": {
"typ... | {"prop_p62":"cat_b","prop_x41":312,"field_b79":"example","param_x62":null,"field_c62":351.66,} | Unexpected trailing comma | {"prop_p62":"cat_b","prop_x41":312,"field_b79":"example","param_x62":null,"field_c62":351.66} |
TASK repair_structured_output
SPEC
FIELD isotope.humidity_pct TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD isotope.reagent TYPE string REQUIRED no
FIELD isotope.log_level TYPE null REQUIRED no
FIELD isotope.berth_slot[] TYPE boolean REQUIRED yes
FIELD isotope.full_name[] TYPE string REQUIRED no
FIEL... | {"count":"error","log_level":"editor","shift_code":"London","address":{"email":"rejected","fleet_number":true,"salinity":{"length":"active","color":"MV-Evergreen-01","quantity":"USD","category":434.45,"position":354.44,"gene_id":393},"aligned_pct":{"transaction_id":"viewer","shift_code":"high","priority":"EUR","bearing... | missing_required | {
"type": "object",
"properties": {
"isotope": {
"type": "object",
"properties": {
"humidity_pct": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"reagent": {
"typ... | {"count": "error", "log_level": "editor", "shift_code": "London", "address": {"email": "rejected", "fleet_number": true, "salinity": {"length": "active", "color": "MV-Evergreen-01", "quantity": "USD", "category": 434.45, "position": 354.44, "gene_id": 393}, "aligned_pct": {"transaction_id": "viewer", "shift_code": "hig... | Required field 'dissolved_oxygen' is missing | {"count":"error","log_level":"editor","shift_code":"London","address":{"email":"rejected","fleet_number":true,"salinity":{"length":"active","color":"MV-Evergreen-01","quantity":"USD","category":434.45,"position":354.44,"gene_id":393},"aligned_pct":{"transaction_id":"viewer","shift_code":"high","priority":"EUR","bearing... |
TASK repair_structured_output
SPEC
FIELD compound TYPE string REQUIRED yes
FIELD shipper_ref TYPE string REQUIRED no
FIELD discount TYPE string VALUES cat_a|cat_b REQUIRED no
FIELD cargo_type TYPE string REQUIRED no
FIELD frequency_hz TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD last_name.voltag... | {"compound":"demo","discount":"cat_b","frequency_hz":"reliable","score":{"commit_hash":380.93,"price":"hemizygous","aligned_pct":"chr1","label":711,"port_code":"heterozygous"}} | tool_call_bad_format | {
"type": "object",
"properties": {
"compound": {
"type": "string"
},
"shipper_ref": {
"type": "string"
},
"discount": {
"type": "string",
"enum": [
"cat_a",
"cat_b"
]
},
"cargo_type": {
"type": "string"
},
"frequency_hz": {
... | <functioncall> lookup_customer
{compound: "demo", discount: "cat_b", frequency_hz: "reliable", score: {commit_hash: 380.93, price: "hemizygous", aligned_pct: "chr1", label: 711, port_code: "heterozygous"}} | Tool call has malformed arguments — unquoted keys in function parameters | {"compound":"demo","discount":"cat_b","frequency_hz":"reliable","score":{"commit_hash":380.93,"price":"hemizygous","aligned_pct":"chr1","label":711,"port_code":"heterozygous"}} |
TASK repair_structured_output
SPEC
FIELD val_a15 TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD val_i89 TYPE string VALUES single|married|divorced REQUIRED yes
FIELD val_c08 TYPE integer REQUIRED yes
FIELD param_x35 TYPE boolean REQUIRED no
FIELD col_a87 TYPE string_date-time REQUIRED yes
FIELD val_c20.fie... | {"val_a15":"push","val_i89":"single","val_c08":424,"param_x35":false,"col_a87":"2026-09-09T04:20:00Z","val_c20":{"field_k67":"returned","val_d01":670,"attr_d06":465,"attr_v38":773.17}} | invalid_enum | {
"type": "object",
"properties": {
"val_a15": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"val_i89": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"val_c08": {... | {"val_a15": "invalid_option_443", "val_i89": "single", "val_c08": 424, "param_x35": false, "col_a87": "2026-09-09T04:20:00Z", "val_c20": {"field_k67": "returned", "val_d01": 670, "attr_d06": 465, "attr_v38": 773.17}} | Field 'val_a15' has invalid enum value 'invalid_option_443', expected one of ['email', 'phone', 'sms', 'push'] | {"val_a15":"push","val_i89":"single","val_c08":424,"param_x35":false,"col_a87":"2026-09-09T04:20:00Z","val_c20":{"field_k67":"returned","val_d01":670,"attr_d06":465,"attr_v38":773.17}} |
TASK repair_structured_output
SPEC
FIELD balance TYPE number REQUIRED yes
FIELD priority TYPE string VALUES cat_a|cat_b|cat_c REQUIRED yes
FIELD thumbnail TYPE string_uri REQUIRED no
FIELD last_name TYPE integer REQUIRED yes
FIELD feedback TYPE string REQUIRED yes
BROKEN_OUTPUT
check_availability(balance=290.42, prio... | {"balance":290.42,"priority":"cat_c","last_name":20,"feedback":"foo"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"balance": {
"type": "number"
},
"priority": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c"
]
},
"thumbnail": {
"type": "string",
"format": "uri"
},
"last_name": {
"type": "inte... | check_availability(balance=290.42, priority='cat_c', last_name=20, feedback='foo') | Tool call uses Python syntax instead of JSON | {"balance":290.42,"priority":"cat_c","last_name":20,"feedback":"foo"} |
TASK repair_structured_output
SPEC
FIELD key_q02 TYPE string VALUES single|married|divorced REQUIRED yes
FIELD field_i09 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD key_p47 TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD attr_u12 TYPE null REQUIRED no
FIELD field_g86 TYPE ... | {"key_q02":"divorced","field_i09":"inland","attr_u12":null,"val_a56":null,"prop_h14":425} | agent_chain | {
"type": "object",
"properties": {
"key_q02": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"field_i09": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
},
"... | I need to look up the information first.
Action: track_vessel
Result: {"field_i09": "inland", "attr_u12": null, "val_a56": null, "prop_h14": 425}
I'll query our database.
Action: create_order
Result: | Agent multi-step chain with truncated tool output | {"key_q02":"divorced","field_i09":"inland","attr_u12":null,"val_a56":null,"prop_h14":425} |
TASK repair_structured_output
SPEC
FIELD dim_p93 TYPE string REQUIRED yes
FIELD key_e26 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD field_j63 TYPE null REQUIRED no
FIELD field_a94 TYPE integer REQUIRED yes
FIELD val_e79.field_l43 TYPE boolean REQUIRED yes
FIELD val_e79.attr_z14 TYPE string VALUES red|blu... | {"dim_p93":"A short description.","key_e26":"EUR","field_a94":136,"val_e79":{"field_l43":false,"attr_z14":"black","field_d62":"user@test.io","field_j44":null,"param_p65":"2021-09-18T18:51:00Z","attr_e68":709.9,"dim_k59":"xl"}} | markdown_explanation | {
"type": "object",
"properties": {
"dim_p93": {
"type": "string"
},
"key_e26": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"field_j63": {
"type": "null"
},
"field_a94": {
"type": "intege... | I've generated the following JSON:
```json
{"dim_p93":"A short description.","key_e26":"EUR","field_a94":136,"val_e79":{"field_l43":false,"attr_z14":"black","field_d62":"user@test.io","field_j44":null,"param_p65":"2021-09-18T18:51:00Z","attr_e68":709.9,"dim_k59":"xl"}}
```
Let me know if you need anything else! | Output contains markdown and explanatory text around JSON | {"dim_p93":"A short description.","key_e26":"EUR","field_a94":136,"val_e79":{"field_l43":false,"attr_z14":"black","field_d62":"user@test.io","field_j44":null,"param_p65":"2021-09-18T18:51:00Z","attr_e68":709.9,"dim_k59":"xl"}} |
TASK repair_structured_output
SPEC
FIELD lane TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD published TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED yes
FIELD score TYPE string REQUIRED yes
BROKEN_OUTPUT
{"lane":"free","published":"type_c","score":"Diana",} | {"lane":"free","published":"type_c","score":"Diana"} | trailing_comma | {
"type": "object",
"properties": {
"lane": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"published": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d"
]
... | {"lane":"free","published":"type_c","score":"Diana",} | Unexpected trailing comma | {"lane":"free","published":"type_c","score":"Diana"} |
TASK repair_structured_output
SPEC
FIELD param_a12.prop_g81 TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD param_a12.val_e88 TYPE string VALUES draft|published|archived REQUIRED yes
FIELD param_a12.dim_e45 TYPE boolean REQUIRED yes
FIELD param_a12.param_j86 TYPE integer REQUIRED yes
FIELD param_a12.c... | {"attr_c82":"Tokyo","prop_u20":250.15,"key_c76":"info@domain.org","dim_d02":false,"val_w24":"pending","col_x77":464} | null_required | {
"type": "object",
"properties": {
"param_a12": {
"type": "object",
"properties": {
"prop_g81": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"val_e88": {
... | {"attr_c82": null, "prop_u20": 250.15, "key_c76": "info@domain.org", "dim_d02": false, "val_w24": "pending", "col_x77": 464} | Required field 'attr_c82' is null | {"attr_c82":"Tokyo","prop_u20":250.15,"key_c76":"info@domain.org","dim_d02":false,"val_w24":"pending","col_x77":464} |
TASK repair_structured_output
SPEC
FIELD param_p61 TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no
FIELD val_l55 TYPE string VALUES cat_a|cat_b REQUIRED no
FIELD key_m62 TYPE string VALUES draft|published|archived REQUIRED no
FIELD col_b19 TYPE string VALUES type_a|type_b|type_c|type_d|type_e|type_f REQ... | {"param_p61":"level_3","key_m62":"draft","dim_h39":true,"key_m59":"baz","field_b49":225} | thought_process | {
"type": "object",
"properties": {
"param_p61": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4"
]
},
"val_l55": {
"type": "string",
"enum": [
"cat_a",
"cat_b"
]
},
"key_m62": {
"ty... | Let me analyze the request and generate the appropriate JSON.
The user wants a structured object with specific fields.
{"param_p61":"level_3","key_m62":"draft","dim_h39":true,"key_m59":"baz","field_b49":225} | Output contains chain-of-thought reasoning before JSON | {"param_p61":"level_3","key_m62":"draft","dim_h39":true,"key_m59":"baz","field_b49":225} |
TASK repair_structured_output
SPEC
FIELD prop_a53 TYPE integer REQUIRED no
FIELD param_s11 TYPE string_email REQUIRED yes
FIELD param_q40 TYPE boolean REQUIRED no
FIELD param_s96 TYPE string REQUIRED yes
FIELD param_q29 TYPE string REQUIRED yes
FIELD field_l98.col_m81 TYPE number REQUIRED yes
FIELD field_l98.field_g64... | {"prop_a53":984,"param_s11":"test@domain.org","param_q40":false,"param_s96":"https://example.com","param_q29":"2024-01-15","field_l98":{"col_m81":918.84,"field_g64":"rejected","col_c52":"MV-Evergreen-01"}} | extra_text_before | {
"type": "object",
"properties": {
"prop_a53": {
"type": "integer"
},
"param_s11": {
"type": "string",
"format": "email"
},
"param_q40": {
"type": "boolean"
},
"param_s96": {
"type": "string"
},
"param_q29": {
"type": "string"
},
"fiel... | Here is the response in the requested format:
{"prop_a53":984,"param_s11":"test@domain.org","param_q40":false,"param_s96":"https://example.com","param_q29":"2024-01-15","field_l98":{"col_m81":918.84,"field_g64":"rejected","col_c52":"MV-Evergreen-01"}} | Output contains non-JSON text before the object | {"prop_a53":984,"param_s11":"test@domain.org","param_q40":false,"param_s96":"https://example.com","param_q29":"2024-01-15","field_l98":{"col_m81":918.84,"field_g64":"rejected","col_c52":"MV-Evergreen-01"}} |
TASK repair_structured_output
SPEC
FIELD col_t30 TYPE integer REQUIRED no
FIELD key_n47 TYPE string REQUIRED no
FIELD param_i34 TYPE integer REQUIRED yes
FIELD attr_p02.param_g35 TYPE string VALUES draft|published|archived REQUIRED yes
FIELD attr_p02.field_q63 TYPE string REQUIRED no
FIELD attr_p02.attr_q21.dim_n98 TY... | {"col_t30":850,"key_n47":"2023-12-25","param_i34":437,"prop_y39":650,"param_i71":"chrX","prop_q98":"Diana"} | null_required | {
"type": "object",
"properties": {
"col_t30": {
"type": "integer"
},
"key_n47": {
"type": "string"
},
"param_i34": {
"type": "integer"
},
"attr_p02": {
"type": "object",
"properties": {
"param_g35": {
"type": "string",
"enum": [
... | {"col_t30": 850, "key_n47": "2023-12-25", "param_i34": 437, "prop_y39": 650, "param_i71": "chrX", "prop_q98": null} | Required field 'prop_q98' is null | {"col_t30":850,"key_n47":"2023-12-25","param_i34":437,"prop_y39":650,"param_i71":"chrX","prop_q98":"Diana"} |
TASK repair_structured_output
SPEC
FIELD dim_m58 TYPE string_email REQUIRED no
FIELD prop_w68 TYPE number REQUIRED no
FIELD param_j36 TYPE number REQUIRED no
FIELD dim_y15 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD prop_h65.col_v05 TYPE number REQUIRED yes
FIELD prop_h65.param_j79.val_o79 TYPE... | {"dim_m58":"admin@example.com","prop_w68":598.51,"param_j36":644.55,"dim_y15":"oceanic"} | single_quotes | {
"type": "object",
"properties": {
"dim_m58": {
"type": "string",
"format": "email"
},
"prop_w68": {
"type": "number"
},
"param_j36": {
"type": "number"
},
"dim_y15": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland"... | {'dim_m58':'admin@example.com','prop_w68':598.51,'param_j36':644.55,'dim_y15':'oceanic'} | Expecting property name enclosed in double quotes | {"dim_m58":"admin@example.com","prop_w68":598.51,"param_j36":644.55,"dim_y15":"oceanic"} |
TASK repair_structured_output
SPEC
FIELD prop_j97 TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD attr_f84 TYPE string_email REQUIRED yes
FIELD key_u79 TYPE string REQUIRED yes
BROKEN_OUTPUT
{"prop_j97":"new","attr_f84":"user@example.com","key_u79":"2024-01-15" | {"prop_j97":"new","attr_f84":"user@example.com","key_u79":"2024-01-15"} | truncated_array | {
"type": "object",
"properties": {
"prop_j97": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"attr_f84": {
"type": "string",
"format": "email"
},
"key_u79": {
"type": "string"
}
},
"req... | {"prop_j97":"new","attr_f84":"user@example.com","key_u79":"2024-01-15" | Unexpected end of JSON input — truncated object | {"prop_j97":"new","attr_f84":"user@example.com","key_u79":"2024-01-15"} |
TASK repair_structured_output
SPEC
FIELD col_k37.param_k55 TYPE integer REQUIRED yes
FIELD col_k37.col_j69 TYPE string REQUIRED no
FIELD col_k37.dim_p16 TYPE string REQUIRED yes
FIELD col_k37.key_q82 TYPE number REQUIRED yes
FIELD col_k37.field_y71 TYPE integer REQUIRED no
FIELD col_k37.field_b13 TYPE boolean REQUIRED... | {"key_z79":362,"attr_y65":null,"key_w16":246,"field_w94":278,"key_a47":{"dim_g13":"option_b","val_w66":"in_transit","key_q56":"GBP"}} | markdown_explanation | {
"type": "object",
"properties": {
"col_k37": {
"type": "object",
"properties": {
"param_k55": {
"type": "integer"
},
"col_j69": {
"type": "string"
},
"dim_p16": {
"type": "string"
},
"key_q82": {
"type"... | Sure, here's the result:
```json
{"key_z79":362,"attr_y65":null,"key_w16":246,"field_w94":278,"key_a47":{"dim_g13":"option_b","val_w66":"in_transit","key_q56":"GBP"}}
```
This should match the schema you provided. | Output contains markdown and explanatory text around JSON | {"key_z79":362,"attr_y65":null,"key_w16":246,"field_w94":278,"key_a47":{"dim_g13":"option_b","val_w66":"in_transit","key_q56":"GBP"}} |
TASK repair_structured_output
SPEC
FIELD param_p47 TYPE null REQUIRED yes
FIELD key_e67 TYPE string_email REQUIRED no
FIELD val_v22 TYPE integer REQUIRED no
FIELD val_s26 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD param_z11 TYPE boolean REQUIRED no
BROKEN_OUTPUT
{param_p47:null,val_v... | {"param_p47":null,"val_v22":615,"param_z11":true} | unquoted_keys | {
"type": "object",
"properties": {
"param_p47": {
"type": "null"
},
"key_e67": {
"type": "string",
"format": "email"
},
"val_v22": {
"type": "integer"
},
"val_s26": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonse... | {param_p47:null,val_v22:615,param_z11:true} | Expecting property name enclosed in double quotes | {"param_p47":null,"val_v22":615,"param_z11":true} |
TASK repair_structured_output
SPEC
FIELD salinity TYPE string REQUIRED no
FIELD medication TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD subtotal TYPE string REQUIRED no
FIELD website.ph_level TYPE string VALUES success|error|warning|info REQUIRED no
FIELD website.shipping TYPE string REQUIRED no
FIELD we... | {"salinity":"GRCh38","medication":"medium","subtotal":"REV","website":{"ph_level":"success","shipping":"Berlin","thumbnail":341,"log_level":"MV-Evergreen-01","currency":{"sensor_id":698,"zip_code":"active","shipper_ref":null,"index":"cancelled","price":"arctic","insurance_id":577},"account_id":180,"brake_pressure":558}... | tool_call_wrong_param | {
"type": "object",
"properties": {
"salinity": {
"type": "string"
},
"medication": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
},
"subtotal": {
"type": "string"
},
"website": {
"type": "object",
... | Tool: validate_sample
Params: {"medication": "medium", "subtotal": "REV", "website": {"ph_level": "success", "shipping": "Berlin", "thumbnail": 341, "log_level": "MV-Evergreen-01", "currency": {"sensor_id": 698, "zip_code": "active", "shipper_ref": null, "index": "cancelled", "price": "arctic", "insurance_id": 577}, "a... | Agent used wrong parameter name 'salinity2' instead of 'salinity' | {"salinity":"GRCh38","medication":"medium","subtotal":"REV","website":{"ph_level":"success","shipping":"Berlin","thumbnail":341,"log_level":"MV-Evergreen-01","currency":{"sensor_id":698,"zip_code":"active","shipper_ref":null,"index":"cancelled","price":"arctic","insurance_id":577},"account_id":180,"brake_pressure":558}... |
TASK repair_structured_output
SPEC
FIELD col_h13 TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD val_r14 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD key_u42 TYPE string REQUIRED yes
FIELD val_d75 TYPE string_uri REQUIRED no
FIELD attr_j92 TYPE number REQUIRED no
... | {"col_h13":"closed","key_u42":"inactive","attr_j92":504.42,"col_p27":"Maria","field_a99":"qux"} | number_with_unit | {
"type": "object",
"properties": {
"col_h13": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"val_r14": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"main... | {"col_h13": "closed", "key_u42": "inactive", "attr_j92": "504.42sec", "col_p27": "Maria", "field_a99": "qux"} | Field 'attr_j92' must be number, got string with unit | {"col_h13":"closed","key_u42":"inactive","attr_j92":504.42,"col_p27":"Maria","field_a99":"qux"} |
TASK repair_structured_output
SPEC
FIELD website TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no
FIELD enabled TYPE string REQUIRED yes
FIELD label[].items TYPE boolean REQUIRED no
FIELD label[].version TYPE string VALUES type_a|type_b|type_c|type_d|type_e|type_f REQUIRED yes
FIELD label[].city TYPE boo... | {"website":"level_2","enabled":"RTG-04","label":[{"items":true,"version":"type_a","city":false,"medication":250.63,"build_status":"https://data.io/v1","tags":true}]} | markdown_fences | {
"type": "object",
"properties": {
"website": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4"
]
},
"enabled": {
"type": "string"
},
"label": {
"type": "array",
"items": {
"type": "object",
... | ```json
{"website":"level_2","enabled":"RTG-04","label":[{"items":true,"version":"type_a","city":false,"medication":250.63,"build_status":"https://data.io/v1","tags":true}]}
``` | Output contains markdown code fences | {"website":"level_2","enabled":"RTG-04","label":[{"items":true,"version":"type_a","city":false,"medication":250.63,"build_status":"https://data.io/v1","tags":true}]} |
TASK repair_structured_output
SPEC
FIELD key_r22 TYPE string VALUES type_a|type_b|type_c REQUIRED no
FIELD prop_l99 TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD col_y44 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD val_h69 TYPE string_date-time REQUIRED yes
BROK... | {"prop_l99":"green","col_y44":"pending_review","val_h69":"2020-09-09T15:47:00Z"} | agent_chain | {
"type": "object",
"properties": {
"key_r22": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c"
]
},
"prop_l99": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
... | I need to look up the information first.
Action: align_reads
Result: {"prop_l99": "green", "val_h69": "2020-09-09T15:47:00Z"}
I'll query our database.
Action: transfer_call
Result: | Agent multi-step chain with truncated tool output | {"prop_l99":"green","col_y44":"pending_review","val_h69":"2020-09-09T15:47:00Z"} |
TASK repair_structured_output
SPEC
FIELD field_c98 TYPE string VALUES option_a|option_b|option_c REQUIRED yes
FIELD field_u35.col_f93 TYPE string REQUIRED no
FIELD field_u35.prop_f60 TYPE string REQUIRED yes
FIELD field_u35.dim_y58.val_l98 TYPE number REQUIRED yes
FIELD field_u35.dim_y58.param_r80 TYPE string VALUES c... | {"field_c98":"option_a","field_u35":{"col_f93":"completed","prop_f60":"Silva"},"attr_o89":"inactive","attr_j48":"qux"} | markdown_fences | {
"type": "object",
"properties": {
"field_c98": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c"
]
},
"field_u35": {
"type": "object",
"properties": {
"col_f93": {
"type": "string"
},
"prop_f60": {
... | ```json
{"field_c98":"option_a","field_u35":{"col_f93":"completed","prop_f60":"Silva"},"attr_o89":"inactive","attr_j48":"qux"}
``` | Output contains markdown code fences | {"field_c98":"option_a","field_u35":{"col_f93":"completed","prop_f60":"Silva"},"attr_o89":"inactive","attr_j48":"qux"} |
TASK repair_structured_output
SPEC
FIELD coverage TYPE number REQUIRED no
FIELD version TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD dissolved_oxygen TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD salinity TYPE string REQUIRED no
FIELD freight_class.bearing TYPE integer REQUIRED no
... | {"coverage":814.48,"version":"phone","dissolved_oxygen":"underway","freight_class":{"bearing":18,"commit_hash":952.74,"length":["PASS","https://api.example.com/v1","baz"]},"interest_rate":"draft","batch_code":{"half_life":174,"comments":160,"id":"Jane","strand":false}} | tool_call_wrong_param | {
"type": "object",
"properties": {
"coverage": {
"type": "number"
},
"version": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"dissolved_oxygen": {
"type": "string",
"enum": [
"berthed",
"an... | Tool: get_weather
Params: {"coverage": 814.48, "version": "phone", "dissolved_oxygen": "underway", "interest_rate": "draft", "batch_code": {"half_life": 174, "comments": 160, "id": "Jane", "strand": false}, "freight_class2": {"bearing": 18, "commit_hash": 952.74, "length": ["PASS", "https://api.example.com/v1", "baz"]}... | Agent used wrong parameter name 'freight_class2' instead of 'freight_class' | {"coverage":814.48,"version":"phone","dissolved_oxygen":"underway","freight_class":{"bearing":18,"commit_hash":952.74,"length":["PASS","https://api.example.com/v1","baz"]},"interest_rate":"draft","batch_code":{"half_life":174,"comments":160,"id":"Jane","strand":false}} |
TASK repair_structured_output
SPEC
FIELD field_q64 TYPE boolean REQUIRED yes
FIELD key_o99 TYPE integer REQUIRED yes
FIELD prop_t58 TYPE number REQUIRED no
FIELD val_m45 TYPE string_email REQUIRED no
FIELD field_p89 TYPE number REQUIRED no
FIELD param_v64 TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD ... | {"field_q64":false,"key_o99":621,"prop_t58":438.83,"val_m45":"info@test.io","field_p89":70.06,"param_v64":"medium","dim_y41":952.44} | trailing_comma | {
"type": "object",
"properties": {
"field_q64": {
"type": "boolean"
},
"key_o99": {
"type": "integer"
},
"prop_t58": {
"type": "number"
},
"val_m45": {
"type": "string",
"format": "email"
},
"field_p89": {
"type": "number"
},
"param_v6... | {"field_q64":false,"key_o99":621,"prop_t58":438.83,"val_m45":"info@test.io","field_p89":70.06,"param_v64":"medium","dim_y41":952.44,} | Unexpected trailing comma | {"field_q64":false,"key_o99":621,"prop_t58":438.83,"val_m45":"info@test.io","field_p89":70.06,"param_v64":"medium","dim_y41":952.44} |
TASK repair_structured_output
SPEC
FIELD dim_l53 TYPE string REQUIRED no
FIELD prop_n59 TYPE integer REQUIRED no
FIELD dim_k99 TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD col_d50 TYPE string_email REQUIRED yes
FIELD col_v55 TYPE string REQUIRED no
FIELD val_b95.val_s98 TYPE integer REQUIRED no
FIEL... | {"dim_l53":"demo","prop_n59":338,"col_d50":"ops@test.io","field_r56":{"dim_n80":"delivered","col_j78":false}} | wrong_type | {
"type": "object",
"properties": {
"dim_l53": {
"type": "string"
},
"prop_n59": {
"type": "integer"
},
"dim_k99": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"col_d50": {
"type": ... | {"dim_l53": "demo", "prop_n59": "\"338\"", "col_d50": "ops@test.io", "field_r56": {"dim_n80": "delivered", "col_j78": false}} | Field 'prop_n59' must be integer, got string | {"dim_l53":"demo","prop_n59":338,"col_d50":"ops@test.io","field_r56":{"dim_n80":"delivered","col_j78":false}} |
TASK repair_structured_output
SPEC
FIELD dim_f44 TYPE boolean REQUIRED yes
FIELD val_x50 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD val_q75 TYPE integer REQUIRED no
FIELD field_e13 TYPE integer REQUIRED yes
BROKEN_OUTPUT
{"dim_f44":true,"val_x50":"USD","val_q75":763,"field_e13":224 | {"dim_f44":true,"val_x50":"USD","val_q75":763,"field_e13":224} | truncated_array | {
"type": "object",
"properties": {
"dim_f44": {
"type": "boolean"
},
"val_x50": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"val_q75": {
"type": "integer"
},
"field_e13": {
"type": "inte... | {"dim_f44":true,"val_x50":"USD","val_q75":763,"field_e13":224 | Unexpected end of JSON input — truncated object | {"dim_f44":true,"val_x50":"USD","val_q75":763,"field_e13":224} |
TASK repair_structured_output
SPEC
FIELD prop_i17 TYPE null REQUIRED no
FIELD prop_r44 TYPE integer REQUIRED yes
FIELD val_c44.field_h65 TYPE string REQUIRED no
FIELD val_c44.dim_h46 TYPE string_uri REQUIRED yes
FIELD val_c44.attr_e94 TYPE string REQUIRED yes
FIELD val_c44.key_r75 TYPE string REQUIRED yes
FIELD attr_v... | {"prop_i17":null,"prop_r44":806,"val_c44":{"field_h65":"Silva","dim_h46":"https://example.org/data","attr_e94":"REV","key_r75":"Silva"},"attr_v67":{"param_x36":"archived","param_m70":"oceanic","attr_z55":"QC-07","prop_l17":false},"param_k77":"quux"} | markdown_explanation | {
"type": "object",
"properties": {
"prop_i17": {
"type": "null"
},
"prop_r44": {
"type": "integer"
},
"val_c44": {
"type": "object",
"properties": {
"field_h65": {
"type": "string"
},
"dim_h46": {
"type": "string",
"f... | Here's the structured output:
```json
{"prop_i17":null,"prop_r44":806,"val_c44":{"field_h65":"Silva","dim_h46":"https://example.org/data","attr_e94":"REV","key_r75":"Silva"},"attr_v67":{"param_x36":"archived","param_m70":"oceanic","attr_z55":"QC-07","prop_l17":false},"param_k77":"quux"}
```
Analysis finished. | Output contains markdown and explanatory text around JSON | {"prop_i17":null,"prop_r44":806,"val_c44":{"field_h65":"Silva","dim_h46":"https://example.org/data","attr_e94":"REV","key_r75":"Silva"},"attr_v67":{"param_x36":"archived","param_m70":"oceanic","attr_z55":"QC-07","prop_l17":false},"param_k77":"quux"} |
TASK repair_structured_output
SPEC
FIELD dim_d21 TYPE string REQUIRED no
FIELD col_t38 TYPE string VALUES draft|published|archived REQUIRED yes
FIELD field_w50 TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED yes
FIELD field_z89 TYPE string_email REQUIRED no
FIELD col_r03 TYPE string REQUIRED no
FIELD field_s... | {"dim_d21":"RTG-04","col_t38":"published","field_w50":"cat_a","field_z89":"admin@domain.org","col_r03":"A short description.","field_s94":null} | extra_field | {
"type": "object",
"properties": {
"dim_d21": {
"type": "string"
},
"col_t38": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"field_w50": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"ca... | {"dim_d21": "RTG-04", "col_t38": "published", "field_w50": "cat_a", "field_z89": "admin@domain.org", "col_r03": "A short description.", "field_s94": null, "extra_info_6123": "unexpected"} | Unknown field 'extra_info_6123' not defined in schema | {"dim_d21":"RTG-04","col_t38":"published","field_w50":"cat_a","field_z89":"admin@domain.org","col_r03":"A short description.","field_s94":null} |
TASK repair_structured_output
SPEC
FIELD param_n46 TYPE string REQUIRED no
FIELD param_v36 TYPE boolean REQUIRED no
FIELD attr_w94 TYPE string REQUIRED yes
FIELD dim_y11.dim_r39 TYPE string_email REQUIRED yes
FIELD dim_y11.key_b56 TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD dim_y11.dim_w52[].attr_d40 TY... | {"param_n46":"GRCh38","param_v36":true,"attr_w94":"demo","val_n67":{"param_a23":"FWD","field_y55":"user@example.com","key_u44":803.0,"field_x76":"degraded","val_o37":"FWD"}} | tool_call_python_syntax | {
"type": "object",
"properties": {
"param_n46": {
"type": "string"
},
"param_v36": {
"type": "boolean"
},
"attr_w94": {
"type": "string"
},
"dim_y11": {
"type": "object",
"properties": {
"dim_r39": {
"type": "string",
"format": "... | get_inventory(param_n46='GRCh38', param_v36=True, attr_w94='demo', val_n67={'param_a23': 'FWD', 'field_y55': 'user@example.com', 'key_u44': 803.0, 'field_x76': 'degraded', 'val_o37': 'FWD'}) | Tool call uses Python syntax instead of JSON | {"param_n46":"GRCh38","param_v36":true,"attr_w94":"demo","val_n67":{"param_a23":"FWD","field_y55":"user@example.com","key_u44":803.0,"field_x76":"degraded","val_o37":"FWD"}} |
TASK repair_structured_output
SPEC
FIELD procedure_code TYPE string_date-time REQUIRED no
FIELD product_id TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD message TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD nickname.brake_pressure TYPE string VALUES new|in_transit|delivered|retur... | {"procedure_code":"2021-02-09T12:54:00Z","message":"xl","order_id":{"salinity":"https://api.example.com/v1","amplitude":"heterozygous","email":367.16},"address":"Maria","sensor_id":"chr1","thumbnail":"Bob"} | tool_call_text_mix | {
"type": "object",
"properties": {
"procedure_code": {
"type": "string",
"format": "date-time"
},
"product_id": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"message": {
"type": "string",
... | Let me check the system.
<tool_call name="apply_discount">
{"procedure_code":"2021-02-09T12:54:00Z","message":"xl","order_id":{"salinity":"https://api.example.com/v1","amplitude":"heterozygous","email":367.16},"address":"Maria","sensor_id":"chr1","thumbnail":"Bob"}
</tool_call.
Operation completed. | Agent response mixes reasoning text with tool call | {"procedure_code":"2021-02-09T12:54:00Z","message":"xl","order_id":{"salinity":"https://api.example.com/v1","amplitude":"heterozygous","email":367.16},"address":"Maria","sensor_id":"chr1","thumbnail":"Bob"} |
TASK repair_structured_output
SPEC
FIELD isotope TYPE string REQUIRED yes
FIELD pressure_kpa TYPE string VALUES type_a|type_b REQUIRED yes
FIELD ward TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED yes
FIELD language TYPE number REQUIRED no
FIELD berth_slot TYPE integer REQUIRED yes
BROKEN_OUTPU... | {"isotope":"approved","pressure_kpa":"type_b","ward":"mode_a","berth_slot":784} | missing_brace | {
"type": "object",
"properties": {
"isotope": {
"type": "string"
},
"pressure_kpa": {
"type": "string",
"enum": [
"type_a",
"type_b"
]
},
"ward": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode... | "isotope":"approved","pressure_kpa":"type_b","ward":"mode_a","berth_slot":784} | Missing closing brace | {"isotope":"approved","pressure_kpa":"type_b","ward":"mode_a","berth_slot":784} |
TASK repair_structured_output
SPEC
FIELD prop_t53.val_p30.attr_l40 TYPE string REQUIRED yes
FIELD prop_t53.val_p30.attr_k86 TYPE string_uri REQUIRED yes
FIELD prop_t53.val_p30.field_d49 TYPE integer REQUIRED no
FIELD prop_t53.val_p30.col_k71 TYPE string_email REQUIRED yes
FIELD prop_t53.param_x05 TYPE string VALUES em... | {"prop_t53":{"val_p30":{"attr_l40":"example","attr_k86":"https://www.io/v1","field_d49":740,"col_k71":"user@domain.org"},"param_x05":"phone","val_g75":"test@domain.org","param_r03":{"attr_y67":"chrX","col_b21":false,"val_p01":"Paris","key_k69":85.75,"attr_e25":287,"prop_c93":false,"param_c71":false},"col_d03":305.62,"d... | partial_structure | {
"type": "object",
"properties": {
"prop_t53": {
"type": "object",
"properties": {
"val_p30": {
"type": "object",
"properties": {
"attr_l40": {
"type": "string"
},
"attr_k86": {
"type": "string",
... | Result: attr_p39=BRL, {"prop_t53":{"val_p30":{"attr_l40":"example","attr_k86":"https://www.io/v1","field_d49":740,"col_k71":"user@domain.org"},"param_x05":"phone","val_g75":"test@domain.org","param_r03":{"attr_y67":"chrX","col_b21":false,"val_p01":"Paris","key_k69":85.75,"attr_e25":287,"prop_c93":false,"param_c71":fals... | Output mixes natural language with JSON | {"prop_t53":{"val_p30":{"attr_l40":"example","attr_k86":"https://www.io/v1","field_d49":740,"col_k71":"user@domain.org"},"param_x05":"phone","val_g75":"test@domain.org","param_r03":{"attr_y67":"chrX","col_b21":false,"val_p01":"Paris","key_k69":85.75,"attr_e25":287,"prop_c93":false,"param_c71":false},"col_d03":305.62,"d... |
TASK repair_structured_output
SPEC
FIELD key_h06 TYPE integer REQUIRED no
FIELD key_k44 TYPE integer REQUIRED yes
FIELD val_b53 TYPE boolean REQUIRED no
FIELD key_x88 TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED no
FIELD col_f33.key_j72 TYPE integer REQUIRED no
FIELD col_f33.val_y01.param_p95 TYPE number RE... | {"key_h06":708,"key_k44":88,"val_b53":true,"key_x88":"mode_b","col_f33":{"key_j72":199,"val_y01":{"field_s43":"GRCh38","attr_t57":247,"param_y22":75.26,"val_x97":"ops@domain.org","key_h59":true},"key_o31":996,"prop_y94":830.94}} | markdown_explanation | {
"type": "object",
"properties": {
"key_h06": {
"type": "integer"
},
"key_k44": {
"type": "integer"
},
"val_b53": {
"type": "boolean"
},
"key_x88": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d"
]
... | Here's the structured output:
```json
{"key_h06":708,"key_k44":88,"val_b53":true,"key_x88":"mode_b","col_f33":{"key_j72":199,"val_y01":{"field_s43":"GRCh38","attr_t57":247,"param_y22":75.26,"val_x97":"ops@domain.org","key_h59":true},"key_o31":996,"prop_y94":830.94}}
```
Feel free to ask if you have questions. | Output contains markdown and explanatory text around JSON | {"key_h06":708,"key_k44":88,"val_b53":true,"key_x88":"mode_b","col_f33":{"key_j72":199,"val_y01":{"field_s43":"GRCh38","attr_t57":247,"param_y22":75.26,"val_x97":"ops@domain.org","key_h59":true},"key_o31":996,"prop_y94":830.94}} |
TASK repair_structured_output
SPEC
FIELD key_y61 TYPE integer REQUIRED yes
FIELD field_z38.val_e99 TYPE string_uri REQUIRED yes
FIELD field_z38.prop_r73 TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD field_z38.param_d17 TYPE string REQUIRED yes
FIELD field_z38.param_u81 TYPE boolean REQUIRED y... | {"key_y61":683,"field_z38":{"val_e99":"https://data.org/data","prop_r73":"returned","param_d17":"GRCh38","param_u81":false},"param_k71":981,"key_q49":"Hapag-Lloyd-Express","key_b43":"active","param_z54":638.25} | truncated_array | {
"type": "object",
"properties": {
"key_y61": {
"type": "integer"
},
"field_z38": {
"type": "object",
"properties": {
"val_e99": {
"type": "string",
"format": "uri"
},
"prop_r73": {
"type": "string",
"enum": [
... | {"key_y61":683,"field_z38":{"val_e99":"https://data.org/data","prop_r73":"returned","param_d17":"GRCh38","param_u81":false},"param_k71":981,"key_q49":"Hapag-Lloyd-Express","key_b43":"active","param_z54":638.25 | Unexpected end of JSON input — truncated object | {"key_y61":683,"field_z38":{"val_e99":"https://data.org/data","prop_r73":"returned","param_d17":"GRCh38","param_u81":false},"param_k71":981,"key_q49":"Hapag-Lloyd-Express","key_b43":"active","param_z54":638.25} |
TASK repair_structured_output
SPEC
FIELD amplitude TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED yes
FIELD footnote TYPE integer REQUIRED no
FIELD score TYPE string REQUIRED no
FIELD thumbnail TYPE integer REQUIRED no
FIELD verified.balance TYPE string_date-time REQUIRED no
FIELD verified... | {"amplitude":"level_2","footnote":210,"score":"Jane","thumbnail":556,"zip_code":364} | missing_required | {
"type": "object",
"properties": {
"amplitude": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"level_5",
"level_6"
]
},
"footnote": {
"type": "integer"
},
"score": {
"type": "string"
},... | {"footnote": 210, "score": "Jane", "thumbnail": 556, "zip_code": 364} | Required field 'amplitude' is missing | {"amplitude":"level_2","footnote":210,"score":"Jane","thumbnail":556,"zip_code":364} |
TASK repair_structured_output
SPEC
FIELD cargo_type TYPE string REQUIRED no
FIELD color.isotope TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD color.current_draw TYPE integer REQUIRED yes
FIELD color.first_name TYPE string VALUES success|error|warning|info REQUIRED no
FIELD run_id TYPE boolean... | {"color":{"isotope":"in_transit","current_draw":943},"filter_flag":"https://data.com/api","height":{"shipper_ref":38,"collateral":318.86,"product_id":{"category":"type_b","payment_status":true,"batch_code":"homozygous","tags":"active"},"freight_class":"A short description.","shipping":"cat_f","pressure_kpa":"Johnson"},... | markdown_fences | {
"type": "object",
"properties": {
"cargo_type": {
"type": "string"
},
"color": {
"type": "object",
"properties": {
"isotope": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
... | ```json
{"color":{"isotope":"in_transit","current_draw":943},"filter_flag":"https://data.com/api","height":{"shipper_ref":38,"collateral":318.86,"product_id":{"category":"type_b","payment_status":true,"batch_code":"homozygous","tags":"active"},"freight_class":"A short description.","shipping":"cat_f","pressure_kpa":"Jo... | Output contains markdown code fences | {"color":{"isotope":"in_transit","current_draw":943},"filter_flag":"https://data.com/api","height":{"shipper_ref":38,"collateral":318.86,"product_id":{"category":"type_b","payment_status":true,"batch_code":"homozygous","tags":"active"},"freight_class":"A short description.","shipping":"cat_f","pressure_kpa":"Johnson"},... |
TASK repair_structured_output
SPEC
FIELD key_x28.col_o17 TYPE integer REQUIRED yes
FIELD key_x28.prop_v36 TYPE number REQUIRED yes
FIELD key_x28.prop_q96[].param_b33 TYPE string_email REQUIRED yes
FIELD key_x28.prop_q96[].key_j57 TYPE string_email REQUIRED yes
FIELD key_x28.prop_q96[].attr_t03 TYPE null REQUIRED yes
F... | {"attr_x59":false,"dim_d82":"London","val_i59":"PASS","param_t60":{"prop_s68":"user@domain.com","attr_q27":915,"col_s99":"2024-01-15","field_z55":{"attr_o99":"https://api.io/api","field_g67":["closed","closed"],"prop_u87":[973,973,458]},"field_e94":"https://example.org/api","field_q12":"completed"}} | partial_structure | {
"type": "object",
"properties": {
"key_x28": {
"type": "object",
"properties": {
"col_o17": {
"type": "integer"
},
"prop_v36": {
"type": "number"
},
"prop_q96": {
"type": "array",
"items": {
"type": "object... | Result: val_i59=PASS, {"attr_x59":false,"dim_d82":"London","val_i59":"PASS","param_t60":{"prop_s68":"user@domain.com","attr_q27":915,"col_s99":"2024-01-15","field_z55":{"attr_o99":"https://api.io/api","field_g67":["closed","closed"],"prop_u87":[973,973,458]},"field_e94":"https://example.org/api","field_q12":"completed"... | Output mixes natural language with JSON | {"attr_x59":false,"dim_d82":"London","val_i59":"PASS","param_t60":{"prop_s68":"user@domain.com","attr_q27":915,"col_s99":"2024-01-15","field_z55":{"attr_o99":"https://api.io/api","field_g67":["closed","closed"],"prop_u87":[973,973,458]},"field_e94":"https://example.org/api","field_q12":"completed"}} |
TASK repair_structured_output
SPEC
FIELD sensor_id TYPE string REQUIRED yes
FIELD section TYPE string_email REQUIRED yes
FIELD id.feedback TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD id.product_id TYPE boolean REQUIRED no
FIELD id.company TYPE integer REQUIRED yes
FIELD id.size TYPE string_email REQUIRED ... | {"sensor_id":"Diana","section":"ops@example.com","id":{"company":366,"size":"admin@test.io","description":"Oliveira","bill_of_lading":100.59},"language":"FWD","ph_level":"level_1","tile":null,"image_url":521.49} | extra_field | {
"type": "object",
"properties": {
"sensor_id": {
"type": "string"
},
"section": {
"type": "string",
"format": "email"
},
"id": {
"type": "object",
"properties": {
"feedback": {
"type": "string",
"enum": [
"USD",
... | {"sensor_id": "Diana", "section": "ops@example.com", "id": {"company": 366, "size": "admin@test.io", "description": "Oliveira", "bill_of_lading": 100.59}, "language": "FWD", "ph_level": "level_1", "tile": null, "image_url": 521.49, "extra_value_508": "unexpected"} | Unknown field 'extra_value_508' not defined in schema | {"sensor_id":"Diana","section":"ops@example.com","id":{"company":366,"size":"admin@test.io","description":"Oliveira","bill_of_lading":100.59},"language":"FWD","ph_level":"level_1","tile":null,"image_url":521.49} |
TASK repair_structured_output
SPEC
FIELD version TYPE boolean REQUIRED yes
FIELD color TYPE boolean REQUIRED yes
FIELD allele TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED yes
FIELD patient_id TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD created_at TYPE string REQUIRED no
BROK... | {"version":false,"color":true,"allele":"option_c","created_at":"Johnson"} | extra_text_before | {
"type": "object",
"properties": {
"version": {
"type": "boolean"
},
"color": {
"type": "boolean"
},
"allele": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
"option_e"
]
},
"patient_id"... | Here is the response in the requested format:
{"version":false,"color":true,"allele":"option_c","created_at":"Johnson"} | Output contains non-JSON text before the object | {"version":false,"color":true,"allele":"option_c","created_at":"Johnson"} |
TASK repair_structured_output
SPEC
FIELD product_id TYPE number REQUIRED no
FIELD nickname TYPE string REQUIRED no
FIELD description TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD zip_code TYPE integer REQUIRED no
FIELD medication TYPE string REQUIRED no
FIELD quantity TYPE string VALUES draft|published|ar... | {"product_id":194.79,"nickname":"chr1","description":"xl","medication":"REV","quantity":"published","port_code":"info@test.io","pressure_kpa":"2022-12-15T15:21:00Z"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"product_id": {
"type": "number"
},
"nickname": {
"type": "string"
},
"description": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
},
"zip_code": {
"type": "integer"... | Tool: query_port_status
Params: {"product_id": 194.79, "nickname": "chr1", "description": "xl", "medication": "REV", "quantity": "published", "pressure_kpa": "2022-12-15T15:21:00Z", "port_code_value": "info@test.io"} | Agent used wrong parameter name 'port_code_value' instead of 'port_code' | {"product_id":194.79,"nickname":"chr1","description":"xl","medication":"REV","quantity":"published","port_code":"info@test.io","pressure_kpa":"2022-12-15T15:21:00Z"} |
TASK repair_structured_output
SPEC
FIELD catalyst TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD strand TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD company TYPE integer REQUIRED yes
FIELD batch_code TYPE string_email REQUIRED yes
BROKEN_OUTPUT
{"catalyst":"medium","strand":"c... | {"catalyst":"medium","strand":"closed","company":234,"batch_code":"ops@test.io"} | trailing_comma | {
"type": "object",
"properties": {
"catalyst": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"strand": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]... | {"catalyst":"medium","strand":"closed","company":234,"batch_code":"ops@test.io",} | Unexpected trailing comma | {"catalyst":"medium","strand":"closed","company":234,"batch_code":"ops@test.io"} |
TASK repair_structured_output
SPEC
FIELD notes.maturity_date TYPE string VALUES level_1|level_2 REQUIRED yes
FIELD notes.visible TYPE string REQUIRED no
FIELD notes.section TYPE boolean REQUIRED no
FIELD notes.message TYPE string VALUES mode_a|mode_b|mode_c REQUIRED yes
FIELD notes.transaction_id.loan_amount TYPE bool... | {"notes":{"maturity_date":"level_1","visible":"2023-12-25","section":true,"message":"mode_a","transaction_id":{"loan_amount":true,"notes":"https://api.io/v1","currency":false,"amplitude":"level_1","step":"https://www.io/api","lab_result":573.99},"full_name":{"username":949.72,"country":"green","created_at":"resolved","... | tool_call_bad_format | {
"type": "object",
"properties": {
"notes": {
"type": "object",
"properties": {
"maturity_date": {
"type": "string",
"enum": [
"level_1",
"level_2"
]
},
"visible": {
"type": "string"
},
"section"... | <functioncall> update_record
{notes: {maturity_date: "level_1", visible: "2023-12-25", section: true, message: "mode_a", transaction_id: {loan_amount: true, notes: "https://api.io/v1", currency: false, amplitude: "level_1", step: "https://www.io/api", lab_result: 573.99}, full_name: {username: 949.72, country: "green",... | Tool call has malformed arguments — unquoted keys in function parameters | {"notes":{"maturity_date":"level_1","visible":"2023-12-25","section":true,"message":"mode_a","transaction_id":{"loan_amount":true,"notes":"https://api.io/v1","currency":false,"amplitude":"level_1","step":"https://www.io/api","lab_result":573.99},"full_name":{"username":949.72,"country":"green","created_at":"resolved","... |
TASK repair_structured_output
SPEC
FIELD quantity TYPE string_date-time REQUIRED no
FIELD last_name TYPE string_email REQUIRED no
FIELD currency TYPE number REQUIRED yes
FIELD feedback TYPE boolean REQUIRED yes
FIELD brake_pressure TYPE string VALUES single|married|divorced REQUIRED no
FIELD wavelength.log_level TYPE ... | {"currency":978.32,"feedback":true,"brake_pressure":"married","organism":"viewer","language":"large"} | null_required | {
"type": "object",
"properties": {
"quantity": {
"type": "string",
"format": "date-time"
},
"last_name": {
"type": "string",
"format": "email"
},
"currency": {
"type": "number"
},
"feedback": {
"type": "boolean"
},
"brake_pressure": {
"t... | {"currency": 978.32, "feedback": true, "brake_pressure": "married", "organism": null, "language": "large"} | Required field 'organism' is null | {"currency":978.32,"feedback":true,"brake_pressure":"married","organism":"viewer","language":"large"} |
TASK repair_structured_output
SPEC
FIELD attr_q00 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD val_i19 TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD param_p77 TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD col_s29 TYPE number REQUIRED no
FIELD prop_t4... | {"attr_q00":"homozygous","param_p77":"in_progress","col_s29":816.97,"prop_t48":"xl"} | agent_chain | {
"type": "object",
"properties": {
"attr_q00": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"val_i19": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
... | Let me check the system.
Action: run_diagnostics
Result: {"attr_q00": "homozygous", "col_s29": 816.97, "prop_t48": "xl"}
Processing the request now.
Action: get_account
Result: | Agent multi-step chain with truncated tool output | {"attr_q00":"homozygous","param_p77":"in_progress","col_s29":816.97,"prop_t48":"xl"} |
TASK repair_structured_output
SPEC
FIELD width TYPE string VALUES option_a|option_b REQUIRED yes
FIELD balance TYPE string REQUIRED yes
FIELD temp_celsius.barcode TYPE number REQUIRED no
FIELD temp_celsius.company.product_id TYPE string VALUES cat_a|cat_b|cat_c REQUIRED yes
FIELD temp_celsius.company.quantity TYPE str... | {"width":"option_a","balance":"bar","temp_celsius":{"barcode":566.05,"published":355,"diagnosis_code":50,"tax":"https://example.org/api","bearing":"cat_a","total":"option_a"}} | extra_text_before | {
"type": "object",
"properties": {
"width": {
"type": "string",
"enum": [
"option_a",
"option_b"
]
},
"balance": {
"type": "string"
},
"temp_celsius": {
"type": "object",
"properties": {
"barcode": {
"type": "number"
... | Below is the JSON object:
{"width":"option_a","balance":"bar","temp_celsius":{"barcode":566.05,"published":355,"diagnosis_code":50,"tax":"https://example.org/api","bearing":"cat_a","total":"option_a"}} | Output contains non-JSON text before the object | {"width":"option_a","balance":"bar","temp_celsius":{"barcode":566.05,"published":355,"diagnosis_code":50,"tax":"https://example.org/api","bearing":"cat_a","total":"option_a"}} |
TASK repair_structured_output
SPEC
FIELD phone TYPE null REQUIRED no
FIELD batch_code TYPE boolean REQUIRED yes
FIELD discount TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED yes
FIELD payment_status[] TYPE number REQUIRED no
BROKEN_OUTPUT
check_cargo_manifest(batch_code=False, discount='cat_a') | {"batch_code":false,"discount":"cat_a"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"phone": {
"type": "null"
},
"batch_code": {
"type": "boolean"
},
"discount": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d"
]
},
"payment_status": {
"type": "array",... | check_cargo_manifest(batch_code=False, discount='cat_a') | Tool call uses Python syntax instead of JSON | {"batch_code":false,"discount":"cat_a"} |
TASK repair_structured_output
SPEC
FIELD balance TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED yes
FIELD interest_rate.options TYPE number REQUIRED no
FIELD interest_rate.bearing TYPE number REQUIRED no
FIELD interest_rate.ward TYPE boolean REQUIRED yes
FIELD interest_rate.notes TYPE string VALUE... | {"balance":"level_5","interest_rate":{"options":451.28,"bearing":337.21,"ward":true,"notes":"maintenance","strand":56,"current_draw":{"verified":700,"credit_score":"bar","first_name":"mode_c","transaction_id":null,"wavelength":"option_b","diagnosis_code":"Smith","items":"medium"},"weight":{"berth_slot":"mode_d","zip_co... | trailing_comma | {
"type": "object",
"properties": {
"balance": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"level_5"
]
},
"interest_rate": {
"type": "object",
"properties": {
"options": {
"type": "numbe... | {"balance":"level_5","interest_rate":{"options":451.28,"bearing":337.21,"ward":true,"notes":"maintenance","strand":56,"current_draw":{"verified":700,"credit_score":"bar","first_name":"mode_c","transaction_id":null,"wavelength":"option_b","diagnosis_code":"Smith","items":"medium",},"weight":{"berth_slot":"mode_d","zip_c... | Unexpected trailing comma | {"balance":"level_5","interest_rate":{"options":451.28,"bearing":337.21,"ward":true,"notes":"maintenance","strand":56,"current_draw":{"verified":700,"credit_score":"bar","first_name":"mode_c","transaction_id":null,"wavelength":"option_b","diagnosis_code":"Smith","items":"medium"},"weight":{"berth_slot":"mode_d","zip_co... |
TASK repair_structured_output
SPEC
FIELD attr_t05 TYPE string REQUIRED no
FIELD prop_s44 TYPE boolean REQUIRED no
FIELD key_a45 TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD param_h35 TYPE string_date-time REQUIRED yes
FIELD val_g33.dim_u93 TYPE string_email REQUIRED no
FIELD val_g33.dim_p49 T... | {"attr_t05":"completed","prop_s44":false,"key_a45":"returned","param_h35":"2022-05-23T04:16:00Z","val_g33":{"dim_u93":"user@example.com","dim_p49":"demo","param_m58":414,"key_u54":886},"val_z63":"Johnson","dim_o92":"confirmed"} | null_required | {
"type": "object",
"properties": {
"attr_t05": {
"type": "string"
},
"prop_s44": {
"type": "boolean"
},
"key_a45": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"param_h35": {
"type": "... | {"attr_t05": "completed", "prop_s44": false, "key_a45": "returned", "param_h35": "2022-05-23T04:16:00Z", "val_g33": {"dim_u93": "user@example.com", "dim_p49": "demo", "param_m58": 414, "key_u54": 886}, "val_z63": null, "dim_o92": "confirmed"} | Required field 'val_z63' is null | {"attr_t05":"completed","prop_s44":false,"key_a45":"returned","param_h35":"2022-05-23T04:16:00Z","val_g33":{"dim_u93":"user@example.com","dim_p49":"demo","param_m58":414,"key_u54":886},"val_z63":"Johnson","dim_o92":"confirmed"} |
TASK repair_structured_output
SPEC
FIELD field_l58 TYPE string REQUIRED no
FIELD key_e69 TYPE string_uri REQUIRED yes
FIELD field_h92 TYPE integer REQUIRED yes
FIELD key_w15 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED no
FIELD dim_x98 TYPE number REQUIRED yes
BROKEN_OUTPUT
{"field_l58":"New ... | {"field_l58":"New York","key_e69":"https://www.com/v1","field_h92":916,"key_w15":"mode_f","dim_x98":902.97} | missing_brace | {
"type": "object",
"properties": {
"field_l58": {
"type": "string"
},
"key_e69": {
"type": "string",
"format": "uri"
},
"field_h92": {
"type": "integer"
},
"key_w15": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
... | {"field_l58":"New York","key_e69":"https://www.com/v1","field_h92":916,"key_w15":"mode_f","dim_x98":902.97 | Missing closing brace | {"field_l58":"New York","key_e69":"https://www.com/v1","field_h92":916,"key_w15":"mode_f","dim_x98":902.97} |
TASK repair_structured_output
SPEC
FIELD attr_e74 TYPE string VALUES cat_a|cat_b|cat_c REQUIRED yes
FIELD attr_y92 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED no
FIELD field_e51 TYPE string VALUES option_a|option_b|option_c|option_d|option_e|option_f REQUIRED no
BROKEN_OUTPUT
get_inventory(attr_e74... | {"attr_e74":"cat_b","attr_y92":"mode_a","field_e51":"option_d"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"attr_e74": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c"
]
},
"attr_y92": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
"mode_e"
]
... | get_inventory(attr_e74='cat_b', attr_y92='mode_a', field_e51='option_d') | Tool call uses Python syntax instead of JSON | {"attr_e74":"cat_b","attr_y92":"mode_a","field_e51":"option_d"} |
TASK repair_structured_output
SPEC
FIELD procedure_code TYPE boolean REQUIRED no
FIELD repository TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD status_code TYPE integer REQUIRED no
FIELD notes.department TYPE boolean REQUIRED yes
FIELD notes.loan_amount TYPE string_email REQUIRED no
FIELD notes.t... | {"repository":"coastal","status_code":610,"notes":{"department":false,"loan_amount":"test@domain.org","transaction_id":249,"aligned_pct":333,"freight_class":961,"credit_score":"MV-Evergreen-01"},"reagent":{"lab_result":"https://api.com/data","span_id":"baz","shipping":"John"}} | single_quotes | {
"type": "object",
"properties": {
"procedure_code": {
"type": "boolean"
},
"repository": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
},
"status_code": {
"type": "integer"
},
"notes": {
"typ... | {'repository':'coastal','status_code':610,'notes':{'department':false,'loan_amount':'test@domain.org','transaction_id':249,'aligned_pct':333,'freight_class':961,'credit_score':'MV-Evergreen-01'},'reagent':{'lab_result':'https://api.com/data','span_id':'baz','shipping':'John'}} | Expecting property name enclosed in double quotes | {"repository":"coastal","status_code":610,"notes":{"department":false,"loan_amount":"test@domain.org","transaction_id":249,"aligned_pct":333,"freight_class":961,"credit_score":"MV-Evergreen-01"},"reagent":{"lab_result":"https://api.com/data","span_id":"baz","shipping":"John"}} |
TASK repair_structured_output
SPEC
FIELD transaction_id TYPE integer REQUIRED yes
FIELD nickname TYPE integer REQUIRED yes
FIELD terminal_id TYPE string REQUIRED yes
FIELD shipping TYPE string_date-time REQUIRED no
FIELD ph_level TYPE string REQUIRED no
FIELD shipper_ref TYPE string VALUES free|basic|pro|enterprise RE... | {"transaction_id":731,"nickname":531,"terminal_id":"FWD","shipping":"2021-04-21T11:40:00Z","ph_level":"quux","shipper_ref":"basic","format":null} | extra_text_before | {
"type": "object",
"properties": {
"transaction_id": {
"type": "integer"
},
"nickname": {
"type": "integer"
},
"terminal_id": {
"type": "string"
},
"shipping": {
"type": "string",
"format": "date-time"
},
"ph_level": {
"type": "string"
},
... | The output is as follows:
{"transaction_id":731,"nickname":531,"terminal_id":"FWD","shipping":"2021-04-21T11:40:00Z","ph_level":"quux","shipper_ref":"basic","format":null} | Output contains non-JSON text before the object | {"transaction_id":731,"nickname":531,"terminal_id":"FWD","shipping":"2021-04-21T11:40:00Z","ph_level":"quux","shipper_ref":"basic","format":null} |
TASK repair_structured_output
SPEC
FIELD product_id.timezone TYPE string REQUIRED yes
FIELD product_id.loan_amount TYPE string_email REQUIRED yes
FIELD product_id.coverage TYPE integer REQUIRED no
FIELD product_id.verified.email TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD product_id.verified.label TY... | {"product_id":{"timezone":"user@domain.com","loan_amount":"user@domain.org","coverage":514,"verified":{"email":"critical","label":854,"order_id":"Johnson","organism":277.76,"ph_level":false,"manifest_ref":303,"half_life":"nonsense"}},"isotope":650.69,"enabled":514,"active":false} | extra_text_before | {
"type": "object",
"properties": {
"product_id": {
"type": "object",
"properties": {
"timezone": {
"type": "string"
},
"loan_amount": {
"type": "string",
"format": "email"
},
"coverage": {
"type": "integer"
},
... | Here is the JSON you requested:
{"product_id":{"timezone":"user@domain.com","loan_amount":"user@domain.org","coverage":514,"verified":{"email":"critical","label":854,"order_id":"Johnson","organism":277.76,"ph_level":false,"manifest_ref":303,"half_life":"nonsense"}},"isotope":650.69,"enabled":514,"active":false} | Output contains non-JSON text before the object | {"product_id":{"timezone":"user@domain.com","loan_amount":"user@domain.org","coverage":514,"verified":{"email":"critical","label":854,"order_id":"Johnson","organism":277.76,"ph_level":false,"manifest_ref":303,"half_life":"nonsense"}},"isotope":650.69,"enabled":514,"active":false} |
TASK repair_structured_output
SPEC
FIELD val_m84 TYPE integer REQUIRED no
FIELD field_r85 TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED yes
FIELD attr_e25.prop_q78 TYPE string REQUIRED no
FIELD attr_e25.dim_r54.dim_c75 TYPE string REQUIRED yes
FIELD attr_e25.dim_r54.key_z58 TYPE integer REQUIRED yes
FIELD attr_e... | {"field_r85":"cat_a","attr_e25":{"prop_q78":"Santos","dim_r54":{"dim_c75":"2023-12-25","key_z58":3,"attr_s74":"https://api.io/api","dim_i31":"archived"},"attr_j04":"example","dim_e05":{"val_o87":"https://example.com","attr_o33":true,"key_x60":"type_a","dim_q16":"unstable"},"attr_d11":515,"dim_p79":"intermittent","val_v... | number_with_unit | {
"type": "object",
"properties": {
"val_m84": {
"type": "integer"
},
"field_r85": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d"
]
},
"attr_e25": {
"type": "object",
"properties": {
"prop_q78": {
... | {"field_r85": "cat_a", "attr_e25": {"prop_q78": "Santos", "dim_r54": {"dim_c75": "2023-12-25", "key_z58": 3, "attr_s74": "https://api.io/api", "dim_i31": "archived"}, "attr_j04": "example", "dim_e05": {"val_o87": "https://example.com", "attr_o33": true, "key_x60": "type_a", "dim_q16": "unstable"}, "attr_d11": 515, "dim... | Field 'dim_u04' must be number, got string with unit | {"field_r85":"cat_a","attr_e25":{"prop_q78":"Santos","dim_r54":{"dim_c75":"2023-12-25","key_z58":3,"attr_s74":"https://api.io/api","dim_i31":"archived"},"attr_j04":"example","dim_e05":{"val_o87":"https://example.com","attr_o33":true,"key_x60":"type_a","dim_q16":"unstable"},"attr_d11":515,"dim_p79":"intermittent","val_v... |
TASK repair_structured_output
SPEC
FIELD field_c73 TYPE string VALUES draft|published|archived REQUIRED no
FIELD col_d47 TYPE string_email REQUIRED yes
FIELD val_y18 TYPE boolean REQUIRED no
BROKEN_OUTPUT
Let me check the system.
Action: validate_address
Observation: {"col_d47":"admin@domain.org"}
I'll query our data... | {"col_d47":"admin@domain.org"} | agent_chain | {
"type": "object",
"properties": {
"field_c73": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"col_d47": {
"type": "string",
"format": "email"
},
"val_y18": {
"type": "boolean"
}
},
"required": [
"col_... | Let me check the system.
Action: validate_address
Observation: {"col_d47":"admin@domain.org"}
I'll query our database.
Final: | Agent multi-step chain with truncated tool output | {"col_d47":"admin@domain.org"} |
TASK repair_structured_output
SPEC
FIELD key_f91 TYPE integer REQUIRED no
FIELD key_h50 TYPE integer REQUIRED yes
FIELD val_a58 TYPE boolean REQUIRED yes
FIELD field_g25 TYPE integer REQUIRED no
FIELD param_f46[].col_z82 TYPE integer REQUIRED yes
FIELD param_f46[].key_z67 TYPE string VALUES active|inactive|pending REQ... | {"key_f91":234,"key_h50":977,"val_a58":false,"field_g25":343,"param_f46":[{"col_z82":263,"key_z67":"inactive","attr_s59":945}],"key_d70":[728]} | trailing_comma | {
"type": "object",
"properties": {
"key_f91": {
"type": "integer"
},
"key_h50": {
"type": "integer"
},
"val_a58": {
"type": "boolean"
},
"field_g25": {
"type": "integer"
},
"param_f46": {
"type": "array",
"items": {
"type": "object",
... | {"key_f91":234,"key_h50":977,"val_a58":false,"field_g25":343,"param_f46":[{"col_z82":263,"key_z67":"inactive","attr_s59":945,}],"key_d70":[728]} | Unexpected trailing comma | {"key_f91":234,"key_h50":977,"val_a58":false,"field_g25":343,"param_f46":[{"col_z82":263,"key_z67":"inactive","attr_s59":945}],"key_d70":[728]} |
TASK repair_structured_output
SPEC
FIELD last_name TYPE boolean REQUIRED no
FIELD patient_id TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD title TYPE integer REQUIRED no
FIELD isotope.latitude TYPE string REQUIRED no
FIELD isotope.freight_class TYPE string REQUIRED no
FIELD isotope.vessel_name[] TYPE numbe... | {"patient_id":"admin","isotope":{"latitude":"PASS","freight_class":"2024-06-30","vessel_name":[812.16,457.28,626.57]},"country":{"features":144,"height":412.34,"subtotal":"pending","cargo_type":"mode_b","fleet_number":"2025-02-19T21:12:00Z"}} | tool_call_wrong_param | {
"type": "object",
"properties": {
"last_name": {
"type": "boolean"
},
"patient_id": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"title": {
"type": "integer"
},
"isotope": {
"type": "object",
"propertie... | Tool: track_vessel
Params: {"patient_id": "admin", "isotope": {"latitude": "PASS", "freight_class": "2024-06-30", "vessel_name": [812.16, 457.28, 626.57]}, "country": {"features": 144, "height": 412.34, "subtotal": "pending", "cargo_type": "mode_b", "fleet_number": "2025-02-19T21:12:00Z"}} | Agent used wrong parameter name 'title_value' instead of 'title' | {"patient_id":"admin","isotope":{"latitude":"PASS","freight_class":"2024-06-30","vessel_name":[812.16,457.28,626.57]},"country":{"features":144,"height":412.34,"subtotal":"pending","cargo_type":"mode_b","fleet_number":"2025-02-19T21:12:00Z"}} |
TASK repair_structured_output
SPEC
FIELD field_i41 TYPE string REQUIRED yes
FIELD field_s39 TYPE number REQUIRED yes
FIELD field_o65 TYPE integer REQUIRED yes
FIELD param_q68[].val_w19 TYPE boolean REQUIRED no
FIELD param_q68[].key_r57 TYPE string_uri REQUIRED yes
FIELD param_q68[].prop_y40 TYPE string REQUIRED no
FIE... | {"field_i41":"chr1","field_s39":919.48,"field_o65":488,"param_q68":[{"val_w19":true,"key_r57":"https://www.com/data","prop_y40":"demo","attr_w98":"type_e","prop_z86":"email","attr_a03":"ops@test.io","col_r11":false,"dim_u33":"https://data.com/api"},{"key_r57":"https://api.org/api","prop_y40":"REV","attr_w98":"type_c","... | truncated_array | {
"type": "object",
"properties": {
"field_i41": {
"type": "string"
},
"field_s39": {
"type": "number"
},
"field_o65": {
"type": "integer"
},
"param_q68": {
"type": "array",
"items": {
"type": "object",
"properties": {
"val_w19": {
... | {"field_i41":"chr1","field_s39":919.48,"field_o65":488,"param_q68":[{"val_w19":true,"key_r57":"https://www.com/data","prop_y40":"demo","attr_w98":"type_e","prop_z86":"email","attr_a03":"ops@test.io","col_r11":false,"dim_u33":"https://data.com/api"},{"key_r57":"https://api.org/api","prop_y40":"REV","attr_w98":"type_c","... | Unexpected end of JSON input — truncated array | {"field_i41":"chr1","field_s39":919.48,"field_o65":488,"param_q68":[{"val_w19":true,"key_r57":"https://www.com/data","prop_y40":"demo","attr_w98":"type_e","prop_z86":"email","attr_a03":"ops@test.io","col_r11":false,"dim_u33":"https://data.com/api"},{"key_r57":"https://api.org/api","prop_y40":"REV","attr_w98":"type_c","... |
TASK repair_structured_output
SPEC
FIELD col_q09 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
FIELD key_s72 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED no
FIELD attr_y44 TYPE integer REQUIRED yes
FIELD dim_p82 TYPE number REQUIRED yes
FIELD col_s03 TYPE integer REQ... | {"col_q09":"offline","key_s72":"mode_f","attr_y44":884,"dim_p82":295.27,"col_s03":196} | agent_chain | {
"type": "object",
"properties": {
"col_q09": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
},
"key_s72": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode... | I need to look up the information first.
Action: transfer_call
Result: {"key_s72": "mode_f", "attr_y44": 884, "dim_p82": 295.27, "col_s03": 196}
Processing the request now.
Action: search
Result: | Agent multi-step chain with truncated tool output | {"col_q09":"offline","key_s72":"mode_f","attr_y44":884,"dim_p82":295.27,"col_s03":196} |
TASK repair_structured_output
SPEC
FIELD build_status TYPE string_uri REQUIRED yes
FIELD duration_ms TYPE string REQUIRED yes
FIELD account_id.age TYPE integer REQUIRED yes
FIELD account_id.build_status TYPE integer REQUIRED no
FIELD account_id.shift_code TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIEL... | {"build_status":"https://api.org/v1","duration_ms":"test","account_id":{"age":15,"build_status":832,"shift_code":"blue","branch":true,"date":{"brake_pressure":"admin@test.io","berth_slot":"active","visible":"reliable"},"length":false},"rating":272,"lab_result":"option_c","version":521.07,"priority":null} | tool_call_text_mix | {
"type": "object",
"properties": {
"build_status": {
"type": "string",
"format": "uri"
},
"duration_ms": {
"type": "string"
},
"account_id": {
"type": "object",
"properties": {
"age": {
"type": "integer"
},
"build_status": {
... | I need to look up the information first.
<tool_call name="validate_address">
{"build_status":"https://api.org/v1","duration_ms":"test","account_id":{"age":15,"build_status":832,"shift_code":"blue","branch":true,"date":{"brake_pressure":"admin@test.io","berth_slot":"active","visible":"reliable"},"length":false},"rating"... | Agent response mixes reasoning text with tool call | {"build_status":"https://api.org/v1","duration_ms":"test","account_id":{"age":15,"build_status":832,"shift_code":"blue","branch":true,"date":{"brake_pressure":"admin@test.io","berth_slot":"active","visible":"reliable"},"length":false},"rating":272,"lab_result":"option_c","version":521.07,"priority":null} |
TASK repair_structured_output
SPEC
FIELD size TYPE integer REQUIRED yes
FIELD website TYPE number REQUIRED no
FIELD reagent TYPE integer REQUIRED yes
FIELD type TYPE number REQUIRED yes
FIELD crew_id TYPE integer REQUIRED yes
BROKEN_OUTPUT
Result: type=83.99, {"size":242,"website":867.84,"reagent":746,"type":83.99,"c... | {"size":242,"website":867.84,"reagent":746,"type":83.99,"crew_id":365} | partial_structure | {
"type": "object",
"properties": {
"size": {
"type": "integer"
},
"website": {
"type": "number"
},
"reagent": {
"type": "integer"
},
"type": {
"type": "number"
},
"crew_id": {
"type": "integer"
}
},
"required": [
"crew_id",
"size",
... | Result: type=83.99, {"size":242,"website":867.84,"reagent":746,"type":83.99,"crew_id":365} | Output mixes natural language with JSON | {"size":242,"website":867.84,"reagent":746,"type":83.99,"crew_id":365} |
TASK repair_structured_output
SPEC
FIELD key_b10 TYPE integer REQUIRED yes
FIELD val_i74.attr_j63 TYPE string REQUIRED yes
FIELD val_i74.field_q18.attr_n00 TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD val_i74.field_q18.col_k15 TYPE boolean REQUIRED yes
FIELD val_i74.field_q18.attr_s70 TYPE string VALU... | {"key_b10":442,"attr_f42":{"prop_o96":"cat_a"},"val_p13":"type_a","dim_e32":686} | tool_call_wrong_param | {
"type": "object",
"properties": {
"key_b10": {
"type": "integer"
},
"val_i74": {
"type": "object",
"properties": {
"attr_j63": {
"type": "string"
},
"field_q18": {
"type": "object",
"properties": {
"attr_n00": {
... | Tool: check_availability
Params: {"key_b10": 442, "attr_f42": {"prop_o96": "cat_a"}, "val_p13": "type_a", "dim_e32": 686} | Agent used wrong parameter name 'dim_a68_id' instead of 'dim_a68' | {"key_b10":442,"attr_f42":{"prop_o96":"cat_a"},"val_p13":"type_a","dim_e32":686} |
TASK repair_structured_output
SPEC
FIELD filter_flag.maturity_date TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD filter_flag.commit_hash TYPE string VALUES single|married|divorced REQUIRED yes
FIELD filter_flag.amount TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD filt... | {"filter_flag":{"commit_hash":"divorced","amount":"homozygous","trace_id":760,"patient_id":"test@example.com"},"paragraph":"cancelled","version":972.38,"coverage":"example","shipper_ref":598,"notes":818} | wrong_type | {
"type": "object",
"properties": {
"filter_flag": {
"type": "object",
"properties": {
"maturity_date": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"commit_hash": ... | {"filter_flag": {"commit_hash": "divorced", "amount": "homozygous", "trace_id": 760, "patient_id": "test@example.com"}, "paragraph": "cancelled", "version": 972.38, "coverage": "example", "shipper_ref": 598, "notes": "\"818\""} | Field 'notes' must be integer, got string | {"filter_flag":{"commit_hash":"divorced","amount":"homozygous","trace_id":760,"patient_id":"test@example.com"},"paragraph":"cancelled","version":972.38,"coverage":"example","shipper_ref":598,"notes":818} |
TASK repair_structured_output
SPEC
FIELD dim_t70 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
FIELD val_d03 TYPE integer REQUIRED no
FIELD param_c66.dim_x80 TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes
FIELD param_c66.field_n10 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQU... | {"dim_t70":"degraded","param_c66":{"dim_x80":"moored","field_n10":"BRL","col_e34":null}} | tool_call_wrong_param | {
"type": "object",
"properties": {
"dim_t70": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
},
"val_d03": {
"type": "integer"
},
"param_c66": {
"type": "object",
"properties": {
"di... | Tool: update_preferences
Params: {"dim_t70": "degraded", "param_c662": {"dim_x80": "moored", "field_n10": "BRL", "col_e34": null}} | Agent used wrong parameter name 'param_c662' instead of 'param_c66' | {"dim_t70":"degraded","param_c66":{"dim_x80":"moored","field_n10":"BRL","col_e34":null}} |
TASK repair_structured_output
SPEC
FIELD timezone TYPE number REQUIRED no
FIELD format TYPE string REQUIRED yes
FIELD phone TYPE boolean REQUIRED no
FIELD duration_ms.step TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes
FIELD duration_ms.voltage TYPE number REQUIRED yes
FIELD duration_ms.count TYPE st... | {"timezone":133.81,"format":"Berlin","phone":true,"duration_ms":{"step":"moored","voltage":244.84,"count":"2023-07-04T12:18:00Z","color":"homozygous"}} | tool_call_python_syntax | {
"type": "object",
"properties": {
"timezone": {
"type": "number"
},
"format": {
"type": "string"
},
"phone": {
"type": "boolean"
},
"duration_ms": {
"type": "object",
"properties": {
"step": {
"type": "string",
"enum": [
... | update_preferences(timezone=133.81, format='Berlin', phone=True, duration_ms={'step': 'moored', 'voltage': 244.84, 'count': '2023-07-04T12:18:00Z', 'color': 'homozygous'}) | Tool call uses Python syntax instead of JSON | {"timezone":133.81,"format":"Berlin","phone":true,"duration_ms":{"step":"moored","voltage":244.84,"count":"2023-07-04T12:18:00Z","color":"homozygous"}} |
TASK repair_structured_output
SPEC
FIELD reagent TYPE integer REQUIRED yes
FIELD comments TYPE integer REQUIRED yes
FIELD bill_of_lading[].amplitude TYPE string VALUES option_a|option_b|option_c|option_d REQUIRED no
FIELD bill_of_lading[].transaction_id TYPE string VALUES cat_a|cat_b REQUIRED yes
FIELD bill_of_lading[... | {"reagent":147,"comments":68,"bill_of_lading":[{"amplitude":"option_c","transaction_id":"cat_a","cargo_type":229.43,"user_id":"level_5","index":201.63},{"amplitude":"option_b","transaction_id":"cat_a","section":"admin","cargo_type":247.08,"user_id":"level_2","rating":"xl","index":861.19}]} | trailing_comma | {
"type": "object",
"properties": {
"reagent": {
"type": "integer"
},
"comments": {
"type": "integer"
},
"bill_of_lading": {
"type": "array",
"items": {
"type": "object",
"properties": {
"amplitude": {
"type": "string",
"e... | {"reagent":147,"comments":68,"bill_of_lading":[{"amplitude":"option_c","transaction_id":"cat_a","cargo_type":229.43,"user_id":"level_5","index":201.63,},{"amplitude":"option_b","transaction_id":"cat_a","section":"admin","cargo_type":247.08,"user_id":"level_2","rating":"xl","index":861.19}]} | Unexpected trailing comma | {"reagent":147,"comments":68,"bill_of_lading":[{"amplitude":"option_c","transaction_id":"cat_a","cargo_type":229.43,"user_id":"level_5","index":201.63},{"amplitude":"option_b","transaction_id":"cat_a","section":"admin","cargo_type":247.08,"user_id":"level_2","rating":"xl","index":861.19}]} |
TASK repair_structured_output
SPEC
FIELD val_w94 TYPE string_uri REQUIRED yes
FIELD attr_c17 TYPE string_email REQUIRED no
FIELD val_w52 TYPE string_email REQUIRED yes
FIELD dim_x97 TYPE string VALUES single|married|divorced REQUIRED no
FIELD col_j14 TYPE number REQUIRED yes
BROKEN_OUTPUT
generate_report(val_w94='htt... | {"val_w94":"https://data.com/data","attr_c17":"test@example.com","val_w52":"test@test.io","col_j14":357.85} | tool_call_python_syntax | {
"type": "object",
"properties": {
"val_w94": {
"type": "string",
"format": "uri"
},
"attr_c17": {
"type": "string",
"format": "email"
},
"val_w52": {
"type": "string",
"format": "email"
},
"dim_x97": {
"type": "string",
"enum": [
... | generate_report(val_w94='https://data.com/data', attr_c17='test@example.com', val_w52='test@test.io', col_j14=357.85) | Tool call uses Python syntax instead of JSON | {"val_w94":"https://data.com/data","attr_c17":"test@example.com","val_w52":"test@test.io","col_j14":357.85} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.